@lcdp/api-react-rest-client 2.9.0 → 2.9.1-develop.13139572022

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 (1938) hide show
  1. package/auth/src/apis/AuthApi.d.ts +12 -10
  2. package/auth/src/apis/AuthApi.js +63 -70
  3. package/auth/src/apis/ManageApiKeyApi.d.ts +12 -12
  4. package/auth/src/apis/ManageApiKeyApi.js +84 -85
  5. package/auth/src/apis/SearchApiKeyApi.d.ts +20 -20
  6. package/auth/src/apis/SearchApiKeyApi.js +86 -91
  7. package/auth/src/apis/index.js +2 -0
  8. package/auth/src/index.d.ts +2 -2
  9. package/auth/src/index.js +4 -2
  10. package/auth/src/models/AnonymousUser.d.ts +11 -2
  11. package/auth/src/models/AnonymousUser.js +27 -21
  12. package/auth/src/models/AnyAuthenticationCredential.d.ts +10 -9
  13. package/auth/src/models/AnyAuthenticationCredential.js +13 -27
  14. package/auth/src/models/AnyUser.d.ts +3 -2
  15. package/auth/src/models/AnyUser.js +5 -19
  16. package/auth/src/models/ApiKey.d.ts +14 -4
  17. package/auth/src/models/ApiKey.js +27 -22
  18. package/auth/src/models/ApiKeyCreationParameters.d.ts +13 -3
  19. package/auth/src/models/ApiKeyCreationParameters.js +21 -11
  20. package/auth/src/models/ApiKeyCredential.d.ts +11 -2
  21. package/auth/src/models/ApiKeyCredential.js +23 -21
  22. package/auth/src/models/AuthenticationCredential.d.ts +4 -0
  23. package/auth/src/models/AuthenticationCredential.js +14 -8
  24. package/auth/src/models/DisposableCredential.d.ts +11 -2
  25. package/auth/src/models/DisposableCredential.js +23 -21
  26. package/auth/src/models/DisposableTokenCreationParameters.d.ts +4 -0
  27. package/auth/src/models/DisposableTokenCreationParameters.js +13 -10
  28. package/auth/src/models/HttpLink.d.ts +4 -0
  29. package/auth/src/models/HttpLink.js +14 -8
  30. package/auth/src/models/IdentifiedUser.d.ts +11 -2
  31. package/auth/src/models/IdentifiedUser.js +23 -21
  32. package/auth/src/models/LoginCredential.d.ts +11 -2
  33. package/auth/src/models/LoginCredential.js +27 -21
  34. package/auth/src/models/PaginatedApiKeys.d.ts +13 -3
  35. package/auth/src/models/PaginatedApiKeys.js +24 -21
  36. package/auth/src/models/PaginatedObject.d.ts +5 -1
  37. package/auth/src/models/PaginatedObject.js +15 -9
  38. package/auth/src/models/PagingMetadata.d.ts +4 -0
  39. package/auth/src/models/PagingMetadata.js +23 -11
  40. package/auth/src/models/RefreshCredential.d.ts +11 -2
  41. package/auth/src/models/RefreshCredential.js +23 -21
  42. package/auth/src/models/RestError.d.ts +66 -58
  43. package/auth/src/models/RestError.js +73 -67
  44. package/auth/src/models/RevealedApiKey.d.ts +54 -2
  45. package/auth/src/models/RevealedApiKey.js +34 -22
  46. package/auth/src/models/Session.d.ts +4 -0
  47. package/auth/src/models/Session.js +20 -10
  48. package/auth/src/models/User.d.ts +4 -0
  49. package/auth/src/models/User.js +14 -8
  50. package/auth/src/models/UserLink.d.ts +12 -3
  51. package/auth/src/models/UserLink.js +25 -22
  52. package/auth/src/models/UserLinkAllOfCompany.d.ts +4 -0
  53. package/auth/src/models/UserLinkAllOfCompany.js +13 -10
  54. package/auth/src/models/index.d.ts +0 -9
  55. package/auth/src/models/index.js +2 -9
  56. package/auth/src/runtime.d.ts +72 -31
  57. package/auth/src/runtime.js +291 -164
  58. package/banking-operation/src/apis/ManageLevyApi.d.ts +8 -8
  59. package/banking-operation/src/apis/ManageLevyApi.js +56 -59
  60. package/banking-operation/src/apis/ManageOrderPaymentApi.d.ts +8 -8
  61. package/banking-operation/src/apis/ManageOrderPaymentApi.js +62 -66
  62. package/banking-operation/src/apis/SearchLevyApi.d.ts +29 -27
  63. package/banking-operation/src/apis/SearchLevyApi.js +96 -99
  64. package/banking-operation/src/apis/SearchOrderPaymentApi.d.ts +15 -13
  65. package/banking-operation/src/apis/SearchOrderPaymentApi.js +44 -45
  66. package/banking-operation/src/apis/index.js +2 -0
  67. package/banking-operation/src/index.d.ts +2 -2
  68. package/banking-operation/src/index.js +4 -2
  69. package/banking-operation/src/models/HttpLink.d.ts +4 -0
  70. package/banking-operation/src/models/HttpLink.js +14 -8
  71. package/banking-operation/src/models/Levy.d.ts +7 -3
  72. package/banking-operation/src/models/Levy.js +44 -27
  73. package/banking-operation/src/models/LevyCreationParameters.d.ts +5 -1
  74. package/banking-operation/src/models/LevyCreationParameters.js +29 -16
  75. package/banking-operation/src/models/LevyPayment.d.ts +5 -1
  76. package/banking-operation/src/models/LevyPayment.js +15 -12
  77. package/banking-operation/src/models/LevyPaymentStatus.d.ts +7 -6
  78. package/banking-operation/src/models/LevyPaymentStatus.js +17 -8
  79. package/banking-operation/src/models/LevyStatus.d.ts +6 -5
  80. package/banking-operation/src/models/LevyStatus.js +16 -7
  81. package/banking-operation/src/models/LevyUpdateParameters.d.ts +5 -1
  82. package/banking-operation/src/models/LevyUpdateParameters.js +15 -12
  83. package/banking-operation/src/models/OrderLink.d.ts +11 -2
  84. package/banking-operation/src/models/OrderLink.js +21 -22
  85. package/banking-operation/src/models/OrderPayment.d.ts +8 -4
  86. package/banking-operation/src/models/OrderPayment.js +23 -20
  87. package/banking-operation/src/models/OrderPaymentDeposit.d.ts +5 -1
  88. package/banking-operation/src/models/OrderPaymentDeposit.js +13 -10
  89. package/banking-operation/src/models/OrderPaymentWallets.d.ts +5 -1
  90. package/banking-operation/src/models/OrderPaymentWallets.js +15 -12
  91. package/banking-operation/src/models/OrderPaymentWithdraw.d.ts +5 -1
  92. package/banking-operation/src/models/OrderPaymentWithdraw.js +19 -16
  93. package/banking-operation/src/models/PaginatedLevies.d.ts +13 -3
  94. package/banking-operation/src/models/PaginatedLevies.js +24 -21
  95. package/banking-operation/src/models/PaginatedObject.d.ts +5 -1
  96. package/banking-operation/src/models/PaginatedObject.js +15 -9
  97. package/banking-operation/src/models/PaginatedOrderPayments.d.ts +13 -3
  98. package/banking-operation/src/models/PaginatedOrderPayments.js +24 -21
  99. package/banking-operation/src/models/PagingMetadata.d.ts +4 -0
  100. package/banking-operation/src/models/PagingMetadata.js +23 -11
  101. package/banking-operation/src/models/Transaction.d.ts +15 -11
  102. package/banking-operation/src/models/Transaction.js +30 -29
  103. package/banking-operation/src/models/TransactionMangopayTarget.d.ts +11 -2
  104. package/banking-operation/src/models/TransactionMangopayTarget.js +21 -22
  105. package/banking-operation/src/models/UserLink.d.ts +12 -3
  106. package/banking-operation/src/models/UserLink.js +29 -22
  107. package/banking-operation/src/models/UserLinkAllOfCompany.d.ts +4 -0
  108. package/banking-operation/src/models/UserLinkAllOfCompany.js +13 -10
  109. package/banking-operation/src/models/Wallet.d.ts +5 -1
  110. package/banking-operation/src/models/Wallet.js +13 -10
  111. package/banking-operation/src/models/WalletMangopayTarget.d.ts +11 -2
  112. package/banking-operation/src/models/WalletMangopayTarget.js +21 -22
  113. package/banking-operation/src/models/index.d.ts +0 -6
  114. package/banking-operation/src/models/index.js +2 -6
  115. package/banking-operation/src/runtime.d.ts +72 -31
  116. package/banking-operation/src/runtime.js +291 -164
  117. package/catalog/src/apis/ManageProductInsightApi.d.ts +10 -10
  118. package/catalog/src/apis/ManageProductInsightApi.js +83 -89
  119. package/catalog/src/apis/SearchProductInsightApi.d.ts +17 -17
  120. package/catalog/src/apis/SearchProductInsightApi.js +72 -77
  121. package/catalog/src/apis/index.js +2 -0
  122. package/catalog/src/index.d.ts +2 -2
  123. package/catalog/src/index.js +4 -2
  124. package/catalog/src/models/Barcodes.d.ts +5 -0
  125. package/catalog/src/models/Barcodes.js +19 -16
  126. package/catalog/src/models/HttpLink.d.ts +4 -0
  127. package/catalog/src/models/HttpLink.js +14 -8
  128. package/catalog/src/models/LaboratoryLink.d.ts +11 -2
  129. package/catalog/src/models/LaboratoryLink.js +23 -22
  130. package/catalog/src/models/PaginatedObject.d.ts +5 -1
  131. package/catalog/src/models/PaginatedObject.js +15 -9
  132. package/catalog/src/models/PaginatedProductInsights.d.ts +13 -3
  133. package/catalog/src/models/PaginatedProductInsights.js +24 -21
  134. package/catalog/src/models/PagingMetadata.d.ts +4 -0
  135. package/catalog/src/models/PagingMetadata.js +23 -11
  136. package/catalog/src/models/ProductInsight.d.ts +21 -10
  137. package/catalog/src/models/ProductInsight.js +45 -36
  138. package/catalog/src/models/ProductInsightCreateOrUpdateParameters.d.ts +8 -4
  139. package/catalog/src/models/ProductInsightCreateOrUpdateParameters.js +35 -30
  140. package/catalog/src/models/ProductInsightJournal.d.ts +4 -0
  141. package/catalog/src/models/ProductInsightJournal.js +17 -12
  142. package/catalog/src/models/ProductSecondaryTypeLink.d.ts +11 -2
  143. package/catalog/src/models/ProductSecondaryTypeLink.js +23 -22
  144. package/catalog/src/models/ProductStorageType.d.ts +8 -7
  145. package/catalog/src/models/ProductStorageType.js +18 -9
  146. package/catalog/src/models/ProductTypeLink.d.ts +11 -2
  147. package/catalog/src/models/ProductTypeLink.js +23 -22
  148. package/catalog/src/models/RestError.d.ts +66 -58
  149. package/catalog/src/models/RestError.js +73 -67
  150. package/catalog/src/models/VatLink.d.ts +11 -2
  151. package/catalog/src/models/VatLink.js +25 -22
  152. package/catalog/src/models/index.d.ts +0 -5
  153. package/catalog/src/models/index.js +2 -5
  154. package/catalog/src/runtime.d.ts +72 -31
  155. package/catalog/src/runtime.js +291 -164
  156. package/challenge/src/apis/ManageChallengesApi.d.ts +6 -6
  157. package/challenge/src/apis/ManageChallengesApi.js +30 -32
  158. package/challenge/src/apis/index.js +2 -0
  159. package/challenge/src/index.d.ts +2 -2
  160. package/challenge/src/index.js +4 -2
  161. package/challenge/src/models/Challenge.d.ts +5 -1
  162. package/challenge/src/models/Challenge.js +15 -12
  163. package/challenge/src/models/ChallengeAction.d.ts +11 -7
  164. package/challenge/src/models/ChallengeAction.js +19 -18
  165. package/challenge/src/models/index.js +2 -0
  166. package/challenge/src/runtime.d.ts +72 -31
  167. package/challenge/src/runtime.js +291 -164
  168. package/configuration/src/apis/ManageVariableApi.d.ts +10 -10
  169. package/configuration/src/apis/ManageVariableApi.js +81 -87
  170. package/configuration/src/apis/ManageVatApi.d.ts +8 -8
  171. package/configuration/src/apis/ManageVatApi.js +57 -61
  172. package/configuration/src/apis/SearchVariableApi.d.ts +8 -8
  173. package/configuration/src/apis/SearchVariableApi.js +21 -21
  174. package/configuration/src/apis/SearchVatApi.d.ts +8 -8
  175. package/configuration/src/apis/SearchVatApi.js +53 -57
  176. package/configuration/src/apis/index.js +2 -0
  177. package/configuration/src/index.d.ts +2 -2
  178. package/configuration/src/index.js +4 -2
  179. package/configuration/src/models/RestError.d.ts +66 -58
  180. package/configuration/src/models/RestError.js +73 -67
  181. package/configuration/src/models/Variable.d.ts +4 -0
  182. package/configuration/src/models/Variable.js +17 -9
  183. package/configuration/src/models/Vat.d.ts +4 -0
  184. package/configuration/src/models/Vat.js +20 -10
  185. package/configuration/src/models/index.js +2 -0
  186. package/configuration/src/runtime.d.ts +72 -31
  187. package/configuration/src/runtime.js +291 -164
  188. package/content/src/apis/ManageContentApi.d.ts +6 -6
  189. package/content/src/apis/ManageContentApi.js +33 -35
  190. package/content/src/apis/SearchContentApi.d.ts +6 -6
  191. package/content/src/apis/SearchContentApi.js +14 -14
  192. package/content/src/apis/index.js +2 -0
  193. package/content/src/index.d.ts +2 -2
  194. package/content/src/index.js +4 -2
  195. package/content/src/models/Content.d.ts +4 -0
  196. package/content/src/models/Content.js +21 -18
  197. package/content/src/models/RestError.d.ts +66 -58
  198. package/content/src/models/RestError.js +73 -67
  199. package/content/src/models/index.js +2 -0
  200. package/content/src/runtime.d.ts +72 -31
  201. package/content/src/runtime.js +291 -164
  202. package/factory/src/apis/ManageAssemblyApi.d.ts +12 -12
  203. package/factory/src/apis/ManageAssemblyApi.js +61 -104
  204. package/factory/src/apis/SearchAssemblyApi.d.ts +33 -28
  205. package/factory/src/apis/SearchAssemblyApi.js +158 -151
  206. package/factory/src/apis/index.d.ts +0 -3
  207. package/factory/src/apis/index.js +2 -3
  208. package/factory/src/index.d.ts +2 -2
  209. package/factory/src/index.js +4 -2
  210. package/factory/src/models/AnyDistributionMode.d.ts +29 -0
  211. package/factory/src/models/AnyDistributionMode.js +55 -0
  212. package/factory/src/models/AnyFactory.d.ts +29 -0
  213. package/factory/src/models/AnyFactory.js +55 -0
  214. package/factory/src/models/Assembly.d.ts +30 -20
  215. package/factory/src/models/Assembly.js +40 -35
  216. package/factory/src/models/AssemblyCreationParameters.d.ts +12 -7
  217. package/factory/src/models/AssemblyCreationParameters.js +21 -12
  218. package/factory/src/models/AssemblyJournal.d.ts +37 -0
  219. package/factory/src/models/AssemblyJournal.js +47 -0
  220. package/factory/src/models/AssemblyOutputInner.d.ts +51 -0
  221. package/factory/src/models/AssemblyOutputInner.js +62 -0
  222. package/factory/src/models/AssemblyStatus.d.ts +12 -10
  223. package/factory/src/models/AssemblyStatus.js +22 -12
  224. package/factory/src/models/DistributionMode.d.ts +46 -0
  225. package/factory/src/models/DistributionMode.js +55 -0
  226. package/factory/src/models/DistributionRange.d.ts +43 -0
  227. package/factory/src/models/DistributionRange.js +55 -0
  228. package/factory/src/models/Factory.d.ts +31 -0
  229. package/factory/src/models/Factory.js +47 -0
  230. package/factory/src/models/HttpLink.d.ts +4 -0
  231. package/factory/src/models/HttpLink.js +14 -8
  232. package/factory/src/models/OfferPlanificationFactory.d.ts +60 -0
  233. package/factory/src/models/OfferPlanificationFactory.js +60 -0
  234. package/factory/src/models/OfferPlanificationFactoryAllOfRecords.d.ts +58 -0
  235. package/factory/src/models/OfferPlanificationFactoryAllOfRecords.js +56 -0
  236. package/factory/src/models/PaginatedAssemblies.d.ts +13 -3
  237. package/factory/src/models/PaginatedAssemblies.js +22 -22
  238. package/factory/src/models/PaginatedObject.d.ts +5 -1
  239. package/factory/src/models/PaginatedObject.js +15 -9
  240. package/factory/src/models/PagingMetadata.d.ts +4 -0
  241. package/factory/src/models/PagingMetadata.js +23 -11
  242. package/factory/src/models/Product.d.ts +80 -0
  243. package/factory/src/models/Product.js +62 -0
  244. package/factory/src/models/ProductStatus.d.ts +26 -0
  245. package/factory/src/models/ProductStatus.js +49 -0
  246. package/factory/src/models/ProductUpsertFactory.d.ts +38 -0
  247. package/factory/src/models/ProductUpsertFactory.js +50 -0
  248. package/factory/src/models/ProductUpsertFactoryAllOfRecords.d.ts +32 -0
  249. package/factory/src/models/ProductUpsertFactoryAllOfRecords.js +46 -0
  250. package/factory/src/models/QuotationDistributionMode.d.ts +52 -0
  251. package/factory/src/models/QuotationDistributionMode.js +59 -0
  252. package/factory/src/models/RangeDistributionMode.d.ts +53 -0
  253. package/factory/src/models/RangeDistributionMode.js +60 -0
  254. package/factory/src/models/SaleOfferStatus.d.ts +29 -0
  255. package/factory/src/models/SaleOfferStatus.js +52 -0
  256. package/factory/src/models/SaleOfferUpsertFactory.d.ts +50 -0
  257. package/factory/src/models/SaleOfferUpsertFactory.js +56 -0
  258. package/factory/src/models/SaleOfferUpsertFactoryAllOfRecords.d.ts +59 -0
  259. package/factory/src/models/SaleOfferUpsertFactoryAllOfRecords.js +57 -0
  260. package/factory/src/models/StatusEnum.d.ts +30 -0
  261. package/factory/src/models/StatusEnum.js +53 -0
  262. package/factory/src/models/Stock.d.ts +43 -0
  263. package/factory/src/models/Stock.js +50 -0
  264. package/factory/src/models/UnitaryDistributionMode.d.ts +58 -0
  265. package/factory/src/models/UnitaryDistributionMode.js +63 -0
  266. package/factory/src/models/UserLink.d.ts +11 -2
  267. package/factory/src/models/UserLink.js +21 -22
  268. package/factory/src/models/index.d.ts +21 -8
  269. package/factory/src/models/index.js +23 -8
  270. package/factory/src/runtime.d.ts +72 -31
  271. package/factory/src/runtime.js +291 -164
  272. package/favorite/src/apis/ManageFavoriteProductApi.d.ts +21 -21
  273. package/favorite/src/apis/ManageFavoriteProductApi.js +124 -133
  274. package/favorite/src/apis/index.js +2 -0
  275. package/favorite/src/index.d.ts +2 -2
  276. package/favorite/src/index.js +4 -2
  277. package/favorite/src/models/Barcodes.d.ts +5 -0
  278. package/favorite/src/models/Barcodes.js +19 -16
  279. package/favorite/src/models/FavoriteProduct.d.ts +6 -2
  280. package/favorite/src/models/FavoriteProduct.js +27 -15
  281. package/favorite/src/models/FavoriteProductCreationParameters.d.ts +4 -0
  282. package/favorite/src/models/FavoriteProductCreationParameters.js +17 -9
  283. package/favorite/src/models/HttpLink.d.ts +4 -0
  284. package/favorite/src/models/HttpLink.js +14 -8
  285. package/favorite/src/models/PaginatedFavoriteProducts.d.ts +13 -3
  286. package/favorite/src/models/PaginatedFavoriteProducts.js +24 -21
  287. package/favorite/src/models/PaginatedObject.d.ts +5 -1
  288. package/favorite/src/models/PaginatedObject.js +15 -9
  289. package/favorite/src/models/PagingMetadata.d.ts +4 -0
  290. package/favorite/src/models/PagingMetadata.js +23 -11
  291. package/favorite/src/models/ProductLink.d.ts +13 -4
  292. package/favorite/src/models/ProductLink.js +30 -23
  293. package/favorite/src/models/ProductStatus.d.ts +8 -7
  294. package/favorite/src/models/ProductStatus.js +18 -9
  295. package/favorite/src/models/RestError.d.ts +66 -58
  296. package/favorite/src/models/RestError.js +73 -67
  297. package/favorite/src/models/UserLink.d.ts +11 -2
  298. package/favorite/src/models/UserLink.js +23 -21
  299. package/favorite/src/models/index.d.ts +0 -3
  300. package/favorite/src/models/index.js +2 -3
  301. package/favorite/src/runtime.d.ts +72 -31
  302. package/favorite/src/runtime.js +291 -164
  303. package/geo/src/apis/SearchCountryApi.d.ts +6 -6
  304. package/geo/src/apis/SearchCountryApi.js +30 -31
  305. package/geo/src/apis/index.js +2 -0
  306. package/geo/src/index.d.ts +2 -2
  307. package/geo/src/index.js +4 -2
  308. package/geo/src/models/Country.d.ts +4 -0
  309. package/geo/src/models/Country.js +17 -9
  310. package/geo/src/models/index.js +2 -0
  311. package/geo/src/runtime.d.ts +72 -31
  312. package/geo/src/runtime.js +291 -164
  313. package/inventory/src/apis/ManageInventoryApi.d.ts +16 -28
  314. package/inventory/src/apis/ManageInventoryApi.js +126 -210
  315. package/inventory/src/apis/SearchInventoryApi.d.ts +130 -123
  316. package/inventory/src/apis/SearchInventoryApi.js +469 -479
  317. package/inventory/src/apis/index.js +2 -0
  318. package/inventory/src/index.d.ts +2 -2
  319. package/inventory/src/index.js +4 -2
  320. package/inventory/src/models/ActiveProduct.d.ts +15 -4
  321. package/inventory/src/models/ActiveProduct.js +22 -16
  322. package/inventory/src/models/ActiveProductUpdateParameters.d.ts +8 -3
  323. package/inventory/src/models/ActiveProductUpdateParameters.js +14 -10
  324. package/inventory/src/models/Barcodes.d.ts +5 -0
  325. package/inventory/src/models/Barcodes.js +19 -16
  326. package/inventory/src/models/HttpLink.d.ts +4 -0
  327. package/inventory/src/models/HttpLink.js +14 -8
  328. package/inventory/src/models/Inventory.d.ts +63 -0
  329. package/inventory/src/models/Inventory.js +57 -0
  330. package/inventory/src/models/InventoryJournal.d.ts +31 -0
  331. package/inventory/src/models/InventoryJournal.js +45 -0
  332. package/inventory/src/models/MisalignedProduct.d.ts +11 -1
  333. package/inventory/src/models/MisalignedProduct.js +21 -16
  334. package/inventory/src/models/OverstockProduct.d.ts +15 -2
  335. package/inventory/src/models/OverstockProduct.js +38 -16
  336. package/inventory/src/models/OverstockProductUpdateParameters.d.ts +4 -0
  337. package/inventory/src/models/OverstockProductUpdateParameters.js +13 -10
  338. package/inventory/src/models/PaginatedActiveProducts.d.ts +13 -3
  339. package/inventory/src/models/PaginatedActiveProducts.js +24 -21
  340. package/inventory/src/models/PaginatedInventories.d.ts +39 -0
  341. package/inventory/src/models/PaginatedInventories.js +53 -0
  342. package/inventory/src/models/PaginatedMisalignedProducts.d.ts +13 -3
  343. package/inventory/src/models/PaginatedMisalignedProducts.js +24 -21
  344. package/inventory/src/models/PaginatedObject.d.ts +5 -1
  345. package/inventory/src/models/PaginatedObject.js +15 -9
  346. package/inventory/src/models/PaginatedOverstockProducts.d.ts +13 -3
  347. package/inventory/src/models/PaginatedOverstockProducts.js +24 -21
  348. package/inventory/src/models/PagingMetadata.d.ts +4 -0
  349. package/inventory/src/models/PagingMetadata.js +23 -11
  350. package/inventory/src/models/ProductLink.d.ts +12 -3
  351. package/inventory/src/models/ProductLink.js +25 -22
  352. package/inventory/src/models/RestError.d.ts +66 -58
  353. package/inventory/src/models/RestError.js +73 -67
  354. package/inventory/src/models/Statistics.d.ts +7 -3
  355. package/inventory/src/models/Statistics.js +18 -15
  356. package/inventory/src/models/StatisticsActiveProducts.d.ts +4 -0
  357. package/inventory/src/models/StatisticsActiveProducts.js +15 -12
  358. package/inventory/src/models/StatisticsMisalignedProducts.d.ts +4 -0
  359. package/inventory/src/models/StatisticsMisalignedProducts.js +13 -10
  360. package/inventory/src/models/StatisticsOverstockProducts.d.ts +4 -0
  361. package/inventory/src/models/StatisticsOverstockProducts.js +13 -10
  362. package/inventory/src/models/SynchronizationMode.d.ts +25 -0
  363. package/inventory/src/models/SynchronizationMode.js +48 -0
  364. package/inventory/src/models/index.d.ts +4 -7
  365. package/inventory/src/models/index.js +6 -7
  366. package/inventory/src/runtime.d.ts +72 -31
  367. package/inventory/src/runtime.js +291 -164
  368. package/invoice/src/apis/ManageInvoiceApi.d.ts +8 -8
  369. package/invoice/src/apis/ManageInvoiceApi.js +64 -68
  370. package/invoice/src/apis/ManageInvoiceLineApi.d.ts +8 -8
  371. package/invoice/src/apis/ManageInvoiceLineApi.js +54 -58
  372. package/invoice/src/apis/ManageInvoicesSummaryApi.d.ts +6 -6
  373. package/invoice/src/apis/ManageInvoicesSummaryApi.js +28 -30
  374. package/invoice/src/apis/SearchInvoiceApi.d.ts +23 -23
  375. package/invoice/src/apis/SearchInvoiceApi.js +91 -92
  376. package/invoice/src/apis/SearchInvoiceLineApi.d.ts +15 -15
  377. package/invoice/src/apis/SearchInvoiceLineApi.js +50 -53
  378. package/invoice/src/apis/SearchOrderTallyApi.d.ts +21 -21
  379. package/invoice/src/apis/SearchOrderTallyApi.js +86 -91
  380. package/invoice/src/apis/index.js +2 -0
  381. package/invoice/src/index.d.ts +2 -2
  382. package/invoice/src/index.js +4 -2
  383. package/invoice/src/models/HttpLink.d.ts +4 -0
  384. package/invoice/src/models/HttpLink.js +14 -8
  385. package/invoice/src/models/Invoice.d.ts +7 -3
  386. package/invoice/src/models/Invoice.js +36 -18
  387. package/invoice/src/models/InvoiceCreationParameters.d.ts +17 -2
  388. package/invoice/src/models/InvoiceCreationParameters.js +26 -3
  389. package/invoice/src/models/InvoiceSummaryCreationParameters.d.ts +4 -0
  390. package/invoice/src/models/InvoiceSummaryCreationParameters.js +22 -12
  391. package/invoice/src/models/InvoiceType.d.ts +17 -16
  392. package/invoice/src/models/InvoiceType.js +27 -18
  393. package/invoice/src/models/InvoiceUpdateParameters.d.ts +4 -0
  394. package/invoice/src/models/InvoiceUpdateParameters.js +15 -12
  395. package/invoice/src/models/OrderLink.d.ts +11 -2
  396. package/invoice/src/models/OrderLink.js +23 -22
  397. package/invoice/src/models/OrderTally.d.ts +7 -3
  398. package/invoice/src/models/OrderTally.js +33 -20
  399. package/invoice/src/models/PaginatedInvoices.d.ts +13 -3
  400. package/invoice/src/models/PaginatedInvoices.js +24 -21
  401. package/invoice/src/models/PaginatedObject.d.ts +5 -1
  402. package/invoice/src/models/PaginatedObject.js +15 -9
  403. package/invoice/src/models/PaginatedOrderTallies.d.ts +13 -3
  404. package/invoice/src/models/PaginatedOrderTallies.js +24 -21
  405. package/invoice/src/models/PaginatedPlannedInvoiceLine.d.ts +13 -3
  406. package/invoice/src/models/PaginatedPlannedInvoiceLine.js +24 -21
  407. package/invoice/src/models/PagingMetadata.d.ts +4 -0
  408. package/invoice/src/models/PagingMetadata.js +23 -11
  409. package/invoice/src/models/PlannedInvoiceLine.d.ts +7 -3
  410. package/invoice/src/models/PlannedInvoiceLine.js +28 -14
  411. package/invoice/src/models/PlannedInvoiceLineCreationParameters.d.ts +4 -0
  412. package/invoice/src/models/PlannedInvoiceLineCreationParameters.js +20 -10
  413. package/invoice/src/models/RestError.d.ts +66 -58
  414. package/invoice/src/models/RestError.js +73 -67
  415. package/invoice/src/models/UserLink.d.ts +12 -3
  416. package/invoice/src/models/UserLink.js +25 -22
  417. package/invoice/src/models/UserLinkAllOfCompany.d.ts +4 -0
  418. package/invoice/src/models/UserLinkAllOfCompany.js +13 -10
  419. package/invoice/src/models/index.d.ts +0 -5
  420. package/invoice/src/models/index.js +2 -5
  421. package/invoice/src/runtime.d.ts +72 -31
  422. package/invoice/src/runtime.js +291 -164
  423. package/laboratory/src/apis/ManageLaboratoryApi.d.ts +8 -6
  424. package/laboratory/src/apis/ManageLaboratoryApi.js +32 -32
  425. package/laboratory/src/apis/SearchLaboratoryApi.d.ts +17 -15
  426. package/laboratory/src/apis/SearchLaboratoryApi.js +74 -77
  427. package/laboratory/src/apis/index.js +2 -0
  428. package/laboratory/src/index.d.ts +2 -2
  429. package/laboratory/src/index.js +4 -2
  430. package/laboratory/src/models/Laboratory.d.ts +4 -0
  431. package/laboratory/src/models/Laboratory.js +15 -12
  432. package/laboratory/src/models/LaboratoryCreationParameters.d.ts +4 -0
  433. package/laboratory/src/models/LaboratoryCreationParameters.js +14 -8
  434. package/laboratory/src/models/PaginatedLaboratories.d.ts +13 -3
  435. package/laboratory/src/models/PaginatedLaboratories.js +24 -21
  436. package/laboratory/src/models/PaginatedObject.d.ts +5 -1
  437. package/laboratory/src/models/PaginatedObject.js +15 -9
  438. package/laboratory/src/models/PagingMetadata.d.ts +4 -0
  439. package/laboratory/src/models/PagingMetadata.js +23 -11
  440. package/laboratory/src/models/index.d.ts +0 -1
  441. package/laboratory/src/models/index.js +2 -1
  442. package/laboratory/src/runtime.d.ts +72 -31
  443. package/laboratory/src/runtime.js +291 -164
  444. package/laboratory-store/src/apis/ManageLaboratoryStoreApi.d.ts +8 -8
  445. package/laboratory-store/src/apis/ManageLaboratoryStoreApi.js +56 -59
  446. package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.d.ts +14 -14
  447. package/laboratory-store/src/apis/ManageLaboratoryStoreImageApi.js +118 -134
  448. package/laboratory-store/src/apis/SearchLaboratoryStoreApi.d.ts +25 -25
  449. package/laboratory-store/src/apis/SearchLaboratoryStoreApi.js +83 -90
  450. package/laboratory-store/src/apis/index.js +2 -0
  451. package/laboratory-store/src/index.d.ts +2 -2
  452. package/laboratory-store/src/index.js +4 -2
  453. package/laboratory-store/src/models/DisplayType.d.ts +6 -5
  454. package/laboratory-store/src/models/DisplayType.js +16 -7
  455. package/laboratory-store/src/models/HttpLink.d.ts +4 -0
  456. package/laboratory-store/src/models/HttpLink.js +14 -8
  457. package/laboratory-store/src/models/Image.d.ts +5 -1
  458. package/laboratory-store/src/models/Image.js +15 -12
  459. package/laboratory-store/src/models/ImageVersions.d.ts +4 -0
  460. package/laboratory-store/src/models/ImageVersions.js +24 -19
  461. package/laboratory-store/src/models/LaboratoryStore.d.ts +7 -3
  462. package/laboratory-store/src/models/LaboratoryStore.js +38 -35
  463. package/laboratory-store/src/models/LaboratoryStoreCreationParameters.d.ts +67 -2
  464. package/laboratory-store/src/models/LaboratoryStoreCreationParameters.js +44 -3
  465. package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.d.ts +6 -2
  466. package/laboratory-store/src/models/LaboratoryStoreUpdateParameters.js +31 -28
  467. package/laboratory-store/src/models/LaboratoryType.d.ts +9 -8
  468. package/laboratory-store/src/models/LaboratoryType.js +19 -10
  469. package/laboratory-store/src/models/OwnerLink.d.ts +11 -2
  470. package/laboratory-store/src/models/OwnerLink.js +23 -22
  471. package/laboratory-store/src/models/PaginatedLaboratoryStores.d.ts +13 -3
  472. package/laboratory-store/src/models/PaginatedLaboratoryStores.js +22 -22
  473. package/laboratory-store/src/models/PaginatedObject.d.ts +5 -1
  474. package/laboratory-store/src/models/PaginatedObject.js +15 -9
  475. package/laboratory-store/src/models/PagingMetadata.d.ts +4 -0
  476. package/laboratory-store/src/models/PagingMetadata.js +23 -11
  477. package/laboratory-store/src/models/RestError.d.ts +66 -58
  478. package/laboratory-store/src/models/RestError.js +73 -67
  479. package/laboratory-store/src/models/index.d.ts +0 -3
  480. package/laboratory-store/src/models/index.js +2 -3
  481. package/laboratory-store/src/runtime.d.ts +72 -31
  482. package/laboratory-store/src/runtime.js +291 -164
  483. package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.d.ts +15 -13
  484. package/laboratory-store-log/src/apis/SearchLaboratoryStoreLogApi.js +52 -53
  485. package/laboratory-store-log/src/apis/index.js +2 -0
  486. package/laboratory-store-log/src/index.d.ts +2 -2
  487. package/laboratory-store-log/src/index.js +4 -2
  488. package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.d.ts +2 -1
  489. package/laboratory-store-log/src/models/AnyLaboratoryStoreLog.js +4 -18
  490. package/laboratory-store-log/src/models/HttpLink.d.ts +4 -0
  491. package/laboratory-store-log/src/models/HttpLink.js +14 -8
  492. package/laboratory-store-log/src/models/LaboratoryStoreLink.d.ts +11 -2
  493. package/laboratory-store-log/src/models/LaboratoryStoreLink.js +23 -21
  494. package/laboratory-store-log/src/models/LaboratoryStoreLog.d.ts +24 -3
  495. package/laboratory-store-log/src/models/LaboratoryStoreLog.js +35 -21
  496. package/laboratory-store-log/src/models/Log.d.ts +4 -0
  497. package/laboratory-store-log/src/models/Log.js +21 -11
  498. package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.d.ts +13 -3
  499. package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogs.js +24 -21
  500. package/laboratory-store-log/src/models/PaginatedObject.d.ts +5 -1
  501. package/laboratory-store-log/src/models/PaginatedObject.js +15 -9
  502. package/laboratory-store-log/src/models/PagingMetadata.d.ts +4 -0
  503. package/laboratory-store-log/src/models/PagingMetadata.js +23 -11
  504. package/laboratory-store-log/src/models/index.d.ts +0 -3
  505. package/laboratory-store-log/src/models/index.js +2 -3
  506. package/laboratory-store-log/src/runtime.d.ts +72 -31
  507. package/laboratory-store-log/src/runtime.js +291 -164
  508. package/lexicon/src/apis/ManageLexiconApi.d.ts +8 -8
  509. package/lexicon/src/apis/ManageLexiconApi.js +54 -58
  510. package/lexicon/src/apis/SearchLexiconApi.d.ts +12 -12
  511. package/lexicon/src/apis/SearchLexiconApi.js +109 -114
  512. package/lexicon/src/apis/index.js +2 -0
  513. package/lexicon/src/index.d.ts +2 -2
  514. package/lexicon/src/index.js +4 -2
  515. package/lexicon/src/models/PaginatedObject.d.ts +5 -1
  516. package/lexicon/src/models/PaginatedObject.js +15 -9
  517. package/lexicon/src/models/PaginatedTags.d.ts +13 -3
  518. package/lexicon/src/models/PaginatedTags.js +24 -21
  519. package/lexicon/src/models/PagingMetadata.d.ts +4 -0
  520. package/lexicon/src/models/PagingMetadata.js +23 -11
  521. package/lexicon/src/models/PharmacyGroup.d.ts +6 -2
  522. package/lexicon/src/models/PharmacyGroup.js +15 -12
  523. package/lexicon/src/models/PharmacyLocation.d.ts +6 -2
  524. package/lexicon/src/models/PharmacyLocation.js +15 -12
  525. package/lexicon/src/models/PharmacySoftware.d.ts +6 -2
  526. package/lexicon/src/models/PharmacySoftware.js +15 -12
  527. package/lexicon/src/models/RestError.d.ts +66 -58
  528. package/lexicon/src/models/RestError.js +73 -67
  529. package/lexicon/src/models/Tag.d.ts +4 -0
  530. package/lexicon/src/models/Tag.js +15 -12
  531. package/lexicon/src/models/TagCreationParameters.d.ts +4 -0
  532. package/lexicon/src/models/TagCreationParameters.js +13 -10
  533. package/lexicon/src/models/index.d.ts +0 -1
  534. package/lexicon/src/models/index.js +2 -1
  535. package/lexicon/src/runtime.d.ts +72 -31
  536. package/lexicon/src/runtime.js +291 -164
  537. package/litigation/src/apis/ManageLitigationApi.d.ts +6 -6
  538. package/litigation/src/apis/ManageLitigationApi.js +28 -30
  539. package/litigation/src/apis/index.js +2 -0
  540. package/litigation/src/index.d.ts +2 -2
  541. package/litigation/src/index.js +4 -2
  542. package/litigation/src/models/LitigationCreationParameters.d.ts +4 -0
  543. package/litigation/src/models/LitigationCreationParameters.js +23 -11
  544. package/litigation/src/models/RestError.d.ts +66 -58
  545. package/litigation/src/models/RestError.js +73 -67
  546. package/litigation/src/models/index.js +2 -0
  547. package/litigation/src/runtime.d.ts +72 -31
  548. package/litigation/src/runtime.js +291 -164
  549. package/magic-cart/src/apis/ManageExpressOrderApi.d.ts +6 -6
  550. package/magic-cart/src/apis/ManageExpressOrderApi.js +29 -30
  551. package/magic-cart/src/apis/index.js +2 -0
  552. package/magic-cart/src/index.d.ts +2 -2
  553. package/magic-cart/src/index.js +4 -2
  554. package/magic-cart/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
  555. package/magic-cart/src/models/AnyIdentifiedDistributionMode.js +9 -23
  556. package/magic-cart/src/models/Barcodes.d.ts +5 -0
  557. package/magic-cart/src/models/Barcodes.js +19 -16
  558. package/magic-cart/src/models/DistributionMode.d.ts +8 -1
  559. package/magic-cart/src/models/DistributionMode.js +20 -10
  560. package/magic-cart/src/models/DistributionRange.d.ts +4 -0
  561. package/magic-cart/src/models/DistributionRange.js +20 -10
  562. package/magic-cart/src/models/ExpressOrder.d.ts +5 -1
  563. package/magic-cart/src/models/ExpressOrder.js +15 -12
  564. package/magic-cart/src/models/ExpressOrderCreationParameters.d.ts +5 -1
  565. package/magic-cart/src/models/ExpressOrderCreationParameters.js +18 -13
  566. package/magic-cart/src/models/ExpressOrderNeed.d.ts +4 -0
  567. package/magic-cart/src/models/ExpressOrderNeed.js +21 -14
  568. package/magic-cart/src/models/HttpLink.d.ts +4 -0
  569. package/magic-cart/src/models/HttpLink.js +14 -8
  570. package/magic-cart/src/models/IdentifiedDistributionRange.d.ts +23 -2
  571. package/magic-cart/src/models/IdentifiedDistributionRange.js +35 -21
  572. package/magic-cart/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
  573. package/magic-cart/src/models/IdentifiedRangeDistributionMode.js +31 -21
  574. package/magic-cart/src/models/ProductLink.d.ts +13 -4
  575. package/magic-cart/src/models/ProductLink.js +36 -22
  576. package/magic-cart/src/models/ProductStorageType.d.ts +8 -7
  577. package/magic-cart/src/models/ProductStorageType.js +18 -9
  578. package/magic-cart/src/models/QuotationDistributionMode.d.ts +26 -2
  579. package/magic-cart/src/models/QuotationDistributionMode.js +31 -21
  580. package/magic-cart/src/models/SaleOfferLink.d.ts +13 -4
  581. package/magic-cart/src/models/SaleOfferLink.js +33 -22
  582. package/magic-cart/src/models/SaleOfferProposal.d.ts +7 -3
  583. package/magic-cart/src/models/SaleOfferProposal.js +25 -13
  584. package/magic-cart/src/models/SellerProposal.d.ts +6 -2
  585. package/magic-cart/src/models/SellerProposal.js +23 -13
  586. package/magic-cart/src/models/Stock.d.ts +4 -0
  587. package/magic-cart/src/models/Stock.js +17 -13
  588. package/magic-cart/src/models/UnitaryDistributionMode.d.ts +26 -2
  589. package/magic-cart/src/models/UnitaryDistributionMode.js +35 -21
  590. package/magic-cart/src/models/UserLink.d.ts +11 -2
  591. package/magic-cart/src/models/UserLink.js +27 -21
  592. package/magic-cart/src/models/index.d.ts +0 -7
  593. package/magic-cart/src/models/index.js +2 -7
  594. package/magic-cart/src/runtime.d.ts +72 -31
  595. package/magic-cart/src/runtime.js +291 -164
  596. package/mandate/src/apis/ManageMandatesApi.d.ts +12 -12
  597. package/mandate/src/apis/ManageMandatesApi.js +100 -108
  598. package/mandate/src/apis/index.js +2 -0
  599. package/mandate/src/index.d.ts +2 -2
  600. package/mandate/src/index.js +4 -2
  601. package/mandate/src/models/Challenge.d.ts +5 -1
  602. package/mandate/src/models/Challenge.js +15 -12
  603. package/mandate/src/models/ChallengeAction.d.ts +11 -7
  604. package/mandate/src/models/ChallengeAction.js +19 -18
  605. package/mandate/src/models/Mandate.d.ts +15 -11
  606. package/mandate/src/models/Mandate.js +29 -28
  607. package/mandate/src/models/MandateChallenge.d.ts +18 -2
  608. package/mandate/src/models/MandateChallenge.js +24 -21
  609. package/mandate/src/models/MandateChallengeCreationParameters.d.ts +4 -0
  610. package/mandate/src/models/MandateChallengeCreationParameters.js +14 -8
  611. package/mandate/src/models/MandateCreationParameters.d.ts +4 -0
  612. package/mandate/src/models/MandateCreationParameters.js +15 -12
  613. package/mandate/src/models/index.d.ts +0 -1
  614. package/mandate/src/models/index.js +2 -1
  615. package/mandate/src/runtime.d.ts +72 -31
  616. package/mandate/src/runtime.js +291 -164
  617. package/mangopay-hook/src/apis/MangopayHookApi.d.ts +7 -5
  618. package/mangopay-hook/src/apis/MangopayHookApi.js +20 -18
  619. package/mangopay-hook/src/apis/index.js +2 -0
  620. package/mangopay-hook/src/index.d.ts +2 -2
  621. package/mangopay-hook/src/index.js +4 -2
  622. package/mangopay-hook/src/models/RestError.d.ts +66 -58
  623. package/mangopay-hook/src/models/RestError.js +73 -67
  624. package/mangopay-hook/src/models/index.js +2 -0
  625. package/mangopay-hook/src/runtime.d.ts +72 -31
  626. package/mangopay-hook/src/runtime.js +291 -164
  627. package/message/src/apis/ManageMessageApi.d.ts +24 -14
  628. package/message/src/apis/ManageMessageApi.js +146 -146
  629. package/message/src/apis/SearchMessageApi.d.ts +23 -19
  630. package/message/src/apis/SearchMessageApi.js +106 -109
  631. package/message/src/apis/index.js +2 -0
  632. package/message/src/index.d.ts +2 -2
  633. package/message/src/index.js +4 -2
  634. package/message/src/models/HttpLink.d.ts +4 -0
  635. package/message/src/models/HttpLink.js +14 -8
  636. package/message/src/models/Message.d.ts +5 -1
  637. package/message/src/models/Message.js +27 -13
  638. package/message/src/models/MessageCreationParameters.d.ts +4 -0
  639. package/message/src/models/MessageCreationParameters.js +20 -10
  640. package/message/src/models/MessageUpdateParameters.d.ts +4 -0
  641. package/message/src/models/MessageUpdateParameters.js +17 -14
  642. package/message/src/models/MessageViewerCreationParameters.d.ts +4 -0
  643. package/message/src/models/MessageViewerCreationParameters.js +13 -10
  644. package/message/src/models/PaginatedMessages.d.ts +13 -3
  645. package/message/src/models/PaginatedMessages.js +24 -21
  646. package/message/src/models/PaginatedObject.d.ts +5 -1
  647. package/message/src/models/PaginatedObject.js +15 -9
  648. package/message/src/models/PagingMetadata.d.ts +4 -0
  649. package/message/src/models/PagingMetadata.js +23 -11
  650. package/message/src/models/ViewerLink.d.ts +11 -2
  651. package/message/src/models/ViewerLink.js +27 -21
  652. package/message/src/models/index.d.ts +0 -2
  653. package/message/src/models/index.js +2 -2
  654. package/message/src/runtime.d.ts +72 -31
  655. package/message/src/runtime.js +291 -164
  656. package/notification/src/apis/ManageNotificationApi.d.ts +8 -8
  657. package/notification/src/apis/ManageNotificationApi.js +61 -65
  658. package/notification/src/apis/ManageNotificationTypeApi.d.ts +11 -11
  659. package/notification/src/apis/ManageNotificationTypeApi.js +90 -100
  660. package/notification/src/apis/SearchNotificationApi.d.ts +17 -15
  661. package/notification/src/apis/SearchNotificationApi.js +76 -79
  662. package/notification/src/apis/SearchNotificationTypeApi.d.ts +21 -21
  663. package/notification/src/apis/SearchNotificationTypeApi.js +102 -109
  664. package/notification/src/apis/index.js +2 -0
  665. package/notification/src/index.d.ts +2 -2
  666. package/notification/src/index.js +4 -2
  667. package/notification/src/models/HttpLink.d.ts +4 -0
  668. package/notification/src/models/HttpLink.js +14 -8
  669. package/notification/src/models/Notification.d.ts +6 -2
  670. package/notification/src/models/Notification.js +30 -27
  671. package/notification/src/models/NotificationType.d.ts +6 -2
  672. package/notification/src/models/NotificationType.js +29 -26
  673. package/notification/src/models/NotificationTypeAttachment.d.ts +4 -0
  674. package/notification/src/models/NotificationTypeAttachment.js +23 -20
  675. package/notification/src/models/NotificationTypeId.d.ts +52 -51
  676. package/notification/src/models/NotificationTypeId.js +62 -53
  677. package/notification/src/models/NotificationTypeUpdateParameters.d.ts +4 -0
  678. package/notification/src/models/NotificationTypeUpdateParameters.js +23 -20
  679. package/notification/src/models/NotificationUpdateParameters.d.ts +4 -0
  680. package/notification/src/models/NotificationUpdateParameters.js +15 -12
  681. package/notification/src/models/PaginatedNotificationTypes.d.ts +13 -3
  682. package/notification/src/models/PaginatedNotificationTypes.js +22 -22
  683. package/notification/src/models/PaginatedNotifications.d.ts +13 -3
  684. package/notification/src/models/PaginatedNotifications.js +22 -22
  685. package/notification/src/models/PaginatedObject.d.ts +5 -1
  686. package/notification/src/models/PaginatedObject.js +15 -9
  687. package/notification/src/models/PagingMetadata.d.ts +4 -0
  688. package/notification/src/models/PagingMetadata.js +23 -11
  689. package/notification/src/models/RestError.d.ts +66 -58
  690. package/notification/src/models/RestError.js +73 -67
  691. package/notification/src/models/index.d.ts +0 -3
  692. package/notification/src/models/index.js +2 -3
  693. package/notification/src/runtime.d.ts +72 -31
  694. package/notification/src/runtime.js +291 -164
  695. package/order/src/apis/ManageFreeCarriageCouponApi.d.ts +8 -8
  696. package/order/src/apis/ManageFreeCarriageCouponApi.js +54 -58
  697. package/order/src/apis/ManageMetaOrderApi.d.ts +8 -8
  698. package/order/src/apis/ManageMetaOrderApi.js +57 -61
  699. package/order/src/apis/ManageOrderApi.d.ts +20 -20
  700. package/order/src/apis/ManageOrderApi.js +228 -244
  701. package/order/src/apis/ManageOrderItemApi.d.ts +20 -20
  702. package/order/src/apis/ManageOrderItemApi.js +233 -249
  703. package/order/src/apis/SearchFreeCarriageCouponApi.d.ts +13 -13
  704. package/order/src/apis/SearchFreeCarriageCouponApi.js +56 -59
  705. package/order/src/apis/SearchOrderApi.d.ts +39 -35
  706. package/order/src/apis/SearchOrderApi.js +177 -177
  707. package/order/src/apis/SearchOrderItemApi.d.ts +64 -58
  708. package/order/src/apis/SearchOrderItemApi.js +188 -200
  709. package/order/src/apis/index.js +2 -0
  710. package/order/src/index.d.ts +2 -2
  711. package/order/src/index.js +4 -2
  712. package/order/src/models/Address.d.ts +4 -0
  713. package/order/src/models/Address.js +19 -16
  714. package/order/src/models/Anomalies.d.ts +4 -0
  715. package/order/src/models/Anomalies.js +19 -16
  716. package/order/src/models/AnomaliesUpdateParameters.d.ts +29 -2
  717. package/order/src/models/AnomaliesUpdateParameters.js +26 -3
  718. package/order/src/models/AnyMetaOrderWarning.d.ts +3 -2
  719. package/order/src/models/AnyMetaOrderWarning.js +5 -19
  720. package/order/src/models/Barcodes.d.ts +5 -0
  721. package/order/src/models/Barcodes.js +19 -16
  722. package/order/src/models/FreeCarriageCoupon.d.ts +5 -1
  723. package/order/src/models/FreeCarriageCoupon.js +46 -25
  724. package/order/src/models/FreeCarriageCouponCreationParameters.d.ts +4 -0
  725. package/order/src/models/FreeCarriageCouponCreationParameters.js +29 -18
  726. package/order/src/models/FreeCarriageCouponOwnerLink.d.ts +11 -2
  727. package/order/src/models/FreeCarriageCouponOwnerLink.js +23 -21
  728. package/order/src/models/HttpLink.d.ts +4 -0
  729. package/order/src/models/HttpLink.js +14 -8
  730. package/order/src/models/MetaOrder.d.ts +7 -3
  731. package/order/src/models/MetaOrder.js +34 -18
  732. package/order/src/models/MetaOrderCreationParameters.d.ts +5 -1
  733. package/order/src/models/MetaOrderCreationParameters.js +18 -10
  734. package/order/src/models/MetaOrderCreationSubCartParameters.d.ts +4 -0
  735. package/order/src/models/MetaOrderCreationSubCartParameters.js +14 -8
  736. package/order/src/models/MetaOrderPrices.d.ts +4 -0
  737. package/order/src/models/MetaOrderPrices.js +38 -16
  738. package/order/src/models/MetaOrderWarning.d.ts +4 -0
  739. package/order/src/models/MetaOrderWarning.js +14 -8
  740. package/order/src/models/MetaOrderWithWarnings.d.ts +6 -2
  741. package/order/src/models/MetaOrderWithWarnings.js +15 -12
  742. package/order/src/models/Order.d.ts +20 -12
  743. package/order/src/models/Order.js +140 -74
  744. package/order/src/models/OrderAddedItem.d.ts +68 -2
  745. package/order/src/models/OrderAddedItem.js +41 -3
  746. package/order/src/models/OrderItem.d.ts +7 -3
  747. package/order/src/models/OrderItem.js +32 -29
  748. package/order/src/models/OrderItemPrices.d.ts +4 -0
  749. package/order/src/models/OrderItemPrices.js +21 -18
  750. package/order/src/models/OrderItemRefundedCreationParameters.d.ts +4 -0
  751. package/order/src/models/OrderItemRefundedCreationParameters.js +19 -12
  752. package/order/src/models/OrderItemUpdateParameters.d.ts +4 -0
  753. package/order/src/models/OrderItemUpdateParameters.js +14 -8
  754. package/order/src/models/OrderItemWarning.d.ts +22 -13
  755. package/order/src/models/OrderItemWarning.js +47 -34
  756. package/order/src/models/OrderItemsOperation.d.ts +12 -7
  757. package/order/src/models/OrderItemsOperation.js +22 -9
  758. package/order/src/models/OrderJournal.d.ts +14 -3
  759. package/order/src/models/OrderJournal.js +36 -27
  760. package/order/src/models/OrderPrices.d.ts +4 -0
  761. package/order/src/models/OrderPrices.js +29 -26
  762. package/order/src/models/OrderRefundedItem.d.ts +68 -2
  763. package/order/src/models/OrderRefundedItem.js +41 -3
  764. package/order/src/models/OrderRefundedItemUpdateParameters.d.ts +11 -2
  765. package/order/src/models/OrderRefundedItemUpdateParameters.js +22 -3
  766. package/order/src/models/OrderRemovedItem.d.ts +68 -2
  767. package/order/src/models/OrderRemovedItem.js +41 -3
  768. package/order/src/models/OrderRemovedItemUpdateParameters.d.ts +11 -2
  769. package/order/src/models/OrderRemovedItemUpdateParameters.js +22 -3
  770. package/order/src/models/OrderStatus.d.ts +19 -18
  771. package/order/src/models/OrderStatus.js +29 -20
  772. package/order/src/models/OrderStatusReason.d.ts +7 -6
  773. package/order/src/models/OrderStatusReason.js +17 -8
  774. package/order/src/models/OrderStorageType.d.ts +8 -7
  775. package/order/src/models/OrderStorageType.js +18 -9
  776. package/order/src/models/OrderThreads.d.ts +5 -1
  777. package/order/src/models/OrderThreads.js +13 -10
  778. package/order/src/models/OrderType.d.ts +6 -5
  779. package/order/src/models/OrderType.js +16 -7
  780. package/order/src/models/OrderUpdateParameters.d.ts +6 -2
  781. package/order/src/models/OrderUpdateParameters.js +19 -16
  782. package/order/src/models/OrderWarning.d.ts +19 -10
  783. package/order/src/models/OrderWarning.js +34 -30
  784. package/order/src/models/PaginatedFreeCarriageCoupons.d.ts +13 -3
  785. package/order/src/models/PaginatedFreeCarriageCoupons.js +24 -21
  786. package/order/src/models/PaginatedObject.d.ts +5 -1
  787. package/order/src/models/PaginatedObject.js +15 -9
  788. package/order/src/models/PaginatedOrders.d.ts +13 -3
  789. package/order/src/models/PaginatedOrders.js +24 -21
  790. package/order/src/models/PagingMetadata.d.ts +4 -0
  791. package/order/src/models/PagingMetadata.js +23 -11
  792. package/order/src/models/ProductLink.d.ts +13 -4
  793. package/order/src/models/ProductLink.js +28 -23
  794. package/order/src/models/ProductStorageType.d.ts +8 -7
  795. package/order/src/models/ProductStorageType.js +18 -9
  796. package/order/src/models/Reservation.d.ts +12 -4
  797. package/order/src/models/Reservation.js +25 -22
  798. package/order/src/models/ReservationUpdateParameters.d.ts +4 -0
  799. package/order/src/models/ReservationUpdateParameters.js +13 -10
  800. package/order/src/models/RestError.d.ts +66 -58
  801. package/order/src/models/RestError.js +73 -67
  802. package/order/src/models/SaleOfferLink.d.ts +11 -2
  803. package/order/src/models/SaleOfferLink.js +23 -21
  804. package/order/src/models/ShoppedOffer.d.ts +4 -0
  805. package/order/src/models/ShoppedOffer.js +19 -12
  806. package/order/src/models/ThreadLink.d.ts +11 -2
  807. package/order/src/models/ThreadLink.js +23 -21
  808. package/order/src/models/UpdateOrderStatusParameters.d.ts +12 -11
  809. package/order/src/models/UpdateOrderStatusParameters.js +22 -13
  810. package/order/src/models/UserLink.d.ts +12 -3
  811. package/order/src/models/UserLink.js +39 -22
  812. package/order/src/models/UserLinkAllOfCompany.d.ts +4 -0
  813. package/order/src/models/UserLinkAllOfCompany.js +13 -10
  814. package/order/src/models/index.d.ts +0 -9
  815. package/order/src/models/index.js +2 -9
  816. package/order/src/runtime.d.ts +72 -31
  817. package/order/src/runtime.js +291 -164
  818. package/order-log/src/apis/SearchOrderLogApi.d.ts +15 -13
  819. package/order-log/src/apis/SearchOrderLogApi.js +52 -53
  820. package/order-log/src/apis/index.js +2 -0
  821. package/order-log/src/index.d.ts +2 -2
  822. package/order-log/src/index.js +4 -2
  823. package/order-log/src/models/AnyOrderLog.d.ts +2 -1
  824. package/order-log/src/models/AnyOrderLog.js +4 -18
  825. package/order-log/src/models/HttpLink.d.ts +4 -0
  826. package/order-log/src/models/HttpLink.js +14 -8
  827. package/order-log/src/models/Log.d.ts +4 -0
  828. package/order-log/src/models/Log.js +21 -11
  829. package/order-log/src/models/OrderLink.d.ts +11 -2
  830. package/order-log/src/models/OrderLink.js +23 -21
  831. package/order-log/src/models/OrderLog.d.ts +25 -4
  832. package/order-log/src/models/OrderLog.js +48 -22
  833. package/order-log/src/models/OrderStatusReason.d.ts +7 -6
  834. package/order-log/src/models/OrderStatusReason.js +17 -8
  835. package/order-log/src/models/PaginatedObject.d.ts +5 -1
  836. package/order-log/src/models/PaginatedObject.js +15 -9
  837. package/order-log/src/models/PaginatedOrderLogs.d.ts +13 -3
  838. package/order-log/src/models/PaginatedOrderLogs.js +24 -21
  839. package/order-log/src/models/PagingMetadata.d.ts +4 -0
  840. package/order-log/src/models/PagingMetadata.js +23 -11
  841. package/order-log/src/models/index.d.ts +0 -3
  842. package/order-log/src/models/index.js +2 -3
  843. package/order-log/src/runtime.d.ts +72 -31
  844. package/order-log/src/runtime.js +291 -164
  845. package/outrage-message/src/apis/ManageOutrageMessageApi.d.ts +16 -10
  846. package/outrage-message/src/apis/ManageOutrageMessageApi.js +89 -89
  847. package/outrage-message/src/apis/SearchOutrageMessageApi.d.ts +17 -17
  848. package/outrage-message/src/apis/SearchOutrageMessageApi.js +72 -77
  849. package/outrage-message/src/apis/index.js +2 -0
  850. package/outrage-message/src/index.d.ts +2 -2
  851. package/outrage-message/src/index.js +4 -2
  852. package/outrage-message/src/models/OutrageMessage.d.ts +4 -0
  853. package/outrage-message/src/models/OutrageMessage.js +21 -18
  854. package/outrage-message/src/models/OutrageMessageCreationParameters.d.ts +4 -0
  855. package/outrage-message/src/models/OutrageMessageCreationParameters.js +17 -9
  856. package/outrage-message/src/models/OutrageMessageUpdateParameters.d.ts +4 -0
  857. package/outrage-message/src/models/OutrageMessageUpdateParameters.js +15 -12
  858. package/outrage-message/src/models/PaginatedObject.d.ts +5 -1
  859. package/outrage-message/src/models/PaginatedObject.js +15 -9
  860. package/outrage-message/src/models/PaginatedOutrageMessages.d.ts +13 -3
  861. package/outrage-message/src/models/PaginatedOutrageMessages.js +22 -22
  862. package/outrage-message/src/models/PagingMetadata.d.ts +4 -0
  863. package/outrage-message/src/models/PagingMetadata.js +23 -11
  864. package/outrage-message/src/models/index.d.ts +0 -1
  865. package/outrage-message/src/models/index.js +2 -1
  866. package/outrage-message/src/runtime.d.ts +72 -31
  867. package/outrage-message/src/runtime.js +291 -164
  868. package/package.json +1 -1
  869. package/product/src/apis/ManageProductApi.d.ts +8 -8
  870. package/product/src/apis/ManageProductApi.js +63 -67
  871. package/product/src/apis/ManageProductImageApi.d.ts +8 -8
  872. package/product/src/apis/ManageProductImageApi.js +59 -62
  873. package/product/src/apis/ManageProductProscriptionApi.d.ts +8 -8
  874. package/product/src/apis/ManageProductProscriptionApi.js +57 -61
  875. package/product/src/apis/SearchProductApi.d.ts +31 -31
  876. package/product/src/apis/SearchProductApi.js +104 -109
  877. package/product/src/apis/SearchProductImageApi.d.ts +8 -8
  878. package/product/src/apis/SearchProductImageApi.js +58 -62
  879. package/product/src/apis/SearchProductMetadataApi.d.ts +12 -12
  880. package/product/src/apis/SearchProductMetadataApi.js +102 -110
  881. package/product/src/apis/SearchProductProscriptionApi.d.ts +15 -15
  882. package/product/src/apis/SearchProductProscriptionApi.js +44 -48
  883. package/product/src/apis/index.js +2 -0
  884. package/product/src/index.d.ts +2 -2
  885. package/product/src/index.js +4 -2
  886. package/product/src/models/Barcodes.d.ts +5 -0
  887. package/product/src/models/Barcodes.js +19 -16
  888. package/product/src/models/DataProvider.d.ts +9 -8
  889. package/product/src/models/DataProvider.js +19 -10
  890. package/product/src/models/HttpLink.d.ts +4 -0
  891. package/product/src/models/HttpLink.js +14 -8
  892. package/product/src/models/Image.d.ts +6 -2
  893. package/product/src/models/Image.js +19 -16
  894. package/product/src/models/ImageVersions.d.ts +4 -0
  895. package/product/src/models/ImageVersions.js +24 -19
  896. package/product/src/models/LaboratoryLink.d.ts +11 -2
  897. package/product/src/models/LaboratoryLink.js +23 -22
  898. package/product/src/models/PaginatedObject.d.ts +5 -1
  899. package/product/src/models/PaginatedObject.js +15 -9
  900. package/product/src/models/PaginatedProductProscriptions.d.ts +13 -3
  901. package/product/src/models/PaginatedProductProscriptions.js +24 -21
  902. package/product/src/models/PaginatedProducts.d.ts +13 -3
  903. package/product/src/models/PaginatedProducts.js +24 -21
  904. package/product/src/models/PagingMetadata.d.ts +4 -0
  905. package/product/src/models/PagingMetadata.js +23 -11
  906. package/product/src/models/Product.d.ts +17 -13
  907. package/product/src/models/Product.js +116 -58
  908. package/product/src/models/ProductCreationOrUpdateParameters.d.ts +9 -5
  909. package/product/src/models/ProductCreationOrUpdateParameters.js +52 -49
  910. package/product/src/models/ProductDispensationPlace.d.ts +6 -5
  911. package/product/src/models/ProductDispensationPlace.js +16 -7
  912. package/product/src/models/ProductJournal.d.ts +4 -0
  913. package/product/src/models/ProductJournal.js +15 -9
  914. package/product/src/models/ProductMarketStatus.d.ts +10 -9
  915. package/product/src/models/ProductMarketStatus.js +20 -11
  916. package/product/src/models/ProductProscription.d.ts +5 -1
  917. package/product/src/models/ProductProscription.js +19 -16
  918. package/product/src/models/ProductProscriptionCreationParameters.d.ts +4 -0
  919. package/product/src/models/ProductProscriptionCreationParameters.js +13 -10
  920. package/product/src/models/ProductSecondaryType.d.ts +4 -0
  921. package/product/src/models/ProductSecondaryType.js +15 -12
  922. package/product/src/models/ProductSource.d.ts +7 -3
  923. package/product/src/models/ProductSource.js +32 -18
  924. package/product/src/models/ProductSourceBcb.d.ts +4 -0
  925. package/product/src/models/ProductSourceBcb.js +18 -13
  926. package/product/src/models/ProductSourceFields.d.ts +6 -2
  927. package/product/src/models/ProductSourceFields.js +83 -43
  928. package/product/src/models/ProductSourceFieldsBarcodes.d.ts +5 -1
  929. package/product/src/models/ProductSourceFieldsBarcodes.js +27 -15
  930. package/product/src/models/ProductSourceMedipim.d.ts +4 -0
  931. package/product/src/models/ProductSourceMedipim.js +14 -8
  932. package/product/src/models/ProductStatus.d.ts +8 -7
  933. package/product/src/models/ProductStatus.js +18 -9
  934. package/product/src/models/ProductStorageType.d.ts +8 -7
  935. package/product/src/models/ProductStorageType.js +18 -9
  936. package/product/src/models/ProductType.d.ts +4 -0
  937. package/product/src/models/ProductType.js +15 -12
  938. package/product/src/models/RestError.d.ts +66 -58
  939. package/product/src/models/RestError.js +73 -67
  940. package/product/src/models/Statistics.d.ts +4 -0
  941. package/product/src/models/Statistics.js +13 -10
  942. package/product/src/models/Vat.d.ts +4 -0
  943. package/product/src/models/Vat.js +20 -10
  944. package/product/src/models/index.d.ts +0 -4
  945. package/product/src/models/index.js +2 -4
  946. package/product/src/runtime.d.ts +72 -31
  947. package/product/src/runtime.js +291 -164
  948. package/pub/src/apis/ManagePubApi.d.ts +12 -12
  949. package/pub/src/apis/ManagePubApi.js +107 -114
  950. package/pub/src/apis/ManagePubImageApi.d.ts +7 -7
  951. package/pub/src/apis/ManagePubImageApi.js +35 -41
  952. package/pub/src/apis/SearchPubApi.d.ts +47 -47
  953. package/pub/src/apis/SearchPubApi.js +143 -152
  954. package/pub/src/apis/index.js +2 -0
  955. package/pub/src/index.d.ts +2 -2
  956. package/pub/src/index.js +4 -2
  957. package/pub/src/models/HttpLink.d.ts +4 -0
  958. package/pub/src/models/HttpLink.js +14 -8
  959. package/pub/src/models/Image.d.ts +5 -1
  960. package/pub/src/models/Image.js +21 -11
  961. package/pub/src/models/ImageVersions.d.ts +4 -0
  962. package/pub/src/models/ImageVersions.js +24 -19
  963. package/pub/src/models/PaginatedObject.d.ts +5 -1
  964. package/pub/src/models/PaginatedObject.js +15 -9
  965. package/pub/src/models/PaginatedPubStatistics.d.ts +13 -3
  966. package/pub/src/models/PaginatedPubStatistics.js +24 -21
  967. package/pub/src/models/PaginatedPubs.d.ts +13 -3
  968. package/pub/src/models/PaginatedPubs.js +24 -21
  969. package/pub/src/models/PagingMetadata.d.ts +4 -0
  970. package/pub/src/models/PagingMetadata.js +23 -11
  971. package/pub/src/models/Pub.d.ts +10 -6
  972. package/pub/src/models/Pub.js +52 -35
  973. package/pub/src/models/PubClickCreationParameters.d.ts +4 -0
  974. package/pub/src/models/PubClickCreationParameters.js +14 -8
  975. package/pub/src/models/PubCreationParameters.d.ts +8 -4
  976. package/pub/src/models/PubCreationParameters.js +28 -17
  977. package/pub/src/models/PubLocationEnum.d.ts +7 -6
  978. package/pub/src/models/PubLocationEnum.js +17 -8
  979. package/pub/src/models/PubSchedule.d.ts +13 -3
  980. package/pub/src/models/PubSchedule.js +15 -12
  981. package/pub/src/models/PubStatistics.d.ts +5 -1
  982. package/pub/src/models/PubStatistics.js +17 -14
  983. package/pub/src/models/PubTimecard.d.ts +7 -1
  984. package/pub/src/models/PubTimecard.js +15 -12
  985. package/pub/src/models/PubUpdateParameters.d.ts +8 -4
  986. package/pub/src/models/PubUpdateParameters.js +24 -21
  987. package/pub/src/models/RestError.d.ts +66 -58
  988. package/pub/src/models/RestError.js +73 -67
  989. package/pub/src/models/UserLink.d.ts +12 -3
  990. package/pub/src/models/UserLink.js +25 -22
  991. package/pub/src/models/UserLinkAllOfCompany.d.ts +4 -0
  992. package/pub/src/models/UserLinkAllOfCompany.js +13 -10
  993. package/pub/src/models/index.d.ts +0 -4
  994. package/pub/src/models/index.js +2 -4
  995. package/pub/src/runtime.d.ts +72 -31
  996. package/pub/src/runtime.js +291 -164
  997. package/recommendation/src/apis/SearchFavoriteProductRecommendationApi.d.ts +15 -15
  998. package/recommendation/src/apis/SearchFavoriteProductRecommendationApi.js +50 -53
  999. package/recommendation/src/apis/SearchProductPriceRecommendationApi.d.ts +15 -15
  1000. package/recommendation/src/apis/SearchProductPriceRecommendationApi.js +44 -47
  1001. package/recommendation/src/apis/SearchProductRecommendationApi.d.ts +15 -15
  1002. package/recommendation/src/apis/SearchProductRecommendationApi.js +49 -53
  1003. package/recommendation/src/apis/index.js +2 -0
  1004. package/recommendation/src/index.d.ts +2 -2
  1005. package/recommendation/src/index.js +4 -2
  1006. package/recommendation/src/models/FavoriteProductRecommendation.d.ts +12 -4
  1007. package/recommendation/src/models/FavoriteProductRecommendation.js +25 -18
  1008. package/recommendation/src/models/HttpLink.d.ts +4 -0
  1009. package/recommendation/src/models/HttpLink.js +14 -8
  1010. package/recommendation/src/models/PaginatedFavoriteProductRecommendations.d.ts +13 -3
  1011. package/recommendation/src/models/PaginatedFavoriteProductRecommendations.js +24 -21
  1012. package/recommendation/src/models/PaginatedObject.d.ts +5 -1
  1013. package/recommendation/src/models/PaginatedObject.js +15 -9
  1014. package/recommendation/src/models/PaginatedProductPriceRecommendations.d.ts +13 -3
  1015. package/recommendation/src/models/PaginatedProductPriceRecommendations.js +24 -21
  1016. package/recommendation/src/models/PaginatedProductRecommendations.d.ts +13 -3
  1017. package/recommendation/src/models/PaginatedProductRecommendations.js +24 -21
  1018. package/recommendation/src/models/PagingMetadata.d.ts +4 -0
  1019. package/recommendation/src/models/PagingMetadata.js +23 -11
  1020. package/recommendation/src/models/ProductLink.d.ts +11 -2
  1021. package/recommendation/src/models/ProductLink.js +21 -22
  1022. package/recommendation/src/models/ProductPriceRecommendation.d.ts +5 -1
  1023. package/recommendation/src/models/ProductPriceRecommendation.js +23 -14
  1024. package/recommendation/src/models/ProductRecommendation.d.ts +13 -4
  1025. package/recommendation/src/models/ProductRecommendation.js +25 -18
  1026. package/recommendation/src/models/ProductRecommendationType.d.ts +11 -7
  1027. package/recommendation/src/models/ProductRecommendationType.js +21 -9
  1028. package/recommendation/src/models/UserLink.d.ts +11 -2
  1029. package/recommendation/src/models/UserLink.js +21 -22
  1030. package/recommendation/src/models/index.d.ts +0 -5
  1031. package/recommendation/src/models/index.js +2 -5
  1032. package/recommendation/src/runtime.d.ts +72 -31
  1033. package/recommendation/src/runtime.js +291 -164
  1034. package/rfx/src/apis/ManageRfiApi.d.ts +6 -6
  1035. package/rfx/src/apis/ManageRfiApi.js +41 -38
  1036. package/rfx/src/apis/ManageRfilApi.d.ts +6 -6
  1037. package/rfx/src/apis/ManageRfilApi.js +27 -28
  1038. package/rfx/src/apis/ManageRfoiApi.d.ts +8 -8
  1039. package/rfx/src/apis/ManageRfoiApi.js +59 -63
  1040. package/rfx/src/apis/SearchRfoiApi.d.ts +21 -21
  1041. package/rfx/src/apis/SearchRfoiApi.js +56 -59
  1042. package/rfx/src/apis/index.js +2 -0
  1043. package/rfx/src/index.d.ts +2 -2
  1044. package/rfx/src/index.js +4 -2
  1045. package/rfx/src/models/HttpLink.d.ts +4 -0
  1046. package/rfx/src/models/HttpLink.js +14 -8
  1047. package/rfx/src/models/OrderLink.d.ts +11 -2
  1048. package/rfx/src/models/OrderLink.js +21 -22
  1049. package/rfx/src/models/PaginatedObject.d.ts +5 -1
  1050. package/rfx/src/models/PaginatedObject.js +15 -9
  1051. package/rfx/src/models/PaginatedRfois.d.ts +13 -3
  1052. package/rfx/src/models/PaginatedRfois.js +24 -21
  1053. package/rfx/src/models/PagingMetadata.d.ts +4 -0
  1054. package/rfx/src/models/PagingMetadata.js +23 -11
  1055. package/rfx/src/models/RestError.d.ts +66 -58
  1056. package/rfx/src/models/RestError.js +73 -67
  1057. package/rfx/src/models/RfiCreationParameters.d.ts +7 -1
  1058. package/rfx/src/models/RfiCreationParameters.js +21 -18
  1059. package/rfx/src/models/RfilCreationParameters.d.ts +4 -0
  1060. package/rfx/src/models/RfilCreationParameters.js +17 -9
  1061. package/rfx/src/models/RfoCreationParameters.d.ts +4 -0
  1062. package/rfx/src/models/RfoCreationParameters.js +14 -8
  1063. package/rfx/src/models/Rfoi.d.ts +6 -2
  1064. package/rfx/src/models/Rfoi.js +26 -23
  1065. package/rfx/src/models/RfoiCreationParameters.d.ts +4 -0
  1066. package/rfx/src/models/RfoiCreationParameters.js +14 -8
  1067. package/rfx/src/models/RfoiUpdateParameters.d.ts +4 -0
  1068. package/rfx/src/models/RfoiUpdateParameters.js +13 -10
  1069. package/rfx/src/models/UserLink.d.ts +12 -3
  1070. package/rfx/src/models/UserLink.js +25 -22
  1071. package/rfx/src/models/UserLinkAllOfCompany.d.ts +4 -0
  1072. package/rfx/src/models/UserLinkAllOfCompany.js +13 -10
  1073. package/rfx/src/models/index.d.ts +0 -3
  1074. package/rfx/src/models/index.js +2 -3
  1075. package/rfx/src/runtime.d.ts +72 -31
  1076. package/rfx/src/runtime.js +291 -164
  1077. package/sale-offer/src/apis/ManageSaleOfferApi.d.ts +16 -16
  1078. package/sale-offer/src/apis/ManageSaleOfferApi.js +173 -183
  1079. package/sale-offer/src/apis/SearchSaleOfferApi.d.ts +58 -53
  1080. package/sale-offer/src/apis/SearchSaleOfferApi.js +162 -162
  1081. package/sale-offer/src/apis/index.js +2 -0
  1082. package/sale-offer/src/index.d.ts +2 -2
  1083. package/sale-offer/src/index.js +4 -2
  1084. package/sale-offer/src/models/AnyDistributionMode.d.ts +6 -5
  1085. package/sale-offer/src/models/AnyDistributionMode.js +9 -23
  1086. package/sale-offer/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
  1087. package/sale-offer/src/models/AnyIdentifiedDistributionMode.js +9 -23
  1088. package/sale-offer/src/models/Barcodes.d.ts +5 -0
  1089. package/sale-offer/src/models/Barcodes.js +19 -16
  1090. package/sale-offer/src/models/DistributionMode.d.ts +8 -1
  1091. package/sale-offer/src/models/DistributionMode.js +20 -10
  1092. package/sale-offer/src/models/DistributionRange.d.ts +4 -0
  1093. package/sale-offer/src/models/DistributionRange.js +20 -10
  1094. package/sale-offer/src/models/HttpLink.d.ts +4 -0
  1095. package/sale-offer/src/models/HttpLink.js +14 -8
  1096. package/sale-offer/src/models/IdentifiedDistributionRange.d.ts +23 -2
  1097. package/sale-offer/src/models/IdentifiedDistributionRange.js +35 -21
  1098. package/sale-offer/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
  1099. package/sale-offer/src/models/IdentifiedRangeDistributionMode.js +31 -21
  1100. package/sale-offer/src/models/ImageVersions.d.ts +4 -0
  1101. package/sale-offer/src/models/ImageVersions.js +24 -19
  1102. package/sale-offer/src/models/Images.d.ts +5 -1
  1103. package/sale-offer/src/models/Images.js +17 -14
  1104. package/sale-offer/src/models/OwnerLink.d.ts +12 -3
  1105. package/sale-offer/src/models/OwnerLink.js +25 -22
  1106. package/sale-offer/src/models/OwnerLinkAllOfCompany.d.ts +4 -0
  1107. package/sale-offer/src/models/OwnerLinkAllOfCompany.js +13 -10
  1108. package/sale-offer/src/models/PaginatedObject.d.ts +5 -1
  1109. package/sale-offer/src/models/PaginatedObject.js +15 -9
  1110. package/sale-offer/src/models/PaginatedSaleOffers.d.ts +13 -3
  1111. package/sale-offer/src/models/PaginatedSaleOffers.js +24 -21
  1112. package/sale-offer/src/models/PagingMetadata.d.ts +4 -0
  1113. package/sale-offer/src/models/PagingMetadata.js +23 -11
  1114. package/sale-offer/src/models/ProductImageLink.d.ts +12 -3
  1115. package/sale-offer/src/models/ProductImageLink.js +23 -22
  1116. package/sale-offer/src/models/ProductLink.d.ts +12 -3
  1117. package/sale-offer/src/models/ProductLink.js +25 -22
  1118. package/sale-offer/src/models/QuotationDistributionMode.d.ts +26 -2
  1119. package/sale-offer/src/models/QuotationDistributionMode.js +31 -21
  1120. package/sale-offer/src/models/RangeDistributionMode.d.ts +27 -3
  1121. package/sale-offer/src/models/RangeDistributionMode.js +31 -21
  1122. package/sale-offer/src/models/RestError.d.ts +66 -58
  1123. package/sale-offer/src/models/RestError.js +73 -67
  1124. package/sale-offer/src/models/SaleOffer.d.ts +17 -11
  1125. package/sale-offer/src/models/SaleOffer.js +78 -41
  1126. package/sale-offer/src/models/SaleOfferCreationImagesParameters.d.ts +4 -0
  1127. package/sale-offer/src/models/SaleOfferCreationImagesParameters.js +17 -14
  1128. package/sale-offer/src/models/SaleOfferCreationParameters.d.ts +13 -4
  1129. package/sale-offer/src/models/SaleOfferCreationParameters.js +28 -25
  1130. package/sale-offer/src/models/SaleOfferJournal.d.ts +4 -0
  1131. package/sale-offer/src/models/SaleOfferJournal.js +15 -9
  1132. package/sale-offer/src/models/SaleOfferNewVersionParameters.d.ts +7 -3
  1133. package/sale-offer/src/models/SaleOfferNewVersionParameters.js +22 -19
  1134. package/sale-offer/src/models/SaleOfferStatisticLink.d.ts +14 -3
  1135. package/sale-offer/src/models/SaleOfferStatisticLink.js +27 -22
  1136. package/sale-offer/src/models/SaleOfferStatus.d.ts +11 -10
  1137. package/sale-offer/src/models/SaleOfferStatus.js +21 -12
  1138. package/sale-offer/src/models/SaleOfferStatusReason.d.ts +10 -9
  1139. package/sale-offer/src/models/SaleOfferStatusReason.js +20 -11
  1140. package/sale-offer/src/models/SaleOfferUpdateParameters.d.ts +13 -3
  1141. package/sale-offer/src/models/SaleOfferUpdateParameters.js +15 -12
  1142. package/sale-offer/src/models/SaleOfferUpdateParametersStock.d.ts +4 -0
  1143. package/sale-offer/src/models/SaleOfferUpdateParametersStock.js +13 -10
  1144. package/sale-offer/src/models/Stock.d.ts +4 -0
  1145. package/sale-offer/src/models/Stock.js +17 -13
  1146. package/sale-offer/src/models/UnitaryDistributionMode.d.ts +26 -2
  1147. package/sale-offer/src/models/UnitaryDistributionMode.js +35 -21
  1148. package/sale-offer/src/models/index.d.ts +0 -10
  1149. package/sale-offer/src/models/index.js +2 -10
  1150. package/sale-offer/src/runtime.d.ts +72 -31
  1151. package/sale-offer/src/runtime.js +291 -164
  1152. package/sale-offer-log/src/apis/SearchSaleOfferLogApi.d.ts +15 -13
  1153. package/sale-offer-log/src/apis/SearchSaleOfferLogApi.js +52 -53
  1154. package/sale-offer-log/src/apis/index.js +2 -0
  1155. package/sale-offer-log/src/index.d.ts +2 -2
  1156. package/sale-offer-log/src/index.js +4 -2
  1157. package/sale-offer-log/src/models/AnySaleOfferLog.d.ts +2 -1
  1158. package/sale-offer-log/src/models/AnySaleOfferLog.js +4 -18
  1159. package/sale-offer-log/src/models/HttpLink.d.ts +4 -0
  1160. package/sale-offer-log/src/models/HttpLink.js +14 -8
  1161. package/sale-offer-log/src/models/Log.d.ts +4 -0
  1162. package/sale-offer-log/src/models/Log.js +21 -11
  1163. package/sale-offer-log/src/models/PaginatedObject.d.ts +5 -1
  1164. package/sale-offer-log/src/models/PaginatedObject.js +15 -9
  1165. package/sale-offer-log/src/models/PaginatedSaleOfferLogs.d.ts +13 -3
  1166. package/sale-offer-log/src/models/PaginatedSaleOfferLogs.js +24 -21
  1167. package/sale-offer-log/src/models/PagingMetadata.d.ts +4 -0
  1168. package/sale-offer-log/src/models/PagingMetadata.js +23 -11
  1169. package/sale-offer-log/src/models/SaleOfferLink.d.ts +11 -2
  1170. package/sale-offer-log/src/models/SaleOfferLink.js +23 -21
  1171. package/sale-offer-log/src/models/SaleOfferLog.d.ts +24 -3
  1172. package/sale-offer-log/src/models/SaleOfferLog.js +35 -21
  1173. package/sale-offer-log/src/models/index.d.ts +0 -3
  1174. package/sale-offer-log/src/models/index.js +2 -3
  1175. package/sale-offer-log/src/runtime.d.ts +72 -31
  1176. package/sale-offer-log/src/runtime.js +291 -164
  1177. package/servant/src/apis/ManageServantApi.d.ts +7 -5
  1178. package/servant/src/apis/ManageServantApi.js +10 -8
  1179. package/servant/src/apis/ManageTaskApi.d.ts +5 -5
  1180. package/servant/src/apis/ManageTaskApi.js +27 -29
  1181. package/servant/src/apis/SearchServantApi.d.ts +8 -6
  1182. package/servant/src/apis/SearchServantApi.js +29 -29
  1183. package/servant/src/apis/index.js +2 -0
  1184. package/servant/src/index.d.ts +2 -2
  1185. package/servant/src/index.js +4 -2
  1186. package/servant/src/models/RestError.d.ts +66 -58
  1187. package/servant/src/models/RestError.js +73 -67
  1188. package/servant/src/models/Servant.d.ts +5 -1
  1189. package/servant/src/models/Servant.js +26 -17
  1190. package/servant/src/models/Task.d.ts +4 -0
  1191. package/servant/src/models/Task.js +15 -12
  1192. package/servant/src/models/index.js +2 -0
  1193. package/servant/src/runtime.d.ts +72 -31
  1194. package/servant/src/runtime.js +291 -164
  1195. package/shipment/src/apis/ManageOrderCarriageApi.d.ts +6 -6
  1196. package/shipment/src/apis/ManageOrderCarriageApi.js +33 -35
  1197. package/shipment/src/apis/ManageShipmentApi.d.ts +8 -8
  1198. package/shipment/src/apis/ManageShipmentApi.js +56 -60
  1199. package/shipment/src/apis/SearchOrderCarriageApi.d.ts +21 -17
  1200. package/shipment/src/apis/SearchOrderCarriageApi.js +74 -75
  1201. package/shipment/src/apis/index.js +2 -0
  1202. package/shipment/src/index.d.ts +2 -2
  1203. package/shipment/src/index.js +4 -2
  1204. package/shipment/src/models/CancelParcelResponse.d.ts +4 -0
  1205. package/shipment/src/models/CancelParcelResponse.js +17 -14
  1206. package/shipment/src/models/DeliveryStatus.d.ts +4 -0
  1207. package/shipment/src/models/DeliveryStatus.js +15 -12
  1208. package/shipment/src/models/HttpLink.d.ts +4 -0
  1209. package/shipment/src/models/HttpLink.js +14 -8
  1210. package/shipment/src/models/OrderCarriage.d.ts +6 -2
  1211. package/shipment/src/models/OrderCarriage.js +18 -15
  1212. package/shipment/src/models/OrderCarriageShipmentCreationParameters.d.ts +4 -0
  1213. package/shipment/src/models/OrderCarriageShipmentCreationParameters.js +13 -10
  1214. package/shipment/src/models/OrderLink.d.ts +11 -2
  1215. package/shipment/src/models/OrderLink.js +21 -22
  1216. package/shipment/src/models/PaginatedObject.d.ts +5 -1
  1217. package/shipment/src/models/PaginatedObject.js +15 -9
  1218. package/shipment/src/models/PaginatedOrderCarriages.d.ts +13 -3
  1219. package/shipment/src/models/PaginatedOrderCarriages.js +24 -21
  1220. package/shipment/src/models/PagingMetadata.d.ts +4 -0
  1221. package/shipment/src/models/PagingMetadata.js +23 -11
  1222. package/shipment/src/models/RestError.d.ts +66 -58
  1223. package/shipment/src/models/RestError.js +73 -67
  1224. package/shipment/src/models/Shipment.d.ts +7 -2
  1225. package/shipment/src/models/Shipment.js +22 -19
  1226. package/shipment/src/models/ShipmentCreationParameters.d.ts +4 -0
  1227. package/shipment/src/models/ShipmentCreationParameters.js +25 -14
  1228. package/shipment/src/models/ShipmentError.d.ts +11 -7
  1229. package/shipment/src/models/ShipmentError.js +22 -19
  1230. package/shipment/src/models/ShipmentLabels.d.ts +4 -0
  1231. package/shipment/src/models/ShipmentLabels.js +15 -12
  1232. package/shipment/src/models/ShipmentParcel.d.ts +12 -4
  1233. package/shipment/src/models/ShipmentParcel.js +21 -18
  1234. package/shipment/src/models/ShipmentParcelStatus.d.ts +7 -6
  1235. package/shipment/src/models/ShipmentParcelStatus.js +17 -8
  1236. package/shipment/src/models/SkybillLink.d.ts +11 -2
  1237. package/shipment/src/models/SkybillLink.js +21 -22
  1238. package/shipment/src/models/index.d.ts +0 -3
  1239. package/shipment/src/models/index.js +2 -3
  1240. package/shipment/src/runtime.d.ts +72 -31
  1241. package/shipment/src/runtime.js +291 -164
  1242. package/shopping-cart/src/apis/ManageCartApi.d.ts +8 -8
  1243. package/shopping-cart/src/apis/ManageCartApi.js +50 -54
  1244. package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +19 -19
  1245. package/shopping-cart/src/apis/ManageCartSubCartApi.js +88 -95
  1246. package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +14 -14
  1247. package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +142 -152
  1248. package/shopping-cart/src/apis/index.js +2 -0
  1249. package/shopping-cart/src/index.d.ts +2 -2
  1250. package/shopping-cart/src/index.js +4 -2
  1251. package/shopping-cart/src/models/AnyIdentifiedDistributionMode.d.ts +6 -5
  1252. package/shopping-cart/src/models/AnyIdentifiedDistributionMode.js +9 -23
  1253. package/shopping-cart/src/models/Barcodes.d.ts +5 -0
  1254. package/shopping-cart/src/models/Barcodes.js +19 -16
  1255. package/shopping-cart/src/models/Cart.d.ts +5 -1
  1256. package/shopping-cart/src/models/Cart.js +17 -14
  1257. package/shopping-cart/src/models/CartSubCart.d.ts +7 -3
  1258. package/shopping-cart/src/models/CartSubCart.js +39 -19
  1259. package/shopping-cart/src/models/CartSubCartLine.d.ts +6 -2
  1260. package/shopping-cart/src/models/CartSubCartLine.js +30 -17
  1261. package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +4 -0
  1262. package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +16 -11
  1263. package/shopping-cart/src/models/CartSubCartTransport.d.ts +4 -0
  1264. package/shopping-cart/src/models/CartSubCartTransport.js +23 -11
  1265. package/shopping-cart/src/models/DistributionMode.d.ts +8 -1
  1266. package/shopping-cart/src/models/DistributionMode.js +20 -10
  1267. package/shopping-cart/src/models/DistributionRange.d.ts +4 -0
  1268. package/shopping-cart/src/models/DistributionRange.js +20 -10
  1269. package/shopping-cart/src/models/HttpLink.d.ts +4 -0
  1270. package/shopping-cart/src/models/HttpLink.js +14 -8
  1271. package/shopping-cart/src/models/IdentifiedDistributionRange.d.ts +23 -2
  1272. package/shopping-cart/src/models/IdentifiedDistributionRange.js +35 -21
  1273. package/shopping-cart/src/models/IdentifiedRangeDistributionMode.d.ts +27 -3
  1274. package/shopping-cart/src/models/IdentifiedRangeDistributionMode.js +31 -21
  1275. package/shopping-cart/src/models/ProductLink.d.ts +13 -4
  1276. package/shopping-cart/src/models/ProductLink.js +40 -22
  1277. package/shopping-cart/src/models/ProductStorageType.d.ts +8 -7
  1278. package/shopping-cart/src/models/ProductStorageType.js +18 -9
  1279. package/shopping-cart/src/models/QuotationDistributionMode.d.ts +26 -2
  1280. package/shopping-cart/src/models/QuotationDistributionMode.js +31 -21
  1281. package/shopping-cart/src/models/RestError.d.ts +66 -58
  1282. package/shopping-cart/src/models/RestError.js +73 -67
  1283. package/shopping-cart/src/models/SaleOfferLink.d.ts +14 -5
  1284. package/shopping-cart/src/models/SaleOfferLink.js +32 -23
  1285. package/shopping-cart/src/models/SaleOfferStatus.d.ts +11 -10
  1286. package/shopping-cart/src/models/SaleOfferStatus.js +21 -12
  1287. package/shopping-cart/src/models/SellerLink.d.ts +12 -3
  1288. package/shopping-cart/src/models/SellerLink.js +25 -22
  1289. package/shopping-cart/src/models/ShoppedOffer.d.ts +4 -0
  1290. package/shopping-cart/src/models/ShoppedOffer.js +19 -12
  1291. package/shopping-cart/src/models/Stock.d.ts +4 -0
  1292. package/shopping-cart/src/models/Stock.js +17 -13
  1293. package/shopping-cart/src/models/UnitaryDistributionMode.d.ts +26 -2
  1294. package/shopping-cart/src/models/UnitaryDistributionMode.js +35 -21
  1295. package/shopping-cart/src/models/UserRole.d.ts +12 -11
  1296. package/shopping-cart/src/models/UserRole.js +22 -13
  1297. package/shopping-cart/src/models/index.d.ts +0 -7
  1298. package/shopping-cart/src/models/index.js +2 -7
  1299. package/shopping-cart/src/runtime.d.ts +72 -31
  1300. package/shopping-cart/src/runtime.js +291 -164
  1301. package/smuggler/index.d.ts +1 -0
  1302. package/smuggler/index.js +17 -0
  1303. package/smuggler/src/apis/ManageSmugglersApi.d.ts +27 -0
  1304. package/{factory/src/apis/ManageAssemblyOperationApi.js → smuggler/src/apis/ManageSmugglersApi.js} +33 -71
  1305. package/smuggler/src/apis/index.d.ts +1 -0
  1306. package/smuggler/src/apis/index.js +19 -0
  1307. package/smuggler/src/index.d.ts +3 -0
  1308. package/smuggler/src/index.js +21 -0
  1309. package/smuggler/src/models/RestError.d.ts +97 -0
  1310. package/smuggler/src/models/RestError.js +107 -0
  1311. package/smuggler/src/models/index.d.ts +1 -0
  1312. package/smuggler/src/models/index.js +19 -0
  1313. package/smuggler/src/runtime.d.ts +190 -0
  1314. package/smuggler/src/runtime.js +607 -0
  1315. package/statistic/src/apis/SearchSaleOfferStatisticsApi.d.ts +15 -15
  1316. package/statistic/src/apis/SearchSaleOfferStatisticsApi.js +70 -75
  1317. package/statistic/src/apis/SearchUserStatisticsApi.d.ts +8 -8
  1318. package/statistic/src/apis/SearchUserStatisticsApi.js +60 -63
  1319. package/statistic/src/apis/index.js +2 -0
  1320. package/statistic/src/index.d.ts +2 -2
  1321. package/statistic/src/index.js +4 -2
  1322. package/statistic/src/models/HttpLink.d.ts +4 -0
  1323. package/statistic/src/models/HttpLink.js +14 -8
  1324. package/statistic/src/models/PaginatedObject.d.ts +5 -1
  1325. package/statistic/src/models/PaginatedObject.js +15 -9
  1326. package/statistic/src/models/PaginatedSaleOfferStatistics.d.ts +13 -3
  1327. package/statistic/src/models/PaginatedSaleOfferStatistics.js +24 -21
  1328. package/statistic/src/models/PaginatedUserStatistics.d.ts +13 -3
  1329. package/statistic/src/models/PaginatedUserStatistics.js +24 -21
  1330. package/statistic/src/models/PagingMetadata.d.ts +4 -0
  1331. package/statistic/src/models/PagingMetadata.js +23 -11
  1332. package/statistic/src/models/RestError.d.ts +66 -58
  1333. package/statistic/src/models/RestError.js +73 -67
  1334. package/statistic/src/models/SaleOfferStatistic.d.ts +8 -2
  1335. package/statistic/src/models/SaleOfferStatistic.js +25 -22
  1336. package/statistic/src/models/UserLink.d.ts +11 -2
  1337. package/statistic/src/models/UserLink.js +21 -22
  1338. package/statistic/src/models/UserStatistic.d.ts +7 -2
  1339. package/statistic/src/models/UserStatistic.js +27 -24
  1340. package/statistic/src/models/index.d.ts +0 -3
  1341. package/statistic/src/models/index.js +2 -3
  1342. package/statistic/src/runtime.d.ts +72 -31
  1343. package/statistic/src/runtime.js +291 -164
  1344. package/subscription/src/apis/ManageSubscriptionApi.d.ts +10 -10
  1345. package/subscription/src/apis/ManageSubscriptionApi.js +83 -89
  1346. package/subscription/src/apis/ManageSubscriptionPlanApi.d.ts +6 -6
  1347. package/subscription/src/apis/ManageSubscriptionPlanApi.js +33 -35
  1348. package/subscription/src/apis/SearchSubscriptionApi.d.ts +19 -19
  1349. package/subscription/src/apis/SearchSubscriptionApi.js +63 -67
  1350. package/subscription/src/apis/SearchSubscriptionPlanApi.d.ts +15 -15
  1351. package/subscription/src/apis/SearchSubscriptionPlanApi.js +64 -69
  1352. package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.d.ts +6 -6
  1353. package/subscription/src/apis/SearchSubscriptionPlanFeatureApi.js +27 -29
  1354. package/subscription/src/apis/index.js +2 -0
  1355. package/subscription/src/index.d.ts +2 -2
  1356. package/subscription/src/index.js +4 -2
  1357. package/subscription/src/models/HttpLink.d.ts +4 -0
  1358. package/subscription/src/models/HttpLink.js +14 -8
  1359. package/subscription/src/models/PaginatedObject.d.ts +5 -1
  1360. package/subscription/src/models/PaginatedObject.js +15 -9
  1361. package/subscription/src/models/PaginatedSubscriptions.d.ts +13 -3
  1362. package/subscription/src/models/PaginatedSubscriptions.js +22 -22
  1363. package/subscription/src/models/PagingMetadata.d.ts +4 -0
  1364. package/subscription/src/models/PagingMetadata.js +23 -11
  1365. package/subscription/src/models/RestError.d.ts +66 -58
  1366. package/subscription/src/models/RestError.js +73 -67
  1367. package/subscription/src/models/SubscriberLink.d.ts +11 -2
  1368. package/subscription/src/models/SubscriberLink.js +21 -22
  1369. package/subscription/src/models/Subscription.d.ts +6 -2
  1370. package/subscription/src/models/Subscription.js +27 -23
  1371. package/subscription/src/models/SubscriptionCreationParameters.d.ts +5 -1
  1372. package/subscription/src/models/SubscriptionCreationParameters.js +21 -11
  1373. package/subscription/src/models/SubscriptionPlan.d.ts +6 -2
  1374. package/subscription/src/models/SubscriptionPlan.js +25 -22
  1375. package/subscription/src/models/SubscriptionPlanFeature.d.ts +5 -1
  1376. package/subscription/src/models/SubscriptionPlanFeature.js +17 -14
  1377. package/subscription/src/models/SubscriptionPlanFeatureId.d.ts +7 -6
  1378. package/subscription/src/models/SubscriptionPlanFeatureId.js +17 -8
  1379. package/subscription/src/models/SubscriptionPlanId.d.ts +7 -6
  1380. package/subscription/src/models/SubscriptionPlanId.js +17 -8
  1381. package/subscription/src/models/SubscriptionPlanLink.d.ts +12 -3
  1382. package/subscription/src/models/SubscriptionPlanLink.js +21 -22
  1383. package/subscription/src/models/SubscriptionPlanUpdateParameters.d.ts +5 -1
  1384. package/subscription/src/models/SubscriptionPlanUpdateParameters.js +23 -20
  1385. package/subscription/src/models/SubscriptionUpdateParameters.d.ts +5 -1
  1386. package/subscription/src/models/SubscriptionUpdateParameters.js +23 -19
  1387. package/subscription/src/models/index.d.ts +0 -3
  1388. package/subscription/src/models/index.js +2 -3
  1389. package/subscription/src/runtime.d.ts +72 -31
  1390. package/subscription/src/runtime.js +291 -164
  1391. package/third-party/src/apis/ManageThirdPartyLinkApi.d.ts +6 -6
  1392. package/third-party/src/apis/ManageThirdPartyLinkApi.js +30 -32
  1393. package/third-party/src/apis/index.js +2 -0
  1394. package/third-party/src/index.d.ts +2 -2
  1395. package/third-party/src/index.js +4 -2
  1396. package/third-party/src/models/RestError.d.ts +66 -58
  1397. package/third-party/src/models/RestError.js +73 -67
  1398. package/third-party/src/models/ThirdPartyLink.d.ts +4 -0
  1399. package/third-party/src/models/ThirdPartyLink.js +13 -10
  1400. package/third-party/src/models/ThirdPartyLinkCreationParameters.d.ts +12 -8
  1401. package/third-party/src/models/ThirdPartyLinkCreationParameters.js +24 -18
  1402. package/third-party/src/models/index.js +2 -0
  1403. package/third-party/src/runtime.d.ts +72 -31
  1404. package/third-party/src/runtime.js +291 -164
  1405. package/thread/src/apis/ManageThreadCommentApi.d.ts +8 -8
  1406. package/thread/src/apis/ManageThreadCommentApi.js +64 -68
  1407. package/thread/src/apis/SearchThreadApi.d.ts +6 -6
  1408. package/thread/src/apis/SearchThreadApi.js +30 -32
  1409. package/thread/src/apis/SearchThreadCommentApi.d.ts +15 -15
  1410. package/thread/src/apis/SearchThreadCommentApi.js +44 -48
  1411. package/thread/src/apis/index.js +2 -0
  1412. package/thread/src/index.d.ts +2 -2
  1413. package/thread/src/index.js +4 -2
  1414. package/thread/src/models/AuthorLink.d.ts +11 -2
  1415. package/thread/src/models/AuthorLink.js +31 -21
  1416. package/thread/src/models/Comment.d.ts +5 -1
  1417. package/thread/src/models/Comment.js +21 -18
  1418. package/thread/src/models/CommentCreationParameters.d.ts +11 -2
  1419. package/thread/src/models/CommentCreationParameters.js +23 -21
  1420. package/thread/src/models/CommentUpdateParameters.d.ts +4 -0
  1421. package/thread/src/models/CommentUpdateParameters.js +14 -8
  1422. package/thread/src/models/HttpLink.d.ts +4 -0
  1423. package/thread/src/models/HttpLink.js +14 -8
  1424. package/thread/src/models/PaginatedComments.d.ts +13 -3
  1425. package/thread/src/models/PaginatedComments.js +24 -21
  1426. package/thread/src/models/PaginatedObject.d.ts +5 -1
  1427. package/thread/src/models/PaginatedObject.js +15 -9
  1428. package/thread/src/models/PagingMetadata.d.ts +4 -0
  1429. package/thread/src/models/PagingMetadata.js +23 -11
  1430. package/thread/src/models/Thread.d.ts +5 -1
  1431. package/thread/src/models/Thread.js +18 -10
  1432. package/thread/src/models/ThreadLink.d.ts +11 -2
  1433. package/thread/src/models/ThreadLink.js +23 -21
  1434. package/thread/src/models/index.d.ts +0 -4
  1435. package/thread/src/models/index.js +2 -4
  1436. package/thread/src/runtime.d.ts +72 -31
  1437. package/thread/src/runtime.js +291 -164
  1438. package/ubo/src/apis/ManageUboDeclarationApi.d.ts +6 -6
  1439. package/ubo/src/apis/ManageUboDeclarationApi.js +31 -33
  1440. package/ubo/src/apis/SearchUboDeclarationApi.d.ts +6 -6
  1441. package/ubo/src/apis/SearchUboDeclarationApi.js +30 -32
  1442. package/ubo/src/apis/index.js +2 -0
  1443. package/ubo/src/index.d.ts +2 -2
  1444. package/ubo/src/index.js +4 -2
  1445. package/ubo/src/models/Address.d.ts +5 -1
  1446. package/ubo/src/models/Address.js +29 -16
  1447. package/ubo/src/models/Country.d.ts +4 -0
  1448. package/ubo/src/models/Country.js +17 -9
  1449. package/ubo/src/models/RestError.d.ts +66 -58
  1450. package/ubo/src/models/RestError.js +73 -67
  1451. package/ubo/src/models/Ubo.d.ts +6 -2
  1452. package/ubo/src/models/Ubo.js +35 -19
  1453. package/ubo/src/models/UboDeclaration.d.ts +18 -14
  1454. package/ubo/src/models/UboDeclaration.js +34 -33
  1455. package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.d.ts +5 -1
  1456. package/ubo/src/models/UboDeclarationCreationOrUpdateParameters.js +13 -10
  1457. package/ubo/src/models/index.js +2 -0
  1458. package/ubo/src/runtime.d.ts +72 -31
  1459. package/ubo/src/runtime.js +291 -164
  1460. package/user/src/apis/ManagePasswordApi.d.ts +8 -8
  1461. package/user/src/apis/ManagePasswordApi.js +52 -55
  1462. package/user/src/apis/ManageUserApi.d.ts +32 -24
  1463. package/user/src/apis/ManageUserApi.js +233 -236
  1464. package/user/src/apis/ManageUserBankAccountApi.d.ts +8 -8
  1465. package/user/src/apis/ManageUserBankAccountApi.js +59 -63
  1466. package/user/src/apis/ManageUserDocumentApi.d.ts +49 -45
  1467. package/user/src/apis/ManageUserDocumentApi.js +135 -141
  1468. package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.d.ts +12 -12
  1469. package/user/src/apis/ManageUserFavoriteLaboratoryStoreApi.js +105 -113
  1470. package/user/src/apis/ManageUserRestrictionApi.d.ts +20 -20
  1471. package/user/src/apis/ManageUserRestrictionApi.js +205 -231
  1472. package/user/src/apis/ManageUserRoleApi.d.ts +6 -6
  1473. package/user/src/apis/ManageUserRoleApi.js +33 -35
  1474. package/user/src/apis/ManageUserRuleApi.d.ts +8 -8
  1475. package/user/src/apis/ManageUserRuleApi.js +59 -63
  1476. package/user/src/apis/ManageUserSocialNetworksApi.d.ts +12 -8
  1477. package/user/src/apis/ManageUserSocialNetworksApi.js +63 -63
  1478. package/user/src/apis/ManageUserTransportApi.d.ts +6 -6
  1479. package/user/src/apis/ManageUserTransportApi.js +33 -35
  1480. package/user/src/apis/SearchUserApi.d.ts +47 -41
  1481. package/user/src/apis/SearchUserApi.js +212 -219
  1482. package/user/src/apis/SearchUserDocumentApi.d.ts +81 -73
  1483. package/user/src/apis/SearchUserDocumentApi.js +253 -259
  1484. package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.d.ts +8 -8
  1485. package/user/src/apis/SearchUserFavoriteLaboratoryStoreApi.js +53 -57
  1486. package/user/src/apis/SearchUserFeatureApi.d.ts +6 -6
  1487. package/user/src/apis/SearchUserFeatureApi.js +27 -29
  1488. package/user/src/apis/SearchUserRestrictionApi.d.ts +12 -12
  1489. package/user/src/apis/SearchUserRestrictionApi.js +105 -113
  1490. package/user/src/apis/SearchUserRuleApi.d.ts +6 -6
  1491. package/user/src/apis/SearchUserRuleApi.js +30 -32
  1492. package/user/src/apis/SearchUserSocialNetworksApi.d.ts +12 -8
  1493. package/user/src/apis/SearchUserSocialNetworksApi.js +57 -57
  1494. package/user/src/apis/SearchUserTransportApi.d.ts +8 -8
  1495. package/user/src/apis/SearchUserTransportApi.js +53 -57
  1496. package/user/src/apis/index.js +2 -0
  1497. package/user/src/index.d.ts +2 -2
  1498. package/user/src/index.js +4 -2
  1499. package/user/src/models/Address.d.ts +4 -0
  1500. package/user/src/models/Address.js +19 -16
  1501. package/user/src/models/Gender.d.ts +6 -5
  1502. package/user/src/models/Gender.js +16 -7
  1503. package/user/src/models/HttpLink.d.ts +4 -0
  1504. package/user/src/models/HttpLink.js +14 -8
  1505. package/user/src/models/KycLevel.d.ts +6 -5
  1506. package/user/src/models/KycLevel.js +16 -7
  1507. package/user/src/models/MyPasswordUpdateParameters.d.ts +4 -0
  1508. package/user/src/models/MyPasswordUpdateParameters.js +15 -12
  1509. package/user/src/models/NotificationTypeId.d.ts +52 -51
  1510. package/user/src/models/NotificationTypeId.js +62 -53
  1511. package/user/src/models/NotificationTypeLink.d.ts +12 -3
  1512. package/user/src/models/NotificationTypeLink.js +21 -22
  1513. package/user/src/models/OffisanteStatus.d.ts +12 -7
  1514. package/user/src/models/OffisanteStatus.js +22 -9
  1515. package/user/src/models/PaginatedObject.d.ts +5 -1
  1516. package/user/src/models/PaginatedObject.js +15 -9
  1517. package/user/src/models/PaginatedUsers.d.ts +13 -3
  1518. package/user/src/models/PaginatedUsers.js +22 -22
  1519. package/user/src/models/PagingMetadata.d.ts +4 -0
  1520. package/user/src/models/PagingMetadata.js +23 -11
  1521. package/user/src/models/PasswordResetCompletionParameters.d.ts +4 -0
  1522. package/user/src/models/PasswordResetCompletionParameters.js +14 -8
  1523. package/user/src/models/PasswordResetCreationParameters.d.ts +4 -0
  1524. package/user/src/models/PasswordResetCreationParameters.js +14 -8
  1525. package/user/src/models/ProductTypeLink.d.ts +11 -2
  1526. package/user/src/models/ProductTypeLink.js +23 -22
  1527. package/user/src/models/RestError.d.ts +66 -58
  1528. package/user/src/models/RestError.js +73 -67
  1529. package/user/src/models/SomeonePasswordUpdateParameters.d.ts +4 -0
  1530. package/user/src/models/SomeonePasswordUpdateParameters.js +13 -10
  1531. package/user/src/models/ThreadLink.d.ts +11 -2
  1532. package/user/src/models/ThreadLink.js +23 -21
  1533. package/user/src/models/Transport.d.ts +7 -3
  1534. package/user/src/models/Transport.js +26 -12
  1535. package/user/src/models/User.d.ts +21 -15
  1536. package/user/src/models/User.js +126 -104
  1537. package/user/src/models/UserBankAccountCreationParameters.d.ts +4 -0
  1538. package/user/src/models/UserBankAccountCreationParameters.js +15 -12
  1539. package/user/src/models/UserBankAccountLink.d.ts +11 -2
  1540. package/user/src/models/UserBankAccountLink.js +21 -22
  1541. package/user/src/models/UserCompany.d.ts +8 -3
  1542. package/user/src/models/UserCompany.js +41 -38
  1543. package/user/src/models/UserCreationParameters.d.ts +5 -1
  1544. package/user/src/models/UserCreationParameters.js +32 -16
  1545. package/user/src/models/UserCustomCommissions.d.ts +4 -0
  1546. package/user/src/models/UserCustomCommissions.js +15 -12
  1547. package/user/src/models/UserCustomCommissionsUpdateParameters.d.ts +4 -0
  1548. package/user/src/models/UserCustomCommissionsUpdateParameters.js +15 -12
  1549. package/user/src/models/UserDelegatedServices.d.ts +14 -1
  1550. package/user/src/models/UserDelegatedServices.js +17 -14
  1551. package/user/src/models/UserDocument.d.ts +21 -17
  1552. package/user/src/models/UserDocument.js +34 -32
  1553. package/user/src/models/UserDocumentStatus.d.ts +9 -8
  1554. package/user/src/models/UserDocumentStatus.js +19 -10
  1555. package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.d.ts +4 -0
  1556. package/user/src/models/UserFavoriteLaboratoryStoreCreationParameter.js +14 -8
  1557. package/user/src/models/UserFavoriteLaboratoryStoreLink.d.ts +11 -2
  1558. package/user/src/models/UserFavoriteLaboratoryStoreLink.js +21 -22
  1559. package/user/src/models/UserFeature.d.ts +4 -0
  1560. package/user/src/models/UserFeature.js +15 -12
  1561. package/user/src/models/UserForbiddenSellerLink.d.ts +11 -2
  1562. package/user/src/models/UserForbiddenSellerLink.js +21 -22
  1563. package/user/src/models/UserJournal.d.ts +4 -0
  1564. package/user/src/models/UserJournal.js +13 -10
  1565. package/user/src/models/UserMangopayTarget.d.ts +11 -2
  1566. package/user/src/models/UserMangopayTarget.js +21 -22
  1567. package/user/src/models/UserRestrictedFeatureCreationParameter.d.ts +4 -0
  1568. package/user/src/models/UserRestrictedFeatureCreationParameter.js +14 -8
  1569. package/user/src/models/UserRestrictedNotificationTypeCreationParameter.d.ts +5 -1
  1570. package/user/src/models/UserRestrictedNotificationTypeCreationParameter.js +15 -9
  1571. package/user/src/models/UserRestrictedProductTypeCreationParameter.d.ts +4 -0
  1572. package/user/src/models/UserRestrictedProductTypeCreationParameter.js +14 -8
  1573. package/user/src/models/UserRole.d.ts +12 -11
  1574. package/user/src/models/UserRole.js +22 -13
  1575. package/user/src/models/UserRule.d.ts +7 -3
  1576. package/user/src/models/UserRule.js +22 -19
  1577. package/user/src/models/UserRuleActionEnum.d.ts +5 -4
  1578. package/user/src/models/UserRuleActionEnum.js +15 -6
  1579. package/user/src/models/UserRuleAttributeEnum.d.ts +6 -5
  1580. package/user/src/models/UserRuleAttributeEnum.js +16 -7
  1581. package/user/src/models/UserRuleComparatorEnum.d.ts +6 -5
  1582. package/user/src/models/UserRuleComparatorEnum.js +16 -7
  1583. package/user/src/models/UserRuleCreationParameters.d.ts +7 -3
  1584. package/user/src/models/UserRuleCreationParameters.js +27 -15
  1585. package/user/src/models/UserSocialNetwork.d.ts +4 -0
  1586. package/user/src/models/UserSocialNetwork.js +25 -22
  1587. package/user/src/models/UserStatisticLink.d.ts +11 -2
  1588. package/user/src/models/UserStatisticLink.js +31 -22
  1589. package/user/src/models/UserThreads.d.ts +5 -1
  1590. package/user/src/models/UserThreads.js +13 -10
  1591. package/user/src/models/UserUpdateParameters.d.ts +10 -6
  1592. package/user/src/models/UserUpdateParameters.js +53 -49
  1593. package/user/src/models/UserWalletLink.d.ts +11 -2
  1594. package/user/src/models/UserWalletLink.js +21 -22
  1595. package/user/src/models/UserWallets.d.ts +5 -1
  1596. package/user/src/models/UserWallets.js +19 -16
  1597. package/user/src/models/index.d.ts +0 -11
  1598. package/user/src/models/index.js +2 -11
  1599. package/user/src/runtime.d.ts +72 -31
  1600. package/user/src/runtime.js +291 -164
  1601. package/wish/src/apis/ManageWishApi.d.ts +10 -10
  1602. package/wish/src/apis/ManageWishApi.js +79 -85
  1603. package/wish/src/apis/SearchProductEnthusiasmApi.d.ts +21 -21
  1604. package/wish/src/apis/SearchProductEnthusiasmApi.js +52 -55
  1605. package/wish/src/apis/SearchWishApi.d.ts +23 -23
  1606. package/wish/src/apis/SearchWishApi.js +94 -99
  1607. package/wish/src/apis/index.js +2 -0
  1608. package/wish/src/index.d.ts +2 -2
  1609. package/wish/src/index.js +4 -2
  1610. package/wish/src/models/Barcodes.d.ts +5 -0
  1611. package/wish/src/models/Barcodes.js +19 -16
  1612. package/wish/src/models/DesiredSellerLink.d.ts +12 -3
  1613. package/wish/src/models/DesiredSellerLink.js +25 -22
  1614. package/wish/src/models/HttpLink.d.ts +4 -0
  1615. package/wish/src/models/HttpLink.js +14 -8
  1616. package/wish/src/models/OwnerLink.d.ts +12 -3
  1617. package/wish/src/models/OwnerLink.js +25 -22
  1618. package/wish/src/models/OwnerLinkAllOfCompany.d.ts +4 -0
  1619. package/wish/src/models/OwnerLinkAllOfCompany.js +13 -10
  1620. package/wish/src/models/PaginatedObject.d.ts +5 -1
  1621. package/wish/src/models/PaginatedObject.js +15 -9
  1622. package/wish/src/models/PaginatedProductEnthusiasms.d.ts +13 -3
  1623. package/wish/src/models/PaginatedProductEnthusiasms.js +24 -21
  1624. package/wish/src/models/PaginatedWishes.d.ts +13 -3
  1625. package/wish/src/models/PaginatedWishes.js +24 -21
  1626. package/wish/src/models/PagingMetadata.d.ts +4 -0
  1627. package/wish/src/models/PagingMetadata.js +23 -11
  1628. package/wish/src/models/ProductEnthusiasm.d.ts +5 -1
  1629. package/wish/src/models/ProductEnthusiasm.js +21 -18
  1630. package/wish/src/models/ProductLink.d.ts +12 -3
  1631. package/wish/src/models/ProductLink.js +25 -22
  1632. package/wish/src/models/Referrer.d.ts +5 -1
  1633. package/wish/src/models/Referrer.js +15 -12
  1634. package/wish/src/models/RestError.d.ts +66 -58
  1635. package/wish/src/models/RestError.js +73 -67
  1636. package/wish/src/models/Wish.d.ts +8 -4
  1637. package/wish/src/models/Wish.js +37 -33
  1638. package/wish/src/models/WishCreationParameters.d.ts +5 -1
  1639. package/wish/src/models/WishCreationParameters.js +29 -20
  1640. package/wish/src/models/WishReferrerType.d.ts +6 -5
  1641. package/wish/src/models/WishReferrerType.js +16 -7
  1642. package/wish/src/models/WishStatus.d.ts +7 -6
  1643. package/wish/src/models/WishStatus.js +17 -8
  1644. package/wish/src/models/WishUpdateParameters.d.ts +5 -1
  1645. package/wish/src/models/WishUpdateParameters.js +21 -18
  1646. package/wish/src/models/index.d.ts +0 -5
  1647. package/wish/src/models/index.js +2 -5
  1648. package/wish/src/runtime.d.ts +72 -31
  1649. package/wish/src/runtime.js +291 -164
  1650. package/auth/src/models/AnonymousUserAllOf.d.ts +0 -33
  1651. package/auth/src/models/AnonymousUserAllOf.js +0 -44
  1652. package/auth/src/models/ApiKeyCredentialAllOf.d.ts +0 -27
  1653. package/auth/src/models/ApiKeyCredentialAllOf.js +0 -41
  1654. package/auth/src/models/DisposableCredentialAllOf.d.ts +0 -27
  1655. package/auth/src/models/DisposableCredentialAllOf.js +0 -41
  1656. package/auth/src/models/IdentifiedUserAllOf.d.ts +0 -27
  1657. package/auth/src/models/IdentifiedUserAllOf.js +0 -42
  1658. package/auth/src/models/LoginCredentialAllOf.d.ts +0 -33
  1659. package/auth/src/models/LoginCredentialAllOf.js +0 -43
  1660. package/auth/src/models/PaginatedApiKeysAllOf.d.ts +0 -28
  1661. package/auth/src/models/PaginatedApiKeysAllOf.js +0 -42
  1662. package/auth/src/models/RefreshCredentialAllOf.d.ts +0 -27
  1663. package/auth/src/models/RefreshCredentialAllOf.js +0 -41
  1664. package/auth/src/models/RevealedApiKeyAllOf.d.ts +0 -27
  1665. package/auth/src/models/RevealedApiKeyAllOf.js +0 -42
  1666. package/auth/src/models/UserLinkAllOf.d.ts +0 -40
  1667. package/auth/src/models/UserLinkAllOf.js +0 -47
  1668. package/banking-operation/src/models/OrderLinkAllOf.d.ts +0 -27
  1669. package/banking-operation/src/models/OrderLinkAllOf.js +0 -42
  1670. package/banking-operation/src/models/PaginatedLeviesAllOf.d.ts +0 -28
  1671. package/banking-operation/src/models/PaginatedLeviesAllOf.js +0 -42
  1672. package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.d.ts +0 -28
  1673. package/banking-operation/src/models/PaginatedOrderPaymentsAllOf.js +0 -42
  1674. package/banking-operation/src/models/TransactionMangopayTargetAllOf.d.ts +0 -27
  1675. package/banking-operation/src/models/TransactionMangopayTargetAllOf.js +0 -42
  1676. package/banking-operation/src/models/UserLinkAllOf.d.ts +0 -40
  1677. package/banking-operation/src/models/UserLinkAllOf.js +0 -47
  1678. package/banking-operation/src/models/WalletMangopayTargetAllOf.d.ts +0 -27
  1679. package/banking-operation/src/models/WalletMangopayTargetAllOf.js +0 -42
  1680. package/catalog/src/models/LaboratoryLinkAllOf.d.ts +0 -33
  1681. package/catalog/src/models/LaboratoryLinkAllOf.js +0 -44
  1682. package/catalog/src/models/PaginatedProductInsightsAllOf.d.ts +0 -28
  1683. package/catalog/src/models/PaginatedProductInsightsAllOf.js +0 -42
  1684. package/catalog/src/models/ProductSecondaryTypeLinkAllOf.d.ts +0 -33
  1685. package/catalog/src/models/ProductSecondaryTypeLinkAllOf.js +0 -44
  1686. package/catalog/src/models/ProductTypeLinkAllOf.d.ts +0 -33
  1687. package/catalog/src/models/ProductTypeLinkAllOf.js +0 -44
  1688. package/catalog/src/models/VatLinkAllOf.d.ts +0 -39
  1689. package/catalog/src/models/VatLinkAllOf.js +0 -46
  1690. package/factory/src/apis/ManageAssemblyOperationApi.d.ts +0 -30
  1691. package/factory/src/apis/SearchAssemblyLineApi.d.ts +0 -37
  1692. package/factory/src/apis/SearchAssemblyLineApi.js +0 -239
  1693. package/factory/src/apis/SearchAssemblyOperationApi.d.ts +0 -41
  1694. package/factory/src/apis/SearchAssemblyOperationApi.js +0 -245
  1695. package/factory/src/models/AssemblyLine.d.ts +0 -39
  1696. package/factory/src/models/AssemblyLine.js +0 -46
  1697. package/factory/src/models/AssemblyLineLink.d.ts +0 -28
  1698. package/factory/src/models/AssemblyLineLink.js +0 -50
  1699. package/factory/src/models/AssemblyLineLinkAllOf.d.ts +0 -27
  1700. package/factory/src/models/AssemblyLineLinkAllOf.js +0 -42
  1701. package/factory/src/models/AssemblyOperation.d.ts +0 -41
  1702. package/factory/src/models/AssemblyOperation.js +0 -48
  1703. package/factory/src/models/AssemblyOperationStatus.d.ts +0 -25
  1704. package/factory/src/models/AssemblyOperationStatus.js +0 -40
  1705. package/factory/src/models/AssemblyOperationType.d.ts +0 -25
  1706. package/factory/src/models/AssemblyOperationType.js +0 -40
  1707. package/factory/src/models/PaginatedAssembliesAllOf.d.ts +0 -28
  1708. package/factory/src/models/PaginatedAssembliesAllOf.js +0 -43
  1709. package/factory/src/models/UserLinkAllOf.d.ts +0 -27
  1710. package/factory/src/models/UserLinkAllOf.js +0 -42
  1711. package/favorite/src/models/PaginatedFavoriteProductsAllOf.d.ts +0 -28
  1712. package/favorite/src/models/PaginatedFavoriteProductsAllOf.js +0 -42
  1713. package/favorite/src/models/ProductLinkAllOf.d.ts +0 -47
  1714. package/favorite/src/models/ProductLinkAllOf.js +0 -50
  1715. package/favorite/src/models/UserLinkAllOf.d.ts +0 -27
  1716. package/favorite/src/models/UserLinkAllOf.js +0 -41
  1717. package/inventory/src/models/PaginatedActiveProductsAllOf.d.ts +0 -28
  1718. package/inventory/src/models/PaginatedActiveProductsAllOf.js +0 -42
  1719. package/inventory/src/models/PaginatedMisalignedProductsAllOf.d.ts +0 -28
  1720. package/inventory/src/models/PaginatedMisalignedProductsAllOf.js +0 -42
  1721. package/inventory/src/models/PaginatedOverstockProductsAllOf.d.ts +0 -28
  1722. package/inventory/src/models/PaginatedOverstockProductsAllOf.js +0 -42
  1723. package/inventory/src/models/ProductLinkAllOf.d.ts +0 -40
  1724. package/inventory/src/models/ProductLinkAllOf.js +0 -47
  1725. package/inventory/src/models/Synchroneity.d.ts +0 -28
  1726. package/inventory/src/models/Synchroneity.js +0 -43
  1727. package/inventory/src/models/SynchroneityOffisante.d.ts +0 -34
  1728. package/inventory/src/models/SynchroneityOffisante.js +0 -45
  1729. package/inventory/src/models/SynchroneitySource.d.ts +0 -33
  1730. package/inventory/src/models/SynchroneitySource.js +0 -44
  1731. package/invoice/src/models/OrderLinkAllOf.d.ts +0 -33
  1732. package/invoice/src/models/OrderLinkAllOf.js +0 -44
  1733. package/invoice/src/models/PaginatedInvoicesAllOf.d.ts +0 -28
  1734. package/invoice/src/models/PaginatedInvoicesAllOf.js +0 -42
  1735. package/invoice/src/models/PaginatedOrderTalliesAllOf.d.ts +0 -28
  1736. package/invoice/src/models/PaginatedOrderTalliesAllOf.js +0 -42
  1737. package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.d.ts +0 -28
  1738. package/invoice/src/models/PaginatedPlannedInvoiceLineAllOf.js +0 -42
  1739. package/invoice/src/models/UserLinkAllOf.d.ts +0 -40
  1740. package/invoice/src/models/UserLinkAllOf.js +0 -47
  1741. package/laboratory/src/models/PaginatedLaboratoriesAllOf.d.ts +0 -28
  1742. package/laboratory/src/models/PaginatedLaboratoriesAllOf.js +0 -42
  1743. package/laboratory-store/src/models/ImageCreationParameters.d.ts +0 -28
  1744. package/laboratory-store/src/models/ImageCreationParameters.js +0 -41
  1745. package/laboratory-store/src/models/OwnerLinkAllOf.d.ts +0 -33
  1746. package/laboratory-store/src/models/OwnerLinkAllOf.js +0 -44
  1747. package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.d.ts +0 -28
  1748. package/laboratory-store/src/models/PaginatedLaboratoryStoresAllOf.js +0 -43
  1749. package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.d.ts +0 -27
  1750. package/laboratory-store-log/src/models/LaboratoryStoreLinkAllOf.js +0 -41
  1751. package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.d.ts +0 -34
  1752. package/laboratory-store-log/src/models/LaboratoryStoreLogAllOf.js +0 -44
  1753. package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.d.ts +0 -28
  1754. package/laboratory-store-log/src/models/PaginatedLaboratoryStoreLogsAllOf.js +0 -42
  1755. package/lexicon/src/models/PaginatedTagsAllOf.d.ts +0 -28
  1756. package/lexicon/src/models/PaginatedTagsAllOf.js +0 -42
  1757. package/magic-cart/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
  1758. package/magic-cart/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
  1759. package/magic-cart/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
  1760. package/magic-cart/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
  1761. package/magic-cart/src/models/ProductLinkAllOf.d.ts +0 -47
  1762. package/magic-cart/src/models/ProductLinkAllOf.js +0 -49
  1763. package/magic-cart/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
  1764. package/magic-cart/src/models/QuotationDistributionModeAllOf.js +0 -41
  1765. package/magic-cart/src/models/SaleOfferLinkAllOf.d.ts +0 -47
  1766. package/magic-cart/src/models/SaleOfferLinkAllOf.js +0 -50
  1767. package/magic-cart/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
  1768. package/magic-cart/src/models/UnitaryDistributionModeAllOf.js +0 -43
  1769. package/magic-cart/src/models/UserLinkAllOf.d.ts +0 -33
  1770. package/magic-cart/src/models/UserLinkAllOf.js +0 -43
  1771. package/mandate/src/models/MandateChallengeAllOf.d.ts +0 -27
  1772. package/mandate/src/models/MandateChallengeAllOf.js +0 -41
  1773. package/message/src/models/PaginatedMessagesAllOf.d.ts +0 -28
  1774. package/message/src/models/PaginatedMessagesAllOf.js +0 -42
  1775. package/message/src/models/ViewerLinkAllOf.d.ts +0 -33
  1776. package/message/src/models/ViewerLinkAllOf.js +0 -43
  1777. package/notification/src/models/NotificationTypeAttachmentCreationParameters.d.ts +0 -28
  1778. package/notification/src/models/NotificationTypeAttachmentCreationParameters.js +0 -42
  1779. package/notification/src/models/PaginatedNotificationTypesAllOf.d.ts +0 -28
  1780. package/notification/src/models/PaginatedNotificationTypesAllOf.js +0 -43
  1781. package/notification/src/models/PaginatedNotificationsAllOf.d.ts +0 -28
  1782. package/notification/src/models/PaginatedNotificationsAllOf.js +0 -43
  1783. package/order/src/models/FreeCarriageCouponOwnerLinkAllOf.d.ts +0 -27
  1784. package/order/src/models/FreeCarriageCouponOwnerLinkAllOf.js +0 -41
  1785. package/order/src/models/OrderItemWarningAllOf.d.ts +0 -62
  1786. package/order/src/models/OrderItemWarningAllOf.js +0 -62
  1787. package/order/src/models/OrderWarningAllOf.d.ts +0 -41
  1788. package/order/src/models/OrderWarningAllOf.js +0 -52
  1789. package/order/src/models/PaginatedFreeCarriageCouponsAllOf.d.ts +0 -28
  1790. package/order/src/models/PaginatedFreeCarriageCouponsAllOf.js +0 -42
  1791. package/order/src/models/PaginatedOrdersAllOf.d.ts +0 -28
  1792. package/order/src/models/PaginatedOrdersAllOf.js +0 -42
  1793. package/order/src/models/ProductLinkAllOf.d.ts +0 -47
  1794. package/order/src/models/ProductLinkAllOf.js +0 -50
  1795. package/order/src/models/SaleOfferLinkAllOf.d.ts +0 -27
  1796. package/order/src/models/SaleOfferLinkAllOf.js +0 -41
  1797. package/order/src/models/ThreadLinkAllOf.d.ts +0 -27
  1798. package/order/src/models/ThreadLinkAllOf.js +0 -41
  1799. package/order/src/models/UserLinkAllOf.d.ts +0 -64
  1800. package/order/src/models/UserLinkAllOf.js +0 -55
  1801. package/order-log/src/models/OrderLinkAllOf.d.ts +0 -27
  1802. package/order-log/src/models/OrderLinkAllOf.js +0 -41
  1803. package/order-log/src/models/OrderLogAllOf.d.ts +0 -53
  1804. package/order-log/src/models/OrderLogAllOf.js +0 -51
  1805. package/order-log/src/models/PaginatedOrderLogsAllOf.d.ts +0 -28
  1806. package/order-log/src/models/PaginatedOrderLogsAllOf.js +0 -42
  1807. package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.d.ts +0 -28
  1808. package/outrage-message/src/models/PaginatedOutrageMessagesAllOf.js +0 -43
  1809. package/product/src/models/ImageCreationParameters.d.ts +0 -28
  1810. package/product/src/models/ImageCreationParameters.js +0 -42
  1811. package/product/src/models/LaboratoryLinkAllOf.d.ts +0 -33
  1812. package/product/src/models/LaboratoryLinkAllOf.js +0 -44
  1813. package/product/src/models/PaginatedProductProscriptionsAllOf.d.ts +0 -28
  1814. package/product/src/models/PaginatedProductProscriptionsAllOf.js +0 -42
  1815. package/product/src/models/PaginatedProductsAllOf.d.ts +0 -28
  1816. package/product/src/models/PaginatedProductsAllOf.js +0 -42
  1817. package/pub/src/models/PaginatedPubStatisticsAllOf.d.ts +0 -28
  1818. package/pub/src/models/PaginatedPubStatisticsAllOf.js +0 -42
  1819. package/pub/src/models/PaginatedPubsAllOf.d.ts +0 -28
  1820. package/pub/src/models/PaginatedPubsAllOf.js +0 -42
  1821. package/pub/src/models/PubImageParameters.d.ts +0 -28
  1822. package/pub/src/models/PubImageParameters.js +0 -42
  1823. package/pub/src/models/UserLinkAllOf.d.ts +0 -40
  1824. package/pub/src/models/UserLinkAllOf.js +0 -47
  1825. package/recommendation/src/models/PaginatedFavoriteProductRecommendationsAllOf.d.ts +0 -28
  1826. package/recommendation/src/models/PaginatedFavoriteProductRecommendationsAllOf.js +0 -42
  1827. package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.d.ts +0 -28
  1828. package/recommendation/src/models/PaginatedProductPriceRecommendationsAllOf.js +0 -42
  1829. package/recommendation/src/models/PaginatedProductRecommendationsAllOf.d.ts +0 -28
  1830. package/recommendation/src/models/PaginatedProductRecommendationsAllOf.js +0 -42
  1831. package/recommendation/src/models/ProductLinkAllOf.d.ts +0 -27
  1832. package/recommendation/src/models/ProductLinkAllOf.js +0 -42
  1833. package/recommendation/src/models/UserLinkAllOf.d.ts +0 -27
  1834. package/recommendation/src/models/UserLinkAllOf.js +0 -42
  1835. package/rfx/src/models/OrderLinkAllOf.d.ts +0 -27
  1836. package/rfx/src/models/OrderLinkAllOf.js +0 -42
  1837. package/rfx/src/models/PaginatedRfoisAllOf.d.ts +0 -28
  1838. package/rfx/src/models/PaginatedRfoisAllOf.js +0 -42
  1839. package/rfx/src/models/UserLinkAllOf.d.ts +0 -40
  1840. package/rfx/src/models/UserLinkAllOf.js +0 -47
  1841. package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
  1842. package/sale-offer/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
  1843. package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
  1844. package/sale-offer/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
  1845. package/sale-offer/src/models/OwnerLinkAllOf.d.ts +0 -40
  1846. package/sale-offer/src/models/OwnerLinkAllOf.js +0 -47
  1847. package/sale-offer/src/models/PaginatedSaleOffersAllOf.d.ts +0 -28
  1848. package/sale-offer/src/models/PaginatedSaleOffersAllOf.js +0 -42
  1849. package/sale-offer/src/models/ProductImageLinkAllOf.d.ts +0 -34
  1850. package/sale-offer/src/models/ProductImageLinkAllOf.js +0 -45
  1851. package/sale-offer/src/models/ProductLinkAllOf.d.ts +0 -40
  1852. package/sale-offer/src/models/ProductLinkAllOf.js +0 -47
  1853. package/sale-offer/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
  1854. package/sale-offer/src/models/QuotationDistributionModeAllOf.js +0 -41
  1855. package/sale-offer/src/models/RangeDistributionModeAllOf.d.ts +0 -28
  1856. package/sale-offer/src/models/RangeDistributionModeAllOf.js +0 -42
  1857. package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.d.ts +0 -45
  1858. package/sale-offer/src/models/SaleOfferStatisticLinkAllOf.js +0 -48
  1859. package/sale-offer/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
  1860. package/sale-offer/src/models/UnitaryDistributionModeAllOf.js +0 -43
  1861. package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.d.ts +0 -28
  1862. package/sale-offer-log/src/models/PaginatedSaleOfferLogsAllOf.js +0 -42
  1863. package/sale-offer-log/src/models/SaleOfferLinkAllOf.d.ts +0 -27
  1864. package/sale-offer-log/src/models/SaleOfferLinkAllOf.js +0 -41
  1865. package/sale-offer-log/src/models/SaleOfferLogAllOf.d.ts +0 -34
  1866. package/sale-offer-log/src/models/SaleOfferLogAllOf.js +0 -44
  1867. package/shipment/src/models/OrderLinkAllOf.d.ts +0 -27
  1868. package/shipment/src/models/OrderLinkAllOf.js +0 -42
  1869. package/shipment/src/models/PaginatedOrderCarriagesAllOf.d.ts +0 -28
  1870. package/shipment/src/models/PaginatedOrderCarriagesAllOf.js +0 -42
  1871. package/shipment/src/models/SkybillLinkAllOf.d.ts +0 -27
  1872. package/shipment/src/models/SkybillLinkAllOf.js +0 -42
  1873. package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.d.ts +0 -33
  1874. package/shopping-cart/src/models/IdentifiedDistributionRangeAllOf.js +0 -43
  1875. package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.d.ts +0 -28
  1876. package/shopping-cart/src/models/IdentifiedRangeDistributionModeAllOf.js +0 -42
  1877. package/shopping-cart/src/models/ProductLinkAllOf.d.ts +0 -53
  1878. package/shopping-cart/src/models/ProductLinkAllOf.js +0 -51
  1879. package/shopping-cart/src/models/QuotationDistributionModeAllOf.d.ts +0 -27
  1880. package/shopping-cart/src/models/QuotationDistributionModeAllOf.js +0 -41
  1881. package/shopping-cart/src/models/SaleOfferLinkAllOf.d.ts +0 -54
  1882. package/shopping-cart/src/models/SaleOfferLinkAllOf.js +0 -53
  1883. package/shopping-cart/src/models/SellerLinkAllOf.d.ts +0 -40
  1884. package/shopping-cart/src/models/SellerLinkAllOf.js +0 -47
  1885. package/shopping-cart/src/models/UnitaryDistributionModeAllOf.d.ts +0 -33
  1886. package/shopping-cart/src/models/UnitaryDistributionModeAllOf.js +0 -43
  1887. package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.d.ts +0 -28
  1888. package/statistic/src/models/PaginatedSaleOfferStatisticsAllOf.js +0 -42
  1889. package/statistic/src/models/PaginatedUserStatisticsAllOf.d.ts +0 -28
  1890. package/statistic/src/models/PaginatedUserStatisticsAllOf.js +0 -42
  1891. package/statistic/src/models/UserLinkAllOf.d.ts +0 -27
  1892. package/statistic/src/models/UserLinkAllOf.js +0 -42
  1893. package/subscription/src/models/PaginatedSubscriptionsAllOf.d.ts +0 -28
  1894. package/subscription/src/models/PaginatedSubscriptionsAllOf.js +0 -43
  1895. package/subscription/src/models/SubscriberLinkAllOf.d.ts +0 -27
  1896. package/subscription/src/models/SubscriberLinkAllOf.js +0 -42
  1897. package/subscription/src/models/SubscriptionPlanLinkAllOf.d.ts +0 -28
  1898. package/subscription/src/models/SubscriptionPlanLinkAllOf.js +0 -43
  1899. package/thread/src/models/AuthorLinkAllOf.d.ts +0 -39
  1900. package/thread/src/models/AuthorLinkAllOf.js +0 -45
  1901. package/thread/src/models/CommentCreationParametersAllOf.d.ts +0 -27
  1902. package/thread/src/models/CommentCreationParametersAllOf.js +0 -41
  1903. package/thread/src/models/PaginatedCommentsAllOf.d.ts +0 -28
  1904. package/thread/src/models/PaginatedCommentsAllOf.js +0 -42
  1905. package/thread/src/models/ThreadLinkAllOf.d.ts +0 -27
  1906. package/thread/src/models/ThreadLinkAllOf.js +0 -41
  1907. package/user/src/models/NotificationTypeLinkAllOf.d.ts +0 -28
  1908. package/user/src/models/NotificationTypeLinkAllOf.js +0 -43
  1909. package/user/src/models/PaginatedUsersAllOf.d.ts +0 -28
  1910. package/user/src/models/PaginatedUsersAllOf.js +0 -43
  1911. package/user/src/models/ProductTypeLinkAllOf.d.ts +0 -33
  1912. package/user/src/models/ProductTypeLinkAllOf.js +0 -44
  1913. package/user/src/models/ThreadLinkAllOf.d.ts +0 -27
  1914. package/user/src/models/ThreadLinkAllOf.js +0 -41
  1915. package/user/src/models/UserBankAccountLinkAllOf.d.ts +0 -27
  1916. package/user/src/models/UserBankAccountLinkAllOf.js +0 -42
  1917. package/user/src/models/UserDocumentCreationParameters.d.ts +0 -28
  1918. package/user/src/models/UserDocumentCreationParameters.js +0 -42
  1919. package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.d.ts +0 -27
  1920. package/user/src/models/UserFavoriteLaboratoryStoreLinkAllOf.js +0 -42
  1921. package/user/src/models/UserForbiddenSellerLinkAllOf.d.ts +0 -27
  1922. package/user/src/models/UserForbiddenSellerLinkAllOf.js +0 -42
  1923. package/user/src/models/UserMangopayTargetAllOf.d.ts +0 -27
  1924. package/user/src/models/UserMangopayTargetAllOf.js +0 -42
  1925. package/user/src/models/UserStatisticLinkAllOf.d.ts +0 -57
  1926. package/user/src/models/UserStatisticLinkAllOf.js +0 -52
  1927. package/user/src/models/UserWalletLinkAllOf.d.ts +0 -27
  1928. package/user/src/models/UserWalletLinkAllOf.js +0 -42
  1929. package/wish/src/models/DesiredSellerLinkAllOf.d.ts +0 -40
  1930. package/wish/src/models/DesiredSellerLinkAllOf.js +0 -47
  1931. package/wish/src/models/OwnerLinkAllOf.d.ts +0 -40
  1932. package/wish/src/models/OwnerLinkAllOf.js +0 -47
  1933. package/wish/src/models/PaginatedProductEnthusiasmsAllOf.d.ts +0 -28
  1934. package/wish/src/models/PaginatedProductEnthusiasmsAllOf.js +0 -42
  1935. package/wish/src/models/PaginatedWishesAllOf.d.ts +0 -28
  1936. package/wish/src/models/PaginatedWishesAllOf.js +0 -42
  1937. package/wish/src/models/ProductLinkAllOf.d.ts +0 -40
  1938. package/wish/src/models/ProductLinkAllOf.js +0 -47
