@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.
Files changed (124) hide show
  1. package/.openapi-generator/VERSION +1 -1
  2. package/README.md +3 -3
  3. package/dist/apis/AssetApi.d.ts +16 -0
  4. package/dist/apis/AssetApi.js +110 -58
  5. package/dist/apis/AttributeApi.d.ts +60 -0
  6. package/dist/apis/AttributeApi.js +424 -229
  7. package/dist/apis/DefinitionApi.d.ts +24 -0
  8. package/dist/apis/DefinitionApi.js +164 -86
  9. package/dist/apis/DocumentApi.d.ts +36 -0
  10. package/dist/apis/DocumentApi.js +250 -133
  11. package/dist/apis/ExternalApiLogApi.d.ts +4 -0
  12. package/dist/apis/ExternalApiLogApi.js +26 -13
  13. package/dist/apis/GoogleCategoryApi.d.ts +4 -0
  14. package/dist/apis/GoogleCategoryApi.js +26 -13
  15. package/dist/apis/OverlayTemplateApi.d.ts +48 -0
  16. package/dist/apis/OverlayTemplateApi.js +340 -184
  17. package/dist/apis/ProductApi.d.ts +84 -0
  18. package/dist/apis/ProductApi.js +600 -327
  19. package/dist/apis/ProductCategoryApi.d.ts +52 -0
  20. package/dist/apis/ProductCategoryApi.js +364 -195
  21. package/dist/apis/ProductTypeApi.d.ts +36 -0
  22. package/dist/apis/ProductTypeApi.js +256 -139
  23. package/dist/apis/SiteApi.d.ts +32 -0
  24. package/dist/apis/SiteApi.js +220 -116
  25. package/dist/apis/SupplierApi.d.ts +32 -0
  26. package/dist/apis/SupplierApi.js +234 -130
  27. package/dist/apis/TagApi.d.ts +32 -0
  28. package/dist/apis/TagApi.js +226 -122
  29. package/dist/models/AttachAttributeProductTypeRequest.d.ts +1 -1
  30. package/dist/models/AttachDocumentablesDocumentRequestDocumentablesInner.d.ts +1 -1
  31. package/dist/models/AttachProductTypeAttributeRequest.d.ts +1 -1
  32. package/dist/models/DetachAssetableOverlayTemplateRequest.d.ts +1 -1
  33. package/dist/models/DetachDocumentablesDocumentRequestDocumentablesInner.d.ts +1 -1
  34. package/dist/models/GetAllAttributeRequest.d.ts +3 -3
  35. package/dist/models/GetAllDefinitionRequest.d.ts +2 -2
  36. package/dist/models/GetAllDocumentRequest.d.ts +3 -3
  37. package/dist/models/GetAllGoogleCategoryRequest.d.ts +2 -2
  38. package/dist/models/GetAllOverlayTemplateRequest.d.ts +3 -3
  39. package/dist/models/GetAllProductCategoryRequest.d.ts +3 -3
  40. package/dist/models/GetAllProductChildRequest.d.ts +3 -3
  41. package/dist/models/GetAllProductRequest.d.ts +3 -3
  42. package/dist/models/GetAllProductTypeRequest.d.ts +3 -3
  43. package/dist/models/GetAllSupplierRequest.d.ts +3 -3
  44. package/dist/models/IndexAttributeRequest.d.ts +3 -3
  45. package/dist/models/IndexAttributeValueRequest.d.ts +3 -3
  46. package/dist/models/IndexDefinitionRequest.d.ts +2 -2
  47. package/dist/models/IndexDocumentRequest.d.ts +3 -3
  48. package/dist/models/IndexExternalApiLogRequest.d.ts +2 -2
  49. package/dist/models/IndexOverlayTemplateRequest.d.ts +3 -3
  50. package/dist/models/IndexProductCategoryRequest.d.ts +3 -3
  51. package/dist/models/IndexProductChildRequest.d.ts +3 -3
  52. package/dist/models/IndexProductRequest.d.ts +3 -3
  53. package/dist/models/IndexProductTypeRequest.d.ts +3 -3
  54. package/dist/models/IndexSiteNotificationRequest.d.ts +2 -2
  55. package/dist/models/IndexSiteRequest.d.ts +2 -2
  56. package/dist/models/IndexSupplierRequest.d.ts +3 -3
  57. package/dist/models/IndexTagRequest.d.ts +3 -3
  58. package/dist/models/PreviewAutomationRulesProductCategoryRequest.d.ts +1 -1
  59. package/dist/models/StoreAssetForAssetableRequest.d.ts +1 -1
  60. package/dist/models/StoreAttributeRequest.d.ts +1 -1
  61. package/dist/models/StoreOverlayTemplateAssetRequest.d.ts +1 -1
  62. package/dist/models/StoreProductCategoryRequest.d.ts +1 -1
  63. package/dist/models/StoreProductCategoryRequestAutomationRulesInner.d.ts +2 -2
  64. package/dist/models/StoreTagRequest.d.ts +1 -1
  65. package/dist/models/UpdateAttributeRequest.d.ts +1 -1
  66. package/dist/models/UpdateOverlayTemplateAssetRequest.d.ts +1 -1
  67. package/dist/models/UpdateProductCategoryRequest.d.ts +1 -1
  68. package/dist/models/UpdateSiteRequest.d.ts +1 -1
  69. package/dist/models/UpdateTagRequest.d.ts +1 -1
  70. package/package.json +1 -1
  71. package/src/apis/AssetApi.ts +48 -16
  72. package/src/apis/AttributeApi.ts +180 -60
  73. package/src/apis/DefinitionApi.ts +72 -24
  74. package/src/apis/DocumentApi.ts +108 -36
  75. package/src/apis/ExternalApiLogApi.ts +12 -4
  76. package/src/apis/GoogleCategoryApi.ts +12 -4
  77. package/src/apis/OverlayTemplateApi.ts +144 -48
  78. package/src/apis/ProductApi.ts +252 -84
  79. package/src/apis/ProductCategoryApi.ts +156 -52
  80. package/src/apis/ProductTypeApi.ts +108 -36
  81. package/src/apis/SiteApi.ts +96 -32
  82. package/src/apis/SupplierApi.ts +96 -32
  83. package/src/apis/TagApi.ts +96 -32
  84. package/src/models/AttachAttributeProductTypeRequest.ts +1 -1
  85. package/src/models/AttachDocumentablesDocumentRequestDocumentablesInner.ts +1 -1
  86. package/src/models/AttachProductTypeAttributeRequest.ts +1 -1
  87. package/src/models/DetachAssetableOverlayTemplateRequest.ts +1 -1
  88. package/src/models/DetachDocumentablesDocumentRequestDocumentablesInner.ts +1 -1
  89. package/src/models/GetAllAttributeRequest.ts +3 -3
  90. package/src/models/GetAllDefinitionRequest.ts +2 -2
  91. package/src/models/GetAllDocumentRequest.ts +3 -3
  92. package/src/models/GetAllGoogleCategoryRequest.ts +2 -2
  93. package/src/models/GetAllOverlayTemplateRequest.ts +3 -3
  94. package/src/models/GetAllProductCategoryRequest.ts +3 -3
  95. package/src/models/GetAllProductChildRequest.ts +3 -3
  96. package/src/models/GetAllProductRequest.ts +3 -3
  97. package/src/models/GetAllProductTypeRequest.ts +3 -3
  98. package/src/models/GetAllSupplierRequest.ts +3 -3
  99. package/src/models/IndexAttributeRequest.ts +3 -3
  100. package/src/models/IndexAttributeValueRequest.ts +3 -3
  101. package/src/models/IndexDefinitionRequest.ts +2 -2
  102. package/src/models/IndexDocumentRequest.ts +3 -3
  103. package/src/models/IndexExternalApiLogRequest.ts +2 -2
  104. package/src/models/IndexOverlayTemplateRequest.ts +3 -3
  105. package/src/models/IndexProductCategoryRequest.ts +3 -3
  106. package/src/models/IndexProductChildRequest.ts +3 -3
  107. package/src/models/IndexProductRequest.ts +3 -3
  108. package/src/models/IndexProductTypeRequest.ts +3 -3
  109. package/src/models/IndexSiteNotificationRequest.ts +2 -2
  110. package/src/models/IndexSiteRequest.ts +2 -2
  111. package/src/models/IndexSupplierRequest.ts +3 -3
  112. package/src/models/IndexTagRequest.ts +3 -3
  113. package/src/models/PreviewAutomationRulesProductCategoryRequest.ts +1 -1
  114. package/src/models/StoreAssetForAssetableRequest.ts +1 -1
  115. package/src/models/StoreAttributeRequest.ts +1 -1
  116. package/src/models/StoreOverlayTemplateAssetRequest.ts +1 -1
  117. package/src/models/StoreProductCategoryRequest.ts +1 -1
  118. package/src/models/StoreProductCategoryRequestAutomationRulesInner.ts +2 -2
  119. package/src/models/StoreTagRequest.ts +1 -1
  120. package/src/models/UpdateAttributeRequest.ts +1 -1
  121. package/src/models/UpdateOverlayTemplateAssetRequest.ts +1 -1
  122. package/src/models/UpdateProductCategoryRequest.ts +1 -1
  123. package/src/models/UpdateSiteRequest.ts +1 -1
  124. package/src/models/UpdateTagRequest.ts +1 -1
