@lcdp/api-react-rest-client 0.0.2-0

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