@digital8/lighting-illusions-ts-sdk 0.0.1140 → 0.0.1141

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.1140
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.1141
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -474,7 +474,7 @@ and is automatically generated by the
474
474
  [OpenAPI Generator](https://openapi-generator.tech) project:
475
475
 
476
476
  - API version: `1.0.0`
477
- - Package version: `0.0.1140`
477
+ - Package version: `0.0.1141`
478
478
  - Generator version: `7.20.0`
479
479
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
480
480
 
@@ -63,7 +63,7 @@ export interface ExternalApiLogResource {
63
63
  * @type {string}
64
64
  * @memberof ExternalApiLogResource
65
65
  */
66
- requestPayload?: string | null;
66
+ requestPayload: string;
67
67
  /**
68
68
  *
69
69
  * @type {string}
@@ -37,6 +37,8 @@ function instanceOfExternalApiLogResource(value) {
37
37
  return false;
38
38
  if (!('responseCode' in value) || value['responseCode'] === undefined)
39
39
  return false;
40
+ if (!('requestPayload' in value) || value['requestPayload'] === undefined)
41
+ return false;
40
42
  if (!('responsePayload' in value) || value['responsePayload'] === undefined)
41
43
  return false;
42
44
  if (!('site' in value) || value['site'] === undefined)
@@ -58,7 +60,7 @@ function ExternalApiLogResourceFromJSONTyped(json, ignoreDiscriminator) {
58
60
  'exteranlApiLoggableId': json['exteranlApiLoggableId'],
59
61
  'endpoint': json['endpoint'],
60
62
  'responseCode': json['responseCode'],
61
- 'requestPayload': json['requestPayload'] == null ? undefined : json['requestPayload'],
63
+ 'requestPayload': json['requestPayload'],
62
64
  'responsePayload': json['responsePayload'],
63
65
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
64
66
  'site': (0, SiteLiteResource_1.SiteLiteResourceFromJSON)(json['site']),
@@ -81,6 +81,12 @@ export interface GetAllProductChildRequest {
81
81
  * @memberof GetAllProductChildRequest
82
82
  */
83
83
  supplierId?: Array<string>;
84
+ /**
85
+ *
86
+ * @type {Array<string>}
87
+ * @memberof GetAllProductChildRequest
88
+ */
89
+ tagsId?: Array<string>;
84
90
  /**
85
91
  *
86
92
  * @type {Array<string>}
@@ -111,6 +117,18 @@ export interface GetAllProductChildRequest {
111
117
  * @memberof GetAllProductChildRequest
112
118
  */
113
119
  tagId?: Array<string>;
120
+ /**
121
+ *
122
+ * @type {Array<string>}
123
+ * @memberof GetAllProductChildRequest
124
+ */
125
+ siteDetailsSeoHasSeoTitle?: Array<string>;
126
+ /**
127
+ *
128
+ * @type {Array<string>}
129
+ * @memberof GetAllProductChildRequest
130
+ */
131
+ siteDetailsSeoHasSeoDescription?: Array<string>;
114
132
  }
115
133
  /**
116
134
  * @export
@@ -77,11 +77,14 @@ function GetAllProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
77
77
  'netsuiteSyncHasNetsuiteId': json['netsuiteSync-has_netsuite_id'] == null ? undefined : json['netsuiteSync-has_netsuite_id'],
78
78
  'categoryId': json['category-id'] == null ? undefined : json['category-id'],
79
79
  'supplierId': json['supplier-id'] == null ? undefined : json['supplier-id'],
80
+ 'tagsId': json['tags-id'] == null ? undefined : json['tags-id'],
80
81
  'productTypeId': json['productType-id'] == null ? undefined : json['productType-id'],
81
82
  'parentIsAccessory': json['parent-is_accessory'] == null ? undefined : json['parent-is_accessory'],
82
83
  'availableSitesId': json['availableSites-id'] == null ? undefined : json['availableSites-id'],
83
84
  'enabledSitesId': json['enabledSites-id'] == null ? undefined : json['enabledSites-id'],
84
85
  'tagId': json['tagId'] == null ? undefined : json['tagId'],
86
+ 'siteDetailsSeoHasSeoTitle': json['siteDetailsSeo-has_seo_title'] == null ? undefined : json['siteDetailsSeo-has_seo_title'],
87
+ 'siteDetailsSeoHasSeoDescription': json['siteDetailsSeo-has_seo_description'] == null ? undefined : json['siteDetailsSeo-has_seo_description'],
85
88
  };
86
89
  }
87
90
  function GetAllProductChildRequestToJSON(json) {
@@ -104,10 +107,13 @@ function GetAllProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
104
107
  'netsuiteSync-has_netsuite_id': value['netsuiteSyncHasNetsuiteId'],
105
108
  'category-id': value['categoryId'],
106
109
  'supplier-id': value['supplierId'],
110
+ 'tags-id': value['tagsId'],
107
111
  'productType-id': value['productTypeId'],
108
112
  'parent-is_accessory': value['parentIsAccessory'],
109
113
  'availableSites-id': value['availableSitesId'],
110
114
  'enabledSites-id': value['enabledSitesId'],
111
115
  'tagId': value['tagId'],
116
+ 'siteDetailsSeo-has_seo_title': value['siteDetailsSeoHasSeoTitle'],
117
+ 'siteDetailsSeo-has_seo_description': value['siteDetailsSeoHasSeoDescription'],
112
118
  };
113
119
  }
@@ -75,6 +75,12 @@ export interface IndexProductChildRequest {
75
75
  * @memberof IndexProductChildRequest
76
76
  */
77
77
  supplierId?: Array<string>;
78
+ /**
79
+ *
80
+ * @type {Array<string>}
81
+ * @memberof IndexProductChildRequest
82
+ */
83
+ tagsId?: Array<string>;
78
84
  /**
79
85
  *
80
86
  * @type {Array<string>}
@@ -105,6 +111,18 @@ export interface IndexProductChildRequest {
105
111
  * @memberof IndexProductChildRequest
106
112
  */
107
113
  tagId?: Array<string>;
114
+ /**
115
+ *
116
+ * @type {Array<string>}
117
+ * @memberof IndexProductChildRequest
118
+ */
119
+ siteDetailsSeoHasSeoTitle?: Array<string>;
120
+ /**
121
+ *
122
+ * @type {Array<string>}
123
+ * @memberof IndexProductChildRequest
124
+ */
125
+ siteDetailsSeoHasSeoDescription?: Array<string>;
108
126
  /**
109
127
  *
110
128
  * @type {number}
@@ -84,11 +84,14 @@ function IndexProductChildRequestFromJSONTyped(json, ignoreDiscriminator) {
84
84
  'netsuiteSyncHasNetsuiteId': json['netsuiteSync-has_netsuite_id'] == null ? undefined : json['netsuiteSync-has_netsuite_id'],
85
85
  'categoryId': json['category-id'] == null ? undefined : json['category-id'],
86
86
  'supplierId': json['supplier-id'] == null ? undefined : json['supplier-id'],
87
+ 'tagsId': json['tags-id'] == null ? undefined : json['tags-id'],
87
88
  'productTypeId': json['productType-id'] == null ? undefined : json['productType-id'],
88
89
  'parentIsAccessory': json['parent-is_accessory'] == null ? undefined : json['parent-is_accessory'],
89
90
  'availableSitesId': json['availableSites-id'] == null ? undefined : json['availableSites-id'],
90
91
  'enabledSitesId': json['enabledSites-id'] == null ? undefined : json['enabledSites-id'],
91
92
  'tagId': json['tagId'] == null ? undefined : json['tagId'],
93
+ 'siteDetailsSeoHasSeoTitle': json['siteDetailsSeo-has_seo_title'] == null ? undefined : json['siteDetailsSeo-has_seo_title'],
94
+ 'siteDetailsSeoHasSeoDescription': json['siteDetailsSeo-has_seo_description'] == null ? undefined : json['siteDetailsSeo-has_seo_description'],
92
95
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
93
96
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
94
97
  'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
@@ -113,11 +116,14 @@ function IndexProductChildRequestToJSONTyped(value, ignoreDiscriminator) {
113
116
  'netsuiteSync-has_netsuite_id': value['netsuiteSyncHasNetsuiteId'],
114
117
  'category-id': value['categoryId'],
115
118
  'supplier-id': value['supplierId'],
119
+ 'tags-id': value['tagsId'],
116
120
  'productType-id': value['productTypeId'],
117
121
  'parent-is_accessory': value['parentIsAccessory'],
118
122
  'availableSites-id': value['availableSitesId'],
119
123
  'enabledSites-id': value['enabledSitesId'],
120
124
  'tagId': value['tagId'],
125
+ 'siteDetailsSeo-has_seo_title': value['siteDetailsSeoHasSeoTitle'],
126
+ 'siteDetailsSeo-has_seo_description': value['siteDetailsSeoHasSeoDescription'],
121
127
  'related_id': value['relatedId'],
122
128
  'related_type': value['relatedType'],
123
129
  'includes_relations': value['includesRelations'],
@@ -17,11 +17,14 @@ Name | Type
17
17
  `netsuiteSyncHasNetsuiteId` | Array&lt;string&gt;
18
18
  `categoryId` | Array&lt;string&gt;
19
19
  `supplierId` | Array&lt;string&gt;
20
+ `tagsId` | Array&lt;string&gt;
20
21
  `productTypeId` | Array&lt;string&gt;
21
22
  `parentIsAccessory` | Array&lt;string&gt;
22
23
  `availableSitesId` | Array&lt;string&gt;
23
24
  `enabledSitesId` | Array&lt;string&gt;
24
25
  `tagId` | Array&lt;string&gt;
26
+ `siteDetailsSeoHasSeoTitle` | Array&lt;string&gt;
27
+ `siteDetailsSeoHasSeoDescription` | Array&lt;string&gt;
25
28
 
26
29
  ## Example
27
30
 
@@ -41,11 +44,14 @@ const example = {
41
44
  "netsuiteSyncHasNetsuiteId": null,
42
45
  "categoryId": null,
43
46
  "supplierId": null,
47
+ "tagsId": null,
44
48
  "productTypeId": null,
45
49
  "parentIsAccessory": null,
46
50
  "availableSitesId": null,
47
51
  "enabledSitesId": null,
48
52
  "tagId": null,
53
+ "siteDetailsSeoHasSeoTitle": null,
54
+ "siteDetailsSeoHasSeoDescription": null,
49
55
  } satisfies GetAllProductChildRequest
50
56
 
51
57
  console.log(example)
@@ -16,11 +16,14 @@ Name | Type
16
16
  `netsuiteSyncHasNetsuiteId` | Array&lt;string&gt;
17
17
  `categoryId` | Array&lt;string&gt;
18
18
  `supplierId` | Array&lt;string&gt;
19
+ `tagsId` | Array&lt;string&gt;
19
20
  `productTypeId` | Array&lt;string&gt;
20
21
  `parentIsAccessory` | Array&lt;string&gt;
21
22
  `availableSitesId` | Array&lt;string&gt;
22
23
  `enabledSitesId` | Array&lt;string&gt;
23
24
  `tagId` | Array&lt;string&gt;
25
+ `siteDetailsSeoHasSeoTitle` | Array&lt;string&gt;
26
+ `siteDetailsSeoHasSeoDescription` | Array&lt;string&gt;
24
27
  `relatedId` | number
25
28
  `relatedType` | string
26
29
  `includesRelations` | boolean
@@ -42,11 +45,14 @@ const example = {
42
45
  "netsuiteSyncHasNetsuiteId": null,
43
46
  "categoryId": null,
44
47
  "supplierId": null,
48
+ "tagsId": null,
45
49
  "productTypeId": null,
46
50
  "parentIsAccessory": null,
47
51
  "availableSitesId": null,
48
52
  "enabledSitesId": null,
49
53
  "tagId": null,
54
+ "siteDetailsSeoHasSeoTitle": null,
55
+ "siteDetailsSeoHasSeoDescription": null,
50
56
  "relatedId": null,
51
57
  "relatedType": null,
52
58
  "includesRelations": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.1140",
3
+ "version": "0.0.1141",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -74,7 +74,7 @@ export interface ExternalApiLogResource {
74
74
  * @type {string}
75
75
  * @memberof ExternalApiLogResource
76
76
  */
77
- requestPayload?: string | null;
77
+ requestPayload: string;
78
78
  /**
79
79
  *
80
80
  * @type {string}
@@ -106,6 +106,7 @@ export function instanceOfExternalApiLogResource(value: object): value is Extern
106
106
  if (!('exteranlApiLoggableId' in value) || value['exteranlApiLoggableId'] === undefined) return false;
107
107
  if (!('endpoint' in value) || value['endpoint'] === undefined) return false;
108
108
  if (!('responseCode' in value) || value['responseCode'] === undefined) return false;
109
+ if (!('requestPayload' in value) || value['requestPayload'] === undefined) return false;
109
110
  if (!('responsePayload' in value) || value['responsePayload'] === undefined) return false;
110
111
  if (!('site' in value) || value['site'] === undefined) return false;
111
112
  return true;
@@ -128,7 +129,7 @@ export function ExternalApiLogResourceFromJSONTyped(json: any, ignoreDiscriminat
128
129
  'exteranlApiLoggableId': json['exteranlApiLoggableId'],
129
130
  'endpoint': json['endpoint'],
130
131
  'responseCode': json['responseCode'],
131
- 'requestPayload': json['requestPayload'] == null ? undefined : json['requestPayload'],
132
+ 'requestPayload': json['requestPayload'],
132
133
  'responsePayload': json['responsePayload'],
133
134
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
134
135
  'site': SiteLiteResourceFromJSON(json['site']),
@@ -85,6 +85,12 @@ export interface GetAllProductChildRequest {
85
85
  * @memberof GetAllProductChildRequest
86
86
  */
87
87
  supplierId?: Array<string>;
88
+ /**
89
+ *
90
+ * @type {Array<string>}
91
+ * @memberof GetAllProductChildRequest
92
+ */
93
+ tagsId?: Array<string>;
88
94
  /**
89
95
  *
90
96
  * @type {Array<string>}
@@ -115,6 +121,18 @@ export interface GetAllProductChildRequest {
115
121
  * @memberof GetAllProductChildRequest
116
122
  */
117
123
  tagId?: Array<string>;
124
+ /**
125
+ *
126
+ * @type {Array<string>}
127
+ * @memberof GetAllProductChildRequest
128
+ */
129
+ siteDetailsSeoHasSeoTitle?: Array<string>;
130
+ /**
131
+ *
132
+ * @type {Array<string>}
133
+ * @memberof GetAllProductChildRequest
134
+ */
135
+ siteDetailsSeoHasSeoDescription?: Array<string>;
118
136
  }
