@connectedxm/admin 6.8.6 → 6.8.7
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 +3 -0
- package/dist/index.d.ts +3 -0
- package/openapi.json +11 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2502,6 +2502,7 @@ interface BaseEventBlock {
|
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
2504
|
limit: number;
|
|
2505
|
+
grouped: boolean;
|
|
2505
2506
|
}
|
|
2506
2507
|
interface EventBlock extends BaseEventBlock {
|
|
2507
2508
|
event: BaseEvent;
|
|
@@ -5269,10 +5270,12 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5269
5270
|
interface EventBlockCreateInputs {
|
|
5270
5271
|
name: string;
|
|
5271
5272
|
limit?: number;
|
|
5273
|
+
grouped?: boolean;
|
|
5272
5274
|
}
|
|
5273
5275
|
interface EventBlockUpdateInputs {
|
|
5274
5276
|
name?: string;
|
|
5275
5277
|
limit?: number;
|
|
5278
|
+
grouped?: boolean;
|
|
5276
5279
|
}
|
|
5277
5280
|
interface EventSpeakerCreateInputs {
|
|
5278
5281
|
firstName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2502,6 +2502,7 @@ interface BaseEventBlock {
|
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
2504
|
limit: number;
|
|
2505
|
+
grouped: boolean;
|
|
2505
2506
|
}
|
|
2506
2507
|
interface EventBlock extends BaseEventBlock {
|
|
2507
2508
|
event: BaseEvent;
|
|
@@ -5269,10 +5270,12 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5269
5270
|
interface EventBlockCreateInputs {
|
|
5270
5271
|
name: string;
|
|
5271
5272
|
limit?: number;
|
|
5273
|
+
grouped?: boolean;
|
|
5272
5274
|
}
|
|
5273
5275
|
interface EventBlockUpdateInputs {
|
|
5274
5276
|
name?: string;
|
|
5275
5277
|
limit?: number;
|
|
5278
|
+
grouped?: boolean;
|
|
5276
5279
|
}
|
|
5277
5280
|
interface EventSpeakerCreateInputs {
|
|
5278
5281
|
firstName: string;
|
package/openapi.json
CHANGED
|
@@ -81813,12 +81813,16 @@
|
|
|
81813
81813
|
},
|
|
81814
81814
|
"limit": {
|
|
81815
81815
|
"type": "number"
|
|
81816
|
+
},
|
|
81817
|
+
"grouped": {
|
|
81818
|
+
"type": "boolean"
|
|
81816
81819
|
}
|
|
81817
81820
|
},
|
|
81818
81821
|
"required": [
|
|
81819
81822
|
"id",
|
|
81820
81823
|
"name",
|
|
81821
|
-
"limit"
|
|
81824
|
+
"limit",
|
|
81825
|
+
"grouped"
|
|
81822
81826
|
]
|
|
81823
81827
|
},
|
|
81824
81828
|
"EventBlock": {
|
|
@@ -93440,6 +93444,9 @@
|
|
|
93440
93444
|
},
|
|
93441
93445
|
"limit": {
|
|
93442
93446
|
"type": "number"
|
|
93447
|
+
},
|
|
93448
|
+
"grouped": {
|
|
93449
|
+
"type": "boolean"
|
|
93443
93450
|
}
|
|
93444
93451
|
},
|
|
93445
93452
|
"required": [
|
|
@@ -93454,6 +93461,9 @@
|
|
|
93454
93461
|
},
|
|
93455
93462
|
"limit": {
|
|
93456
93463
|
"type": "number"
|
|
93464
|
+
},
|
|
93465
|
+
"grouped": {
|
|
93466
|
+
"type": "boolean"
|
|
93457
93467
|
}
|
|
93458
93468
|
}
|
|
93459
93469
|
},
|