@digital8/lighting-illusions-ts-sdk 0.0.721 → 0.0.723
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.723
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -506,7 +506,7 @@ and is automatically generated by the
|
|
|
506
506
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
507
507
|
|
|
508
508
|
- API version: `1.0.0`
|
|
509
|
-
- Package version: `0.0.
|
|
509
|
+
- Package version: `0.0.723`
|
|
510
510
|
- Generator version: `7.19.0`
|
|
511
511
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
512
512
|
|
|
@@ -77,12 +77,6 @@ export interface ProductChildResource {
|
|
|
77
77
|
* @memberof ProductChildResource
|
|
78
78
|
*/
|
|
79
79
|
hideFromFrontend: boolean;
|
|
80
|
-
/**
|
|
81
|
-
*
|
|
82
|
-
* @type {string}
|
|
83
|
-
* @memberof ProductChildResource
|
|
84
|
-
*/
|
|
85
|
-
supplierBarcode?: string | null;
|
|
86
80
|
/**
|
|
87
81
|
*
|
|
88
82
|
* @type {number}
|
|
@@ -112,7 +106,7 @@ export interface ProductChildResource {
|
|
|
112
106
|
* @type {string}
|
|
113
107
|
* @memberof ProductChildResource
|
|
114
108
|
*/
|
|
115
|
-
|
|
109
|
+
barcode?: string | null;
|
|
116
110
|
/**
|
|
117
111
|
*
|
|
118
112
|
* @type {boolean}
|
|
@@ -90,12 +90,11 @@ function ProductChildResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
90
90
|
'sku': json['sku'],
|
|
91
91
|
'buyPrice': json['buyPrice'],
|
|
92
92
|
'hideFromFrontend': json['hideFromFrontend'],
|
|
93
|
-
'supplierBarcode': json['supplierBarcode'] == null ? undefined : json['supplierBarcode'],
|
|
94
93
|
'popularityScore': json['popularityScore'],
|
|
95
94
|
'excludeFromSearch': json['excludeFromSearch'],
|
|
96
95
|
'isOversized': json['isOversized'],
|
|
97
96
|
'isBundle': json['isBundle'],
|
|
98
|
-
'
|
|
97
|
+
'barcode': json['barcode'] == null ? undefined : json['barcode'],
|
|
99
98
|
'displayInSocialFeed': json['displayInSocialFeed'],
|
|
100
99
|
'googleStockStatus': json['googleStockStatus'],
|
|
101
100
|
'netsuiteId': json['netsuiteId'] == null ? undefined : json['netsuiteId'],
|
|
@@ -128,12 +127,11 @@ function ProductChildResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
128
127
|
'sku': value['sku'],
|
|
129
128
|
'buyPrice': value['buyPrice'],
|
|
130
129
|
'hideFromFrontend': value['hideFromFrontend'],
|
|
131
|
-
'supplierBarcode': value['supplierBarcode'],
|
|
132
130
|
'popularityScore': value['popularityScore'],
|
|
133
131
|
'excludeFromSearch': value['excludeFromSearch'],
|
|
134
132
|
'isOversized': value['isOversized'],
|
|
135
133
|
'isBundle': value['isBundle'],
|
|
136
|
-
'
|
|
134
|
+
'barcode': value['barcode'],
|
|
137
135
|
'displayInSocialFeed': value['displayInSocialFeed'],
|
|
138
136
|
'googleStockStatus': value['googleStockStatus'],
|
|
139
137
|
'netsuiteId': value['netsuiteId'],
|
|
@@ -16,12 +16,11 @@ Name | Type
|
|
|
16
16
|
`sku` | number
|
|
17
17
|
`buyPrice` | number
|
|
18
18
|
`hideFromFrontend` | boolean
|
|
19
|
-
`supplierBarcode` | string
|
|
20
19
|
`popularityScore` | number
|
|
21
20
|
`excludeFromSearch` | boolean
|
|
22
21
|
`isOversized` | boolean
|
|
23
22
|
`isBundle` | boolean
|
|
24
|
-
`
|
|
23
|
+
`barcode` | string
|
|
25
24
|
`displayInSocialFeed` | boolean
|
|
26
25
|
`googleStockStatus` | number
|
|
27
26
|
`netsuiteId` | string
|
|
@@ -51,12 +50,11 @@ const example = {
|
|
|
51
50
|
"sku": null,
|
|
52
51
|
"buyPrice": null,
|
|
53
52
|
"hideFromFrontend": null,
|
|
54
|
-
"supplierBarcode": null,
|
|
55
53
|
"popularityScore": null,
|
|
56
54
|
"excludeFromSearch": null,
|
|
57
55
|
"isOversized": null,
|
|
58
56
|
"isBundle": null,
|
|
59
|
-
"
|
|
57
|
+
"barcode": null,
|
|
60
58
|
"displayInSocialFeed": null,
|
|
61
59
|
"googleStockStatus": null,
|
|
62
60
|
"netsuiteId": null,
|
package/package.json
CHANGED
|
@@ -94,12 +94,6 @@ export interface ProductChildResource {
|
|
|
94
94
|
* @memberof ProductChildResource
|
|
95
95
|
*/
|
|
96
96
|
hideFromFrontend: boolean;
|
|
97
|
-
/**
|
|
98
|
-
*
|
|
99
|
-
* @type {string}
|
|
100
|
-
* @memberof ProductChildResource
|
|
101
|
-
*/
|
|
102
|
-
supplierBarcode?: string | null;
|
|
103
97
|
/**
|
|
104
98
|
*
|
|
105
99
|
* @type {number}
|
|
@@ -129,7 +123,7 @@ export interface ProductChildResource {
|
|
|
129
123
|
* @type {string}
|
|
130
124
|
* @memberof ProductChildResource
|
|
131
125
|
*/
|
|
132
|
-
|
|
126
|
+
barcode?: string | null;
|
|
133
127
|
/**
|
|
134
128
|
*
|
|
135
129
|
* @type {boolean}
|
|
@@ -248,12 +242,11 @@ export function ProductChildResourceFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
248
242
|
'sku': json['sku'],
|
|
249
243
|
'buyPrice': json['buyPrice'],
|
|
250
244
|
'hideFromFrontend': json['hideFromFrontend'],
|
|
251
|
-
'supplierBarcode': json['supplierBarcode'] == null ? undefined : json['supplierBarcode'],
|
|
252
245
|
'popularityScore': json['popularityScore'],
|
|
253
246
|
'excludeFromSearch': json['excludeFromSearch'],
|
|
254
247
|
'isOversized': json['isOversized'],
|
|
255
248
|
'isBundle': json['isBundle'],
|
|
256
|
-
'
|
|
249
|
+
'barcode': json['barcode'] == null ? undefined : json['barcode'],
|
|
257
250
|
'displayInSocialFeed': json['displayInSocialFeed'],
|
|
258
251
|
'googleStockStatus': json['googleStockStatus'],
|
|
259
252
|
'netsuiteId': json['netsuiteId'] == null ? undefined : json['netsuiteId'],
|
|
@@ -289,12 +282,11 @@ export function ProductChildResourceToJSONTyped(value?: ProductChildResource | n
|
|
|
289
282
|
'sku': value['sku'],
|
|
290
283
|
'buyPrice': value['buyPrice'],
|
|
291
284
|
'hideFromFrontend': value['hideFromFrontend'],
|
|
292
|
-
'supplierBarcode': value['supplierBarcode'],
|
|
293
285
|
'popularityScore': value['popularityScore'],
|
|
294
286
|
'excludeFromSearch': value['excludeFromSearch'],
|
|
295
287
|
'isOversized': value['isOversized'],
|
|
296
288
|
'isBundle': value['isBundle'],
|
|
297
|
-
'
|
|
289
|
+
'barcode': value['barcode'],
|
|
298
290
|
'displayInSocialFeed': value['displayInSocialFeed'],
|
|
299
291
|
'googleStockStatus': value['googleStockStatus'],
|
|
300
292
|
'netsuiteId': value['netsuiteId'],
|