119
137
 
120
138
 
@@ -186,11 +204,14 @@ export function GetAllProductChildRequestFromJSONTyped(json: any, ignoreDiscrimi
186
204
  'netsuiteSyncHasNetsuiteId': json['netsuiteSync-has_netsuite_id'] == null ? undefined : json['netsuiteSync-has_netsuite_id'],
187
205
  'categoryId': json['category-id'] == null ? undefined : json['category-id'],
188
206
  'supplierId': json['supplier-id'] == null ? undefined : json['supplier-id'],
207
+ 'tagsId': json['tags-id'] == null ? undefined : json['tags-id'],
189
208
  'productTypeId': json['productType-id'] == null ? undefined : json['productType-id'],
190
209
  'parentIsAccessory': json['parent-is_accessory'] == null ? undefined : json['parent-is_accessory'],
191
210
  'availableSitesId': json['availableSites-id'] == null ? undefined : json['availableSites-id'],
192
211
  'enabledSitesId': json['enabledSites-id'] == null ? undefined : json['enabledSites-id'],
193
212
  'tagId': json['tagId'] == null ? undefined : json['tagId'],
213
+ 'siteDetailsSeoHasSeoTitle': json['siteDetailsSeo-has_seo_title'] == null ? undefined : json['siteDetailsSeo-has_seo_title'],
214
+ 'siteDetailsSeoHasSeoDescription': json['siteDetailsSeo-has_seo_description'] == null ? undefined : json['siteDetailsSeo-has_seo_description'],
194
215
  };
