@digital8/lighting-illusions-ts-sdk 0.0.553 → 0.0.554

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.553
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.554
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.553`
411
+ - Package version: `0.0.554`
412
412
  - Generator version: `7.18.0`
413
413
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
414
414
 
@@ -17,7 +17,6 @@ export declare const ProductRating: {
17
17
  readonly _5: "5";
18
18
  readonly _4: "4";
19
19
  readonly _3: "3";
20
- readonly _2: "2";
21
20
  };
22
21
  export type ProductRating = typeof ProductRating[keyof typeof ProductRating];
23
22
  export declare function instanceOfProductRating(value: any): boolean;
@@ -26,8 +26,7 @@ exports.ProductRatingToJSONTyped = ProductRatingToJSONTyped;
26
26
  exports.ProductRating = {
27
27
  _5: '5',
28
28
  _4: '4',
29
- _3: '3',
30
- _2: '2'
29
+ _3: '3'
31
30
  };
32
31
  function instanceOfProductRating(value) {
33
32
  for (var key in exports.ProductRating) {
@@ -87,12 +87,6 @@ export interface ProductSearchResultResource {
87
87
  * @memberof ProductSearchResultResource
88
88
  */
89
89
  supplierName: string;
90
- /**
91
- *
92
- * @type {string}
93
- * @memberof ProductSearchResultResource
94
- */
95
- supplierLogo: string;
96
90
  /**
97
91
  *
98
92
  * @type {number}
@@ -44,8 +44,6 @@ function instanceOfProductSearchResultResource(value) {
44
44
  return false;
45
45
  if (!('supplierName' in value) || value['supplierName'] === undefined)
46
46
  return false;
47
- if (!('supplierLogo' in value) || value['supplierLogo'] === undefined)
48
- return false;
49
47
  if (!('supplierId' in value) || value['supplierId'] === undefined)
50
48
  return false;
51
49
  if (!('availability' in value) || value['availability'] === undefined)
@@ -74,7 +72,6 @@ function ProductSearchResultResourceFromJSONTyped(json, ignoreDiscriminator) {
74
72
  'labelDetails': json['labelDetails'],
75
73
  'categories': json['categories'],
76
74
  'supplierName': json['supplierName'],
77
- 'supplierLogo': json['supplierLogo'],
78
75
  'supplierId': json['supplierId'],
79
76
  'availability': json['availability'],
80
77
  'wishlisted': json['wishlisted'],
@@ -101,7 +98,6 @@ function ProductSearchResultResourceToJSONTyped(value, ignoreDiscriminator) {
101
98
  'labelDetails': value['labelDetails'],
102
99
  'categories': value['categories'],
103
100
  'supplierName': value['supplierName'],
104
- 'supplierLogo': value['supplierLogo'],
105
101
  'supplierId': value['supplierId'],
106
102
  'availability': value['availability'],
107
103
  'wishlisted': value['wishlisted'],
@@ -18,7 +18,6 @@ Name | Type
18
18
  `labelDetails` | Array<number>
19
19
  `categories` | Array<object>
20
20
  `supplierName` | string
21
- `supplierLogo` | string
22
21
  `supplierId` | number
23
22
  `availability` | string
24
23
  `wishlisted` | boolean
@@ -42,7 +41,6 @@ const example = {
42
41
  "labelDetails": null,
43
42
  "categories": null,
44
43
  "supplierName": null,
45
- "supplierLogo": null,
46
44
  "supplierId": null,
47
45
  "availability": null,
48
46
  "wishlisted": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.553",
3
+ "version": "0.0.554",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -20,8 +20,7 @@
20
20
  export const ProductRating = {
21
21
  _5: '5',
22
22
  _4: '4',
23
- _3: '3',
24
- _2: '2'
23
+ _3: '3'
25
24
  } as const;
26
25
  export type ProductRating = typeof ProductRating[keyof typeof ProductRating];
27
26
 
@@ -91,12 +91,6 @@ export interface ProductSearchResultResource {
91
91
  * @memberof ProductSearchResultResource
92
92
  */
93
93
  supplierName: string;
94
- /**
95
- *
96
- * @type {string}
97
- * @memberof ProductSearchResultResource
98
- */
99
- supplierLogo: string;
100
94
  /**
101
95
  *
102
96
  * @type {number}
@@ -132,7 +126,6 @@ export function instanceOfProductSearchResultResource(value: object): value is P
132
126
  if (!('labelDetails' in value) || value['labelDetails'] === undefined) return false;
133
127
  if (!('categories' in value) || value['categories'] === undefined) return false;
134
128
  if (!('supplierName' in value) || value['supplierName'] === undefined) return false;
135
- if (!('supplierLogo' in value) || value['supplierLogo'] === undefined) return false;
136
129
  if (!('supplierId' in value) || value['supplierId'] === undefined) return false;
137
130
  if (!('availability' in value) || value['availability'] === undefined) return false;
138
131
  if (!('wishlisted' in value) || value['wishlisted'] === undefined) return false;
@@ -161,7 +154,6 @@ export function ProductSearchResultResourceFromJSONTyped(json: any, ignoreDiscri
161
154
  'labelDetails': json['labelDetails'],
162
155
  'categories': json['categories'],
163
156
  'supplierName': json['supplierName'],
164
- 'supplierLogo': json['supplierLogo'],
165
157
  'supplierId': json['supplierId'],
166
158
  'availability': json['availability'],
167
159
  'wishlisted': json['wishlisted'],
@@ -191,7 +183,6 @@ export function ProductSearchResultResourceToJSONTyped(value?: ProductSearchResu
191
183
  'labelDetails': value['labelDetails'],
192
184
  'categories': value['categories'],
193
185
  'supplierName': value['supplierName'],
194
- 'supplierLogo': value['supplierLogo'],
195
186
  'supplierId': value['supplierId'],
196
187
  'availability': value['availability'],
197
188
  'wishlisted': value['wishlisted'],