@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.
@@ -1,6 +1,6 @@
1
1
  declare global {
2
2
  interface Window {
3
- CUSTOM_TAROBASE_APP_ID_HEADER?: string;
3
+ CUSTOM_BOUNDED_APP_ID_HEADER?: string;
4
4
  }
5
5
  }
6
6
  export declare function makeApiRequest(method: string, urlPath: string, data?: any, _overrides?: {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Safe base64 helpers for tarobase-core.
2
+ * Safe base64 helpers for bounded-core.
3
3
  *
4
4
  * Uses the global atob/btoa when available (browser, RN with polyfill),
5
5
  * falls back to the 'buffer' package (Node.js / SSR / RN without polyfill).
@@ -31,7 +31,7 @@ interface RNSessionConfig {
31
31
  atob: (input: string) => string;
32
32
  }
33
33
  export declare class ReactNativeSessionManager {
34
- private static TAROBASE_SESSION_STORAGE_KEY;
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 TAROBASE_SESSION_STORAGE_KEY;
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().
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bounded-sh/core",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Core functionality for Poof SDK",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",