@lcdp/api-react-rest-client 3.1.5 → 3.1.6-LDS-5354-refactoring-multi-panier.23548405807
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/magic-cart/src/models/ExpressOrder.d.ts +3 -3
- package/magic-cart/src/models/ExpressOrder.js +3 -3
- package/magic-cart/src/models/ShoppedOffer.d.ts +43 -0
- package/magic-cart/src/models/ShoppedOffer.js +53 -0
- package/magic-cart/src/models/index.d.ts +1 -2
- package/magic-cart/src/models/index.js +1 -2
- package/order/src/models/ShoppedOffer.d.ts +2 -2
- package/order/src/models/ShoppedOffer.js +2 -2
- package/package.json +1 -1
- package/shopping-cart/src/apis/ManageCartApi.d.ts +35 -24
- package/shopping-cart/src/apis/ManageCartApi.js +57 -120
- package/shopping-cart/src/apis/ManageCartLineApi.d.ts +45 -0
- package/shopping-cart/src/apis/ManageCartLineApi.js +238 -0
- package/shopping-cart/src/apis/SearchCartApi.d.ts +59 -0
- package/shopping-cart/src/apis/SearchCartApi.js +267 -0
- package/shopping-cart/src/apis/SearchCartLineApi.d.ts +41 -0
- package/shopping-cart/src/apis/SearchCartLineApi.js +241 -0
- package/shopping-cart/src/apis/index.d.ts +3 -2
- package/shopping-cart/src/apis/index.js +3 -2
- package/shopping-cart/src/models/Cart.d.ts +61 -4
- package/shopping-cart/src/models/Cart.js +47 -2
- package/shopping-cart/src/models/CartCreationParameters.d.ts +44 -0
- package/shopping-cart/src/models/CartCreationParameters.js +56 -0
- package/shopping-cart/src/models/{CartSubCartLine.d.ts → CartLine.d.ts} +13 -13
- package/shopping-cart/src/models/{CartSubCartLine.js → CartLine.js} +11 -11
- package/shopping-cart/src/models/CartLineUpdateParameters.d.ts +37 -0
- package/shopping-cart/src/models/CartLineUpdateParameters.js +49 -0
- package/shopping-cart/src/models/CartLineWithWarnings.d.ts +39 -0
- package/shopping-cart/src/models/CartLineWithWarnings.js +49 -0
- package/shopping-cart/src/models/CartSummary.d.ts +31 -0
- package/shopping-cart/src/models/CartSummary.js +47 -0
- package/shopping-cart/src/models/{CartSubCartTransport.d.ts → CartTransport.d.ts} +12 -12
- package/shopping-cart/src/models/{CartSubCartTransport.js → CartTransport.js} +11 -11
- package/shopping-cart/src/models/CartUpdateParameters.d.ts +31 -0
- package/shopping-cart/src/models/CartUpdateParameters.js +45 -0
- package/shopping-cart/src/models/CartWarning.d.ts +70 -0
- package/shopping-cart/src/models/CartWarning.js +67 -0
- package/shopping-cart/src/models/CartsWithWarnings.d.ts +39 -0
- package/shopping-cart/src/models/CartsWithWarnings.js +49 -0
- package/shopping-cart/src/models/OwnerLink.d.ts +43 -0
- package/shopping-cart/src/models/OwnerLink.js +53 -0
- package/shopping-cart/src/models/PaginatedCarts.d.ts +46 -0
- package/shopping-cart/src/models/PaginatedCarts.js +58 -0
- package/shopping-cart/src/models/PagingMetadata.d.ts +49 -0
- package/shopping-cart/src/models/PagingMetadata.js +55 -0
- package/shopping-cart/src/models/ShoppedOffer.d.ts +2 -2
- package/shopping-cart/src/models/ShoppedOffer.js +2 -2
- package/shopping-cart/src/models/index.d.ts +12 -4
- package/shopping-cart/src/models/index.js +12 -4
- package/third-party/src/models/ThirdPartyLinkCreationParameters.d.ts +2 -0
- package/third-party/src/models/ThirdPartyLinkCreationParameters.js +3 -1
- package/user/src/apis/ManageUserDocumentApi.d.ts +0 -5
- package/user/src/apis/ManageUserDocumentApi.js +3 -8
- package/user/src/apis/SearchUserDocumentApi.d.ts +0 -5
- package/user/src/apis/SearchUserDocumentApi.js +5 -10
- package/user/src/models/UserDocument.d.ts +0 -6
- package/user/src/models/UserDocument.js +0 -3
- package/magic-cart/src/models/SaleOfferProposal.d.ts +0 -51
- package/magic-cart/src/models/SaleOfferProposal.js +0 -61
- package/magic-cart/src/models/SellerProposal.d.ts +0 -45
- package/magic-cart/src/models/SellerProposal.js +0 -57
- package/shopping-cart/src/apis/ManageCartSubCartApi.d.ts +0 -107
- package/shopping-cart/src/apis/ManageCartSubCartApi.js +0 -556
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.d.ts +0 -151
- package/shopping-cart/src/apis/ManageCartSubCartLineApi.js +0 -879
- package/shopping-cart/src/models/CartSubCart.d.ts +0 -76
- package/shopping-cart/src/models/CartSubCart.js +0 -78
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.d.ts +0 -37
- package/shopping-cart/src/models/CartSubCartLineUpdateParameters.js +0 -49
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-magic-cart
|
|
3
|
-
* This is the REST API of Magic cart
|
|
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 type { ProductLink } from './ProductLink';
|
|
13
|
-
import type { SaleOfferLink } from './SaleOfferLink';
|
|
14
|
-
/**
|
|
15
|
-
*
|
|
16
|
-
* @export
|
|
17
|
-
* @interface SaleOfferProposal
|
|
18
|
-
*/
|
|
19
|
-
export interface SaleOfferProposal {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {ProductLink}
|
|
23
|
-
* @memberof SaleOfferProposal
|
|
24
|
-
*/
|
|
25
|
-
product: ProductLink;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {SaleOfferLink}
|
|
29
|
-
* @memberof SaleOfferProposal
|
|
30
|
-
*/
|
|
31
|
-
saleOffer: SaleOfferLink;
|
|
32
|
-
/**
|
|
33
|
-
* Set when sale offer's distribution mode is RANGE
|
|
34
|
-
* @type {number}
|
|
35
|
-
* @memberof SaleOfferProposal
|
|
36
|
-
*/
|
|
37
|
-
distributedRangeId: number | null;
|
|
38
|
-
/**
|
|
39
|
-
*
|
|
40
|
-
* @type {number}
|
|
41
|
-
* @memberof SaleOfferProposal
|
|
42
|
-
*/
|
|
43
|
-
quantity: number;
|
|
44
|
-
}
|
|
45
|
-
/**
|
|
46
|
-
* Check if a given object implements the SaleOfferProposal interface.
|
|
47
|
-
*/
|
|
48
|
-
export declare function instanceOfSaleOfferProposal(value: object): value is SaleOfferProposal;
|
|
49
|
-
export declare function SaleOfferProposalFromJSON(json: any): SaleOfferProposal;
|
|
50
|
-
export declare function SaleOfferProposalFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaleOfferProposal;
|
|
51
|
-
export declare function SaleOfferProposalToJSON(value?: SaleOfferProposal | null): any;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-magic-cart
|
|
6
|
-
* This is the REST API of Magic cart
|
|
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.SaleOfferProposalToJSON = exports.SaleOfferProposalFromJSONTyped = exports.SaleOfferProposalFromJSON = exports.instanceOfSaleOfferProposal = void 0;
|
|
17
|
-
var ProductLink_1 = require("./ProductLink");
|
|
18
|
-
var SaleOfferLink_1 = require("./SaleOfferLink");
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the SaleOfferProposal interface.
|
|
21
|
-
*/
|
|
22
|
-
function instanceOfSaleOfferProposal(value) {
|
|
23
|
-
if (!('product' in value) || value['product'] === undefined)
|
|
24
|
-
return false;
|
|
25
|
-
if (!('saleOffer' in value) || value['saleOffer'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
if (!('distributedRangeId' in value) || value['distributedRangeId'] === undefined)
|
|
28
|
-
return false;
|
|
29
|
-
if (!('quantity' in value) || value['quantity'] === undefined)
|
|
30
|
-
return false;
|
|
31
|
-
return true;
|
|
32
|
-
}
|
|
33
|
-
exports.instanceOfSaleOfferProposal = instanceOfSaleOfferProposal;
|
|
34
|
-
function SaleOfferProposalFromJSON(json) {
|
|
35
|
-
return SaleOfferProposalFromJSONTyped(json, false);
|
|
36
|
-
}
|
|
37
|
-
exports.SaleOfferProposalFromJSON = SaleOfferProposalFromJSON;
|
|
38
|
-
function SaleOfferProposalFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
-
if (json == null) {
|
|
40
|
-
return json;
|
|
41
|
-
}
|
|
42
|
-
return {
|
|
43
|
-
'product': (json['product'] === null || json['product'] === undefined) ? json['product'] : (0, ProductLink_1.ProductLinkFromJSON)(json['product']),
|
|
44
|
-
'saleOffer': (json['saleOffer'] === null || json['saleOffer'] === undefined) ? json['saleOffer'] : (0, SaleOfferLink_1.SaleOfferLinkFromJSON)(json['saleOffer']),
|
|
45
|
-
'distributedRangeId': json['distributedRangeId'],
|
|
46
|
-
'quantity': json['quantity'],
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
exports.SaleOfferProposalFromJSONTyped = SaleOfferProposalFromJSONTyped;
|
|
50
|
-
function SaleOfferProposalToJSON(value) {
|
|
51
|
-
if (value == null) {
|
|
52
|
-
return value;
|
|
53
|
-
}
|
|
54
|
-
return {
|
|
55
|
-
'product': (0, ProductLink_1.ProductLinkToJSON)(value['product']),
|
|
56
|
-
'saleOffer': (0, SaleOfferLink_1.SaleOfferLinkToJSON)(value['saleOffer']),
|
|
57
|
-
'distributedRangeId': value['distributedRangeId'],
|
|
58
|
-
'quantity': value['quantity'],
|
|
59
|
-
};
|
|
60
|
-
}
|
|
61
|
-
exports.SaleOfferProposalToJSON = SaleOfferProposalToJSON;
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-magic-cart
|
|
3
|
-
* This is the REST API of Magic cart
|
|
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 type { UserLink } from './UserLink';
|
|
13
|
-
import type { SaleOfferProposal } from './SaleOfferProposal';
|
|
14
|
-
/**
|
|
15
|
-
* A list of proposed sale offers to buy from seller
|
|
16
|
-
* @export
|
|
17
|
-
* @interface SellerProposal
|
|
18
|
-
*/
|
|
19
|
-
export interface SellerProposal {
|
|
20
|
-
/**
|
|
21
|
-
*
|
|
22
|
-
* @type {Array<SaleOfferProposal>}
|
|
23
|
-
* @memberof SellerProposal
|
|
24
|
-
*/
|
|
25
|
-
saleOfferProposals: Array<SaleOfferProposal>;
|
|
26
|
-
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {UserLink}
|
|
29
|
-
* @memberof SellerProposal
|
|
30
|
-
*/
|
|
31
|
-
seller: UserLink;
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {number}
|
|
35
|
-
* @memberof SellerProposal
|
|
36
|
-
*/
|
|
37
|
-
freeCarriageThreshold: number;
|
|
38
|
-
}
|
|
39
|
-
/**
|
|
40
|
-
* Check if a given object implements the SellerProposal interface.
|
|
41
|
-
*/
|
|
42
|
-
export declare function instanceOfSellerProposal(value: object): value is SellerProposal;
|
|
43
|
-
export declare function SellerProposalFromJSON(json: any): SellerProposal;
|
|
44
|
-
export declare function SellerProposalFromJSONTyped(json: any, ignoreDiscriminator: boolean): SellerProposal;
|
|
45
|
-
export declare function SellerProposalToJSON(value?: SellerProposal | null): any;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-magic-cart
|
|
6
|
-
* This is the REST API of Magic cart
|
|
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.SellerProposalToJSON = exports.SellerProposalFromJSONTyped = exports.SellerProposalFromJSON = exports.instanceOfSellerProposal = void 0;
|
|
17
|
-
var UserLink_1 = require("./UserLink");
|
|
18
|
-
var SaleOfferProposal_1 = require("./SaleOfferProposal");
|
|
19
|
-
/**
|
|
20
|
-
* Check if a given object implements the SellerProposal interface.
|
|
21
|
-
*/
|
|
22
|
-
function instanceOfSellerProposal(value) {
|
|
23
|
-
if (!('saleOfferProposals' in value) || value['saleOfferProposals'] === undefined)
|
|
24
|
-
return false;
|
|
25
|
-
if (!('seller' in value) || value['seller'] === undefined)
|
|
26
|
-
return false;
|
|
27
|
-
if (!('freeCarriageThreshold' in value) || value['freeCarriageThreshold'] === undefined)
|
|
28
|
-
return false;
|
|
29
|
-
return true;
|
|
30
|
-
}
|
|
31
|
-
exports.instanceOfSellerProposal = instanceOfSellerProposal;
|
|
32
|
-
function SellerProposalFromJSON(json) {
|
|
33
|
-
return SellerProposalFromJSONTyped(json, false);
|
|
34
|
-
}
|
|
35
|
-
exports.SellerProposalFromJSON = SellerProposalFromJSON;
|
|
36
|
-
function SellerProposalFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
-
if (json == null) {
|
|
38
|
-
return json;
|
|
39
|
-
}
|
|
40
|
-
return {
|
|
41
|
-
'saleOfferProposals': (json['saleOfferProposals'] === null || json['saleOfferProposals'] === undefined) ? json['saleOfferProposals'] : json['saleOfferProposals'].map(SaleOfferProposal_1.SaleOfferProposalFromJSON),
|
|
42
|
-
'seller': (json['seller'] === null || json['seller'] === undefined) ? json['seller'] : (0, UserLink_1.UserLinkFromJSON)(json['seller']),
|
|
43
|
-
'freeCarriageThreshold': json['freeCarriageThreshold'],
|
|
44
|
-
};
|
|
45
|
-
}
|
|
46
|
-
exports.SellerProposalFromJSONTyped = SellerProposalFromJSONTyped;
|
|
47
|
-
function SellerProposalToJSON(value) {
|
|
48
|
-
if (value == null) {
|
|
49
|
-
return value;
|
|
50
|
-
}
|
|
51
|
-
return {
|
|
52
|
-
'saleOfferProposals': (value['saleOfferProposals'] === null || value['saleOfferProposals'] === undefined) ? value['saleOfferProposals'] : value['saleOfferProposals'].map(SaleOfferProposal_1.SaleOfferProposalToJSON),
|
|
53
|
-
'seller': (0, UserLink_1.UserLinkToJSON)(value['seller']),
|
|
54
|
-
'freeCarriageThreshold': value['freeCarriageThreshold'],
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
exports.SellerProposalToJSON = SellerProposalToJSON;
|
|
@@ -1,107 +0,0 @@
|
|
|
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 { CartSubCart } from '../models/index';
|
|
14
|
-
export interface DeleteCartSubCartRequest {
|
|
15
|
-
cartId: number;
|
|
16
|
-
subCartId: number;
|
|
17
|
-
}
|
|
18
|
-
export interface DeleteCurrentCartSubCartRequest {
|
|
19
|
-
subCartId: number;
|
|
20
|
-
}
|
|
21
|
-
export interface GetCartSubCartRequest {
|
|
22
|
-
cartId: number;
|
|
23
|
-
subCartId: number;
|
|
24
|
-
}
|
|
25
|
-
export interface GetCartSubCartsRequest {
|
|
26
|
-
cartId: number;
|
|
27
|
-
orderBy?: GetCartSubCartsOrderByEnum;
|
|
28
|
-
}
|
|
29
|
-
export interface GetCurrentCartSubCartRequest {
|
|
30
|
-
subCartId: number;
|
|
31
|
-
}
|
|
32
|
-
export interface GetCurrentCartSubCartsRequest {
|
|
33
|
-
orderBy?: GetCurrentCartSubCartsOrderByEnum;
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
*
|
|
37
|
-
*/
|
|
38
|
-
export declare class ManageCartSubCartApi extends runtime.BaseAPI {
|
|
39
|
-
/**
|
|
40
|
-
* Delete a SubCart for user cart
|
|
41
|
-
*/
|
|
42
|
-
deleteCartSubCartRaw(requestParameters: DeleteCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
43
|
-
/**
|
|
44
|
-
* Delete a SubCart for user cart
|
|
45
|
-
*/
|
|
46
|
-
deleteCartSubCart(requestParameters: DeleteCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
47
|
-
/**
|
|
48
|
-
* Delete a SubCart for user cart
|
|
49
|
-
*/
|
|
50
|
-
deleteCurrentCartSubCartRaw(requestParameters: DeleteCurrentCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
51
|
-
/**
|
|
52
|
-
* Delete a SubCart for user cart
|
|
53
|
-
*/
|
|
54
|
-
deleteCurrentCartSubCart(requestParameters: DeleteCurrentCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
55
|
-
/**
|
|
56
|
-
* Get user sub cart for a specific SubCart
|
|
57
|
-
*/
|
|
58
|
-
getCartSubCartRaw(requestParameters: GetCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CartSubCart | runtime.BlobWithMeta>>;
|
|
59
|
-
/**
|
|
60
|
-
* Get user sub cart for a specific SubCart
|
|
61
|
-
*/
|
|
62
|
-
getCartSubCart(requestParameters: GetCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CartSubCart | runtime.BlobWithMeta>;
|
|
63
|
-
/**
|
|
64
|
-
* Get user cart split by SubCart
|
|
65
|
-
*/
|
|
66
|
-
getCartSubCartsRaw(requestParameters: GetCartSubCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<CartSubCart> | runtime.BlobWithMeta>>;
|
|
67
|
-
/**
|
|
68
|
-
* Get user cart split by SubCart
|
|
69
|
-
*/
|
|
70
|
-
getCartSubCarts(requestParameters: GetCartSubCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<CartSubCart> | runtime.BlobWithMeta>;
|
|
71
|
-
/**
|
|
72
|
-
* Get user sub cart for a specific SubCart
|
|
73
|
-
*/
|
|
74
|
-
getCurrentCartSubCartRaw(requestParameters: GetCurrentCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CartSubCart | runtime.BlobWithMeta>>;
|
|
75
|
-
/**
|
|
76
|
-
* Get user sub cart for a specific SubCart
|
|
77
|
-
*/
|
|
78
|
-
getCurrentCartSubCart(requestParameters: GetCurrentCartSubCartRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CartSubCart | runtime.BlobWithMeta>;
|
|
79
|
-
/**
|
|
80
|
-
* Get user cart split by SubCart
|
|
81
|
-
*/
|
|
82
|
-
getCurrentCartSubCartsRaw(requestParameters: GetCurrentCartSubCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<CartSubCart> | runtime.BlobWithMeta>>;
|
|
83
|
-
/**
|
|
84
|
-
* Get user cart split by SubCart
|
|
85
|
-
*/
|
|
86
|
-
getCurrentCartSubCarts(requestParameters?: GetCurrentCartSubCartsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<CartSubCart> | runtime.BlobWithMeta>;
|
|
87
|
-
}
|
|
88
|
-
/**
|
|
89
|
-
* @export
|
|
90
|
-
*/
|
|
91
|
-
export declare const GetCartSubCartsOrderByEnum: {
|
|
92
|
-
readonly UPDATED_AT_ASC: "UPDATED_AT:asc";
|
|
93
|
-
readonly UPDATED_AT_DESC: "UPDATED_AT:desc";
|
|
94
|
-
readonly TOTAL_EXCLUDING_TAXES_ASC: "TOTAL_EXCLUDING_TAXES:asc";
|
|
95
|
-
readonly TOTAL_EXCLUDING_TAXES_DESC: "TOTAL_EXCLUDING_TAXES:desc";
|
|
96
|
-
};
|
|
97
|
-
export declare type GetCartSubCartsOrderByEnum = typeof GetCartSubCartsOrderByEnum[keyof typeof GetCartSubCartsOrderByEnum];
|
|
98
|
-
/**
|
|
99
|
-
* @export
|
|
100
|
-
*/
|
|
101
|
-
export declare const GetCurrentCartSubCartsOrderByEnum: {
|
|
102
|
-
readonly UPDATED_AT_ASC: "UPDATED_AT:asc";
|
|
103
|
-
readonly UPDATED_AT_DESC: "UPDATED_AT:desc";
|
|
104
|
-
readonly TOTAL_EXCLUDING_TAXES_ASC: "TOTAL_EXCLUDING_TAXES:asc";
|
|
105
|
-
readonly TOTAL_EXCLUDING_TAXES_DESC: "TOTAL_EXCLUDING_TAXES:desc";
|
|
106
|
-
};
|
|
107
|
-
export declare type GetCurrentCartSubCartsOrderByEnum = typeof GetCurrentCartSubCartsOrderByEnum[keyof typeof GetCurrentCartSubCartsOrderByEnum];
|