@squidcloud/client 1.0.130 → 1.0.131

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/dist/cjs/index.js CHANGED
@@ -49736,6 +49736,7 @@ class Squid {
49736
49736
  * @param options The options for initializing the Squid instance.
49737
49737
  */
49738
49738
  constructor(options) {
49739
+ this.options = options;
49739
49740
  this.destructManager = new DestructManager();
49740
49741
  // Note: The following methods are bound using arrow functions to ensure that if a user accesses the methods via
49741
49742
  // destructuring (i.e. `{ setAuthIdToken } = squid`) then `this` will still be bound to the Squid class.
@@ -68,6 +68,7 @@ export type AuthTokenProvider = (integrationId?: string) => Promise<string | und
68
68
  * capabilities.
69
69
  */
70
70
  export declare class Squid {
71
+ readonly options: SquidOptions;
71
72
  private readonly socketManager;
72
73
  private readonly rpcManager;
73
74
  private readonly dataManager;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@squidcloud/client",
3
- "version": "1.0.130",
3
+ "version": "1.0.131",
4
4
  "description": "A typescript implementation of the Squid client",
5
5
  "main": "dist/cjs/index.js",
6
6
  "types": "dist/typescript-client/src/index.d.ts",