@@ -27,13 +27,13 @@ export interface GetAllDocumentRequest {
27
27
  search?: string;
28
28
  /**
29
29
  *
30
- * @type {string}
30
+ * @type {GetAllDocumentRequestSortByEnum}
31
31
  * @memberof GetAllDocumentRequest
32
32
  */
33
33
  sortBy?: GetAllDocumentRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllGoogleCategoryRequestSortByEnum}
31
31
  * @memberof GetAllGoogleCategoryRequest
32
32
  */
33
33
  sortBy?: GetAllGoogleCategoryRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
30
+ * @type {GetAllOverlayTemplateRequestSortByEnum}
31
31
  * @memberof GetAllOverlayTemplateRequest
32
32
  */
33
33
  sortBy?: GetAllOverlayTemplateRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllProductCategoryRequestSortByEnum}
31
31
  * @memberof GetAllProductCategoryRequest
32
32
  */
33
33
  sortBy?: GetAllProductCategoryRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllProductChildRequestSortByEnum}
31
31
  * @memberof GetAllProductChildRequest
32
32
  */
33
33
  sortBy?: GetAllProductChildRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllProductRequestSortByEnum}
31
31
  * @memberof GetAllProductRequest
32
32
  */
33
33
  sortBy?: GetAllProductRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllProductTypeRequestSortByEnum}
