@connectedxm/client 6.2.3 → 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 +6 -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;
@@ -1217,6 +1217,9 @@ interface Registration extends BaseRegistration {
1217
1217
  payments: Payment[];
1218
1218
  coupons: ManagedCoupon[];
1219
1219
  createdAt: string;
1220
+ _count: {
1221
+ fromTransferLogs: number;
1222
+ };
1220
1223
  }
1221
1224
  interface ListingRegistration extends BaseRegistration {
1222
1225
  event: RegistrationEventDetails;
@@ -1979,7 +1982,7 @@ interface OrganizationConfig {
1979
1982
  CURRENCY: string;
1980
1983
  };
1981
1984
  INTEGRATIONS: Integration[];
1982
- OPTIONS: object | null;
1985
+ OPTIONS: Record<string, any> | null;
1983
1986
  }
1984
1987
  interface OrganizationModule {
1985
1988
  requireAuth: boolean;
@@ -1987,7 +1990,7 @@ interface OrganizationModule {
1987
1990
  enabledTiers: string[];
1988
1991
  editable: boolean;
1989
1992
  editableTiers: string[];
1990
- options: Record<string, boolean>;
1993
+ options: Record<string, any>;
1991
1994
  }
1992
1995
  interface OrganizationOAuth {
1993
1996
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/client",
3
- "version": "6.2.3",
3
+ "version": "6.2.5",
4
4
  "description": "Client API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",