@lcdp/api-react-rest-client 3.1.9 → 3.1.10

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 (204) hide show
  1. package/auth/src/models/RestError.d.ts +3 -5
  2. package/auth/src/models/RestError.js +3 -5
  3. package/catalog/src/models/RestError.d.ts +3 -5
  4. package/catalog/src/models/RestError.js +3 -5
  5. package/chargebee-hook/src/models/RestError.d.ts +3 -5
  6. package/chargebee-hook/src/models/RestError.js +3 -5
  7. package/configuration/src/models/RestError.d.ts +3 -5
  8. package/configuration/src/models/RestError.js +3 -5
  9. package/content/src/models/RestError.d.ts +3 -5
  10. package/content/src/models/RestError.js +3 -5
  11. package/favorite/src/models/RestError.d.ts +3 -5
  12. package/favorite/src/models/RestError.js +3 -5
  13. package/inventory/src/models/RestError.d.ts +3 -5
  14. package/inventory/src/models/RestError.js +3 -5
  15. package/invoice/src/models/RestError.d.ts +3 -5
  16. package/invoice/src/models/RestError.js +3 -5
  17. package/laboratory-store/src/models/RestError.d.ts +3 -5
  18. package/laboratory-store/src/models/RestError.js +3 -5
  19. package/lexicon/src/models/RestError.d.ts +3 -5
  20. package/lexicon/src/models/RestError.js +3 -5
  21. package/litigation/src/models/RestError.d.ts +3 -5
  22. package/litigation/src/models/RestError.js +3 -5
  23. package/magic-cart/src/models/ExpressOrder.d.ts +4 -4
  24. package/magic-cart/src/models/ExpressOrder.js +7 -3
  25. package/magic-cart/src/models/ShoppedOffer.d.ts +43 -0
  26. package/magic-cart/src/models/ShoppedOffer.js +53 -0
  27. package/magic-cart/src/models/index.d.ts +1 -2
  28. package/magic-cart/src/models/index.js +1 -2
  29. package/mangopay-hook/src/models/RestError.d.ts +3 -5
  30. package/mangopay-hook/src/models/RestError.js +3 -5
  31. package/notification/src/models/NotificationTypeId.d.ts +0 -1
  32. package/notification/src/models/NotificationTypeId.js +0 -1
  33. package/notification/src/models/RestError.d.ts +3 -5
  34. package/notification/src/models/RestError.js +3 -5
  35. package/order/src/apis/ManageForeorderApi.d.ts +31 -0
  36. package/order/src/apis/ManageForeorderApi.js +163 -0
  37. package/order/src/apis/ManageOrderApi.d.ts +9 -9
  38. package/order/src/apis/ManageOrderApi.js +12 -13
  39. package/order/src/apis/SearchForeorderItemApi.d.ts +44 -0
  40. package/order/src/apis/SearchForeorderItemApi.js +175 -0
  41. package/order/src/apis/index.d.ts +2 -1
  42. package/order/src/apis/index.js +2 -1
  43. package/order/src/models/AnyForeorderCreationParameters.d.ts +23 -0
  44. package/order/src/models/AnyForeorderCreationParameters.js +45 -0
  45. package/order/src/models/AnyForeorderWarning.d.ts +26 -0
  46. package/order/src/models/AnyForeorderWarning.js +50 -0
  47. package/order/src/models/AnyOrderCreationParameters.d.ts +26 -0
  48. package/order/src/models/AnyOrderCreationParameters.js +50 -0
  49. package/order/src/models/AnySource.d.ts +26 -0
  50. package/order/src/models/AnySource.js +50 -0
  51. package/order/src/models/CartForeorderCreationParameters.d.ts +37 -0
  52. package/order/src/models/CartForeorderCreationParameters.js +51 -0
  53. package/order/src/models/CartSource.d.ts +37 -0
  54. package/order/src/models/CartSource.js +49 -0
  55. package/order/src/models/CloneOrderCreationParameters.d.ts +37 -0
  56. package/order/src/models/CloneOrderCreationParameters.js +51 -0
  57. package/order/src/models/Foreorder.d.ts +155 -0
  58. package/order/src/models/Foreorder.js +128 -0
  59. package/order/src/models/ForeorderCreationParameters.d.ts +31 -0
  60. package/order/src/models/ForeorderCreationParameters.js +47 -0
  61. package/order/src/models/ForeorderItemWarning.d.ts +77 -0
  62. package/order/src/models/{OrderItemWarning.js → ForeorderItemWarning.js} +21 -18
  63. package/order/src/models/ForeorderOrderCreationParameters.d.ts +37 -0
  64. package/order/src/models/ForeorderOrderCreationParameters.js +51 -0
  65. package/order/src/models/ForeorderWarning.d.ts +51 -0
  66. package/order/src/models/{OrderWarning.js → ForeorderWarning.js} +12 -12
  67. package/order/src/models/ForeorderWarningBase.d.ts +37 -0
  68. package/order/src/models/ForeorderWarningBase.js +51 -0
  69. package/order/src/models/ForeordersWithWarnings.d.ts +39 -0
  70. package/order/src/models/ForeordersWithWarnings.js +53 -0
  71. package/order/src/models/Order.d.ts +80 -75
  72. package/order/src/models/Order.js +53 -48
  73. package/order/src/models/OrderAddedItem.d.ts +9 -9
  74. package/order/src/models/OrderAddedItem.js +18 -0
  75. package/order/src/models/OrderCreationParameters.d.ts +31 -0
  76. package/order/src/models/OrderCreationParameters.js +47 -0
  77. package/order/src/models/OrderItem.d.ts +9 -9
  78. package/order/src/models/OrderItem.js +18 -0
  79. package/order/src/models/OrderItemPrices.d.ts +8 -8
  80. package/order/src/models/OrderItemPrices.js +10 -0
  81. package/order/src/models/OrderPrices.d.ts +9 -9
  82. package/order/src/models/OrderPrices.js +18 -0
  83. package/order/src/models/OrderRefundedItem.d.ts +9 -9
  84. package/order/src/models/OrderRefundedItem.js +18 -0
  85. package/order/src/models/OrderRemovedItem.d.ts +9 -9
  86. package/order/src/models/OrderRemovedItem.js +18 -0
  87. package/order/src/models/OrderSource.d.ts +37 -0
  88. package/order/src/models/OrderSource.js +49 -0
  89. package/order/src/models/Reservation.d.ts +7 -7
  90. package/order/src/models/Reservation.js +14 -0
  91. package/order/src/models/RestError.d.ts +3 -5
  92. package/order/src/models/RestError.js +3 -5
  93. package/order/src/models/ShoppedOffer.d.ts +2 -2
  94. package/order/src/models/ShoppedOffer.js +2 -2
  95. package/order/src/models/Source.d.ts +31 -0
  96. package/order/src/models/Source.js +45 -0
  97. package/order/src/models/index.d.ts +17 -9
  98. package/order/src/models/index.js +17 -9
  99. package/package.json +1 -1
  100. package/product/src/models/RestError.d.ts +3 -5
  101. package/product/src/models/RestError.js +3 -5
  102. package/pub/src/models/RestError.d.ts +3 -5
  103. package/pub/src/models/RestError.js +3 -5
  104. package/rfx/src/models/RestError.d.ts +3 -5
  105. package/rfx/src/models/RestError.js +3 -5
  106. package/sale-offer/src/models/RestError.d.ts +3 -5
  107. package/sale-offer/src/models/RestError.js +3 -5
  108. package/servant/src/models/RestError.d.ts +3 -5
  109. package/servant/src/models/RestError.js +3 -5
  110. package/shipment/src/models/RestError.d.ts +3 -5
  111. package/shipment/src/models/RestError.js +3 -5
  112. package/shopping-cart/src/apis/ManageCartApi.d.ts +35 -24
  113. package/shopping-cart/src/apis/ManageCartApi.js +57 -120
  114. package/shopping-cart/src/apis/ManageCartLineApi.d.ts +45 -0
  115. package/shopping-cart/src/apis/ManageCartLineApi.js +238 -0
  116. package/shopping-cart/src/apis/SearchCartApi.d.ts +59 -0
  117. package/shopping-cart/src/apis/SearchCartApi.js +267 -0
  118. package/shopping-cart/src/apis/SearchCartLineApi.d.ts +41 -0
  119. package/{order/src/apis/ManageMetaOrderApi.js → shopping-cart/src/apis/SearchCartLineApi.js} +46 -41
  120. package/shopping-cart/src/apis/index.d.ts +3 -2
  121. package/shopping-cart/src/apis/index.js +3 -2
  122. package/shopping-cart/src/models/Cart.d.ts +61 -4
  123. package/shopping-cart/src/models/Cart.js +47 -2
  124. package/shopping-cart/src/models/CartCreationParameters.d.ts +44 -0
  125. package/shopping-cart/src/models/CartCreationParameters.js +56 -0
  126. package/shopping-cart/src/models/{CartSubCartLine.d.ts → CartLine.d.ts} +13 -13
  127. package/shopping-cart/src/models/{CartSubCartLine.js → CartLine.js} +11 -11
  128. package/shopping-cart/src/models/CartLineUpdateParameters.d.ts +37 -0
  129. package/shopping-cart/src/models/CartLineUpdateParameters.js +49 -0
  130. package/shopping-cart/src/models/CartLineWithWarnings.d.ts +39 -0
  131. package/shopping-cart/src/models/CartLineWithWarnings.js +49 -0
  132. package/shopping-cart/src/models/CartSummary.d.ts +31 -0
  133. package/shopping-cart/src/models/CartSummary.js +47 -0
  134. package/shopping-cart/src/models/{CartSubCartTransport.d.ts → CartTransport.d.ts} +12 -12
  135. package/shopping-cart/src/models/{CartSubCartTransport.js → CartTransport.js} +11 -11
  136. package/shopping-cart/src/models/CartUpdateParameters.d.ts +31 -0
  137. package/shopping-cart/src/models/CartUpdateParameters.js +45 -0
  138. package/shopping-cart/src/models/CartWarning.d.ts +76 -0
  139. package/shopping-cart/src/models/CartWarning.js +69 -0
  140. package/shopping-cart/src/models/CartsWithWarnings.d.ts +39 -0
  141. package/shopping-cart/src/models/CartsWithWarnings.js +49 -0
  142. package/shopping-cart/src/models/OwnerLink.d.ts +43 -0
  143. package/shopping-cart/src/models/OwnerLink.js +53 -0
  144. package/shopping-cart/src/models/PaginatedCarts.d.ts +46 -0
  145. package/shopping-cart/src/models/PaginatedCarts.js +58 -0
  146. package/shopping-cart/src/models/PagingMetadata.d.ts +49 -0
  147. package/shopping-cart/src/models/PagingMetadata.js +55 -0
  148. package/shopping-cart/src/models/RestError.d.ts +3 -5
  149. package/shopping-cart/src/models/RestError.js +3 -5
  150. package/shopping-cart/src/models/ShoppedOffer.d.ts +2 -2
  151. package/shopping-cart/src/models/ShoppedOffer.js +2 -2
  152. package/shopping-cart/src/models/index.d.ts +12 -4
  153. package/shopping-cart/src/models/index.js +12 -4
  154. package/smuggler/src/models/RestError.d.ts +3 -5
  155. package/smuggler/src/models/RestError.js +3 -5
  156. package/statistic/src/models/RestError.d.ts +3 -5
  157. package/statistic/src/models/RestError.js +3 -5
  158. package/third-party/src/models/RestError.d.ts +3 -5
  159. package/third-party/src/models/RestError.js +3 -5
  160. package/ubo/src/apis/ManageUboDeclarationApi.d.ts +2 -2
  161. package/ubo/src/apis/ManageUboDeclarationApi.js +2 -2
  162. package/ubo/src/models/RestError.d.ts +3 -5
  163. package/ubo/src/models/RestError.js +3 -5
  164. package/user/src/models/NotificationTypeId.d.ts +0 -1
  165. package/user/src/models/NotificationTypeId.js +0 -1
  166. package/user/src/models/RestError.d.ts +3 -5
  167. package/user/src/models/RestError.js +3 -5
  168. package/user/src/models/User.d.ts +7 -0
  169. package/user/src/models/User.js +3 -0
  170. package/user/src/models/UserMangopayUbo.d.ts +31 -0
  171. package/user/src/models/UserMangopayUbo.js +45 -0
  172. package/user/src/models/index.d.ts +1 -0
  173. package/user/src/models/index.js +1 -0
  174. package/wish/src/models/RestError.d.ts +3 -5
  175. package/wish/src/models/RestError.js +3 -5
  176. package/magic-cart/src/models/SaleOfferProposal.d.ts +0 -51
  177. package/magic-cart/src/models/SaleOfferProposal.js +0 -61
  178. package/magic-cart/src/models/SellerProposal.d.ts +0 -45
  179. package/magic-cart/src/models/SellerProposal.js +0 -57
  180. package/order/src/apis/ManageMetaOrderApi.d.ts +0 -45
  181. package/order/src/models/AnyMetaOrderWarning.d.ts +0 -26
  182. package/order/src/models/AnyMetaOrderWarning.js +0 -50
  183. package/order/src/models/MetaOrder.d.ts +0 -64
  184. package/order/src/models/MetaOrder.js +0 -70
  185. package/order/src/models/MetaOrderCreationParameters.d.ts +0 -38
  186. package/order/src/models/MetaOrderCreationParameters.js +0 -52
  187. package/order/src/models/MetaOrderCreationSubCartParameters.d.ts +0 -31
  188. package/order/src/models/MetaOrderCreationSubCartParameters.js +0 -47
  189. package/order/src/models/MetaOrderPrices.d.ts +0 -79
  190. package/order/src/models/MetaOrderPrices.js +0 -79
  191. package/order/src/models/MetaOrderWarning.d.ts +0 -31
  192. package/order/src/models/MetaOrderWarning.js +0 -47
  193. package/order/src/models/MetaOrderWithWarnings.d.ts +0 -39
  194. package/order/src/models/MetaOrderWithWarnings.js +0 -49
  195. package/order/src/models/OrderItemWarning.d.ts +0 -72
  196. package/order/src/models/OrderWarning.d.ts +0 -51
  197. package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +0 -107
  198. package/shopping-cart/src/apis/ManageCartSubCartApi.js +0 -556
  199. package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +0 -151
  200. package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +0 -879
  201. package/shopping-cart/src/models/CartSubCart.d.ts +0 -76
  202. package/shopping-cart/src/models/CartSubCart.js +0 -78
  203. package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +0 -37
  204. package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +0 -49
