@digital8/lighting-illusions-ts-sdk 0.0.547 → 0.0.549

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.547
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.549
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.547`
411
+ - Package version: `0.0.549`
412
412
  - Generator version: `7.18.0`
413
413
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
414
414
 
@@ -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']),
@@ -17,6 +17,7 @@ export declare const ProductRating: {
17
17
  readonly _5: "5";
18
18
  readonly _4: "4";
19
19
  readonly _3: "3";
20
+ readonly _2: "2";
20
21
  };
21
22
  export type ProductRating = typeof ProductRating[keyof typeof ProductRating];
22
23
  export declare function instanceOfProductRating(value: any): boolean;
@@ -26,7 +26,8 @@ exports.ProductRatingToJSONTyped = ProductRatingToJSONTyped;
26
26
  exports.ProductRating = {
27
27
  _5: '5',
28
28
  _4: '4',
29
- _3: '3'
29
+ _3: '3',
30
+ _2: '2'
30
31
  };
31
32
  function instanceOfProductRating(value) {
32
33
  for (var key in exports.ProductRating) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.547",
3
+ "version": "0.0.549",
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']),
@@ -20,7 +20,8 @@
20
20
  export const ProductRating = {
21
21
  _5: '5',
22
22
  _4: '4',
23
- _3: '3'
23
+ _3: '3',
24
+ _2: '2'
24
25
  } as const;
25
26
  export type ProductRating = typeof ProductRating[keyof typeof ProductRating];
26
27