@digital8/lighting-illusions-ts-sdk 0.0.514 → 0.0.515
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 +2 -2
- package/dist/models/ExternalApiLogResource.d.ts +1 -1
- package/dist/models/ExternalApiLogResource.js +3 -1
- package/dist/models/IndexProductChildRequest.d.ts +6 -4
- package/dist/models/IndexProductChildRequest.js +6 -4
- package/package.json +1 -1
- package/src/models/ExternalApiLogResource.ts +3 -2
- package/src/models/IndexProductChildRequest.ts +6 -4
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# @digital8/lighting-illusions-ts-sdk@0.0.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.515
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -361,7 +361,7 @@ and is automatically generated by the
|
|
|
361
361
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
362
362
|
|
|
363
363
|
- API version: `1.0.0`
|
|
364
|
-
- Package version: `0.0.
|
|
364
|
+
- Package version: `0.0.515`
|
|
365
365
|
- Generator version: `7.17.0`
|
|
366
366
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
367
367
|
|
|
@@ -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']
|
|
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']),
|
|
@@ -112,13 +112,15 @@ export type IndexProductChildRequestSortDirectionEnum = typeof IndexProductChild
|
|
|
112
112
|
* @export
|
|
113
113
|
*/
|
|
114
114
|
export declare const IndexProductChildRequestRelatedTypeEnum: {
|
|
115
|
-
readonly
|
|
116
|
-
readonly Supplier: "supplier";
|
|
117
|
-
readonly Tag: "tag";
|
|
118
|
-
readonly Document: "document";
|
|
115
|
+
readonly Accessory: "accessory";
|
|
119
116
|
readonly Attribute: "attribute";
|
|
120
117
|
readonly AttributeValue: "attributeValue";
|
|
118
|
+
readonly CompatibleProduct: "compatibleProduct";
|
|
119
|
+
readonly Document: "document";
|
|
120
|
+
readonly OverlayTemplate: "overlayTemplate";
|
|
121
121
|
readonly ProductType: "productType";
|
|
122
|
+
readonly Supplier: "supplier";
|
|
123
|
+
readonly Tag: "tag";
|
|
122
124
|
readonly Site: "site";
|
|
123
125
|
};
|
|
124
126
|
export type IndexProductChildRequestRelatedTypeEnum = typeof IndexProductChildRequestRelatedTypeEnum[keyof typeof IndexProductChildRequestRelatedTypeEnum];
|
|
@@ -47,13 +47,15 @@ exports.IndexProductChildRequestSortDirectionEnum = {
|
|
|
47
47
|
* @export
|
|
48
48
|
*/
|
|
49
49
|
exports.IndexProductChildRequestRelatedTypeEnum = {
|
|
50
|
-
|
|
51
|
-
Supplier: 'supplier',
|
|
52
|
-
Tag: 'tag',
|
|
53
|
-
Document: 'document',
|
|
50
|
+
Accessory: 'accessory',
|
|
54
51
|
Attribute: 'attribute',
|
|
55
52
|
AttributeValue: 'attributeValue',
|
|
53
|
+
CompatibleProduct: 'compatibleProduct',
|
|
54
|
+
Document: 'document',
|
|
55
|
+
OverlayTemplate: 'overlayTemplate',
|
|
56
56
|
ProductType: 'productType',
|
|
57
|
+
Supplier: 'supplier',
|
|
58
|
+
Tag: 'tag',
|
|
57
59
|
Site: 'site'
|
|
58
60
|
};
|
|
59
61
|
/**
|
package/package.json
CHANGED
|
@@ -74,7 +74,7 @@ export interface ExternalApiLogResource {
|
|
|
74
74
|
* @type {string}
|
|
75
75
|
* @memberof ExternalApiLogResource
|
|
76
76
|
*/
|
|
77
|
-
requestPayload
|
|
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']
|
|
132
|
+
'requestPayload': json['requestPayload'],
|
|
132
133
|
'responsePayload': json['responsePayload'],
|
|
133
134
|
'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
|
|
134
135
|
'site': SiteLiteResourceFromJSON(json['site']),
|
|
@@ -120,13 +120,15 @@ export type IndexProductChildRequestSortDirectionEnum = typeof IndexProductChild
|
|
|
120
120
|
* @export
|
|
121
121
|
*/
|
|
122
122
|
export const IndexProductChildRequestRelatedTypeEnum = {
|
|
123
|
-
|
|
124
|
-
Supplier: 'supplier',
|
|
125
|
-
Tag: 'tag',
|
|
126
|
-
Document: 'document',
|
|
123
|
+
Accessory: 'accessory',
|
|
127
124
|
Attribute: 'attribute',
|
|
128
125
|
AttributeValue: 'attributeValue',
|
|
126
|
+
CompatibleProduct: 'compatibleProduct',
|
|
127
|
+
Document: 'document',
|
|
128
|
+
OverlayTemplate: 'overlayTemplate',
|
|
129
129
|
ProductType: 'productType',
|
|
130
|
+
Supplier: 'supplier',
|
|
131
|
+
Tag: 'tag',
|
|
130
132
|
Site: 'site'
|
|
131
133
|
} as const;
|
|
132
134
|
export type IndexProductChildRequestRelatedTypeEnum = typeof IndexProductChildRequestRelatedTypeEnum[keyof typeof IndexProductChildRequestRelatedTypeEnum];
|