@lcdp/api-react-rest-client 2.13.3-LDS-4543-api-suppression-mandate-challen.15342802230 → 2.13.3-LDS-4475-mangopay-sca.15460116981
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/challenge/index.d.ts +1 -0
- package/challenge/index.js +17 -0
- package/challenge/src/apis/ManageChallengesApi.d.ts +29 -0
- package/challenge/src/apis/ManageChallengesApi.js +161 -0
- package/challenge/src/apis/index.d.ts +1 -0
- package/challenge/src/apis/index.js +19 -0
- package/challenge/src/index.d.ts +3 -0
- package/challenge/src/index.js +21 -0
- package/challenge/src/models/Challenge.d.ts +38 -0
- package/challenge/src/models/Challenge.js +48 -0
- package/challenge/src/models/ChallengeAction.d.ts +38 -0
- package/challenge/src/models/ChallengeAction.js +51 -0
- package/challenge/src/models/index.d.ts +2 -0
- package/challenge/src/models/index.js +20 -0
- package/challenge/src/runtime.d.ts +190 -0
- package/challenge/src/runtime.js +598 -0
- package/mandate/src/apis/ManageMandatesApi.d.ts +14 -3
- package/mandate/src/apis/ManageMandatesApi.js +90 -9
- package/mandate/src/models/Challenge.d.ts +38 -0
- package/mandate/src/models/Challenge.js +48 -0
- package/mandate/src/models/ChallengeAction.d.ts +38 -0
- package/mandate/src/models/ChallengeAction.js +51 -0
- package/mandate/src/models/MandateChallenge.d.ts +44 -0
- package/mandate/src/models/MandateChallenge.js +52 -0
- package/mandate/src/models/MandateChallengeCreationParameters.d.ts +31 -0
- package/mandate/src/models/MandateChallengeCreationParameters.js +47 -0
- package/mandate/src/models/MandateCreationParameters.d.ts +7 -1
- package/mandate/src/models/MandateCreationParameters.js +2 -2
- package/mandate/src/models/index.d.ts +4 -1
- package/mandate/src/models/index.js +4 -1
- package/package.json +1 -1
- package/ubo/src/apis/ManageUboDeclarationApi.d.ts +2 -2
- package/ubo/src/apis/ManageUboDeclarationApi.js +2 -2
- package/user/src/apis/ManageUserDocumentApi.d.ts +4 -4
- package/user/src/apis/ManageUserDocumentApi.js +4 -4
- package/user/src/models/ScaEnrollmentStatus.d.ts +2 -2
- package/user/src/models/ScaEnrollmentStatus.js +2 -2
- package/mandate/src/models/CreatedMandate.d.ts +0 -31
- package/mandate/src/models/CreatedMandate.js +0 -47
|
@@ -76,7 +76,7 @@ var ManageUserDocumentApi = /** @class */ (function (_super) {
|
|
|
76
76
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
-
* Restrictions: - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in
|
|
79
|
+
* Restrictions: - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in \'ACTIVE\'
|
|
80
80
|
* Upload document associated to current user
|
|
81
81
|
*/
|
|
82
82
|
ManageUserDocumentApi.prototype.createOrUpdateCurrentUserDocumentRaw = function (requestParameters, initOverrides) {
|
|
@@ -165,7 +165,7 @@ var ManageUserDocumentApi = /** @class */ (function (_super) {
|
|
|
165
165
|
});
|
|
166
166
|
};
|
|
167
167
|
/**
|
|
168
|
-
* Restrictions: - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in
|
|
168
|
+
* Restrictions: - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in \'ACTIVE\'
|
|
169
169
|
* Upload document associated to current user
|
|
170
170
|
*/
|
|
171
171
|
ManageUserDocumentApi.prototype.createOrUpdateCurrentUserDocument = function (requestParameters, initOverrides) {
|
|
@@ -183,7 +183,7 @@ var ManageUserDocumentApi = /** @class */ (function (_super) {
|
|
|
183
183
|
});
|
|
184
184
|
};
|
|
185
185
|
/**
|
|
186
|
-
* Restrictions : - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in
|
|
186
|
+
* Restrictions : - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in \'ACTIVE\'
|
|
187
187
|
* Upload document associated to given user
|
|
188
188
|
*/
|
|
189
189
|
ManageUserDocumentApi.prototype.createOrUpdateUserDocumentRaw = function (requestParameters, initOverrides) {
|
|
@@ -275,7 +275,7 @@ var ManageUserDocumentApi = /** @class */ (function (_super) {
|
|
|
275
275
|
});
|
|
276
276
|
};
|
|
277
277
|
/**
|
|
278
|
-
* Restrictions : - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in
|
|
278
|
+
* Restrictions : - If DocumentType is in (\'ID\', \'KBIS\', \'SHARE_HOLDER\', \'STATUS\') then user \'scaEnrollmentStatus\' should be in \'ACTIVE\'
|
|
279
279
|
* Upload document associated to given user
|
|
280
280
|
*/
|
|
281
281
|
ManageUserDocumentApi.prototype.createOrUpdateUserDocument = function (requestParameters, initOverrides) {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
*/
|
|
12
12
|
/**
|
|
13
13
|
* Status of the SCA enrollment
|
|
14
|
-
* -
|
|
14
|
+
* - UNKNOWN: Strong customer authentication status is unknown.
|
|
15
15
|
* - REQUIRED: Strong customer authentication is mandatory but has not yet been set up. Account access is restricted.
|
|
16
16
|
* - PENDING: The strong authentication enrollment process has been initiated but is not yet complete. The user account remains limited until the process is completed.
|
|
17
17
|
* - ACTIVE: Strong customer authentication is fully configured and functional.
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
* @export
|
|
20
20
|
*/
|
|
21
21
|
export declare const ScaEnrollmentStatus: {
|
|
22
|
-
readonly
|
|
22
|
+
readonly UNKNOWN: "UNKNOWN";
|
|
23
23
|
readonly REQUIRED: "REQUIRED";
|
|
24
24
|
readonly PENDING: "PENDING";
|
|
25
25
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -16,7 +16,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
16
16
|
exports.ScaEnrollmentStatusToJSON = exports.ScaEnrollmentStatusFromJSONTyped = exports.ScaEnrollmentStatusFromJSON = exports.instanceOfScaEnrollmentStatus = exports.ScaEnrollmentStatus = void 0;
|
|
17
17
|
/**
|
|
18
18
|
* Status of the SCA enrollment
|
|
19
|
-
* -
|
|
19
|
+
* - UNKNOWN: Strong customer authentication status is unknown.
|
|
20
20
|
* - REQUIRED: Strong customer authentication is mandatory but has not yet been set up. Account access is restricted.
|
|
21
21
|
* - PENDING: The strong authentication enrollment process has been initiated but is not yet complete. The user account remains limited until the process is completed.
|
|
22
22
|
* - ACTIVE: Strong customer authentication is fully configured and functional.
|
|
@@ -24,7 +24,7 @@ exports.ScaEnrollmentStatusToJSON = exports.ScaEnrollmentStatusFromJSONTyped = e
|
|
|
24
24
|
* @export
|
|
25
25
|
*/
|
|
26
26
|
exports.ScaEnrollmentStatus = {
|
|
27
|
-
|
|
27
|
+
UNKNOWN: 'UNKNOWN',
|
|
28
28
|
REQUIRED: 'REQUIRED',
|
|
29
29
|
PENDING: 'PENDING',
|
|
30
30
|
ACTIVE: 'ACTIVE'
|
|
@@ -1,31 +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
|
-
* @interface CreatedMandate
|
|
16
|
-
*/
|
|
17
|
-
export interface CreatedMandate {
|
|
18
|
-
/**
|
|
19
|
-
* Redirecting url to the mandate
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @memberof CreatedMandate
|
|
22
|
-
*/
|
|
23
|
-
url: string;
|
|
24
|
-
}
|
|
25
|
-
/**
|
|
26
|
-
* Check if a given object implements the CreatedMandate interface.
|
|
27
|
-
*/
|
|
28
|
-
export declare function instanceOfCreatedMandate(value: object): value is CreatedMandate;
|
|
29
|
-
export declare function CreatedMandateFromJSON(json: any): CreatedMandate;
|
|
30
|
-
export declare function CreatedMandateFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatedMandate;
|
|
31
|
-
export declare function CreatedMandateToJSON(value?: CreatedMandate | null): any;
|
|
@@ -1,47 +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.CreatedMandateToJSON = exports.CreatedMandateFromJSONTyped = exports.CreatedMandateFromJSON = exports.instanceOfCreatedMandate = void 0;
|
|
17
|
-
/**
|
|
18
|
-
* Check if a given object implements the CreatedMandate interface.
|
|
19
|
-
*/
|
|
20
|
-
function instanceOfCreatedMandate(value) {
|
|
21
|
-
if (!('url' in value) || value['url'] === undefined)
|
|
22
|
-
return false;
|
|
23
|
-
return true;
|
|
24
|
-
}
|
|
25
|
-
exports.instanceOfCreatedMandate = instanceOfCreatedMandate;
|
|
26
|
-
function CreatedMandateFromJSON(json) {
|
|
27
|
-
return CreatedMandateFromJSONTyped(json, false);
|
|
28
|
-
}
|
|
29
|
-
exports.CreatedMandateFromJSON = CreatedMandateFromJSON;
|
|
30
|
-
function CreatedMandateFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
-
if (json == null) {
|
|
32
|
-
return json;
|
|
33
|
-
}
|
|
34
|
-
return {
|
|
35
|
-
'url': json['url'],
|
|
36
|
-
};
|
|
37
|
-
}
|
|
38
|
-
exports.CreatedMandateFromJSONTyped = CreatedMandateFromJSONTyped;
|
|
39
|
-
function CreatedMandateToJSON(value) {
|
|
40
|
-
if (value == null) {
|
|
41
|
-
return value;
|
|
42
|
-
}
|
|
43
|
-
return {
|
|
44
|
-
'url': value['url'],
|
|
45
|
-
};
|
|
46
|
-
}
|
|
47
|
-
exports.CreatedMandateToJSON = CreatedMandateToJSON;
|