@connectedxm/client 6.2.4 → 6.2.5

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -375,7 +375,7 @@ interface Event extends BaseEvent {
375
375
  reservationDescription: string | null;
376
376
  backgroundImage: BaseImage | null;
377
377
  media: EventMediaItem[];
378
- options: object | null;
378
+ options: Record<string, any> | null;
379
379
  _count: {
380
380
  activations: number;
381
381
  sessions: number;
@@ -1982,7 +1982,7 @@ interface OrganizationConfig {
1982
1982
  CURRENCY: string;
1983
1983
  };
1984
1984
  INTEGRATIONS: Integration[];
1985
- OPTIONS: object | null;
1985
+ OPTIONS: Record<string, any> | null;
1986
1986
  }
1987
1987
  interface OrganizationModule {
1988
1988
  requireAuth: boolean;
@@ -1990,7 +1990,7 @@ interface OrganizationModule {
1990
1990
  enabledTiers: string[];
1991
1991
  editable: boolean;
1992
1992
  editableTiers: string[];
1993
- options: Record<string, boolean>;
1993
+ options: Record<string, any>;
1994
1994
  }
1995
1995
  interface OrganizationOAuth {
1996
1996
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.2.4",
3
+ "version": "6.2.5",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",