@digital8/lighting-illusions-ts-sdk 0.0.557 → 0.0.558

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.557
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.558
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -410,7 +410,7 @@ and is automatically generated by the
410
410
  [OpenAPI Generator](https://openapi-generator.tech) project:
411
411
 
412
412
  - API version: `1.0.0`
413
- - Package version: `0.0.557`
413
+ - Package version: `0.0.558`
414
414
  - Generator version: `7.18.0`
415
415
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
416
416
 
@@ -52,6 +52,12 @@ export interface ProductCategoryListResource {
52
52
  * @memberof ProductCategoryListResource
53
53
  */
54
54
  hasChildren: boolean;
55
+ /**
56
+ *
57
+ * @type {boolean}
58
+ * @memberof ProductCategoryListResource
59
+ */
60
+ isParent: boolean;
55
61
  /**
56
62
  *
57
63
  * @type {number}
@@ -33,6 +33,8 @@ function instanceOfProductCategoryListResource(value) {
33
33
  return false;
34
34
  if (!('hasChildren' in value) || value['hasChildren'] === undefined)
35
35
  return false;
36
+ if (!('isParent' in value) || value['isParent'] === undefined)
37
+ return false;
36
38
  if (!('productCount' in value) || value['productCount'] === undefined)
37
39
  return false;
38
40
  if (!('site' in value) || value['site'] === undefined)
@@ -53,6 +55,7 @@ function ProductCategoryListResourceFromJSONTyped(json, ignoreDiscriminator) {
53
55
  'isDisabled': json['isDisabled'],
54
56
  'isAutomated': json['isAutomated'],
55
57
  'hasChildren': json['hasChildren'],
58
+ 'isParent': json['isParent'],
56
59
  'productCount': json['productCount'],
57
60
  'site': (0, SiteLiteResource_1.SiteLiteResourceFromJSON)(json['site']),
58
61
  };
@@ -72,6 +75,7 @@ function ProductCategoryListResourceToJSONTyped(value, ignoreDiscriminator) {
72
75
  'isDisabled': value['isDisabled'],
73
76
  'isAutomated': value['isAutomated'],
74
77
  'hasChildren': value['hasChildren'],
78
+ 'isParent': value['isParent'],
75
79
  'productCount': value['productCount'],
76
80
  'site': (0, SiteLiteResource_1.SiteLiteResourceToJSON)(value['site']),
77
81
  };
@@ -12,6 +12,7 @@ Name | Type
12
12
  `isDisabled` | boolean
13
13
  `isAutomated` | boolean
14
14
  `hasChildren` | boolean
15
+ `isParent` | boolean
15
16
  `productCount` | number
16
17
  `site` | [SiteLiteResource](SiteLiteResource.md)
17
18
 
@@ -28,6 +29,7 @@ const example = {
28
29
  "isDisabled": null,
29
30
  "isAutomated": null,
30
31
  "hasChildren": null,
32
+ "isParent": null,
31
33
  "productCount": null,
32
34
  "site": null,
33
35
  } satisfies ProductCategoryListResource
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.557",
3
+ "version": "0.0.558",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -63,6 +63,12 @@ export interface ProductCategoryListResource {
63
63
  * @memberof ProductCategoryListResource
64
64
  */
65
65
  hasChildren: boolean;
66
+ /**
67
+ *
68
+ * @type {boolean}
69
+ * @memberof ProductCategoryListResource
70
+ */
71
+ isParent: boolean;
66
72
  /**
67
73
  *
68
74
  * @type {number}
@@ -86,6 +92,7 @@ export function instanceOfProductCategoryListResource(value: object): value is P
86
92
  if (!('isDisabled' in value) || value['isDisabled'] === undefined) return false;
87
93
  if (!('isAutomated' in value) || value['isAutomated'] === undefined) return false;
88
94
  if (!('hasChildren' in value) || value['hasChildren'] === undefined) return false;
95
+ if (!('isParent' in value) || value['isParent'] === undefined) return false;
89
96
  if (!('productCount' in value) || value['productCount'] === undefined) return false;
90
97
  if (!('site' in value) || value['site'] === undefined) return false;
91
98
  return true;
@@ -107,6 +114,7 @@ export function ProductCategoryListResourceFromJSONTyped(json: any, ignoreDiscri
107
114
  'isDisabled': json['isDisabled'],
108
115
  'isAutomated': json['isAutomated'],
109
116
  'hasChildren': json['hasChildren'],
117
+ 'isParent': json['isParent'],
110
118
  'productCount': json['productCount'],
111
119
  'site': SiteLiteResourceFromJSON(json['site']),
112
120
  };
@@ -129,6 +137,7 @@ export function ProductCategoryListResourceToJSONTyped(value?: ProductCategoryLi
129
137
  'isDisabled': value['isDisabled'],
130
138
  'isAutomated': value['isAutomated'],
131
139
  'hasChildren': value['hasChildren'],
140
+ 'isParent': value['isParent'],
132
141
  'productCount': value['productCount'],
133
142
  'site': SiteLiteResourceToJSON(value['site']),
134
143
  };