@lcdp/api-react-rest-client 2.5.5-LDS-3226-modification-de-commande-achete.6787436280 → 2.5.5-develop.6643075249
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.
- package/notification/src/models/NotificationTypeId.d.ts +0 -2
- package/notification/src/models/NotificationTypeId.js +0 -2
- package/order/src/apis/ManageOrderApi.d.ts +17 -6
- package/order/src/apis/ManageOrderApi.js +82 -7
- package/order/src/apis/ManageOrderItemApi.d.ts +4 -4
- package/order/src/apis/ManageOrderItemApi.js +4 -4
- package/order/src/apis/SearchOrderItemApi.d.ts +0 -2
- package/order/src/apis/SearchOrderItemApi.js +0 -2
- package/order/src/models/Order.d.ts +1 -14
- package/order/src/models/Order.js +0 -5
- package/order/src/models/OrderJournal.d.ts +0 -13
- package/order/src/models/OrderJournal.js +0 -6
- package/order/src/models/OrderStatus.d.ts +2 -4
- package/order/src/models/OrderStatus.js +2 -4
- package/order/src/models/OrderUpdateParameters.d.ts +0 -20
- package/order/src/models/OrderUpdateParameters.js +0 -8
- package/order/src/models/UpdateOrderStatusParameters.d.ts +5 -3
- package/order/src/models/UpdateOrderStatusParameters.js +4 -2
- package/order/src/models/index.d.ts +0 -1
- package/order/src/models/index.js +0 -1
- package/order-log/src/models/OrderLog.d.ts +0 -19
- package/order-log/src/models/OrderLog.js +2 -3
- package/order-log/src/models/OrderLogAllOf.d.ts +0 -19
- package/order-log/src/models/OrderLogAllOf.js +0 -7
- package/order-log/src/models/index.d.ts +0 -1
- package/order-log/src/models/index.js +0 -1
- package/package.json +1 -1
- package/user/src/models/NotificationTypeId.d.ts +0 -2
- package/user/src/models/NotificationTypeId.js +0 -2
- package/order/src/models/OrderStatusReason.d.ts +0 -24
- package/order/src/models/OrderStatusReason.js +0 -39
- package/order-log/src/models/OrderStatusReason.d.ts +0 -24
- package/order-log/src/models/OrderStatusReason.js +0 -39
|
@@ -45,8 +45,6 @@ export declare enum NotificationTypeId {
|
|
|
45
45
|
ORDERCREATEDBUYER = "ORDER_CREATED_BUYER",
|
|
46
46
|
ORDERCREATEDSELLER = "ORDER_CREATED_SELLER",
|
|
47
47
|
ORDERDAILYMAIL = "ORDER_DAILY_MAIL",
|
|
48
|
-
ORDERMODIFIED = "ORDER_MODIFIED",
|
|
49
|
-
ORDERMODIFICATIONDELAY = "ORDER_MODIFICATION_DELAY",
|
|
50
48
|
ORDERRECEIVED = "ORDER_RECEIVED",
|
|
51
49
|
ORDERSENDINGDELAY = "ORDER_SENDING_DELAY",
|
|
52
50
|
ORDERSENTBUYER = "ORDER_SENT_BUYER",
|
|
@@ -51,8 +51,6 @@ var NotificationTypeId;
|
|
|
51
51
|
NotificationTypeId["ORDERCREATEDBUYER"] = "ORDER_CREATED_BUYER";
|
|
52
52
|
NotificationTypeId["ORDERCREATEDSELLER"] = "ORDER_CREATED_SELLER";
|
|
53
53
|
NotificationTypeId["ORDERDAILYMAIL"] = "ORDER_DAILY_MAIL";
|
|
54
|
-
NotificationTypeId["ORDERMODIFIED"] = "ORDER_MODIFIED";
|
|
55
|
-
NotificationTypeId["ORDERMODIFICATIONDELAY"] = "ORDER_MODIFICATION_DELAY";
|
|
56
54
|
NotificationTypeId["ORDERRECEIVED"] = "ORDER_RECEIVED";
|
|
57
55
|
NotificationTypeId["ORDERSENDINGDELAY"] = "ORDER_SENDING_DELAY";
|
|
58
56
|
NotificationTypeId["ORDERSENTBUYER"] = "ORDER_SENT_BUYER";
|
|
@@ -10,14 +10,13 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { BaseAPI, ApiResponse, BlobWithMeta } from '../runtime';
|
|
13
|
-
import { AnomaliesUpdateParameters, Order, OrderUpdateParameters, Reservation, ReservationUpdateParameters } from '../models';
|
|
13
|
+
import { AnomaliesUpdateParameters, Order, OrderStatus, OrderUpdateParameters, Reservation, ReservationUpdateParameters } from '../models';
|
|
14
14
|
export interface CreateOrderRequest {
|
|
15
15
|
from: string;
|
|
16
16
|
}
|
|
17
17
|
export interface SetOrderAcceptedRequest {
|
|
18
18
|
orderReference: string;
|
|
19
19
|
body: boolean;
|
|
20
|
-
ifMatch?: string;
|
|
21
20
|
}
|
|
22
21
|
export interface SetOrderDeliveryConfirmedRequest {
|
|
23
22
|
orderReference: string;
|
|
@@ -44,6 +43,10 @@ export interface UpdateOrderReservationRequest {
|
|
|
44
43
|
reservationId: string;
|
|
45
44
|
reservationUpdateParameters: ReservationUpdateParameters;
|
|
46
45
|
}
|
|
46
|
+
export interface UpdateOrderStatusRequest {
|
|
47
|
+
orderReference: string;
|
|
48
|
+
body: string;
|
|
49
|
+
}
|
|
47
50
|
/**
|
|
48
51
|
* no description
|
|
49
52
|
*/
|
|
@@ -59,12 +62,12 @@ export declare class ManageOrderApi extends BaseAPI {
|
|
|
59
62
|
*/
|
|
60
63
|
createOrder(requestParameters: CreateOrderRequest): Promise<Order | BlobWithMeta>;
|
|
61
64
|
/**
|
|
62
|
-
* Set the accepted flag for order identified by OrderId. # Preconditions :
|
|
65
|
+
* Set the accepted flag for order identified by OrderId. # Preconditions : - \'paused\' property is false - Status in (WAITING_FOR_ACCEPTANCE, ACCEPTANCE_DELAY) - \'accepted\' property is false (Limitation that may be removed in the future) - You are the SELLER
|
|
63
66
|
* Set order accepted flag
|
|
64
67
|
*/
|
|
65
68
|
setOrderAcceptedRaw(requestParameters: SetOrderAcceptedRequest): Promise<ApiResponse<void>>;
|
|
66
69
|
/**
|
|
67
|
-
* Set the accepted flag for order identified by OrderId. # Preconditions :
|
|
70
|
+
* Set the accepted flag for order identified by OrderId. # Preconditions : - \'paused\' property is false - Status in (WAITING_FOR_ACCEPTANCE, ACCEPTANCE_DELAY) - \'accepted\' property is false (Limitation that may be removed in the future) - You are the SELLER
|
|
68
71
|
* Set order accepted flag
|
|
69
72
|
*/
|
|
70
73
|
setOrderAccepted(requestParameters: SetOrderAcceptedRequest): Promise<void>;
|
|
@@ -99,12 +102,10 @@ export declare class ManageOrderApi extends BaseAPI {
|
|
|
99
102
|
*/
|
|
100
103
|
setOrderPaused(requestParameters: SetOrderPausedRequest): Promise<void>;
|
|
101
104
|
/**
|
|
102
|
-
* # Preconditions : ## tags - You are an admin ## statusReason / statusCause - You are the user who set the status or you are currently setting the status ## Status (As Admin) - Always possible ## Status (As Buyer/Seller) - CANCELED: > Current status in (WAITING_FOR_SELLER_ACCEPTANCE, WAITING_FOR_BUYER_ACCEPTANCE, SELLER_ACCEPTANCE_DELAY, BUYER_ACCEPTANCE_DELAY) - OTHERS: > Not authorized
|
|
103
105
|
* Update an order
|
|
104
106
|
*/
|
|
105
107
|
updateOrderRaw(requestParameters: UpdateOrderRequest): Promise<ApiResponse<Order | BlobWithMeta>>;
|
|
106
108
|
/**
|
|
107
|
-
* # Preconditions : ## tags - You are an admin ## statusReason / statusCause - You are the user who set the status or you are currently setting the status ## Status (As Admin) - Always possible ## Status (As Buyer/Seller) - CANCELED: > Current status in (WAITING_FOR_SELLER_ACCEPTANCE, WAITING_FOR_BUYER_ACCEPTANCE, SELLER_ACCEPTANCE_DELAY, BUYER_ACCEPTANCE_DELAY) - OTHERS: > Not authorized
|
|
108
109
|
* Update an order
|
|
109
110
|
*/
|
|
110
111
|
updateOrder(requestParameters: UpdateOrderRequest): Promise<Order | BlobWithMeta>;
|
|
@@ -126,4 +127,14 @@ export declare class ManageOrderApi extends BaseAPI {
|
|
|
126
127
|
* Update order reservations
|
|
127
128
|
*/
|
|
128
129
|
updateOrderReservation(requestParameters: UpdateOrderReservationRequest): Promise<Reservation | BlobWithMeta>;
|
|
130
|
+
/**
|
|
131
|
+
* Allow to update order status directly.
|
|
132
|
+
* Update order status
|
|
133
|
+
*/
|
|
134
|
+
updateOrderStatusRaw(requestParameters: UpdateOrderStatusRequest): Promise<ApiResponse<OrderStatus | BlobWithMeta>>;
|
|
135
|
+
/**
|
|
136
|
+
* Allow to update order status directly.
|
|
137
|
+
* Update order status
|
|
138
|
+
*/
|
|
139
|
+
updateOrderStatus(requestParameters: UpdateOrderStatusRequest): Promise<OrderStatus | BlobWithMeta>;
|
|
129
140
|
}
|
|
@@ -154,7 +154,7 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
154
154
|
});
|
|
155
155
|
};
|
|
156
156
|
/**
|
|
157
|
-
* Set the accepted flag for order identified by OrderId. # Preconditions :
|
|
157
|
+
* Set the accepted flag for order identified by OrderId. # Preconditions : - \'paused\' property is false - Status in (WAITING_FOR_ACCEPTANCE, ACCEPTANCE_DELAY) - \'accepted\' property is false (Limitation that may be removed in the future) - You are the SELLER
|
|
158
158
|
* Set order accepted flag
|
|
159
159
|
*/
|
|
160
160
|
ManageOrderApi.prototype.setOrderAcceptedRaw = function (requestParameters) {
|
|
@@ -172,9 +172,6 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
172
172
|
queryParameters = {};
|
|
173
173
|
headerParameters = {};
|
|
174
174
|
headerParameters['Content-Type'] = 'application/json';
|
|
175
|
-
if (requestParameters.ifMatch !== undefined && requestParameters.ifMatch !== null) {
|
|
176
|
-
headerParameters['If-Match'] = String(requestParameters.ifMatch);
|
|
177
|
-
}
|
|
178
175
|
if (this.configuration && this.configuration.apiKey) {
|
|
179
176
|
headerParameters["x-api-key"] = this.configuration.apiKey("x-api-key"); // apiKeyAuth authentication
|
|
180
177
|
}
|
|
@@ -208,7 +205,7 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
208
205
|
});
|
|
209
206
|
};
|
|
210
207
|
/**
|
|
211
|
-
* Set the accepted flag for order identified by OrderId. # Preconditions :
|
|
208
|
+
* Set the accepted flag for order identified by OrderId. # Preconditions : - \'paused\' property is false - Status in (WAITING_FOR_ACCEPTANCE, ACCEPTANCE_DELAY) - \'accepted\' property is false (Limitation that may be removed in the future) - You are the SELLER
|
|
212
209
|
* Set order accepted flag
|
|
213
210
|
*/
|
|
214
211
|
ManageOrderApi.prototype.setOrderAccepted = function (requestParameters) {
|
|
@@ -425,7 +422,6 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
425
422
|
});
|
|
426
423
|
};
|
|
427
424
|
/**
|
|
428
|
-
* # Preconditions : ## tags - You are an admin ## statusReason / statusCause - You are the user who set the status or you are currently setting the status ## Status (As Admin) - Always possible ## Status (As Buyer/Seller) - CANCELED: > Current status in (WAITING_FOR_SELLER_ACCEPTANCE, WAITING_FOR_BUYER_ACCEPTANCE, SELLER_ACCEPTANCE_DELAY, BUYER_ACCEPTANCE_DELAY) - OTHERS: > Not authorized
|
|
429
425
|
* Update an order
|
|
430
426
|
*/
|
|
431
427
|
ManageOrderApi.prototype.updateOrderRaw = function (requestParameters) {
|
|
@@ -484,7 +480,6 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
484
480
|
});
|
|
485
481
|
};
|
|
486
482
|
/**
|
|
487
|
-
* # Preconditions : ## tags - You are an admin ## statusReason / statusCause - You are the user who set the status or you are currently setting the status ## Status (As Admin) - Always possible ## Status (As Buyer/Seller) - CANCELED: > Current status in (WAITING_FOR_SELLER_ACCEPTANCE, WAITING_FOR_BUYER_ACCEPTANCE, SELLER_ACCEPTANCE_DELAY, BUYER_ACCEPTANCE_DELAY) - OTHERS: > Not authorized
|
|
488
483
|
* Update an order
|
|
489
484
|
*/
|
|
490
485
|
ManageOrderApi.prototype.updateOrder = function (requestParameters) {
|
|
@@ -649,6 +644,86 @@ var ManageOrderApi = /** @class */ (function (_super) {
|
|
|
649
644
|
});
|
|
650
645
|
});
|
|
651
646
|
};
|
|
647
|
+
/**
|
|
648
|
+
* Allow to update order status directly.
|
|
649
|
+
* Update order status
|
|
650
|
+
*/
|
|
651
|
+
ManageOrderApi.prototype.updateOrderStatusRaw = function (requestParameters) {
|
|
652
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
653
|
+
var queryParameters, headerParameters, token, tokenString, response, contentType, response_9;
|
|
654
|
+
return __generator(this, function (_a) {
|
|
655
|
+
switch (_a.label) {
|
|
656
|
+
case 0:
|
|
657
|
+
if (requestParameters.orderReference === null || requestParameters.orderReference === undefined) {
|
|
658
|
+
throw new runtime_1.RequiredError('orderReference', 'Required parameter requestParameters.orderReference was null or undefined when calling updateOrderStatus.');
|
|
659
|
+
}
|
|
660
|
+
if (requestParameters.body === null || requestParameters.body === undefined) {
|
|
661
|
+
throw new runtime_1.RequiredError('body', 'Required parameter requestParameters.body was null or undefined when calling updateOrderStatus.');
|
|
662
|
+
}
|
|
663
|
+
queryParameters = {};
|
|
664
|
+
headerParameters = {};
|
|
665
|
+
headerParameters['Content-Type'] = 'application/json';
|
|
666
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
667
|
+
headerParameters["x-api-key"] = this.configuration.apiKey("x-api-key"); // apiKeyAuth authentication
|
|
668
|
+
}
|
|
669
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
670
|
+
token = this.configuration.accessToken;
|
|
671
|
+
tokenString = typeof token === 'function' ? token("bearerAuth", []) : token;
|
|
672
|
+
if (tokenString) {
|
|
673
|
+
headerParameters["Authorization"] = "Bearer ".concat(tokenString);
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
_a.label = 1;
|
|
677
|
+
case 1:
|
|
678
|
+
_a.trys.push([1, 3, , 4]);
|
|
679
|
+
return [4 /*yield*/, this.request({
|
|
680
|
+
path: "/orders/{orderReference}/status".replace("{".concat("orderReference", "}"), encodeURIComponent(String(requestParameters.orderReference))),
|
|
681
|
+
method: 'PUT',
|
|
682
|
+
headers: headerParameters,
|
|
683
|
+
query: queryParameters,
|
|
684
|
+
body: requestParameters.body,
|
|
685
|
+
})];
|
|
686
|
+
case 2:
|
|
687
|
+
response = _a.sent();
|
|
688
|
+
contentType = response.headers.get("content-type");
|
|
689
|
+
if (contentType && contentType.indexOf("application/json") !== -1) {
|
|
690
|
+
return [2 /*return*/, new runtime_1.JSONApiResponse(response, function (jsonValue) { return (0, models_1.OrderStatusFromJSON)(jsonValue); })];
|
|
691
|
+
}
|
|
692
|
+
else if (contentType && contentType.indexOf("text/plain") !== -1) {
|
|
693
|
+
return [2 /*return*/, new runtime_1.TextApiResponse(response)];
|
|
694
|
+
}
|
|
695
|
+
else {
|
|
696
|
+
// TODO : Better handling of others application types
|
|
697
|
+
return [2 /*return*/, new runtime_1.BlobWithMetaApiResponse(response)];
|
|
698
|
+
}
|
|
699
|
+
return [3 /*break*/, 4];
|
|
700
|
+
case 3:
|
|
701
|
+
response_9 = _a.sent();
|
|
702
|
+
console.debug(response_9);
|
|
703
|
+
throw response_9;
|
|
704
|
+
case 4: return [2 /*return*/];
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
});
|
|
708
|
+
};
|
|
709
|
+
/**
|
|
710
|
+
* Allow to update order status directly.
|
|
711
|
+
* Update order status
|
|
712
|
+
*/
|
|
713
|
+
ManageOrderApi.prototype.updateOrderStatus = function (requestParameters) {
|
|
714
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
715
|
+
var response;
|
|
716
|
+
return __generator(this, function (_a) {
|
|
717
|
+
switch (_a.label) {
|
|
718
|
+
case 0: return [4 /*yield*/, this.updateOrderStatusRaw(requestParameters)];
|
|
719
|
+
case 1:
|
|
720
|
+
response = _a.sent();
|
|
721
|
+
return [4 /*yield*/, response.value()];
|
|
722
|
+
case 2: return [2 /*return*/, _a.sent()];
|
|
723
|
+
}
|
|
724
|
+
});
|
|
725
|
+
});
|
|
726
|
+
};
|
|
652
727
|
return ManageOrderApi;
|
|
653
728
|
}(runtime_1.BaseAPI));
|
|
654
729
|
exports.ManageOrderApi = ManageOrderApi;
|
|
@@ -48,12 +48,12 @@ export declare class ManageOrderItemApi extends BaseAPI {
|
|
|
48
48
|
*/
|
|
49
49
|
createOrUpdateOrderItem(requestParameters: CreateOrUpdateOrderItemRequest): Promise<OrderItem | BlobWithMeta>;
|
|
50
50
|
/**
|
|
51
|
-
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
51
|
+
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
52
52
|
* Delete order item
|
|
53
53
|
*/
|
|
54
54
|
deleteOrderItemRaw(requestParameters: DeleteOrderItemRequest): Promise<ApiResponse<void>>;
|
|
55
55
|
/**
|
|
56
|
-
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
56
|
+
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
57
57
|
* Delete order item
|
|
58
58
|
*/
|
|
59
59
|
deleteOrderItem(requestParameters: DeleteOrderItemRequest): Promise<void>;
|
|
@@ -68,12 +68,12 @@ export declare class ManageOrderItemApi extends BaseAPI {
|
|
|
68
68
|
*/
|
|
69
69
|
deleteOrderRemovedItem(requestParameters: DeleteOrderRemovedItemRequest): Promise<void>;
|
|
70
70
|
/**
|
|
71
|
-
* Important note :
|
|
71
|
+
* Important note : As a business concern, it is best to use \"deleteOrderItem\" when possible to free up the line in the order. See OrderItemsOperations to check when \"deleteOrderItem\" can be called. Restrictions : - Order item new quantity should be less or equals the current one Preconditions : - No invoice edited for this order - No payment transaction linked to this order
|
|
72
72
|
* Update order item
|
|
73
73
|
*/
|
|
74
74
|
updateOrderItemRaw(requestParameters: UpdateOrderItemRequest): Promise<ApiResponse<OrderItem | BlobWithMeta>>;
|
|
75
75
|
/**
|
|
76
|
-
* Important note :
|
|
76
|
+
* Important note : As a business concern, it is best to use \"deleteOrderItem\" when possible to free up the line in the order. See OrderItemsOperations to check when \"deleteOrderItem\" can be called. Restrictions : - Order item new quantity should be less or equals the current one Preconditions : - No invoice edited for this order - No payment transaction linked to this order
|
|
77
77
|
* Update order item
|
|
78
78
|
*/
|
|
79
79
|
updateOrderItem(requestParameters: UpdateOrderItemRequest): Promise<OrderItem | BlobWithMeta>;
|
|
@@ -156,7 +156,7 @@ var ManageOrderItemApi = /** @class */ (function (_super) {
|
|
|
156
156
|
});
|
|
157
157
|
};
|
|
158
158
|
/**
|
|
159
|
-
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
159
|
+
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
160
160
|
* Delete order item
|
|
161
161
|
*/
|
|
162
162
|
ManageOrderItemApi.prototype.deleteOrderItemRaw = function (requestParameters) {
|
|
@@ -205,7 +205,7 @@ var ManageOrderItemApi = /** @class */ (function (_super) {
|
|
|
205
205
|
});
|
|
206
206
|
};
|
|
207
207
|
/**
|
|
208
|
-
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
208
|
+
* Preconditions : - Order items can be removed (If refund is needed, deletion will be forbidden) - No invoice edited for this order - No payment transaction linked to this order
|
|
209
209
|
* Delete order item
|
|
210
210
|
*/
|
|
211
211
|
ManageOrderItemApi.prototype.deleteOrderItem = function (requestParameters) {
|
|
@@ -286,7 +286,7 @@ var ManageOrderItemApi = /** @class */ (function (_super) {
|
|
|
286
286
|
});
|
|
287
287
|
};
|
|
288
288
|
/**
|
|
289
|
-
* Important note :
|
|
289
|
+
* Important note : As a business concern, it is best to use \"deleteOrderItem\" when possible to free up the line in the order. See OrderItemsOperations to check when \"deleteOrderItem\" can be called. Restrictions : - Order item new quantity should be less or equals the current one Preconditions : - No invoice edited for this order - No payment transaction linked to this order
|
|
290
290
|
* Update order item
|
|
291
291
|
*/
|
|
292
292
|
ManageOrderItemApi.prototype.updateOrderItemRaw = function (requestParameters) {
|
|
@@ -351,7 +351,7 @@ var ManageOrderItemApi = /** @class */ (function (_super) {
|
|
|
351
351
|
});
|
|
352
352
|
};
|
|
353
353
|
/**
|
|
354
|
-
* Important note :
|
|
354
|
+
* Important note : As a business concern, it is best to use \"deleteOrderItem\" when possible to free up the line in the order. See OrderItemsOperations to check when \"deleteOrderItem\" can be called. Restrictions : - Order item new quantity should be less or equals the current one Preconditions : - No invoice edited for this order - No payment transaction linked to this order
|
|
355
355
|
* Update order item
|
|
356
356
|
*/
|
|
357
357
|
ManageOrderItemApi.prototype.updateOrderItem = function (requestParameters) {
|
|
@@ -69,12 +69,10 @@ export declare class SearchOrderItemApi extends BaseAPI {
|
|
|
69
69
|
*/
|
|
70
70
|
getOrderRefundedItems(requestParameters: GetOrderRefundedItemsRequest): Promise<Array<OrderRefundedItem> | BlobWithMeta>;
|
|
71
71
|
/**
|
|
72
|
-
* # Preconditions : - You are buyer/seller of the order or you are administrator
|
|
73
72
|
* Get removed items for order identified by orderReference
|
|
74
73
|
*/
|
|
75
74
|
getOrderRemovedItemsRaw(requestParameters: GetOrderRemovedItemsRequest): Promise<ApiResponse<Array<OrderRemovedItem> | BlobWithMeta>>;
|
|
76
75
|
/**
|
|
77
|
-
* # Preconditions : - You are buyer/seller of the order or you are administrator
|
|
78
76
|
* Get removed items for order identified by orderReference
|
|
79
77
|
*/
|
|
80
78
|
getOrderRemovedItems(requestParameters: GetOrderRemovedItemsRequest): Promise<Array<OrderRemovedItem> | BlobWithMeta>;
|
|
@@ -379,7 +379,6 @@ var SearchOrderItemApi = /** @class */ (function (_super) {
|
|
|
379
379
|
});
|
|
380
380
|
};
|
|
381
381
|
/**
|
|
382
|
-
* # Preconditions : - You are buyer/seller of the order or you are administrator
|
|
383
382
|
* Get removed items for order identified by orderReference
|
|
384
383
|
*/
|
|
385
384
|
SearchOrderItemApi.prototype.getOrderRemovedItemsRaw = function (requestParameters) {
|
|
@@ -439,7 +438,6 @@ var SearchOrderItemApi = /** @class */ (function (_super) {
|
|
|
439
438
|
});
|
|
440
439
|
};
|
|
441
440
|
/**
|
|
442
|
-
* # Preconditions : - You are buyer/seller of the order or you are administrator
|
|
443
441
|
* Get removed items for order identified by orderReference
|
|
444
442
|
*/
|
|
445
443
|
SearchOrderItemApi.prototype.getOrderRemovedItems = function (requestParameters) {
|
|
@@ -15,13 +15,12 @@ import { HttpLink } from './HttpLink';
|
|
|
15
15
|
import { OrderJournal } from './OrderJournal';
|
|
16
16
|
import { OrderPrices } from './OrderPrices';
|
|
17
17
|
import { OrderStatus } from './OrderStatus';
|
|
18
|
-
import { OrderStatusReason } from './OrderStatusReason';
|
|
19
18
|
import { OrderStorageType } from './OrderStorageType';
|
|
20
19
|
import { OrderThreads } from './OrderThreads';
|
|
21
20
|
import { OrderType } from './OrderType';
|
|
22
21
|
import { UserLink } from './UserLink';
|
|
23
22
|
/**
|
|
24
|
-
* One order contain all items that a buyer request to one seller. If shipping address is empty, use billing address as shipping address
|
|
23
|
+
* One order contain all items that a buyer request to one seller. If shipping address is empty, use billing address as shipping address
|
|
25
24
|
* @export
|
|
26
25
|
* @interface Order
|
|
27
26
|
*/
|
|
@@ -44,18 +43,6 @@ export interface Order {
|
|
|
44
43
|
* @memberof Order
|
|
45
44
|
*/
|
|
46
45
|
status: OrderStatus;
|
|
47
|
-
/**
|
|
48
|
-
*
|
|
49
|
-
* @type {OrderStatusReason}
|
|
50
|
-
* @memberof Order
|
|
51
|
-
*/
|
|
52
|
-
statusReason: OrderStatusReason;
|
|
53
|
-
/**
|
|
54
|
-
* Smart sentence given detail about the current status
|
|
55
|
-
* @type {string}
|
|
56
|
-
* @memberof Order
|
|
57
|
-
*/
|
|
58
|
-
statusComment?: string | null;
|
|
59
46
|
/**
|
|
60
47
|
* True if the seller accepted the order, false if not
|
|
61
48
|
* @type {boolean}
|
|
@@ -21,7 +21,6 @@ var HttpLink_1 = require("./HttpLink");
|
|
|
21
21
|
var OrderJournal_1 = require("./OrderJournal");
|
|
22
22
|
var OrderPrices_1 = require("./OrderPrices");
|
|
23
23
|
var OrderStatus_1 = require("./OrderStatus");
|
|
24
|
-
var OrderStatusReason_1 = require("./OrderStatusReason");
|
|
25
24
|
var OrderStorageType_1 = require("./OrderStorageType");
|
|
26
25
|
var OrderThreads_1 = require("./OrderThreads");
|
|
27
26
|
var OrderType_1 = require("./OrderType");
|
|
@@ -38,8 +37,6 @@ function OrderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
38
37
|
'reference': json['reference'],
|
|
39
38
|
'type': (0, OrderType_1.OrderTypeFromJSON)(json['type']),
|
|
40
39
|
'status': (0, OrderStatus_1.OrderStatusFromJSON)(json['status']),
|
|
41
|
-
'statusReason': (0, OrderStatusReason_1.OrderStatusReasonFromJSON)(json['statusReason']),
|
|
42
|
-
'statusComment': !(0, runtime_1.exists)(json, 'statusComment') ? json['statusComment'] : json['statusComment'],
|
|
43
40
|
'accepted': json['accepted'],
|
|
44
41
|
'paused': json['paused'],
|
|
45
42
|
'inLitigation': json['inLitigation'],
|
|
@@ -81,8 +78,6 @@ function OrderToJSON(value) {
|
|
|
81
78
|
'reference': value.reference,
|
|
82
79
|
'type': (0, OrderType_1.OrderTypeToJSON)(value.type),
|
|
83
80
|
'status': (0, OrderStatus_1.OrderStatusToJSON)(value.status),
|
|
84
|
-
'statusReason': (0, OrderStatusReason_1.OrderStatusReasonToJSON)(value.statusReason),
|
|
85
|
-
'statusComment': value.statusComment,
|
|
86
81
|
'accepted': value.accepted,
|
|
87
82
|
'paused': value.paused,
|
|
88
83
|
'inLitigation': value.inLitigation,
|
|
@@ -9,25 +9,12 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { OrderPrices } from './OrderPrices';
|
|
13
12
|
/**
|
|
14
13
|
*
|
|
15
14
|
* @export
|
|
16
15
|
* @interface OrderJournal
|
|
17
16
|
*/
|
|
18
17
|
export interface OrderJournal {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {OrderPrices}
|
|
22
|
-
* @memberof OrderJournal
|
|
23
|
-
*/
|
|
24
|
-
pricesOnCreation?: OrderPrices;
|
|
25
|
-
/**
|
|
26
|
-
* Id of the user that modified status
|
|
27
|
-
* @type {number}
|
|
28
|
-
* @memberof OrderJournal
|
|
29
|
-
*/
|
|
30
|
-
statusModifiedBy: number | null;
|
|
31
18
|
/**
|
|
32
19
|
* Date when free shipping was reached
|
|
33
20
|
* @type {Date}
|
|
@@ -14,8 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OrderJournalToJSON = exports.OrderJournalFromJSONTyped = exports.OrderJournalFromJSON = void 0;
|
|
17
|
-
var runtime_1 = require("../runtime");
|
|
18
|
-
var OrderPrices_1 = require("./OrderPrices");
|
|
19
17
|
function OrderJournalFromJSON(json) {
|
|
20
18
|
return OrderJournalFromJSONTyped(json, false);
|
|
21
19
|
}
|
|
@@ -25,8 +23,6 @@ function OrderJournalFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
25
23
|
return json;
|
|
26
24
|
}
|
|
27
25
|
return {
|
|
28
|
-
'pricesOnCreation': !(0, runtime_1.exists)(json, 'pricesOnCreation') ? undefined : (0, OrderPrices_1.OrderPricesFromJSON)(json['pricesOnCreation']),
|
|
29
|
-
'statusModifiedBy': json['statusModifiedBy'],
|
|
30
26
|
'freeShippingReachedDate': (json['freeShippingReachedDate'] === null ? null : new Date(json['freeShippingReachedDate'])),
|
|
31
27
|
};
|
|
32
28
|
}
|
|
@@ -39,8 +35,6 @@ function OrderJournalToJSON(value) {
|
|
|
39
35
|
return null;
|
|
40
36
|
}
|
|
41
37
|
return {
|
|
42
|
-
'pricesOnCreation': (0, OrderPrices_1.OrderPricesToJSON)(value.pricesOnCreation),
|
|
43
|
-
'statusModifiedBy': value.statusModifiedBy,
|
|
44
38
|
'freeShippingReachedDate': (value.freeShippingReachedDate === null ? null : value.freeShippingReachedDate.toISOString()),
|
|
45
39
|
};
|
|
46
40
|
}
|
|
@@ -15,10 +15,8 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare enum OrderStatus {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
SELLERACCEPTANCEDELAY = "SELLER_ACCEPTANCE_DELAY",
|
|
21
|
-
BUYERACCEPTANCEDELAY = "BUYER_ACCEPTANCE_DELAY",
|
|
18
|
+
WAITINGFORACCEPTANCE = "WAITING_FOR_ACCEPTANCE",
|
|
19
|
+
ACCEPTANCEDELAY = "ACCEPTANCE_DELAY",
|
|
22
20
|
WAITINGFORSENDING = "WAITING_FOR_SENDING",
|
|
23
21
|
SENDINGDELAY = "SENDING_DELAY",
|
|
24
22
|
DELIVERYONGOING = "DELIVERY_ONGOING",
|
|
@@ -21,10 +21,8 @@ exports.OrderStatusToJSON = exports.OrderStatusFromJSONTyped = exports.OrderStat
|
|
|
21
21
|
*/
|
|
22
22
|
var OrderStatus;
|
|
23
23
|
(function (OrderStatus) {
|
|
24
|
-
OrderStatus["
|
|
25
|
-
OrderStatus["
|
|
26
|
-
OrderStatus["SELLERACCEPTANCEDELAY"] = "SELLER_ACCEPTANCE_DELAY";
|
|
27
|
-
OrderStatus["BUYERACCEPTANCEDELAY"] = "BUYER_ACCEPTANCE_DELAY";
|
|
24
|
+
OrderStatus["WAITINGFORACCEPTANCE"] = "WAITING_FOR_ACCEPTANCE";
|
|
25
|
+
OrderStatus["ACCEPTANCEDELAY"] = "ACCEPTANCE_DELAY";
|
|
28
26
|
OrderStatus["WAITINGFORSENDING"] = "WAITING_FOR_SENDING";
|
|
29
27
|
OrderStatus["SENDINGDELAY"] = "SENDING_DELAY";
|
|
30
28
|
OrderStatus["DELIVERYONGOING"] = "DELIVERY_ONGOING";
|
|
@@ -9,32 +9,12 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import { OrderStatusReason } from './OrderStatusReason';
|
|
13
|
-
import { UpdateOrderStatusParameters } from './UpdateOrderStatusParameters';
|
|
14
12
|
/**
|
|
15
13
|
*
|
|
16
14
|
* @export
|
|
17
15
|
* @interface OrderUpdateParameters
|
|
18
16
|
*/
|
|
19
17
|
export interface OrderUpdateParameters {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {UpdateOrderStatusParameters}
|
|
23
|
-
* @memberof OrderUpdateParameters
|
|
24
|
-
*/
|
|
25
|
-
status?: UpdateOrderStatusParameters;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {OrderStatusReason}
|
|
29
|
-
* @memberof OrderUpdateParameters
|
|
30
|
-
*/
|
|
31
|
-
statusReason?: OrderStatusReason;
|
|
32
|
-
/**
|
|
33
|
-
* Smart sentence given detail about the new status
|
|
34
|
-
* @type {string}
|
|
35
|
-
* @memberof OrderUpdateParameters
|
|
36
|
-
*/
|
|
37
|
-
statusComment?: string | null;
|
|
38
18
|
/**
|
|
39
19
|
* Labels of the order
|
|
40
20
|
* @type {Array<string>}
|
|
@@ -15,8 +15,6 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OrderUpdateParametersToJSON = exports.OrderUpdateParametersFromJSONTyped = exports.OrderUpdateParametersFromJSON = void 0;
|
|
17
17
|
var runtime_1 = require("../runtime");
|
|
18
|
-
var OrderStatusReason_1 = require("./OrderStatusReason");
|
|
19
|
-
var UpdateOrderStatusParameters_1 = require("./UpdateOrderStatusParameters");
|
|
20
18
|
function OrderUpdateParametersFromJSON(json) {
|
|
21
19
|
return OrderUpdateParametersFromJSONTyped(json, false);
|
|
22
20
|
}
|
|
@@ -26,9 +24,6 @@ function OrderUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
24
|
return json;
|
|
27
25
|
}
|
|
28
26
|
return {
|
|
29
|
-
'status': !(0, runtime_1.exists)(json, 'status') ? undefined : (0, UpdateOrderStatusParameters_1.UpdateOrderStatusParametersFromJSON)(json['status']),
|
|
30
|
-
'statusReason': !(0, runtime_1.exists)(json, 'statusReason') ? undefined : (0, OrderStatusReason_1.OrderStatusReasonFromJSON)(json['statusReason']),
|
|
31
|
-
'statusComment': !(0, runtime_1.exists)(json, 'statusComment') ? json['statusComment'] : json['statusComment'],
|
|
32
27
|
'tags': !(0, runtime_1.exists)(json, 'tags') ? undefined : json['tags'],
|
|
33
28
|
};
|
|
34
29
|
}
|
|
@@ -41,9 +36,6 @@ function OrderUpdateParametersToJSON(value) {
|
|
|
41
36
|
return null;
|
|
42
37
|
}
|
|
43
38
|
return {
|
|
44
|
-
'status': (0, UpdateOrderStatusParameters_1.UpdateOrderStatusParametersToJSON)(value.status),
|
|
45
|
-
'statusReason': (0, OrderStatusReason_1.OrderStatusReasonToJSON)(value.statusReason),
|
|
46
|
-
'statusComment': value.statusComment,
|
|
47
39
|
'tags': value.tags,
|
|
48
40
|
};
|
|
49
41
|
}
|
|
@@ -15,14 +15,16 @@
|
|
|
15
15
|
* @enum {string}
|
|
16
16
|
*/
|
|
17
17
|
export declare enum UpdateOrderStatusParameters {
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
WAITINGFORACCEPTANCE = "WAITING_FOR_ACCEPTANCE",
|
|
19
|
+
ACCEPTANCEDELAY = "ACCEPTANCE_DELAY",
|
|
20
20
|
WAITINGFORSENDING = "WAITING_FOR_SENDING",
|
|
21
|
+
SENDINGDELAY = "SENDING_DELAY",
|
|
21
22
|
DELIVERYONGOING = "DELIVERY_ONGOING",
|
|
22
23
|
WAITINGFORVALIDATION = "WAITING_FOR_VALIDATION",
|
|
23
24
|
CANCELED = "CANCELED",
|
|
24
25
|
ARCHIVED = "ARCHIVED",
|
|
25
|
-
WAITINGFORADMINVALIDATION = "WAITING_FOR_ADMIN_VALIDATION"
|
|
26
|
+
WAITINGFORADMINVALIDATION = "WAITING_FOR_ADMIN_VALIDATION",
|
|
27
|
+
DELIVERYLATE = "DELIVERY_LATE"
|
|
26
28
|
}
|
|
27
29
|
export declare function UpdateOrderStatusParametersFromJSON(json: any): UpdateOrderStatusParameters;
|
|
28
30
|
export declare function UpdateOrderStatusParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrderStatusParameters;
|
|
@@ -21,14 +21,16 @@ exports.UpdateOrderStatusParametersToJSON = exports.UpdateOrderStatusParametersF
|
|
|
21
21
|
*/
|
|
22
22
|
var UpdateOrderStatusParameters;
|
|
23
23
|
(function (UpdateOrderStatusParameters) {
|
|
24
|
-
UpdateOrderStatusParameters["
|
|
25
|
-
UpdateOrderStatusParameters["
|
|
24
|
+
UpdateOrderStatusParameters["WAITINGFORACCEPTANCE"] = "WAITING_FOR_ACCEPTANCE";
|
|
25
|
+
UpdateOrderStatusParameters["ACCEPTANCEDELAY"] = "ACCEPTANCE_DELAY";
|
|
26
26
|
UpdateOrderStatusParameters["WAITINGFORSENDING"] = "WAITING_FOR_SENDING";
|
|
27
|
+
UpdateOrderStatusParameters["SENDINGDELAY"] = "SENDING_DELAY";
|
|
27
28
|
UpdateOrderStatusParameters["DELIVERYONGOING"] = "DELIVERY_ONGOING";
|
|
28
29
|
UpdateOrderStatusParameters["WAITINGFORVALIDATION"] = "WAITING_FOR_VALIDATION";
|
|
29
30
|
UpdateOrderStatusParameters["CANCELED"] = "CANCELED";
|
|
30
31
|
UpdateOrderStatusParameters["ARCHIVED"] = "ARCHIVED";
|
|
31
32
|
UpdateOrderStatusParameters["WAITINGFORADMINVALIDATION"] = "WAITING_FOR_ADMIN_VALIDATION";
|
|
33
|
+
UpdateOrderStatusParameters["DELIVERYLATE"] = "DELIVERY_LATE";
|
|
32
34
|
})(UpdateOrderStatusParameters = exports.UpdateOrderStatusParameters || (exports.UpdateOrderStatusParameters = {}));
|
|
33
35
|
function UpdateOrderStatusParametersFromJSON(json) {
|
|
34
36
|
return UpdateOrderStatusParametersFromJSONTyped(json, false);
|
|
@@ -24,7 +24,6 @@ export * from './OrderRefundedItem';
|
|
|
24
24
|
export * from './OrderRemovedItem';
|
|
25
25
|
export * from './OrderRemovedItemUpdateParameters';
|
|
26
26
|
export * from './OrderStatus';
|
|
27
|
-
export * from './OrderStatusReason';
|
|
28
27
|
export * from './OrderStorageType';
|
|
29
28
|
export * from './OrderThreads';
|
|
30
29
|
export * from './OrderType';
|
|
@@ -40,7 +40,6 @@ __exportStar(require("./OrderRefundedItem"), exports);
|
|
|
40
40
|
__exportStar(require("./OrderRemovedItem"), exports);
|
|
41
41
|
__exportStar(require("./OrderRemovedItemUpdateParameters"), exports);
|
|
42
42
|
__exportStar(require("./OrderStatus"), exports);
|
|
43
|
-
__exportStar(require("./OrderStatusReason"), exports);
|
|
44
43
|
__exportStar(require("./OrderStorageType"), exports);
|
|
45
44
|
__exportStar(require("./OrderThreads"), exports);
|
|
46
45
|
__exportStar(require("./OrderType"), exports);
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
*/
|
|
12
12
|
import { Log } from './Log';
|
|
13
13
|
import { OrderLink } from './OrderLink';
|
|
14
|
-
import { OrderStatusReason } from './OrderStatusReason';
|
|
15
14
|
/**
|
|
16
15
|
*
|
|
17
16
|
* @export
|
|
@@ -30,24 +29,6 @@ export interface OrderLog extends Log {
|
|
|
30
29
|
* @memberof OrderLog
|
|
31
30
|
*/
|
|
32
31
|
order: OrderLink;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {OrderStatusReason}
|
|
36
|
-
* @memberof OrderLog
|
|
37
|
-
*/
|
|
38
|
-
reason: OrderStatusReason;
|
|
39
|
-
/**
|
|
40
|
-
* Smart sentence given detail about the new status
|
|
41
|
-
* @type {string}
|
|
42
|
-
* @memberof OrderLog
|
|
43
|
-
*/
|
|
44
|
-
comment: string | null;
|
|
45
|
-
/**
|
|
46
|
-
* Id of the user that modified status
|
|
47
|
-
* @type {number}
|
|
48
|
-
* @memberof OrderLog
|
|
49
|
-
*/
|
|
50
|
-
modifiedBy: number | null;
|
|
51
32
|
}
|
|
52
33
|
export declare function OrderLogFromJSON(json: any): OrderLog;
|
|
53
34
|
export declare function OrderLogFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderLog;
|
|
@@ -27,7 +27,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
27
27
|
exports.OrderLogToJSON = exports.OrderLogFromJSONTyped = exports.OrderLogFromJSON = void 0;
|
|
28
28
|
var Log_1 = require("./Log");
|
|
29
29
|
var OrderLink_1 = require("./OrderLink");
|
|
30
|
-
var OrderStatusReason_1 = require("./OrderStatusReason");
|
|
31
30
|
function OrderLogFromJSON(json) {
|
|
32
31
|
return OrderLogFromJSONTyped(json, false);
|
|
33
32
|
}
|
|
@@ -36,7 +35,7 @@ function OrderLogFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
35
|
if ((json === undefined) || (json === null)) {
|
|
37
36
|
return json;
|
|
38
37
|
}
|
|
39
|
-
return __assign(__assign({}, (0, Log_1.LogFromJSONTyped)(json, ignoreDiscriminator)), { 'type': json['type'], 'order': (0, OrderLink_1.OrderLinkFromJSON)(json['order'])
|
|
38
|
+
return __assign(__assign({}, (0, Log_1.LogFromJSONTyped)(json, ignoreDiscriminator)), { 'type': json['type'], 'order': (0, OrderLink_1.OrderLinkFromJSON)(json['order']) });
|
|
40
39
|
}
|
|
41
40
|
exports.OrderLogFromJSONTyped = OrderLogFromJSONTyped;
|
|
42
41
|
function OrderLogToJSON(value) {
|
|
@@ -46,6 +45,6 @@ function OrderLogToJSON(value) {
|
|
|
46
45
|
if (value === null) {
|
|
47
46
|
return null;
|
|
48
47
|
}
|
|
49
|
-
return __assign(__assign({}, (0, Log_1.LogToJSON)(value)), { 'type': value.type, 'order': (0, OrderLink_1.OrderLinkToJSON)(value.order)
|
|
48
|
+
return __assign(__assign({}, (0, Log_1.LogToJSON)(value)), { 'type': value.type, 'order': (0, OrderLink_1.OrderLinkToJSON)(value.order) });
|
|
50
49
|
}
|
|
51
50
|
exports.OrderLogToJSON = OrderLogToJSON;
|
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { OrderLink } from './OrderLink';
|
|
13
|
-
import { OrderStatusReason } from './OrderStatusReason';
|
|
14
13
|
/**
|
|
15
14
|
*
|
|
16
15
|
* @export
|
|
@@ -29,24 +28,6 @@ export interface OrderLogAllOf {
|
|
|
29
28
|
* @memberof OrderLogAllOf
|
|
30
29
|
*/
|
|
31
30
|
order: OrderLink;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {OrderStatusReason}
|
|
35
|
-
* @memberof OrderLogAllOf
|
|
36
|
-
*/
|
|
37
|
-
reason: OrderStatusReason;
|
|
38
|
-
/**
|
|
39
|
-
* Smart sentence given detail about the new status
|
|
40
|
-
* @type {string}
|
|
41
|
-
* @memberof OrderLogAllOf
|
|
42
|
-
*/
|
|
43
|
-
comment: string | null;
|
|
44
|
-
/**
|
|
45
|
-
* Id of the user that modified status
|
|
46
|
-
* @type {number}
|
|
47
|
-
* @memberof OrderLogAllOf
|
|
48
|
-
*/
|
|
49
|
-
modifiedBy: number | null;
|
|
50
31
|
}
|
|
51
32
|
export declare function OrderLogAllOfFromJSON(json: any): OrderLogAllOf;
|
|
52
33
|
export declare function OrderLogAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderLogAllOf;
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.OrderLogAllOfToJSON = exports.OrderLogAllOfFromJSONTyped = exports.OrderLogAllOfFromJSON = void 0;
|
|
17
17
|
var OrderLink_1 = require("./OrderLink");
|
|
18
|
-
var OrderStatusReason_1 = require("./OrderStatusReason");
|
|
19
18
|
function OrderLogAllOfFromJSON(json) {
|
|
20
19
|
return OrderLogAllOfFromJSONTyped(json, false);
|
|
21
20
|
}
|
|
@@ -27,9 +26,6 @@ function OrderLogAllOfFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
27
26
|
return {
|
|
28
27
|
'type': json['type'],
|
|
29
28
|
'order': (0, OrderLink_1.OrderLinkFromJSON)(json['order']),
|
|
30
|
-
'reason': (0, OrderStatusReason_1.OrderStatusReasonFromJSON)(json['reason']),
|
|
31
|
-
'comment': json['comment'],
|
|
32
|
-
'modifiedBy': json['modifiedBy'],
|
|
33
29
|
};
|
|
34
30
|
}
|
|
35
31
|
exports.OrderLogAllOfFromJSONTyped = OrderLogAllOfFromJSONTyped;
|
|
@@ -43,9 +39,6 @@ function OrderLogAllOfToJSON(value) {
|
|
|
43
39
|
return {
|
|
44
40
|
'type': value.type,
|
|
45
41
|
'order': (0, OrderLink_1.OrderLinkToJSON)(value.order),
|
|
46
|
-
'reason': (0, OrderStatusReason_1.OrderStatusReasonToJSON)(value.reason),
|
|
47
|
-
'comment': value.comment,
|
|
48
|
-
'modifiedBy': value.modifiedBy,
|
|
49
42
|
};
|
|
50
43
|
}
|
|
51
44
|
exports.OrderLogAllOfToJSON = OrderLogAllOfToJSON;
|
|
@@ -5,7 +5,6 @@ export * from './OrderLink';
|
|
|
5
5
|
export * from './OrderLinkAllOf';
|
|
6
6
|
export * from './OrderLog';
|
|
7
7
|
export * from './OrderLogAllOf';
|
|
8
|
-
export * from './OrderStatusReason';
|
|
9
8
|
export * from './PaginatedObject';
|
|
10
9
|
export * from './PaginatedOrderLogs';
|
|
11
10
|
export * from './PaginatedOrderLogsAllOf';
|
|
@@ -21,7 +21,6 @@ __exportStar(require("./OrderLink"), exports);
|
|
|
21
21
|
__exportStar(require("./OrderLinkAllOf"), exports);
|
|
22
22
|
__exportStar(require("./OrderLog"), exports);
|
|
23
23
|
__exportStar(require("./OrderLogAllOf"), exports);
|
|
24
|
-
__exportStar(require("./OrderStatusReason"), exports);
|
|
25
24
|
__exportStar(require("./PaginatedObject"), exports);
|
|
26
25
|
__exportStar(require("./PaginatedOrderLogs"), exports);
|
|
27
26
|
__exportStar(require("./PaginatedOrderLogsAllOf"), exports);
|
package/package.json
CHANGED
|
@@ -45,8 +45,6 @@ export declare enum NotificationTypeId {
|
|
|
45
45
|
ORDERCREATEDBUYER = "ORDER_CREATED_BUYER",
|
|
46
46
|
ORDERCREATEDSELLER = "ORDER_CREATED_SELLER",
|
|
47
47
|
ORDERDAILYMAIL = "ORDER_DAILY_MAIL",
|
|
48
|
-
ORDERMODIFIED = "ORDER_MODIFIED",
|
|
49
|
-
ORDERMODIFICATIONDELAY = "ORDER_MODIFICATION_DELAY",
|
|
50
48
|
ORDERRECEIVED = "ORDER_RECEIVED",
|
|
51
49
|
ORDERSENDINGDELAY = "ORDER_SENDING_DELAY",
|
|
52
50
|
ORDERSENTBUYER = "ORDER_SENT_BUYER",
|
|
@@ -51,8 +51,6 @@ var NotificationTypeId;
|
|
|
51
51
|
NotificationTypeId["ORDERCREATEDBUYER"] = "ORDER_CREATED_BUYER";
|
|
52
52
|
NotificationTypeId["ORDERCREATEDSELLER"] = "ORDER_CREATED_SELLER";
|
|
53
53
|
NotificationTypeId["ORDERDAILYMAIL"] = "ORDER_DAILY_MAIL";
|
|
54
|
-
NotificationTypeId["ORDERMODIFIED"] = "ORDER_MODIFIED";
|
|
55
|
-
NotificationTypeId["ORDERMODIFICATIONDELAY"] = "ORDER_MODIFICATION_DELAY";
|
|
56
54
|
NotificationTypeId["ORDERRECEIVED"] = "ORDER_RECEIVED";
|
|
57
55
|
NotificationTypeId["ORDERSENDINGDELAY"] = "ORDER_SENDING_DELAY";
|
|
58
56
|
NotificationTypeId["ORDERSENTBUYER"] = "ORDER_SENT_BUYER";
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-monolith-service
|
|
3
|
-
* This is the REST API of LCDP orders
|
|
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
|
-
* Reason of the status change or current status. Note that if you do not give any reason during status change, field will be set to default
|
|
14
|
-
* @export
|
|
15
|
-
* @enum {string}
|
|
16
|
-
*/
|
|
17
|
-
export declare enum OrderStatusReason {
|
|
18
|
-
MAXQUANTITY = "MAX_QUANTITY",
|
|
19
|
-
OUTDATEDAD = "OUTDATED_AD",
|
|
20
|
-
OTHER = "OTHER"
|
|
21
|
-
}
|
|
22
|
-
export declare function OrderStatusReasonFromJSON(json: any): OrderStatusReason;
|
|
23
|
-
export declare function OrderStatusReasonFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderStatusReason;
|
|
24
|
-
export declare function OrderStatusReasonToJSON(value?: OrderStatusReason | null): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-monolith-service
|
|
6
|
-
* This is the REST API of LCDP orders
|
|
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.OrderStatusReasonToJSON = exports.OrderStatusReasonFromJSONTyped = exports.OrderStatusReasonFromJSON = exports.OrderStatusReason = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Reason of the status change or current status. Note that if you do not give any reason during status change, field will be set to default
|
|
19
|
-
* @export
|
|
20
|
-
* @enum {string}
|
|
21
|
-
*/
|
|
22
|
-
var OrderStatusReason;
|
|
23
|
-
(function (OrderStatusReason) {
|
|
24
|
-
OrderStatusReason["MAXQUANTITY"] = "MAX_QUANTITY";
|
|
25
|
-
OrderStatusReason["OUTDATEDAD"] = "OUTDATED_AD";
|
|
26
|
-
OrderStatusReason["OTHER"] = "OTHER";
|
|
27
|
-
})(OrderStatusReason = exports.OrderStatusReason || (exports.OrderStatusReason = {}));
|
|
28
|
-
function OrderStatusReasonFromJSON(json) {
|
|
29
|
-
return OrderStatusReasonFromJSONTyped(json, false);
|
|
30
|
-
}
|
|
31
|
-
exports.OrderStatusReasonFromJSON = OrderStatusReasonFromJSON;
|
|
32
|
-
function OrderStatusReasonFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
return json;
|
|
34
|
-
}
|
|
35
|
-
exports.OrderStatusReasonFromJSONTyped = OrderStatusReasonFromJSONTyped;
|
|
36
|
-
function OrderStatusReasonToJSON(value) {
|
|
37
|
-
return value;
|
|
38
|
-
}
|
|
39
|
-
exports.OrderStatusReasonToJSON = OrderStatusReasonToJSON;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-monolith-service
|
|
3
|
-
* This is the REST API of LCDP order logs
|
|
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
|
-
* Reason of the status change or current status. Note that if you do not give any reason during status change, field will be set to default
|
|
14
|
-
* @export
|
|
15
|
-
* @enum {string}
|
|
16
|
-
*/
|
|
17
|
-
export declare enum OrderStatusReason {
|
|
18
|
-
MAXQUANTITY = "MAX_QUANTITY",
|
|
19
|
-
OUTDATEDAD = "OUTDATED_AD",
|
|
20
|
-
OTHER = "OTHER"
|
|
21
|
-
}
|
|
22
|
-
export declare function OrderStatusReasonFromJSON(json: any): OrderStatusReason;
|
|
23
|
-
export declare function OrderStatusReasonFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrderStatusReason;
|
|
24
|
-
export declare function OrderStatusReasonToJSON(value?: OrderStatusReason | null): any;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-monolith-service
|
|
6
|
-
* This is the REST API of LCDP order logs
|
|
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.OrderStatusReasonToJSON = exports.OrderStatusReasonFromJSONTyped = exports.OrderStatusReasonFromJSON = exports.OrderStatusReason = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Reason of the status change or current status. Note that if you do not give any reason during status change, field will be set to default
|
|
19
|
-
* @export
|
|
20
|
-
* @enum {string}
|
|
21
|
-
*/
|
|
22
|
-
var OrderStatusReason;
|
|
23
|
-
(function (OrderStatusReason) {
|
|
24
|
-
OrderStatusReason["MAXQUANTITY"] = "MAX_QUANTITY";
|
|
25
|
-
OrderStatusReason["OUTDATEDAD"] = "OUTDATED_AD";
|
|
26
|
-
OrderStatusReason["OTHER"] = "OTHER";
|
|
27
|
-
})(OrderStatusReason = exports.OrderStatusReason || (exports.OrderStatusReason = {}));
|
|
28
|
-
function OrderStatusReasonFromJSON(json) {
|
|
29
|
-
return OrderStatusReasonFromJSONTyped(json, false);
|
|
30
|
-
}
|
|
31
|
-
exports.OrderStatusReasonFromJSON = OrderStatusReasonFromJSON;
|
|
32
|
-
function OrderStatusReasonFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
-
return json;
|
|
34
|
-
}
|
|
35
|
-
exports.OrderStatusReasonFromJSONTyped = OrderStatusReasonFromJSONTyped;
|
|
36
|
-
function OrderStatusReasonToJSON(value) {
|
|
37
|
-
return value;
|
|
38
|
-
}
|
|
39
|
-
exports.OrderStatusReasonToJSON = OrderStatusReasonToJSON;
|