@mojaloop/api-snippets 17.2.0 → 17.2.3
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/CHANGELOG.md +14 -0
- package/jest.config.js +2 -4
- package/lib/fspiop/v1_0/openapi.d.ts +791 -1490
- package/lib/fspiop/v1_1/openapi.d.ts +811 -1523
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +189 -141
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +218 -207
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
- package/lib/thirdparty/openapi.d.ts +655 -1454
- package/package.json +23 -33
@@ -4,65 +4,103 @@
|
|
4
4
|
*/
|
5
5
|
export interface paths {
|
6
6
|
"/": {
|
7
|
+
/** Health check endpoint. */
|
7
8
|
get: operations["BackendHealthCheck"];
|
8
9
|
};
|
9
10
|
"/bulkQuotes": {
|
11
|
+
/** Requests a bulk quote. */
|
10
12
|
post: operations["BackendBulkQuotesPost"];
|
11
13
|
};
|
12
14
|
"/bulkQuotes/{idValue}": {
|
15
|
+
/** Requests information relating to a bulk quote identified by the specified identifier value. */
|
13
16
|
get: operations["BackendBulkQuotesGet"];
|
14
17
|
};
|
15
18
|
"/bulkTransactions/{bulkTransactionId}": {
|
16
|
-
/**
|
19
|
+
/**
|
20
|
+
* Callbacks for the bulk transaction request.
|
21
|
+
* @description The HTTP request `PUT /bulkTransactions/{bulkTransactionId}` is used to amend information regarding a bulk transaction, i.e. when autoAcceptParty or autoAcceptQuote is false then the payer need to provide confirmation to proceed with further processing of the request. The `{bulkTransactionId}` in the URI should contain the `bulkTransactionId` that was used for the creation of the bulk transfer.
|
22
|
+
*/
|
17
23
|
put: operations["BackendBulkTransactionsPut"];
|
18
24
|
};
|
19
25
|
"/requestToPay/{transactionRequestId}": {
|
20
|
-
/**
|
26
|
+
/**
|
27
|
+
* Callback for the requestToPay request.
|
28
|
+
* @description It is used to notify the DFSP backend about the status of the requestToPayTransfer.
|
29
|
+
*/
|
21
30
|
put: operations["RequestToPayPut"];
|
22
31
|
};
|
23
32
|
"/bulkTransfers": {
|
33
|
+
/** Execute bulk transfer of funds from an external account to internal accounts. */
|
24
34
|
post: operations["BackendBulkTransfersPost"];
|
25
35
|
};
|
26
36
|
"/bulkTransfers/{idValue}": {
|
37
|
+
/** Requests information relating to a bulk transfer identified by the specified identifier value. */
|
27
38
|
get: operations["BackendBulkTransfersGet"];
|
28
39
|
};
|
29
40
|
"/otp/{transactionRequestId}": {
|
41
|
+
/** Requests OTP. */
|
30
42
|
get: operations["BackendOtpGet"];
|
31
43
|
};
|
32
44
|
"/participants/{idType}/{idValue}": {
|
33
|
-
/**
|
45
|
+
/**
|
46
|
+
* Asks for the identifier (fspId) of the scheme participant (FSP) that can handle transfers for the specified identifier type and value.
|
47
|
+
* @description The HTTP request `GET /participants/{idType}/{idValue}` is used to find out in which FSP the requested party, defined by `{idType}` and `{idValue}`, is located.
|
48
|
+
*/
|
34
49
|
get: operations["BackendParticipantsGetByTypeAndID"];
|
35
50
|
};
|
36
51
|
"/participants/{idType}/{idValue}/{idSubValue}": {
|
37
|
-
/**
|
52
|
+
/**
|
53
|
+
* Asks for the identifier (fspId) of the scheme participant (FSP) that can handle transfers for the specified identifier type and value.
|
54
|
+
* @description The HTTP request `GET /participants/{idType}/{idValue}/{idSubValue}` is used to find out in which FSP the requested party, defined by `{idType}`, `{idValue}` and `{idSubValue}` is located.
|
55
|
+
*/
|
38
56
|
get: operations["BackendParticipantsGetByTypeIDAndSubId"];
|
39
57
|
};
|
40
58
|
"/parties/{idType}/{idValue}": {
|
41
|
-
/**
|
59
|
+
/**
|
60
|
+
* Requests information relating to a transfer party identified by the specified identifier type and value.
|
61
|
+
* @description The HTTP request `GET /parties/{idType}/{idValue}` is used to look up information regarding the requested transfer party, identified by `{idType}` and `{idValue}`.
|
62
|
+
*/
|
42
63
|
get: operations["BackendPartiesGetByTypeAndID"];
|
43
64
|
};
|
44
65
|
"/parties/{idType}/{idValue}/{idSubValue}": {
|
45
|
-
/**
|
66
|
+
/**
|
67
|
+
* Requests information relating to a transfer party identified by the specified identifier type, value and subId value.
|
68
|
+
* @description The HTTP request `GET /parties/{idType}/{idValue}/{idSubValue}` is used to look up information regarding the requested transfer party, identified by `{idType}`, `{idValue}` and `{idSubValue}`.
|
69
|
+
*/
|
46
70
|
get: operations["BackendPartiesGetByTypeIdAndSubId"];
|
47
71
|
};
|
48
72
|
"/quoterequests": {
|
49
|
-
/**
|
73
|
+
/**
|
74
|
+
* Requests a quote for the specified transfer.
|
75
|
+
* @description The HTTP request `POST /quoterequests` is used to request the creation of a quote for the provided financial transaction.
|
76
|
+
*/
|
50
77
|
post: operations["BackendQuoteRequest"];
|
51
78
|
};
|
52
79
|
"/transactionrequests": {
|
80
|
+
/** Transaction request that supports pull based transfers. */
|
53
81
|
post: operations["BackendTransactionRequest"];
|
54
82
|
};
|
55
83
|
"/transfers": {
|
56
|
-
/**
|
84
|
+
/**
|
85
|
+
* Transfers funds from an external account to an internal account.
|
86
|
+
* @description The HTTP request `POST /transfers` is used to request the creation of a transfer for the transfer party.
|
87
|
+
*/
|
57
88
|
post: operations["BackendTransfersPost"];
|
58
89
|
};
|
59
90
|
"/transfers/{transferId}": {
|
60
|
-
/**
|
91
|
+
/**
|
92
|
+
* Retrieves information for a specific transfer.
|
93
|
+
* @description The HTTP request `GET /transfers/{transferId}` is used to get information regarding a transfer created or requested earlier. The `{transferId}` in the URI should contain the `transferId` that was used for the creation of the transfer.
|
94
|
+
*/
|
61
95
|
get: operations["BackendTransfersGet"];
|
62
|
-
/**
|
96
|
+
/**
|
97
|
+
* Receive notification for a specific transfer.
|
98
|
+
* @description The HTTP request `PUT /transfers/{transferId}` is used to receive notification for transfer being fulfiled when the FSP is a Payee.
|
99
|
+
*/
|
63
100
|
put: operations["BackendTransfersPut"];
|
64
101
|
};
|
65
102
|
}
|
103
|
+
export type webhooks = Record<string, never>;
|
66
104
|
export interface components {
|
67
105
|
schemas: {
|
68
106
|
/**
|
@@ -251,60 +289,34 @@ export interface components {
|
|
251
289
|
transferState: components["schemas"]["transferState"];
|
252
290
|
};
|
253
291
|
fulfil?: {
|
254
|
-
body?:
|
255
|
-
|
256
|
-
};
|
257
|
-
headers?: {
|
258
|
-
[key: string]: unknown;
|
259
|
-
};
|
292
|
+
body?: Record<string, never>;
|
293
|
+
headers?: Record<string, never>;
|
260
294
|
};
|
261
295
|
initiatedTimestamp?: components["schemas"]["timestamp"];
|
262
296
|
lastError?: components["schemas"]["transferError"];
|
263
297
|
prepare?: {
|
264
|
-
body?:
|
265
|
-
|
266
|
-
};
|
267
|
-
headers?: {
|
268
|
-
[key: string]: unknown;
|
269
|
-
};
|
298
|
+
body?: Record<string, never>;
|
299
|
+
headers?: Record<string, never>;
|
270
300
|
};
|
271
301
|
quote?: {
|
272
302
|
fulfilment?: string;
|
273
|
-
internalRequest?:
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
[key: string]: unknown;
|
278
|
-
};
|
279
|
-
request?: {
|
280
|
-
[key: string]: unknown;
|
281
|
-
};
|
282
|
-
response?: {
|
283
|
-
[key: string]: unknown;
|
284
|
-
};
|
303
|
+
internalRequest?: Record<string, never>;
|
304
|
+
mojaloopResponse?: Record<string, never>;
|
305
|
+
request?: Record<string, never>;
|
306
|
+
response?: Record<string, never>;
|
285
307
|
};
|
286
308
|
quoteRequest?: {
|
287
|
-
body?:
|
288
|
-
|
289
|
-
};
|
290
|
-
headers?: {
|
291
|
-
[key: string]: unknown;
|
292
|
-
};
|
309
|
+
body?: Record<string, never>;
|
310
|
+
headers?: Record<string, never>;
|
293
311
|
};
|
294
312
|
quoteResponse?: {
|
295
|
-
body?:
|
296
|
-
|
297
|
-
};
|
298
|
-
headers?: {
|
299
|
-
[key: string]: unknown;
|
300
|
-
};
|
313
|
+
body?: Record<string, never>;
|
314
|
+
headers?: Record<string, never>;
|
301
315
|
};
|
302
316
|
transferId?: components["schemas"]["transferId"];
|
303
317
|
};
|
304
318
|
/** @description This object may represent a number of different error object types and so its properties may vary significantly. */
|
305
|
-
generalError:
|
306
|
-
[key: string]: unknown;
|
307
|
-
};
|
319
|
+
generalError: Record<string, never>;
|
308
320
|
/** @description Indicates the geographic location from where the transaction was initiated. */
|
309
321
|
geoCode: {
|
310
322
|
latitude: components["schemas"]["latitude"];
|
@@ -829,15 +841,17 @@ export interface components {
|
|
829
841
|
AuthenticationType: "OTP" | "QRCODE" | "U2F";
|
830
842
|
};
|
831
843
|
responses: {
|
832
|
-
/** Malformed or missing required headers or parameters. */
|
844
|
+
/** @description Malformed or missing required headers or parameters. */
|
833
845
|
400: {
|
834
846
|
content: {
|
835
847
|
"application/json": components["schemas"]["errorResponse"];
|
836
848
|
};
|
837
849
|
};
|
838
|
-
/** The party specified by the provided identifier type and value is not known to the server. */
|
839
|
-
404:
|
840
|
-
|
850
|
+
/** @description The party specified by the provided identifier type and value is not known to the server. */
|
851
|
+
404: {
|
852
|
+
content: never;
|
853
|
+
};
|
854
|
+
/** @description An error occurred processing the request. */
|
841
855
|
500: {
|
842
856
|
content: {
|
843
857
|
"application/json": components["schemas"]["errorResponse"];
|
@@ -856,17 +870,31 @@ export interface components {
|
|
856
870
|
/** @description Identifier of the bulk transaction to continue as returned in the response to a `POST /bulkTransaction` request. */
|
857
871
|
bulkTransactionId: components["schemas"]["CorrelationId"];
|
858
872
|
};
|
873
|
+
requestBodies: never;
|
874
|
+
headers: never;
|
875
|
+
pathItems: never;
|
859
876
|
}
|
877
|
+
export type external = Record<string, never>;
|
860
878
|
export interface operations {
|
879
|
+
/** Health check endpoint. */
|
861
880
|
BackendHealthCheck: {
|
862
881
|
responses: {
|
863
|
-
/** Returns empty body if the service is running. */
|
864
|
-
200:
|
882
|
+
/** @description Returns empty body if the service is running. */
|
883
|
+
200: {
|
884
|
+
content: never;
|
885
|
+
};
|
865
886
|
};
|
866
887
|
};
|
888
|
+
/** Requests a bulk quote. */
|
867
889
|
BackendBulkQuotesPost: {
|
890
|
+
/** @description Incoming request for a bulk quotation. */
|
891
|
+
requestBody?: {
|
892
|
+
content: {
|
893
|
+
"application/json": components["schemas"]["bulkQuoteRequest"];
|
894
|
+
};
|
895
|
+
};
|
868
896
|
responses: {
|
869
|
-
/** A response to the bulk quote request. */
|
897
|
+
/** @description A response to the bulk quote request. */
|
870
898
|
200: {
|
871
899
|
content: {
|
872
900
|
"application/json": components["schemas"]["bulkQuoteResponse"];
|
@@ -875,22 +903,16 @@ export interface operations {
|
|
875
903
|
400: components["responses"]["400"];
|
876
904
|
500: components["responses"]["500"];
|
877
905
|
};
|
878
|
-
/** Incoming request for a bulk quotation. */
|
879
|
-
requestBody: {
|
880
|
-
content: {
|
881
|
-
"application/json": components["schemas"]["bulkQuoteRequest"];
|
882
|
-
};
|
883
|
-
};
|
884
906
|
};
|
907
|
+
/** Requests information relating to a bulk quote identified by the specified identifier value. */
|
885
908
|
BackendBulkQuotesGet: {
|
886
909
|
parameters: {
|
887
910
|
path: {
|
888
|
-
/** The identifier value. */
|
889
911
|
idValue: components["parameters"]["idValue"];
|
890
912
|
};
|
891
913
|
};
|
892
914
|
responses: {
|
893
|
-
/** Response containing details of the requested bulk quote. */
|
915
|
+
/** @description Response containing details of the requested bulk quote. */
|
894
916
|
200: {
|
895
917
|
content: {
|
896
918
|
"application/json": components["schemas"]["bulkQuoteResponse"];
|
@@ -901,48 +923,64 @@ export interface operations {
|
|
901
923
|
500: components["responses"]["500"];
|
902
924
|
};
|
903
925
|
};
|
904
|
-
/**
|
926
|
+
/**
|
927
|
+
* Callbacks for the bulk transaction request.
|
928
|
+
* @description The HTTP request `PUT /bulkTransactions/{bulkTransactionId}` is used to amend information regarding a bulk transaction, i.e. when autoAcceptParty or autoAcceptQuote is false then the payer need to provide confirmation to proceed with further processing of the request. The `{bulkTransactionId}` in the URI should contain the `bulkTransactionId` that was used for the creation of the bulk transfer.
|
929
|
+
*/
|
905
930
|
BackendBulkTransactionsPut: {
|
906
931
|
parameters: {
|
907
932
|
path: {
|
908
|
-
/** Identifier of the bulk transaction to continue as returned in the response to a `POST /bulkTransaction` request. */
|
909
933
|
bulkTransactionId: components["parameters"]["bulkTransactionId"];
|
910
934
|
};
|
911
935
|
};
|
912
|
-
|
913
|
-
/** Bulk transaction information successfully amended. */
|
914
|
-
202: unknown;
|
915
|
-
400: components["responses"]["400"];
|
916
|
-
500: components["responses"]["500"];
|
917
|
-
};
|
918
|
-
requestBody: {
|
936
|
+
requestBody?: {
|
919
937
|
content: {
|
920
938
|
"application/json": components["schemas"]["bulkTransactionResponse"];
|
921
939
|
};
|
922
940
|
};
|
941
|
+
responses: {
|
942
|
+
/** @description Bulk transaction information successfully amended. */
|
943
|
+
202: {
|
944
|
+
content: never;
|
945
|
+
};
|
946
|
+
400: components["responses"]["400"];
|
947
|
+
500: components["responses"]["500"];
|
948
|
+
};
|
923
949
|
};
|
924
|
-
/**
|
950
|
+
/**
|
951
|
+
* Callback for the requestToPay request.
|
952
|
+
* @description It is used to notify the DFSP backend about the status of the requestToPayTransfer.
|
953
|
+
*/
|
925
954
|
RequestToPayPut: {
|
926
955
|
parameters: {
|
927
956
|
path: {
|
928
957
|
transactionRequestId: components["parameters"]["transactionRequestId"];
|
929
958
|
};
|
930
959
|
};
|
960
|
+
requestBody?: {
|
961
|
+
content: {
|
962
|
+
"application/json": components["schemas"]["requestToPayCallback"];
|
963
|
+
};
|
964
|
+
};
|
931
965
|
responses: {
|
932
|
-
/** OK */
|
933
|
-
200:
|
966
|
+
/** @description OK */
|
967
|
+
200: {
|
968
|
+
content: never;
|
969
|
+
};
|
934
970
|
400: components["responses"]["400"];
|
935
971
|
500: components["responses"]["500"];
|
936
972
|
};
|
937
|
-
|
973
|
+
};
|
974
|
+
/** Execute bulk transfer of funds from an external account to internal accounts. */
|
975
|
+
BackendBulkTransfersPost: {
|
976
|
+
/** @description An incoming bulk transfer request. */
|
977
|
+
requestBody?: {
|
938
978
|
content: {
|
939
|
-
"application/json": components["schemas"]["
|
979
|
+
"application/json": components["schemas"]["bulkTransferRequest"];
|
940
980
|
};
|
941
981
|
};
|
942
|
-
};
|
943
|
-
BackendBulkTransfersPost: {
|
944
982
|
responses: {
|
945
|
-
/** The bulk transfer was accepted. */
|
983
|
+
/** @description The bulk transfer was accepted. */
|
946
984
|
200: {
|
947
985
|
content: {
|
948
986
|
"application/json": components["schemas"]["bulkTransferResponse"];
|
@@ -951,22 +989,16 @@ export interface operations {
|
|
951
989
|
400: components["responses"]["400"];
|
952
990
|
500: components["responses"]["500"];
|
953
991
|
};
|
954
|
-
/** An incoming bulk transfer request. */
|
955
|
-
requestBody: {
|
956
|
-
content: {
|
957
|
-
"application/json": components["schemas"]["bulkTransferRequest"];
|
958
|
-
};
|
959
|
-
};
|
960
992
|
};
|
993
|
+
/** Requests information relating to a bulk transfer identified by the specified identifier value. */
|
961
994
|
BackendBulkTransfersGet: {
|
962
995
|
parameters: {
|
963
996
|
path: {
|
964
|
-
/** The identifier value. */
|
965
997
|
idValue: components["parameters"]["idValue"];
|
966
998
|
};
|
967
999
|
};
|
968
1000
|
responses: {
|
969
|
-
/** Response containing details of the requested bulk transfer. */
|
1001
|
+
/** @description Response containing details of the requested bulk transfer. */
|
970
1002
|
200: {
|
971
1003
|
content: {
|
972
1004
|
"application/json": components["schemas"]["bulkTransferResponse"];
|
@@ -977,6 +1009,7 @@ export interface operations {
|
|
977
1009
|
500: components["responses"]["500"];
|
978
1010
|
};
|
979
1011
|
};
|
1012
|
+
/** Requests OTP. */
|
980
1013
|
BackendOtpGet: {
|
981
1014
|
parameters: {
|
982
1015
|
path: {
|
@@ -984,7 +1017,7 @@ export interface operations {
|
|
984
1017
|
};
|
985
1018
|
};
|
986
1019
|
responses: {
|
987
|
-
/** Response containing details of the OTP. */
|
1020
|
+
/** @description Response containing details of the OTP. */
|
988
1021
|
200: {
|
989
1022
|
content: {
|
990
1023
|
"application/json": components["schemas"]["otpDetails"];
|
@@ -995,18 +1028,19 @@ export interface operations {
|
|
995
1028
|
500: components["responses"]["500"];
|
996
1029
|
};
|
997
1030
|
};
|
998
|
-
/**
|
1031
|
+
/**
|
1032
|
+
* Asks for the identifier (fspId) of the scheme participant (FSP) that can handle transfers for the specified identifier type and value.
|
1033
|
+
* @description The HTTP request `GET /participants/{idType}/{idValue}` is used to find out in which FSP the requested party, defined by `{idType}` and `{idValue}`, is located.
|
1034
|
+
*/
|
999
1035
|
BackendParticipantsGetByTypeAndID: {
|
1000
1036
|
parameters: {
|
1001
1037
|
path: {
|
1002
|
-
/** The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`. */
|
1003
1038
|
idType: components["parameters"]["idType"];
|
1004
|
-
/** The identifier value. */
|
1005
1039
|
idValue: components["parameters"]["idValue"];
|
1006
1040
|
};
|
1007
1041
|
};
|
1008
1042
|
responses: {
|
1009
|
-
/** Response containing details of the requested party. */
|
1043
|
+
/** @description Response containing details of the requested party. */
|
1010
1044
|
200: {
|
1011
1045
|
content: {
|
1012
1046
|
"application/json": components["schemas"]["participantsResponse"];
|
@@ -1017,20 +1051,20 @@ export interface operations {
|
|
1017
1051
|
500: components["responses"]["500"];
|
1018
1052
|
};
|
1019
1053
|
};
|
1020
|
-
/**
|
1054
|
+
/**
|
1055
|
+
* Asks for the identifier (fspId) of the scheme participant (FSP) that can handle transfers for the specified identifier type and value.
|
1056
|
+
* @description The HTTP request `GET /participants/{idType}/{idValue}/{idSubValue}` is used to find out in which FSP the requested party, defined by `{idType}`, `{idValue}` and `{idSubValue}` is located.
|
1057
|
+
*/
|
1021
1058
|
BackendParticipantsGetByTypeIDAndSubId: {
|
1022
1059
|
parameters: {
|
1023
1060
|
path: {
|
1024
|
-
/** The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`. */
|
1025
1061
|
idType: components["parameters"]["idType"];
|
1026
|
-
/** The identifier value. */
|
1027
1062
|
idValue: components["parameters"]["idValue"];
|
1028
|
-
/** A sub-identifier of the party identifier, or a sub-type of the party identifier's type. For example, `PASSPORT`, `DRIVING_LICENSE`. */
|
1029
1063
|
idSubValue: components["parameters"]["idSubValue"];
|
1030
1064
|
};
|
1031
1065
|
};
|
1032
1066
|
responses: {
|
1033
|
-
/** Response containing details of the requested party. */
|
1067
|
+
/** @description Response containing details of the requested party. */
|
1034
1068
|
200: {
|
1035
1069
|
content: {
|
1036
1070
|
"application/json": components["schemas"]["participantsResponse"];
|
@@ -1041,18 +1075,19 @@ export interface operations {
|
|
1041
1075
|
500: components["responses"]["500"];
|
1042
1076
|
};
|
1043
1077
|
};
|
1044
|
-
/**
|
1078
|
+
/**
|
1079
|
+
* Requests information relating to a transfer party identified by the specified identifier type and value.
|
1080
|
+
* @description The HTTP request `GET /parties/{idType}/{idValue}` is used to look up information regarding the requested transfer party, identified by `{idType}` and `{idValue}`.
|
1081
|
+
*/
|
1045
1082
|
BackendPartiesGetByTypeAndID: {
|
1046
1083
|
parameters: {
|
1047
1084
|
path: {
|
1048
|
-
/** The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`. */
|
1049
1085
|
idType: components["parameters"]["idType"];
|
1050
|
-
/** The identifier value. */
|
1051
1086
|
idValue: components["parameters"]["idValue"];
|
1052
1087
|
};
|
1053
1088
|
};
|
1054
1089
|
responses: {
|
1055
|
-
/** Response containing details of the requested party. */
|
1090
|
+
/** @description Response containing details of the requested party. */
|
1056
1091
|
200: {
|
1057
1092
|
content: {
|
1058
1093
|
"application/json": components["schemas"]["transferParty"];
|
@@ -1063,20 +1098,20 @@ export interface operations {
|
|
1063
1098
|
500: components["responses"]["500"];
|
1064
1099
|
};
|
1065
1100
|
};
|
1066
|
-
/**
|
1101
|
+
/**
|
1102
|
+
* Requests information relating to a transfer party identified by the specified identifier type, value and subId value.
|
1103
|
+
* @description The HTTP request `GET /parties/{idType}/{idValue}/{idSubValue}` is used to look up information regarding the requested transfer party, identified by `{idType}`, `{idValue}` and `{idSubValue}`.
|
1104
|
+
*/
|
1067
1105
|
BackendPartiesGetByTypeIdAndSubId: {
|
1068
1106
|
parameters: {
|
1069
1107
|
path: {
|
1070
|
-
/** The type of the party identifier. For example, `MSISDN`, `PERSONAL_ID`. */
|
1071
1108
|
idType: components["parameters"]["idType"];
|
1072
|
-
/** The identifier value. */
|
1073
1109
|
idValue: components["parameters"]["idValue"];
|
1074
|
-
/** A sub-identifier of the party identifier, or a sub-type of the party identifier's type. For example, `PASSPORT`, `DRIVING_LICENSE`. */
|
1075
1110
|
idSubValue: components["parameters"]["idSubValue"];
|
1076
1111
|
};
|
1077
1112
|
};
|
1078
1113
|
responses: {
|
1079
|
-
/** Response containing details of the requested party. */
|
1114
|
+
/** @description Response containing details of the requested party. */
|
1080
1115
|
200: {
|
1081
1116
|
content: {
|
1082
1117
|
"application/json": components["schemas"]["transferParty"];
|
@@ -1087,10 +1122,19 @@ export interface operations {
|
|
1087
1122
|
500: components["responses"]["500"];
|
1088
1123
|
};
|
1089
1124
|
};
|
1090
|
-
/**
|
1125
|
+
/**
|
1126
|
+
* Requests a quote for the specified transfer.
|
1127
|
+
* @description The HTTP request `POST /quoterequests` is used to request the creation of a quote for the provided financial transaction.
|
1128
|
+
*/
|
1091
1129
|
BackendQuoteRequest: {
|
1130
|
+
/** @description Request for a transfer quotation. */
|
1131
|
+
requestBody?: {
|
1132
|
+
content: {
|
1133
|
+
"application/json": components["schemas"]["quoteRequest"];
|
1134
|
+
};
|
1135
|
+
};
|
1092
1136
|
responses: {
|
1093
|
-
/** A response to the transfer quotation request. */
|
1137
|
+
/** @description A response to the transfer quotation request. */
|
1094
1138
|
200: {
|
1095
1139
|
content: {
|
1096
1140
|
"application/json": components["schemas"]["quoteResponse"];
|
@@ -1099,16 +1143,17 @@ export interface operations {
|
|
1099
1143
|
400: components["responses"]["400"];
|
1100
1144
|
500: components["responses"]["500"];
|
1101
1145
|
};
|
1102
|
-
|
1103
|
-
|
1146
|
+
};
|
1147
|
+
/** Transaction request that supports pull based transfers. */
|
1148
|
+
BackendTransactionRequest: {
|
1149
|
+
/** @description Request for Transaction Request. */
|
1150
|
+
requestBody?: {
|
1104
1151
|
content: {
|
1105
|
-
"application/json": components["schemas"]["
|
1152
|
+
"application/json": components["schemas"]["transactionRequest"];
|
1106
1153
|
};
|
1107
1154
|
};
|
1108
|
-
};
|
1109
|
-
BackendTransactionRequest: {
|
1110
1155
|
responses: {
|
1111
|
-
/** A response to the transfer transaction request. */
|
1156
|
+
/** @description A response to the transfer transaction request. */
|
1112
1157
|
200: {
|
1113
1158
|
content: {
|
1114
1159
|
"application/json": components["schemas"]["transactionRequestResponse"];
|
@@ -1117,17 +1162,20 @@ export interface operations {
|
|
1117
1162
|
400: components["responses"]["400"];
|
1118
1163
|
500: components["responses"]["500"];
|
1119
1164
|
};
|
1120
|
-
|
1121
|
-
|
1165
|
+
};
|
1166
|
+
/**
|
1167
|
+
* Transfers funds from an external account to an internal account.
|
1168
|
+
* @description The HTTP request `POST /transfers` is used to request the creation of a transfer for the transfer party.
|
1169
|
+
*/
|
1170
|
+
BackendTransfersPost: {
|
1171
|
+
/** @description An incoming transfer request. */
|
1172
|
+
requestBody?: {
|
1122
1173
|
content: {
|
1123
|
-
"application/json": components["schemas"]["
|
1174
|
+
"application/json": components["schemas"]["transferRequest"];
|
1124
1175
|
};
|
1125
1176
|
};
|
1126
|
-
};
|
1127
|
-
/** The HTTP request `POST /transfers` is used to request the creation of a transfer for the transfer party. */
|
1128
|
-
BackendTransfersPost: {
|
1129
1177
|
responses: {
|
1130
|
-
/** The transfer was accepted. */
|
1178
|
+
/** @description The transfer was accepted. */
|
1131
1179
|
200: {
|
1132
1180
|
content: {
|
1133
1181
|
"application/json": components["schemas"]["transferResponse"];
|
@@ -1136,14 +1184,11 @@ export interface operations {
|
|
1136
1184
|
400: components["responses"]["400"];
|
1137
1185
|
500: components["responses"]["500"];
|
1138
1186
|
};
|
1139
|
-
/** An incoming transfer request. */
|
1140
|
-
requestBody: {
|
1141
|
-
content: {
|
1142
|
-
"application/json": components["schemas"]["transferRequest"];
|
1143
|
-
};
|
1144
|
-
};
|
1145
1187
|
};
|
1146
|
-
/**
|
1188
|
+
/**
|
1189
|
+
* Retrieves information for a specific transfer.
|
1190
|
+
* @description The HTTP request `GET /transfers/{transferId}` is used to get information regarding a transfer created or requested earlier. The `{transferId}` in the URI should contain the `transferId` that was used for the creation of the transfer.
|
1191
|
+
*/
|
1147
1192
|
BackendTransfersGet: {
|
1148
1193
|
parameters: {
|
1149
1194
|
path: {
|
@@ -1151,7 +1196,7 @@ export interface operations {
|
|
1151
1196
|
};
|
1152
1197
|
};
|
1153
1198
|
responses: {
|
1154
|
-
/** The transfer was accepted. */
|
1199
|
+
/** @description The transfer was accepted. */
|
1155
1200
|
200: {
|
1156
1201
|
content: {
|
1157
1202
|
"application/json": components["schemas"]["transferDetailsResponse"];
|
@@ -1160,25 +1205,28 @@ export interface operations {
|
|
1160
1205
|
500: components["responses"]["500"];
|
1161
1206
|
};
|
1162
1207
|
};
|
1163
|
-
/**
|
1208
|
+
/**
|
1209
|
+
* Receive notification for a specific transfer.
|
1210
|
+
* @description The HTTP request `PUT /transfers/{transferId}` is used to receive notification for transfer being fulfiled when the FSP is a Payee.
|
1211
|
+
*/
|
1164
1212
|
BackendTransfersPut: {
|
1165
1213
|
parameters: {
|
1166
1214
|
path: {
|
1167
1215
|
transferId: components["parameters"]["transferId"];
|
1168
1216
|
};
|
1169
1217
|
};
|
1170
|
-
|
1171
|
-
|
1172
|
-
200: unknown;
|
1173
|
-
500: components["responses"]["500"];
|
1174
|
-
};
|
1175
|
-
/** An incoming notification for fulfiled transfer. */
|
1176
|
-
requestBody: {
|
1218
|
+
/** @description An incoming notification for fulfiled transfer. */
|
1219
|
+
requestBody?: {
|
1177
1220
|
content: {
|
1178
1221
|
"application/json": components["schemas"]["fulfilNotification"];
|
1179
1222
|
};
|
1180
1223
|
};
|
1224
|
+
responses: {
|
1225
|
+
/** @description The notification was accepted. */
|
1226
|
+
200: {
|
1227
|
+
content: never;
|
1228
|
+
};
|
1229
|
+
500: components["responses"]["500"];
|
1230
|
+
};
|
1181
1231
|
};
|
1182
1232
|
}
|
1183
|
-
export interface external {
|
1184
|
-
}
|
@@ -115,5 +115,5 @@ var Schemas;
|
|
115
115
|
Schemas.bulkTransactionIndividualTransferResult = json_schemas_json_1.default.bulkTransactionIndividualTransferResult;
|
116
116
|
Schemas.bulkTransactionResponse = json_schemas_json_1.default.bulkTransactionResponse;
|
117
117
|
Schemas.AuthenticationType = json_schemas_json_1.default.AuthenticationType;
|
118
|
-
})(Schemas
|
118
|
+
})(Schemas || (exports.Schemas = Schemas = {}));
|
119
119
|
//# sourceMappingURL=schemas.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/backend/schemas.ts"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/backend/schemas.ts"],"names":[],"mappings":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,CA6GvB;AA7GD,WAAiB,OAAO;IACT,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,mCAA2B,GAAG,2BAAW,CAAC,2BAA2B,CAAA;IACrE,oCAA4B,GAAG,2BAAW,CAAC,4BAA4B,CAAA;IACvE,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,gCAAwB,GAAG,2BAAW,CAAC,wBAAwB,CAAA;IAC/D,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,kCAA0B,GAAG,2BAAW,CAAC,0BAA0B,CAAA;IACnE,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,2BAAmB,GAAG,2BAAW,CAAC,mBAAmB,CAAA;IACrD,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,eAAO,GAAG,2BAAW,CAAC,OAAO,CAAA;IAC7B,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,cAAM,GAAG,2BAAW,CAAC,MAAM,CAAA;IAC3B,eAAO,GAAG,2BAAW,CAAC,OAAO,CAAA;IAC7B,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,eAAO,GAAG,2BAAW,CAAC,OAAO,CAAA;IAC7B,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;IACnD,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,kCAA0B,GAAG,2BAAW,CAAC,0BAA0B,CAAA;IACnE,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,4BAAoB,GAAG,2BAAW,CAAC,oBAAoB,CAAA;IACvD,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,cAAM,GAAG,2BAAW,CAAC,MAAM,CAAA;IAC3B,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,8BAAsB,GAAG,2BAAW,CAAC,sBAAsB,CAAA;IAC3D,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,uBAAe,GAAG,2BAAW,CAAC,eAAe,CAAA;IAC7C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,sBAAc,GAAG,2BAAW,CAAC,cAAc,CAAA;IAC3C,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,mBAAW,GAAG,2BAAW,CAAC,WAAW,CAAA;IACrC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,yBAAiB,GAAG,2BAAW,CAAC,iBAAiB,CAAA;IACjD,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,YAAI,GAAG,2BAAW,CAAC,IAAI,CAAA;IACvB,aAAK,GAAG,2BAAW,CAAC,KAAK,CAAA;IACzB,gBAAQ,GAAG,2BAAW,CAAC,QAAQ,CAAA;IAC/B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,eAAO,GAAG,2BAAW,CAAC,OAAO,CAAA;IAC7B,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,oBAAY,GAAG,2BAAW,CAAC,YAAY,CAAA;IACvC,iBAAS,GAAG,2BAAW,CAAC,SAAS,CAAA;IACjC,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,wBAAgB,GAAG,2BAAW,CAAC,gBAAgB,CAAA;IAC/C,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,kBAAU,GAAG,2BAAW,CAAC,UAAU,CAAA;IACnC,6BAAqB,GAAG,2BAAW,CAAC,qBAAqB,CAAA;IACzD,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,qBAAa,GAAG,2BAAW,CAAC,aAAa,CAAA;IACzC,gCAAwB,GAAG,2BAAW,CAAC,wBAAwB,CAAA;IAC/D,+CAAuC,GAAG,2BAAW,CAAC,uCAAuC,CAAA;IAC7F,+BAAuB,GAAG,2BAAW,CAAC,uBAAuB,CAAA;IAC7D,0BAAkB,GAAG,2BAAW,CAAC,kBAAkB,CAAA;AAClE,CAAC,EA7GgB,OAAO,uBAAP,OAAO,QA6GvB"}
|