@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
|
@@ -27,13 +27,13 @@ export interface GetAllDocumentRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllDocumentRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllDocumentRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllDocumentRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllDocumentRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllDocumentRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllDocumentRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllDocumentRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllDocumentRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllDocumentRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllDocumentRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllGoogleCategoryRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllGoogleCategoryRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllGoogleCategoryRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllGoogleCategoryRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllGoogleCategoryRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllGoogleCategoryRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllGoogleCategoryRequestSortDirectionEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllOverlayTemplateRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllOverlayTemplateRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllOverlayTemplateRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllOverlayTemplateRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllOverlayTemplateRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllOverlayTemplateRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllOverlayTemplateRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllOverlayTemplateRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllOverlayTemplateRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllOverlayTemplateRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllOverlayTemplateRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllProductCategoryRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllProductCategoryRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllProductCategoryRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllProductCategoryRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllProductCategoryRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllProductCategoryRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllProductCategoryRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllProductCategoryRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllProductCategoryRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllProductCategoryRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllProductCategoryRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllProductChildRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllProductChildRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllProductChildRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllProductChildRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllProductChildRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllProductChildRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllProductChildRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllProductChildRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllProductChildRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllProductChildRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllProductChildRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllProductRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllProductRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllProductRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllProductRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllProductRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllProductRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllProductRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllProductRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllProductRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllProductRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllProductRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllProductTypeRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllProductTypeRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllProductTypeRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllProductTypeRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllProductTypeRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllProductTypeRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllProductTypeRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllProductTypeRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllProductTypeRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllProductTypeRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllProductTypeRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface GetAllSupplierRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {GetAllSupplierRequestSortByEnum}
|
|
31
31
|
* @memberof GetAllSupplierRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: GetAllSupplierRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {GetAllSupplierRequestSortDirectionEnum}
|
|
37
37
|
* @memberof GetAllSupplierRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: GetAllSupplierRequestSortDirectionEnum;
|
|
@@ -45,7 +45,7 @@ export interface GetAllSupplierRequest {
|
|
|
45
45
|
relatedId?: number;
|
|
46
46
|
/**
|
|
47
47
|
*
|
|
48
|
-
* @type {
|
|
48
|
+
* @type {GetAllSupplierRequestRelatedTypeEnum}
|
|
49
49
|
* @memberof GetAllSupplierRequest
|
|
50
50
|
*/
|
|
51
51
|
relatedType?: GetAllSupplierRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexAttributeRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexAttributeRequestSortByEnum}
|
|
31
31
|
* @memberof IndexAttributeRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexAttributeRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexAttributeRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexAttributeRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexAttributeRequestSortDirectionEnum;
|
|
@@ -75,7 +75,7 @@ export interface IndexAttributeRequest {
|
|
|
75
75
|
relatedId?: number;
|
|
76
76
|
/**
|
|
77
77
|
*
|
|
78
|
-
* @type {
|
|
78
|
+
* @type {IndexAttributeRequestRelatedTypeEnum}
|
|
79
79
|
* @memberof IndexAttributeRequest
|
|
80
80
|
*/
|
|
81
81
|
relatedType?: IndexAttributeRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexAttributeValueRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexAttributeValueRequestSortByEnum}
|
|
31
31
|
* @memberof IndexAttributeValueRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexAttributeValueRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexAttributeValueRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexAttributeValueRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexAttributeValueRequestSortDirectionEnum;
|
|
@@ -63,7 +63,7 @@ export interface IndexAttributeValueRequest {
|
|
|
63
63
|
relatedId?: number;
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
|
-
* @type {
|
|
66
|
+
* @type {IndexAttributeValueRequestRelatedTypeEnum}
|
|
67
67
|
* @memberof IndexAttributeValueRequest
|
|
68
68
|
*/
|
|
69
69
|
relatedType?: IndexAttributeValueRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexDefinitionRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexDefinitionRequestSortByEnum}
|
|
31
31
|
* @memberof IndexDefinitionRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexDefinitionRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexDefinitionRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexDefinitionRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexDefinitionRequestSortDirectionEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexDocumentRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexDocumentRequestSortByEnum}
|
|
31
31
|
* @memberof IndexDocumentRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexDocumentRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexDocumentRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexDocumentRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexDocumentRequestSortDirectionEnum;
|
|
@@ -63,7 +63,7 @@ export interface IndexDocumentRequest {
|
|
|
63
63
|
relatedId?: number;
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
|
-
* @type {
|
|
66
|
+
* @type {IndexDocumentRequestRelatedTypeEnum}
|
|
67
67
|
* @memberof IndexDocumentRequest
|
|
68
68
|
*/
|
|
69
69
|
relatedType?: IndexDocumentRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexExternalApiLogRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexExternalApiLogRequestSortByEnum}
|
|
31
31
|
* @memberof IndexExternalApiLogRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexExternalApiLogRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexExternalApiLogRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexExternalApiLogRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexExternalApiLogRequestSortDirectionEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexOverlayTemplateRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexOverlayTemplateRequestSortByEnum}
|
|
31
31
|
* @memberof IndexOverlayTemplateRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexOverlayTemplateRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexOverlayTemplateRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexOverlayTemplateRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexOverlayTemplateRequestSortDirectionEnum;
|
|
@@ -63,7 +63,7 @@ export interface IndexOverlayTemplateRequest {
|
|
|
63
63
|
relatedId?: number;
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
|
-
* @type {
|
|
66
|
+
* @type {IndexOverlayTemplateRequestRelatedTypeEnum}
|
|
67
67
|
* @memberof IndexOverlayTemplateRequest
|
|
68
68
|
*/
|
|
69
69
|
relatedType?: IndexOverlayTemplateRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexProductCategoryRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexProductCategoryRequestSortByEnum}
|
|
31
31
|
* @memberof IndexProductCategoryRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexProductCategoryRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexProductCategoryRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexProductCategoryRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexProductCategoryRequestSortDirectionEnum;
|
|
@@ -81,7 +81,7 @@ export interface IndexProductCategoryRequest {
|
|
|
81
81
|
relatedId?: number;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
|
-
* @type {
|
|
84
|
+
* @type {IndexProductCategoryRequestRelatedTypeEnum}
|
|
85
85
|
* @memberof IndexProductCategoryRequest
|
|
86
86
|
*/
|
|
87
87
|
relatedType?: IndexProductCategoryRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexProductChildRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexProductChildRequestSortByEnum}
|
|
31
31
|
* @memberof IndexProductChildRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexProductChildRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexProductChildRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexProductChildRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexProductChildRequestSortDirectionEnum;
|
|
@@ -99,7 +99,7 @@ export interface IndexProductChildRequest {
|
|
|
99
99
|
relatedId?: number;
|
|
100
100
|
/**
|
|
101
101
|
*
|
|
102
|
-
* @type {
|
|
102
|
+
* @type {IndexProductChildRequestRelatedTypeEnum}
|
|
103
103
|
* @memberof IndexProductChildRequest
|
|
104
104
|
*/
|
|
105
105
|
relatedType?: IndexProductChildRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexProductRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexProductRequestSortByEnum}
|
|
31
31
|
* @memberof IndexProductRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexProductRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexProductRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexProductRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexProductRequestSortDirectionEnum;
|
|
@@ -87,7 +87,7 @@ export interface IndexProductRequest {
|
|
|
87
87
|
relatedId?: number;
|
|
88
88
|
/**
|
|
89
89
|
*
|
|
90
|
-
* @type {
|
|
90
|
+
* @type {IndexProductRequestRelatedTypeEnum}
|
|
91
91
|
* @memberof IndexProductRequest
|
|
92
92
|
*/
|
|
93
93
|
relatedType?: IndexProductRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexProductTypeRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexProductTypeRequestSortByEnum}
|
|
31
31
|
* @memberof IndexProductTypeRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexProductTypeRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexProductTypeRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexProductTypeRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexProductTypeRequestSortDirectionEnum;
|
|
@@ -57,7 +57,7 @@ export interface IndexProductTypeRequest {
|
|
|
57
57
|
relatedId?: number;
|
|
58
58
|
/**
|
|
59
59
|
*
|
|
60
|
-
* @type {
|
|
60
|
+
* @type {IndexProductTypeRequestRelatedTypeEnum}
|
|
61
61
|
* @memberof IndexProductTypeRequest
|
|
62
62
|
*/
|
|
63
63
|
relatedType?: IndexProductTypeRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexSiteNotificationRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexSiteNotificationRequestSortByEnum}
|
|
31
31
|
* @memberof IndexSiteNotificationRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexSiteNotificationRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexSiteNotificationRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexSiteNotificationRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexSiteNotificationRequestSortDirectionEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexSiteRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexSiteRequestSortByEnum}
|
|
31
31
|
* @memberof IndexSiteRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexSiteRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexSiteRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexSiteRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexSiteRequestSortDirectionEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexSupplierRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexSupplierRequestSortByEnum}
|
|
31
31
|
* @memberof IndexSupplierRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexSupplierRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexSupplierRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexSupplierRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexSupplierRequestSortDirectionEnum;
|
|
@@ -57,7 +57,7 @@ export interface IndexSupplierRequest {
|
|
|
57
57
|
relatedId?: number;
|
|
58
58
|
/**
|
|
59
59
|
*
|
|
60
|
-
* @type {
|
|
60
|
+
* @type {IndexSupplierRequestRelatedTypeEnum}
|
|
61
61
|
* @memberof IndexSupplierRequest
|
|
62
62
|
*/
|
|
63
63
|
relatedType?: IndexSupplierRequestRelatedTypeEnum;
|
|
@@ -27,13 +27,13 @@ export interface IndexTagRequest {
|
|
|
27
27
|
search?: string;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {IndexTagRequestSortByEnum}
|
|
31
31
|
* @memberof IndexTagRequest
|
|
32
32
|
*/
|
|
33
33
|
sortBy?: IndexTagRequestSortByEnum;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
|
-
* @type {
|
|
36
|
+
* @type {IndexTagRequestSortDirectionEnum}
|
|
37
37
|
* @memberof IndexTagRequest
|
|
38
38
|
*/
|
|
39
39
|
sortDirection?: IndexTagRequestSortDirectionEnum;
|
|
@@ -69,7 +69,7 @@ export interface IndexTagRequest {
|
|
|
69
69
|
relatedId?: number;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
|
-
* @type {
|
|
72
|
+
* @type {IndexTagRequestRelatedTypeEnum}
|
|
73
73
|
* @memberof IndexTagRequest
|
|
74
74
|
*/
|
|
75
75
|
relatedType?: IndexTagRequestRelatedTypeEnum;
|
|
@@ -35,7 +35,7 @@ export interface PreviewAutomationRulesProductCategoryRequest {
|
|
|
35
35
|
siteId: number;
|
|
36
36
|
/**
|
|
37
37
|
*
|
|
38
|
-
* @type {
|
|
38
|
+
* @type {PreviewAutomationRulesProductCategoryRequestAutomatedConditionTypeEnum}
|
|
39
39
|
* @memberof PreviewAutomationRulesProductCategoryRequest
|
|
40
40
|
*/
|
|
41
41
|
automatedConditionType: PreviewAutomationRulesProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -21,7 +21,7 @@ import { mapValues } from '../runtime';
|
|
|
21
21
|
export interface StoreAssetForAssetableRequest {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
|
-
* @type {
|
|
24
|
+
* @type {StoreAssetForAssetableRequestAssetableTypeEnum}
|
|
25
25
|
* @memberof StoreAssetForAssetableRequest
|
|
26
26
|
*/
|
|
27
27
|
assetableType: StoreAssetForAssetableRequestAssetableTypeEnum;
|
|
@@ -27,7 +27,7 @@ export interface StoreOverlayTemplateAssetRequest {
|
|
|
27
27
|
overlayTemplateId: number;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {StoreOverlayTemplateAssetRequestPositionEnum}
|
|
31
31
|
* @memberof StoreOverlayTemplateAssetRequest
|
|
32
32
|
*/
|
|
33
33
|
position: StoreOverlayTemplateAssetRequestPositionEnum;
|
|
@@ -91,7 +91,7 @@ export interface StoreProductCategoryRequest {
|
|
|
91
91
|
index?: number;
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
|
-
* @type {
|
|
94
|
+
* @type {StoreProductCategoryRequestAutomatedConditionTypeEnum}
|
|
95
95
|
* @memberof StoreProductCategoryRequest
|
|
96
96
|
*/
|
|
97
97
|
automatedConditionType?: StoreProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -21,13 +21,13 @@ import { mapValues } from '../runtime';
|
|
|
21
21
|
export interface StoreProductCategoryRequestAutomationRulesInner {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
|
-
* @type {
|
|
24
|
+
* @type {StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum}
|
|
25
25
|
* @memberof StoreProductCategoryRequestAutomationRulesInner
|
|
26
26
|
*/
|
|
27
27
|
fieldType: StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
|
-
* @type {
|
|
30
|
+
* @type {StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum}
|
|
31
31
|
* @memberof StoreProductCategoryRequestAutomationRulesInner
|
|
32
32
|
*/
|
|
33
33
|
comparisonType: StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum;
|
|
@@ -21,7 +21,7 @@ import { mapValues } from '../runtime';
|
|
|
21
21
|
export interface UpdateOverlayTemplateAssetRequest {
|
|
22
22
|
/**
|
|
23
23
|
*
|
|
24
|
-
* @type {
|
|
24
|
+
* @type {UpdateOverlayTemplateAssetRequestPositionEnum}
|
|
25
25
|
* @memberof UpdateOverlayTemplateAssetRequest
|
|
26
26
|
*/
|
|
27
27
|
position: UpdateOverlayTemplateAssetRequestPositionEnum;
|
|
@@ -91,7 +91,7 @@ export interface UpdateProductCategoryRequest {
|
|
|
91
91
|
index?: number;
|
|
92
92
|
/**
|
|
93
93
|
*
|
|
94
|
-
* @type {
|
|
94
|
+
* @type {UpdateProductCategoryRequestAutomatedConditionTypeEnum}
|
|
95
95
|
* @memberof UpdateProductCategoryRequest
|
|
96
96
|
*/
|
|
97
97
|
automatedConditionType?: UpdateProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -135,7 +135,7 @@ export interface UpdateSiteRequest {
|
|
|
135
135
|
acCouponValue: number;
|
|
136
136
|
/**
|
|
137
137
|
*
|
|
138
|
-
* @type {
|
|
138
|
+
* @type {UpdateSiteRequestAcCouponDiscountTypeEnum}
|
|
139
139
|
* @memberof UpdateSiteRequest
|
|
140
140
|
*/
|
|
141
141
|
acCouponDiscountType: UpdateSiteRequestAcCouponDiscountTypeEnum;
|