@connectedxm/admin 6.8.6 → 6.8.9
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 +8 -0
- package/dist/index.d.ts +8 -0
- package/openapi.json +29 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2501,7 +2501,9 @@ interface EventSessionSectionTranslation {
|
|
|
2501
2501
|
interface BaseEventBlock {
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
|
+
description: string | null;
|
|
2504
2505
|
limit: number;
|
|
2506
|
+
grouped: boolean;
|
|
2505
2507
|
}
|
|
2506
2508
|
interface EventBlock extends BaseEventBlock {
|
|
2507
2509
|
event: BaseEvent;
|
|
@@ -4418,6 +4420,7 @@ interface AccountCreateInputs {
|
|
|
4418
4420
|
locale?: string | null;
|
|
4419
4421
|
taxEntityUseCode?: string | null;
|
|
4420
4422
|
attributes?: Record<string, string> | null;
|
|
4423
|
+
confirmationEmailCount?: number;
|
|
4421
4424
|
}
|
|
4422
4425
|
interface AccountUpdateInputs {
|
|
4423
4426
|
accountAccess?: keyof typeof AccountAccess | null;
|
|
@@ -4446,6 +4449,7 @@ interface AccountUpdateInputs {
|
|
|
4446
4449
|
locale?: string | null;
|
|
4447
4450
|
taxEntityUseCode?: string | null;
|
|
4448
4451
|
attributes?: Record<string, string> | null;
|
|
4452
|
+
confirmationEmailCount?: number;
|
|
4449
4453
|
}
|
|
4450
4454
|
interface AccountAddressCreateInputs {
|
|
4451
4455
|
name?: string;
|
|
@@ -5268,11 +5272,15 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5268
5272
|
}
|
|
5269
5273
|
interface EventBlockCreateInputs {
|
|
5270
5274
|
name: string;
|
|
5275
|
+
description?: string;
|
|
5271
5276
|
limit?: number;
|
|
5277
|
+
grouped?: boolean;
|
|
5272
5278
|
}
|
|
5273
5279
|
interface EventBlockUpdateInputs {
|
|
5274
5280
|
name?: string;
|
|
5281
|
+
description?: string | null;
|
|
5275
5282
|
limit?: number;
|
|
5283
|
+
grouped?: boolean;
|
|
5276
5284
|
}
|
|
5277
5285
|
interface EventSpeakerCreateInputs {
|
|
5278
5286
|
firstName: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2501,7 +2501,9 @@ interface EventSessionSectionTranslation {
|
|
|
2501
2501
|
interface BaseEventBlock {
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
|
+
description: string | null;
|
|
2504
2505
|
limit: number;
|
|
2506
|
+
grouped: boolean;
|
|
2505
2507
|
}
|
|
2506
2508
|
interface EventBlock extends BaseEventBlock {
|
|
2507
2509
|
event: BaseEvent;
|
|
@@ -4418,6 +4420,7 @@ interface AccountCreateInputs {
|
|
|
4418
4420
|
locale?: string | null;
|
|
4419
4421
|
taxEntityUseCode?: string | null;
|
|
4420
4422
|
attributes?: Record<string, string> | null;
|
|
4423
|
+
confirmationEmailCount?: number;
|
|
4421
4424
|
}
|
|
4422
4425
|
interface AccountUpdateInputs {
|
|
4423
4426
|
accountAccess?: keyof typeof AccountAccess | null;
|
|
@@ -4446,6 +4449,7 @@ interface AccountUpdateInputs {
|
|
|
4446
4449
|
locale?: string | null;
|
|
4447
4450
|
taxEntityUseCode?: string | null;
|
|
4448
4451
|
attributes?: Record<string, string> | null;
|
|
4452
|
+
confirmationEmailCount?: number;
|
|
4449
4453
|
}
|
|
4450
4454
|
interface AccountAddressCreateInputs {
|
|
4451
4455
|
name?: string;
|
|
@@ -5268,11 +5272,15 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5268
5272
|
}
|
|
5269
5273
|
interface EventBlockCreateInputs {
|
|
5270
5274
|
name: string;
|
|
5275
|
+
description?: string;
|
|
5271
5276
|
limit?: number;
|
|
5277
|
+
grouped?: boolean;
|
|
5272
5278
|
}
|
|
5273
5279
|
interface EventBlockUpdateInputs {
|
|
5274
5280
|
name?: string;
|
|
5281
|
+
description?: string | null;
|
|
5275
5282
|
limit?: number;
|
|
5283
|
+
grouped?: boolean;
|
|
5276
5284
|
}
|
|
5277
5285
|
interface EventSpeakerCreateInputs {
|
|
5278
5286
|
firstName: string;
|
package/openapi.json
CHANGED
|
@@ -81811,14 +81811,23 @@
|
|
|
81811
81811
|
"name": {
|
|
81812
81812
|
"type": "string"
|
|
81813
81813
|
},
|
|
81814
|
+
"description": {
|
|
81815
|
+
"type": "string",
|
|
81816
|
+
"nullable": true
|
|
81817
|
+
},
|
|
81814
81818
|
"limit": {
|
|
81815
81819
|
"type": "number"
|
|
81820
|
+
},
|
|
81821
|
+
"grouped": {
|
|
81822
|
+
"type": "boolean"
|
|
81816
81823
|
}
|
|
81817
81824
|
},
|
|
81818
81825
|
"required": [
|
|
81819
81826
|
"id",
|
|
81820
81827
|
"name",
|
|
81821
|
-
"
|
|
81828
|
+
"description",
|
|
81829
|
+
"limit",
|
|
81830
|
+
"grouped"
|
|
81822
81831
|
]
|
|
81823
81832
|
},
|
|
81824
81833
|
"EventBlock": {
|
|
@@ -89715,6 +89724,9 @@
|
|
|
89715
89724
|
"type": "object",
|
|
89716
89725
|
"additionalProperties": true,
|
|
89717
89726
|
"nullable": true
|
|
89727
|
+
},
|
|
89728
|
+
"confirmationEmailCount": {
|
|
89729
|
+
"type": "number"
|
|
89718
89730
|
}
|
|
89719
89731
|
},
|
|
89720
89732
|
"required": [
|
|
@@ -89830,6 +89842,9 @@
|
|
|
89830
89842
|
"type": "object",
|
|
89831
89843
|
"additionalProperties": true,
|
|
89832
89844
|
"nullable": true
|
|
89845
|
+
},
|
|
89846
|
+
"confirmationEmailCount": {
|
|
89847
|
+
"type": "number"
|
|
89833
89848
|
}
|
|
89834
89849
|
}
|
|
89835
89850
|
},
|
|
@@ -93438,8 +93453,14 @@
|
|
|
93438
93453
|
"name": {
|
|
93439
93454
|
"type": "string"
|
|
93440
93455
|
},
|
|
93456
|
+
"description": {
|
|
93457
|
+
"type": "string"
|
|
93458
|
+
},
|
|
93441
93459
|
"limit": {
|
|
93442
93460
|
"type": "number"
|
|
93461
|
+
},
|
|
93462
|
+
"grouped": {
|
|
93463
|
+
"type": "boolean"
|
|
93443
93464
|
}
|
|
93444
93465
|
},
|
|
93445
93466
|
"required": [
|
|
@@ -93452,8 +93473,15 @@
|
|
|
93452
93473
|
"name": {
|
|
93453
93474
|
"type": "string"
|
|
93454
93475
|
},
|
|
93476
|
+
"description": {
|
|
93477
|
+
"type": "string",
|
|
93478
|
+
"nullable": true
|
|
93479
|
+
},
|
|
93455
93480
|
"limit": {
|
|
93456
93481
|
"type": "number"
|
|
93482
|
+
},
|
|
93483
|
+
"grouped": {
|
|
93484
|
+
"type": "boolean"
|
|
93457
93485
|
}
|
|
93458
93486
|
}
|
|
93459
93487
|
},
|