@connectedxm/admin-sdk 6.24.3 → 6.25.0
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/api.ts +12 -0
- package/dist/api.d.ts +12 -0
- package/dist/esm/api.d.ts +12 -0
- package/docs/AccountAttribute.md +2 -0
- package/docs/AccountAttributeCreateInputs.md +2 -0
- package/docs/AccountAttributeUpdateInputs.md +2 -0
- package/docs/BaseAccountAttribute.md +2 -0
- package/docs/BaseSeries.md +4 -0
- package/docs/Series.md +4 -0
- package/docs/SeriesCreateInputs.md +4 -0
- package/docs/SeriesUpdateInputs.md +4 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -153,6 +153,7 @@ export interface AccountAttribute {
|
|
|
153
153
|
'adminOnly': boolean;
|
|
154
154
|
'editable': boolean;
|
|
155
155
|
'public': boolean;
|
|
156
|
+
'subline': boolean;
|
|
156
157
|
'includedInDashboards': boolean;
|
|
157
158
|
'sortOrder': number;
|
|
158
159
|
'locationOption': LocationQuestionOption;
|
|
@@ -174,6 +175,7 @@ export interface AccountAttributeCreateInputs {
|
|
|
174
175
|
'adminOnly'?: boolean;
|
|
175
176
|
'editable'?: boolean;
|
|
176
177
|
'public'?: boolean;
|
|
178
|
+
'subline'?: boolean;
|
|
177
179
|
'includedInDashboards'?: boolean;
|
|
178
180
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
179
181
|
'searchListId'?: string | null;
|
|
@@ -201,6 +203,7 @@ export interface AccountAttributeUpdateInputs {
|
|
|
201
203
|
'adminOnly'?: boolean;
|
|
202
204
|
'editable'?: boolean;
|
|
203
205
|
'public'?: boolean;
|
|
206
|
+
'subline'?: boolean;
|
|
204
207
|
'includedInDashboards'?: boolean;
|
|
205
208
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
206
209
|
'searchListId'?: string | null;
|
|
@@ -789,6 +792,7 @@ export interface BaseAccountAttribute {
|
|
|
789
792
|
'adminOnly': boolean;
|
|
790
793
|
'editable': boolean;
|
|
791
794
|
'public': boolean;
|
|
795
|
+
'subline': boolean;
|
|
792
796
|
'includedInDashboards': boolean;
|
|
793
797
|
'sortOrder': number;
|
|
794
798
|
'locationOption': LocationQuestionOption;
|
|
@@ -2207,6 +2211,8 @@ export interface BaseSeries {
|
|
|
2207
2211
|
'name': string;
|
|
2208
2212
|
'description': string | null;
|
|
2209
2213
|
'longDescription': string | null;
|
|
2214
|
+
'registration': boolean;
|
|
2215
|
+
'featured': boolean;
|
|
2210
2216
|
'startDate': string | null;
|
|
2211
2217
|
'endDate': string | null;
|
|
2212
2218
|
'imageId': string | null;
|
|
@@ -12352,6 +12358,8 @@ export interface Series {
|
|
|
12352
12358
|
'name': string;
|
|
12353
12359
|
'description': string | null;
|
|
12354
12360
|
'longDescription': string | null;
|
|
12361
|
+
'registration': boolean;
|
|
12362
|
+
'featured': boolean;
|
|
12355
12363
|
'startDate': string | null;
|
|
12356
12364
|
'endDate': string | null;
|
|
12357
12365
|
'imageId': string | null;
|
|
@@ -12381,6 +12389,8 @@ export interface SeriesCreateInputs {
|
|
|
12381
12389
|
'startDate'?: string | null;
|
|
12382
12390
|
'endDate'?: string | null;
|
|
12383
12391
|
'registration'?: boolean;
|
|
12392
|
+
'featured'?: boolean;
|
|
12393
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
12384
12394
|
'price'?: number;
|
|
12385
12395
|
'taxCode'?: string | null;
|
|
12386
12396
|
'taxIncluded'?: boolean;
|
|
@@ -12606,6 +12616,8 @@ export interface SeriesUpdateInputs {
|
|
|
12606
12616
|
'startDate'?: string | null;
|
|
12607
12617
|
'endDate'?: string | null;
|
|
12608
12618
|
'registration'?: boolean;
|
|
12619
|
+
'featured'?: boolean;
|
|
12620
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
12609
12621
|
'price'?: number;
|
|
12610
12622
|
'taxCode'?: string | null;
|
|
12611
12623
|
'taxIncluded'?: boolean;
|
package/dist/api.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ export interface AccountAttribute {
|
|
|
136
136
|
'adminOnly': boolean;
|
|
137
137
|
'editable': boolean;
|
|
138
138
|
'public': boolean;
|
|
139
|
+
'subline': boolean;
|
|
139
140
|
'includedInDashboards': boolean;
|
|
140
141
|
'sortOrder': number;
|
|
141
142
|
'locationOption': LocationQuestionOption;
|
|
@@ -155,6 +156,7 @@ export interface AccountAttributeCreateInputs {
|
|
|
155
156
|
'adminOnly'?: boolean;
|
|
156
157
|
'editable'?: boolean;
|
|
157
158
|
'public'?: boolean;
|
|
159
|
+
'subline'?: boolean;
|
|
158
160
|
'includedInDashboards'?: boolean;
|
|
159
161
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
160
162
|
'searchListId'?: string | null;
|
|
@@ -177,6 +179,7 @@ export interface AccountAttributeUpdateInputs {
|
|
|
177
179
|
'adminOnly'?: boolean;
|
|
178
180
|
'editable'?: boolean;
|
|
179
181
|
'public'?: boolean;
|
|
182
|
+
'subline'?: boolean;
|
|
180
183
|
'includedInDashboards'?: boolean;
|
|
181
184
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
182
185
|
'searchListId'?: string | null;
|
|
@@ -714,6 +717,7 @@ export interface BaseAccountAttribute {
|
|
|
714
717
|
'adminOnly': boolean;
|
|
715
718
|
'editable': boolean;
|
|
716
719
|
'public': boolean;
|
|
720
|
+
'subline': boolean;
|
|
717
721
|
'includedInDashboards': boolean;
|
|
718
722
|
'sortOrder': number;
|
|
719
723
|
'locationOption': LocationQuestionOption;
|
|
@@ -2046,6 +2050,8 @@ export interface BaseSeries {
|
|
|
2046
2050
|
'name': string;
|
|
2047
2051
|
'description': string | null;
|
|
2048
2052
|
'longDescription': string | null;
|
|
2053
|
+
'registration': boolean;
|
|
2054
|
+
'featured': boolean;
|
|
2049
2055
|
'startDate': string | null;
|
|
2050
2056
|
'endDate': string | null;
|
|
2051
2057
|
'imageId': string | null;
|
|
@@ -10949,6 +10955,8 @@ export interface Series {
|
|
|
10949
10955
|
'name': string;
|
|
10950
10956
|
'description': string | null;
|
|
10951
10957
|
'longDescription': string | null;
|
|
10958
|
+
'registration': boolean;
|
|
10959
|
+
'featured': boolean;
|
|
10952
10960
|
'startDate': string | null;
|
|
10953
10961
|
'endDate': string | null;
|
|
10954
10962
|
'imageId': string | null;
|
|
@@ -10976,6 +10984,8 @@ export interface SeriesCreateInputs {
|
|
|
10976
10984
|
'startDate'?: string | null;
|
|
10977
10985
|
'endDate'?: string | null;
|
|
10978
10986
|
'registration'?: boolean;
|
|
10987
|
+
'featured'?: boolean;
|
|
10988
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
10979
10989
|
'price'?: number;
|
|
10980
10990
|
'taxCode'?: string | null;
|
|
10981
10991
|
'taxIncluded'?: boolean;
|
|
@@ -11185,6 +11195,8 @@ export interface SeriesUpdateInputs {
|
|
|
11185
11195
|
'startDate'?: string | null;
|
|
11186
11196
|
'endDate'?: string | null;
|
|
11187
11197
|
'registration'?: boolean;
|
|
11198
|
+
'featured'?: boolean;
|
|
11199
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
11188
11200
|
'price'?: number;
|
|
11189
11201
|
'taxCode'?: string | null;
|
|
11190
11202
|
'taxIncluded'?: boolean;
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ export interface AccountAttribute {
|
|
|
136
136
|
'adminOnly': boolean;
|
|
137
137
|
'editable': boolean;
|
|
138
138
|
'public': boolean;
|
|
139
|
+
'subline': boolean;
|
|
139
140
|
'includedInDashboards': boolean;
|
|
140
141
|
'sortOrder': number;
|
|
141
142
|
'locationOption': LocationQuestionOption;
|
|
@@ -155,6 +156,7 @@ export interface AccountAttributeCreateInputs {
|
|
|
155
156
|
'adminOnly'?: boolean;
|
|
156
157
|
'editable'?: boolean;
|
|
157
158
|
'public'?: boolean;
|
|
159
|
+
'subline'?: boolean;
|
|
158
160
|
'includedInDashboards'?: boolean;
|
|
159
161
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
160
162
|
'searchListId'?: string | null;
|
|
@@ -177,6 +179,7 @@ export interface AccountAttributeUpdateInputs {
|
|
|
177
179
|
'adminOnly'?: boolean;
|
|
178
180
|
'editable'?: boolean;
|
|
179
181
|
'public'?: boolean;
|
|
182
|
+
'subline'?: boolean;
|
|
180
183
|
'includedInDashboards'?: boolean;
|
|
181
184
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
182
185
|
'searchListId'?: string | null;
|
|
@@ -714,6 +717,7 @@ export interface BaseAccountAttribute {
|
|
|
714
717
|
'adminOnly': boolean;
|
|
715
718
|
'editable': boolean;
|
|
716
719
|
'public': boolean;
|
|
720
|
+
'subline': boolean;
|
|
717
721
|
'includedInDashboards': boolean;
|
|
718
722
|
'sortOrder': number;
|
|
719
723
|
'locationOption': LocationQuestionOption;
|
|
@@ -2046,6 +2050,8 @@ export interface BaseSeries {
|
|
|
2046
2050
|
'name': string;
|
|
2047
2051
|
'description': string | null;
|
|
2048
2052
|
'longDescription': string | null;
|
|
2053
|
+
'registration': boolean;
|
|
2054
|
+
'featured': boolean;
|
|
2049
2055
|
'startDate': string | null;
|
|
2050
2056
|
'endDate': string | null;
|
|
2051
2057
|
'imageId': string | null;
|
|
@@ -10949,6 +10955,8 @@ export interface Series {
|
|
|
10949
10955
|
'name': string;
|
|
10950
10956
|
'description': string | null;
|
|
10951
10957
|
'longDescription': string | null;
|
|
10958
|
+
'registration': boolean;
|
|
10959
|
+
'featured': boolean;
|
|
10952
10960
|
'startDate': string | null;
|
|
10953
10961
|
'endDate': string | null;
|
|
10954
10962
|
'imageId': string | null;
|
|
@@ -10976,6 +10984,8 @@ export interface SeriesCreateInputs {
|
|
|
10976
10984
|
'startDate'?: string | null;
|
|
10977
10985
|
'endDate'?: string | null;
|
|
10978
10986
|
'registration'?: boolean;
|
|
10987
|
+
'featured'?: boolean;
|
|
10988
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
10979
10989
|
'price'?: number;
|
|
10980
10990
|
'taxCode'?: string | null;
|
|
10981
10991
|
'taxIncluded'?: boolean;
|
|
@@ -11185,6 +11195,8 @@ export interface SeriesUpdateInputs {
|
|
|
11185
11195
|
'startDate'?: string | null;
|
|
11186
11196
|
'endDate'?: string | null;
|
|
11187
11197
|
'registration'?: boolean;
|
|
11198
|
+
'featured'?: boolean;
|
|
11199
|
+
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
11188
11200
|
'price'?: number;
|
|
11189
11201
|
'taxCode'?: string | null;
|
|
11190
11202
|
'taxIncluded'?: boolean;
|
package/docs/AccountAttribute.md
CHANGED
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**adminOnly** | **boolean** | | [default to undefined]
|
|
15
15
|
**editable** | **boolean** | | [default to undefined]
|
|
16
16
|
**_public** | **boolean** | | [default to undefined]
|
|
17
|
+
**subline** | **boolean** | | [default to undefined]
|
|
17
18
|
**includedInDashboards** | **boolean** | | [default to undefined]
|
|
18
19
|
**sortOrder** | **number** | | [default to undefined]
|
|
19
20
|
**locationOption** | [**LocationQuestionOption**](LocationQuestionOption.md) | | [default to undefined]
|
|
@@ -36,6 +37,7 @@ const instance: AccountAttribute = {
|
|
|
36
37
|
adminOnly,
|
|
37
38
|
editable,
|
|
38
39
|
_public,
|
|
40
|
+
subline,
|
|
39
41
|
includedInDashboards,
|
|
40
42
|
sortOrder,
|
|
41
43
|
locationOption,
|
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
**adminOnly** | **boolean** | | [optional] [default to undefined]
|
|
14
14
|
**editable** | **boolean** | | [optional] [default to undefined]
|
|
15
15
|
**_public** | **boolean** | | [optional] [default to undefined]
|
|
16
|
+
**subline** | **boolean** | | [optional] [default to undefined]
|
|
16
17
|
**includedInDashboards** | **boolean** | | [optional] [default to undefined]
|
|
17
18
|
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
18
19
|
**searchListId** | **string** | | [optional] [default to undefined]
|
|
@@ -33,6 +34,7 @@ const instance: AccountAttributeCreateInputs = {
|
|
|
33
34
|
adminOnly,
|
|
34
35
|
editable,
|
|
35
36
|
_public,
|
|
37
|
+
subline,
|
|
36
38
|
includedInDashboards,
|
|
37
39
|
sortOrder,
|
|
38
40
|
searchListId,
|
|
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
|
|
|
11
11
|
**adminOnly** | **boolean** | | [optional] [default to undefined]
|
|
12
12
|
**editable** | **boolean** | | [optional] [default to undefined]
|
|
13
13
|
**_public** | **boolean** | | [optional] [default to undefined]
|
|
14
|
+
**subline** | **boolean** | | [optional] [default to undefined]
|
|
14
15
|
**includedInDashboards** | **boolean** | | [optional] [default to undefined]
|
|
15
16
|
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
16
17
|
**searchListId** | **string** | | [optional] [default to undefined]
|
|
@@ -29,6 +30,7 @@ const instance: AccountAttributeUpdateInputs = {
|
|
|
29
30
|
adminOnly,
|
|
30
31
|
editable,
|
|
31
32
|
_public,
|
|
33
|
+
subline,
|
|
32
34
|
includedInDashboards,
|
|
33
35
|
sortOrder,
|
|
34
36
|
searchListId,
|
|
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**adminOnly** | **boolean** | | [default to undefined]
|
|
15
15
|
**editable** | **boolean** | | [default to undefined]
|
|
16
16
|
**_public** | **boolean** | | [default to undefined]
|
|
17
|
+
**subline** | **boolean** | | [default to undefined]
|
|
17
18
|
**includedInDashboards** | **boolean** | | [default to undefined]
|
|
18
19
|
**sortOrder** | **number** | | [default to undefined]
|
|
19
20
|
**locationOption** | [**LocationQuestionOption**](LocationQuestionOption.md) | | [default to undefined]
|
|
@@ -33,6 +34,7 @@ const instance: BaseAccountAttribute = {
|
|
|
33
34
|
adminOnly,
|
|
34
35
|
editable,
|
|
35
36
|
_public,
|
|
37
|
+
subline,
|
|
36
38
|
includedInDashboards,
|
|
37
39
|
sortOrder,
|
|
38
40
|
locationOption,
|
package/docs/BaseSeries.md
CHANGED
|
@@ -10,6 +10,8 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**name** | **string** | | [default to undefined]
|
|
11
11
|
**description** | **string** | | [default to undefined]
|
|
12
12
|
**longDescription** | **string** | | [default to undefined]
|
|
13
|
+
**registration** | **boolean** | | [default to undefined]
|
|
14
|
+
**featured** | **boolean** | | [default to undefined]
|
|
13
15
|
**startDate** | **string** | | [default to undefined]
|
|
14
16
|
**endDate** | **string** | | [default to undefined]
|
|
15
17
|
**imageId** | **string** | | [default to undefined]
|
|
@@ -26,6 +28,8 @@ const instance: BaseSeries = {
|
|
|
26
28
|
name,
|
|
27
29
|
description,
|
|
28
30
|
longDescription,
|
|
31
|
+
registration,
|
|
32
|
+
featured,
|
|
29
33
|
startDate,
|
|
30
34
|
endDate,
|
|
31
35
|
imageId,
|
package/docs/Series.md
CHANGED
|
@@ -10,6 +10,8 @@ Name | Type | Description | Notes
|
|
|
10
10
|
**name** | **string** | | [default to undefined]
|
|
11
11
|
**description** | **string** | | [default to undefined]
|
|
12
12
|
**longDescription** | **string** | | [default to undefined]
|
|
13
|
+
**registration** | **boolean** | | [default to undefined]
|
|
14
|
+
**featured** | **boolean** | | [default to undefined]
|
|
13
15
|
**startDate** | **string** | | [default to undefined]
|
|
14
16
|
**endDate** | **string** | | [default to undefined]
|
|
15
17
|
**imageId** | **string** | | [default to undefined]
|
|
@@ -38,6 +40,8 @@ const instance: Series = {
|
|
|
38
40
|
name,
|
|
39
41
|
description,
|
|
40
42
|
longDescription,
|
|
43
|
+
registration,
|
|
44
|
+
featured,
|
|
41
45
|
startDate,
|
|
42
46
|
endDate,
|
|
43
47
|
imageId,
|
|
@@ -14,6 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**startDate** | **string** | | [optional] [default to undefined]
|
|
15
15
|
**endDate** | **string** | | [optional] [default to undefined]
|
|
16
16
|
**registration** | **boolean** | | [optional] [default to undefined]
|
|
17
|
+
**featured** | **boolean** | | [optional] [default to undefined]
|
|
18
|
+
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
17
19
|
**price** | **number** | | [optional] [default to undefined]
|
|
18
20
|
**taxCode** | **string** | | [optional] [default to undefined]
|
|
19
21
|
**taxIncluded** | **boolean** | | [optional] [default to undefined]
|
|
@@ -37,6 +39,8 @@ const instance: SeriesCreateInputs = {
|
|
|
37
39
|
startDate,
|
|
38
40
|
endDate,
|
|
39
41
|
registration,
|
|
42
|
+
featured,
|
|
43
|
+
sortOrder,
|
|
40
44
|
price,
|
|
41
45
|
taxCode,
|
|
42
46
|
taxIncluded,
|
|
@@ -14,6 +14,8 @@ Name | Type | Description | Notes
|
|
|
14
14
|
**startDate** | **string** | | [optional] [default to undefined]
|
|
15
15
|
**endDate** | **string** | | [optional] [default to undefined]
|
|
16
16
|
**registration** | **boolean** | | [optional] [default to undefined]
|
|
17
|
+
**featured** | **boolean** | | [optional] [default to undefined]
|
|
18
|
+
**sortOrder** | [**AdvertisementCreateInputsWeight**](AdvertisementCreateInputsWeight.md) | | [optional] [default to undefined]
|
|
17
19
|
**price** | **number** | | [optional] [default to undefined]
|
|
18
20
|
**taxCode** | **string** | | [optional] [default to undefined]
|
|
19
21
|
**taxIncluded** | **boolean** | | [optional] [default to undefined]
|
|
@@ -37,6 +39,8 @@ const instance: SeriesUpdateInputs = {
|
|
|
37
39
|
startDate,
|
|
38
40
|
endDate,
|
|
39
41
|
registration,
|
|
42
|
+
featured,
|
|
43
|
+
sortOrder,
|
|
40
44
|
price,
|
|
41
45
|
taxCode,
|
|
42
46
|
taxIncluded,
|