@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.
- package/dist/index.d.ts +6 -3
- 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:
|
|
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:
|
|
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,
|
|
1993
|
+
options: Record<string, any>;
|
|
1991
1994
|
}
|
|
1992
1995
|
interface OrganizationOAuth {
|
|
1993
1996
|
name: string;
|