@connectedxm/admin 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/dist/index.d.cts +9 -0
- package/dist/index.d.ts +9 -0
- package/openapi.json +46 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -263,6 +263,7 @@ interface BaseAccountAttribute {
|
|
|
263
263
|
adminOnly: boolean;
|
|
264
264
|
editable: boolean;
|
|
265
265
|
public: boolean;
|
|
266
|
+
subline: boolean;
|
|
266
267
|
includedInDashboards: boolean;
|
|
267
268
|
sortOrder: number;
|
|
268
269
|
locationOption: keyof typeof LocationQuestionOption;
|
|
@@ -2349,6 +2350,8 @@ interface BaseSeries {
|
|
|
2349
2350
|
name: string;
|
|
2350
2351
|
description: string | null;
|
|
2351
2352
|
longDescription: string | null;
|
|
2353
|
+
registration: boolean;
|
|
2354
|
+
featured: boolean;
|
|
2352
2355
|
startDate: string | null;
|
|
2353
2356
|
endDate: string | null;
|
|
2354
2357
|
imageId: string | null;
|
|
@@ -6123,6 +6126,8 @@ interface SeriesCreateInputs {
|
|
|
6123
6126
|
startDate?: string | null;
|
|
6124
6127
|
endDate?: string | null;
|
|
6125
6128
|
registration?: boolean;
|
|
6129
|
+
featured?: boolean;
|
|
6130
|
+
sortOrder?: number | string | null;
|
|
6126
6131
|
price?: number;
|
|
6127
6132
|
taxCode?: string | null;
|
|
6128
6133
|
taxIncluded?: boolean;
|
|
@@ -6141,6 +6146,8 @@ interface SeriesUpdateInputs {
|
|
|
6141
6146
|
startDate?: string | null;
|
|
6142
6147
|
endDate?: string | null;
|
|
6143
6148
|
registration?: boolean;
|
|
6149
|
+
featured?: boolean;
|
|
6150
|
+
sortOrder?: number | string | null;
|
|
6144
6151
|
price?: number;
|
|
6145
6152
|
taxCode?: string | null;
|
|
6146
6153
|
taxIncluded?: boolean;
|
|
@@ -7094,6 +7101,7 @@ interface AccountAttributeCreateInputs {
|
|
|
7094
7101
|
adminOnly?: boolean;
|
|
7095
7102
|
editable?: boolean;
|
|
7096
7103
|
public?: boolean;
|
|
7104
|
+
subline?: boolean;
|
|
7097
7105
|
includedInDashboards?: boolean;
|
|
7098
7106
|
sortOrder?: number | string | null;
|
|
7099
7107
|
searchListId?: string | null;
|
|
@@ -7107,6 +7115,7 @@ interface AccountAttributeUpdateInputs {
|
|
|
7107
7115
|
adminOnly?: boolean;
|
|
7108
7116
|
editable?: boolean;
|
|
7109
7117
|
public?: boolean;
|
|
7118
|
+
subline?: boolean;
|
|
7110
7119
|
includedInDashboards?: boolean;
|
|
7111
7120
|
sortOrder?: number | string | null;
|
|
7112
7121
|
searchListId?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -263,6 +263,7 @@ interface BaseAccountAttribute {
|
|
|
263
263
|
adminOnly: boolean;
|
|
264
264
|
editable: boolean;
|
|
265
265
|
public: boolean;
|
|
266
|
+
subline: boolean;
|
|
266
267
|
includedInDashboards: boolean;
|
|
267
268
|
sortOrder: number;
|
|
268
269
|
locationOption: keyof typeof LocationQuestionOption;
|
|
@@ -2349,6 +2350,8 @@ interface BaseSeries {
|
|
|
2349
2350
|
name: string;
|
|
2350
2351
|
description: string | null;
|
|
2351
2352
|
longDescription: string | null;
|
|
2353
|
+
registration: boolean;
|
|
2354
|
+
featured: boolean;
|
|
2352
2355
|
startDate: string | null;
|
|
2353
2356
|
endDate: string | null;
|
|
2354
2357
|
imageId: string | null;
|
|
@@ -6123,6 +6126,8 @@ interface SeriesCreateInputs {
|
|
|
6123
6126
|
startDate?: string | null;
|
|
6124
6127
|
endDate?: string | null;
|
|
6125
6128
|
registration?: boolean;
|
|
6129
|
+
featured?: boolean;
|
|
6130
|
+
sortOrder?: number | string | null;
|
|
6126
6131
|
price?: number;
|
|
6127
6132
|
taxCode?: string | null;
|
|
6128
6133
|
taxIncluded?: boolean;
|
|
@@ -6141,6 +6146,8 @@ interface SeriesUpdateInputs {
|
|
|
6141
6146
|
startDate?: string | null;
|
|
6142
6147
|
endDate?: string | null;
|
|
6143
6148
|
registration?: boolean;
|
|
6149
|
+
featured?: boolean;
|
|
6150
|
+
sortOrder?: number | string | null;
|
|
6144
6151
|
price?: number;
|
|
6145
6152
|
taxCode?: string | null;
|
|
6146
6153
|
taxIncluded?: boolean;
|
|
@@ -7094,6 +7101,7 @@ interface AccountAttributeCreateInputs {
|
|
|
7094
7101
|
adminOnly?: boolean;
|
|
7095
7102
|
editable?: boolean;
|
|
7096
7103
|
public?: boolean;
|
|
7104
|
+
subline?: boolean;
|
|
7097
7105
|
includedInDashboards?: boolean;
|
|
7098
7106
|
sortOrder?: number | string | null;
|
|
7099
7107
|
searchListId?: string | null;
|
|
@@ -7107,6 +7115,7 @@ interface AccountAttributeUpdateInputs {
|
|
|
7107
7115
|
adminOnly?: boolean;
|
|
7108
7116
|
editable?: boolean;
|
|
7109
7117
|
public?: boolean;
|
|
7118
|
+
subline?: boolean;
|
|
7110
7119
|
includedInDashboards?: boolean;
|
|
7111
7120
|
sortOrder?: number | string | null;
|
|
7112
7121
|
searchListId?: string | null;
|
package/openapi.json
CHANGED
|
@@ -92162,6 +92162,9 @@
|
|
|
92162
92162
|
"public": {
|
|
92163
92163
|
"type": "boolean"
|
|
92164
92164
|
},
|
|
92165
|
+
"subline": {
|
|
92166
|
+
"type": "boolean"
|
|
92167
|
+
},
|
|
92165
92168
|
"includedInDashboards": {
|
|
92166
92169
|
"type": "boolean"
|
|
92167
92170
|
},
|
|
@@ -92182,6 +92185,7 @@
|
|
|
92182
92185
|
"adminOnly",
|
|
92183
92186
|
"editable",
|
|
92184
92187
|
"public",
|
|
92188
|
+
"subline",
|
|
92185
92189
|
"includedInDashboards",
|
|
92186
92190
|
"sortOrder",
|
|
92187
92191
|
"locationOption"
|
|
@@ -101343,6 +101347,12 @@
|
|
|
101343
101347
|
"type": "string",
|
|
101344
101348
|
"nullable": true
|
|
101345
101349
|
},
|
|
101350
|
+
"registration": {
|
|
101351
|
+
"type": "boolean"
|
|
101352
|
+
},
|
|
101353
|
+
"featured": {
|
|
101354
|
+
"type": "boolean"
|
|
101355
|
+
},
|
|
101346
101356
|
"startDate": {
|
|
101347
101357
|
"type": "string",
|
|
101348
101358
|
"nullable": true
|
|
@@ -101370,6 +101380,8 @@
|
|
|
101370
101380
|
"name",
|
|
101371
101381
|
"description",
|
|
101372
101382
|
"longDescription",
|
|
101383
|
+
"registration",
|
|
101384
|
+
"featured",
|
|
101373
101385
|
"startDate",
|
|
101374
101386
|
"endDate",
|
|
101375
101387
|
"imageId",
|
|
@@ -117165,6 +117177,20 @@
|
|
|
117165
117177
|
"registration": {
|
|
117166
117178
|
"type": "boolean"
|
|
117167
117179
|
},
|
|
117180
|
+
"featured": {
|
|
117181
|
+
"type": "boolean"
|
|
117182
|
+
},
|
|
117183
|
+
"sortOrder": {
|
|
117184
|
+
"oneOf": [
|
|
117185
|
+
{
|
|
117186
|
+
"type": "number"
|
|
117187
|
+
},
|
|
117188
|
+
{
|
|
117189
|
+
"type": "string"
|
|
117190
|
+
}
|
|
117191
|
+
],
|
|
117192
|
+
"nullable": true
|
|
117193
|
+
},
|
|
117168
117194
|
"price": {
|
|
117169
117195
|
"type": "number"
|
|
117170
117196
|
},
|
|
@@ -117233,6 +117259,20 @@
|
|
|
117233
117259
|
"registration": {
|
|
117234
117260
|
"type": "boolean"
|
|
117235
117261
|
},
|
|
117262
|
+
"featured": {
|
|
117263
|
+
"type": "boolean"
|
|
117264
|
+
},
|
|
117265
|
+
"sortOrder": {
|
|
117266
|
+
"oneOf": [
|
|
117267
|
+
{
|
|
117268
|
+
"type": "number"
|
|
117269
|
+
},
|
|
117270
|
+
{
|
|
117271
|
+
"type": "string"
|
|
117272
|
+
}
|
|
117273
|
+
],
|
|
117274
|
+
"nullable": true
|
|
117275
|
+
},
|
|
117236
117276
|
"price": {
|
|
117237
117277
|
"type": "number"
|
|
117238
117278
|
},
|
|
@@ -121164,6 +121204,9 @@
|
|
|
121164
121204
|
"public": {
|
|
121165
121205
|
"type": "boolean"
|
|
121166
121206
|
},
|
|
121207
|
+
"subline": {
|
|
121208
|
+
"type": "boolean"
|
|
121209
|
+
},
|
|
121167
121210
|
"includedInDashboards": {
|
|
121168
121211
|
"type": "boolean"
|
|
121169
121212
|
},
|
|
@@ -121222,6 +121265,9 @@
|
|
|
121222
121265
|
"public": {
|
|
121223
121266
|
"type": "boolean"
|
|
121224
121267
|
},
|
|
121268
|
+
"subline": {
|
|
121269
|
+
"type": "boolean"
|
|
121270
|
+
},
|
|
121225
121271
|
"includedInDashboards": {
|
|
121226
121272
|
"type": "boolean"
|
|
121227
121273
|
},
|