@digital8/lighting-illusions-ts-sdk 0.0.979 → 0.0.981
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/.openapi-generator/VERSION +1 -1
- package/README.md +3 -3
- package/dist/apis/AssetApi.d.ts +16 -0
- package/dist/apis/AssetApi.js +110 -58
- package/dist/apis/AttributeApi.d.ts +60 -0
- package/dist/apis/AttributeApi.js +424 -229
- package/dist/apis/DefinitionApi.d.ts +24 -0
- package/dist/apis/DefinitionApi.js +164 -86
- package/dist/apis/DocumentApi.d.ts +36 -0
- package/dist/apis/DocumentApi.js +250 -133
- package/dist/apis/ExternalApiLogApi.d.ts +4 -0
- package/dist/apis/ExternalApiLogApi.js +26 -13
- package/dist/apis/GoogleCategoryApi.d.ts +4 -0
- package/dist/apis/GoogleCategoryApi.js +26 -13
- package/dist/apis/OverlayTemplateApi.d.ts +48 -0
- package/dist/apis/OverlayTemplateApi.js +340 -184
- package/dist/apis/ProductApi.d.ts +84 -0
- package/dist/apis/ProductApi.js +600 -327
- package/dist/apis/ProductCategoryApi.d.ts +52 -0
- package/dist/apis/ProductCategoryApi.js +364 -195
- package/dist/apis/ProductTypeApi.d.ts +36 -0
- package/dist/apis/ProductTypeApi.js +256 -139
- package/dist/apis/SiteApi.d.ts +32 -0
- package/dist/apis/SiteApi.js +220 -116
- package/dist/apis/SupplierApi.d.ts +32 -0
- package/dist/apis/SupplierApi.js +234 -130
- package/dist/apis/TagApi.d.ts +32 -0
- package/dist/apis/TagApi.js +226 -122
- package/dist/models/AttachAttributeProductTypeRequest.d.ts +1 -1
- package/dist/models/AttachDocumentablesDocumentRequestDocumentablesInner.d.ts +1 -1
- package/dist/models/AttachProductTypeAttributeRequest.d.ts +1 -1
- package/dist/models/DetachAssetableOverlayTemplateRequest.d.ts +1 -1
- package/dist/models/DetachDocumentablesDocumentRequestDocumentablesInner.d.ts +1 -1
- package/dist/models/GetAllAttributeRequest.d.ts +3 -3
- package/dist/models/GetAllDefinitionRequest.d.ts +2 -2
- package/dist/models/GetAllDocumentRequest.d.ts +3 -3
- package/dist/models/GetAllGoogleCategoryRequest.d.ts +2 -2
- package/dist/models/GetAllOverlayTemplateRequest.d.ts +3 -3
- package/dist/models/GetAllProductCategoryRequest.d.ts +3 -3
- package/dist/models/GetAllProductChildRequest.d.ts +3 -3
- package/dist/models/GetAllProductRequest.d.ts +3 -3
- package/dist/models/GetAllProductTypeRequest.d.ts +3 -3
- package/dist/models/GetAllSupplierRequest.d.ts +3 -3
- package/dist/models/IndexAttributeRequest.d.ts +3 -3
- package/dist/models/IndexAttributeValueRequest.d.ts +3 -3
- package/dist/models/IndexDefinitionRequest.d.ts +2 -2
- package/dist/models/IndexDocumentRequest.d.ts +3 -3
- package/dist/models/IndexExternalApiLogRequest.d.ts +2 -2
- package/dist/models/IndexOverlayTemplateRequest.d.ts +3 -3
- package/dist/models/IndexProductCategoryRequest.d.ts +3 -3
- package/dist/models/IndexProductChildRequest.d.ts +3 -3
- package/dist/models/IndexProductRequest.d.ts +3 -3
- package/dist/models/IndexProductTypeRequest.d.ts +3 -3
- package/dist/models/IndexSiteNotificationRequest.d.ts +2 -2
- package/dist/models/IndexSiteRequest.d.ts +2 -2
- package/dist/models/IndexSupplierRequest.d.ts +3 -3
- package/dist/models/IndexTagRequest.d.ts +3 -3
- package/dist/models/PreviewAutomationRulesProductCategoryRequest.d.ts +1 -1
- package/dist/models/StoreAssetForAssetableRequest.d.ts +1 -1
- package/dist/models/StoreAttributeRequest.d.ts +1 -1
- package/dist/models/StoreOverlayTemplateAssetRequest.d.ts +1 -1
- package/dist/models/StoreProductCategoryRequest.d.ts +1 -1
- package/dist/models/StoreProductCategoryRequestAutomationRulesInner.d.ts +2 -2
- package/dist/models/StoreTagRequest.d.ts +1 -1
- package/dist/models/UpdateAttributeRequest.d.ts +1 -1
- package/dist/models/UpdateOverlayTemplateAssetRequest.d.ts +1 -1
- package/dist/models/UpdateProductCategoryRequest.d.ts +1 -1
- package/dist/models/UpdateSiteRequest.d.ts +1 -1
- package/dist/models/UpdateTagRequest.d.ts +1 -1
- package/package.json +1 -1
- package/src/apis/AssetApi.ts +48 -16
- package/src/apis/AttributeApi.ts +180 -60
- package/src/apis/DefinitionApi.ts +72 -24
- package/src/apis/DocumentApi.ts +108 -36
- package/src/apis/ExternalApiLogApi.ts +12 -4
- package/src/apis/GoogleCategoryApi.ts +12 -4
- package/src/apis/OverlayTemplateApi.ts +144 -48
- package/src/apis/ProductApi.ts +252 -84
- package/src/apis/ProductCategoryApi.ts +156 -52
- package/src/apis/ProductTypeApi.ts +108 -36
- package/src/apis/SiteApi.ts +96 -32
- package/src/apis/SupplierApi.ts +96 -32
- package/src/apis/TagApi.ts +96 -32
- package/src/models/AttachAttributeProductTypeRequest.ts +1 -1
- package/src/models/AttachDocumentablesDocumentRequestDocumentablesInner.ts +1 -1
- package/src/models/AttachProductTypeAttributeRequest.ts +1 -1
- package/src/models/DetachAssetableOverlayTemplateRequest.ts +1 -1
- package/src/models/DetachDocumentablesDocumentRequestDocumentablesInner.ts +1 -1
- package/src/models/GetAllAttributeRequest.ts +3 -3
- package/src/models/GetAllDefinitionRequest.ts +2 -2
- package/src/models/GetAllDocumentRequest.ts +3 -3
- package/src/models/GetAllGoogleCategoryRequest.ts +2 -2
- package/src/models/GetAllOverlayTemplateRequest.ts +3 -3
- package/src/models/GetAllProductCategoryRequest.ts +3 -3
- package/src/models/GetAllProductChildRequest.ts +3 -3
- package/src/models/GetAllProductRequest.ts +3 -3
- package/src/models/GetAllProductTypeRequest.ts +3 -3
- package/src/models/GetAllSupplierRequest.ts +3 -3
- package/src/models/IndexAttributeRequest.ts +3 -3
- package/src/models/IndexAttributeValueRequest.ts +3 -3
- package/src/models/IndexDefinitionRequest.ts +2 -2
- package/src/models/IndexDocumentRequest.ts +3 -3
- package/src/models/IndexExternalApiLogRequest.ts +2 -2
- package/src/models/IndexOverlayTemplateRequest.ts +3 -3
- package/src/models/IndexProductCategoryRequest.ts +3 -3
- package/src/models/IndexProductChildRequest.ts +3 -3
- package/src/models/IndexProductRequest.ts +3 -3
- package/src/models/IndexProductTypeRequest.ts +3 -3
- package/src/models/IndexSiteNotificationRequest.ts +2 -2
- package/src/models/IndexSiteRequest.ts +2 -2
- package/src/models/IndexSupplierRequest.ts +3 -3
- package/src/models/IndexTagRequest.ts +3 -3
- package/src/models/PreviewAutomationRulesProductCategoryRequest.ts +1 -1
- package/src/models/StoreAssetForAssetableRequest.ts +1 -1
- package/src/models/StoreAttributeRequest.ts +1 -1
- package/src/models/StoreOverlayTemplateAssetRequest.ts +1 -1
- package/src/models/StoreProductCategoryRequest.ts +1 -1
- package/src/models/StoreProductCategoryRequestAutomationRulesInner.ts +2 -2
- package/src/models/StoreTagRequest.ts +1 -1
- package/src/models/UpdateAttributeRequest.ts +1 -1
- package/src/models/UpdateOverlayTemplateAssetRequest.ts +1 -1
- package/src/models/UpdateProductCategoryRequest.ts +1 -1
- package/src/models/UpdateSiteRequest.ts +1 -1
- package/src/models/UpdateTagRequest.ts +1 -1
|
@@ -59,6 +59,10 @@ export interface UpdateProductCategoryOperationRequest {
|
|
|
59
59
|
*
|
|
60
60
|
*/
|
|
61
61
|
export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
62
|
+
/**
|
|
63
|
+
* Creates request options for attachProductsProductCategory without sending the request
|
|
64
|
+
*/
|
|
65
|
+
attachProductsProductCategoryRequestOpts(requestParameters: AttachProductsProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
62
66
|
/**
|
|
63
67
|
* Auto-generated: attachProductsProductCategory
|
|
64
68
|
*/
|
|
@@ -67,6 +71,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
67
71
|
* Auto-generated: attachProductsProductCategory
|
|
68
72
|
*/
|
|
69
73
|
attachProductsProductCategory(requestParameters: AttachProductsProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryResource>;
|
|
74
|
+
/**
|
|
75
|
+
* Creates request options for bulkDetachProductsProductCategory without sending the request
|
|
76
|
+
*/
|
|
77
|
+
bulkDetachProductsProductCategoryRequestOpts(requestParameters: BulkDetachProductsProductCategoryRequest): Promise<runtime.RequestOpts>;
|
|
70
78
|
/**
|
|
71
79
|
* Auto-generated: bulkDetachProductsProductCategory
|
|
72
80
|
*/
|
|
@@ -75,6 +83,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
75
83
|
* Auto-generated: bulkDetachProductsProductCategory
|
|
76
84
|
*/
|
|
77
85
|
bulkDetachProductsProductCategory(requestParameters: BulkDetachProductsProductCategoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GenericResponse>;
|
|
86
|
+
/**
|
|
87
|
+
* Creates request options for destroyProductCategory without sending the request
|
|
88
|
+
*/
|
|
89
|
+
destroyProductCategoryRequestOpts(requestParameters: DestroyProductCategoryRequest): Promise<runtime.RequestOpts>;
|
|
78
90
|
/**
|
|
79
91
|
* Auto-generated: destroyProductCategory
|
|
80
92
|
*/
|
|
@@ -83,6 +95,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
83
95
|
* Auto-generated: destroyProductCategory
|
|
84
96
|
*/
|
|
85
97
|
destroyProductCategory(requestParameters: DestroyProductCategoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GenericResponse>;
|
|
98
|
+
/**
|
|
99
|
+
* Creates request options for detachProductsProductCategory without sending the request
|
|
100
|
+
*/
|
|
101
|
+
detachProductsProductCategoryRequestOpts(requestParameters: DetachProductsProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
86
102
|
/**
|
|
87
103
|
* Auto-generated: detachProductsProductCategory
|
|
88
104
|
*/
|
|
@@ -91,6 +107,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
91
107
|
* Auto-generated: detachProductsProductCategory
|
|
92
108
|
*/
|
|
93
109
|
detachProductsProductCategory(requestParameters: DetachProductsProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryResource>;
|
|
110
|
+
/**
|
|
111
|
+
* Creates request options for getAllChildrenProductCategory without sending the request
|
|
112
|
+
*/
|
|
113
|
+
getAllChildrenProductCategoryRequestOpts(requestParameters: GetAllChildrenProductCategoryRequest): Promise<runtime.RequestOpts>;
|
|
94
114
|
/**
|
|
95
115
|
* Auto-generated: getAllChildrenProductCategory
|
|
96
116
|
*/
|
|
@@ -99,6 +119,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
99
119
|
* Auto-generated: getAllChildrenProductCategory
|
|
100
120
|
*/
|
|
101
121
|
getAllChildrenProductCategory(requestParameters: GetAllChildrenProductCategoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryListResourceArrayResponse>;
|
|
122
|
+
/**
|
|
123
|
+
* Creates request options for getAllProductCategory without sending the request
|
|
124
|
+
*/
|
|
125
|
+
getAllProductCategoryRequestOpts(requestParameters: GetAllProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
102
126
|
/**
|
|
103
127
|
* Auto-generated: getAllProductCategory
|
|
104
128
|
*/
|
|
@@ -107,6 +131,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
107
131
|
* Auto-generated: getAllProductCategory
|
|
108
132
|
*/
|
|
109
133
|
getAllProductCategory(requestParameters?: GetAllProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryLiteResourceArrayResponse>;
|
|
134
|
+
/**
|
|
135
|
+
* Creates request options for getChildrenProductCategory without sending the request
|
|
136
|
+
*/
|
|
137
|
+
getChildrenProductCategoryRequestOpts(requestParameters: GetChildrenProductCategoryRequest): Promise<runtime.RequestOpts>;
|
|
110
138
|
/**
|
|
111
139
|
* Auto-generated: getChildrenProductCategory
|
|
112
140
|
*/
|
|
@@ -115,6 +143,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
115
143
|
* Auto-generated: getChildrenProductCategory
|
|
116
144
|
*/
|
|
117
145
|
getChildrenProductCategory(requestParameters: GetChildrenProductCategoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductCategoryListResourceResponse>;
|
|
146
|
+
/**
|
|
147
|
+
* Creates request options for getHierarchyProductCategory without sending the request
|
|
148
|
+
*/
|
|
149
|
+
getHierarchyProductCategoryRequestOpts(requestParameters: GetHierarchyProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
118
150
|
/**
|
|
119
151
|
* Auto-generated: getHierarchyProductCategory
|
|
120
152
|
*/
|
|
@@ -123,6 +155,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
123
155
|
* Auto-generated: getHierarchyProductCategory
|
|
124
156
|
*/
|
|
125
157
|
getHierarchyProductCategory(requestParameters?: GetHierarchyProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryHierarchyResourceArrayResponse>;
|
|
158
|
+
/**
|
|
159
|
+
* Creates request options for indexProductCategory without sending the request
|
|
160
|
+
*/
|
|
161
|
+
indexProductCategoryRequestOpts(requestParameters: IndexProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
126
162
|
/**
|
|
127
163
|
* Auto-generated: indexProductCategory
|
|
128
164
|
*/
|
|
@@ -131,6 +167,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
131
167
|
* Auto-generated: indexProductCategory
|
|
132
168
|
*/
|
|
133
169
|
indexProductCategory(requestParameters?: IndexProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedProductCategoryListResourceResponse>;
|
|
170
|
+
/**
|
|
171
|
+
* Creates request options for previewAutomationRulesProductCategory without sending the request
|
|
172
|
+
*/
|
|
173
|
+
previewAutomationRulesProductCategoryRequestOpts(requestParameters: PreviewAutomationRulesProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
134
174
|
/**
|
|
135
175
|
* Auto-generated: previewAutomationRulesProductCategory
|
|
136
176
|
*/
|
|
@@ -139,6 +179,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
139
179
|
* Auto-generated: previewAutomationRulesProductCategory
|
|
140
180
|
*/
|
|
141
181
|
previewAutomationRulesProductCategory(requestParameters?: PreviewAutomationRulesProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PreviewAutomationRulesResource>;
|
|
182
|
+
/**
|
|
183
|
+
* Creates request options for showProductCategory without sending the request
|
|
184
|
+
*/
|
|
185
|
+
showProductCategoryRequestOpts(requestParameters: ShowProductCategoryRequest): Promise<runtime.RequestOpts>;
|
|
142
186
|
/**
|
|
143
187
|
* Auto-generated: showProductCategory
|
|
144
188
|
*/
|
|
@@ -147,6 +191,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
147
191
|
* Auto-generated: showProductCategory
|
|
148
192
|
*/
|
|
149
193
|
showProductCategory(requestParameters: ShowProductCategoryRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryResource>;
|
|
194
|
+
/**
|
|
195
|
+
* Creates request options for storeProductCategory without sending the request
|
|
196
|
+
*/
|
|
197
|
+
storeProductCategoryRequestOpts(requestParameters: StoreProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
150
198
|
/**
|
|
151
199
|
* Auto-generated: storeProductCategory
|
|
152
200
|
*/
|
|
@@ -155,6 +203,10 @@ export declare class ProductCategoryApi extends runtime.BaseAPI {
|
|
|
155
203
|
* Auto-generated: storeProductCategory
|
|
156
204
|
*/
|
|
157
205
|
storeProductCategory(requestParameters?: StoreProductCategoryOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProductCategoryResource>;
|
|
206
|
+
/**
|
|
207
|
+
* Creates request options for updateProductCategory without sending the request
|
|
208
|
+
*/
|
|
209
|
+
updateProductCategoryRequestOpts(requestParameters: UpdateProductCategoryOperationRequest): Promise<runtime.RequestOpts>;
|
|
158
210
|
/**
|
|
159
211
|
* Auto-generated: updateProductCategory
|
|
160
212
|
*/
|