@digital8/lighting-illusions-ts-sdk 0.0.462 → 0.0.464

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 (683) hide show
  1. package/.openapi-generator/FILES +318 -0
  2. package/README.md +215 -2
  3. package/dist/apis/AttributeApi.d.ts +179 -0
  4. package/dist/apis/AttributeApi.js +735 -0
  5. package/dist/apis/ExternalApiLogApi.d.ts +29 -0
  6. package/dist/apis/ExternalApiLogApi.js +125 -0
  7. package/dist/apis/OverlayTemplateApi.d.ts +155 -0
  8. package/dist/apis/OverlayTemplateApi.js +640 -0
  9. package/dist/apis/ProductApi.d.ts +163 -0
  10. package/dist/apis/ProductApi.js +676 -0
  11. package/dist/apis/ProductTypeApi.d.ts +121 -0
  12. package/dist/apis/ProductTypeApi.js +501 -0
  13. package/dist/apis/SiteApi.d.ts +27 -5
  14. package/dist/apis/SiteApi.js +93 -2
  15. package/dist/apis/SupplierApi.d.ts +14 -3
  16. package/dist/apis/SupplierApi.js +46 -1
  17. package/dist/apis/TagApi.d.ts +109 -0
  18. package/dist/apis/TagApi.js +453 -0
  19. package/dist/apis/index.d.ts +6 -0
  20. package/dist/apis/index.js +6 -0
  21. package/dist/models/AssetFileForUploadResourceArrayResponse.d.ts +33 -0
  22. package/dist/models/AssetFileForUploadResourceArrayResponse.js +50 -0
  23. package/dist/models/AssetLiteResource.d.ts +44 -0
  24. package/dist/models/AssetLiteResource.js +59 -0
  25. package/dist/models/AssetLiteResourceArrayResponse.d.ts +33 -0
  26. package/dist/models/AssetLiteResourceArrayResponse.js +50 -0
  27. package/dist/models/AssetResource.d.ts +19 -6
  28. package/dist/models/AssetResource.js +13 -4
  29. package/dist/models/AssetResourceArrayResponse.d.ts +33 -0
  30. package/dist/models/AssetResourceArrayResponse.js +50 -0
  31. package/dist/models/AttributeFieldType.d.ts +27 -0
  32. package/dist/models/AttributeFieldType.js +53 -0
  33. package/dist/models/AttributeListResource.d.ts +56 -0
  34. package/dist/models/AttributeListResource.js +67 -0
  35. package/dist/models/AttributeListResourceArrayResponse.d.ts +33 -0
  36. package/dist/models/AttributeListResourceArrayResponse.js +50 -0
  37. package/dist/models/AttributeLiteResource.d.ts +38 -0
  38. package/dist/models/AttributeLiteResource.js +55 -0
  39. package/dist/models/AttributeLiteResourceArrayResponse.d.ts +33 -0
  40. package/dist/models/AttributeLiteResourceArrayResponse.js +50 -0
  41. package/dist/models/AttributeProductTypeRelationResource.d.ts +81 -0
  42. package/dist/models/AttributeProductTypeRelationResource.js +84 -0
  43. package/dist/models/AttributeProductTypeRelationResourceArrayResponse.d.ts +33 -0
  44. package/dist/models/AttributeProductTypeRelationResourceArrayResponse.js +50 -0
  45. package/dist/models/AttributeResource.d.ts +75 -0
  46. package/dist/models/AttributeResource.js +80 -0
  47. package/dist/models/AttributeResourceArrayResponse.d.ts +33 -0
  48. package/dist/models/AttributeResourceArrayResponse.js +50 -0
  49. package/dist/models/AttributeType.d.ts +26 -0
  50. package/dist/models/AttributeType.js +52 -0
  51. package/dist/models/AttributeValueResource.d.ts +38 -0
  52. package/dist/models/AttributeValueResource.js +55 -0
  53. package/dist/models/AttributeValueResourceArrayResponse.d.ts +33 -0
  54. package/dist/models/AttributeValueResourceArrayResponse.js +50 -0
  55. package/dist/models/CouponDiscountType.d.ts +25 -0
  56. package/dist/models/CouponDiscountType.js +51 -0
  57. package/dist/models/DestroyAttributeValueRequest.d.ts +32 -0
  58. package/dist/models/DestroyAttributeValueRequest.js +49 -0
  59. package/dist/models/ExternalApiLogListResource.d.ts +56 -0
  60. package/dist/models/ExternalApiLogListResource.js +63 -0
  61. package/dist/models/ExternalApiLogListResourceArrayResponse.d.ts +33 -0
  62. package/dist/models/ExternalApiLogListResourceArrayResponse.js +50 -0
  63. package/dist/models/ExternalApiLogResource.d.ts +93 -0
  64. package/dist/models/ExternalApiLogResource.js +88 -0
  65. package/dist/models/ExternalApiLogResourceArrayResponse.d.ts +33 -0
  66. package/dist/models/ExternalApiLogResourceArrayResponse.js +50 -0
  67. package/dist/models/ExternalApiProvider.d.ts +25 -0
  68. package/dist/models/ExternalApiProvider.js +51 -0
  69. package/dist/models/ExternalApiSyncStatus.d.ts +27 -0
  70. package/dist/models/ExternalApiSyncStatus.js +53 -0
  71. package/dist/models/GetAllAttributeRequest.d.ts +107 -0
  72. package/dist/models/GetAllAttributeRequest.js +90 -0
  73. package/dist/models/GetAllOverlayTemplateRequest.d.ts +93 -0
  74. package/dist/models/GetAllOverlayTemplateRequest.js +84 -0
  75. package/dist/models/GetAllProductChildRequest.d.ts +128 -0
  76. package/dist/models/GetAllProductChildRequest.js +103 -0
  77. package/dist/models/GetAllProductRequest.d.ts +119 -0
  78. package/dist/models/GetAllProductRequest.js +94 -0
  79. package/dist/models/GetAllProductTypeRequest.d.ts +88 -0
  80. package/dist/models/GetAllProductTypeRequest.js +83 -0
  81. package/dist/models/GetAllSupplierRequest.d.ts +89 -0
  82. package/dist/models/GetAllSupplierRequest.js +84 -0
  83. package/dist/models/IndexAttributeRequest.d.ts +117 -0
  84. package/dist/models/IndexAttributeRequest.js +92 -0
  85. package/dist/models/IndexExternalApiLogRequest.d.ts +131 -0
  86. package/dist/models/IndexExternalApiLogRequest.js +95 -0
  87. package/dist/models/IndexOverlayTemplateRequest.d.ts +105 -0
  88. package/dist/models/IndexOverlayTemplateRequest.js +88 -0
  89. package/dist/models/IndexProductChildRequest.d.ts +140 -0
  90. package/dist/models/IndexProductChildRequest.js +107 -0
  91. package/dist/models/IndexProductRequest.d.ts +130 -0
  92. package/dist/models/IndexProductRequest.js +97 -0
  93. package/dist/models/IndexProductTypeRequest.d.ts +99 -0
  94. package/dist/models/IndexProductTypeRequest.js +86 -0
  95. package/dist/models/IndexSiteNotificationRequest.d.ts +26 -2
  96. package/dist/models/IndexSiteNotificationRequest.js +8 -0
  97. package/dist/models/IndexSiteRequest.d.ts +25 -1
  98. package/dist/models/IndexSiteRequest.js +8 -0
  99. package/dist/models/IndexSupplierRequest.d.ts +32 -1
  100. package/dist/models/IndexSupplierRequest.js +15 -1
  101. package/dist/models/IndexTagRequest.d.ts +112 -0
  102. package/dist/models/IndexTagRequest.js +91 -0
  103. package/dist/models/LinkAssetsOverlayTemplateRequest.d.ts +32 -0
  104. package/dist/models/LinkAssetsOverlayTemplateRequest.js +51 -0
  105. package/dist/models/LinkAttributeProductTypeRequest.d.ts +48 -0
  106. package/dist/models/LinkAttributeProductTypeRequest.js +65 -0
  107. package/dist/models/LinkProductChildrenTagRequest.d.ts +32 -0
  108. package/dist/models/LinkProductChildrenTagRequest.js +51 -0
  109. package/dist/models/LinkProductTypeAttributeRequest.d.ts +48 -0
  110. package/dist/models/LinkProductTypeAttributeRequest.js +65 -0
  111. package/dist/models/ModelAttributeResource.d.ts +52 -0
  112. package/dist/models/ModelAttributeResource.js +65 -0
  113. package/dist/models/ModelAttributeResourceArrayResponse.d.ts +33 -0
  114. package/dist/models/ModelAttributeResourceArrayResponse.js +50 -0
  115. package/dist/models/OverlayTemplateAssetPosition.d.ts +30 -0
  116. package/dist/models/OverlayTemplateAssetPosition.js +56 -0
  117. package/dist/models/OverlayTemplateAssetResource.d.ts +63 -0
  118. package/dist/models/OverlayTemplateAssetResource.js +72 -0
  119. package/dist/models/OverlayTemplateAssetResourceArrayResponse.d.ts +33 -0
  120. package/dist/models/OverlayTemplateAssetResourceArrayResponse.js +50 -0
  121. package/dist/models/OverlayTemplateListResource.d.ts +38 -0
  122. package/dist/models/OverlayTemplateListResource.js +55 -0
  123. package/dist/models/OverlayTemplateListResourceArrayResponse.d.ts +33 -0
  124. package/dist/models/OverlayTemplateListResourceArrayResponse.js +50 -0
  125. package/dist/models/OverlayTemplateLiteResource.d.ts +45 -0
  126. package/dist/models/OverlayTemplateLiteResource.js +60 -0
  127. package/dist/models/OverlayTemplateLiteResourceArrayResponse.d.ts +33 -0
  128. package/dist/models/OverlayTemplateLiteResourceArrayResponse.js +50 -0
  129. package/dist/models/OverlayTemplateResource.d.ts +58 -0
  130. package/dist/models/OverlayTemplateResource.js +69 -0
  131. package/dist/models/OverlayTemplateResourceArrayResponse.d.ts +33 -0
  132. package/dist/models/OverlayTemplateResourceArrayResponse.js +50 -0
  133. package/dist/models/PaginatedAttributeListResourceResponse.d.ts +40 -0
  134. package/dist/models/PaginatedAttributeListResourceResponse.js +57 -0
  135. package/dist/models/PaginatedAttributeLiteResourceResponse.d.ts +40 -0
  136. package/dist/models/PaginatedAttributeLiteResourceResponse.js +57 -0
  137. package/dist/models/PaginatedAttributeProductTypeRelationResourceResponse.d.ts +40 -0
  138. package/dist/models/PaginatedAttributeProductTypeRelationResourceResponse.js +57 -0
  139. package/dist/models/PaginatedAttributeResourceResponse.d.ts +40 -0
  140. package/dist/models/PaginatedAttributeResourceResponse.js +57 -0
  141. package/dist/models/PaginatedExternalApiLogListResourceResponse.d.ts +40 -0
  142. package/dist/models/PaginatedExternalApiLogListResourceResponse.js +57 -0
  143. package/dist/models/PaginatedExternalApiLogResourceResponse.d.ts +40 -0
  144. package/dist/models/PaginatedExternalApiLogResourceResponse.js +57 -0
  145. package/dist/models/PaginatedOverlayTemplateListResourceResponse.d.ts +40 -0
  146. package/dist/models/PaginatedOverlayTemplateListResourceResponse.js +57 -0
  147. package/dist/models/PaginatedOverlayTemplateLiteResourceResponse.d.ts +40 -0
  148. package/dist/models/PaginatedOverlayTemplateLiteResourceResponse.js +57 -0
  149. package/dist/models/PaginatedOverlayTemplateResourceResponse.d.ts +40 -0
  150. package/dist/models/PaginatedOverlayTemplateResourceResponse.js +57 -0
  151. package/dist/models/PaginatedProductChildListResourceResponse.d.ts +40 -0
  152. package/dist/models/PaginatedProductChildListResourceResponse.js +57 -0
  153. package/dist/models/PaginatedProductChildLiteResourceResponse.d.ts +40 -0
  154. package/dist/models/PaginatedProductChildLiteResourceResponse.js +57 -0
  155. package/dist/models/PaginatedProductChildOverlayRelationResourceResponse.d.ts +40 -0
  156. package/dist/models/PaginatedProductChildOverlayRelationResourceResponse.js +57 -0
  157. package/dist/models/PaginatedProductChildRelationResourceResponse.d.ts +40 -0
  158. package/dist/models/PaginatedProductChildRelationResourceResponse.js +57 -0
  159. package/dist/models/PaginatedProductChildResourceResponse.d.ts +40 -0
  160. package/dist/models/PaginatedProductChildResourceResponse.js +57 -0
  161. package/dist/models/PaginatedProductListResourceResponse.d.ts +40 -0
  162. package/dist/models/PaginatedProductListResourceResponse.js +57 -0
  163. package/dist/models/PaginatedProductLiteResourceResponse.d.ts +40 -0
  164. package/dist/models/PaginatedProductLiteResourceResponse.js +57 -0
  165. package/dist/models/PaginatedProductResourceResponse.d.ts +40 -0
  166. package/dist/models/PaginatedProductResourceResponse.js +57 -0
  167. package/dist/models/PaginatedProductTypeListResourceResponse.d.ts +40 -0
  168. package/dist/models/PaginatedProductTypeListResourceResponse.js +57 -0
  169. package/dist/models/PaginatedProductTypeLiteResourceResponse.d.ts +40 -0
  170. package/dist/models/PaginatedProductTypeLiteResourceResponse.js +57 -0
  171. package/dist/models/PaginatedProductTypeResourceResponse.d.ts +40 -0
  172. package/dist/models/PaginatedProductTypeResourceResponse.js +57 -0
  173. package/dist/models/PaginatedSiteListResourceResponse.d.ts +40 -0
  174. package/dist/models/PaginatedSiteListResourceResponse.js +57 -0
  175. package/dist/models/PaginatedSiteLiteResourceResponse.d.ts +40 -0
  176. package/dist/models/PaginatedSiteLiteResourceResponse.js +57 -0
  177. package/dist/models/PaginatedSiteNotificationListResourceResponse.d.ts +40 -0
  178. package/dist/models/PaginatedSiteNotificationListResourceResponse.js +57 -0
  179. package/dist/models/PaginatedSupplierListResourceResponse.d.ts +40 -0
  180. package/dist/models/PaginatedSupplierListResourceResponse.js +57 -0
  181. package/dist/models/PaginatedTagListResourceResponse.d.ts +40 -0
  182. package/dist/models/PaginatedTagListResourceResponse.js +57 -0
  183. package/dist/models/PaginatedTagLiteResourceResponse.d.ts +40 -0
  184. package/dist/models/PaginatedTagLiteResourceResponse.js +57 -0
  185. package/dist/models/PaginatedTagResourceResponse.d.ts +40 -0
  186. package/dist/models/PaginatedTagResourceResponse.js +57 -0
  187. package/dist/models/ProductChildListResource.d.ts +51 -0
  188. package/dist/models/ProductChildListResource.js +64 -0
  189. package/dist/models/ProductChildListResourceArrayResponse.d.ts +33 -0
  190. package/dist/models/ProductChildListResourceArrayResponse.js +50 -0
  191. package/dist/models/ProductChildLiteResource.d.ts +75 -0
  192. package/dist/models/ProductChildLiteResource.js +80 -0
  193. package/dist/models/ProductChildLiteResourceArrayResponse.d.ts +33 -0
  194. package/dist/models/ProductChildLiteResourceArrayResponse.js +50 -0
  195. package/dist/models/ProductChildOverlayRelationResource.d.ts +81 -0
  196. package/dist/models/ProductChildOverlayRelationResource.js +84 -0
  197. package/dist/models/ProductChildOverlayRelationResourceArrayResponse.d.ts +33 -0
  198. package/dist/models/ProductChildOverlayRelationResourceArrayResponse.js +50 -0
  199. package/dist/models/ProductChildRelationResource.d.ts +69 -0
  200. package/dist/models/ProductChildRelationResource.js +76 -0
  201. package/dist/models/ProductChildRelationResourceArrayResponse.d.ts +33 -0
  202. package/dist/models/ProductChildRelationResourceArrayResponse.js +50 -0
  203. package/dist/models/ProductChildResource.d.ts +172 -0
  204. package/dist/models/ProductChildResource.js +135 -0
  205. package/dist/models/ProductChildResourceArrayResponse.d.ts +33 -0
  206. package/dist/models/ProductChildResourceArrayResponse.js +50 -0
  207. package/dist/models/ProductChildSiteDetailResource.d.ts +88 -0
  208. package/dist/models/ProductChildSiteDetailResource.js +89 -0
  209. package/dist/models/ProductChildSiteDetailResourceArrayResponse.d.ts +33 -0
  210. package/dist/models/ProductChildSiteDetailResourceArrayResponse.js +50 -0
  211. package/dist/models/ProductListResource.d.ts +38 -0
  212. package/dist/models/ProductListResource.js +55 -0
  213. package/dist/models/ProductListResourceArrayResponse.d.ts +33 -0
  214. package/dist/models/ProductListResourceArrayResponse.js +50 -0
  215. package/dist/models/ProductLiteResource.d.ts +38 -0
  216. package/dist/models/ProductLiteResource.js +55 -0
  217. package/dist/models/ProductLiteResourceArrayResponse.d.ts +33 -0
  218. package/dist/models/ProductLiteResourceArrayResponse.js +50 -0
  219. package/dist/models/ProductResource.d.ts +88 -0
  220. package/dist/models/ProductResource.js +89 -0
  221. package/dist/models/ProductResourceArrayResponse.d.ts +33 -0
  222. package/dist/models/ProductResourceArrayResponse.js +50 -0
  223. package/dist/models/ProductTypeListResource.d.ts +38 -0
  224. package/dist/models/ProductTypeListResource.js +55 -0
  225. package/dist/models/ProductTypeListResourceArrayResponse.d.ts +33 -0
  226. package/dist/models/ProductTypeListResourceArrayResponse.js +50 -0
  227. package/dist/models/ProductTypeLiteResource.d.ts +44 -0
  228. package/dist/models/ProductTypeLiteResource.js +59 -0
  229. package/dist/models/ProductTypeLiteResourceArrayResponse.d.ts +33 -0
  230. package/dist/models/ProductTypeLiteResourceArrayResponse.js +50 -0
  231. package/dist/models/ProductTypeResource.d.ts +75 -0
  232. package/dist/models/ProductTypeResource.js +80 -0
  233. package/dist/models/ProductTypeResourceArrayResponse.d.ts +33 -0
  234. package/dist/models/ProductTypeResourceArrayResponse.js +50 -0
  235. package/dist/models/SEOResourceArrayResponse.d.ts +33 -0
  236. package/dist/models/SEOResourceArrayResponse.js +50 -0
  237. package/dist/models/SiteConfigResource.d.ts +1 -1
  238. package/dist/models/SiteConfigResource.js +3 -1
  239. package/dist/models/SiteConfigResourceArrayResponse.d.ts +33 -0
  240. package/dist/models/SiteConfigResourceArrayResponse.js +50 -0
  241. package/dist/models/SiteListResource.d.ts +50 -0
  242. package/dist/models/SiteListResource.js +63 -0
  243. package/dist/models/SiteListResourceArrayResponse.d.ts +33 -0
  244. package/dist/models/SiteListResourceArrayResponse.js +50 -0
  245. package/dist/models/SiteLiteResource.d.ts +50 -0
  246. package/dist/models/SiteLiteResource.js +63 -0
  247. package/dist/models/SiteLiteResourceArrayResponse.d.ts +33 -0
  248. package/dist/models/SiteLiteResourceArrayResponse.js +50 -0
  249. package/dist/models/SiteNotificationListResource.d.ts +50 -0
  250. package/dist/models/SiteNotificationListResource.js +59 -0
  251. package/dist/models/SiteNotificationListResourceArrayResponse.d.ts +33 -0
  252. package/dist/models/SiteNotificationListResourceArrayResponse.js +50 -0
  253. package/dist/models/SiteNotificationResource.d.ts +2 -2
  254. package/dist/models/SiteNotificationResource.js +6 -2
  255. package/dist/models/SiteNotificationResourceArrayResponse.d.ts +33 -0
  256. package/dist/models/SiteNotificationResourceArrayResponse.js +50 -0
  257. package/dist/models/SitePaymentConfigResourceArrayResponse.d.ts +33 -0
  258. package/dist/models/SitePaymentConfigResourceArrayResponse.js +50 -0
  259. package/dist/models/SiteResourceArrayResponse.d.ts +33 -0
  260. package/dist/models/SiteResourceArrayResponse.js +50 -0
  261. package/dist/models/StoreAttributeRequest.d.ts +65 -0
  262. package/dist/models/StoreAttributeRequest.js +74 -0
  263. package/dist/models/StoreAttributeValueRequest.d.ts +38 -0
  264. package/dist/models/StoreAttributeValueRequest.js +55 -0
  265. package/dist/models/StoreOverlayTemplateAssetRequest.d.ts +87 -0
  266. package/dist/models/StoreOverlayTemplateAssetRequest.js +84 -0
  267. package/dist/models/StoreOverlayTemplateRequest.d.ts +38 -0
  268. package/dist/models/StoreOverlayTemplateRequest.js +55 -0
  269. package/dist/models/StoreProductChildRequest.d.ts +137 -0
  270. package/dist/models/StoreProductChildRequest.js +110 -0
  271. package/dist/models/StoreProductChildRequestAssetsInner.d.ts +62 -0
  272. package/dist/models/StoreProductChildRequestAssetsInner.js +69 -0
  273. package/dist/models/StoreProductChildRequestAttributeValuesInner.d.ts +44 -0
  274. package/dist/models/StoreProductChildRequestAttributeValuesInner.js +57 -0
  275. package/dist/models/StoreProductChildRequestSitesInner.d.ts +98 -0
  276. package/dist/models/StoreProductChildRequestSitesInner.js +81 -0
  277. package/dist/models/StoreProductRequest.d.ts +81 -0
  278. package/dist/models/StoreProductRequest.js +80 -0
  279. package/dist/models/StoreProductRequestCategoriesInner.d.ts +38 -0
  280. package/dist/models/StoreProductRequestCategoriesInner.js +55 -0
  281. package/dist/models/StoreProductTypeRequest.d.ts +32 -0
  282. package/dist/models/StoreProductTypeRequest.js +51 -0
  283. package/dist/models/StoreSupplierRequest.d.ts +3 -2
  284. package/dist/models/StoreSupplierRequest.js +3 -2
  285. package/dist/models/StoreSupplierRequestSeoInner.d.ts +62 -0
  286. package/dist/models/StoreSupplierRequestSeoInner.js +61 -0
  287. package/dist/models/StoreTagRequest.d.ts +88 -0
  288. package/dist/models/StoreTagRequest.js +81 -0
  289. package/dist/models/SupplierFrontendResourceArrayResponse.d.ts +33 -0
  290. package/dist/models/SupplierFrontendResourceArrayResponse.js +50 -0
  291. package/dist/models/SupplierListResource.d.ts +57 -0
  292. package/dist/models/SupplierListResource.js +68 -0
  293. package/dist/models/SupplierListResourceArrayResponse.d.ts +33 -0
  294. package/dist/models/SupplierListResourceArrayResponse.js +50 -0
  295. package/dist/models/SupplierLiteResourceArrayResponse.d.ts +33 -0
  296. package/dist/models/SupplierLiteResourceArrayResponse.js +50 -0
  297. package/dist/models/SupplierResourceArrayResponse.d.ts +33 -0
  298. package/dist/models/SupplierResourceArrayResponse.js +50 -0
  299. package/dist/models/TagListResource.d.ts +57 -0
  300. package/dist/models/TagListResource.js +68 -0
  301. package/dist/models/TagListResourceArrayResponse.d.ts +33 -0
  302. package/dist/models/TagListResourceArrayResponse.js +50 -0
  303. package/dist/models/TagLiteResource.d.ts +38 -0
  304. package/dist/models/TagLiteResource.js +55 -0
  305. package/dist/models/TagLiteResourceArrayResponse.d.ts +33 -0
  306. package/dist/models/TagLiteResourceArrayResponse.js +50 -0
  307. package/dist/models/TagResource.d.ts +64 -0
  308. package/dist/models/TagResource.js +73 -0
  309. package/dist/models/TagResourceArrayResponse.d.ts +33 -0
  310. package/dist/models/TagResourceArrayResponse.js +50 -0
  311. package/dist/models/TagType.d.ts +25 -0
  312. package/dist/models/TagType.js +51 -0
  313. package/dist/models/UnlinkAssetableOverlayTemplateRequest.d.ts +51 -0
  314. package/dist/models/UnlinkAssetableOverlayTemplateRequest.js +64 -0
  315. package/dist/models/UpdateAttributeRequest.d.ts +65 -0
  316. package/dist/models/UpdateAttributeRequest.js +74 -0
  317. package/dist/models/UpdateAttributeValueRequest.d.ts +32 -0
  318. package/dist/models/UpdateAttributeValueRequest.js +51 -0
  319. package/dist/models/UpdateFilterOrderAttributeRequest.d.ts +33 -0
  320. package/dist/models/UpdateFilterOrderAttributeRequest.js +52 -0
  321. package/dist/models/UpdateFilterOrderAttributeRequestValuesInner.d.ts +38 -0
  322. package/dist/models/UpdateFilterOrderAttributeRequestValuesInner.js +55 -0
  323. package/dist/models/UpdateModelAttributeRequest.d.ts +38 -0
  324. package/dist/models/UpdateModelAttributeRequest.js +51 -0
  325. package/dist/models/UpdateOverlayTemplateAssetRequest.d.ts +81 -0
  326. package/dist/models/UpdateOverlayTemplateAssetRequest.js +80 -0
  327. package/dist/models/UpdateOverlayTemplateRequest.d.ts +38 -0
  328. package/dist/models/UpdateOverlayTemplateRequest.js +53 -0
  329. package/dist/models/UpdateProductChildRequest.d.ts +112 -0
  330. package/dist/models/UpdateProductChildRequest.js +91 -0
  331. package/dist/models/UpdateProductChildRequestAssetsInner.d.ts +50 -0
  332. package/dist/models/UpdateProductChildRequestAssetsInner.js +61 -0
  333. package/dist/models/UpdateProductRequest.d.ts +81 -0
  334. package/dist/models/UpdateProductRequest.js +80 -0
  335. package/dist/models/UpdateProductTypeRequest.d.ts +57 -0
  336. package/dist/models/UpdateProductTypeRequest.js +60 -0
  337. package/dist/models/UpdateProductTypeRequestPerformanceValuesInner.d.ts +38 -0
  338. package/dist/models/UpdateProductTypeRequestPerformanceValuesInner.js +51 -0
  339. package/dist/models/UpdateSupplierRequest.d.ts +3 -2
  340. package/dist/models/UpdateSupplierRequest.js +3 -2
  341. package/dist/models/UpdateTagRequest.d.ts +82 -0
  342. package/dist/models/UpdateTagRequest.js +77 -0
  343. package/dist/models/index.d.ts +153 -0
  344. package/dist/models/index.js +153 -0
  345. package/docs/AssetFileForUploadResourceArrayResponse.md +34 -0
  346. package/docs/AssetLiteResource.md +38 -0
  347. package/docs/AssetLiteResourceArrayResponse.md +34 -0
  348. package/docs/AssetResource.md +6 -2
  349. package/docs/AssetResourceArrayResponse.md +34 -0
  350. package/docs/AttributeApi.md +953 -0
  351. package/docs/AttributeFieldType.md +32 -0
  352. package/docs/AttributeListResource.md +42 -0
  353. package/docs/AttributeListResourceArrayResponse.md +34 -0
  354. package/docs/AttributeLiteResource.md +36 -0
  355. package/docs/AttributeLiteResourceArrayResponse.md +34 -0
  356. package/docs/AttributeProductTypeRelationResource.md +50 -0
  357. package/docs/AttributeProductTypeRelationResourceArrayResponse.md +34 -0
  358. package/docs/AttributeResource.md +48 -0
  359. package/docs/AttributeResourceArrayResponse.md +34 -0
  360. package/docs/AttributeType.md +32 -0
  361. package/docs/AttributeValueResource.md +36 -0
  362. package/docs/AttributeValueResourceArrayResponse.md +34 -0
  363. package/docs/CouponDiscountType.md +32 -0
  364. package/docs/DestroyAttributeValueRequest.md +34 -0
  365. package/docs/ExternalApiLogApi.md +74 -0
  366. package/docs/ExternalApiLogListResource.md +42 -0
  367. package/docs/ExternalApiLogListResourceArrayResponse.md +34 -0
  368. package/docs/ExternalApiLogResource.md +54 -0
  369. package/docs/ExternalApiLogResourceArrayResponse.md +34 -0
  370. package/docs/ExternalApiProvider.md +32 -0
  371. package/docs/ExternalApiSyncStatus.md +32 -0
  372. package/docs/GetAllAttributeRequest.md +50 -0
  373. package/docs/GetAllOverlayTemplateRequest.md +46 -0
  374. package/docs/GetAllProductChildRequest.md +54 -0
  375. package/docs/GetAllProductRequest.md +54 -0
  376. package/docs/GetAllProductTypeRequest.md +44 -0
  377. package/docs/GetAllSupplierRequest.md +44 -0
  378. package/docs/IndexAttributeRequest.md +54 -0
  379. package/docs/IndexExternalApiLogRequest.md +60 -0
  380. package/docs/IndexOverlayTemplateRequest.md +50 -0
  381. package/docs/IndexProductChildRequest.md +58 -0
  382. package/docs/IndexProductRequest.md +58 -0
  383. package/docs/IndexProductTypeRequest.md +48 -0
  384. package/docs/IndexSiteNotificationRequest.md +9 -1
  385. package/docs/IndexSiteRequest.md +9 -1
  386. package/docs/IndexSupplierRequest.md +9 -1
  387. package/docs/IndexTagRequest.md +52 -0
  388. package/docs/LinkAssetsOverlayTemplateRequest.md +34 -0
  389. package/docs/LinkAttributeProductTypeRequest.md +36 -0
  390. package/docs/LinkProductChildrenTagRequest.md +34 -0
  391. package/docs/LinkProductTypeAttributeRequest.md +36 -0
  392. package/docs/ModelAttributeResource.md +40 -0
  393. package/docs/ModelAttributeResourceArrayResponse.md +34 -0
  394. package/docs/OverlayTemplateApi.md +815 -0
  395. package/docs/OverlayTemplateAssetPosition.md +32 -0
  396. package/docs/OverlayTemplateAssetResource.md +44 -0
  397. package/docs/OverlayTemplateAssetResourceArrayResponse.md +34 -0
  398. package/docs/OverlayTemplateListResource.md +36 -0
  399. package/docs/OverlayTemplateListResourceArrayResponse.md +34 -0
  400. package/docs/OverlayTemplateLiteResource.md +38 -0
  401. package/docs/OverlayTemplateLiteResourceArrayResponse.md +34 -0
  402. package/docs/OverlayTemplateResource.md +42 -0
  403. package/docs/OverlayTemplateResourceArrayResponse.md +34 -0
  404. package/docs/PaginatedAttributeListResourceResponse.md +36 -0
  405. package/docs/PaginatedAttributeLiteResourceResponse.md +36 -0
  406. package/docs/PaginatedAttributeProductTypeRelationResourceResponse.md +36 -0
  407. package/docs/PaginatedAttributeResourceResponse.md +36 -0
  408. package/docs/PaginatedExternalApiLogListResourceResponse.md +36 -0
  409. package/docs/PaginatedExternalApiLogResourceResponse.md +36 -0
  410. package/docs/PaginatedOverlayTemplateListResourceResponse.md +36 -0
  411. package/docs/PaginatedOverlayTemplateLiteResourceResponse.md +36 -0
  412. package/docs/PaginatedOverlayTemplateResourceResponse.md +36 -0
  413. package/docs/PaginatedProductChildListResourceResponse.md +36 -0
  414. package/docs/PaginatedProductChildLiteResourceResponse.md +36 -0
  415. package/docs/PaginatedProductChildOverlayRelationResourceResponse.md +36 -0
  416. package/docs/PaginatedProductChildRelationResourceResponse.md +36 -0
  417. package/docs/PaginatedProductChildResourceResponse.md +36 -0
  418. package/docs/PaginatedProductListResourceResponse.md +36 -0
  419. package/docs/PaginatedProductLiteResourceResponse.md +36 -0
  420. package/docs/PaginatedProductResourceResponse.md +36 -0
  421. package/docs/PaginatedProductTypeListResourceResponse.md +36 -0
  422. package/docs/PaginatedProductTypeLiteResourceResponse.md +36 -0
  423. package/docs/PaginatedProductTypeResourceResponse.md +36 -0
  424. package/docs/PaginatedSiteListResourceResponse.md +36 -0
  425. package/docs/PaginatedSiteLiteResourceResponse.md +36 -0
  426. package/docs/PaginatedSiteNotificationListResourceResponse.md +36 -0
  427. package/docs/PaginatedSupplierListResourceResponse.md +36 -0
  428. package/docs/PaginatedTagListResourceResponse.md +36 -0
  429. package/docs/PaginatedTagLiteResourceResponse.md +36 -0
  430. package/docs/PaginatedTagResourceResponse.md +36 -0
  431. package/docs/ProductApi.md +872 -0
  432. package/docs/ProductChildListResource.md +40 -0
  433. package/docs/ProductChildListResourceArrayResponse.md +34 -0
  434. package/docs/ProductChildLiteResource.md +48 -0
  435. package/docs/ProductChildLiteResourceArrayResponse.md +34 -0
  436. package/docs/ProductChildOverlayRelationResource.md +50 -0
  437. package/docs/ProductChildOverlayRelationResourceArrayResponse.md +34 -0
  438. package/docs/ProductChildRelationResource.md +46 -0
  439. package/docs/ProductChildRelationResourceArrayResponse.md +34 -0
  440. package/docs/ProductChildResource.md +80 -0
  441. package/docs/ProductChildResourceArrayResponse.md +34 -0
  442. package/docs/ProductChildSiteDetailResource.md +52 -0
  443. package/docs/ProductChildSiteDetailResourceArrayResponse.md +34 -0
  444. package/docs/ProductListResource.md +36 -0
  445. package/docs/ProductListResourceArrayResponse.md +34 -0
  446. package/docs/ProductLiteResource.md +36 -0
  447. package/docs/ProductLiteResourceArrayResponse.md +34 -0
  448. package/docs/ProductResource.md +52 -0
  449. package/docs/ProductResourceArrayResponse.md +34 -0
  450. package/docs/ProductTypeApi.md +614 -0
  451. package/docs/ProductTypeListResource.md +36 -0
  452. package/docs/ProductTypeListResourceArrayResponse.md +34 -0
  453. package/docs/ProductTypeLiteResource.md +38 -0
  454. package/docs/ProductTypeLiteResourceArrayResponse.md +34 -0
  455. package/docs/ProductTypeResource.md +48 -0
  456. package/docs/ProductTypeResourceArrayResponse.md +34 -0
  457. package/docs/SEOResourceArrayResponse.md +34 -0
  458. package/docs/SiteApi.md +138 -6
  459. package/docs/SiteConfigResourceArrayResponse.md +34 -0
  460. package/docs/SiteListResource.md +40 -0
  461. package/docs/SiteListResourceArrayResponse.md +34 -0
  462. package/docs/SiteLiteResource.md +40 -0
  463. package/docs/SiteLiteResourceArrayResponse.md +34 -0
  464. package/docs/SiteNotificationListResource.md +40 -0
  465. package/docs/SiteNotificationListResourceArrayResponse.md +34 -0
  466. package/docs/SiteNotificationResourceArrayResponse.md +34 -0
  467. package/docs/SitePaymentConfigResourceArrayResponse.md +34 -0
  468. package/docs/SiteResourceArrayResponse.md +34 -0
  469. package/docs/StoreAttributeRequest.md +42 -0
  470. package/docs/StoreAttributeValueRequest.md +36 -0
  471. package/docs/StoreOverlayTemplateAssetRequest.md +48 -0
  472. package/docs/StoreOverlayTemplateRequest.md +36 -0
  473. package/docs/StoreProductChildRequest.md +68 -0
  474. package/docs/StoreProductChildRequestAssetsInner.md +44 -0
  475. package/docs/StoreProductChildRequestAttributeValuesInner.md +38 -0
  476. package/docs/StoreProductChildRequestSitesInner.md +56 -0
  477. package/docs/StoreProductRequest.md +50 -0
  478. package/docs/StoreProductRequestCategoriesInner.md +36 -0
  479. package/docs/StoreProductTypeRequest.md +34 -0
  480. package/docs/StoreSupplierRequest.md +1 -1
  481. package/docs/StoreSupplierRequestSeoInner.md +44 -0
  482. package/docs/StoreTagRequest.md +50 -0
  483. package/docs/SupplierApi.md +69 -3
  484. package/docs/SupplierFrontendResourceArrayResponse.md +34 -0
  485. package/docs/SupplierListResource.md +42 -0
  486. package/docs/SupplierListResourceArrayResponse.md +34 -0
  487. package/docs/SupplierLiteResourceArrayResponse.md +34 -0
  488. package/docs/SupplierResourceArrayResponse.md +34 -0
  489. package/docs/TagApi.md +545 -0
  490. package/docs/TagListResource.md +42 -0
  491. package/docs/TagListResourceArrayResponse.md +34 -0
  492. package/docs/TagLiteResource.md +36 -0
  493. package/docs/TagLiteResourceArrayResponse.md +34 -0
  494. package/docs/TagResource.md +44 -0
  495. package/docs/TagResourceArrayResponse.md +34 -0
  496. package/docs/TagType.md +32 -0
  497. package/docs/UnlinkAssetableOverlayTemplateRequest.md +38 -0
  498. package/docs/UpdateAttributeRequest.md +42 -0
  499. package/docs/UpdateAttributeValueRequest.md +34 -0
  500. package/docs/UpdateFilterOrderAttributeRequest.md +34 -0
  501. package/docs/UpdateFilterOrderAttributeRequestValuesInner.md +36 -0
  502. package/docs/UpdateModelAttributeRequest.md +36 -0
  503. package/docs/UpdateOverlayTemplateAssetRequest.md +46 -0
  504. package/docs/UpdateOverlayTemplateRequest.md +36 -0
  505. package/docs/UpdateProductChildRequest.md +60 -0
  506. package/docs/UpdateProductChildRequestAssetsInner.md +40 -0
  507. package/docs/UpdateProductRequest.md +50 -0
  508. package/docs/UpdateProductTypeRequest.md +42 -0
  509. package/docs/UpdateProductTypeRequestPerformanceValuesInner.md +36 -0
  510. package/docs/UpdateSupplierRequest.md +1 -1
  511. package/docs/UpdateTagRequest.md +48 -0
  512. package/package.json +1 -1
  513. package/src/apis/AttributeApi.ts +657 -0
  514. package/src/apis/ExternalApiLogApi.ts +69 -0
  515. package/src/apis/OverlayTemplateApi.ts +560 -0
  516. package/src/apis/ProductApi.ts +586 -0
  517. package/src/apis/ProductTypeApi.ts +429 -0
  518. package/src/apis/SiteApi.ts +92 -12
  519. package/src/apis/SupplierApi.ts +48 -6
  520. package/src/apis/TagApi.ts +384 -0
  521. package/src/apis/index.ts +6 -0
  522. package/src/models/AssetFileForUploadResourceArrayResponse.ts +73 -0
  523. package/src/models/AssetLiteResource.ts +84 -0
  524. package/src/models/AssetLiteResourceArrayResponse.ts +73 -0
  525. package/src/models/AssetResource.ts +35 -9
  526. package/src/models/AssetResourceArrayResponse.ts +73 -0
  527. package/src/models/AttributeFieldType.ts +55 -0
  528. package/src/models/AttributeListResource.ts +102 -0
  529. package/src/models/AttributeListResourceArrayResponse.ts +73 -0
  530. package/src/models/AttributeLiteResource.ts +75 -0
  531. package/src/models/AttributeLiteResourceArrayResponse.ts +73 -0
  532. package/src/models/AttributeProductTypeRelationResource.ts +146 -0
  533. package/src/models/AttributeProductTypeRelationResourceArrayResponse.ts +73 -0
  534. package/src/models/AttributeResource.ts +137 -0
  535. package/src/models/AttributeResourceArrayResponse.ts +73 -0
  536. package/src/models/AttributeType.ts +54 -0
  537. package/src/models/AttributeValueResource.ts +75 -0
  538. package/src/models/AttributeValueResourceArrayResponse.ts +73 -0
  539. package/src/models/CouponDiscountType.ts +53 -0
  540. package/src/models/DestroyAttributeValueRequest.ts +65 -0
  541. package/src/models/ExternalApiLogListResource.ts +100 -0
  542. package/src/models/ExternalApiLogListResourceArrayResponse.ts +73 -0
  543. package/src/models/ExternalApiLogResource.ts +162 -0
  544. package/src/models/ExternalApiLogResourceArrayResponse.ts +73 -0
  545. package/src/models/ExternalApiProvider.ts +53 -0
  546. package/src/models/ExternalApiSyncStatus.ts +55 -0
  547. package/src/models/GetAllAttributeRequest.ts +161 -0
  548. package/src/models/GetAllOverlayTemplateRequest.ts +143 -0
  549. package/src/models/GetAllProductChildRequest.ts +186 -0
  550. package/src/models/GetAllProductRequest.ts +177 -0
  551. package/src/models/GetAllProductTypeRequest.ts +136 -0
  552. package/src/models/GetAllSupplierRequest.ts +137 -0
  553. package/src/models/IndexAttributeRequest.ts +175 -0
  554. package/src/models/IndexExternalApiLogRequest.ts +194 -0
  555. package/src/models/IndexOverlayTemplateRequest.ts +159 -0
  556. package/src/models/IndexProductChildRequest.ts +202 -0
  557. package/src/models/IndexProductRequest.ts +192 -0
  558. package/src/models/IndexProductTypeRequest.ts +151 -0
  559. package/src/models/IndexSiteNotificationRequest.ts +34 -2
  560. package/src/models/IndexSiteRequest.ts +33 -1
  561. package/src/models/IndexSupplierRequest.ts +41 -1
  562. package/src/models/IndexTagRequest.ts +168 -0
  563. package/src/models/LinkAssetsOverlayTemplateRequest.ts +66 -0
  564. package/src/models/LinkAttributeProductTypeRequest.ts +88 -0
  565. package/src/models/LinkProductChildrenTagRequest.ts +66 -0
  566. package/src/models/LinkProductTypeAttributeRequest.ts +88 -0
  567. package/src/models/ModelAttributeResource.ts +108 -0
  568. package/src/models/ModelAttributeResourceArrayResponse.ts +73 -0
  569. package/src/models/OverlayTemplateAssetPosition.ts +58 -0
  570. package/src/models/OverlayTemplateAssetResource.ts +119 -0
  571. package/src/models/OverlayTemplateAssetResourceArrayResponse.ts +73 -0
  572. package/src/models/OverlayTemplateListResource.ts +75 -0
  573. package/src/models/OverlayTemplateListResourceArrayResponse.ts +73 -0
  574. package/src/models/OverlayTemplateLiteResource.ts +92 -0
  575. package/src/models/OverlayTemplateLiteResourceArrayResponse.ts +73 -0
  576. package/src/models/OverlayTemplateResource.ts +117 -0
  577. package/src/models/OverlayTemplateResourceArrayResponse.ts +73 -0
  578. package/src/models/PaginatedAttributeListResourceResponse.ts +90 -0
  579. package/src/models/PaginatedAttributeLiteResourceResponse.ts +90 -0
  580. package/src/models/PaginatedAttributeProductTypeRelationResourceResponse.ts +90 -0
  581. package/src/models/PaginatedAttributeResourceResponse.ts +90 -0
  582. package/src/models/PaginatedExternalApiLogListResourceResponse.ts +90 -0
  583. package/src/models/PaginatedExternalApiLogResourceResponse.ts +90 -0
  584. package/src/models/PaginatedOverlayTemplateListResourceResponse.ts +90 -0
  585. package/src/models/PaginatedOverlayTemplateLiteResourceResponse.ts +90 -0
  586. package/src/models/PaginatedOverlayTemplateResourceResponse.ts +90 -0
  587. package/src/models/PaginatedProductChildListResourceResponse.ts +90 -0
  588. package/src/models/PaginatedProductChildLiteResourceResponse.ts +90 -0
  589. package/src/models/PaginatedProductChildOverlayRelationResourceResponse.ts +90 -0
  590. package/src/models/PaginatedProductChildRelationResourceResponse.ts +90 -0
  591. package/src/models/PaginatedProductChildResourceResponse.ts +90 -0
  592. package/src/models/PaginatedProductListResourceResponse.ts +90 -0
  593. package/src/models/PaginatedProductLiteResourceResponse.ts +90 -0
  594. package/src/models/PaginatedProductResourceResponse.ts +90 -0
  595. package/src/models/PaginatedProductTypeListResourceResponse.ts +90 -0
  596. package/src/models/PaginatedProductTypeLiteResourceResponse.ts +90 -0
  597. package/src/models/PaginatedProductTypeResourceResponse.ts +90 -0
  598. package/src/models/PaginatedSiteListResourceResponse.ts +90 -0
  599. package/src/models/PaginatedSiteLiteResourceResponse.ts +90 -0
  600. package/src/models/PaginatedSiteNotificationListResourceResponse.ts +90 -0
  601. package/src/models/PaginatedSupplierListResourceResponse.ts +90 -0
  602. package/src/models/PaginatedTagListResourceResponse.ts +90 -0
  603. package/src/models/PaginatedTagLiteResourceResponse.ts +90 -0
  604. package/src/models/PaginatedTagResourceResponse.ts +90 -0
  605. package/src/models/ProductChildListResource.ts +101 -0
  606. package/src/models/ProductChildListResourceArrayResponse.ts +73 -0
  607. package/src/models/ProductChildLiteResource.ts +137 -0
  608. package/src/models/ProductChildLiteResourceArrayResponse.ts +73 -0
  609. package/src/models/ProductChildOverlayRelationResource.ts +146 -0
  610. package/src/models/ProductChildOverlayRelationResourceArrayResponse.ts +73 -0
  611. package/src/models/ProductChildRelationResource.ts +128 -0
  612. package/src/models/ProductChildRelationResourceArrayResponse.ts +73 -0
  613. package/src/models/ProductChildResource.ts +283 -0
  614. package/src/models/ProductChildResourceArrayResponse.ts +73 -0
  615. package/src/models/ProductChildSiteDetailResource.ts +162 -0
  616. package/src/models/ProductChildSiteDetailResourceArrayResponse.ts +73 -0
  617. package/src/models/ProductListResource.ts +75 -0
  618. package/src/models/ProductListResourceArrayResponse.ts +73 -0
  619. package/src/models/ProductLiteResource.ts +75 -0
  620. package/src/models/ProductLiteResourceArrayResponse.ts +73 -0
  621. package/src/models/ProductResource.ts +162 -0
  622. package/src/models/ProductResourceArrayResponse.ts +73 -0
  623. package/src/models/ProductTypeListResource.ts +75 -0
  624. package/src/models/ProductTypeListResourceArrayResponse.ts +73 -0
  625. package/src/models/ProductTypeLiteResource.ts +84 -0
  626. package/src/models/ProductTypeLiteResourceArrayResponse.ts +73 -0
  627. package/src/models/ProductTypeResource.ts +137 -0
  628. package/src/models/ProductTypeResourceArrayResponse.ts +73 -0
  629. package/src/models/SEOResourceArrayResponse.ts +73 -0
  630. package/src/models/SiteConfigResource.ts +3 -2
  631. package/src/models/SiteConfigResourceArrayResponse.ts +73 -0
  632. package/src/models/SiteListResource.ts +93 -0
  633. package/src/models/SiteListResourceArrayResponse.ts +73 -0
  634. package/src/models/SiteLiteResource.ts +93 -0
  635. package/src/models/SiteLiteResourceArrayResponse.ts +73 -0
  636. package/src/models/SiteNotificationListResource.ts +91 -0
  637. package/src/models/SiteNotificationListResourceArrayResponse.ts +73 -0
  638. package/src/models/SiteNotificationResource.ts +6 -4
  639. package/src/models/SiteNotificationResourceArrayResponse.ts +73 -0
  640. package/src/models/SitePaymentConfigResourceArrayResponse.ts +73 -0
  641. package/src/models/SiteResourceArrayResponse.ts +73 -0
  642. package/src/models/StoreAttributeRequest.ts +113 -0
  643. package/src/models/StoreAttributeValueRequest.ts +75 -0
  644. package/src/models/StoreOverlayTemplateAssetRequest.ts +141 -0
  645. package/src/models/StoreOverlayTemplateRequest.ts +75 -0
  646. package/src/models/StoreProductChildRequest.ts +235 -0
  647. package/src/models/StoreProductChildRequestAssetsInner.ts +110 -0
  648. package/src/models/StoreProductChildRequestAttributeValuesInner.ts +83 -0
  649. package/src/models/StoreProductChildRequestSitesInner.ts +158 -0
  650. package/src/models/StoreProductRequest.ts +144 -0
  651. package/src/models/StoreProductRequestCategoriesInner.ts +75 -0
  652. package/src/models/StoreProductTypeRequest.ts +66 -0
  653. package/src/models/StoreSupplierRequest.ts +12 -4
  654. package/src/models/StoreSupplierRequestSeoInner.ts +106 -0
  655. package/src/models/StoreTagRequest.ts +144 -0
  656. package/src/models/SupplierFrontendResourceArrayResponse.ts +73 -0
  657. package/src/models/SupplierListResource.ts +110 -0
  658. package/src/models/SupplierListResourceArrayResponse.ts +73 -0
  659. package/src/models/SupplierLiteResourceArrayResponse.ts +73 -0
  660. package/src/models/SupplierResourceArrayResponse.ts +73 -0
  661. package/src/models/TagListResource.ts +110 -0
  662. package/src/models/TagListResourceArrayResponse.ts +73 -0
  663. package/src/models/TagLiteResource.ts +75 -0
  664. package/src/models/TagLiteResourceArrayResponse.ts +73 -0
  665. package/src/models/TagResource.ts +126 -0
  666. package/src/models/TagResourceArrayResponse.ts +73 -0
  667. package/src/models/TagType.ts +53 -0
  668. package/src/models/UnlinkAssetableOverlayTemplateRequest.ts +93 -0
  669. package/src/models/UpdateAttributeRequest.ts +113 -0
  670. package/src/models/UpdateAttributeValueRequest.ts +66 -0
  671. package/src/models/UpdateFilterOrderAttributeRequest.ts +74 -0
  672. package/src/models/UpdateFilterOrderAttributeRequestValuesInner.ts +75 -0
  673. package/src/models/UpdateModelAttributeRequest.ts +73 -0
  674. package/src/models/UpdateOverlayTemplateAssetRequest.ts +132 -0
  675. package/src/models/UpdateOverlayTemplateRequest.ts +74 -0
  676. package/src/models/UpdateProductChildRequest.ts +191 -0
  677. package/src/models/UpdateProductChildRequestAssetsInner.ts +92 -0
  678. package/src/models/UpdateProductRequest.ts +144 -0
  679. package/src/models/UpdateProductTypeRequest.ts +106 -0
  680. package/src/models/UpdateProductTypeRequestPerformanceValuesInner.ts +73 -0
  681. package/src/models/UpdateSupplierRequest.ts +12 -4
  682. package/src/models/UpdateTagRequest.ts +135 -0
  683. package/src/models/index.ts +153 -0
