@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.
- package/dist/index.d.ts +3 -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;
|
|
@@ -1982,7 +1982,7 @@ interface OrganizationConfig {
|
|
|
1982
1982
|
CURRENCY: string;
|
|
1983
1983
|
};
|
|
1984
1984
|
INTEGRATIONS: Integration[];
|
|
1985
|
-
OPTIONS:
|
|
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,
|
|
1993
|
+
options: Record<string, any>;
|
|
1994
1994
|
}
|
|
1995
1995
|
interface OrganizationOAuth {
|
|
1996
1996
|
name: string;
|