@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
|
@@ -23,13 +23,13 @@ export interface GetAllProductChildRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {GetAllProductChildRequestSortByEnum}
|
|
27
27
|
* @memberof GetAllProductChildRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: GetAllProductChildRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {GetAllProductChildRequestSortDirectionEnum}
|
|
33
33
|
* @memberof GetAllProductChildRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: GetAllProductChildRequestSortDirectionEnum;
|
|
@@ -41,7 +41,7 @@ export interface GetAllProductChildRequest {
|
|
|
41
41
|
relatedId?: number;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {GetAllProductChildRequestRelatedTypeEnum}
|
|
45
45
|
* @memberof GetAllProductChildRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: GetAllProductChildRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface GetAllProductRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {GetAllProductRequestSortByEnum}
|
|
27
27
|
* @memberof GetAllProductRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: GetAllProductRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {GetAllProductRequestSortDirectionEnum}
|
|
33
33
|
* @memberof GetAllProductRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: GetAllProductRequestSortDirectionEnum;
|
|
@@ -41,7 +41,7 @@ export interface GetAllProductRequest {
|
|
|
41
41
|
relatedId?: number;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {GetAllProductRequestRelatedTypeEnum}
|
|
45
45
|
* @memberof GetAllProductRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: GetAllProductRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface GetAllProductTypeRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {GetAllProductTypeRequestSortByEnum}
|
|
27
27
|
* @memberof GetAllProductTypeRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: GetAllProductTypeRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {GetAllProductTypeRequestSortDirectionEnum}
|
|
33
33
|
* @memberof GetAllProductTypeRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: GetAllProductTypeRequestSortDirectionEnum;
|
|
@@ -41,7 +41,7 @@ export interface GetAllProductTypeRequest {
|
|
|
41
41
|
relatedId?: number;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {GetAllProductTypeRequestRelatedTypeEnum}
|
|
45
45
|
* @memberof GetAllProductTypeRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: GetAllProductTypeRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface GetAllSupplierRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {GetAllSupplierRequestSortByEnum}
|
|
27
27
|
* @memberof GetAllSupplierRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: GetAllSupplierRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {GetAllSupplierRequestSortDirectionEnum}
|
|
33
33
|
* @memberof GetAllSupplierRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: GetAllSupplierRequestSortDirectionEnum;
|
|
@@ -41,7 +41,7 @@ export interface GetAllSupplierRequest {
|
|
|
41
41
|
relatedId?: number;
|
|
42
42
|
/**
|
|
43
43
|
*
|
|
44
|
-
* @type {
|
|
44
|
+
* @type {GetAllSupplierRequestRelatedTypeEnum}
|
|
45
45
|
* @memberof GetAllSupplierRequest
|
|
46
46
|
*/
|
|
47
47
|
relatedType?: GetAllSupplierRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexAttributeRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexAttributeRequestSortByEnum}
|
|
27
27
|
* @memberof IndexAttributeRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexAttributeRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexAttributeRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexAttributeRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexAttributeRequestSortDirectionEnum;
|
|
@@ -71,7 +71,7 @@ export interface IndexAttributeRequest {
|
|
|
71
71
|
relatedId?: number;
|
|
72
72
|
/**
|
|
73
73
|
*
|
|
74
|
-
* @type {
|
|
74
|
+
* @type {IndexAttributeRequestRelatedTypeEnum}
|
|
75
75
|
* @memberof IndexAttributeRequest
|
|
76
76
|
*/
|
|
77
77
|
relatedType?: IndexAttributeRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexAttributeValueRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexAttributeValueRequestSortByEnum}
|
|
27
27
|
* @memberof IndexAttributeValueRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexAttributeValueRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexAttributeValueRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexAttributeValueRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexAttributeValueRequestSortDirectionEnum;
|
|
@@ -59,7 +59,7 @@ export interface IndexAttributeValueRequest {
|
|
|
59
59
|
relatedId?: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
|
-
* @type {
|
|
62
|
+
* @type {IndexAttributeValueRequestRelatedTypeEnum}
|
|
63
63
|
* @memberof IndexAttributeValueRequest
|
|
64
64
|
*/
|
|
65
65
|
relatedType?: IndexAttributeValueRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexDefinitionRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexDefinitionRequestSortByEnum}
|
|
27
27
|
* @memberof IndexDefinitionRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexDefinitionRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexDefinitionRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexDefinitionRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexDefinitionRequestSortDirectionEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexDocumentRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexDocumentRequestSortByEnum}
|
|
27
27
|
* @memberof IndexDocumentRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexDocumentRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexDocumentRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexDocumentRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexDocumentRequestSortDirectionEnum;
|
|
@@ -59,7 +59,7 @@ export interface IndexDocumentRequest {
|
|
|
59
59
|
relatedId?: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
|
-
* @type {
|
|
62
|
+
* @type {IndexDocumentRequestRelatedTypeEnum}
|
|
63
63
|
* @memberof IndexDocumentRequest
|
|
64
64
|
*/
|
|
65
65
|
relatedType?: IndexDocumentRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexExternalApiLogRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexExternalApiLogRequestSortByEnum}
|
|
27
27
|
* @memberof IndexExternalApiLogRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexExternalApiLogRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexExternalApiLogRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexExternalApiLogRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexExternalApiLogRequestSortDirectionEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexOverlayTemplateRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexOverlayTemplateRequestSortByEnum}
|
|
27
27
|
* @memberof IndexOverlayTemplateRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexOverlayTemplateRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexOverlayTemplateRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexOverlayTemplateRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexOverlayTemplateRequestSortDirectionEnum;
|
|
@@ -59,7 +59,7 @@ export interface IndexOverlayTemplateRequest {
|
|
|
59
59
|
relatedId?: number;
|
|
60
60
|
/**
|
|
61
61
|
*
|
|
62
|
-
* @type {
|
|
62
|
+
* @type {IndexOverlayTemplateRequestRelatedTypeEnum}
|
|
63
63
|
* @memberof IndexOverlayTemplateRequest
|
|
64
64
|
*/
|
|
65
65
|
relatedType?: IndexOverlayTemplateRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexProductCategoryRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexProductCategoryRequestSortByEnum}
|
|
27
27
|
* @memberof IndexProductCategoryRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexProductCategoryRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexProductCategoryRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexProductCategoryRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexProductCategoryRequestSortDirectionEnum;
|
|
@@ -77,7 +77,7 @@ export interface IndexProductCategoryRequest {
|
|
|
77
77
|
relatedId?: number;
|
|
78
78
|
/**
|
|
79
79
|
*
|
|
80
|
-
* @type {
|
|
80
|
+
* @type {IndexProductCategoryRequestRelatedTypeEnum}
|
|
81
81
|
* @memberof IndexProductCategoryRequest
|
|
82
82
|
*/
|
|
83
83
|
relatedType?: IndexProductCategoryRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexProductChildRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexProductChildRequestSortByEnum}
|
|
27
27
|
* @memberof IndexProductChildRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexProductChildRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexProductChildRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexProductChildRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexProductChildRequestSortDirectionEnum;
|
|
@@ -95,7 +95,7 @@ export interface IndexProductChildRequest {
|
|
|
95
95
|
relatedId?: number;
|
|
96
96
|
/**
|
|
97
97
|
*
|
|
98
|
-
* @type {
|
|
98
|
+
* @type {IndexProductChildRequestRelatedTypeEnum}
|
|
99
99
|
* @memberof IndexProductChildRequest
|
|
100
100
|
*/
|
|
101
101
|
relatedType?: IndexProductChildRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexProductRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexProductRequestSortByEnum}
|
|
27
27
|
* @memberof IndexProductRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexProductRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexProductRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexProductRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexProductRequestSortDirectionEnum;
|
|
@@ -83,7 +83,7 @@ export interface IndexProductRequest {
|
|
|
83
83
|
relatedId?: number;
|
|
84
84
|
/**
|
|
85
85
|
*
|
|
86
|
-
* @type {
|
|
86
|
+
* @type {IndexProductRequestRelatedTypeEnum}
|
|
87
87
|
* @memberof IndexProductRequest
|
|
88
88
|
*/
|
|
89
89
|
relatedType?: IndexProductRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexProductTypeRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexProductTypeRequestSortByEnum}
|
|
27
27
|
* @memberof IndexProductTypeRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexProductTypeRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexProductTypeRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexProductTypeRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexProductTypeRequestSortDirectionEnum;
|
|
@@ -53,7 +53,7 @@ export interface IndexProductTypeRequest {
|
|
|
53
53
|
relatedId?: number;
|
|
54
54
|
/**
|
|
55
55
|
*
|
|
56
|
-
* @type {
|
|
56
|
+
* @type {IndexProductTypeRequestRelatedTypeEnum}
|
|
57
57
|
* @memberof IndexProductTypeRequest
|
|
58
58
|
*/
|
|
59
59
|
relatedType?: IndexProductTypeRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexSiteNotificationRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexSiteNotificationRequestSortByEnum}
|
|
27
27
|
* @memberof IndexSiteNotificationRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexSiteNotificationRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexSiteNotificationRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexSiteNotificationRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexSiteNotificationRequestSortDirectionEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexSiteRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexSiteRequestSortByEnum}
|
|
27
27
|
* @memberof IndexSiteRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexSiteRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexSiteRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexSiteRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexSiteRequestSortDirectionEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexSupplierRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexSupplierRequestSortByEnum}
|
|
27
27
|
* @memberof IndexSupplierRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexSupplierRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexSupplierRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexSupplierRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexSupplierRequestSortDirectionEnum;
|
|
@@ -53,7 +53,7 @@ export interface IndexSupplierRequest {
|
|
|
53
53
|
relatedId?: number;
|
|
54
54
|
/**
|
|
55
55
|
*
|
|
56
|
-
* @type {
|
|
56
|
+
* @type {IndexSupplierRequestRelatedTypeEnum}
|
|
57
57
|
* @memberof IndexSupplierRequest
|
|
58
58
|
*/
|
|
59
59
|
relatedType?: IndexSupplierRequestRelatedTypeEnum;
|
|
@@ -23,13 +23,13 @@ export interface IndexTagRequest {
|
|
|
23
23
|
search?: string;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {IndexTagRequestSortByEnum}
|
|
27
27
|
* @memberof IndexTagRequest
|
|
28
28
|
*/
|
|
29
29
|
sortBy?: IndexTagRequestSortByEnum;
|
|
30
30
|
/**
|
|
31
31
|
*
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {IndexTagRequestSortDirectionEnum}
|
|
33
33
|
* @memberof IndexTagRequest
|
|
34
34
|
*/
|
|
35
35
|
sortDirection?: IndexTagRequestSortDirectionEnum;
|
|
@@ -65,7 +65,7 @@ export interface IndexTagRequest {
|
|
|
65
65
|
relatedId?: number;
|
|
66
66
|
/**
|
|
67
67
|
*
|
|
68
|
-
* @type {
|
|
68
|
+
* @type {IndexTagRequestRelatedTypeEnum}
|
|
69
69
|
* @memberof IndexTagRequest
|
|
70
70
|
*/
|
|
71
71
|
relatedType?: IndexTagRequestRelatedTypeEnum;
|
|
@@ -24,7 +24,7 @@ export interface PreviewAutomationRulesProductCategoryRequest {
|
|
|
24
24
|
siteId: number;
|
|
25
25
|
/**
|
|
26
26
|
*
|
|
27
|
-
* @type {
|
|
27
|
+
* @type {PreviewAutomationRulesProductCategoryRequestAutomatedConditionTypeEnum}
|
|
28
28
|
* @memberof PreviewAutomationRulesProductCategoryRequest
|
|
29
29
|
*/
|
|
30
30
|
automatedConditionType: PreviewAutomationRulesProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
export interface StoreAssetForAssetableRequest {
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
|
-
* @type {
|
|
20
|
+
* @type {StoreAssetForAssetableRequestAssetableTypeEnum}
|
|
21
21
|
* @memberof StoreAssetForAssetableRequest
|
|
22
22
|
*/
|
|
23
23
|
assetableType: StoreAssetForAssetableRequestAssetableTypeEnum;
|
|
@@ -23,7 +23,7 @@ export interface StoreOverlayTemplateAssetRequest {
|
|
|
23
23
|
overlayTemplateId: number;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {StoreOverlayTemplateAssetRequestPositionEnum}
|
|
27
27
|
* @memberof StoreOverlayTemplateAssetRequest
|
|
28
28
|
*/
|
|
29
29
|
position: StoreOverlayTemplateAssetRequestPositionEnum;
|
|
@@ -68,7 +68,7 @@ export interface StoreProductCategoryRequest {
|
|
|
68
68
|
index?: number;
|
|
69
69
|
/**
|
|
70
70
|
*
|
|
71
|
-
* @type {
|
|
71
|
+
* @type {StoreProductCategoryRequestAutomatedConditionTypeEnum}
|
|
72
72
|
* @memberof StoreProductCategoryRequest
|
|
73
73
|
*/
|
|
74
74
|
automatedConditionType?: StoreProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
export interface StoreProductCategoryRequestAutomationRulesInner {
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
|
-
* @type {
|
|
20
|
+
* @type {StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum}
|
|
21
21
|
* @memberof StoreProductCategoryRequestAutomationRulesInner
|
|
22
22
|
*/
|
|
23
23
|
fieldType: StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum;
|
|
24
24
|
/**
|
|
25
25
|
*
|
|
26
|
-
* @type {
|
|
26
|
+
* @type {StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum}
|
|
27
27
|
* @memberof StoreProductCategoryRequestAutomationRulesInner
|
|
28
28
|
*/
|
|
29
29
|
comparisonType: StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum;
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
export interface UpdateOverlayTemplateAssetRequest {
|
|
18
18
|
/**
|
|
19
19
|
*
|
|
20
|
-
* @type {
|
|
20
|
+
* @type {UpdateOverlayTemplateAssetRequestPositionEnum}
|
|
21
21
|
* @memberof UpdateOverlayTemplateAssetRequest
|
|
22
22
|
*/
|
|
23
23
|
position: UpdateOverlayTemplateAssetRequestPositionEnum;
|
|
@@ -68,7 +68,7 @@ export interface UpdateProductCategoryRequest {
|
|
|
68
68
|
index?: number;
|
|
69
69
|
/**
|
|
70
70
|
*
|
|
71
|
-
* @type {
|
|
71
|
+
* @type {UpdateProductCategoryRequestAutomatedConditionTypeEnum}
|
|
72
72
|
* @memberof UpdateProductCategoryRequest
|
|
73
73
|
*/
|
|
74
74
|
automatedConditionType?: UpdateProductCategoryRequestAutomatedConditionTypeEnum;
|
|
@@ -131,7 +131,7 @@ export interface UpdateSiteRequest {
|
|
|
131
131
|
acCouponValue: number;
|
|
132
132
|
/**
|
|
133
133
|
*
|
|
134
|
-
* @type {
|
|
134
|
+
* @type {UpdateSiteRequestAcCouponDiscountTypeEnum}
|
|
135
135
|
* @memberof UpdateSiteRequest
|
|
136
136
|
*/
|
|
137
137
|
acCouponDiscountType: UpdateSiteRequestAcCouponDiscountTypeEnum;
|