@@ -0,0 +1,52 @@
1
+
2
+ # ProductResource
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `id` | number
10
+ `name` | string
11
+ `displayName` | string
12
+ `isAccessory` | boolean
13
+ `warranty` | string
14
+ `categoryIDs` | Array<boolean>
15
+ `supplier` | [SupplierLiteResource](SupplierLiteResource.md)
16
+ `productType` | [ProductTypeLiteResource](ProductTypeLiteResource.md)
17
+ `sites` | object
18
+ `children` | object
19
+
20
+ ## Example
21
+
22
+ ```typescript
23
+ import type { ProductResource } from '@digital8/lighting-illusions-ts-sdk'
24
+
25
+ // TODO: Update the object below with actual values
26
+ const example = {
27
+ "id": null,
28
+ "name": null,
29
+ "displayName": null,
30
+ "isAccessory": null,
31
+ "warranty": null,
32
+ "categoryIDs": null,
33
+ "supplier": null,
34
+ "productType": null,
35
+ "sites": null,
36
+ "children": null,
37
+ } satisfies ProductResource
38
+
39
+ console.log(example)
40
+
41
+ // Convert the instance to a JSON string
42
+ const exampleJSON: string = JSON.stringify(example)
43
+ console.log(exampleJSON)
44
+
45
+ // Parse the JSON string back to an object
46
+ const exampleParsed = JSON.parse(exampleJSON) as ProductResource
47
+ console.log(exampleParsed)
48
+ ```
49
+
50
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
51
+
52
+
@@ -0,0 +1,34 @@
1
+
2
+ # ProductResourceArrayResponse
3
+
4
+
5
+ ## Properties
6
+
7
+ Name | Type
8
+ ------------ | -------------
9
+ `data` | [Array<ProductResource>](ProductResource.md)
10
+
11
+ ## Example
12
+
13
+ ```typescript
14
+ import type { ProductResourceArrayResponse } from '@digital8/lighting-illusions-ts-sdk'
15
+
16
+ // TODO: Update the object below with actual values
17
+ const example = {
18
+ "data": null,
19
+ } satisfies ProductResourceArrayResponse
20
+
21
+ console.log(example)
22
+
23
+ // Convert the instance to a JSON string
24
+ const exampleJSON: string = JSON.stringify(example)
25
+ console.log(exampleJSON)
26
+
27
+ // Parse the JSON string back to an object
28
+ const exampleParsed = JSON.parse(exampleJSON) as ProductResourceArrayResponse
29
+ console.log(exampleParsed)
30
+ ```
31
+
32
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,614 @@
1
+ # ProductTypeApi
2
+
3
+ All URIs are relative to *http://localhost/api*
4
+
5
+ | Method | HTTP request | Description |
6
+ |------------- | ------------- | -------------|
7
+ | [**destroyProductType**](ProductTypeApi.md#destroyproducttype) | **DELETE** /admin-api/product-type/{productType}/delete | Auto-generated: destroyProductType |
8
+ | [**getAllProductType**](ProductTypeApi.md#getallproducttypeoperation) | **POST** /admin-api/product-type/all | Auto-generated: getAllProductType |
9
+ | [**indexProductType**](ProductTypeApi.md#indexproducttypeoperation) | **POST** /admin-api/product-type/list | Auto-generated: indexProductType |
10
+ | [**linkAttributeProductType**](ProductTypeApi.md#linkattributeproducttypeoperation) | **POST** /admin-api/product-type/{productType}/link-attribute | Auto-generated: linkAttributeProductType |
11
+ | [**showProductType**](ProductTypeApi.md#showproducttype) | **GET** /admin-api/product-type/{productType} | Auto-generated: showProductType |
12
+ | [**storeProductType**](ProductTypeApi.md#storeproducttypeoperation) | **POST** /admin-api/product-type/create | Auto-generated: storeProductType |
13
+ | [**unlinkAttributeProductType**](ProductTypeApi.md#unlinkattributeproducttype) | **POST** /admin-api/product-type/{productType}/remove-attribute/{attribute} | Auto-generated: unlinkAttributeProductType |
14
+ | [**updateLinkedAttributeProductType**](ProductTypeApi.md#updatelinkedattributeproducttype) | **PUT** /admin-api/product-type/{productType}/update-attribute | Auto-generated: updateLinkedAttributeProductType |
15
+ | [**updateProductType**](ProductTypeApi.md#updateproducttypeoperation) | **PUT** /admin-api/product-type/{productType}/update | Auto-generated: updateProductType |
16
+
17
+
18
+
19
+ ## destroyProductType
20
+
21
+ > GenericResponse destroyProductType(productType)
22
+
23
+ Auto-generated: destroyProductType
24
+
25
+ ### Example
26
+
27
+ ```ts
28
+ import {
29
+ Configuration,
30
+ ProductTypeApi,
31
+ } from '@digital8/lighting-illusions-ts-sdk';
32
+ import type { DestroyProductTypeRequest } from '@digital8/lighting-illusions-ts-sdk';
33
+
34
+ async function example() {
35
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
36
+ const api = new ProductTypeApi();
37
+
38
+ const body = {
39
+ // number | The id of the productType
40
+ productType: 56,
41
+ } satisfies DestroyProductTypeRequest;
42
+
43
+ try {
44
+ const data = await api.destroyProductType(body);
45
+ console.log(data);
46
+ } catch (error) {
47
+ console.error(error);
48
+ }
49
+ }
50
+
51
+ // Run the test
52
+ example().catch(console.error);
53
+ ```
54
+
55
+ ### Parameters
56
+
57
+
58
+ | Name | Type | Description | Notes |
59
+ |------------- | ------------- | ------------- | -------------|
60
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
61
+
62
+ ### Return type
63
+
64
+ [**GenericResponse**](GenericResponse.md)
65
+
66
+ ### Authorization
67
+
68
+ No authorization required
69
+
70
+ ### HTTP request headers
71
+
72
+ - **Content-Type**: Not defined
73
+ - **Accept**: `application/json`
74
+
75
+
76
+ ### HTTP response details
77
+ | Status code | Description | Response headers |
78
+ |-------------|-------------|------------------|
79
+ | **200** | \\JsonResponse | - |
80
+
81
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
82
+
83
+
84
+ ## getAllProductType
85
+
86
+ > PaginatedProductTypeLiteResourceResponse getAllProductType(getAllProductTypeRequest)
87
+
88
+ Auto-generated: getAllProductType
89
+
90
+ ### Example
91
+
92
+ ```ts
93
+ import {
94
+ Configuration,
95
+ ProductTypeApi,
96
+ } from '@digital8/lighting-illusions-ts-sdk';
97
+ import type { GetAllProductTypeOperationRequest } from '@digital8/lighting-illusions-ts-sdk';
98
+
99
+ async function example() {
100
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
101
+ const api = new ProductTypeApi();
102
+
103
+ const body = {
104
+ // GetAllProductTypeRequest (optional)
105
+ getAllProductTypeRequest: ...,
106
+ } satisfies GetAllProductTypeOperationRequest;
107
+
108
+ try {
109
+ const data = await api.getAllProductType(body);
110
+ console.log(data);
111
+ } catch (error) {
112
+ console.error(error);
113
+ }
114
+ }
115
+
116
+ // Run the test
117
+ example().catch(console.error);
118
+ ```
119
+
120
+ ### Parameters
121
+
122
+
123
+ | Name | Type | Description | Notes |
124
+ |------------- | ------------- | ------------- | -------------|
125
+ | **getAllProductTypeRequest** | [GetAllProductTypeRequest](GetAllProductTypeRequest.md) | | [Optional] |
126
+
127
+ ### Return type
128
+
129
+ [**PaginatedProductTypeLiteResourceResponse**](PaginatedProductTypeLiteResourceResponse.md)
130
+
131
+ ### Authorization
132
+
133
+ No authorization required
134
+
135
+ ### HTTP request headers
136
+
137
+ - **Content-Type**: `application/json`
138
+ - **Accept**: `application/json`
139
+
140
+
141
+ ### HTTP response details
142
+ | Status code | Description | Response headers |
143
+ |-------------|-------------|------------------|
144
+ | **200** | Paginated response \\JsonResponse<\\ResourcePaginator<\\ProductTypeLiteResource[]>> | - |
145
+
146
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
147
+
148
+
149
+ ## indexProductType
150
+
151
+ > PaginatedProductTypeListResourceResponse indexProductType(indexProductTypeRequest)
152
+
153
+ Auto-generated: indexProductType
154
+
155
+ ### Example
156
+
157
+ ```ts
158
+ import {
159
+ Configuration,
160
+ ProductTypeApi,
161
+ } from '@digital8/lighting-illusions-ts-sdk';
162
+ import type { IndexProductTypeOperationRequest } from '@digital8/lighting-illusions-ts-sdk';
163
+
164
+ async function example() {
165
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
166
+ const api = new ProductTypeApi();
167
+
168
+ const body = {
169
+ // IndexProductTypeRequest (optional)
170
+ indexProductTypeRequest: ...,
171
+ } satisfies IndexProductTypeOperationRequest;
172
+
173
+ try {
174
+ const data = await api.indexProductType(body);
175
+ console.log(data);
176
+ } catch (error) {
177
+ console.error(error);
178
+ }
179
+ }
180
+
181
+ // Run the test
182
+ example().catch(console.error);
183
+ ```
184
+
185
+ ### Parameters
186
+
187
+
188
+ | Name | Type | Description | Notes |
189
+ |------------- | ------------- | ------------- | -------------|
190
+ | **indexProductTypeRequest** | [IndexProductTypeRequest](IndexProductTypeRequest.md) | | [Optional] |
191
+
192
+ ### Return type
193
+
194
+ [**PaginatedProductTypeListResourceResponse**](PaginatedProductTypeListResourceResponse.md)
195
+
196
+ ### Authorization
197
+
198
+ No authorization required
199
+
200
+ ### HTTP request headers
201
+
202
+ - **Content-Type**: `application/json`
203
+ - **Accept**: `application/json`
204
+
205
+
206
+ ### HTTP response details
207
+ | Status code | Description | Response headers |
208
+ |-------------|-------------|------------------|
209
+ | **200** | Paginated response \\JsonResponse<\\ResourcePaginator<\\ProductTypeListResource[]>> | - |
210
+
211
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
212
+
213
+
214
+ ## linkAttributeProductType
215
+
216
+ > ProductTypeResource linkAttributeProductType(productType, linkAttributeProductTypeRequest)
217
+
218
+ Auto-generated: linkAttributeProductType
219
+
220
+ ### Example
221
+
222
+ ```ts
223
+ import {
224
+ Configuration,
225
+ ProductTypeApi,
226
+ } from '@digital8/lighting-illusions-ts-sdk';
227
+ import type { LinkAttributeProductTypeOperationRequest } from '@digital8/lighting-illusions-ts-sdk';
228
+
229
+ async function example() {
230
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
231
+ const api = new ProductTypeApi();
232
+
233
+ const body = {
234
+ // number | The id of the productType
235
+ productType: 56,
236
+ // LinkAttributeProductTypeRequest (optional)
237
+ linkAttributeProductTypeRequest: ...,
238
+ } satisfies LinkAttributeProductTypeOperationRequest;
239
+
240
+ try {
241
+ const data = await api.linkAttributeProductType(body);
242
+ console.log(data);
243
+ } catch (error) {
244
+ console.error(error);
245
+ }
246
+ }
247
+
248
+ // Run the test
249
+ example().catch(console.error);
250
+ ```
251
+
252
+ ### Parameters
253
+
254
+
255
+ | Name | Type | Description | Notes |
256
+ |------------- | ------------- | ------------- | -------------|
257
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
258
+ | **linkAttributeProductTypeRequest** | [LinkAttributeProductTypeRequest](LinkAttributeProductTypeRequest.md) | | [Optional] |
259
+
260
+ ### Return type
261
+
262
+ [**ProductTypeResource**](ProductTypeResource.md)
263
+
264
+ ### Authorization
265
+
266
+ No authorization required
267
+
268
+ ### HTTP request headers
269
+
270
+ - **Content-Type**: `application/json`
271
+ - **Accept**: `application/json`
272
+
273
+
274
+ ### HTTP response details
275
+ | Status code | Description | Response headers |
276
+ |-------------|-------------|------------------|
277
+ | **200** | Successful resource response | - |
278
+
279
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
280
+
281
+
282
+ ## showProductType
283
+
284
+ > ProductTypeResource showProductType(productType)
285
+
286
+ Auto-generated: showProductType
287
+
288
+ ### Example
289
+
290
+ ```ts
291
+ import {
292
+ Configuration,
293
+ ProductTypeApi,
294
+ } from '@digital8/lighting-illusions-ts-sdk';
295
+ import type { ShowProductTypeRequest } from '@digital8/lighting-illusions-ts-sdk';
296
+
297
+ async function example() {
298
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
299
+ const api = new ProductTypeApi();
300
+
301
+ const body = {
302
+ // number | The id of the productType
303
+ productType: 56,
304
+ } satisfies ShowProductTypeRequest;
305
+
306
+ try {
307
+ const data = await api.showProductType(body);
308
+ console.log(data);
309
+ } catch (error) {
310
+ console.error(error);
311
+ }
312
+ }
313
+
314
+ // Run the test
315
+ example().catch(console.error);
316
+ ```
317
+
318
+ ### Parameters
319
+
320
+
321
+ | Name | Type | Description | Notes |
322
+ |------------- | ------------- | ------------- | -------------|
323
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
324
+
325
+ ### Return type
326
+
327
+ [**ProductTypeResource**](ProductTypeResource.md)
328
+
329
+ ### Authorization
330
+
331
+ No authorization required
332
+
333
+ ### HTTP request headers
334
+
335
+ - **Content-Type**: Not defined
336
+ - **Accept**: `application/json`
337
+
338
+
339
+ ### HTTP response details
340
+ | Status code | Description | Response headers |
341
+ |-------------|-------------|------------------|
342
+ | **200** | Successful resource response | - |
343
+
344
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
345
+
346
+
347
+ ## storeProductType
348
+
349
+ > ProductTypeResource storeProductType(storeProductTypeRequest)
350
+
351
+ Auto-generated: storeProductType
352
+
353
+ ### Example
354
+
355
+ ```ts
356
+ import {
357
+ Configuration,
358
+ ProductTypeApi,
359
+ } from '@digital8/lighting-illusions-ts-sdk';
360
+ import type { StoreProductTypeOperationRequest } from '@digital8/lighting-illusions-ts-sdk';
361
+
362
+ async function example() {
363
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
364
+ const api = new ProductTypeApi();
365
+
366
+ const body = {
367
+ // StoreProductTypeRequest (optional)
368
+ storeProductTypeRequest: ...,
369
+ } satisfies StoreProductTypeOperationRequest;
370
+
371
+ try {
372
+ const data = await api.storeProductType(body);
373
+ console.log(data);
374
+ } catch (error) {
375
+ console.error(error);
376
+ }
377
+ }
378
+
379
+ // Run the test
380
+ example().catch(console.error);
381
+ ```
382
+
383
+ ### Parameters
384
+
385
+
386
+ | Name | Type | Description | Notes |
387
+ |------------- | ------------- | ------------- | -------------|
388
+ | **storeProductTypeRequest** | [StoreProductTypeRequest](StoreProductTypeRequest.md) | | [Optional] |
389
+
390
+ ### Return type
391
+
392
+ [**ProductTypeResource**](ProductTypeResource.md)
393
+
394
+ ### Authorization
395
+
396
+ No authorization required
397
+
398
+ ### HTTP request headers
399
+
400
+ - **Content-Type**: `application/json`
401
+ - **Accept**: `application/json`
402
+
403
+
404
+ ### HTTP response details
405
+ | Status code | Description | Response headers |
406
+ |-------------|-------------|------------------|
407
+ | **200** | Successful resource response | - |
408
+
409
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
410
+
411
+
412
+ ## unlinkAttributeProductType
413
+
414
+ > ProductTypeResource unlinkAttributeProductType(productType, attribute)
415
+
416
+ Auto-generated: unlinkAttributeProductType
417
+
418
+ ### Example
419
+
420
+ ```ts
421
+ import {
422
+ Configuration,
423
+ ProductTypeApi,
424
+ } from '@digital8/lighting-illusions-ts-sdk';
425
+ import type { UnlinkAttributeProductTypeRequest } from '@digital8/lighting-illusions-ts-sdk';
426
+
427
+ async function example() {
428
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
429
+ const api = new ProductTypeApi();
430
+
431
+ const body = {
432
+ // number | The id of the productType
433
+ productType: 56,
434
+ // number | The id of the attribute
435
+ attribute: 56,
436
+ } satisfies UnlinkAttributeProductTypeRequest;
437
+
438
+ try {
439
+ const data = await api.unlinkAttributeProductType(body);
440
+ console.log(data);
441
+ } catch (error) {
442
+ console.error(error);
443
+ }
444
+ }
445
+
446
+ // Run the test
447
+ example().catch(console.error);
448
+ ```
449
+
450
+ ### Parameters
451
+
452
+
453
+ | Name | Type | Description | Notes |
454
+ |------------- | ------------- | ------------- | -------------|
455
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
456
+ | **attribute** | `number` | The id of the attribute | [Defaults to `undefined`] |
457
+
458
+ ### Return type
459
+
460
+ [**ProductTypeResource**](ProductTypeResource.md)
461
+
462
+ ### Authorization
463
+
464
+ No authorization required
465
+
466
+ ### HTTP request headers
467
+
468
+ - **Content-Type**: Not defined
469
+ - **Accept**: `application/json`
470
+
471
+
472
+ ### HTTP response details
473
+ | Status code | Description | Response headers |
474
+ |-------------|-------------|------------------|
475
+ | **200** | Successful resource response | - |
476
+
477
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
478
+
479
+
480
+ ## updateLinkedAttributeProductType
481
+
482
+ > ProductTypeResource updateLinkedAttributeProductType(productType, linkAttributeProductTypeRequest)
483
+
484
+ Auto-generated: updateLinkedAttributeProductType
485
+
486
+ ### Example
487
+
488
+ ```ts
489
+ import {
490
+ Configuration,
491
+ ProductTypeApi,
492
+ } from '@digital8/lighting-illusions-ts-sdk';
493
+ import type { UpdateLinkedAttributeProductTypeRequest } from '@digital8/lighting-illusions-ts-sdk';
494
+
495
+ async function example() {
496
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
497
+ const api = new ProductTypeApi();
498
+
499
+ const body = {
500
+ // number | The id of the productType
501
+ productType: 56,
502
+ // LinkAttributeProductTypeRequest (optional)
503
+ linkAttributeProductTypeRequest: ...,
504
+ } satisfies UpdateLinkedAttributeProductTypeRequest;
505
+
506
+ try {
507
+ const data = await api.updateLinkedAttributeProductType(body);
508
+ console.log(data);
509
+ } catch (error) {
510
+ console.error(error);
511
+ }
512
+ }
513
+
514
+ // Run the test
515
+ example().catch(console.error);
516
+ ```
517
+
518
+ ### Parameters
519
+
520
+
521
+ | Name | Type | Description | Notes |
522
+ |------------- | ------------- | ------------- | -------------|
523
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
524
+ | **linkAttributeProductTypeRequest** | [LinkAttributeProductTypeRequest](LinkAttributeProductTypeRequest.md) | | [Optional] |
525
+
526
+ ### Return type
527
+
528
+ [**ProductTypeResource**](ProductTypeResource.md)
529
+
530
+ ### Authorization
531
+
532
+ No authorization required
533
+
534
+ ### HTTP request headers
535
+
536
+ - **Content-Type**: `application/json`
537
+ - **Accept**: `application/json`
538
+
539
+
540
+ ### HTTP response details
541
+ | Status code | Description | Response headers |
542
+ |-------------|-------------|------------------|
543
+ | **200** | Successful resource response | - |
544
+
545
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
546
+
547
+
548
+ ## updateProductType
549
+
550
+ > ProductTypeResource updateProductType(productType, updateProductTypeRequest)
551
+
552
+ Auto-generated: updateProductType
553
+
554
+ ### Example
555
+
556
+ ```ts
557
+ import {
558
+ Configuration,
559
+ ProductTypeApi,
560
+ } from '@digital8/lighting-illusions-ts-sdk';
561
+ import type { UpdateProductTypeOperationRequest } from '@digital8/lighting-illusions-ts-sdk';
562
+
563
+ async function example() {
564
+ console.log("🚀 Testing @digital8/lighting-illusions-ts-sdk SDK...");
565
+ const api = new ProductTypeApi();
566
+
567
+ const body = {
568
+ // number | The id of the productType
569
+ productType: 56,
570
+ // UpdateProductTypeRequest (optional)
571
+ updateProductTypeRequest: ...,
572
+ } satisfies UpdateProductTypeOperationRequest;
573
+
574
+ try {
575
+ const data = await api.updateProductType(body);
576
+ console.log(data);
577
+ } catch (error) {
578
+ console.error(error);
579
+ }
580
+ }
581
+
582
+ // Run the test
583
+ example().catch(console.error);
584
+ ```
585
+
586
+ ### Parameters
587
+
588
+
589
+ | Name | Type | Description | Notes |
590
+ |------------- | ------------- | ------------- | -------------|
591
+ | **productType** | `number` | The id of the productType | [Defaults to `undefined`] |
592
+ | **updateProductTypeRequest** | [UpdateProductTypeRequest](UpdateProductTypeRequest.md) | | [Optional] |
593
+
594
+ ### Return type
595
+
596
+ [**ProductTypeResource**](ProductTypeResource.md)
597
+
598
+ ### Authorization
599
+
600
+ No authorization required
601
+
602
+ ### HTTP request headers
603
+
604
+ - **Content-Type**: `application/json`
605
+ - **Accept**: `application/json`
606
+
607
+
608
+ ### HTTP response details
609
+ | Status code | Description | Response headers |
610
+ |-------------|-------------|------------------|
611
+ | **200** | Successful resource response | - |
612
+
613
+ [[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)
614
+