@bounded-sh/core 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/client/config.d.ts +1 -1
- package/dist/client/live.d.ts +44 -4
- package/dist/client/operations.d.ts +8 -1
- package/dist/client/subscription-v2.d.ts +1 -1
- package/dist/client/subscription.d.ts +1 -1
- package/dist/index.d.ts +4 -4
- package/dist/index.js +126 -69
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +126 -70
- package/dist/index.mjs.map +1 -1
- package/dist/utils/api.d.ts +1 -1
- package/dist/utils/core-platform.d.ts +1 -1
- package/dist/utils/rn-session-manager.d.ts +1 -1
- package/dist/utils/web-session-manager.d.ts +1 -1
- package/package.json +1 -1
package/dist/utils/api.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ interface RNSessionConfig {
|
|
|
31
31
|
atob: (input: string) => string;
|
|
32
32
|
}
|
|
33
33
|
export declare class ReactNativeSessionManager {
|
|
34
|
-
private static
|
|
34
|
+
private static BOUNDED_SESSION_STORAGE_KEY;
|
|
35
35
|
/**
|
|
36
36
|
* Must be called once before any other method.
|
|
37
37
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare class WebSessionManager {
|
|
2
|
-
private static
|
|
2
|
+
private static BOUNDED_SESSION_STORAGE_KEY;
|
|
3
3
|
/**
|
|
4
4
|
* Decode a base64url-encoded string (used by JWT payloads).
|
|
5
5
|
* Normalises base64url → standard base64 before calling browser atob().
|