@connectedxm/admin 6.5.0 → 6.5.2

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/index.d.cts CHANGED
@@ -2107,12 +2107,14 @@ interface BaseEventAttendee {
2107
2107
  event: BaseEvent;
2108
2108
  }
2109
2109
  interface EventAttendee extends BaseEventAttendee {
2110
- payments: BasePayment[];
2111
2110
  passes: BaseEventPass[];
2112
2111
  packages: BaseAttendeePackage[];
2113
- coupons: BaseCoupon[];
2114
2112
  createdAt: string;
2115
2113
  updatedAt: string;
2114
+ _count: {
2115
+ payments: number;
2116
+ coupons: number;
2117
+ };
2116
2118
  }
2117
2119
  declare enum ReportType {
2118
2120
  organization = "organization",
@@ -4206,9 +4208,6 @@ interface BaseStreamSession {
4206
4208
  interface StreamSession extends BaseStreamSession {
4207
4209
  stream: BaseStreamInput;
4208
4210
  organization: BaseOrganization;
4209
- _count: {
4210
- subscriptions: number;
4211
- };
4212
4211
  }
4213
4212
  interface BaseWebSocketConnection {
4214
4213
  id: string;
package/dist/index.d.ts CHANGED
@@ -2107,12 +2107,14 @@ interface BaseEventAttendee {
2107
2107
  event: BaseEvent;
2108
2108
  }
2109
2109
  interface EventAttendee extends BaseEventAttendee {
2110
- payments: BasePayment[];
2111
2110
  passes: BaseEventPass[];
2112
2111
  packages: BaseAttendeePackage[];
2113
- coupons: BaseCoupon[];
2114
2112
  createdAt: string;
2115
2113
  updatedAt: string;
2114
+ _count: {
2115
+ payments: number;
2116
+ coupons: number;
2117
+ };
2116
2118
  }
2117
2119
  declare enum ReportType {
2118
2120
  organization = "organization",
@@ -4206,9 +4208,6 @@ interface BaseStreamSession {
4206
4208
  interface StreamSession extends BaseStreamSession {
4207
4209
  stream: BaseStreamInput;
4208
4210
  organization: BaseOrganization;
4209
- _count: {
4210
- subscriptions: number;
4211
- };
4212
4211
  }
4213
4212
  interface BaseWebSocketConnection {
4214
4213
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "6.5.0",
3
+ "version": "6.5.2",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",