@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
@@ -23,13 +23,13 @@ export interface GetAllProductChildRequest {
23
23
  search?: string;
24
24
  /**
25
25
  *
26
- * @type {string}
26
+ * @type {GetAllProductChildRequestSortByEnum}
27
27
  * @memberof GetAllProductChildRequest
28
28
  */
29
29
  sortBy?: GetAllProductChildRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {GetAllProductRequestSortByEnum}
27
27
  * @memberof GetAllProductRequest
28
28
  */
29
29
  sortBy?: GetAllProductRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {GetAllProductTypeRequestSortByEnum}
27
27
  * @memberof GetAllProductTypeRequest
28
28
  */
29
29
  sortBy?: GetAllProductTypeRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {GetAllSupplierRequestSortByEnum}
27
27
  * @memberof GetAllSupplierRequest
28
28
  */
29
29
  sortBy?: GetAllSupplierRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexAttributeRequestSortByEnum}
27
27
  * @memberof IndexAttributeRequest
28
28
  */
29
29
  sortBy?: IndexAttributeRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexAttributeValueRequestSortByEnum}
27
27
  * @memberof IndexAttributeValueRequest
28
28
  */
29
29
  sortBy?: IndexAttributeValueRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexDefinitionRequestSortByEnum}
27
27
  * @memberof IndexDefinitionRequest
28
28
  */
29
29
  sortBy?: IndexDefinitionRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
26
+ * @type {IndexDocumentRequestSortByEnum}
27
27
  * @memberof IndexDocumentRequest
28
28
  */
29
29
  sortBy?: IndexDocumentRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexExternalApiLogRequestSortByEnum}
27
27
  * @memberof IndexExternalApiLogRequest
28
28
  */
29
29
  sortBy?: IndexExternalApiLogRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
26
+ * @type {IndexOverlayTemplateRequestSortByEnum}
27
27
  * @memberof IndexOverlayTemplateRequest
28
28
  */
29
29
  sortBy?: IndexOverlayTemplateRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexProductCategoryRequestSortByEnum}
27
27
  * @memberof IndexProductCategoryRequest
28
28
  */
29
29
  sortBy?: IndexProductCategoryRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexProductChildRequestSortByEnum}
27
27
  * @memberof IndexProductChildRequest
28
28
  */
29
29
  sortBy?: IndexProductChildRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexProductRequestSortByEnum}
27
27
  * @memberof IndexProductRequest
28
28
  */
29
29
  sortBy?: IndexProductRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexProductTypeRequestSortByEnum}
27
27
  * @memberof IndexProductTypeRequest
28
28
  */
29
29
  sortBy?: IndexProductTypeRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexSiteNotificationRequestSortByEnum}
27
27
  * @memberof IndexSiteNotificationRequest
28
28
  */
29
29
  sortBy?: IndexSiteNotificationRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
26
+ * @type {IndexSiteRequestSortByEnum}
27
27
  * @memberof IndexSiteRequest
28
28
  */
29
29
  sortBy?: IndexSiteRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
26
+ * @type {IndexSupplierRequestSortByEnum}
27
27
  * @memberof IndexSupplierRequest
28
28
  */
29
29
  sortBy?: IndexSupplierRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
26
+ * @type {IndexTagRequestSortByEnum}
27
27
  * @memberof IndexTagRequest
28
28
  */
29
29
  sortBy?: IndexTagRequestSortByEnum;
30
30
  /**
31
31
  *
32
- * @type {string}
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 {string}
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 {string}
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 {string}
20
+ * @type {StoreAssetForAssetableRequestAssetableTypeEnum}
21
21
  * @memberof StoreAssetForAssetableRequest
22
22
  */
23
23
  assetableType: StoreAssetForAssetableRequestAssetableTypeEnum;
@@ -23,7 +23,7 @@ export interface StoreAttributeRequest {
23
23
  name: string;
24
24
  /**
25
25
  *
26
- * @type {string}
26
+ * @type {StoreAttributeRequestTypeEnum}
27
27
  * @memberof StoreAttributeRequest
28
28
  */
29
29
  type: StoreAttributeRequestTypeEnum;
@@ -23,7 +23,7 @@ export interface StoreOverlayTemplateAssetRequest {
23
23
  overlayTemplateId: number;
24
24
  /**
25
25
  *
26
- * @type {string}
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 {string}
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 {string}
20
+ * @type {StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum}
21
21
  * @memberof StoreProductCategoryRequestAutomationRulesInner
22
22
  */
23
23
  fieldType: StoreProductCategoryRequestAutomationRulesInnerFieldTypeEnum;
24
24
  /**
25
25
  *
26
- * @type {string}
26
+ * @type {StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum}
27
27
  * @memberof StoreProductCategoryRequestAutomationRulesInner
28
28
  */
29
29
  comparisonType: StoreProductCategoryRequestAutomationRulesInnerComparisonTypeEnum;
@@ -35,7 +35,7 @@ export interface StoreTagRequest {
35
35
  siteId: number;
36
36
  /**
37
37
  *
38
- * @type {string}
38
+ * @type {StoreTagRequestTypeEnum}
39
39
  * @memberof StoreTagRequest
40
40
  */
41
41
  type: StoreTagRequestTypeEnum;
@@ -23,7 +23,7 @@ export interface UpdateAttributeRequest {
23
23
  name: string;
24
24
  /**
25
25
  *
26
- * @type {string}
26
+ * @type {UpdateAttributeRequestTypeEnum}
27
27
  * @memberof UpdateAttributeRequest
28
28
  */
29
29
  type: UpdateAttributeRequestTypeEnum;
@@ -17,7 +17,7 @@
17
17
  export interface UpdateOverlayTemplateAssetRequest {
18
18
  /**
19
19
  *
20
- * @type {string}
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 {string}
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 {string}
134
+ * @type {UpdateSiteRequestAcCouponDiscountTypeEnum}
135
135
  * @memberof UpdateSiteRequest
136
136
  */
137
137
  acCouponDiscountType: UpdateSiteRequestAcCouponDiscountTypeEnum;
@@ -29,7 +29,7 @@ export interface UpdateTagRequest {
29
29
  slug: string;
30
30
  /**
31
31
  *
32
- * @type {string}
32
+ * @type {UpdateTagRequestTypeEnum}
33
33
  * @memberof UpdateTagRequest
34
34
  */
35
35
  type: UpdateTagRequestTypeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digital8/lighting-illusions-ts-sdk",
3
- "version": "0.0.979",
3
+ "version": "0.0.981",
4
4
  "description": "OpenAPI client for @digital8/lighting-illusions-ts-sdk",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {