@connectedxm/admin 6.8.7 → 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 +5 -0
- package/dist/index.d.ts +5 -0
- package/openapi.json +18 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2501,6 +2501,7 @@ interface EventSessionSectionTranslation {
|
|
|
2501
2501
|
interface BaseEventBlock {
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
|
+
description: string | null;
|
|
2504
2505
|
limit: number;
|
|
2505
2506
|
grouped: boolean;
|
|
2506
2507
|
}
|
|
@@ -4419,6 +4420,7 @@ interface AccountCreateInputs {
|
|
|
4419
4420
|
locale?: string | null;
|
|
4420
4421
|
taxEntityUseCode?: string | null;
|
|
4421
4422
|
attributes?: Record<string, string> | null;
|
|
4423
|
+
confirmationEmailCount?: number;
|
|
4422
4424
|
}
|
|
4423
4425
|
interface AccountUpdateInputs {
|
|
4424
4426
|
accountAccess?: keyof typeof AccountAccess | null;
|
|
@@ -4447,6 +4449,7 @@ interface AccountUpdateInputs {
|
|
|
4447
4449
|
locale?: string | null;
|
|
4448
4450
|
taxEntityUseCode?: string | null;
|
|
4449
4451
|
attributes?: Record<string, string> | null;
|
|
4452
|
+
confirmationEmailCount?: number;
|
|
4450
4453
|
}
|
|
4451
4454
|
interface AccountAddressCreateInputs {
|
|
4452
4455
|
name?: string;
|
|
@@ -5269,11 +5272,13 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5269
5272
|
}
|
|
5270
5273
|
interface EventBlockCreateInputs {
|
|
5271
5274
|
name: string;
|
|
5275
|
+
description?: string;
|
|
5272
5276
|
limit?: number;
|
|
5273
5277
|
grouped?: boolean;
|
|
5274
5278
|
}
|
|
5275
5279
|
interface EventBlockUpdateInputs {
|
|
5276
5280
|
name?: string;
|
|
5281
|
+
description?: string | null;
|
|
5277
5282
|
limit?: number;
|
|
5278
5283
|
grouped?: boolean;
|
|
5279
5284
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -2501,6 +2501,7 @@ interface EventSessionSectionTranslation {
|
|
|
2501
2501
|
interface BaseEventBlock {
|
|
2502
2502
|
id: string;
|
|
2503
2503
|
name: string;
|
|
2504
|
+
description: string | null;
|
|
2504
2505
|
limit: number;
|
|
2505
2506
|
grouped: boolean;
|
|
2506
2507
|
}
|
|
@@ -4419,6 +4420,7 @@ interface AccountCreateInputs {
|
|
|
4419
4420
|
locale?: string | null;
|
|
4420
4421
|
taxEntityUseCode?: string | null;
|
|
4421
4422
|
attributes?: Record<string, string> | null;
|
|
4423
|
+
confirmationEmailCount?: number;
|
|
4422
4424
|
}
|
|
4423
4425
|
interface AccountUpdateInputs {
|
|
4424
4426
|
accountAccess?: keyof typeof AccountAccess | null;
|
|
@@ -4447,6 +4449,7 @@ interface AccountUpdateInputs {
|
|
|
4447
4449
|
locale?: string | null;
|
|
4448
4450
|
taxEntityUseCode?: string | null;
|
|
4449
4451
|
attributes?: Record<string, string> | null;
|
|
4452
|
+
confirmationEmailCount?: number;
|
|
4450
4453
|
}
|
|
4451
4454
|
interface AccountAddressCreateInputs {
|
|
4452
4455
|
name?: string;
|
|
@@ -5269,11 +5272,13 @@ interface EventSessionSectionUpdateInputs {
|
|
|
5269
5272
|
}
|
|
5270
5273
|
interface EventBlockCreateInputs {
|
|
5271
5274
|
name: string;
|
|
5275
|
+
description?: string;
|
|
5272
5276
|
limit?: number;
|
|
5273
5277
|
grouped?: boolean;
|
|
5274
5278
|
}
|
|
5275
5279
|
interface EventBlockUpdateInputs {
|
|
5276
5280
|
name?: string;
|
|
5281
|
+
description?: string | null;
|
|
5277
5282
|
limit?: number;
|
|
5278
5283
|
grouped?: boolean;
|
|
5279
5284
|
}
|
package/openapi.json
CHANGED
|
@@ -81811,6 +81811,10 @@
|
|
|
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"
|
|
81816
81820
|
},
|
|
@@ -81821,6 +81825,7 @@
|
|
|
81821
81825
|
"required": [
|
|
81822
81826
|
"id",
|
|
81823
81827
|
"name",
|
|
81828
|
+
"description",
|
|
81824
81829
|
"limit",
|
|
81825
81830
|
"grouped"
|
|
81826
81831
|
]
|
|
@@ -89719,6 +89724,9 @@
|
|
|
89719
89724
|
"type": "object",
|
|
89720
89725
|
"additionalProperties": true,
|
|
89721
89726
|
"nullable": true
|
|
89727
|
+
},
|
|
89728
|
+
"confirmationEmailCount": {
|
|
89729
|
+
"type": "number"
|
|
89722
89730
|
}
|
|
89723
89731
|
},
|
|
89724
89732
|
"required": [
|
|
@@ -89834,6 +89842,9 @@
|
|
|
89834
89842
|
"type": "object",
|
|
89835
89843
|
"additionalProperties": true,
|
|
89836
89844
|
"nullable": true
|
|
89845
|
+
},
|
|
89846
|
+
"confirmationEmailCount": {
|
|
89847
|
+
"type": "number"
|
|
89837
89848
|
}
|
|
89838
89849
|
}
|
|
89839
89850
|
},
|
|
@@ -93442,6 +93453,9 @@
|
|
|
93442
93453
|
"name": {
|
|
93443
93454
|
"type": "string"
|
|
93444
93455
|
},
|
|
93456
|
+
"description": {
|
|
93457
|
+
"type": "string"
|
|
93458
|
+
},
|
|
93445
93459
|
"limit": {
|
|
93446
93460
|
"type": "number"
|
|
93447
93461
|
},
|
|
@@ -93459,6 +93473,10 @@
|
|
|
93459
93473
|
"name": {
|
|
93460
93474
|
"type": "string"
|
|
93461
93475
|
},
|
|
93476
|
+
"description": {
|
|
93477
|
+
"type": "string",
|
|
93478
|
+
"nullable": true
|
|
93479
|
+
},
|
|
93462
93480
|
"limit": {
|
|
93463
93481
|
"type": "number"
|
|
93464
93482
|
},
|