@connectedxm/admin 6.24.3 → 6.24.4
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 +36 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2349,6 +2349,8 @@ interface BaseSeries {
|
|
|
2349
2349
|
name: string;
|
|
2350
2350
|
description: string | null;
|
|
2351
2351
|
longDescription: string | null;
|
|
2352
|
+
registration: boolean;
|
|
2353
|
+
featured: boolean;
|
|
2352
2354
|
startDate: string | null;
|
|
2353
2355
|
endDate: string | null;
|
|
2354
2356
|
imageId: string | null;
|
|
@@ -6123,6 +6125,8 @@ interface SeriesCreateInputs {
|
|
|
6123
6125
|
startDate?: string | null;
|
|
6124
6126
|
endDate?: string | null;
|
|
6125
6127
|
registration?: boolean;
|
|
6128
|
+
featured?: boolean;
|
|
6129
|
+
sortOrder?: number | string | null;
|
|
6126
6130
|
price?: number;
|
|
6127
6131
|
taxCode?: string | null;
|
|
6128
6132
|
taxIncluded?: boolean;
|
|
@@ -6141,6 +6145,8 @@ interface SeriesUpdateInputs {
|
|
|
6141
6145
|
startDate?: string | null;
|
|
6142
6146
|
endDate?: string | null;
|
|
6143
6147
|
registration?: boolean;
|
|
6148
|
+
featured?: boolean;
|
|
6149
|
+
sortOrder?: number | string | null;
|
|
6144
6150
|
price?: number;
|
|
6145
6151
|
taxCode?: string | null;
|
|
6146
6152
|
taxIncluded?: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -2349,6 +2349,8 @@ interface BaseSeries {
|
|
|
2349
2349
|
name: string;
|
|
2350
2350
|
description: string | null;
|
|
2351
2351
|
longDescription: string | null;
|
|
2352
|
+
registration: boolean;
|
|
2353
|
+
featured: boolean;
|
|
2352
2354
|
startDate: string | null;
|
|
2353
2355
|
endDate: string | null;
|
|
2354
2356
|
imageId: string | null;
|
|
@@ -6123,6 +6125,8 @@ interface SeriesCreateInputs {
|
|
|
6123
6125
|
startDate?: string | null;
|
|
6124
6126
|
endDate?: string | null;
|
|
6125
6127
|
registration?: boolean;
|
|
6128
|
+
featured?: boolean;
|
|
6129
|
+
sortOrder?: number | string | null;
|
|
6126
6130
|
price?: number;
|
|
6127
6131
|
taxCode?: string | null;
|
|
6128
6132
|
taxIncluded?: boolean;
|
|
@@ -6141,6 +6145,8 @@ interface SeriesUpdateInputs {
|
|
|
6141
6145
|
startDate?: string | null;
|
|
6142
6146
|
endDate?: string | null;
|
|
6143
6147
|
registration?: boolean;
|
|
6148
|
+
featured?: boolean;
|
|
6149
|
+
sortOrder?: number | string | null;
|
|
6144
6150
|
price?: number;
|
|
6145
6151
|
taxCode?: string | null;
|
|
6146
6152
|
taxIncluded?: boolean;
|
package/openapi.json
CHANGED
|
@@ -101343,6 +101343,12 @@
|
|
|
101343
101343
|
"type": "string",
|
|
101344
101344
|
"nullable": true
|
|
101345
101345
|
},
|
|
101346
|
+
"registration": {
|
|
101347
|
+
"type": "boolean"
|
|
101348
|
+
},
|
|
101349
|
+
"featured": {
|
|
101350
|
+
"type": "boolean"
|
|
101351
|
+
},
|
|
101346
101352
|
"startDate": {
|
|
101347
101353
|
"type": "string",
|
|
101348
101354
|
"nullable": true
|
|
@@ -101370,6 +101376,8 @@
|
|
|
101370
101376
|
"name",
|
|
101371
101377
|
"description",
|
|
101372
101378
|
"longDescription",
|
|
101379
|
+
"registration",
|
|
101380
|
+
"featured",
|
|
101373
101381
|
"startDate",
|
|
101374
101382
|
"endDate",
|
|
101375
101383
|
"imageId",
|
|
@@ -117165,6 +117173,20 @@
|
|
|
117165
117173
|
"registration": {
|
|
117166
117174
|
"type": "boolean"
|
|
117167
117175
|
},
|
|
117176
|
+
"featured": {
|
|
117177
|
+
"type": "boolean"
|
|
117178
|
+
},
|
|
117179
|
+
"sortOrder": {
|
|
117180
|
+
"oneOf": [
|
|
117181
|
+
{
|
|
117182
|
+
"type": "number"
|
|
117183
|
+
},
|
|
117184
|
+
{
|
|
117185
|
+
"type": "string"
|
|
117186
|
+
}
|
|
117187
|
+
],
|
|
117188
|
+
"nullable": true
|
|
117189
|
+
},
|
|
117168
117190
|
"price": {
|
|
117169
117191
|
"type": "number"
|
|
117170
117192
|
},
|
|
@@ -117233,6 +117255,20 @@
|
|
|
117233
117255
|
"registration": {
|
|
117234
117256
|
"type": "boolean"
|
|
117235
117257
|
},
|
|
117258
|
+
"featured": {
|
|
117259
|
+
"type": "boolean"
|
|
117260
|
+
},
|
|
117261
|
+
"sortOrder": {
|
|
117262
|
+
"oneOf": [
|
|
117263
|
+
{
|
|
117264
|
+
"type": "number"
|
|
117265
|
+
},
|
|
117266
|
+
{
|
|
117267
|
+
"type": "string"
|
|
117268
|
+
}
|
|
117269
|
+
],
|
|
117270
|
+
"nullable": true
|
|
117271
|
+
},
|
|
117236
117272
|
"price": {
|
|
117237
117273
|
"type": "number"
|
|
117238
117274
|
},
|