@@ -0,0 +1,238 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-monolith-service
6
+ * This is the REST API of LCDP products
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 __extends = (this && this.__extends) || (function () {
16
+ var extendStatics = function (d, b) {
17
+ extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
+ return extendStatics(d, b);
21
+ };
22
+ return function (d, b) {
23
+ if (typeof b !== "function" && b !== null)
24
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
+ extendStatics(d, b);
26
+ function __() { this.constructor = d; }
27
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
+ };
29
+ })();
30
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
31
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
32
+ return new (P || (P = Promise))(function (resolve, reject) {
33
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
34
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
35
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
36
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
37
+ });
38
+ };
39
+ var __generator = (this && this.__generator) || function (thisArg, body) {
40
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
41
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
42
+ function verb(n) { return function (v) { return step([n, v]); }; }
43
+ function step(op) {
44
+ if (f) throw new TypeError("Generator is already executing.");
45
+ while (_) try {
46
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
47
+ if (y = 0, t) op = [op[0] & 2, t.value];
48
+ switch (op[0]) {
49
+ case 0: case 1: t = op; break;
50
+ case 4: _.label++; return { value: op[1], done: false };
51
+ case 5: _.label++; y = op[1]; op = [0]; continue;
52
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
53
+ default:
54
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
55
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
56
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
57
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
58
+ if (t[2]) _.ops.pop();
59
+ _.trys.pop(); continue;
60
+ }
61
+ op = body.call(thisArg, _);
62
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
63
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
64
+ }
65
+ };
66
+ Object.defineProperty(exports, "__esModule", { value: true });
67
+ exports.ManageCartLineApi = void 0;
68
+ var runtime = require("../runtime");
69
+ var index_1 = require("../models/index");
70
+ /**
71
+ *
72
+ */
73
+ var ManageCartLineApi = /** @class */ (function (_super) {
74
+ __extends(ManageCartLineApi, _super);
75
+ function ManageCartLineApi() {
76
+ return _super !== null && _super.apply(this, arguments) || this;
77
+ }
78
+ /**
79
+ * Delete a shopping cart line. Note: Deleting a cart line does not delete the parent cart, even if it\'s the last line. The associated ad (sale offer) is not affected by this deletion.
80
+ * Delete a cart line
81
+ */
82
+ ManageCartLineApi.prototype.deleteCartLineRaw = function (requestParameters, initOverrides) {
83
+ return __awaiter(this, void 0, void 0, function () {
84
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, response_1;
85
+ return __generator(this, function (_c) {
86
+ switch (_c.label) {
87
+ case 0:
88
+ if (requestParameters['cartId'] == null) {
89
+ throw new runtime.RequiredError('cartId', 'Required parameter "cartId" was null or undefined when calling deleteCartLine().');
90
+ }
91
+ if (requestParameters['lineId'] == null) {
92
+ throw new runtime.RequiredError('lineId', 'Required parameter "lineId" was null or undefined when calling deleteCartLine().');
93
+ }
94
+ queryParameters = {};
95
+ headerParameters = {};
96
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
97
+ _a = headerParameters;
98
+ _b = "x-api-key";
99
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
100
+ case 1:
101
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
102
+ _c.label = 2;
103
+ case 2:
104
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
105
+ token = this.configuration.accessToken;
106
+ return [4 /*yield*/, token("bearerAuth", [])];
107
+ case 3:
108
+ tokenString = _c.sent();
109
+ if (tokenString) {
110
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
111
+ }
112
+ _c.label = 4;
113
+ case 4:
114
+ _c.trys.push([4, 6, , 7]);
115
+ return [4 /*yield*/, this.request({
116
+ path: "/carts/{cartId}/lines/{lineId}".replace("{".concat("cartId", "}"), encodeURIComponent(String(requestParameters['cartId']))).replace("{".concat("lineId", "}"), encodeURIComponent(String(requestParameters['lineId']))),
117
+ method: 'DELETE',
118
+ headers: headerParameters,
119
+ query: queryParameters,
120
+ }, initOverrides)];
121
+ case 5:
122
+ response = _c.sent();
123
+ return [2 /*return*/, new runtime.VoidApiResponse(response)];
124
+ case 6:
125
+ response_1 = _c.sent();
126
+ console.debug(response_1);
127
+ throw response_1;
128
+ case 7: return [2 /*return*/];
129
+ }
130
+ });
131
+ });
132
+ };
133
+ /**
134
+ * Delete a shopping cart line. Note: Deleting a cart line does not delete the parent cart, even if it\'s the last line. The associated ad (sale offer) is not affected by this deletion.
135
+ * Delete a cart line
136
+ */
137
+ ManageCartLineApi.prototype.deleteCartLine = function (requestParameters, initOverrides) {
138
+ return __awaiter(this, void 0, void 0, function () {
139
+ return __generator(this, function (_a) {
140
+ switch (_a.label) {
141
+ case 0: return [4 /*yield*/, this.deleteCartLineRaw(requestParameters, initOverrides)];
142
+ case 1:
143
+ _a.sent();
144
+ return [2 /*return*/];
145
+ }
146
+ });
147
+ });
148
+ };
149
+ /**
150
+ * Update a cart line
151
+ */
152
+ ManageCartLineApi.prototype.updateCartLineRaw = function (requestParameters, initOverrides) {
153
+ return __awaiter(this, void 0, void 0, function () {
154
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_2;
155
+ return __generator(this, function (_c) {
156
+ switch (_c.label) {
157
+ case 0:
158
+ if (requestParameters['cartId'] == null) {
159
+ throw new runtime.RequiredError('cartId', 'Required parameter "cartId" was null or undefined when calling updateCartLine().');
160
+ }
161
+ if (requestParameters['lineId'] == null) {
162
+ throw new runtime.RequiredError('lineId', 'Required parameter "lineId" was null or undefined when calling updateCartLine().');
163
+ }
164
+ if (requestParameters['cartLineUpdateParameters'] == null) {
165
+ throw new runtime.RequiredError('cartLineUpdateParameters', 'Required parameter "cartLineUpdateParameters" was null or undefined when calling updateCartLine().');
166
+ }
167
+ queryParameters = {};
168
+ headerParameters = {};
169
+ headerParameters['Content-Type'] = 'application/merge-patch+json';
170
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
171
+ _a = headerParameters;
172
+ _b = "x-api-key";
173
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
174
+ case 1:
175
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
176
+ _c.label = 2;
177
+ case 2:
178
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
179
+ token = this.configuration.accessToken;
180
+ return [4 /*yield*/, token("bearerAuth", [])];
181
+ case 3:
182
+ tokenString = _c.sent();
183
+ if (tokenString) {
184
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
185
+ }
186
+ _c.label = 4;
187
+ case 4:
188
+ _c.trys.push([4, 6, , 7]);
189
+ return [4 /*yield*/, this.request({
190
+ path: "/carts/{cartId}/lines/{lineId}".replace("{".concat("cartId", "}"), encodeURIComponent(String(requestParameters['cartId']))).replace("{".concat("lineId", "}"), encodeURIComponent(String(requestParameters['lineId']))),
191
+ method: 'PATCH',
192
+ headers: headerParameters,
193
+ query: queryParameters,
194
+ body: (0, index_1.CartLineUpdateParametersToJSON)(requestParameters['cartLineUpdateParameters']),
195
+ }, initOverrides)];
196
+ case 5:
197
+ response = _c.sent();
198
+ contentType = response.headers.get("content-type");
199
+ if (contentType && contentType.indexOf("application/json") !== -1) {
200
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.CartLineWithWarningsFromJSON)(jsonValue); })];
201
+ }
202
+ else if (contentType && contentType.indexOf("text/plain") !== -1) {
203
+ return [2 /*return*/, new runtime.TextApiResponse(response)];
204
+ }
205
+ else {
206
+ // TODO : Better handling of others application types
207
+ return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
208
+ }
209
+ return [3 /*break*/, 7];
210
+ case 6:
211
+ response_2 = _c.sent();
212
+ console.debug(response_2);
213
+ throw response_2;
214
+ case 7: return [2 /*return*/];
215
+ }
216
+ });
217
+ });
218
+ };
219
+ /**
220
+ * Update a cart line
221
+ */
222
+ ManageCartLineApi.prototype.updateCartLine = function (requestParameters, initOverrides) {
223
+ return __awaiter(this, void 0, void 0, function () {
224
+ var response;
225
+ return __generator(this, function (_a) {
226
+ switch (_a.label) {
227
+ case 0: return [4 /*yield*/, this.updateCartLineRaw(requestParameters, initOverrides)];
228
+ case 1:
229
+ response = _a.sent();
230
+ return [4 /*yield*/, response.value()];
231
+ case 2: return [2 /*return*/, _a.sent()];
232
+ }
233
+ });
234
+ });
235
+ };
236
+ return ManageCartLineApi;
237
+ }(runtime.BaseAPI));
238
+ exports.ManageCartLineApi = ManageCartLineApi;
@@ -0,0 +1,59 @@
1
+ /**
2
+ * lcdp-monolith-service
3
+ * This is the REST API of LCDP products
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 * as runtime from '../runtime';
13
+ import type { Cart, PaginatedCarts } from '../models/index';
14
+ export interface GetCartRequest {
15
+ cartId: number;
16
+ }
17
+ export interface GetCartsRequest {
18
+ oEq?: Array<number>;
19
+ sEq?: Array<number>;
20
+ channelEq?: Array<string>;
21
+ orderBy?: GetCartsOrderByEnum;
22
+ p?: number;
23
+ pp?: number;
24
+ }
25
+ /**
26
+ *
27
+ */
28
+ export declare class SearchCartApi extends runtime.BaseAPI {
29
+ /**
30
+ * Retrieve a single cart by its unique identifier.
31
+ * Get a cart by ID
32
+ */
33
+ getCartRaw(requestParameters: GetCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Cart | runtime.BlobWithMeta>>;
34
+ /**
35
+ * Retrieve a single cart by its unique identifier.
36
+ * Get a cart by ID
37
+ */
38
+ getCart(requestParameters: GetCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Cart | runtime.BlobWithMeta>;
39
+ /**
40
+ * Search and retrieve carts with filtering, sorting and pagination. Note: Empty carts (carts with no lines) are automatically excluded from results.
41
+ * Search carts
42
+ */
43
+ getCartsRaw(requestParameters: GetCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedCarts | runtime.BlobWithMeta>>;
44
+ /**
45
+ * Search and retrieve carts with filtering, sorting and pagination. Note: Empty carts (carts with no lines) are automatically excluded from results.
46
+ * Search carts
47
+ */
48
+ getCarts(requestParameters?: GetCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedCarts | runtime.BlobWithMeta>;
49
+ }
50
+ /**
51
+ * @export
52
+ */
53
+ export declare const GetCartsOrderByEnum: {
54
+ readonly UPDATED_AT_ASC: "UPDATED_AT:asc";
55
+ readonly UPDATED_AT_DESC: "UPDATED_AT:desc";
56
+ readonly TOTAL_EXCLUDING_TAXES_ASC: "TOTAL_EXCLUDING_TAXES:asc";
57
+ readonly TOTAL_EXCLUDING_TAXES_DESC: "TOTAL_EXCLUDING_TAXES:desc";
58
+ };
59
+ export declare type GetCartsOrderByEnum = typeof GetCartsOrderByEnum[keyof typeof GetCartsOrderByEnum];
@@ -0,0 +1,267 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * lcdp-monolith-service
6
+ * This is the REST API of LCDP products
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 __extends = (this && this.__extends) || (function () {
16
+ var extendStatics = function (d, b) {
17
+ extendStatics = Object.setPrototypeOf ||
18
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
19
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
20
+ return extendStatics(d, b);
21
+ };
22
+ return function (d, b) {
23
+ if (typeof b !== "function" && b !== null)
24
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
25
+ extendStatics(d, b);
26
+ function __() { this.constructor = d; }
27
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
28
+ };
29
+ })();
30
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
31
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
32
+ return new (P || (P = Promise))(function (resolve, reject) {
33
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
34
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
35
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
36
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
37
+ });
38
+ };
39
+ var __generator = (this && this.__generator) || function (thisArg, body) {
40
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
41
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
42
+ function verb(n) { return function (v) { return step([n, v]); }; }
43
+ function step(op) {
44
+ if (f) throw new TypeError("Generator is already executing.");
45
+ while (_) try {
46
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
47
+ if (y = 0, t) op = [op[0] & 2, t.value];
48
+ switch (op[0]) {
49
+ case 0: case 1: t = op; break;
50
+ case 4: _.label++; return { value: op[1], done: false };
51
+ case 5: _.label++; y = op[1]; op = [0]; continue;
52
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
53
+ default:
54
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
55
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
56
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
57
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
58
+ if (t[2]) _.ops.pop();
59
+ _.trys.pop(); continue;
60
+ }
61
+ op = body.call(thisArg, _);
62
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
63
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
64
+ }
65
+ };
66
+ Object.defineProperty(exports, "__esModule", { value: true });
67
+ exports.GetCartsOrderByEnum = exports.SearchCartApi = void 0;
68
+ var runtime = require("../runtime");
69
+ var index_1 = require("../models/index");
70
+ /**
71
+ *
72
+ */
73
+ var SearchCartApi = /** @class */ (function (_super) {
74
+ __extends(SearchCartApi, _super);
75
+ function SearchCartApi() {
76
+ return _super !== null && _super.apply(this, arguments) || this;
77
+ }
78
+ /**
79
+ * Retrieve a single cart by its unique identifier.
80
+ * Get a cart by ID
81
+ */
82
+ SearchCartApi.prototype.getCartRaw = function (requestParameters, initOverrides) {
83
+ return __awaiter(this, void 0, void 0, function () {
84
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_1;
85
+ return __generator(this, function (_c) {
86
+ switch (_c.label) {
87
+ case 0:
88
+ if (requestParameters['cartId'] == null) {
89
+ throw new runtime.RequiredError('cartId', 'Required parameter "cartId" was null or undefined when calling getCart().');
90
+ }
91
+ queryParameters = {};
92
+ headerParameters = {};
93
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
94
+ _a = headerParameters;
95
+ _b = "x-api-key";
96
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
97
+ case 1:
98
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
99
+ _c.label = 2;
100
+ case 2:
101
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
102
+ token = this.configuration.accessToken;
103
+ return [4 /*yield*/, token("bearerAuth", [])];
104
+ case 3:
105
+ tokenString = _c.sent();
106
+ if (tokenString) {
107
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
108
+ }
109
+ _c.label = 4;
110
+ case 4:
111
+ _c.trys.push([4, 6, , 7]);
112
+ return [4 /*yield*/, this.request({
113
+ path: "/carts/{cartId}".replace("{".concat("cartId", "}"), encodeURIComponent(String(requestParameters['cartId']))),
114
+ method: 'GET',
115
+ headers: headerParameters,
116
+ query: queryParameters,
117
+ }, initOverrides)];
118
+ case 5:
119
+ response = _c.sent();
120
+ contentType = response.headers.get("content-type");
121
+ if (contentType && contentType.indexOf("application/json") !== -1) {
122
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.CartFromJSON)(jsonValue); })];
123
+ }
124
+ else if (contentType && contentType.indexOf("text/plain") !== -1) {
125
+ return [2 /*return*/, new runtime.TextApiResponse(response)];
126
+ }
127
+ else {
128
+ // TODO : Better handling of others application types
129
+ return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
130
+ }
131
+ return [3 /*break*/, 7];
132
+ case 6:
133
+ response_1 = _c.sent();
134
+ console.debug(response_1);
135
+ throw response_1;
136
+ case 7: return [2 /*return*/];
137
+ }
138
+ });
139
+ });
140
+ };
141
+ /**
142
+ * Retrieve a single cart by its unique identifier.
143
+ * Get a cart by ID
144
+ */
145
+ SearchCartApi.prototype.getCart = function (requestParameters, initOverrides) {
146
+ return __awaiter(this, void 0, void 0, function () {
147
+ var response;
148
+ return __generator(this, function (_a) {
149
+ switch (_a.label) {
150
+ case 0: return [4 /*yield*/, this.getCartRaw(requestParameters, initOverrides)];
151
+ case 1:
152
+ response = _a.sent();
153
+ return [4 /*yield*/, response.value()];
154
+ case 2: return [2 /*return*/, _a.sent()];
155
+ }
156
+ });
157
+ });
158
+ };
159
+ /**
160
+ * Search and retrieve carts with filtering, sorting and pagination. Note: Empty carts (carts with no lines) are automatically excluded from results.
161
+ * Search carts
162
+ */
163
+ SearchCartApi.prototype.getCartsRaw = function (requestParameters, initOverrides) {
164
+ return __awaiter(this, void 0, void 0, function () {
165
+ var queryParameters, headerParameters, _a, _b, token, tokenString, response, contentType, response_2;
166
+ return __generator(this, function (_c) {
167
+ switch (_c.label) {
168
+ case 0:
169
+ queryParameters = {};
170
+ if (requestParameters['oEq'] != null) {
171
+ queryParameters['o[eq]'] = requestParameters['oEq'];
172
+ }
173
+ if (requestParameters['sEq'] != null) {
174
+ queryParameters['s[eq]'] = requestParameters['sEq'];
175
+ }
176
+ if (requestParameters['channelEq'] != null) {
177
+ queryParameters['channel[eq]'] = requestParameters['channelEq'];
178
+ }
179
+ if (requestParameters['orderBy'] != null) {
180
+ queryParameters['orderBy'] = requestParameters['orderBy'];
181
+ }
182
+ if (requestParameters['p'] != null) {
183
+ queryParameters['p'] = requestParameters['p'];
184
+ }
185
+ if (requestParameters['pp'] != null) {
186
+ queryParameters['pp'] = requestParameters['pp'];
187
+ }
188
+ headerParameters = {};
189
+ if (!(this.configuration && this.configuration.apiKey)) return [3 /*break*/, 2];
190
+ _a = headerParameters;
191
+ _b = "x-api-key";
192
+ return [4 /*yield*/, this.configuration.apiKey("x-api-key")];
193
+ case 1:
194
+ _a[_b] = _c.sent(); // apiKeyAuth authentication
195
+ _c.label = 2;
196
+ case 2:
197
+ if (!(this.configuration && this.configuration.accessToken)) return [3 /*break*/, 4];
198
+ token = this.configuration.accessToken;
199
+ return [4 /*yield*/, token("bearerAuth", [])];
200
+ case 3:
201
+ tokenString = _c.sent();
202
+ if (tokenString) {
203
+ headerParameters["Authorization"] = "Bearer ".concat(tokenString);
204
+ }
205
+ _c.label = 4;
206
+ case 4:
207
+ _c.trys.push([4, 6, , 7]);
208
+ return [4 /*yield*/, this.request({
209
+ path: "/carts",
210
+ method: 'GET',
211
+ headers: headerParameters,
212
+ query: queryParameters,
213
+ }, initOverrides)];
214
+ case 5:
215
+ response = _c.sent();
216
+ contentType = response.headers.get("content-type");
217
+ if (contentType && contentType.indexOf("application/json") !== -1) {
218
+ return [2 /*return*/, new runtime.JSONApiResponse(response, function (jsonValue) { return (0, index_1.PaginatedCartsFromJSON)(jsonValue); })];
219
+ }
220
+ else if (contentType && contentType.indexOf("text/plain") !== -1) {
221
+ return [2 /*return*/, new runtime.TextApiResponse(response)];
222
+ }
223
+ else {
224
+ // TODO : Better handling of others application types
225
+ return [2 /*return*/, new runtime.BlobWithMetaApiResponse(response)];
226
+ }
227
+ return [3 /*break*/, 7];
228
+ case 6:
229
+ response_2 = _c.sent();
230
+ console.debug(response_2);
231
+ throw response_2;
232
+ case 7: return [2 /*return*/];
233
+ }
234
+ });
235
+ });
236
+ };
237
+ /**
238
+ * Search and retrieve carts with filtering, sorting and pagination. Note: Empty carts (carts with no lines) are automatically excluded from results.
239
+ * Search carts
240
+ */
241
+ SearchCartApi.prototype.getCarts = function (requestParameters, initOverrides) {
242
+ if (requestParameters === void 0) { requestParameters = {}; }
243
+ return __awaiter(this, void 0, void 0, function () {
244
+ var response;
245
+ return __generator(this, function (_a) {
246
+ switch (_a.label) {
247
+ case 0: return [4 /*yield*/, this.getCartsRaw(requestParameters, initOverrides)];
248
+ case 1:
249
+ response = _a.sent();
250
+ return [4 /*yield*/, response.value()];
251
+ case 2: return [2 /*return*/, _a.sent()];
252
+ }
253
+ });
254
+ });
255
+ };
256
+ return SearchCartApi;
257
+ }(runtime.BaseAPI));
258
+ exports.SearchCartApi = SearchCartApi;
259
+ /**
260
+ * @export
261
+ */
262
+ exports.GetCartsOrderByEnum = {
263
+ UPDATED_AT_ASC: 'UPDATED_AT:asc',
264
+ UPDATED_AT_DESC: 'UPDATED_AT:desc',
265
+ TOTAL_EXCLUDING_TAXES_ASC: 'TOTAL_EXCLUDING_TAXES:asc',
266
+ TOTAL_EXCLUDING_TAXES_DESC: 'TOTAL_EXCLUDING_TAXES:desc'
267
+ };
@@ -0,0 +1,41 @@
1
+ /**
2
+ * lcdp-monolith-service
3
+ * This is the REST API of LCDP products
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 * as runtime from '../runtime';
13
+ import type { CartLine } from '../models/index';
14
+ export interface GetCartLineRequest {
15
+ cartId: number;
16
+ lineId: number;
17
+ }
18
+ export interface GetCartLinesRequest {
19
+ cartId: number;
20
+ }
21
+ /**
22
+ *
23
+ */
24
+ export declare class SearchCartLineApi extends runtime.BaseAPI {
25
+ /**
26
+ * Get a cart line
27
+ */
28
+ getCartLineRaw(requestParameters: GetCartLineRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CartLine | runtime.BlobWithMeta>>;
29
+ /**
30
+ * Get a cart line
31
+ */
32
+ getCartLine(requestParameters: GetCartLineRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CartLine | runtime.BlobWithMeta>;
33
+ /**
34
+ * Get all cart lines
35
+ */
36
+ getCartLinesRaw(requestParameters: GetCartLinesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<CartLine> | runtime.BlobWithMeta>>;
37
+ /**
38
+ * Get all cart lines
39
+ */
40
+ getCartLines(requestParameters: GetCartLinesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<CartLine> | runtime.BlobWithMeta>;
41
+ }