@digital8/lighting-illusions-ts-sdk 0.0.833 → 0.0.834

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.833
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.834
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -463,7 +463,7 @@ and is automatically generated by the
463
463
  [OpenAPI Generator](https://openapi-generator.tech) project:
464
464
 
465
465
  - API version: `1.0.0`
466
- - Package version: `0.0.833`
466
+ - Package version: `0.0.834`
467
467
  - Generator version: `7.19.0`
468
468
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
469
469
 
@@ -63,7 +63,7 @@ export interface ExternalApiLogResource {
63
63
  * @type {string}
64
64
  * @memberof ExternalApiLogResource
65
65
  */
66
- requestPayload: string;
66
+ requestPayload?: string | null;
67
67
  /**
68
68
  *
69
69
  * @type {string}
@@ -37,8 +37,6 @@ 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;
42
40
  if (!('responsePayload' in value) || value['responsePayload'] === undefined)
43
41
  return false;
44
42
  if (!('site' in value) || value['site'] === undefined)
@@ -60,7 +58,7 @@ function ExternalApiLogResourceFromJSONTyped(json, ignoreDiscriminator) {
60
58
  'exteranlApiLoggableId': json['exteranlApiLoggableId'],
61
59
  'endpoint': json['endpoint'],
62
60
  'responseCode': json['responseCode'],
63
- 'requestPayload': json['requestPayload'],
61
+ 'requestPayload': json['requestPayload'] == null ? undefined : json['requestPayload'],
64
62
  'responsePayload': json['responsePayload'],
65
63
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
66
64
  'site': (0, SiteLiteResource_1.SiteLiteResourceFromJSON)(json['site']),
@@ -103,6 +103,8 @@ export type GetAllProductCategoryRequestSortDirectionEnum = typeof GetAllProduct
103
103
  */
104
104
  export declare const GetAllProductCategoryRequestRelatedTypeEnum: {
105
105
  readonly Product: "product";
106
+ readonly Attribute: "attribute";
107
+ readonly AttributeValue: "attributeValue";
106
108
  };
107
109
  export type GetAllProductCategoryRequestRelatedTypeEnum = typeof GetAllProductCategoryRequestRelatedTypeEnum[keyof typeof GetAllProductCategoryRequestRelatedTypeEnum];
108
110
  /**
@@ -43,7 +43,9 @@ exports.GetAllProductCategoryRequestSortDirectionEnum = {
43
43
  * @export
44
44
  */
45
45
  exports.GetAllProductCategoryRequestRelatedTypeEnum = {
46
- Product: 'product'
46
+ Product: 'product',
47
+ Attribute: 'attribute',
48
+ AttributeValue: 'attributeValue'
47
49
  };
48
50
  /**
49
51
  * Check if a given object implements the GetAllProductCategoryRequest interface.
@@ -127,6 +127,8 @@ export type IndexProductCategoryRequestSortDirectionEnum = typeof IndexProductCa
127
127
  */
128
128
  export declare const IndexProductCategoryRequestRelatedTypeEnum: {
129
129
  readonly Product: "product";
130
+ readonly Attribute: "attribute";
131
+ readonly AttributeValue: "attributeValue";
130
132
  };
131
133
  export type IndexProductCategoryRequestRelatedTypeEnum = typeof IndexProductCategoryRequestRelatedTypeEnum[keyof typeof IndexProductCategoryRequestRelatedTypeEnum];
132
134
  /**
@@ -43,7 +43,9 @@ exports.IndexProductCategoryRequestSortDirectionEnum = {
43
43
  * @export
44
44
  */
45
45
  exports.IndexProductCategoryRequestRelatedTypeEnum = {
46
- Product: 'product'
46
+ Product: 'product',
47
+ Attribute: 'attribute',
48
+ AttributeValue: 'attributeValue'
47
49
  };
48
50
  /**
49
51
  * Check if a given object implements the IndexProductCategoryRequest interface.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.833",
3
+ "version": "0.0.834",
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;
77
+ requestPayload?: string | null;
78
78
  /**
79
79
  *
80
80
  * @type {string}
@@ -106,7 +106,6 @@ 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;
110
109
  if (!('responsePayload' in value) || value['responsePayload'] === undefined) return false;
111
110
  if (!('site' in value) || value['site'] === undefined) return false;
112
111
  return true;
@@ -129,7 +128,7 @@ export function ExternalApiLogResourceFromJSONTyped(json: any, ignoreDiscriminat
129
128
  'exteranlApiLoggableId': json['exteranlApiLoggableId'],
130
129
  'endpoint': json['endpoint'],
131
130
  'responseCode': json['responseCode'],
132
- 'requestPayload': json['requestPayload'],
131
+ 'requestPayload': json['requestPayload'] == null ? undefined : json['requestPayload'],
133
132
  'responsePayload': json['responsePayload'],
134
133
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
135
134
  'site': SiteLiteResourceFromJSON(json['site']),
@@ -110,7 +110,9 @@ export type GetAllProductCategoryRequestSortDirectionEnum = typeof GetAllProduct
110
110
  * @export
111
111
  */
112
112
  export const GetAllProductCategoryRequestRelatedTypeEnum = {
113
- Product: 'product'
113
+ Product: 'product',
114
+ Attribute: 'attribute',
115
+ AttributeValue: 'attributeValue'
114
116
  } as const;
115
117
  export type GetAllProductCategoryRequestRelatedTypeEnum = typeof GetAllProductCategoryRequestRelatedTypeEnum[keyof typeof GetAllProductCategoryRequestRelatedTypeEnum];
116
118
 
@@ -134,7 +134,9 @@ export type IndexProductCategoryRequestSortDirectionEnum = typeof IndexProductCa
134
134
  * @export
135
135
  */
136
136
  export const IndexProductCategoryRequestRelatedTypeEnum = {
137
- Product: 'product'
137
+ Product: 'product',
138
+ Attribute: 'attribute',
139
+ AttributeValue: 'attributeValue'
138
140
  } as const;
139
141
  export type IndexProductCategoryRequestRelatedTypeEnum = typeof IndexProductCategoryRequestRelatedTypeEnum[keyof typeof IndexProductCategoryRequestRelatedTypeEnum];
140
142