@@ -65,9 +65,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
65
65
  };
66
66
  Object.defineProperty(exports, "__esModule", { value: true });
67
67
  exports.ManageTaskApi = void 0;
68
- var runtime_1 = require("../runtime");
68
+ var runtime = require("../runtime");
69
69
  /**
70
- * no description
70
+ *
71
71
  */
72
72
  var ManageTaskApi = /** @class */ (function (_super) {
73
73
  __extends(ManageTaskApi, _super);
@@ -77,49 +77,47 @@ var ManageTaskApi = /** @class */ (function (_super) {
77
77
  /**
78
78
  * Ask for creation of new taskId occurrence
79
79
  */
80
- ManageTaskApi.prototype.createTaskOccurrenceRaw = function (requestParameters) {
80
+ ManageTaskApi.prototype.createTaskOccurrenceRaw = function (requestParameters, initOverrides) {
81
81
  return __awaiter(this, void 0, void 0, function () {
82
- var queryParameters, headerParameters, token, tokenString, _a, response, response_1;
83
- return __generator(this, function (_b) {
84
- switch (_b.label) {
82
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, response_1;
83
+ return __generator(this, function (_c) {
84
+ switch (_c.label) {
85
85
  case 0:
86
- if (requestParameters.taskId === null || requestParameters.taskId === undefined) {
87
- throw new runtime_1.RequiredError('taskId', 'Required parameter requestParameters.taskId was null or undefined when calling createTaskOccurrence.');
86
+ if (requestParameters['taskId'] == null) {
87
+ throw new runtime.RequiredError('taskId', 'Required parameter "taskId" was null or undefined when calling createTaskOccurrence().');
88
88
  }
89
89
  queryParameters = {};
90
90
  headerParameters = {};
91
- if (this.configuration && this.configuration.apiKey) {
92
- headerParameters["x-api-key"] = this.configuration.apiKey("x-api-key"); // apiKeyAuth authentication
93
- }
91
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
92
+ _a = headerParameters;
93
+ _b = "x-api-key";
94
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
95
+ case 1:
96
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
97
+ _c.label = 2;
98
+ case 2:
94
99
  if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
95
100
  token = this.configuration.accessToken;
96
- if (!(typeof token === 'function')) return [3 /*break*/, 2];
97
101
  return [4 /*yield*/, token("bearerAuth", [])];
98
- case 1:
99
- _a = _b.sent();
100
- return [3 /*break*/, 3];
101
- case 2:
102
- _a = token;
103
- _b.label = 3;
104
102
  case 3:
105
- tokenString = _a;
103
+ tokenString = _c.sent();
106
104
  if (tokenString) {
107
105
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
108
106
  }
109
- _b.label = 4;
107
+ _c.label = 4;
110
108
  case 4:
111
- _b.trys.push([4, 6, , 7]);
109
+ _c.trys.push([4, 6, , 7]);
112
110
  return [4 /*yield*/, this.request({
113
- path: "/tasks/{taskId}/occurrences".replace("{".concat("taskId", "}"), encodeURIComponent(String(requestParameters.taskId))),
111
+ path: "/tasks/{taskId}/occurrences".replace("{".concat("taskId", "}"), encodeURIComponent(String(requestParameters['taskId']))),
114
112
  method: 'POST',
115
113
  headers: headerParameters,
116
114
  query: queryParameters,
117
- })];
115
+ }, initOverrides)];
118
116
  case 5:
119
- response = _b.sent();
120
- return [2 /*return*/, new runtime_1.VoidApiResponse(response)];
117
+ response = _c.sent();
118
+ return [2 /*return*/, new runtime.VoidApiResponse(response)];
121
119
  case 6:
122
- response_1 = _b.sent();
120
+ response_1 = _c.sent();
123
121
  console.debug(response_1);
124
122
  throw response_1;
125
123
  case 7: return [2 /*return*/];
@@ -130,11 +128,11 @@ var ManageTaskApi = /** @class */ (function (_super) {
130
128
  /**
131
129
  * Ask for creation of new taskId occurrence
132
130
  */
133
- ManageTaskApi.prototype.createTaskOccurrence = function (requestParameters) {
131
+ ManageTaskApi.prototype.createTaskOccurrence = function (requestParameters, initOverrides) {
134
132
  return __awaiter(this, void 0, void 0, function () {
135
133
  return __generator(this, function (_a) {
136
134
  switch (_a.label) {
137
- case 0: return [4 /*yield*/, this.createTaskOccurrenceRaw(requestParameters)];
135
+ case 0: return [4 /*yield*/, this.createTaskOccurrenceRaw(requestParameters, initOverrides)];
138
136
  case 1:
139
137
  _a.sent();
140
138
  return [2 /*return*/];
@@ -143,5 +141,5 @@ var ManageTaskApi = /** @class */ (function (_super) {
143
141
  });
144
142
  };
145
143
  return ManageTaskApi;
146
- }(runtime_1.BaseAPI));
144
+ }(runtime.BaseAPI));
147
145
  exports.ManageTaskApi = ManageTaskApi;
@@ -9,18 +9,20 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { BaseAPI, ApiResponse, BlobWithMeta } from '../runtime';
13
- import { Servant } from '../models';
12
+ import * as runtime from '../runtime';
13
+ import type { Servant } from '../models/index';
14
14
  /**
15
- * no description
15
+ *
16
16
  */
17
- export declare class SearchServantApi extends BaseAPI {
17
+ export declare class SearchServantApi extends runtime.BaseAPI {
18
18
  /**
19
+ *
19
20
  * Search servants
20
21
  */
21
- getServantsRaw(): Promise<ApiResponse<Array<Servant> | BlobWithMeta>>;
22
+ getServantsRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<Servant> | runtime.BlobWithMeta>>;
22
23
  /**
24
+ *
23
25
  * Search servants
24
26
  */
25
- getServants(): Promise<Array<Servant> | BlobWithMeta>;
27
+ getServants(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<Servant> | runtime.BlobWithMeta>;
26
28
  }
@@ -65,10 +65,10 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
65
65
  };
66
66
  Object.defineProperty(exports, "__esModule", { value: true });
67
67
  exports.SearchServantApi = void 0;
68
- var runtime_1 = require("../runtime");
69
- var models_1 = require("../models");
68
+ var runtime = require("../runtime");
69
+ var index_1 = require("../models/index");
70
70
  /**
71
- * no description
71
+ *
72
72
  */
73
73
  var SearchServantApi = /** @class */ (function (_super) {
74
74
  __extends(SearchServantApi, _super);
@@ -76,59 +76,58 @@ var SearchServantApi = /** @class */ (function (_super) {
76
76
  return _super !== null && _super.apply(this, arguments) || this;
77
77
  }
78
78
  /**
79
+ *
79
80
  * Search servants
80
81
  */
81
- SearchServantApi.prototype.getServantsRaw = function () {
82
+ SearchServantApi.prototype.getServantsRaw = function (initOverrides) {
82
83
  return __awaiter(this, void 0, void 0, function () {
83
- var queryParameters, headerParameters, token, tokenString, _a, response, contentType, response_1;
84
- return __generator(this, function (_b) {
85
- switch (_b.label) {
84
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_1;
85
+ return __generator(this, function (_c) {
86
+ switch (_c.label) {
86
87
  case 0:
87
88
  queryParameters = {};
88
89
  headerParameters = {};
89
- if (this.configuration && this.configuration.apiKey) {
90
- headerParameters["x-api-key"] = this.configuration.apiKey("x-api-key"); // apiKeyAuth authentication
91
- }
90
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
91
+ _a = headerParameters;
92
+ _b = "x-api-key";
93
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
94
+ case 1:
95
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
96
+ _c.label = 2;
97
+ case 2:
92
98
  if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
93
99
  token = this.configuration.accessToken;
94
- if (!(typeof token === 'function')) return [3 /*break*/, 2];
95
100
  return [4 /*yield*/, token("bearerAuth", [])];
96
- case 1:
97
- _a = _b.sent();
98
- return [3 /*break*/, 3];
99
- case 2:
100
- _a = token;
101
- _b.label = 3;
102
101
  case 3:
103
- tokenString = _a;
102
+ tokenString = _c.sent();
104
103
  if (tokenString) {
105
104
  headerParameters["Authorization"] = "Bearer ".concat(tokenString);
106
105
  }
107
- _b.label = 4;
106
+ _c.label = 4;
108
107
  case 4:
109
- _b.trys.push([4, 6, , 7]);
108
+ _c.trys.push([4, 6, , 7]);
110
109
  return [4 /*yield*/, this.request({
111
110
  path: "/servants",
112
111
  method: 'GET',
113
112
  headers: headerParameters,
114
113
  query: queryParameters,
115
- })];
114
+ }, initOverrides)];
116
115
  case 5:
117
- response = _b.sent();
116
+ response = _c.sent();
118
117
  contentType = response.headers.get("content-type");
119
118
  if (contentType && contentType.indexOf("application/json") !== -1) {
120
- return [2 /*return*/, new runtime_1.JSONApiResponse(response, function (jsonValue) { return jsonValue.map(models_1.ServantFromJSON); })];
119
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return jsonValue.map(index_1.ServantFromJSON); })];
121
120
  }
122
121
  else if (contentType && contentType.indexOf("text/plain") !== -1) {
123
- return [2 /*return*/, new runtime_1.TextApiResponse(response)];
122
+ return [2 /*return*/, new runtime.TextApiResponse(response)];
124
123
  }
125
124
  else {
126
125
  // TODO : Better handling of others application types
127
- return [2 /*return*/, new runtime_1.BlobWithMetaApiResponse(response)];
126
+ return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
128
127
  }
129
128
  return [3 /*break*/, 7];
130
129
  case 6:
131
- response_1 = _b.sent();
130
+ response_1 = _c.sent();
132
131
  console.debug(response_1);
133
132
  throw response_1;
134
133
  case 7: return [2 /*return*/];
@@ -137,14 +136,15 @@ var SearchServantApi = /** @class */ (function (_super) {
137
136
  });
138
137
  };
139
138
  /**
139
+ *
140
140
  * Search servants
141
141
  */
142
- SearchServantApi.prototype.getServants = function () {
142
+ SearchServantApi.prototype.getServants = function (initOverrides) {
143
143
  return __awaiter(this, void 0, void 0, function () {
144
144
  var response;
145
145
  return __generator(this, function (_a) {
146
146
  switch (_a.label) {
147
- case 0: return [4 /*yield*/, this.getServantsRaw()];
147
+ case 0: return [4 /*yield*/, this.getServantsRaw(initOverrides)];
148
148
  case 1:
149
149
  response = _a.sent();
150
150
  return [4 /*yield*/, response.value()];
@@ -154,5 +154,5 @@ var SearchServantApi = /** @class */ (function (_super) {
154
154
  });
155
155
  };
156
156
  return SearchServantApi;
157
- }(runtime_1.BaseAPI));
157
+ }(runtime.BaseAPI));
158
158
  exports.SearchServantApi = SearchServantApi;
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
17
19
  __exportStar(require("./ManageServantApi"), exports);
18
20
  __exportStar(require("./ManageTaskApi"), exports);
19
21
  __exportStar(require("./SearchServantApi"), exports);
@@ -1,3 +1,3 @@
1
1
  export * from './runtime';
2
- export * from './apis';
3
- export * from './models';
2
+ export * from './apis/index';
3
+ export * from './models/index';
@@ -14,6 +14,8 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ /* tslint:disable */
18
+ /* eslint-disable */
17
19
  __exportStar(require("./runtime"), exports);
18
- __exportStar(require("./apis"), exports);
19
- __exportStar(require("./models"), exports);
20
+ __exportStar(require("./apis/index"), exports);
21
+ __exportStar(require("./models/index"), exports);
@@ -16,74 +16,82 @@
16
16
  */
17
17
  export interface RestError {
18
18
  /**
19
- * Unique code to identify an error : * `CODE000` - Using outdated resource * `CODE001` - Invalid credentials * `CODE002` - Cannot renew token * `CODE003` - Invalid User CGV * `CODE004` - Resource already exists * `CODE005` - User account is disabled * `CODE006` - Invalid schedule * `CODE007` - Wrong Address according CHRONOPOST * `CODE008` - Invalid Mangopay Mandate * `CODE009` - Invalid Status * `CODE010` - Image dimension exceeded * `CODE011` - Empty User Address * `CODE012` - Empty User Legal Name * `CODE013` - Invalid quantities * `CODE014` - Invalid Meta-Order * `CODE015` - Can not release quantity greater than claimed * `CODE016` - Can not release a negative quantity of items * `CODE017` - Batch is forbidden for sale * `CODE018` - Trial already used * `CODE019` - Unable to generate session from disposableToken for admin users * `CODE020` - ETag do not match * `CODE021` - Missing informations for Offisante subscription
19
+ * Unique code to identify an error : * `CODE000` - Using outdated resource * `CODE001` - Invalid credentials * `CODE002` - Cannot renew token * `CODE003` - Invalid User CGV * `CODE004` - Resource already exists * `CODE005` - User account is disabled * `CODE006` - Invalid schedule * `CODE007` - Wrong Address according CHRONOPOST * `CODE008` - Invalid Mangopay Mandate * `CODE009` - Invalid Status * `CODE010` - Image dimension exceeded * `CODE011` - Empty User Address * `CODE012` - Empty User Legal Name * `CODE013` - Invalid quantities * `CODE014` - Invalid Meta-Order * `CODE015` - Can not release quantity greater than claimed * `CODE016` - Can not release a negative quantity of items * `CODE017` - Batch is forbidden for sale * `CODE018` - Trial already used * `CODE019` - Unable to generate session from disposableToken for admin users * `CODE020` - ETag do not match * `CODE021` - Missing informations for Offisante subscription * `CODE022` - Disabled feature
20
+ *
20
21
  * @type {string}
21
22
  * @memberof RestError
22
23
  */
23
24
  code: RestErrorCodeEnum;
24
25
  /**
25
- * Unique code to identify an error : * `MESSAGE000` - Using outdated resource * `MESSAGE001` - Invalid credentials * `MESSAGE002` - Cannot renew token * `MESSAGE003` - Invalid User CGV * `MESSAGE004` - Resource already exists * `MESSAGE005` - User account is disabled * `MESSAGE006` - Invalid schedule * `MESSAGE007` - Wrong Address according CHRONOPOST * `MESSAGE008` - Invalid Mangopay Mandate * `MESSAGE009` - Invalid Status * `MESSAGE010` - Image dimension exceeded * `MESSAGE011` - Empty User Address * `MESSAGE012` - Empty User Legal Name * `MESSAGE013` - Invalid quantities * `MESSAGE014` - Invalid Meta-Order * `MESSAGE015` - Can not release quantity greater than claimed * `MESSAGE016` - Can not release a negative quantity of items * `MESSAGE017` - Batch is forbidden for sale * `MESSAGE018` - Trial already used * `MESSAGE019` - Unable to generate session from disposableToken for admin users * `MESSAGE020` - ETag do not match * `MESSAGE021` - Missing informations for Offisante subscription
26
+ * Unique code to identify an error : * `MESSAGE000` - Using outdated resource * `MESSAGE001` - Invalid credentials * `MESSAGE002` - Cannot renew token * `MESSAGE003` - Invalid User CGV * `MESSAGE004` - Resource already exists * `MESSAGE005` - User account is disabled * `MESSAGE006` - Invalid schedule * `MESSAGE007` - Wrong Address according CHRONOPOST * `MESSAGE008` - Invalid Mangopay Mandate * `MESSAGE009` - Invalid Status * `MESSAGE010` - Image dimension exceeded * `MESSAGE011` - Empty User Address * `MESSAGE012` - Empty User Legal Name * `MESSAGE013` - Invalid quantities * `MESSAGE014` - Invalid Meta-Order * `MESSAGE015` - Can not release quantity greater than claimed * `MESSAGE016` - Can not release a negative quantity of items * `MESSAGE017` - Batch is forbidden for sale * `MESSAGE018` - Trial already used * `MESSAGE019` - Unable to generate session from disposableToken for admin users * `MESSAGE020` - ETag do not match * `MESSAGE021` - Missing informations for Offisante subscription * `MESSAGE022` - Disabled feature
27
+ *
26
28
  * @type {string}
27
29
  * @memberof RestError
28
30
  */
29
31
  message: RestErrorMessageEnum;
30
32
  }
33
+ /**
34
+ * @export
35
+ */
36
+ export declare const RestErrorCodeEnum: {
37
+ readonly CODE000: "CODE000";
38
+ readonly CODE001: "CODE001";
39
+ readonly CODE002: "CODE002";
40
+ readonly CODE003: "CODE003";
41
+ readonly CODE004: "CODE004";
42
+ readonly CODE005: "CODE005";
43
+ readonly CODE006: "CODE006";
44
+ readonly CODE007: "CODE007";
45
+ readonly CODE008: "CODE008";
46
+ readonly CODE009: "CODE009";
47
+ readonly CODE010: "CODE010";
48
+ readonly CODE011: "CODE011";
49
+ readonly CODE012: "CODE012";
50
+ readonly CODE013: "CODE013";
51
+ readonly CODE014: "CODE014";
52
+ readonly CODE015: "CODE015";
53
+ readonly CODE016: "CODE016";
54
+ readonly CODE017: "CODE017";
55
+ readonly CODE018: "CODE018";
56
+ readonly CODE019: "CODE019";
57
+ readonly CODE020: "CODE020";
58
+ readonly CODE021: "CODE021";
59
+ readonly CODE022: "CODE022";
60
+ };
61
+ export declare type RestErrorCodeEnum = typeof RestErrorCodeEnum[keyof typeof RestErrorCodeEnum];
62
+ /**
63
+ * @export
64
+ */
65
+ export declare const RestErrorMessageEnum: {
66
+ readonly MESSAGE000: "Using outdated resource";
67
+ readonly MESSAGE001: "Login failed";
68
+ readonly MESSAGE002: "Cannot renew token";
69
+ readonly MESSAGE003: "Invalid User CGV";
70
+ readonly MESSAGE004: "Resource already exists";
71
+ readonly MESSAGE005: "User account is disabled";
72
+ readonly MESSAGE006: "Invalid schedule";
73
+ readonly MESSAGE007: "Wrong Address according CHRONOPOST";
74
+ readonly MESSAGE008: "Invalid Mangopay Mandate";
75
+ readonly MESSAGE009: "Invalid Status";
76
+ readonly MESSAGE010: "Image dimension exceeded";
77
+ readonly MESSAGE011: "Empty User Address";
78
+ readonly MESSAGE012: "Empty User Legal Name";
79
+ readonly MESSAGE013: "Invalid quantities";
80
+ readonly MESSAGE014: "Invalid Meta-Order";
81
+ readonly MESSAGE015: "Can not release quantity greater than claimed";
82
+ readonly MESSAGE016: "Can not release a negative quantity of items";
83
+ readonly MESSAGE017: "Batch is forbidden for sale";
84
+ readonly MESSAGE018: "Trial already used";
85
+ readonly MESSAGE019: "Unable to generate session from disposableToken for admin users";
86
+ readonly MESSAGE020: "ETag do not match";
87
+ readonly MESSAGE021: "Missing informations for Offisante subscription";
88
+ readonly MESSAGE022: "Disabled feature";
89
+ };
90
+ export declare type RestErrorMessageEnum = typeof RestErrorMessageEnum[keyof typeof RestErrorMessageEnum];
91
+ /**
92
+ * Check if a given object implements the RestError interface.
93
+ */
94
+ export declare function instanceOfRestError(value: object): value is RestError;
31
95
  export declare function RestErrorFromJSON(json: any): RestError;
32
96
  export declare function RestErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestError;
33
97
  export declare function RestErrorToJSON(value?: RestError | null): any;
34
- /**
35
- * @export
36
- * @enum {string}
37
- */
38
- export declare enum RestErrorCodeEnum {
39
- CODE000 = "CODE000",
40
- CODE001 = "CODE001",
41
- CODE002 = "CODE002",
42
- CODE003 = "CODE003",
43
- CODE004 = "CODE004",
44
- CODE005 = "CODE005",
45
- CODE006 = "CODE006",
46
- CODE007 = "CODE007",
47
- CODE008 = "CODE008",
48
- CODE009 = "CODE009",
49
- CODE010 = "CODE010",
50
- CODE011 = "CODE011",
51
- CODE012 = "CODE012",
52
- CODE013 = "CODE013",
53
- CODE014 = "CODE014",
54
- CODE015 = "CODE015",
55
- CODE016 = "CODE016",
56
- CODE017 = "CODE017",
57
- CODE018 = "CODE018",
58
- CODE019 = "CODE019",
59
- CODE020 = "CODE020",
60
- CODE021 = "CODE021"
61
- }
62
- /**
63
- * @export
64
- * @enum {string}
65
- */
66
- export declare enum RestErrorMessageEnum {
67
- MESSAGE000 = "Using outdated resource",
68
- MESSAGE001 = "Login failed",
69
- MESSAGE002 = "Cannot renew token",
70
- MESSAGE003 = "Invalid User CGV",
71
- MESSAGE004 = "Resource already exists",
72
- MESSAGE005 = "User account is disabled",
73
- MESSAGE006 = "Invalid schedule",
74
- MESSAGE007 = "Wrong Address according CHRONOPOST",
75
- MESSAGE008 = "Invalid Mangopay Mandate",
76
- MESSAGE009 = "Invalid Status",
77
- MESSAGE010 = "Image dimension exceeded",
78
- MESSAGE011 = "Empty User Address",
79
- MESSAGE012 = "Empty User Legal Name",
80
- MESSAGE013 = "Invalid quantities",
81
- MESSAGE014 = "Invalid Meta-Order",
82
- MESSAGE015 = "Can not release quantity greater than claimed",
83
- MESSAGE016 = "Can not release a negative quantity of items",
84
- MESSAGE017 = "Batch is forbidden for sale",
85
- MESSAGE018 = "Trial already used",
86
- MESSAGE019 = "Unable to generate session from disposableToken for admin users",
87
- MESSAGE020 = "ETag do not match",
88
- MESSAGE021 = "Missing informations for Offisante subscription"
89
- }
@@ -13,13 +13,80 @@
13
13
  * Do not edit the class manually.
14
14
  */
15
15
  Object.defineProperty(exports, "__esModule", { value: true });
16
- exports.RestErrorMessageEnum = exports.RestErrorCodeEnum = exports.RestErrorToJSON = exports.RestErrorFromJSONTyped = exports.RestErrorFromJSON = void 0;
16
+ exports.RestErrorToJSON = exports.RestErrorFromJSONTyped = exports.RestErrorFromJSON = exports.instanceOfRestError = exports.RestErrorMessageEnum = exports.RestErrorCodeEnum = void 0;
17
+ /**
18
+ * @export
19
+ */
20
+ exports.RestErrorCodeEnum = {
21
+ CODE000: 'CODE000',
22
+ CODE001: 'CODE001',
23
+ CODE002: 'CODE002',
24
+ CODE003: 'CODE003',
25
+ CODE004: 'CODE004',
26
+ CODE005: 'CODE005',
27
+ CODE006: 'CODE006',
28
+ CODE007: 'CODE007',
29
+ CODE008: 'CODE008',
30
+ CODE009: 'CODE009',
31
+ CODE010: 'CODE010',
32
+ CODE011: 'CODE011',
33
+ CODE012: 'CODE012',
34
+ CODE013: 'CODE013',
35
+ CODE014: 'CODE014',
36
+ CODE015: 'CODE015',
37
+ CODE016: 'CODE016',
38
+ CODE017: 'CODE017',
39
+ CODE018: 'CODE018',
40
+ CODE019: 'CODE019',
41
+ CODE020: 'CODE020',
42
+ CODE021: 'CODE021',
43
+ CODE022: 'CODE022'
44
+ };
45
+ /**
46
+ * @export
47
+ */
48
+ exports.RestErrorMessageEnum = {
49
+ MESSAGE000: 'Using outdated resource',
50
+ MESSAGE001: 'Login failed',
51
+ MESSAGE002: 'Cannot renew token',
52
+ MESSAGE003: 'Invalid User CGV',
53
+ MESSAGE004: 'Resource already exists',
54
+ MESSAGE005: 'User account is disabled',
55
+ MESSAGE006: 'Invalid schedule',
56
+ MESSAGE007: 'Wrong Address according CHRONOPOST',
57
+ MESSAGE008: 'Invalid Mangopay Mandate',
58
+ MESSAGE009: 'Invalid Status',
59
+ MESSAGE010: 'Image dimension exceeded',
60
+ MESSAGE011: 'Empty User Address',
61
+ MESSAGE012: 'Empty User Legal Name',
62
+ MESSAGE013: 'Invalid quantities',
63
+ MESSAGE014: 'Invalid Meta-Order',
64
+ MESSAGE015: 'Can not release quantity greater than claimed',
65
+ MESSAGE016: 'Can not release a negative quantity of items',
66
+ MESSAGE017: 'Batch is forbidden for sale',
67
+ MESSAGE018: 'Trial already used',
68
+ MESSAGE019: 'Unable to generate session from disposableToken for admin users',
69
+ MESSAGE020: 'ETag do not match',
70
+ MESSAGE021: 'Missing informations for Offisante subscription',
71
+ MESSAGE022: 'Disabled feature'
72
+ };
73
+ /**
74
+ * Check if a given object implements the RestError interface.
75
+ */
76
+ function instanceOfRestError(value) {
77
+ if (!('code' in value) || value['code'] === undefined)
78
+ return false;
79
+ if (!('message' in value) || value['message'] === undefined)
80
+ return false;
81
+ return true;
82
+ }
83
+ exports.instanceOfRestError = instanceOfRestError;
17
84
  function RestErrorFromJSON(json) {
18
85
  return RestErrorFromJSONTyped(json, false);
19
86
  }
20
87
  exports.RestErrorFromJSON = RestErrorFromJSON;
21
88
  function RestErrorFromJSONTyped(json, ignoreDiscriminator) {
22
- if ((json === undefined) || (json === null)) {
89
+ if (json == null) {
23
90
  return json;
24
91
  }
25
92
  return {
@@ -29,73 +96,12 @@ function RestErrorFromJSONTyped(json, ignoreDiscriminator) {
29
96
  }
30
97
  exports.RestErrorFromJSONTyped = RestErrorFromJSONTyped;
31
98
  function RestErrorToJSON(value) {
32
- if (value === undefined) {
33
- return undefined;
34
- }
35
- if (value === null) {
36
- return null;
99
+ if (value == null) {
100
+ return value;
37
101
  }
38
102
  return {
39
- 'code': value.code,
40
- 'message': value.message,
103
+ 'code': value['code'],
104
+ 'message': value['message'],
41
105
  };
42
106
  }
43
107
  exports.RestErrorToJSON = RestErrorToJSON;
44
- /**
45
- * @export
46
- * @enum {string}
47
- */
48
- var RestErrorCodeEnum;
49
- (function (RestErrorCodeEnum) {
50
- RestErrorCodeEnum["CODE000"] = "CODE000";
51
- RestErrorCodeEnum["CODE001"] = "CODE001";
52
- RestErrorCodeEnum["CODE002"] = "CODE002";
53
- RestErrorCodeEnum["CODE003"] = "CODE003";
54
- RestErrorCodeEnum["CODE004"] = "CODE004";
55
- RestErrorCodeEnum["CODE005"] = "CODE005";
56
- RestErrorCodeEnum["CODE006"] = "CODE006";
57
- RestErrorCodeEnum["CODE007"] = "CODE007";
58
- RestErrorCodeEnum["CODE008"] = "CODE008";
59
- RestErrorCodeEnum["CODE009"] = "CODE009";
60
- RestErrorCodeEnum["CODE010"] = "CODE010";
61
- RestErrorCodeEnum["CODE011"] = "CODE011";
62
- RestErrorCodeEnum["CODE012"] = "CODE012";
63
- RestErrorCodeEnum["CODE013"] = "CODE013";
64
- RestErrorCodeEnum["CODE014"] = "CODE014";
65
- RestErrorCodeEnum["CODE015"] = "CODE015";
66
- RestErrorCodeEnum["CODE016"] = "CODE016";
67
- RestErrorCodeEnum["CODE017"] = "CODE017";
68
- RestErrorCodeEnum["CODE018"] = "CODE018";
69
- RestErrorCodeEnum["CODE019"] = "CODE019";
70
- RestErrorCodeEnum["CODE020"] = "CODE020";
71
- RestErrorCodeEnum["CODE021"] = "CODE021";
72
- })(RestErrorCodeEnum = exports.RestErrorCodeEnum || (exports.RestErrorCodeEnum = {}));
73
- /**
74
- * @export
75
- * @enum {string}
76
- */
77
- var RestErrorMessageEnum;
78
- (function (RestErrorMessageEnum) {
79
- RestErrorMessageEnum["MESSAGE000"] = "Using outdated resource";
80
- RestErrorMessageEnum["MESSAGE001"] = "Login failed";
81
- RestErrorMessageEnum["MESSAGE002"] = "Cannot renew token";
82
- RestErrorMessageEnum["MESSAGE003"] = "Invalid User CGV";
83
- RestErrorMessageEnum["MESSAGE004"] = "Resource already exists";
84
- RestErrorMessageEnum["MESSAGE005"] = "User account is disabled";
85
- RestErrorMessageEnum["MESSAGE006"] = "Invalid schedule";
86
- RestErrorMessageEnum["MESSAGE007"] = "Wrong Address according CHRONOPOST";
87
- RestErrorMessageEnum["MESSAGE008"] = "Invalid Mangopay Mandate";
88
- RestErrorMessageEnum["MESSAGE009"] = "Invalid Status";
89
- RestErrorMessageEnum["MESSAGE010"] = "Image dimension exceeded";
90
- RestErrorMessageEnum["MESSAGE011"] = "Empty User Address";
91
- RestErrorMessageEnum["MESSAGE012"] = "Empty User Legal Name";
92
- RestErrorMessageEnum["MESSAGE013"] = "Invalid quantities";
93
- RestErrorMessageEnum["MESSAGE014"] = "Invalid Meta-Order";
94
- RestErrorMessageEnum["MESSAGE015"] = "Can not release quantity greater than claimed";
95
- RestErrorMessageEnum["MESSAGE016"] = "Can not release a negative quantity of items";
96
- RestErrorMessageEnum["MESSAGE017"] = "Batch is forbidden for sale";
97
- RestErrorMessageEnum["MESSAGE018"] = "Trial already used";
98
- RestErrorMessageEnum["MESSAGE019"] = "Unable to generate session from disposableToken for admin users";
99
- RestErrorMessageEnum["MESSAGE020"] = "ETag do not match";
100
- RestErrorMessageEnum["MESSAGE021"] = "Missing informations for Offisante subscription";
101
- })(RestErrorMessageEnum = exports.RestErrorMessageEnum || (exports.RestErrorMessageEnum = {}));
@@ -9,7 +9,7 @@
9
9
  * https://openapi-generator.tech
10
10
  * Do not edit the class manually.
11
11
  */
12
- import { Task } from './Task';
12
+ import type { Task } from './Task';
13
13
  /**
14
14
  *
15
15
  * @export
@@ -47,6 +47,10 @@ export interface Servant {
47
47
  */
48
48
  tasks: Array<Task>;
49
49
  }
50
+ /**
51
+ * Check if a given object implements the Servant interface.
52
+ */
53
+ export declare function instanceOfServant(value: object): value is Servant;
50
54
  export declare function ServantFromJSON(json: any): Servant;
51
55
  export declare function ServantFromJSONTyped(json: any, ignoreDiscriminator: boolean): Servant;
52
56
  export declare function ServantToJSON(value?: Servant | null): any;