@connectedxm/admin 6.9.8 → 6.9.10
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 +6 -0
- package/dist/index.d.ts +6 -0
- package/openapi.json +22 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -264,6 +264,7 @@ interface BaseAccountAttribute {
|
|
|
264
264
|
public: boolean;
|
|
265
265
|
includedInDashboards: boolean;
|
|
266
266
|
sortOrder: number;
|
|
267
|
+
locationOption: keyof typeof LocationQuestionOption;
|
|
267
268
|
}
|
|
268
269
|
interface AccountAttribute extends BaseAccountAttribute {
|
|
269
270
|
createdAt: string;
|
|
@@ -2554,6 +2555,7 @@ interface BaseEventBlock {
|
|
|
2554
2555
|
description: string | null;
|
|
2555
2556
|
limit: number;
|
|
2556
2557
|
grouped: boolean;
|
|
2558
|
+
collapsed: boolean;
|
|
2557
2559
|
}
|
|
2558
2560
|
interface EventBlock extends BaseEventBlock {
|
|
2559
2561
|
event: BaseEvent;
|
|
@@ -5335,12 +5337,14 @@ interface EventBlockCreateInputs {
|
|
|
5335
5337
|
description?: string;
|
|
5336
5338
|
limit?: number;
|
|
5337
5339
|
grouped?: boolean;
|
|
5340
|
+
collapsed?: boolean;
|
|
5338
5341
|
}
|
|
5339
5342
|
interface EventBlockUpdateInputs {
|
|
5340
5343
|
name?: string;
|
|
5341
5344
|
description?: string | null;
|
|
5342
5345
|
limit?: number;
|
|
5343
5346
|
grouped?: boolean;
|
|
5347
|
+
collapsed?: boolean;
|
|
5344
5348
|
}
|
|
5345
5349
|
interface EventSpeakerCreateInputs {
|
|
5346
5350
|
firstName: string;
|
|
@@ -6651,6 +6655,7 @@ interface AccountAttributeCreateInputs {
|
|
|
6651
6655
|
sortOrder?: number | string | null;
|
|
6652
6656
|
searchListId?: string | null;
|
|
6653
6657
|
options?: string[] | null;
|
|
6658
|
+
locationOption?: keyof typeof LocationQuestionOption;
|
|
6654
6659
|
}
|
|
6655
6660
|
interface AccountAttributeUpdateInputs {
|
|
6656
6661
|
label?: string | null;
|
|
@@ -6663,6 +6668,7 @@ interface AccountAttributeUpdateInputs {
|
|
|
6663
6668
|
sortOrder?: number | string | null;
|
|
6664
6669
|
searchListId?: string | null;
|
|
6665
6670
|
options?: string[] | null;
|
|
6671
|
+
locationOption?: keyof typeof LocationQuestionOption;
|
|
6666
6672
|
}
|
|
6667
6673
|
interface WebhookCreateInputs {
|
|
6668
6674
|
name?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -264,6 +264,7 @@ interface BaseAccountAttribute {
|
|
|
264
264
|
public: boolean;
|
|
265
265
|
includedInDashboards: boolean;
|
|
266
266
|
sortOrder: number;
|
|
267
|
+
locationOption: keyof typeof LocationQuestionOption;
|
|
267
268
|
}
|
|
268
269
|
interface AccountAttribute extends BaseAccountAttribute {
|
|
269
270
|
createdAt: string;
|
|
@@ -2554,6 +2555,7 @@ interface BaseEventBlock {
|
|
|
2554
2555
|
description: string | null;
|
|
2555
2556
|
limit: number;
|
|
2556
2557
|
grouped: boolean;
|
|
2558
|
+
collapsed: boolean;
|
|
2557
2559
|
}
|
|
2558
2560
|
interface EventBlock extends BaseEventBlock {
|
|
2559
2561
|
event: BaseEvent;
|
|
@@ -5335,12 +5337,14 @@ interface EventBlockCreateInputs {
|
|
|
5335
5337
|
description?: string;
|
|
5336
5338
|
limit?: number;
|
|
5337
5339
|
grouped?: boolean;
|
|
5340
|
+
collapsed?: boolean;
|
|
5338
5341
|
}
|
|
5339
5342
|
interface EventBlockUpdateInputs {
|
|
5340
5343
|
name?: string;
|
|
5341
5344
|
description?: string | null;
|
|
5342
5345
|
limit?: number;
|
|
5343
5346
|
grouped?: boolean;
|
|
5347
|
+
collapsed?: boolean;
|
|
5344
5348
|
}
|
|
5345
5349
|
interface EventSpeakerCreateInputs {
|
|
5346
5350
|
firstName: string;
|
|
@@ -6651,6 +6655,7 @@ interface AccountAttributeCreateInputs {
|
|
|
6651
6655
|
sortOrder?: number | string | null;
|
|
6652
6656
|
searchListId?: string | null;
|
|
6653
6657
|
options?: string[] | null;
|
|
6658
|
+
locationOption?: keyof typeof LocationQuestionOption;
|
|
6654
6659
|
}
|
|
6655
6660
|
interface AccountAttributeUpdateInputs {
|
|
6656
6661
|
label?: string | null;
|
|
@@ -6663,6 +6668,7 @@ interface AccountAttributeUpdateInputs {
|
|
|
6663
6668
|
sortOrder?: number | string | null;
|
|
6664
6669
|
searchListId?: string | null;
|
|
6665
6670
|
options?: string[] | null;
|
|
6671
|
+
locationOption?: keyof typeof LocationQuestionOption;
|
|
6666
6672
|
}
|
|
6667
6673
|
interface WebhookCreateInputs {
|
|
6668
6674
|
name?: string | null;
|
package/openapi.json
CHANGED
|
@@ -72641,6 +72641,9 @@
|
|
|
72641
72641
|
},
|
|
72642
72642
|
"sortOrder": {
|
|
72643
72643
|
"type": "number"
|
|
72644
|
+
},
|
|
72645
|
+
"locationOption": {
|
|
72646
|
+
"$ref": "#/components/schemas/LocationQuestionOption"
|
|
72644
72647
|
}
|
|
72645
72648
|
},
|
|
72646
72649
|
"required": [
|
|
@@ -72654,7 +72657,8 @@
|
|
|
72654
72657
|
"editable",
|
|
72655
72658
|
"public",
|
|
72656
72659
|
"includedInDashboards",
|
|
72657
|
-
"sortOrder"
|
|
72660
|
+
"sortOrder",
|
|
72661
|
+
"locationOption"
|
|
72658
72662
|
]
|
|
72659
72663
|
},
|
|
72660
72664
|
"AccountAttribute": {
|
|
@@ -82769,6 +82773,9 @@
|
|
|
82769
82773
|
},
|
|
82770
82774
|
"grouped": {
|
|
82771
82775
|
"type": "boolean"
|
|
82776
|
+
},
|
|
82777
|
+
"collapsed": {
|
|
82778
|
+
"type": "boolean"
|
|
82772
82779
|
}
|
|
82773
82780
|
},
|
|
82774
82781
|
"required": [
|
|
@@ -82776,7 +82783,8 @@
|
|
|
82776
82783
|
"name",
|
|
82777
82784
|
"description",
|
|
82778
82785
|
"limit",
|
|
82779
|
-
"grouped"
|
|
82786
|
+
"grouped",
|
|
82787
|
+
"collapsed"
|
|
82780
82788
|
]
|
|
82781
82789
|
},
|
|
82782
82790
|
"EventBlock": {
|
|
@@ -94440,6 +94448,9 @@
|
|
|
94440
94448
|
},
|
|
94441
94449
|
"grouped": {
|
|
94442
94450
|
"type": "boolean"
|
|
94451
|
+
},
|
|
94452
|
+
"collapsed": {
|
|
94453
|
+
"type": "boolean"
|
|
94443
94454
|
}
|
|
94444
94455
|
},
|
|
94445
94456
|
"required": [
|
|
@@ -94461,6 +94472,9 @@
|
|
|
94461
94472
|
},
|
|
94462
94473
|
"grouped": {
|
|
94463
94474
|
"type": "boolean"
|
|
94475
|
+
},
|
|
94476
|
+
"collapsed": {
|
|
94477
|
+
"type": "boolean"
|
|
94464
94478
|
}
|
|
94465
94479
|
}
|
|
94466
94480
|
},
|
|
@@ -99767,6 +99781,9 @@
|
|
|
99767
99781
|
"type": "string"
|
|
99768
99782
|
},
|
|
99769
99783
|
"nullable": true
|
|
99784
|
+
},
|
|
99785
|
+
"locationOption": {
|
|
99786
|
+
"$ref": "#/components/schemas/LocationQuestionOption"
|
|
99770
99787
|
}
|
|
99771
99788
|
},
|
|
99772
99789
|
"required": [
|
|
@@ -99822,6 +99839,9 @@
|
|
|
99822
99839
|
"type": "string"
|
|
99823
99840
|
},
|
|
99824
99841
|
"nullable": true
|
|
99842
|
+
},
|
|
99843
|
+
"locationOption": {
|
|
99844
|
+
"$ref": "#/components/schemas/LocationQuestionOption"
|
|
99825
99845
|
}
|
|
99826
99846
|
}
|
|
99827
99847
|
},
|