31
31
  * @memberof GetAllProductTypeRequest
32
32
  */
33
33
  sortBy?: GetAllProductTypeRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {GetAllSupplierRequestSortByEnum}
31
31
  * @memberof GetAllSupplierRequest
32
32
  */
33
33
  sortBy?: GetAllSupplierRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexAttributeRequestSortByEnum}
31
31
  * @memberof IndexAttributeRequest
32
32
  */
33
33
  sortBy?: IndexAttributeRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexAttributeValueRequestSortByEnum}
31
31
  * @memberof IndexAttributeValueRequest
32
32
  */
33
33
  sortBy?: IndexAttributeValueRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexDefinitionRequestSortByEnum}
31
31
  * @memberof IndexDefinitionRequest
32
32
  */
33
33
  sortBy?: IndexDefinitionRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
30
+ * @type {IndexDocumentRequestSortByEnum}
31
31
  * @memberof IndexDocumentRequest
32
32
  */
33
33
  sortBy?: IndexDocumentRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexExternalApiLogRequestSortByEnum}
31
31
  * @memberof IndexExternalApiLogRequest
32
32
  */
33
33
  sortBy?: IndexExternalApiLogRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
30
+ * @type {IndexOverlayTemplateRequestSortByEnum}
31
31
  * @memberof IndexOverlayTemplateRequest
32
32
  */
33
33
  sortBy?: IndexOverlayTemplateRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexProductCategoryRequestSortByEnum}
31
31
  * @memberof IndexProductCategoryRequest
32
32
  */
33
33
  sortBy?: IndexProductCategoryRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexProductChildRequestSortByEnum}
