@connectedxm/admin-sdk 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/api.ts CHANGED
@@ -2207,6 +2207,8 @@ export interface BaseSeries {
2207
2207
  'name': string;
2208
2208
  'description': string | null;
2209
2209
  'longDescription': string | null;
2210
+ 'registration': boolean;
2211
+ 'featured': boolean;
2210
2212
  'startDate': string | null;
2211
2213
  'endDate': string | null;
2212
2214
  'imageId': string | null;
@@ -12352,6 +12354,8 @@ export interface Series {
12352
12354
  'name': string;
12353
12355
  'description': string | null;
12354
12356
  'longDescription': string | null;
12357
+ 'registration': boolean;
12358
+ 'featured': boolean;
12355
12359
  'startDate': string | null;
12356
12360
  'endDate': string | null;
12357
12361
  'imageId': string | null;
@@ -12381,6 +12385,8 @@ export interface SeriesCreateInputs {
12381
12385
  'startDate'?: string | null;
12382
12386
  'endDate'?: string | null;
12383
12387
  'registration'?: boolean;
12388
+ 'featured'?: boolean;
12389
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
12384
12390
  'price'?: number;
12385
12391
  'taxCode'?: string | null;
12386
12392
  'taxIncluded'?: boolean;
@@ -12606,6 +12612,8 @@ export interface SeriesUpdateInputs {
12606
12612
  'startDate'?: string | null;
12607
12613
  'endDate'?: string | null;
12608
12614
  'registration'?: boolean;
12615
+ 'featured'?: boolean;
12616
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
12609
12617
  'price'?: number;
12610
12618
  'taxCode'?: string | null;
12611
12619
  'taxIncluded'?: boolean;
package/dist/api.d.ts CHANGED
@@ -2046,6 +2046,8 @@ export interface BaseSeries {
2046
2046
  'name': string;
2047
2047
  'description': string | null;
2048
2048
  'longDescription': string | null;
2049
+ 'registration': boolean;
2050
+ 'featured': boolean;
2049
2051
  'startDate': string | null;
2050
2052
  'endDate': string | null;
2051
2053
  'imageId': string | null;
@@ -10949,6 +10951,8 @@ export interface Series {
10949
10951
  'name': string;
10950
10952
  'description': string | null;
10951
10953
  'longDescription': string | null;
10954
+ 'registration': boolean;
10955
+ 'featured': boolean;
10952
10956
  'startDate': string | null;
10953
10957
  'endDate': string | null;
10954
10958
  'imageId': string | null;
@@ -10976,6 +10980,8 @@ export interface SeriesCreateInputs {
10976
10980
  'startDate'?: string | null;
10977
10981
  'endDate'?: string | null;
10978
10982
  'registration'?: boolean;
10983
+ 'featured'?: boolean;
10984
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
10979
10985
  'price'?: number;
10980
10986
  'taxCode'?: string | null;
10981
10987
  'taxIncluded'?: boolean;
@@ -11185,6 +11191,8 @@ export interface SeriesUpdateInputs {
11185
11191
  'startDate'?: string | null;
11186
11192
  'endDate'?: string | null;
11187
11193
  'registration'?: boolean;
11194
+ 'featured'?: boolean;
11195
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
11188
11196
  'price'?: number;
11189
11197
  'taxCode'?: string | null;
11190
11198
  'taxIncluded'?: boolean;
package/dist/esm/api.d.ts CHANGED
@@ -2046,6 +2046,8 @@ export interface BaseSeries {
2046
2046
  'name': string;
2047
2047
  'description': string | null;
2048
2048
  'longDescription': string | null;
2049
+ 'registration': boolean;
2050
+ 'featured': boolean;
2049
2051
  'startDate': string | null;
2050
2052
  'endDate': string | null;
2051
2053
  'imageId': string | null;
@@ -10949,6 +10951,8 @@ export interface Series {
10949
10951
  'name': string;
10950
10952
  'description': string | null;
10951
10953
  'longDescription': string | null;
10954
+ 'registration': boolean;
10955
+ 'featured': boolean;
10952
10956
  'startDate': string | null;
10953
10957
  'endDate': string | null;
10954
10958
  'imageId': string | null;
@@ -10976,6 +10980,8 @@ export interface SeriesCreateInputs {
10976
10980
  'startDate'?: string | null;
10977
10981
  'endDate'?: string | null;
10978
10982
  'registration'?: boolean;
10983
+ 'featured'?: boolean;
10984
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
10979
10985
  'price'?: number;
10980
10986
  'taxCode'?: string | null;
10981
10987
  'taxIncluded'?: boolean;
@@ -11185,6 +11191,8 @@ export interface SeriesUpdateInputs {
11185
11191
  'startDate'?: string | null;
11186
11192
  'endDate'?: string | null;
11187
11193
  'registration'?: boolean;
11194
+ 'featured'?: boolean;
11195
+ 'sortOrder'?: AdvertisementCreateInputsWeight | null;
11188
11196
  'price'?: number;
11189
11197
  'taxCode'?: string | null;
11190
11198
  'taxIncluded'?: boolean;
@@ -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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin-sdk",
3
- "version": "6.24.3",
3
+ "version": "6.24.4",
4
4
  "description": "OpenAPI client for @connectedxm/admin-sdk",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {