@digital8/lighting-illusions-ts-sdk 0.0.501 → 0.0.502
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.
|
|
1
|
+
# @digital8/lighting-illusions-ts-sdk@0.0.502
|
|
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.502`
|
|
365
365
|
- Generator version: `7.17.0`
|
|
366
366
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
367
367
|
|
|
@@ -57,7 +57,7 @@ function AssetResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
57
57
|
'mimeType': json['mimeType'],
|
|
58
58
|
'altText': json['altText'],
|
|
59
59
|
'index': json['index'],
|
|
60
|
-
'
|
|
60
|
+
'fileId': json['fileId'] == null ? undefined : json['fileId'],
|
|
61
61
|
'isThumbnail': json['isThumbnail'],
|
|
62
62
|
'isLifestyle': json['isLifestyle'],
|
|
63
63
|
'overlayTemplates': (json['overlayTemplates'] == null ? null : json['overlayTemplates'].map(OverlayTemplateLiteResource_1.OverlayTemplateLiteResourceFromJSON)),
|
|
@@ -78,7 +78,7 @@ function AssetResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
|
78
78
|
'mimeType': value['mimeType'],
|
|
79
79
|
'altText': value['altText'],
|
|
80
80
|
'index': value['index'],
|
|
81
|
-
'
|
|
81
|
+
'fileId': value['fileId'],
|
|
82
82
|
'isThumbnail': value['isThumbnail'],
|
|
83
83
|
'isLifestyle': value['isLifestyle'],
|
|
84
84
|
'overlayTemplates': (value['overlayTemplates'] == null ? null : value['overlayTemplates'].map(OverlayTemplateLiteResource_1.OverlayTemplateLiteResourceToJSON)),
|
package/docs/AssetResource.md
CHANGED
|
@@ -12,7 +12,7 @@ Name | Type
|
|
|
12
12
|
`mimeType` | string
|
|
13
13
|
`altText` | string
|
|
14
14
|
`index` | number
|
|
15
|
-
`
|
|
15
|
+
`fileId` | string
|
|
16
16
|
`isThumbnail` | boolean
|
|
17
17
|
`isLifestyle` | boolean
|
|
18
18
|
`overlayTemplates` | [Array<OverlayTemplateLiteResource>](OverlayTemplateLiteResource.md)
|
|
@@ -30,7 +30,7 @@ const example = {
|
|
|
30
30
|
"mimeType": null,
|
|
31
31
|
"altText": null,
|
|
32
32
|
"index": null,
|
|
33
|
-
"
|
|
33
|
+
"fileId": null,
|
|
34
34
|
"isThumbnail": null,
|
|
35
35
|
"isLifestyle": null,
|
|
36
36
|
"overlayTemplates": null,
|
package/package.json
CHANGED
|
@@ -68,7 +68,7 @@ export interface AssetResource {
|
|
|
68
68
|
* @type {string}
|
|
69
69
|
* @memberof AssetResource
|
|
70
70
|
*/
|
|
71
|
-
|
|
71
|
+
fileId?: string | null;
|
|
72
72
|
/**
|
|
73
73
|
*
|
|
74
74
|
* @type {boolean}
|
|
@@ -121,7 +121,7 @@ export function AssetResourceFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
121
121
|
'mimeType': json['mimeType'],
|
|
122
122
|
'altText': json['altText'],
|
|
123
123
|
'index': json['index'],
|
|
124
|
-
'
|
|
124
|
+
'fileId': json['fileId'] == null ? undefined : json['fileId'],
|
|
125
125
|
'isThumbnail': json['isThumbnail'],
|
|
126
126
|
'isLifestyle': json['isLifestyle'],
|
|
127
127
|
'overlayTemplates': (json['overlayTemplates'] == null ? null : (json['overlayTemplates'] as Array<any>).map(OverlayTemplateLiteResourceFromJSON)),
|
|
@@ -145,7 +145,7 @@ export function AssetResourceToJSONTyped(value?: AssetResource | null, ignoreDis
|
|
|
145
145
|
'mimeType': value['mimeType'],
|
|
146
146
|
'altText': value['altText'],
|
|
147
147
|
'index': value['index'],
|
|
148
|
-
'
|
|
148
|
+
'fileId': value['fileId'],
|
|
149
149
|
'isThumbnail': value['isThumbnail'],
|
|
150
150
|
'isLifestyle': value['isLifestyle'],
|
|
151
151
|
'overlayTemplates': (value['overlayTemplates'] == null ? null : (value['overlayTemplates'] as Array<any>).map(OverlayTemplateLiteResourceToJSON)),
|