31
31
  * @memberof IndexProductChildRequest
32
32
  */
33
33
  sortBy?: IndexProductChildRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexProductRequestSortByEnum}
31
31
  * @memberof IndexProductRequest
32
32
  */
33
33
  sortBy?: IndexProductRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexProductTypeRequestSortByEnum}
31
31
  * @memberof IndexProductTypeRequest
32
32
  */
33
33
  sortBy?: IndexProductTypeRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexSiteNotificationRequestSortByEnum}
31
31
  * @memberof IndexSiteNotificationRequest
32
32
  */
33
33
  sortBy?: IndexSiteNotificationRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
30
+ * @type {IndexSiteRequestSortByEnum}
31
31
  * @memberof IndexSiteRequest
32
32
  */
33
33
  sortBy?: IndexSiteRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
30
+ * @type {IndexSupplierRequestSortByEnum}
31
31
  * @memberof IndexSupplierRequest
32
32
  */
33
33
  sortBy?: IndexSupplierRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
30
+ * @type {IndexTagRequestSortByEnum}
31
31
  * @memberof IndexTagRequest
32
32
  */
33
33
  sortBy?: IndexTagRequestSortByEnum;
34
34
  /**
35
35
  *
36
- * @type {string}
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 {string}
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 {string}
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 {string}
24
+ * @type {StoreAssetForAssetableRequestAssetableTypeEnum}
25
25
  * @memberof StoreAssetForAssetableRequest
26
26
  */
27
27
  assetableType: StoreAssetForAssetableRequestAssetableTypeEnum;
@@ -27,7 +27,7 @@ export interface StoreAttributeRequest {
27
27
  name: string;
28
28
  /**
29
29
  *
30
- * @type {string}
30
+ * @type {StoreAttributeRequestTypeEnum}
31
31
  * @memberof StoreAttributeRequest
32
32
  */
33
33
  type: StoreAttributeRequestTypeEnum;
@@ -27,7 +27,7 @@ export interface StoreOverlayTemplateAssetRequest {
27
27
  overlayTemplateId: number;
28
28
  /**
29
29
  *
30
- * @type {string}
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 {string}
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 {string}
24
+ * @type {StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum}
25
25
  * @memberof StoreProductCategoryRequestAutomationRulesInner
26
26
  */
27
27
  fieldType: StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum;
28
28
  /**
29
29
  *
30
- * @type {string}
30
+ * @type {StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum}
31
31
  * @memberof StoreProductCategoryRequestAutomationRulesInner
32
32
  */
33
33
  comparisonType: StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum;
@@ -39,7 +39,7 @@ export interface StoreTagRequest {
39
39
  siteId: number;
40
40
  /**
41
41
  *
42
- * @type {string}
42
+ * @type {StoreTagRequestTypeEnum}
43
43
  * @memberof StoreTagRequest
44
44
  */
45
45
  type: StoreTagRequestTypeEnum;
@@ -27,7 +27,7 @@ export interface UpdateAttributeRequest {
27
27
  name: string;
28
28
  /**
29
29
  *
30
- * @type {string}
30
+ * @type {UpdateAttributeRequestTypeEnum}
31
31
  * @memberof UpdateAttributeRequest
32
32
  */
33
33
  type: UpdateAttributeRequestTypeEnum;
@@ -21,7 +21,7 @@ import { mapValues } from '../runtime';
21
21
  export interface UpdateOverlayTemplateAssetRequest {
22
22
  /**
23
23
  *
24
- * @type {string}
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 {string}
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 {string}
138
+ * @type {UpdateSiteRequestAcCouponDiscountTypeEnum}
139
139
  * @memberof UpdateSiteRequest
140
140
  */
141
141
  acCouponDiscountType: UpdateSiteRequestAcCouponDiscountTypeEnum;
@@ -33,7 +33,7 @@ export interface UpdateTagRequest {
33
33
  slug: string;
34
34
  /**
35
35
  *
36
- * @type {string}
36
+ * @type {UpdateTagRequestTypeEnum}
37
37
  * @memberof UpdateTagRequest
38
38
  */
39
39
  type: UpdateTagRequestTypeEnum;