@digital8/lighting-illusions-ts-sdk 0.0.642 → 0.0.644

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.
Files changed (91) hide show
  1. package/.openapi-generator/FILES +38 -0
  2. package/README.md +26 -2
  3. package/dist/apis/DefinitionApi.d.ts +85 -0
  4. package/dist/apis/DefinitionApi.js +355 -0
  5. package/dist/apis/index.d.ts +1 -0
  6. package/dist/apis/index.js +1 -0
  7. package/dist/models/AssetFrontendResource.d.ts +74 -0
  8. package/dist/models/AssetFrontendResource.js +79 -0
  9. package/dist/models/AssetFrontendResourceArrayResponse.d.ts +33 -0
  10. package/dist/models/AssetFrontendResourceArrayResponse.js +50 -0
  11. package/dist/models/DefinitionListResource.d.ts +38 -0
  12. package/dist/models/DefinitionListResource.js +55 -0
  13. package/dist/models/DefinitionListResourceArrayResponse.d.ts +33 -0
  14. package/dist/models/DefinitionListResourceArrayResponse.js +50 -0
  15. package/dist/models/DefinitionResource.d.ts +44 -0
  16. package/dist/models/DefinitionResource.js +59 -0
  17. package/dist/models/DefinitionResourceArrayResponse.d.ts +33 -0
  18. package/dist/models/DefinitionResourceArrayResponse.js +50 -0
  19. package/dist/models/DocumentFrontendResource.d.ts +44 -0
  20. package/dist/models/DocumentFrontendResource.js +57 -0
  21. package/dist/models/DocumentFrontendResourceArrayResponse.d.ts +33 -0
  22. package/dist/models/DocumentFrontendResourceArrayResponse.js +50 -0
  23. package/dist/models/ExternalApiLogResource.d.ts +1 -1
  24. package/dist/models/ExternalApiLogResource.js +3 -1
  25. package/dist/models/GetAllDefinitionRequest.d.ts +80 -0
  26. package/dist/models/GetAllDefinitionRequest.js +76 -0
  27. package/dist/models/IndexDefinitionRequest.d.ts +92 -0
  28. package/dist/models/IndexDefinitionRequest.js +80 -0
  29. package/dist/models/OverlayTemplateAssetFrontendResource.d.ts +62 -0
  30. package/dist/models/OverlayTemplateAssetFrontendResource.js +71 -0
  31. package/dist/models/OverlayTemplateAssetFrontendResourceArrayResponse.d.ts +33 -0
  32. package/dist/models/OverlayTemplateAssetFrontendResourceArrayResponse.js +50 -0
  33. package/dist/models/PaginatedDefinitionListResourceResponse.d.ts +40 -0
  34. package/dist/models/PaginatedDefinitionListResourceResponse.js +57 -0
  35. package/dist/models/PaginatedDefinitionResourceResponse.d.ts +40 -0
  36. package/dist/models/PaginatedDefinitionResourceResponse.js +57 -0
  37. package/dist/models/ProductCompareResource.d.ts +141 -0
  38. package/dist/models/ProductCompareResource.js +124 -0
  39. package/dist/models/ProductCompareResourceArrayResponse.d.ts +33 -0
  40. package/dist/models/ProductCompareResourceArrayResponse.js +50 -0
  41. package/dist/models/StoreDefinitionRequest.d.ts +38 -0
  42. package/dist/models/StoreDefinitionRequest.js +55 -0
  43. package/dist/models/StoreProductCategoryRequest.d.ts +2 -2
  44. package/dist/models/UpdateDefinitionRequest.d.ts +38 -0
  45. package/dist/models/UpdateDefinitionRequest.js +55 -0
  46. package/dist/models/index.d.ts +18 -0
  47. package/dist/models/index.js +18 -0
  48. package/docs/AssetFrontendResource.md +48 -0
  49. package/docs/AssetFrontendResourceArrayResponse.md +34 -0
  50. package/docs/DefinitionApi.md +407 -0
  51. package/docs/DefinitionListResource.md +36 -0
  52. package/docs/DefinitionListResourceArrayResponse.md +34 -0
  53. package/docs/DefinitionResource.md +38 -0
  54. package/docs/DefinitionResourceArrayResponse.md +34 -0
  55. package/docs/DocumentFrontendResource.md +38 -0
  56. package/docs/DocumentFrontendResourceArrayResponse.md +34 -0
  57. package/docs/GetAllDefinitionRequest.md +44 -0
  58. package/docs/IndexDefinitionRequest.md +48 -0
  59. package/docs/OverlayTemplateAssetFrontendResource.md +44 -0
  60. package/docs/OverlayTemplateAssetFrontendResourceArrayResponse.md +34 -0
  61. package/docs/PaginatedDefinitionListResourceResponse.md +36 -0
  62. package/docs/PaginatedDefinitionResourceResponse.md +36 -0
  63. package/docs/ProductCompareResource.md +70 -0
  64. package/docs/ProductCompareResourceArrayResponse.md +34 -0
  65. package/docs/StoreDefinitionRequest.md +36 -0
  66. package/docs/StoreProductCategoryRequest.md +1 -1
  67. package/docs/UpdateDefinitionRequest.md +36 -0
  68. package/package.json +1 -1
  69. package/src/apis/DefinitionApi.ts +286 -0
  70. package/src/apis/index.ts +1 -0
  71. package/src/models/AssetFrontendResource.ts +129 -0
  72. package/src/models/AssetFrontendResourceArrayResponse.ts +73 -0
  73. package/src/models/DefinitionListResource.ts +75 -0
  74. package/src/models/DefinitionListResourceArrayResponse.ts +73 -0
  75. package/src/models/DefinitionResource.ts +84 -0
  76. package/src/models/DefinitionResourceArrayResponse.ts +73 -0
  77. package/src/models/DocumentFrontendResource.ts +83 -0
  78. package/src/models/DocumentFrontendResourceArrayResponse.ts +73 -0
  79. package/src/models/ExternalApiLogResource.ts +3 -2
  80. package/src/models/GetAllDefinitionRequest.ts +127 -0
  81. package/src/models/IndexDefinitionRequest.ts +143 -0
  82. package/src/models/OverlayTemplateAssetFrontendResource.ts +111 -0
  83. package/src/models/OverlayTemplateAssetFrontendResourceArrayResponse.ts +73 -0
  84. package/src/models/PaginatedDefinitionListResourceResponse.ts +90 -0
  85. package/src/models/PaginatedDefinitionResourceResponse.ts +90 -0
  86. package/src/models/ProductCompareResource.ts +236 -0
  87. package/src/models/ProductCompareResourceArrayResponse.ts +73 -0
  88. package/src/models/StoreDefinitionRequest.ts +75 -0
  89. package/src/models/StoreProductCategoryRequest.ts +2 -2
  90. package/src/models/UpdateDefinitionRequest.ts +75 -0
  91. package/src/models/index.ts +18 -0