195
216
  }
196
217
 
@@ -216,11 +237,14 @@ export function GetAllProductChildRequestToJSONTyped(value?: GetAllProductChildR
216
237
  'netsuiteSync-has_netsuite_id': value['netsuiteSyncHasNetsuiteId'],
217
238
  'category-id': value['categoryId'],
218
239
  'supplier-id': value['supplierId'],
240
+ 'tags-id': value['tagsId'],
219
241
  'productType-id': value['productTypeId'],
220
242
  'parent-is_accessory': value['parentIsAccessory'],
221
243
  'availableSites-id': value['availableSitesId'],
222
244
  'enabledSites-id': value['enabledSitesId'],
223
245
  'tagId': value['tagId'],
246
+ 'siteDetailsSeo-has_seo_title': value['siteDetailsSeoHasSeoTitle'],
247
+ 'siteDetailsSeo-has_seo_description': value['siteDetailsSeoHasSeoDescription'],
224
248
  };
225
249
  }
226
250
 
@@ -79,6 +79,12 @@ export interface IndexProductChildRequest {
79
79
  * @memberof IndexProductChildRequest
80
80
  */
81
81
  supplierId?: Array<string>;
82
+ /**
83
+ *
84
+ * @type {Array<string>}
85
+ * @memberof IndexProductChildRequest
86
+ */
87
+ tagsId?: Array<string>;
82
88
  /**
83
89
  *
84
90
  * @type {Array<string>}
@@ -109,6 +115,18 @@ export interface IndexProductChildRequest {
109
115
  * @memberof IndexProductChildRequest
110
116
  */
111
117
  tagId?: Array<string>;
118
+ /**
119
+ *
120
+ * @type {Array<string>}
121
+ * @memberof IndexProductChildRequest
122
+ */
123
+ siteDetailsSeoHasSeoTitle?: Array<string>;
124
+ /**
125
+ *
126
+ * @type {Array<string>}
127
+ * @memberof IndexProductChildRequest
128
+ */
129
+ siteDetailsSeoHasSeoDescription?: Array<string>;
112
130
  /**
113
131
  *
114
132
  * @type {number}
@@ -205,11 +223,14 @@ export function IndexProductChildRequestFromJSONTyped(json: any, ignoreDiscrimin
205
223
  'netsuiteSyncHasNetsuiteId': json['netsuiteSync-has_netsuite_id'] == null ? undefined : json['netsuiteSync-has_netsuite_id'],
206
224
  'categoryId': json['category-id'] == null ? undefined : json['category-id'],
207
225
  'supplierId': json['supplier-id'] == null ? undefined : json['supplier-id'],
226
+ 'tagsId': json['tags-id'] == null ? undefined : json['tags-id'],
208
227
  'productTypeId': json['productType-id'] == null ? undefined : json['productType-id'],
209
228
  'parentIsAccessory': json['parent-is_accessory'] == null ? undefined : json['parent-is_accessory'],
210
229
  'availableSitesId': json['availableSites-id'] == null ? undefined : json['availableSites-id'],
211
230
  'enabledSitesId': json['enabledSites-id'] == null ? undefined : json['enabledSites-id'],
212
231
  'tagId': json['tagId'] == null ? undefined : json['tagId'],
232
+ 'siteDetailsSeoHasSeoTitle': json['siteDetailsSeo-has_seo_title'] == null ? undefined : json['siteDetailsSeo-has_seo_title'],
233
+ 'siteDetailsSeoHasSeoDescription': json['siteDetailsSeo-has_seo_description'] == null ? undefined : json['siteDetailsSeo-has_seo_description'],
213
234
  'relatedId': json['related_id'] == null ? undefined : json['related_id'],
214
235
  'relatedType': json['related_type'] == null ? undefined : json['related_type'],
215
236
  'includesRelations': json['includes_relations'] == null ? undefined : json['includes_relations'],
@@ -237,11 +258,14 @@ export function IndexProductChildRequestToJSONTyped(value?: IndexProductChildReq
237
258
  'netsuiteSync-has_netsuite_id': value['netsuiteSyncHasNetsuiteId'],
238
259
  'category-id': value['categoryId'],
239
260
  'supplier-id': value['supplierId'],
261
+ 'tags-id': value['tagsId'],
240
262
  'productType-id': value['productTypeId'],
241
263
  'parent-is_accessory': value['parentIsAccessory'],
242
264
  'availableSites-id': value['availableSitesId'],
243
265
  'enabledSites-id': value['enabledSitesId'],
244
266
  'tagId': value['tagId'],
267
+ 'siteDetailsSeo-has_seo_title': value['siteDetailsSeoHasSeoTitle'],
268
+ 'siteDetailsSeo-has_seo_description': value['siteDetailsSeoHasSeoDescription'],
245
269
  'related_id': value['relatedId'],
246
270
  'related_type': value['relatedType'],
247
271
  'includes_relations': value['includesRelations'],