Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
22ba366
added the api-definition, interfaces, realtime connection and backoff…
Samruddhi90 Aug 8, 2025
77bc5ef
Added TODO and comments
Samruddhi90 Aug 8, 2025
c16eadd
Added the visibilityMonitor
Samruddhi90 Aug 9, 2025
c5d7dfb
resolved the comment about the spacing problem
Samruddhi90 Aug 11, 2025
77a6aca
Fix check failures
Samruddhi90 Aug 11, 2025
4002ed9
minor changes
Samruddhi90 Aug 11, 2025
0ff4893
Fix yarn failures
Samruddhi90 Aug 12, 2025
52686fc
Merge branch 'realtime-backoff' into realtime-visibility-api
Samruddhi90 Aug 12, 2025
6105412
resolving the spacing problem
Samruddhi90 Aug 12, 2025
61ba815
Convert backoff time from seconds to minutes
Samruddhi90 Aug 12, 2025
a98f140
Merge branch 'realtime-backoff' into realtime-visibility-api
Samruddhi90 Aug 12, 2025
c4a8b72
fixed the minor errors
Samruddhi90 Aug 13, 2025
5b23deb
Minor refactoring
Samruddhi90 Aug 13, 2025
960b88e
fixing yarn lint errors
Samruddhi90 Aug 13, 2025
2653ebb
Adding synchronous delay
Samruddhi90 Aug 13, 2025
b8b2751
updating the fetch call
Samruddhi90 Aug 14, 2025
024e042
Closing the connection in a proper way
Samruddhi90 Aug 14, 2025
f882ad4
close connection async
Samruddhi90 Aug 14, 2025
a7d271b
Added the comments
Samruddhi90 Aug 14, 2025
ac82ed7
minor fixes
Samruddhi90 Aug 14, 2025
006127b
Modifying the name of the method `beginRealtimeHttpStream` to `prepar…
Samruddhi90 Aug 18, 2025
874299e
Updating the onConfigUpdate method definition.
Samruddhi90 Aug 18, 2025
412b664
Merge branch 'realtime-for-web' into realtime-handle-notifications
Samruddhi90 Aug 18, 2025
649a2ac
Delete realtime_handler.test.ts
Samruddhi90 Aug 18, 2025
11077d8
fixing the comments.
Samruddhi90 Aug 18, 2025
494af7d
Adding a TODO for X-`Firebase-RC-Fetch-Type` header
Samruddhi90 Aug 20, 2025
385d8bd
Update the errorcodes
Samruddhi90 Aug 20, 2025
f583f8e
minor fix
Samruddhi90 Aug 20, 2025
17b9eb5
Resolving the comment
Samruddhi90 Aug 20, 2025
3eee5f8
Adding changeset
Samruddhi90 Aug 21, 2025
5d43520
Realtime RC test cases (#9210)
Samruddhi90 Aug 21, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
minor fix
  • Loading branch information
Samruddhi90 committed Aug 20, 2025
commit f583f8e5cf785fac3e41a5f40bfe594c2227d55b
2 changes: 1 addition & 1 deletion packages/remote-config/src/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ interface ErrorParams {
[ErrorCode.FETCH_PARSE]: { originalErrorMessage: string };
[ErrorCode.FETCH_STATUS]: { httpStatus: number };
[ErrorCode.CUSTOM_SIGNAL_MAX_ALLOWED_SIGNALS]: { maxSignals: number };
[ErrorCode.CONFIG_UPDATE_STREAM_ERROR]: { originalErrorMessage?: string };
[ErrorCode.CONFIG_UPDATE_STREAM_ERROR]: { originalErrorMessage: string };
[ErrorCode.CONFIG_UPDATE_UNAVAILABLE]: { originalErrorMessage: string };
[ErrorCode.CONFIG_UPDATE_MESSAGE_INVALID]: { originalErrorMessage: string };
[ErrorCode.CONFIG_UPDATE_NOT_FETCHED]: { originalErrorMessage: string };
Expand Down
Loading