@@ -0,0 +1,34 @@
1
+
2
+ # DefinitionResourceArrayResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<DefinitionResource>](DefinitionResource.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { DefinitionResourceArrayResponse } from '@digital8/lighting-illusions-ts-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "data": null,
19
+ } satisfies DefinitionResourceArrayResponse
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as DefinitionResourceArrayResponse
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,38 @@
1
+
2
+ # DocumentFrontendResource
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `name` | string
11
+ `fileUrl` | string
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import type { DocumentFrontendResource } from '@digital8/lighting-illusions-ts-sdk'
17
+
18
+ // TODO: Update the object below with actual values
19
+ const example = {
20
+ "id": null,
21
+ "name": null,
22
+ "fileUrl": null,
23
+ } satisfies DocumentFrontendResource
24
+
25
+ console.log(example)
26
+
27
+ // Convert the instance to a JSON string
28
+ const exampleJSON: string = JSON.stringify(example)
29
+ console.log(exampleJSON)
30
+
31
+ // Parse the JSON string back to an object
32
+ const exampleParsed = JSON.parse(exampleJSON) as DocumentFrontendResource
33
+ console.log(exampleParsed)
34
+ ```
35
+
36
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
37
+
38
+
@@ -0,0 +1,34 @@
1
+
2
+ # DocumentFrontendResourceArrayResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<DocumentFrontendResource>](DocumentFrontendResource.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { DocumentFrontendResourceArrayResponse } from '@digital8/lighting-illusions-ts-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "data": null,
19
+ } satisfies DocumentFrontendResourceArrayResponse
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as DocumentFrontendResourceArrayResponse
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,44 @@
1
+
2
+ # GetAllDefinitionRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `search` | string
10
+ `sortBy` | string
11
+ `sortDirection` | string
12
+ `relatedId` | number
13
+ `relatedType` | string
14
+ `includesRelations` | boolean
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import type { GetAllDefinitionRequest } from '@digital8/lighting-illusions-ts-sdk'
20
+
21
+ // TODO: Update the object below with actual values
22
+ const example = {
23
+ "search": null,
24
+ "sortBy": null,
25
+ "sortDirection": null,
26
+ "relatedId": null,
27
+ "relatedType": null,
28
+ "includesRelations": null,
29
+ } satisfies GetAllDefinitionRequest
30
+
31
+ console.log(example)
32
+
33
+ // Convert the instance to a JSON string
34
+ const exampleJSON: string = JSON.stringify(example)
35
+ console.log(exampleJSON)
36
+
37
+ // Parse the JSON string back to an object
38
+ const exampleParsed = JSON.parse(exampleJSON) as GetAllDefinitionRequest
39
+ console.log(exampleParsed)
40
+ ```
41
+
42
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
43
+
44
+
@@ -0,0 +1,48 @@
1
+
2
+ # IndexDefinitionRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `search` | string
10
+ `sortBy` | string
11
+ `sortDirection` | string
12
+ `perPage` | number
13
+ `page` | number
14
+ `relatedId` | number
15
+ `relatedType` | string
16
+ `includesRelations` | boolean
17
+
18
+ ## Example
19
+
20
+ ```typescript
21
+ import type { IndexDefinitionRequest } from '@digital8/lighting-illusions-ts-sdk'
22
+
23
+ // TODO: Update the object below with actual values
24
+ const example = {
25
+ "search": null,
26
+ "sortBy": null,
27
+ "sortDirection": null,
28
+ "perPage": null,
29
+ "page": null,
30
+ "relatedId": null,
31
+ "relatedType": null,
32
+ "includesRelations": null,
33
+ } satisfies IndexDefinitionRequest
34
+
35
+ console.log(example)
36
+
37
+ // Convert the instance to a JSON string
38
+ const exampleJSON: string = JSON.stringify(example)
39
+ console.log(exampleJSON)
40
+
41
+ // Parse the JSON string back to an object
42
+ const exampleParsed = JSON.parse(exampleJSON) as IndexDefinitionRequest
43
+ console.log(exampleParsed)
44
+ ```
45
+
46
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
47
+
48
+
@@ -0,0 +1,44 @@
1
+
2
+ # OverlayTemplateAssetFrontendResource
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `position` | string
11
+ `padding` | number
12
+ `horizontalMargin` | number
13
+ `verticalMargin` | number
14
+ `image` | Array<string>
15
+
16
+ ## Example
17
+
18
+ ```typescript
19
+ import type { OverlayTemplateAssetFrontendResource } from '@digital8/lighting-illusions-ts-sdk'
20
+
21
+ // TODO: Update the object below with actual values
22
+ const example = {
23
+ "id": null,
24
+ "position": null,
25
+ "padding": null,
26
+ "horizontalMargin": null,
27
+ "verticalMargin": null,
28
+ "image": null,
29
+ } satisfies OverlayTemplateAssetFrontendResource
30
+
31
+ console.log(example)
32
+
33
+ // Convert the instance to a JSON string
34
+ const exampleJSON: string = JSON.stringify(example)
35
+ console.log(exampleJSON)
36
+
37
+ // Parse the JSON string back to an object
38
+ const exampleParsed = JSON.parse(exampleJSON) as OverlayTemplateAssetFrontendResource
39
+ console.log(exampleParsed)
40
+ ```
41
+
42
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
43
+
44
+
@@ -0,0 +1,34 @@
1
+
2
+ # OverlayTemplateAssetFrontendResourceArrayResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<OverlayTemplateAssetFrontendResource>](OverlayTemplateAssetFrontendResource.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { OverlayTemplateAssetFrontendResourceArrayResponse } from '@digital8/lighting-illusions-ts-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "data": null,
19
+ } satisfies OverlayTemplateAssetFrontendResourceArrayResponse
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as OverlayTemplateAssetFrontendResourceArrayResponse
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,36 @@
1
+
2
+ # PaginatedDefinitionListResourceResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<DefinitionListResource>](DefinitionListResource.md)
10
+ `meta` | [PagingMetadata](PagingMetadata.md)
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PaginatedDefinitionListResourceResponse } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "data": null,
20
+ "meta": null,
21
+ } satisfies PaginatedDefinitionListResourceResponse
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedDefinitionListResourceResponse
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,36 @@
1
+
2
+ # PaginatedDefinitionResourceResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<DefinitionResource>](DefinitionResource.md)
10
+ `meta` | [PagingMetadata](PagingMetadata.md)
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { PaginatedDefinitionResourceResponse } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "data": null,
20
+ "meta": null,
21
+ } satisfies PaginatedDefinitionResourceResponse
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as PaginatedDefinitionResourceResponse
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -0,0 +1,70 @@
1
+
2
+ # ProductCompareResource
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `sku` | number
11
+ `model` | string
12
+ `stock` | number
13
+ `warranty` | string
14
+ `name` | string
15
+ `slug` | string
16
+ `parentName` | string
17
+ `price` | number
18
+ `salePrice` | number
19
+ `availability` | number
20
+ `optionsCount` | number
21
+ `averageRating` | number
22
+ `thumbnail` | [AssetFrontendResource](AssetFrontendResource.md)
23
+ `supplierName` | string
24
+ `supplierLogo` | [AssetFrontendResource](AssetFrontendResource.md)
25
+ `specsData` | Array<object>
26
+ `dimensionData` | Array<object>
27
+ `performanceSpecsData` | Array<object>
28
+
29
+ ## Example
30
+
31
+ ```typescript
32
+ import type { ProductCompareResource } from '@digital8/lighting-illusions-ts-sdk'
33
+
34
+ // TODO: Update the object below with actual values
35
+ const example = {
36
+ "id": null,
37
+ "sku": null,
38
+ "model": null,
39
+ "stock": null,
40
+ "warranty": null,
41
+ "name": null,
42
+ "slug": null,
43
+ "parentName": null,
44
+ "price": null,
45
+ "salePrice": null,
46
+ "availability": null,
47
+ "optionsCount": null,
48
+ "averageRating": null,
49
+ "thumbnail": null,
50
+ "supplierName": null,
51
+ "supplierLogo": null,
52
+ "specsData": null,
53
+ "dimensionData": null,
54
+ "performanceSpecsData": null,
55
+ } satisfies ProductCompareResource
56
+
57
+ console.log(example)
58
+
59
+ // Convert the instance to a JSON string
60
+ const exampleJSON: string = JSON.stringify(example)
61
+ console.log(exampleJSON)
62
+
63
+ // Parse the JSON string back to an object
64
+ const exampleParsed = JSON.parse(exampleJSON) as ProductCompareResource
65
+ console.log(exampleParsed)
66
+ ```
67
+
68
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
69
+
70
+
@@ -0,0 +1,34 @@
1
+
2
+ # ProductCompareResourceArrayResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<ProductCompareResource>](ProductCompareResource.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ProductCompareResourceArrayResponse } from '@digital8/lighting-illusions-ts-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "data": null,
19
+ } satisfies ProductCompareResourceArrayResponse
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as ProductCompareResourceArrayResponse
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,36 @@
1
+
2
+ # StoreDefinitionRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `name` | string
10
+ `content` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { StoreDefinitionRequest } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "name": null,
20
+ "content": null,
21
+ } satisfies StoreDefinitionRequest
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as StoreDefinitionRequest
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
@@ -6,7 +6,7 @@
6
6
 
7
7
  Name | Type
8
8
  ------------ | -------------
9
- `siteId` | string
9
+ `siteId` | number
10
10
  `name` | string
11
11
  `slug` | string
12
12
  `parentId` | string
@@ -0,0 +1,36 @@
1
+
2
+ # UpdateDefinitionRequest
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `name` | string
10
+ `content` | string
11
+
12
+ ## Example
13
+
14
+ ```typescript
15
+ import type { UpdateDefinitionRequest } from '@digital8/lighting-illusions-ts-sdk'
16
+
17
+ // TODO: Update the object below with actual values
18
+ const example = {
19
+ "name": null,
20
+ "content": null,
21
+ } satisfies UpdateDefinitionRequest
22
+
23
+ console.log(example)
24
+
25
+ // Convert the instance to a JSON string
26
+ const exampleJSON: string = JSON.stringify(example)
27
+ console.log(exampleJSON)
28
+
29
+ // Parse the JSON string back to an object
30
+ const exampleParsed = JSON.parse(exampleJSON) as UpdateDefinitionRequest
31
+ console.log(exampleParsed)
32
+ ```
33
+
34
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
35
+
36
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.642",
3
+ "version": "0.0.644",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {