@lcdp/api-react-rest-client 2.14.1-develop.17982133842 → 2.14.2-LDS-4883.18008091819
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/chargebee-hook/index.d.ts +1 -0
- package/chargebee-hook/index.js +17 -0
- package/chargebee-hook/src/apis/ChargebeeHookApi.d.ts +31 -0
- package/chargebee-hook/src/apis/ChargebeeHookApi.js +134 -0
- package/chargebee-hook/src/apis/index.d.ts +1 -0
- package/chargebee-hook/src/apis/index.js +19 -0
- package/chargebee-hook/src/index.d.ts +3 -0
- package/chargebee-hook/src/index.js +21 -0
- package/chargebee-hook/src/models/HookRequest.d.ts +85 -0
- package/chargebee-hook/src/models/HookRequest.js +67 -0
- package/chargebee-hook/src/models/RestError.d.ts +103 -0
- package/chargebee-hook/src/models/RestError.js +113 -0
- package/chargebee-hook/src/models/index.d.ts +2 -0
- package/chargebee-hook/src/models/index.js +20 -0
- package/chargebee-hook/src/runtime.d.ts +190 -0
- package/chargebee-hook/src/runtime.js +598 -0
- package/package.json +1 -1
- package/statistic/src/models/UserStatistic.d.ts +31 -9
- package/statistic/src/models/UserStatistic.js +12 -6
- package/statistic/src/models/index.d.ts +0 -2
- package/statistic/src/models/index.js +0 -2
- package/third-party/src/models/ThirdPartyLinkCreationParameters.d.ts +4 -2
- package/third-party/src/models/ThirdPartyLinkCreationParameters.js +4 -2
- package/user/src/models/User.d.ts +0 -7
- package/user/src/models/User.js +0 -3
- package/user/src/models/UserStatisticLink.d.ts +30 -8
- package/user/src/models/UserStatisticLink.js +12 -6
- package/user/src/models/UserUpdateParameters.d.ts +0 -7
- package/user/src/models/UserUpdateParameters.js +0 -3
- package/user/src/models/index.d.ts +0 -4
- package/user/src/models/index.js +0 -4
- package/statistic/src/models/UserStatisticLongTermQoS.d.ts +0 -61
- package/statistic/src/models/UserStatisticLongTermQoS.js +0 -55
- package/statistic/src/models/UserStatisticShortTermQoS.d.ts +0 -43
- package/statistic/src/models/UserStatisticShortTermQoS.js +0 -49
- package/user/src/models/ProductStorageType.d.ts +0 -26
- package/user/src/models/ProductStorageType.js +0 -49
- package/user/src/models/RestrictedProductStorageType.d.ts +0 -46
- package/user/src/models/RestrictedProductStorageType.js +0 -55
- package/user/src/models/UserStatisticLinkAllOfLongTermQoS.d.ts +0 -61
- package/user/src/models/UserStatisticLinkAllOfLongTermQoS.js +0 -55
- package/user/src/models/UserStatisticLinkAllOfShortTermQoS.d.ts +0 -43
- package/user/src/models/UserStatisticLinkAllOfShortTermQoS.js +0 -49
|
@@ -15,8 +15,6 @@
|
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UserStatisticToJSON = exports.UserStatisticFromJSONTyped = exports.UserStatisticFromJSON = exports.instanceOfUserStatistic = void 0;
|
|
17
17
|
var UserLink_1 = require("./UserLink");
|
|
18
|
-
var UserStatisticLongTermQoS_1 = require("./UserStatisticLongTermQoS");
|
|
19
|
-
var UserStatisticShortTermQoS_1 = require("./UserStatisticShortTermQoS");
|
|
20
18
|
/**
|
|
21
19
|
* Check if a given object implements the UserStatistic interface.
|
|
22
20
|
*/
|
|
@@ -35,8 +33,12 @@ function UserStatisticFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
33
|
return {
|
|
36
34
|
'id': json['id'],
|
|
37
35
|
'user': (json['user'] === null || json['user'] === undefined) ? json['user'] : (0, UserLink_1.UserLinkFromJSON)(json['user']),
|
|
38
|
-
'
|
|
39
|
-
'
|
|
36
|
+
'numberOfSales': json['numberOfSales'],
|
|
37
|
+
'salesErrorRate': json['salesErrorRate'],
|
|
38
|
+
'salesCanceledRate': json['salesCanceledRate'],
|
|
39
|
+
'salesLitigationRate': json['salesLitigationRate'],
|
|
40
|
+
'salesResponsivenessDelay': json['salesResponsivenessDelay'],
|
|
41
|
+
'deliveryDelay': json['deliveryDelay'],
|
|
40
42
|
};
|
|
41
43
|
}
|
|
42
44
|
exports.UserStatisticFromJSONTyped = UserStatisticFromJSONTyped;
|
|
@@ -47,8 +49,12 @@ function UserStatisticToJSON(value) {
|
|
|
47
49
|
return {
|
|
48
50
|
'id': value['id'],
|
|
49
51
|
'user': (0, UserLink_1.UserLinkToJSON)(value['user']),
|
|
50
|
-
'
|
|
51
|
-
'
|
|
52
|
+
'numberOfSales': value['numberOfSales'],
|
|
53
|
+
'salesErrorRate': value['salesErrorRate'],
|
|
54
|
+
'salesCanceledRate': value['salesCanceledRate'],
|
|
55
|
+
'salesLitigationRate': value['salesLitigationRate'],
|
|
56
|
+
'salesResponsivenessDelay': value['salesResponsivenessDelay'],
|
|
57
|
+
'deliveryDelay': value['deliveryDelay'],
|
|
52
58
|
};
|
|
53
59
|
}
|
|
54
60
|
exports.UserStatisticToJSON = UserStatisticToJSON;
|
|
@@ -25,5 +25,3 @@ __exportStar(require("./RestError"), exports);
|
|
|
25
25
|
__exportStar(require("./SaleOfferStatistic"), exports);
|
|
26
26
|
__exportStar(require("./UserLink"), exports);
|
|
27
27
|
__exportStar(require("./UserStatistic"), exports);
|
|
28
|
-
__exportStar(require("./UserStatisticLongTermQoS"), exports);
|
|
29
|
-
__exportStar(require("./UserStatisticShortTermQoS"), exports);
|
|
@@ -32,8 +32,10 @@ export interface ThirdPartyLinkCreationParameters {
|
|
|
32
32
|
* @export
|
|
33
33
|
*/
|
|
34
34
|
export declare const ThirdPartyLinkCreationParametersSlugEnum: {
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
35
|
+
readonly BADGES_PHARMACY_STATISTICS_DASHBOARD: "BADGES_PHARMACY_STATISTICS_DASHBOARD";
|
|
36
|
+
readonly BADGES_LABORATORY_STATISTICS_DASHBOARD: "BADGES_LABORATORY_STATISTICS_DASHBOARD";
|
|
37
|
+
readonly CHARGEBEE_USER_PRICING_PAGE: "CHARGEBEE_USER_PRICING_PAGE";
|
|
38
|
+
readonly CHARGEBEE_USER_PORTAL: "CHARGEBEE_USER_PORTAL";
|
|
37
39
|
};
|
|
38
40
|
export declare type ThirdPartyLinkCreationParametersSlugEnum = typeof ThirdPartyLinkCreationParametersSlugEnum[keyof typeof ThirdPartyLinkCreationParametersSlugEnum];
|
|
39
41
|
/**
|
|
@@ -18,8 +18,10 @@ exports.ThirdPartyLinkCreationParametersToJSON = exports.ThirdPartyLinkCreationP
|
|
|
18
18
|
* @export
|
|
19
19
|
*/
|
|
20
20
|
exports.ThirdPartyLinkCreationParametersSlugEnum = {
|
|
21
|
-
|
|
22
|
-
|
|
21
|
+
BADGES_PHARMACY_STATISTICS_DASHBOARD: 'BADGES_PHARMACY_STATISTICS_DASHBOARD',
|
|
22
|
+
BADGES_LABORATORY_STATISTICS_DASHBOARD: 'BADGES_LABORATORY_STATISTICS_DASHBOARD',
|
|
23
|
+
CHARGEBEE_USER_PRICING_PAGE: 'CHARGEBEE_USER_PRICING_PAGE',
|
|
24
|
+
CHARGEBEE_USER_PORTAL: 'CHARGEBEE_USER_PORTAL'
|
|
23
25
|
};
|
|
24
26
|
/**
|
|
25
27
|
* Check if a given object implements the ThirdPartyLinkCreationParameters interface.
|
|
@@ -23,7 +23,6 @@ import type { UserThreads } from './UserThreads';
|
|
|
23
23
|
import type { UserWallets } from './UserWallets';
|
|
24
24
|
import type { UserRole } from './UserRole';
|
|
25
25
|
import type { KycLevel } from './KycLevel';
|
|
26
|
-
import type { RestrictedProductStorageType } from './RestrictedProductStorageType';
|
|
27
26
|
import type { UserJournal } from './UserJournal';
|
|
28
27
|
/**
|
|
29
28
|
* Fields :
|
|
@@ -261,12 +260,6 @@ export interface User {
|
|
|
261
260
|
* @memberof User
|
|
262
261
|
*/
|
|
263
262
|
restrictedProductTypes?: HttpLink;
|
|
264
|
-
/**
|
|
265
|
-
*
|
|
266
|
-
* @type {Array<RestrictedProductStorageType>}
|
|
267
|
-
* @memberof User
|
|
268
|
-
*/
|
|
269
|
-
restrictedProductStorageTypes?: Array<RestrictedProductStorageType>;
|
|
270
263
|
/**
|
|
271
264
|
*
|
|
272
265
|
* @type {HttpLink}
|
package/user/src/models/User.js
CHANGED
|
@@ -29,7 +29,6 @@ var UserThreads_1 = require("./UserThreads");
|
|
|
29
29
|
var UserWallets_1 = require("./UserWallets");
|
|
30
30
|
var UserRole_1 = require("./UserRole");
|
|
31
31
|
var KycLevel_1 = require("./KycLevel");
|
|
32
|
-
var RestrictedProductStorageType_1 = require("./RestrictedProductStorageType");
|
|
33
32
|
var UserJournal_1 = require("./UserJournal");
|
|
34
33
|
/**
|
|
35
34
|
* Check if a given object implements the User interface.
|
|
@@ -103,7 +102,6 @@ function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
103
102
|
'rules': (json['rules'] === null || json['rules'] === undefined) ? json['rules'] : (0, HttpLink_1.HttpLinkFromJSON)(json['rules']),
|
|
104
103
|
'restrictedFeatures': (json['restrictedFeatures'] === null || json['restrictedFeatures'] === undefined) ? json['restrictedFeatures'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedFeatures']),
|
|
105
104
|
'restrictedProductTypes': (json['restrictedProductTypes'] === null || json['restrictedProductTypes'] === undefined) ? json['restrictedProductTypes'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedProductTypes']),
|
|
106
|
-
'restrictedProductStorageTypes': (json['restrictedProductStorageTypes'] === null || json['restrictedProductStorageTypes'] === undefined) ? json['restrictedProductStorageTypes'] : json['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeFromJSON),
|
|
107
105
|
'restrictedNotificationTypes': (json['restrictedNotificationTypes'] === null || json['restrictedNotificationTypes'] === undefined) ? json['restrictedNotificationTypes'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedNotificationTypes']),
|
|
108
106
|
'customCommissions': (json['customCommissions'] === null || json['customCommissions'] === undefined) ? json['customCommissions'] : (0, HttpLink_1.HttpLinkFromJSON)(json['customCommissions']),
|
|
109
107
|
'tags': json['tags'],
|
|
@@ -161,7 +159,6 @@ function UserToJSON(value) {
|
|
|
161
159
|
'rules': (0, HttpLink_1.HttpLinkToJSON)(value['rules']),
|
|
162
160
|
'restrictedFeatures': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedFeatures']),
|
|
163
161
|
'restrictedProductTypes': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedProductTypes']),
|
|
164
|
-
'restrictedProductStorageTypes': (value['restrictedProductStorageTypes'] === null || value['restrictedProductStorageTypes'] === undefined) ? value['restrictedProductStorageTypes'] : value['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeToJSON),
|
|
165
162
|
'restrictedNotificationTypes': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedNotificationTypes']),
|
|
166
163
|
'customCommissions': (0, HttpLink_1.HttpLinkToJSON)(value['customCommissions']),
|
|
167
164
|
'tags': value['tags'],
|
|
@@ -9,8 +9,6 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { UserStatisticLinkAllOfShortTermQoS } from './UserStatisticLinkAllOfShortTermQoS';
|
|
13
|
-
import type { UserStatisticLinkAllOfLongTermQoS } from './UserStatisticLinkAllOfLongTermQoS';
|
|
14
12
|
/**
|
|
15
13
|
*
|
|
16
14
|
* @export
|
|
@@ -24,17 +22,41 @@ export interface UserStatisticLink {
|
|
|
24
22
|
*/
|
|
25
23
|
href: string;
|
|
26
24
|
/**
|
|
27
|
-
*
|
|
28
|
-
* @type {
|
|
25
|
+
* Number of sales
|
|
26
|
+
* @type {number}
|
|
29
27
|
* @memberof UserStatisticLink
|
|
30
28
|
*/
|
|
31
|
-
|
|
29
|
+
numberOfSales?: number;
|
|
32
30
|
/**
|
|
33
|
-
*
|
|
34
|
-
* @type {
|
|
31
|
+
* Rate of sales that have at least one removed or refunded item
|
|
32
|
+
* @type {number}
|
|
35
33
|
* @memberof UserStatisticLink
|
|
36
34
|
*/
|
|
37
|
-
|
|
35
|
+
salesErrorRate?: number;
|
|
36
|
+
/**
|
|
37
|
+
* Rate of sales that have been canceled, ignoring cancellation issued by the buyer without any reason
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof UserStatisticLink
|
|
40
|
+
*/
|
|
41
|
+
salesCanceledRate?: number;
|
|
42
|
+
/**
|
|
43
|
+
* Rate of sales that are associated to a litigation
|
|
44
|
+
* @type {number}
|
|
45
|
+
* @memberof UserStatisticLink
|
|
46
|
+
*/
|
|
47
|
+
salesLitigationRate?: number;
|
|
48
|
+
/**
|
|
49
|
+
* Average delay of responsiveness for sales (delay between order created by buyer and accepted/modified/canceled by seller or administrator)
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UserStatisticLink
|
|
52
|
+
*/
|
|
53
|
+
salesResponsivenessDelay?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Average delay of delivery for sales
|
|
56
|
+
* @type {number}
|
|
57
|
+
* @memberof UserStatisticLink
|
|
58
|
+
*/
|
|
59
|
+
deliveryDelay?: number;
|
|
38
60
|
}
|
|
39
61
|
/**
|
|
40
62
|
* Check if a given object implements the UserStatisticLink interface.
|
|
@@ -14,8 +14,6 @@
|
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
16
|
exports.UserStatisticLinkToJSON = exports.UserStatisticLinkFromJSONTyped = exports.UserStatisticLinkFromJSON = exports.instanceOfUserStatisticLink = void 0;
|
|
17
|
-
var UserStatisticLinkAllOfShortTermQoS_1 = require("./UserStatisticLinkAllOfShortTermQoS");
|
|
18
|
-
var UserStatisticLinkAllOfLongTermQoS_1 = require("./UserStatisticLinkAllOfLongTermQoS");
|
|
19
17
|
/**
|
|
20
18
|
* Check if a given object implements the UserStatisticLink interface.
|
|
21
19
|
*/
|
|
@@ -35,8 +33,12 @@ function UserStatisticLinkFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
33
|
}
|
|
36
34
|
return {
|
|
37
35
|
'href': json['href'],
|
|
38
|
-
'
|
|
39
|
-
'
|
|
36
|
+
'numberOfSales': json['numberOfSales'],
|
|
37
|
+
'salesErrorRate': json['salesErrorRate'],
|
|
38
|
+
'salesCanceledRate': json['salesCanceledRate'],
|
|
39
|
+
'salesLitigationRate': json['salesLitigationRate'],
|
|
40
|
+
'salesResponsivenessDelay': json['salesResponsivenessDelay'],
|
|
41
|
+
'deliveryDelay': json['deliveryDelay'],
|
|
40
42
|
};
|
|
41
43
|
}
|
|
42
44
|
exports.UserStatisticLinkFromJSONTyped = UserStatisticLinkFromJSONTyped;
|
|
@@ -46,8 +48,12 @@ function UserStatisticLinkToJSON(value) {
|
|
|
46
48
|
}
|
|
47
49
|
return {
|
|
48
50
|
'href': value['href'],
|
|
49
|
-
'
|
|
50
|
-
'
|
|
51
|
+
'numberOfSales': value['numberOfSales'],
|
|
52
|
+
'salesErrorRate': value['salesErrorRate'],
|
|
53
|
+
'salesCanceledRate': value['salesCanceledRate'],
|
|
54
|
+
'salesLitigationRate': value['salesLitigationRate'],
|
|
55
|
+
'salesResponsivenessDelay': value['salesResponsivenessDelay'],
|
|
56
|
+
'deliveryDelay': value['deliveryDelay'],
|
|
51
57
|
};
|
|
52
58
|
}
|
|
53
59
|
exports.UserStatisticLinkToJSON = UserStatisticLinkToJSON;
|
|
@@ -13,7 +13,6 @@ import type { UserCompany } from './UserCompany';
|
|
|
13
13
|
import type { Address } from './Address';
|
|
14
14
|
import type { UserRole } from './UserRole';
|
|
15
15
|
import type { UserDelegatedServices } from './UserDelegatedServices';
|
|
16
|
-
import type { RestrictedProductStorageType } from './RestrictedProductStorageType';
|
|
17
16
|
import type { UserJournalUpdateParameters } from './UserJournalUpdateParameters';
|
|
18
17
|
import type { Gender } from './Gender';
|
|
19
18
|
/**
|
|
@@ -130,12 +129,6 @@ export interface UserUpdateParameters {
|
|
|
130
129
|
* @memberof UserUpdateParameters
|
|
131
130
|
*/
|
|
132
131
|
delegatedServices?: UserDelegatedServices;
|
|
133
|
-
/**
|
|
134
|
-
*
|
|
135
|
-
* @type {Array<RestrictedProductStorageType>}
|
|
136
|
-
* @memberof UserUpdateParameters
|
|
137
|
-
*/
|
|
138
|
-
restrictedProductStorageTypes?: Array<RestrictedProductStorageType>;
|
|
139
132
|
/**
|
|
140
133
|
* Labels of the client
|
|
141
134
|
* @type {Array<string>}
|
|
@@ -19,7 +19,6 @@ var UserCompany_1 = require("./UserCompany");
|
|
|
19
19
|
var Address_1 = require("./Address");
|
|
20
20
|
var UserRole_1 = require("./UserRole");
|
|
21
21
|
var UserDelegatedServices_1 = require("./UserDelegatedServices");
|
|
22
|
-
var RestrictedProductStorageType_1 = require("./RestrictedProductStorageType");
|
|
23
22
|
var UserJournalUpdateParameters_1 = require("./UserJournalUpdateParameters");
|
|
24
23
|
var Gender_1 = require("./Gender");
|
|
25
24
|
/**
|
|
@@ -56,7 +55,6 @@ function UserUpdateParametersFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
56
55
|
'company': (json['company'] === null || json['company'] === undefined) ? json['company'] : (0, UserCompany_1.UserCompanyFromJSON)(json['company']),
|
|
57
56
|
'pickupEnabled': json['pickupEnabled'],
|
|
58
57
|
'delegatedServices': (json['delegatedServices'] === null || json['delegatedServices'] === undefined) ? json['delegatedServices'] : (0, UserDelegatedServices_1.UserDelegatedServicesFromJSON)(json['delegatedServices']),
|
|
59
|
-
'restrictedProductStorageTypes': (json['restrictedProductStorageTypes'] === null || json['restrictedProductStorageTypes'] === undefined) ? json['restrictedProductStorageTypes'] : json['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeFromJSON),
|
|
60
58
|
'tags': json['tags'],
|
|
61
59
|
'isMangopaySynced': json['isMangopaySynced'],
|
|
62
60
|
'journal': (json['journal'] === null || json['journal'] === undefined) ? json['journal'] : (0, UserJournalUpdateParameters_1.UserJournalUpdateParametersFromJSON)(json['journal']),
|
|
@@ -86,7 +84,6 @@ function UserUpdateParametersToJSON(value) {
|
|
|
86
84
|
'company': (0, UserCompany_1.UserCompanyToJSON)(value['company']),
|
|
87
85
|
'pickupEnabled': value['pickupEnabled'],
|
|
88
86
|
'delegatedServices': (0, UserDelegatedServices_1.UserDelegatedServicesToJSON)(value['delegatedServices']),
|
|
89
|
-
'restrictedProductStorageTypes': (value['restrictedProductStorageTypes'] === null || value['restrictedProductStorageTypes'] === undefined) ? value['restrictedProductStorageTypes'] : value['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeToJSON),
|
|
90
87
|
'tags': value['tags'],
|
|
91
88
|
'isMangopaySynced': value['isMangopaySynced'],
|
|
92
89
|
'journal': (0, UserJournalUpdateParameters_1.UserJournalUpdateParametersToJSON)(value['journal']),
|
|
@@ -11,10 +11,8 @@ export * from './PaginatedUsers';
|
|
|
11
11
|
export * from './PagingMetadata';
|
|
12
12
|
export * from './PasswordResetCompletionParameters';
|
|
13
13
|
export * from './PasswordResetCreationParameters';
|
|
14
|
-
export * from './ProductStorageType';
|
|
15
14
|
export * from './ProductTypeLink';
|
|
16
15
|
export * from './RestError';
|
|
17
|
-
export * from './RestrictedProductStorageType';
|
|
18
16
|
export * from './ScaEnrollmentStatus';
|
|
19
17
|
export * from './SomeonePasswordUpdateParameters';
|
|
20
18
|
export * from './ThreadLink';
|
|
@@ -48,8 +46,6 @@ export * from './UserRuleComparatorEnum';
|
|
|
48
46
|
export * from './UserRuleCreationParameters';
|
|
49
47
|
export * from './UserSocialNetwork';
|
|
50
48
|
export * from './UserStatisticLink';
|
|
51
|
-
export * from './UserStatisticLinkAllOfLongTermQoS';
|
|
52
|
-
export * from './UserStatisticLinkAllOfShortTermQoS';
|
|
53
49
|
export * from './UserThreads';
|
|
54
50
|
export * from './UserUpdateParameters';
|
|
55
51
|
export * from './UserWalletLink';
|
package/user/src/models/index.js
CHANGED
|
@@ -29,10 +29,8 @@ __exportStar(require("./PaginatedUsers"), exports);
|
|
|
29
29
|
__exportStar(require("./PagingMetadata"), exports);
|
|
30
30
|
__exportStar(require("./PasswordResetCompletionParameters"), exports);
|
|
31
31
|
__exportStar(require("./PasswordResetCreationParameters"), exports);
|
|
32
|
-
__exportStar(require("./ProductStorageType"), exports);
|
|
33
32
|
__exportStar(require("./ProductTypeLink"), exports);
|
|
34
33
|
__exportStar(require("./RestError"), exports);
|
|
35
|
-
__exportStar(require("./RestrictedProductStorageType"), exports);
|
|
36
34
|
__exportStar(require("./ScaEnrollmentStatus"), exports);
|
|
37
35
|
__exportStar(require("./SomeonePasswordUpdateParameters"), exports);
|
|
38
36
|
__exportStar(require("./ThreadLink"), exports);
|
|
@@ -66,8 +64,6 @@ __exportStar(require("./UserRuleComparatorEnum"), exports);
|
|
|
66
64
|
__exportStar(require("./UserRuleCreationParameters"), exports);
|
|
67
65
|
__exportStar(require("./UserSocialNetwork"), exports);
|
|
68
66
|
__exportStar(require("./UserStatisticLink"), exports);
|
|
69
|
-
__exportStar(require("./UserStatisticLinkAllOfLongTermQoS"), exports);
|
|
70
|
-
__exportStar(require("./UserStatisticLinkAllOfShortTermQoS"), exports);
|
|
71
67
|
__exportStar(require("./UserThreads"), exports);
|
|
72
68
|
__exportStar(require("./UserUpdateParameters"), exports);
|
|
73
69
|
__exportStar(require("./UserWalletLink"), exports);
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-pharmaide-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
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface UserStatisticLongTermQoS
|
|
16
|
-
*/
|
|
17
|
-
export interface UserStatisticLongTermQoS {
|
|
18
|
-
/**
|
|
19
|
-
* Number of sales
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof UserStatisticLongTermQoS
|
|
22
|
-
*/
|
|
23
|
-
numberOfSales?: number | null;
|
|
24
|
-
/**
|
|
25
|
-
* Rate of sales that have at least one removed or refunded item
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof UserStatisticLongTermQoS
|
|
28
|
-
*/
|
|
29
|
-
salesErrorRate?: number;
|
|
30
|
-
/**
|
|
31
|
-
* Rate of sales that have been canceled, ignoring cancellation issued by the buyer without any reason
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof UserStatisticLongTermQoS
|
|
34
|
-
*/
|
|
35
|
-
salesCanceledRate?: number | null;
|
|
36
|
-
/**
|
|
37
|
-
* Rate of sales that are associated to a litigation
|
|
38
|
-
* @type {number}
|
|
39
|
-
* @memberof UserStatisticLongTermQoS
|
|
40
|
-
*/
|
|
41
|
-
salesLitigationRate?: number | null;
|
|
42
|
-
/**
|
|
43
|
-
* Average delay (in days) of responsiveness for sales (delay between order created by buyer and accepted/modified/canceled by seller or administrator)
|
|
44
|
-
* @type {number}
|
|
45
|
-
* @memberof UserStatisticLongTermQoS
|
|
46
|
-
*/
|
|
47
|
-
salesResponsivenessDelay?: number | null;
|
|
48
|
-
/**
|
|
49
|
-
* Average delay (in days) of delivery for sales
|
|
50
|
-
* @type {number}
|
|
51
|
-
* @memberof UserStatisticLongTermQoS
|
|
52
|
-
*/
|
|
53
|
-
deliveryDelay?: number | null;
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* Check if a given object implements the UserStatisticLongTermQoS interface.
|
|
57
|
-
*/
|
|
58
|
-
export declare function instanceOfUserStatisticLongTermQoS(value: object): value is UserStatisticLongTermQoS;
|
|
59
|
-
export declare function UserStatisticLongTermQoSFromJSON(json: any): UserStatisticLongTermQoS;
|
|
60
|
-
export declare function UserStatisticLongTermQoSFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserStatisticLongTermQoS;
|
|
61
|
-
export declare function UserStatisticLongTermQoSToJSON(value?: UserStatisticLongTermQoS | null): any;
|
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-pharmaide-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.UserStatisticLongTermQoSToJSON = exports.UserStatisticLongTermQoSFromJSONTyped = exports.UserStatisticLongTermQoSFromJSON = exports.instanceOfUserStatisticLongTermQoS = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the UserStatisticLongTermQoS interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfUserStatisticLongTermQoS(value) {
|
|
21
|
-
return true;
|
|
22
|
-
}
|
|
23
|
-
exports.instanceOfUserStatisticLongTermQoS = instanceOfUserStatisticLongTermQoS;
|
|
24
|
-
function UserStatisticLongTermQoSFromJSON(json) {
|
|
25
|
-
return UserStatisticLongTermQoSFromJSONTyped(json, false);
|
|
26
|
-
}
|
|
27
|
-
exports.UserStatisticLongTermQoSFromJSON = UserStatisticLongTermQoSFromJSON;
|
|
28
|
-
function UserStatisticLongTermQoSFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
-
if (json == null) {
|
|
30
|
-
return json;
|
|
31
|
-
}
|
|
32
|
-
return {
|
|
33
|
-
'numberOfSales': json['numberOfSales'],
|
|
34
|
-
'salesErrorRate': json['salesErrorRate'],
|
|
35
|
-
'salesCanceledRate': json['salesCanceledRate'],
|
|
36
|
-
'salesLitigationRate': json['salesLitigationRate'],
|
|
37
|
-
'salesResponsivenessDelay': json['salesResponsivenessDelay'],
|
|
38
|
-
'deliveryDelay': json['deliveryDelay'],
|
|
39
|
-
};
|
|
40
|
-
}
|
|
41
|
-
exports.UserStatisticLongTermQoSFromJSONTyped = UserStatisticLongTermQoSFromJSONTyped;
|
|
42
|
-
function UserStatisticLongTermQoSToJSON(value) {
|
|
43
|
-
if (value == null) {
|
|
44
|
-
return value;
|
|
45
|
-
}
|
|
46
|
-
return {
|
|
47
|
-
'numberOfSales': value['numberOfSales'],
|
|
48
|
-
'salesErrorRate': value['salesErrorRate'],
|
|
49
|
-
'salesCanceledRate': value['salesCanceledRate'],
|
|
50
|
-
'salesLitigationRate': value['salesLitigationRate'],
|
|
51
|
-
'salesResponsivenessDelay': value['salesResponsivenessDelay'],
|
|
52
|
-
'deliveryDelay': value['deliveryDelay'],
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
exports.UserStatisticLongTermQoSToJSON = UserStatisticLongTermQoSToJSON;
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* lcdp-pharmaide-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
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
* @interface UserStatisticShortTermQoS
|
|
16
|
-
*/
|
|
17
|
-
export interface UserStatisticShortTermQoS {
|
|
18
|
-
/**
|
|
19
|
-
* Number of sales
|
|
20
|
-
* @type {number}
|
|
21
|
-
* @memberof UserStatisticShortTermQoS
|
|
22
|
-
*/
|
|
23
|
-
numberOfSales?: number | null;
|
|
24
|
-
/**
|
|
25
|
-
* Number of sales with modification
|
|
26
|
-
* @type {number}
|
|
27
|
-
* @memberof UserStatisticShortTermQoS
|
|
28
|
-
*/
|
|
29
|
-
numberOfSalesWithModification?: number | null;
|
|
30
|
-
/**
|
|
31
|
-
* Rate of sales that have been modified
|
|
32
|
-
* @type {number}
|
|
33
|
-
* @memberof UserStatisticShortTermQoS
|
|
34
|
-
*/
|
|
35
|
-
salesModificationRate?: number | null;
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* Check if a given object implements the UserStatisticShortTermQoS interface.
|
|
39
|
-
*/
|
|
40
|
-
export declare function instanceOfUserStatisticShortTermQoS(value: object): value is UserStatisticShortTermQoS;
|
|
41
|
-
export declare function UserStatisticShortTermQoSFromJSON(json: any): UserStatisticShortTermQoS;
|
|
42
|
-
export declare function UserStatisticShortTermQoSFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserStatisticShortTermQoS;
|
|
43
|
-
export declare function UserStatisticShortTermQoSToJSON(value?: UserStatisticShortTermQoS | null): any;
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* lcdp-pharmaide-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.UserStatisticShortTermQoSToJSON = exports.UserStatisticShortTermQoSFromJSONTyped = exports.UserStatisticShortTermQoSFromJSON = exports.instanceOfUserStatisticShortTermQoS = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the UserStatisticShortTermQoS interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfUserStatisticShortTermQoS(value) {
|
|
21
|
-
return true;
|
|
22
|
-
}
|
|
23
|
-
exports.instanceOfUserStatisticShortTermQoS = instanceOfUserStatisticShortTermQoS;
|
|
24
|
-
function UserStatisticShortTermQoSFromJSON(json) {
|
|
25
|
-
return UserStatisticShortTermQoSFromJSONTyped(json, false);
|
|
26
|
-
}
|
|
27
|
-
exports.UserStatisticShortTermQoSFromJSON = UserStatisticShortTermQoSFromJSON;
|
|
28
|
-
function UserStatisticShortTermQoSFromJSONTyped(json, ignoreDiscriminator) {
|
|
29
|
-
if (json == null) {
|
|
30
|
-
return json;
|
|
31
|
-
}
|
|
32
|
-
return {
|
|
33
|
-
'numberOfSales': json['numberOfSales'],
|
|
34
|
-
'numberOfSalesWithModification': json['numberOfSalesWithModification'],
|
|
35
|
-
'salesModificationRate': json['salesModificationRate'],
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
exports.UserStatisticShortTermQoSFromJSONTyped = UserStatisticShortTermQoSFromJSONTyped;
|
|
39
|
-
function UserStatisticShortTermQoSToJSON(value) {
|
|
40
|
-
if (value == null) {
|
|
41
|
-
return value;
|
|
42
|
-
}
|
|
43
|
-
return {
|
|
44
|
-
'numberOfSales': value['numberOfSales'],
|
|
45
|
-
'numberOfSalesWithModification': value['numberOfSalesWithModification'],
|
|
46
|
-
'salesModificationRate': value['salesModificationRate'],
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
exports.UserStatisticShortTermQoSToJSON = UserStatisticShortTermQoSToJSON;
|
|
@@ -1,26 +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
|
-
/**
|
|
13
|
-
*
|
|
14
|
-
* @export
|
|
15
|
-
*/
|
|
16
|
-
export declare const ProductStorageType: {
|
|
17
|
-
readonly FREE: "FREE";
|
|
18
|
-
readonly FRIDGE: "FRIDGE";
|
|
19
|
-
readonly FREEZER: "FREEZER";
|
|
20
|
-
readonly FRESH: "FRESH";
|
|
21
|
-
};
|
|
22
|
-
export declare type ProductStorageType = typeof ProductStorageType[keyof typeof ProductStorageType];
|
|
23
|
-
export declare function instanceOfProductStorageType(value: any): boolean;
|
|
24
|
-
export declare function ProductStorageTypeFromJSON(json: any): ProductStorageType;
|
|
25
|
-
export declare function ProductStorageTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductStorageType;
|
|
26
|
-
export declare function ProductStorageTypeToJSON(value?: ProductStorageType | null): any;
|
|
@@ -1,49 +0,0 @@
|
|
|
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.ProductStorageTypeToJSON = exports.ProductStorageTypeFromJSONTyped = exports.ProductStorageTypeFromJSON = exports.instanceOfProductStorageType = exports.ProductStorageType = void 0;
|
|
17
|
-
/**
|
|
18
|
-
*
|
|
19
|
-
* @export
|
|
20
|
-
*/
|
|
21
|
-
exports.ProductStorageType = {
|
|
22
|
-
FREE: 'FREE',
|
|
23
|
-
FRIDGE: 'FRIDGE',
|
|
24
|
-
FREEZER: 'FREEZER',
|
|
25
|
-
FRESH: 'FRESH'
|
|
26
|
-
};
|
|
27
|
-
function instanceOfProductStorageType(value) {
|
|
28
|
-
for (var key in exports.ProductStorageType) {
|
|
29
|
-
if (Object.prototype.hasOwnProperty.call(exports.ProductStorageType, key)) {
|
|
30
|
-
if (exports.ProductStorageType[key] === value) {
|
|
31
|
-
return true;
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
exports.instanceOfProductStorageType = instanceOfProductStorageType;
|
|
38
|
-
function ProductStorageTypeFromJSON(json) {
|
|
39
|
-
return ProductStorageTypeFromJSONTyped(json, false);
|
|
40
|
-
}
|
|
41
|
-
exports.ProductStorageTypeFromJSON = ProductStorageTypeFromJSON;
|
|
42
|
-
function ProductStorageTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
43
|
-
return json;
|
|
44
|
-
}
|
|
45
|
-
exports.ProductStorageTypeFromJSONTyped = ProductStorageTypeFromJSONTyped;
|
|
46
|
-
function ProductStorageTypeToJSON(value) {
|
|
47
|
-
return value;
|
|
48
|
-
}
|
|
49
|
-
exports.ProductStorageTypeToJSON = ProductStorageTypeToJSON;
|
|
@@ -1,46 +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 type { ProductStorageType } from './ProductStorageType';
|
|
13
|
-
/**
|
|
14
|
-
*
|
|
15
|
-
* @export
|
|
16
|
-
* @interface RestrictedProductStorageType
|
|
17
|
-
*/
|
|
18
|
-
export interface RestrictedProductStorageType {
|
|
19
|
-
/**
|
|
20
|
-
*
|
|
21
|
-
* @type {Array<string>}
|
|
22
|
-
* @memberof RestrictedProductStorageType
|
|
23
|
-
*/
|
|
24
|
-
actions?: Array<RestrictedProductStorageTypeActionsEnum>;
|
|
25
|
-
/**
|
|
26
|
-
*
|
|
27
|
-
* @type {ProductStorageType}
|
|
28
|
-
* @memberof RestrictedProductStorageType
|
|
29
|
-
*/
|
|
30
|
-
target?: ProductStorageType;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* @export
|
|
34
|
-
*/
|
|
35
|
-
export declare const RestrictedProductStorageTypeActionsEnum: {
|
|
36
|
-
readonly BUY: "BUY";
|
|
37
|
-
readonly SELL: "SELL";
|
|
38
|
-
};
|
|
39
|
-
export declare type RestrictedProductStorageTypeActionsEnum = typeof RestrictedProductStorageTypeActionsEnum[keyof typeof RestrictedProductStorageTypeActionsEnum];
|
|
40
|
-
/**
|
|
41
|
-
* Check if a given object implements the RestrictedProductStorageType interface.
|
|
42
|
-
*/
|
|
43
|
-
export declare function instanceOfRestrictedProductStorageType(value: object): value is RestrictedProductStorageType;
|
|
44
|
-
export declare function RestrictedProductStorageTypeFromJSON(json: any): RestrictedProductStorageType;
|
|
45
|
-
export declare function RestrictedProductStorageTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): RestrictedProductStorageType;
|
|
46
|
-
export declare function RestrictedProductStorageTypeToJSON(value?: RestrictedProductStorageType | null): any;
|