@digital8/lighting-illusions-ts-sdk 0.0.375 → 0.0.376

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @digital8/lighting-illusions-ts-sdk@0.0.375
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.376
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -275,7 +275,7 @@ and is automatically generated by the
275
275
  [OpenAPI Generator](https://openapi-generator.tech) project:
276
276
 
277
277
  - API version: `1.0.0`
278
- - Package version: `0.0.375`
278
+ - Package version: `0.0.376`
279
279
  - Generator version: `7.17.0`
280
280
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
281
281
 
@@ -45,6 +45,18 @@ export interface GetAllProductChildRequest {
45
45
  * @memberof GetAllProductChildRequest
46
46
  */
47
47
  relatedType?: string;
48
+ /**
49
+ *
50
+ * @type {Array<string>}
51
+ * @memberof GetAllProductChildRequest
52
+ */
53
+ siteId?: Array<string>;
54
+ /**
55
+ *
56
+ * @type {Array<string>}
57
+ * @memberof GetAllProductChildRequest
58
+ */
59
+ isDisabled?: Array<string>;
48
60
  }
49
61
  /**
50
62
  * @export
@@ -59,6 +59,8 @@ function GetAllProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
59
59
  'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
60
60
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
61
61
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
62
+ 'siteId': json['site_id'] == null ? undefined : json['site_id'],
63
+ 'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
62
64
  };
63
65
  }
64
66
  function GetAllProductChildRequestToJSON(json) {
@@ -75,5 +77,7 @@ function GetAllProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
75
77
  'sortDirection': value['sortDirection'],
76
78
  'related_id': value['relatedId'],
77
79
  'related_type': value['relatedType'],
80
+ 'site_id': value['siteId'],
81
+ 'is_disabled': value['isDisabled'],
78
82
  };
79
83
  }
@@ -11,6 +11,8 @@ Name | Type
11
11
  `sortDirection` | string
12
12
  `relatedId` | number
13
13
  `relatedType` | string
14
+ `siteId` | Array&lt;string&gt;
15
+ `isDisabled` | Array&lt;string&gt;
14
16
 
15
17
  ## Example
16
18
 
@@ -24,6 +26,8 @@ const example = {
24
26
  "sortDirection": null,
25
27
  "relatedId": null,
26
28
  "relatedType": null,
29
+ "siteId": null,
30
+ "isDisabled": null,
27
31
  } satisfies GetAllProductChildRequest
28
32
 
29
33
  console.log(example)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.375",
3
+ "version": "0.0.376",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -49,6 +49,18 @@ export interface GetAllProductChildRequest {
49
49
  * @memberof GetAllProductChildRequest
50
50
  */
51
51
  relatedType?: string;
52
+ /**
53
+ *
54
+ * @type {Array<string>}
55
+ * @memberof GetAllProductChildRequest
56
+ */
57
+ siteId?: Array<string>;
58
+ /**
59
+ *
60
+ * @type {Array<string>}
61
+ * @memberof GetAllProductChildRequest
62
+ */
63
+ isDisabled?: Array<string>;
52
64
  }
53
65
 
54
66
 
@@ -100,6 +112,8 @@ export function GetAllProductChildRequestFromJSONTyped(json: any, ignoreDiscrimi
100
112
  'sortDirection': json['sortDirection'] == null ? undefined : json['sortDirection'],
101
113
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
102
114
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
115
+ 'siteId': json['site_id'] == null ? undefined : json['site_id'],
116
+ 'isDisabled': json['is_disabled'] == null ? undefined : json['is_disabled'],
103
117
  };
104
118
  }
105
119
 
@@ -119,6 +133,8 @@ export function GetAllProductChildRequestToJSONTyped(value?: GetAllProductChildR
119
133
  'sortDirection': value['sortDirection'],
120
134
  'related_id': value['relatedId'],
121
135
  'related_type': value['relatedType'],
136
+ 'site_id': value['siteId'],
137
+ 'is_disabled': value['isDisabled'],
122
138
  };
123
139
  }
124
140