@lcdp/api-react-rest-client 2.14.0 → 2.14.1-LDS-4762-monolith-hook-changement-de-dro.17765617152
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 +34 -0
- package/chargebee-hook/src/apis/ChargebeeHookApi.js +149 -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/RestError.d.ts +103 -0
- package/chargebee-hook/src/models/RestError.js +113 -0
- package/chargebee-hook/src/models/index.d.ts +1 -0
- package/chargebee-hook/src/models/index.js +19 -0
- package/chargebee-hook/src/runtime.d.ts +190 -0
- package/chargebee-hook/src/runtime.js +598 -0
- package/package.json +1 -1
- package/user/src/models/User.d.ts +7 -0
- package/user/src/models/User.js +3 -0
- package/user/src/models/UserChargebeeTarget.d.ts +37 -0
- package/user/src/models/UserChargebeeTarget.js +49 -0
- package/user/src/models/index.d.ts +1 -0
- package/user/src/models/index.js +1 -0
|
@@ -0,0 +1,49 @@
|
|
|
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.UserChargebeeTargetToJSON = exports.UserChargebeeTargetFromJSONTyped = exports.UserChargebeeTargetFromJSON = exports.instanceOfUserChargebeeTarget = void 0;
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the UserChargebeeTarget interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfUserChargebeeTarget(value) {
|
|
21
|
+
if (!('href' in value) || value['href'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
return true;
|
|
24
|
+
}
|
|
25
|
+
exports.instanceOfUserChargebeeTarget = instanceOfUserChargebeeTarget;
|
|
26
|
+
function UserChargebeeTargetFromJSON(json) {
|
|
27
|
+
return UserChargebeeTargetFromJSONTyped(json, false);
|
|
28
|
+
}
|
|
29
|
+
exports.UserChargebeeTargetFromJSON = UserChargebeeTargetFromJSON;
|
|
30
|
+
function UserChargebeeTargetFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'href': json['href'],
|
|
36
|
+
'id': json['id'],
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
exports.UserChargebeeTargetFromJSONTyped = UserChargebeeTargetFromJSONTyped;
|
|
40
|
+
function UserChargebeeTargetToJSON(value) {
|
|
41
|
+
if (value == null) {
|
|
42
|
+
return value;
|
|
43
|
+
}
|
|
44
|
+
return {
|
|
45
|
+
'href': value['href'],
|
|
46
|
+
'id': value['id'],
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
exports.UserChargebeeTargetToJSON = UserChargebeeTargetToJSON;
|
|
@@ -20,6 +20,7 @@ export * from './Transport';
|
|
|
20
20
|
export * from './User';
|
|
21
21
|
export * from './UserBankAccountCreationParameters';
|
|
22
22
|
export * from './UserBankAccountLink';
|
|
23
|
+
export * from './UserChargebeeTarget';
|
|
23
24
|
export * from './UserCompany';
|
|
24
25
|
export * from './UserCreationParameters';
|
|
25
26
|
export * from './UserCustomCommissions';
|
package/user/src/models/index.js
CHANGED
|
@@ -38,6 +38,7 @@ __exportStar(require("./Transport"), exports);
|
|
|
38
38
|
__exportStar(require("./User"), exports);
|
|
39
39
|
__exportStar(require("./UserBankAccountCreationParameters"), exports);
|
|
40
40
|
__exportStar(require("./UserBankAccountLink"), exports);
|
|
41
|
+
__exportStar(require("./UserChargebeeTarget"), exports);
|
|
41
42
|
__exportStar(require("./UserCompany"), exports);
|
|
42
43
|
__exportStar(require("./UserCreationParameters"), exports);
|
|
43
44
|
__exportStar(require("./UserCustomCommissions"), exports);
|