@digital8/lighting-illusions-ts-sdk 0.0.545 → 0.0.547

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.545
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.547
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -408,7 +408,7 @@ and is automatically generated by the
408
408
  [OpenAPI Generator](https://openapi-generator.tech) project:
409
409
 
410
410
  - API version: `1.0.0`
411
- - Package version: `0.0.545`
411
+ - Package version: `0.0.547`
412
412
  - Generator version: `7.18.0`
413
413
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
414
414
 
@@ -87,6 +87,18 @@ export interface IndexProductCategoryRequest {
87
87
  * @memberof IndexProductCategoryRequest
88
88
  */
89
89
  includesRelations?: boolean;
90
+ /**
91
+ *
92
+ * @type {boolean}
93
+ * @memberof IndexProductCategoryRequest
94
+ */
95
+ isParent?: boolean;
96
+ /**
97
+ *
98
+ * @type {boolean}
99
+ * @memberof IndexProductCategoryRequest
100
+ */
101
+ isEmpty?: boolean;
90
102
  }
91
103
  /**
92
104
  * @export
@@ -71,6 +71,8 @@ function IndexProductCategoryRequestFromJSONTyped(json, ignoreDiscriminator) {
71
71
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
72
72
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
73
73
  'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
74
+ 'isParent': json['is_parent'] == null ? undefined : json['is_parent'],
75
+ 'isEmpty': json['is_empty'] == null ? undefined : json['is_empty'],
74
76
  };
75
77
  }
76
78
  function IndexProductCategoryRequestToJSON(json) {
@@ -94,5 +96,7 @@ function IndexProductCategoryRequestToJSONTyped(value, ignoreDiscriminator) {
94
96
  'related_id': value['relatedId'],
95
97
  'related_type': value['relatedType'],
96
98
  'includes_relations': value['includesRelations'],
99
+ 'is_parent': value['isParent'],
100
+ 'is_empty': value['isEmpty'],
97
101
  };
98
102
  }
@@ -18,6 +18,8 @@ Name | Type
18
18
  `relatedId` | number
19
19
  `relatedType` | string
20
20
  `includesRelations` | boolean
21
+ `isParent` | boolean
22
+ `isEmpty` | boolean
21
23
 
22
24
  ## Example
23
25
 
@@ -38,6 +40,8 @@ const example = {
38
40
  "relatedId": null,
39
41
  "relatedType": null,
40
42
  "includesRelations": null,
43
+ "isParent": null,
44
+ "isEmpty": null,
41
45
  } satisfies IndexProductCategoryRequest
42
46
 
43
47
  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.545",
3
+ "version": "0.0.547",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -91,6 +91,18 @@ export interface IndexProductCategoryRequest {
91
91
  * @memberof IndexProductCategoryRequest
92
92
  */
93
93
  includesRelations?: boolean;
94
+ /**
95
+ *
96
+ * @type {boolean}
97
+ * @memberof IndexProductCategoryRequest
98
+ */
99
+ isParent?: boolean;
100
+ /**
101
+ *
102
+ * @type {boolean}
103
+ * @memberof IndexProductCategoryRequest
104
+ */
105
+ isEmpty?: boolean;
94
106
  }
95
107
 
96
108
 
@@ -156,6 +168,8 @@ export function IndexProductCategoryRequestFromJSONTyped(json: any, ignoreDiscri
156
168
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
157
169
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
158
170
  'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
171
+ 'isParent': json['is_parent'] == null ? undefined : json['is_parent'],
172
+ 'isEmpty': json['is_empty'] == null ? undefined : json['is_empty'],
159
173
  };
160
174
  }
161
175
 
@@ -182,6 +196,8 @@ export function IndexProductCategoryRequestToJSONTyped(value?: IndexProductCateg
182
196
  'related_id': value['relatedId'],
183
197
  'related_type': value['relatedType'],
184
198
  'includes_relations': value['includesRelations'],
199
+ 'is_parent': value['isParent'],
200
+ 'is_empty': value['isEmpty'],
185
201
  };
186
202
  }
187
203