@lcdp/api-react-rest-client 2.14.0-develop.17636521498 → 2.14.0
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/package.json +1 -1
- package/user/src/models/User.d.ts +0 -7
- package/user/src/models/User.js +0 -3
- 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 -2
- package/user/src/models/index.js +0 -2
- 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/package.json
CHANGED
|
@@ -22,7 +22,6 @@ import type { UserThreads } from './UserThreads';
|
|
|
22
22
|
import type { UserWallets } from './UserWallets';
|
|
23
23
|
import type { UserRole } from './UserRole';
|
|
24
24
|
import type { KycLevel } from './KycLevel';
|
|
25
|
-
import type { RestrictedProductStorageType } from './RestrictedProductStorageType';
|
|
26
25
|
import type { UserJournal } from './UserJournal';
|
|
27
26
|
/**
|
|
28
27
|
* Fields :
|
|
@@ -254,12 +253,6 @@ export interface User {
|
|
|
254
253
|
* @memberof User
|
|
255
254
|
*/
|
|
256
255
|
restrictedProductTypes?: HttpLink;
|
|
257
|
-
/**
|
|
258
|
-
*
|
|
259
|
-
* @type {Array<RestrictedProductStorageType>}
|
|
260
|
-
* @memberof User
|
|
261
|
-
*/
|
|
262
|
-
restrictedProductStorageTypes?: Array<RestrictedProductStorageType>;
|
|
263
256
|
/**
|
|
264
257
|
*
|
|
265
258
|
* @type {HttpLink}
|
package/user/src/models/User.js
CHANGED
|
@@ -28,7 +28,6 @@ var UserThreads_1 = require("./UserThreads");
|
|
|
28
28
|
var UserWallets_1 = require("./UserWallets");
|
|
29
29
|
var UserRole_1 = require("./UserRole");
|
|
30
30
|
var KycLevel_1 = require("./KycLevel");
|
|
31
|
-
var RestrictedProductStorageType_1 = require("./RestrictedProductStorageType");
|
|
32
31
|
var UserJournal_1 = require("./UserJournal");
|
|
33
32
|
/**
|
|
34
33
|
* Check if a given object implements the User interface.
|
|
@@ -101,7 +100,6 @@ function UserFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
101
100
|
'rules': (json['rules'] === null || json['rules'] === undefined) ? json['rules'] : (0, HttpLink_1.HttpLinkFromJSON)(json['rules']),
|
|
102
101
|
'restrictedFeatures': (json['restrictedFeatures'] === null || json['restrictedFeatures'] === undefined) ? json['restrictedFeatures'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedFeatures']),
|
|
103
102
|
'restrictedProductTypes': (json['restrictedProductTypes'] === null || json['restrictedProductTypes'] === undefined) ? json['restrictedProductTypes'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedProductTypes']),
|
|
104
|
-
'restrictedProductStorageTypes': (json['restrictedProductStorageTypes'] === null || json['restrictedProductStorageTypes'] === undefined) ? json['restrictedProductStorageTypes'] : json['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeFromJSON),
|
|
105
103
|
'restrictedNotificationTypes': (json['restrictedNotificationTypes'] === null || json['restrictedNotificationTypes'] === undefined) ? json['restrictedNotificationTypes'] : (0, HttpLink_1.HttpLinkFromJSON)(json['restrictedNotificationTypes']),
|
|
106
104
|
'customCommissions': (json['customCommissions'] === null || json['customCommissions'] === undefined) ? json['customCommissions'] : (0, HttpLink_1.HttpLinkFromJSON)(json['customCommissions']),
|
|
107
105
|
'tags': json['tags'],
|
|
@@ -158,7 +156,6 @@ function UserToJSON(value) {
|
|
|
158
156
|
'rules': (0, HttpLink_1.HttpLinkToJSON)(value['rules']),
|
|
159
157
|
'restrictedFeatures': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedFeatures']),
|
|
160
158
|
'restrictedProductTypes': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedProductTypes']),
|
|
161
|
-
'restrictedProductStorageTypes': (value['restrictedProductStorageTypes'] === null || value['restrictedProductStorageTypes'] === undefined) ? value['restrictedProductStorageTypes'] : value['restrictedProductStorageTypes'].map(RestrictedProductStorageType_1.RestrictedProductStorageTypeToJSON),
|
|
162
159
|
'restrictedNotificationTypes': (0, HttpLink_1.HttpLinkToJSON)(value['restrictedNotificationTypes']),
|
|
163
160
|
'customCommissions': (0, HttpLink_1.HttpLinkToJSON)(value['customCommissions']),
|
|
164
161
|
'tags': value['tags'],
|
|
@@ -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';
|
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);
|
|
@@ -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;
|
|
@@ -1,55 +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.RestrictedProductStorageTypeToJSON = exports.RestrictedProductStorageTypeFromJSONTyped = exports.RestrictedProductStorageTypeFromJSON = exports.instanceOfRestrictedProductStorageType = exports.RestrictedProductStorageTypeActionsEnum = void 0;
|
|
17
|
-
var ProductStorageType_1 = require("./ProductStorageType");
|
|
18
|
-
/**
|
|
19
|
-
* @export
|
|
20
|
-
*/
|
|
21
|
-
exports.RestrictedProductStorageTypeActionsEnum = {
|
|
22
|
-
BUY: 'BUY',
|
|
23
|
-
SELL: 'SELL'
|
|
24
|
-
};
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the RestrictedProductStorageType interface.
|
|
27
|
-
*/
|
|
28
|
-
function instanceOfRestrictedProductStorageType(value) {
|
|
29
|
-
return true;
|
|
30
|
-
}
|
|
31
|
-
exports.instanceOfRestrictedProductStorageType = instanceOfRestrictedProductStorageType;
|
|
32
|
-
function RestrictedProductStorageTypeFromJSON(json) {
|
|
33
|
-
return RestrictedProductStorageTypeFromJSONTyped(json, false);
|
|
34
|
-
}
|
|
35
|
-
exports.RestrictedProductStorageTypeFromJSON = RestrictedProductStorageTypeFromJSON;
|
|
36
|
-
function RestrictedProductStorageTypeFromJSONTyped(json, ignoreDiscriminator) {
|
|
37
|
-
if (json == null) {
|
|
38
|
-
return json;
|
|
39
|
-
}
|
|
40
|
-
return {
|
|
41
|
-
'actions': json['actions'],
|
|
42
|
-
'target': (json['target'] === null || json['target'] === undefined) ? json['target'] : (0, ProductStorageType_1.ProductStorageTypeFromJSON)(json['target']),
|
|
43
|
-
};
|
|
44
|
-
}
|
|
45
|
-
exports.RestrictedProductStorageTypeFromJSONTyped = RestrictedProductStorageTypeFromJSONTyped;
|
|
46
|
-
function RestrictedProductStorageTypeToJSON(value) {
|
|
47
|
-
if (value == null) {
|
|
48
|
-
return value;
|
|
49
|
-
}
|
|
50
|
-
return {
|
|
51
|
-
'actions': value['actions'],
|
|
52
|
-
'target': (0, ProductStorageType_1.ProductStorageTypeToJSON)(value['target']),
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
exports.RestrictedProductStorageTypeToJSON = RestrictedProductStorageTypeToJSON;
|