@digital8/lighting-illusions-ts-sdk 0.0.761 → 0.0.762
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.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.762
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -458,7 +458,7 @@ and is automatically generated by the
|
|
|
458
458
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
459
459
|
|
|
460
460
|
- API version: `1.0.0`
|
|
461
|
-
- Package version: `0.0.
|
|
461
|
+
- Package version: `0.0.762`
|
|
462
462
|
- Generator version: `7.19.0`
|
|
463
463
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
464
464
|
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { ProductCategoryLiteResource } from './ProductCategoryLiteResource';
|
|
13
12
|
import type { ProductTypeLiteResource } from './ProductTypeLiteResource';
|
|
14
13
|
import type { GoogleCategoryResource } from './GoogleCategoryResource';
|
|
15
14
|
import type { SupplierLiteResource } from './SupplierLiteResource';
|
|
@@ -51,10 +50,10 @@ export interface ProductResource {
|
|
|
51
50
|
warranty: string;
|
|
52
51
|
/**
|
|
53
52
|
*
|
|
54
|
-
* @type {
|
|
53
|
+
* @type {object}
|
|
55
54
|
* @memberof ProductResource
|
|
56
55
|
*/
|
|
57
|
-
categories:
|
|
56
|
+
categories: object;
|
|
58
57
|
/**
|
|
59
58
|
*
|
|
60
59
|
* @type {boolean}
|
|
@@ -18,7 +18,6 @@ exports.ProductResourceFromJSON = ProductResourceFromJSON;
|
|
|
18
18
|
exports.ProductResourceFromJSONTyped = ProductResourceFromJSONTyped;
|
|
19
19
|
exports.ProductResourceToJSON = ProductResourceToJSON;
|
|
20
20
|
exports.ProductResourceToJSONTyped = ProductResourceToJSONTyped;
|
|
21
|
-
var ProductCategoryLiteResource_1 = require("./ProductCategoryLiteResource");
|
|
22
21
|
var ProductTypeLiteResource_1 = require("./ProductTypeLiteResource");
|
|
23
22
|
var GoogleCategoryResource_1 = require("./GoogleCategoryResource");
|
|
24
23
|
var SupplierLiteResource_1 = require("./SupplierLiteResource");
|
|
@@ -65,7 +64,7 @@ function ProductResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
65
64
|
'displayName': json['displayName'],
|
|
66
65
|
'isAccessory': json['isAccessory'],
|
|
67
66
|
'warranty': json['warranty'],
|
|
68
|
-
'categories':
|
|
67
|
+
'categories': json['categories'],
|
|
69
68
|
'isDisabled': json['isDisabled'],
|
|
70
69
|
'googleCategory': (0, GoogleCategoryResource_1.GoogleCategoryResourceFromJSON)(json['googleCategory']),
|
|
71
70
|
'supplier': (0, SupplierLiteResource_1.SupplierLiteResourceFromJSON)(json['supplier']),
|
|
@@ -88,7 +87,7 @@ function ProductResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
88
87
|
'displayName': value['displayName'],
|
|
89
88
|
'isAccessory': value['isAccessory'],
|
|
90
89
|
'warranty': value['warranty'],
|
|
91
|
-
'categories':
|
|
90
|
+
'categories': value['categories'],
|
|
92
91
|
'isDisabled': value['isDisabled'],
|
|
93
92
|
'googleCategory': (0, GoogleCategoryResource_1.GoogleCategoryResourceToJSON)(value['googleCategory']),
|
|
94
93
|
'supplier': (0, SupplierLiteResource_1.SupplierLiteResourceToJSON)(value['supplier']),
|
package/docs/ProductResource.md
CHANGED
|
@@ -11,7 +11,7 @@ Name | Type
|
|
|
11
11
|
`displayName` | string
|
|
12
12
|
`isAccessory` | boolean
|
|
13
13
|
`warranty` | string
|
|
14
|
-
`categories` |
|
|
14
|
+
`categories` | object
|
|
15
15
|
`isDisabled` | boolean
|
|
16
16
|
`googleCategory` | [GoogleCategoryResource](GoogleCategoryResource.md)
|
|
17
17
|
`supplier` | [SupplierLiteResource](SupplierLiteResource.md)
|
package/package.json
CHANGED
|
@@ -13,13 +13,6 @@
|
|
|
13
13
|
*/
|
|
14
14
|
|
|
15
15
|
import { mapValues } from '../runtime';
|
|
16
|
-
import type { ProductCategoryLiteResource } from './ProductCategoryLiteResource';
|
|
17
|
-
import {
|
|
18
|
-
ProductCategoryLiteResourceFromJSON,
|
|
19
|
-
ProductCategoryLiteResourceFromJSONTyped,
|
|
20
|
-
ProductCategoryLiteResourceToJSON,
|
|
21
|
-
ProductCategoryLiteResourceToJSONTyped,
|
|
22
|
-
} from './ProductCategoryLiteResource';
|
|
23
16
|
import type { ProductTypeLiteResource } from './ProductTypeLiteResource';
|
|
24
17
|
import {
|
|
25
18
|
ProductTypeLiteResourceFromJSON,
|
|
@@ -80,10 +73,10 @@ export interface ProductResource {
|
|
|
80
73
|
warranty: string;
|
|
81
74
|
/**
|
|
82
75
|
*
|
|
83
|
-
* @type {
|
|
76
|
+
* @type {object}
|
|
84
77
|
* @memberof ProductResource
|
|
85
78
|
*/
|
|
86
|
-
categories:
|
|
79
|
+
categories: object;
|
|
87
80
|
/**
|
|
88
81
|
*
|
|
89
82
|
* @type {boolean}
|
|
@@ -156,7 +149,7 @@ export function ProductResourceFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
156
149
|
'displayName': json['displayName'],
|
|
157
150
|
'isAccessory': json['isAccessory'],
|
|
158
151
|
'warranty': json['warranty'],
|
|
159
|
-
'categories':
|
|
152
|
+
'categories': json['categories'],
|
|
160
153
|
'isDisabled': json['isDisabled'],
|
|
161
154
|
'googleCategory': GoogleCategoryResourceFromJSON(json['googleCategory']),
|
|
162
155
|
'supplier': SupplierLiteResourceFromJSON(json['supplier']),
|
|
@@ -182,7 +175,7 @@ export function ProductResourceToJSONTyped(value?: ProductResource | null, ignor
|
|
|
182
175
|
'displayName': value['displayName'],
|
|
183
176
|
'isAccessory': value['isAccessory'],
|
|
184
177
|
'warranty': value['warranty'],
|
|
185
|
-
'categories':
|
|
178
|
+
'categories': value['categories'],
|
|
186
179
|
'isDisabled': value['isDisabled'],
|
|
187
180
|
'googleCategory': GoogleCategoryResourceToJSON(value['googleCategory']),
|
|
188
181
|
'supplier': SupplierLiteResourceToJSON(value['supplier']),
|