@lcdp/api-react-rest-client 1.1.1-develop.14 → 1.1.1-develop.16
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 +1 -0
- package/notification/src/models/NotificationTypeId.js +1 -0
- package/order/src/apis/ManageMetaOrderApi.js +1 -1
- package/package.json +1 -1
- package/user/src/models/NotificationTypeId.d.ts +1 -0
- package/user/src/models/NotificationTypeId.js +1 -0
- package/wish/src/apis/ManageWishApi.d.ts +2 -0
- package/wish/src/apis/ManageWishApi.js +2 -0
- package/wish/src/apis/SearchWishApi.d.ts +7 -3
- package/wish/src/apis/SearchWishApi.js +14 -2
- package/wish/src/models/Referrer.d.ts +34 -0
- package/wish/src/models/Referrer.js +45 -0
- package/wish/src/models/Wish.d.ts +19 -0
- package/wish/src/models/Wish.js +7 -0
- package/wish/src/models/WishCreationParameters.d.ts +13 -0
- package/wish/src/models/WishCreationParameters.js +5 -0
- package/wish/src/models/WishReferrerType.d.ts +23 -0
- package/wish/src/models/WishReferrerType.js +38 -0
- package/wish/src/models/WishUpdateParameters.d.ts +6 -0
- package/wish/src/models/WishUpdateParameters.js +2 -0
- package/wish/src/models/index.d.ts +2 -0
- package/wish/src/models/index.js +2 -0
|
@@ -24,6 +24,7 @@ export declare enum NotificationTypeId {
|
|
|
24
24
|
ADSOLDOUT = "AD_SOLD_OUT",
|
|
25
25
|
ADVALIDATED = "AD_VALIDATED",
|
|
26
26
|
ADWISHLISTLINE = "AD_WISHLIST_LINE",
|
|
27
|
+
ADWISHLISTLINEFAVORITE = "AD_WISHLIST_LINE_FAVORITE",
|
|
27
28
|
CLIENTCREDITCARDEXPIRATION = "CLIENT_CREDIT_CARD_EXPIRATION",
|
|
28
29
|
CLIENTFIRSTAD = "CLIENT_FIRST_AD",
|
|
29
30
|
CLIENTFIRSTBUY = "CLIENT_FIRST_BUY",
|
|
@@ -30,6 +30,7 @@ var NotificationTypeId;
|
|
|
30
30
|
NotificationTypeId["ADSOLDOUT"] = "AD_SOLD_OUT";
|
|
31
31
|
NotificationTypeId["ADVALIDATED"] = "AD_VALIDATED";
|
|
32
32
|
NotificationTypeId["ADWISHLISTLINE"] = "AD_WISHLIST_LINE";
|
|
33
|
+
NotificationTypeId["ADWISHLISTLINEFAVORITE"] = "AD_WISHLIST_LINE_FAVORITE";
|
|
33
34
|
NotificationTypeId["CLIENTCREDITCARDEXPIRATION"] = "CLIENT_CREDIT_CARD_EXPIRATION";
|
|
34
35
|
NotificationTypeId["CLIENTFIRSTAD"] = "CLIENT_FIRST_AD";
|
|
35
36
|
NotificationTypeId["CLIENTFIRSTBUY"] = "CLIENT_FIRST_BUY";
|
|
@@ -105,7 +105,7 @@ var ManageMetaOrderApi = /** @class */ (function (_super) {
|
|
|
105
105
|
case 1:
|
|
106
106
|
_a.trys.push([1, 3, , 4]);
|
|
107
107
|
return [4 /*yield*/, this.request({
|
|
108
|
-
path: "/meta-orders
|
|
108
|
+
path: "/meta-orders",
|
|
109
109
|
method: 'POST',
|
|
110
110
|
headers: headerParameters,
|
|
111
111
|
query: queryParameters,
|
package/package.json
CHANGED
|
@@ -24,6 +24,7 @@ export declare enum NotificationTypeId {
|
|
|
24
24
|
ADSOLDOUT = "AD_SOLD_OUT",
|
|
25
25
|
ADVALIDATED = "AD_VALIDATED",
|
|
26
26
|
ADWISHLISTLINE = "AD_WISHLIST_LINE",
|
|
27
|
+
ADWISHLISTLINEFAVORITE = "AD_WISHLIST_LINE_FAVORITE",
|
|
27
28
|
CLIENTCREDITCARDEXPIRATION = "CLIENT_CREDIT_CARD_EXPIRATION",
|
|
28
29
|
CLIENTFIRSTAD = "CLIENT_FIRST_AD",
|
|
29
30
|
CLIENTFIRSTBUY = "CLIENT_FIRST_BUY",
|
|
@@ -30,6 +30,7 @@ var NotificationTypeId;
|
|
|
30
30
|
NotificationTypeId["ADSOLDOUT"] = "AD_SOLD_OUT";
|
|
31
31
|
NotificationTypeId["ADVALIDATED"] = "AD_VALIDATED";
|
|
32
32
|
NotificationTypeId["ADWISHLISTLINE"] = "AD_WISHLIST_LINE";
|
|
33
|
+
NotificationTypeId["ADWISHLISTLINEFAVORITE"] = "AD_WISHLIST_LINE_FAVORITE";
|
|
33
34
|
NotificationTypeId["CLIENTCREDITCARDEXPIRATION"] = "CLIENT_CREDIT_CARD_EXPIRATION";
|
|
34
35
|
NotificationTypeId["CLIENTFIRSTAD"] = "CLIENT_FIRST_AD";
|
|
35
36
|
NotificationTypeId["CLIENTFIRSTBUY"] = "CLIENT_FIRST_BUY";
|
|
@@ -26,10 +26,12 @@ export interface UpdateWishRequest {
|
|
|
26
26
|
*/
|
|
27
27
|
export declare class ManageWishApi extends BaseAPI {
|
|
28
28
|
/**
|
|
29
|
+
* Wish cannot be created without referrer type, if you dont have a referrer set referrer type to MANUAL
|
|
29
30
|
* Create wish line from scratch
|
|
30
31
|
*/
|
|
31
32
|
createWishRaw(requestParameters: CreateWishRequest): Promise<ApiResponse<void>>;
|
|
32
33
|
/**
|
|
34
|
+
* Wish cannot be created without referrer type, if you dont have a referrer set referrer type to MANUAL
|
|
33
35
|
* Create wish line from scratch
|
|
34
36
|
*/
|
|
35
37
|
createWish(requestParameters: CreateWishRequest): Promise<void>;
|
|
@@ -76,6 +76,7 @@ var ManageWishApi = /** @class */ (function (_super) {
|
|
|
76
76
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
+
* Wish cannot be created without referrer type, if you dont have a referrer set referrer type to MANUAL
|
|
79
80
|
* Create wish line from scratch
|
|
80
81
|
*/
|
|
81
82
|
ManageWishApi.prototype.createWishRaw = function (requestParameters) {
|
|
@@ -123,6 +124,7 @@ var ManageWishApi = /** @class */ (function (_super) {
|
|
|
123
124
|
});
|
|
124
125
|
};
|
|
125
126
|
/**
|
|
127
|
+
* Wish cannot be created without referrer type, if you dont have a referrer set referrer type to MANUAL
|
|
126
128
|
* Create wish line from scratch
|
|
127
129
|
*/
|
|
128
130
|
ManageWishApi.prototype.createWish = function (requestParameters) {
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
12
|
import { BaseAPI, ApiResponse, BlobWithMeta } from '../runtime';
|
|
13
|
-
import { PaginatedWishes, Wish, WishStatus } from '../models';
|
|
13
|
+
import { PaginatedWishes, Wish, WishReferrerType, WishStatus } from '../models';
|
|
14
14
|
export interface GetWishRequest {
|
|
15
15
|
wishId: number;
|
|
16
16
|
}
|
|
@@ -18,9 +18,13 @@ export interface GetWishesRequest {
|
|
|
18
18
|
oEq?: number;
|
|
19
19
|
oNeq?: number;
|
|
20
20
|
pidEq?: number;
|
|
21
|
-
stEq?: WishStatus
|
|
22
|
-
stNeq?: WishStatus
|
|
21
|
+
stEq?: Array<WishStatus>;
|
|
22
|
+
stNeq?: Array<WishStatus>;
|
|
23
23
|
q?: string;
|
|
24
|
+
referrerIdEq?: Array<number>;
|
|
25
|
+
referrerIdNeq?: Array<number>;
|
|
26
|
+
referrerTypeEq?: Array<WishReferrerType>;
|
|
27
|
+
referrerTypeNeq?: Array<WishReferrerType>;
|
|
24
28
|
orderBy?: Array<GetWishesOrderByEnum>;
|
|
25
29
|
p?: number;
|
|
26
30
|
pp?: number;
|
|
@@ -167,15 +167,27 @@ var SearchWishApi = /** @class */ (function (_super) {
|
|
|
167
167
|
if (requestParameters.pidEq !== undefined) {
|
|
168
168
|
queryParameters['pid[eq]'] = requestParameters.pidEq;
|
|
169
169
|
}
|
|
170
|
-
if (requestParameters.stEq
|
|
170
|
+
if (requestParameters.stEq) {
|
|
171
171
|
queryParameters['st[eq]'] = requestParameters.stEq;
|
|
172
172
|
}
|
|
173
|
-
if (requestParameters.stNeq
|
|
173
|
+
if (requestParameters.stNeq) {
|
|
174
174
|
queryParameters['st[neq]'] = requestParameters.stNeq;
|
|
175
175
|
}
|
|
176
176
|
if (requestParameters.q !== undefined) {
|
|
177
177
|
queryParameters['q'] = requestParameters.q;
|
|
178
178
|
}
|
|
179
|
+
if (requestParameters.referrerIdEq) {
|
|
180
|
+
queryParameters['referrerId[eq]'] = requestParameters.referrerIdEq;
|
|
181
|
+
}
|
|
182
|
+
if (requestParameters.referrerIdNeq) {
|
|
183
|
+
queryParameters['referrerId[neq]'] = requestParameters.referrerIdNeq;
|
|
184
|
+
}
|
|
185
|
+
if (requestParameters.referrerTypeEq) {
|
|
186
|
+
queryParameters['referrerType[eq]'] = requestParameters.referrerTypeEq;
|
|
187
|
+
}
|
|
188
|
+
if (requestParameters.referrerTypeNeq) {
|
|
189
|
+
queryParameters['referrerType[neq]'] = requestParameters.referrerTypeNeq;
|
|
190
|
+
}
|
|
179
191
|
if (requestParameters.orderBy) {
|
|
180
192
|
queryParameters['orderBy'] = requestParameters.orderBy;
|
|
181
193
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { WishReferrerType } from './WishReferrerType';
|
|
13
|
+
/**
|
|
14
|
+
* Referrer Id link to the wish
|
|
15
|
+
* @export
|
|
16
|
+
* @interface Referrer
|
|
17
|
+
*/
|
|
18
|
+
export interface Referrer {
|
|
19
|
+
/**
|
|
20
|
+
* Referrer Id (nullable only if the type is MANUAL)
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof Referrer
|
|
23
|
+
*/
|
|
24
|
+
id?: number | null;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {WishReferrerType}
|
|
28
|
+
* @memberof Referrer
|
|
29
|
+
*/
|
|
30
|
+
type?: WishReferrerType;
|
|
31
|
+
}
|
|
32
|
+
export declare function ReferrerFromJSON(json: any): Referrer;
|
|
33
|
+
export declare function ReferrerFromJSONTyped(json: any, ignoreDiscriminator: boolean): Referrer;
|
|
34
|
+
export declare function ReferrerToJSON(value?: Referrer | null): any;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ReferrerToJSON = exports.ReferrerFromJSONTyped = exports.ReferrerFromJSON = void 0;
|
|
17
|
+
var runtime_1 = require("../runtime");
|
|
18
|
+
var WishReferrerType_1 = require("./WishReferrerType");
|
|
19
|
+
function ReferrerFromJSON(json) {
|
|
20
|
+
return ReferrerFromJSONTyped(json, false);
|
|
21
|
+
}
|
|
22
|
+
exports.ReferrerFromJSON = ReferrerFromJSON;
|
|
23
|
+
function ReferrerFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
+
if ((json === undefined) || (json === null)) {
|
|
25
|
+
return json;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'id': !(0, runtime_1.exists)(json, 'id') ? json['id'] : json['id'],
|
|
29
|
+
'type': !(0, runtime_1.exists)(json, 'type') ? undefined : (0, WishReferrerType_1.WishReferrerTypeFromJSON)(json['type']),
|
|
30
|
+
};
|
|
31
|
+
}
|
|
32
|
+
exports.ReferrerFromJSONTyped = ReferrerFromJSONTyped;
|
|
33
|
+
function ReferrerToJSON(value) {
|
|
34
|
+
if (value === undefined) {
|
|
35
|
+
return undefined;
|
|
36
|
+
}
|
|
37
|
+
if (value === null) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'id': value.id,
|
|
42
|
+
'type': (0, WishReferrerType_1.WishReferrerTypeToJSON)(value.type),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
exports.ReferrerToJSON = ReferrerToJSON;
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
import { DesiredSellerLink } from './DesiredSellerLink';
|
|
13
13
|
import { OwnerLink } from './OwnerLink';
|
|
14
14
|
import { ProductLink } from './ProductLink';
|
|
15
|
+
import { Referrer } from './Referrer';
|
|
15
16
|
/**
|
|
16
17
|
*
|
|
17
18
|
* @export
|
|
@@ -60,6 +61,24 @@ export interface Wish {
|
|
|
60
61
|
* @memberof Wish
|
|
61
62
|
*/
|
|
62
63
|
status?: string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {Referrer}
|
|
67
|
+
* @memberof Wish
|
|
68
|
+
*/
|
|
69
|
+
referrer?: Referrer;
|
|
70
|
+
/**
|
|
71
|
+
* Delay in minutes between two email notification
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @memberof Wish
|
|
74
|
+
*/
|
|
75
|
+
throttleDelay?: number;
|
|
76
|
+
/**
|
|
77
|
+
* Last date of sent email of this wish (RFC 3339, section 5.6)
|
|
78
|
+
* @type {Date}
|
|
79
|
+
* @memberof Wish
|
|
80
|
+
*/
|
|
81
|
+
lastTrigger?: Date;
|
|
63
82
|
/**
|
|
64
83
|
* Create date of this wish
|
|
65
84
|
* @type {Date}
|
package/wish/src/models/Wish.js
CHANGED
|
@@ -18,6 +18,7 @@ var runtime_1 = require("../runtime");
|
|
|
18
18
|
var DesiredSellerLink_1 = require("./DesiredSellerLink");
|
|
19
19
|
var OwnerLink_1 = require("./OwnerLink");
|
|
20
20
|
var ProductLink_1 = require("./ProductLink");
|
|
21
|
+
var Referrer_1 = require("./Referrer");
|
|
21
22
|
function WishFromJSON(json) {
|
|
22
23
|
return WishFromJSONTyped(json, false);
|
|
23
24
|
}
|
|
@@ -34,6 +35,9 @@ function WishFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
35
|
'rebate': !(0, runtime_1.exists)(json, 'rebate') ? undefined : json['rebate'],
|
|
35
36
|
'quantity': !(0, runtime_1.exists)(json, 'quantity') ? undefined : json['quantity'],
|
|
36
37
|
'status': !(0, runtime_1.exists)(json, 'status') ? undefined : json['status'],
|
|
38
|
+
'referrer': !(0, runtime_1.exists)(json, 'referrer') ? undefined : (0, Referrer_1.ReferrerFromJSON)(json['referrer']),
|
|
39
|
+
'throttleDelay': !(0, runtime_1.exists)(json, 'throttleDelay') ? undefined : json['throttleDelay'],
|
|
40
|
+
'lastTrigger': !(0, runtime_1.exists)(json, 'lastTrigger') ? undefined : (new Date(json['lastTrigger'])),
|
|
37
41
|
'createdAt': !(0, runtime_1.exists)(json, 'createdAt') ? undefined : (new Date(json['createdAt'])),
|
|
38
42
|
'updatedAt': !(0, runtime_1.exists)(json, 'updatedAt') ? undefined : (new Date(json['updatedAt'])),
|
|
39
43
|
};
|
|
@@ -54,6 +58,9 @@ function WishToJSON(value) {
|
|
|
54
58
|
'rebate': value.rebate,
|
|
55
59
|
'quantity': value.quantity,
|
|
56
60
|
'status': value.status,
|
|
61
|
+
'referrer': (0, Referrer_1.ReferrerToJSON)(value.referrer),
|
|
62
|
+
'throttleDelay': value.throttleDelay,
|
|
63
|
+
'lastTrigger': value.lastTrigger === undefined ? undefined : ((0, runtime_1.toDateISOString)(value.lastTrigger)),
|
|
57
64
|
'createdAt': value.createdAt === undefined ? undefined : (value.createdAt.toISOString()),
|
|
58
65
|
'updatedAt': value.updatedAt === undefined ? undefined : (value.updatedAt.toISOString()),
|
|
59
66
|
};
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { Referrer } from './Referrer';
|
|
12
13
|
/**
|
|
13
14
|
*
|
|
14
15
|
* @export
|
|
@@ -45,6 +46,18 @@ export interface WishCreationParameters {
|
|
|
45
46
|
* @memberof WishCreationParameters
|
|
46
47
|
*/
|
|
47
48
|
rebate: number;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {Referrer}
|
|
52
|
+
* @memberof WishCreationParameters
|
|
53
|
+
*/
|
|
54
|
+
referrer: Referrer;
|
|
55
|
+
/**
|
|
56
|
+
* Delay in minutes between two email notification
|
|
57
|
+
* @type {number}
|
|
58
|
+
* @memberof WishCreationParameters
|
|
59
|
+
*/
|
|
60
|
+
throttleDelay?: number;
|
|
48
61
|
}
|
|
49
62
|
export declare function WishCreationParametersFromJSON(json: any): WishCreationParameters;
|
|
50
63
|
export declare function WishCreationParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): WishCreationParameters;
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.WishCreationParametersToJSON = exports.WishCreationParametersFromJSONTyped = exports.WishCreationParametersFromJSON = void 0;
|
|
17
17
|
var runtime_1 = require("../runtime");
|
|
18
|
+
var Referrer_1 = require("./Referrer");
|
|
18
19
|
function WishCreationParametersFromJSON(json) {
|
|
19
20
|
return WishCreationParametersFromJSONTyped(json, false);
|
|
20
21
|
}
|
|
@@ -29,6 +30,8 @@ function WishCreationParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
30
|
'ownerId': !(0, runtime_1.exists)(json, 'ownerId') ? undefined : json['ownerId'],
|
|
30
31
|
'desiredSellerId': !(0, runtime_1.exists)(json, 'desiredSellerId') ? json['desiredSellerId'] : json['desiredSellerId'],
|
|
31
32
|
'rebate': json['rebate'],
|
|
33
|
+
'referrer': (0, Referrer_1.ReferrerFromJSON)(json['referrer']),
|
|
34
|
+
'throttleDelay': !(0, runtime_1.exists)(json, 'throttleDelay') ? undefined : json['throttleDelay'],
|
|
32
35
|
};
|
|
33
36
|
}
|
|
34
37
|
exports.WishCreationParametersFromJSONTyped = WishCreationParametersFromJSONTyped;
|
|
@@ -45,6 +48,8 @@ function WishCreationParametersToJSON(value) {
|
|
|
45
48
|
'ownerId': value.ownerId,
|
|
46
49
|
'desiredSellerId': value.desiredSellerId,
|
|
47
50
|
'rebate': value.rebate,
|
|
51
|
+
'referrer': (0, Referrer_1.ReferrerToJSON)(value.referrer),
|
|
52
|
+
'throttleDelay': value.throttleDelay,
|
|
48
53
|
};
|
|
49
54
|
}
|
|
50
55
|
exports.WishCreationParametersToJSON = WishCreationParametersToJSON;
|
|
@@ -0,0 +1,23 @@
|
|
|
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
|
+
/**
|
|
13
|
+
* Referrer type
|
|
14
|
+
* @export
|
|
15
|
+
* @enum {string}
|
|
16
|
+
*/
|
|
17
|
+
export declare enum WishReferrerType {
|
|
18
|
+
MANUAL = "MANUAL",
|
|
19
|
+
FAVORITE = "FAVORITE"
|
|
20
|
+
}
|
|
21
|
+
export declare function WishReferrerTypeFromJSON(json: any): WishReferrerType;
|
|
22
|
+
export declare function WishReferrerTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): WishReferrerType;
|
|
23
|
+
export declare function WishReferrerTypeToJSON(value?: WishReferrerType | null): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* lcdp-monolith-service
|
|
6
|
+
* This is the REST API of LCDP 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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.WishReferrerTypeToJSON = exports.WishReferrerTypeFromJSONTyped = exports.WishReferrerTypeFromJSON = exports.WishReferrerType = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Referrer type
|
|
19
|
+
* @export
|
|
20
|
+
* @enum {string}
|
|
21
|
+
*/
|
|
22
|
+
var WishReferrerType;
|
|
23
|
+
(function (WishReferrerType) {
|
|
24
|
+
WishReferrerType["MANUAL"] = "MANUAL";
|
|
25
|
+
WishReferrerType["FAVORITE"] = "FAVORITE";
|
|
26
|
+
})(WishReferrerType = exports.WishReferrerType || (exports.WishReferrerType = {}));
|
|
27
|
+
function WishReferrerTypeFromJSON(json) {
|
|
28
|
+
return WishReferrerTypeFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
exports.WishReferrerTypeFromJSON = WishReferrerTypeFromJSON;
|
|
31
|
+
function WishReferrerTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
exports.WishReferrerTypeFromJSONTyped = WishReferrerTypeFromJSONTyped;
|
|
35
|
+
function WishReferrerTypeToJSON(value) {
|
|
36
|
+
return value;
|
|
37
|
+
}
|
|
38
|
+
exports.WishReferrerTypeToJSON = WishReferrerTypeToJSON;
|
|
@@ -40,6 +40,12 @@ export interface WishUpdateParameters {
|
|
|
40
40
|
* @memberof WishUpdateParameters
|
|
41
41
|
*/
|
|
42
42
|
status?: WishStatus;
|
|
43
|
+
/**
|
|
44
|
+
* Delay in minutes between two email notification
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof WishUpdateParameters
|
|
47
|
+
*/
|
|
48
|
+
throttleDelay?: number;
|
|
43
49
|
}
|
|
44
50
|
export declare function WishUpdateParametersFromJSON(json: any): WishUpdateParameters;
|
|
45
51
|
export declare function WishUpdateParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): WishUpdateParameters;
|
|
@@ -29,6 +29,7 @@ function WishUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
29
29
|
'desiredSellerId': !(0, runtime_1.exists)(json, 'desiredSellerId') ? json['desiredSellerId'] : json['desiredSellerId'],
|
|
30
30
|
'rebate': !(0, runtime_1.exists)(json, 'rebate') ? undefined : json['rebate'],
|
|
31
31
|
'status': !(0, runtime_1.exists)(json, 'status') ? undefined : (0, WishStatus_1.WishStatusFromJSON)(json['status']),
|
|
32
|
+
'throttleDelay': !(0, runtime_1.exists)(json, 'throttleDelay') ? undefined : json['throttleDelay'],
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
exports.WishUpdateParametersFromJSONTyped = WishUpdateParametersFromJSONTyped;
|
|
@@ -44,6 +45,7 @@ function WishUpdateParametersToJSON(value) {
|
|
|
44
45
|
'desiredSellerId': value.desiredSellerId,
|
|
45
46
|
'rebate': value.rebate,
|
|
46
47
|
'status': (0, WishStatus_1.WishStatusToJSON)(value.status),
|
|
48
|
+
'throttleDelay': value.throttleDelay,
|
|
47
49
|
};
|
|
48
50
|
}
|
|
49
51
|
exports.WishUpdateParametersToJSON = WishUpdateParametersToJSON;
|
|
@@ -14,8 +14,10 @@ export * from './PagingMetadata';
|
|
|
14
14
|
export * from './ProductEnthusiasm';
|
|
15
15
|
export * from './ProductLink';
|
|
16
16
|
export * from './ProductLinkAllOf';
|
|
17
|
+
export * from './Referrer';
|
|
17
18
|
export * from './RestError';
|
|
18
19
|
export * from './Wish';
|
|
19
20
|
export * from './WishCreationParameters';
|
|
21
|
+
export * from './WishReferrerType';
|
|
20
22
|
export * from './WishStatus';
|
|
21
23
|
export * from './WishUpdateParameters';
|
package/wish/src/models/index.js
CHANGED
|
@@ -30,8 +30,10 @@ __exportStar(require("./PagingMetadata"), exports);
|
|
|
30
30
|
__exportStar(require("./ProductEnthusiasm"), exports);
|
|
31
31
|
__exportStar(require("./ProductLink"), exports);
|
|
32
32
|
__exportStar(require("./ProductLinkAllOf"), exports);
|
|
33
|
+
__exportStar(require("./Referrer"), exports);
|
|
33
34
|
__exportStar(require("./RestError"), exports);
|
|
34
35
|
__exportStar(require("./Wish"), exports);
|
|
35
36
|
__exportStar(require("./WishCreationParameters"), exports);
|
|
37
|
+
__exportStar(require("./WishReferrerType"), exports);
|
|
36
38
|
__exportStar(require("./WishStatus"), exports);
|
|
37
39
|
__exportStar(require("./WishUpdateParameters"), exports);
|