@mojaloop/api-snippets 17.0.5-snapshot.1 → 17.1.0-snapshot.1
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/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +25 -7
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +84 -27
- package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +26 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +16 -3
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +18 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/backend/types.d.ts +1 -0
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +549 -21
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +59 -20
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +451 -11
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js +6 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.js.map +1 -1
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/types.d.ts +6 -1
- package/package.json +7 -7
- package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +12 -7
- package/sdk-scheme-adapter/v2_0_0/components/parameters/{requestToPayId.yaml → transactionRequestId.yaml} +1 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/TransactionRequestResponse.yaml +20 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/getPartiesResponse.yaml +12 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayRequest.yaml +4 -2
- package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayResponse.yaml +5 -17
- package/sdk-scheme-adapter/v2_0_0/components/schemas/requestToPayStatus.yaml +5 -0
- package/sdk-scheme-adapter/v2_0_0/outbound/openapi.yaml +2 -2
- package/sdk-scheme-adapter/v2_0_0/outbound/paths/{requestToPay_requestToPayId.yaml → requestToPay_transactionRequestId.yaml} +2 -3
@@ -152,11 +152,11 @@ paths:
|
|
152
152
|
specified identifier value.
|
153
153
|
tags:
|
154
154
|
- BulkTransfers
|
155
|
-
/otp/{
|
155
|
+
/otp/{transactionRequestId}:
|
156
156
|
get:
|
157
157
|
operationId: BackendOtpGet
|
158
158
|
parameters:
|
159
|
-
- $ref: '#/components/parameters/
|
159
|
+
- $ref: '#/components/parameters/transactionRequestId'
|
160
160
|
responses:
|
161
161
|
'200':
|
162
162
|
content:
|
@@ -430,14 +430,12 @@ components:
|
|
430
430
|
required: true
|
431
431
|
schema:
|
432
432
|
type: string
|
433
|
-
|
433
|
+
transactionRequestId:
|
434
434
|
in: path
|
435
|
-
name:
|
435
|
+
name: transactionRequestId
|
436
436
|
required: true
|
437
437
|
schema:
|
438
|
-
|
439
|
-
minLength: 1
|
440
|
-
type: string
|
438
|
+
$ref: '#/components/schemas/transactionRequestId'
|
441
439
|
transferId:
|
442
440
|
in: path
|
443
441
|
name: transferId
|
@@ -1328,6 +1326,8 @@ components:
|
|
1328
1326
|
$ref: '#/components/schemas/transactionType'
|
1329
1327
|
subScenario:
|
1330
1328
|
$ref: '#/components/schemas/TransactionSubScenario'
|
1329
|
+
authenticationType:
|
1330
|
+
$ref: '#/components/schemas/AuthenticationType'
|
1331
1331
|
required:
|
1332
1332
|
- transactionRequestId
|
1333
1333
|
- to
|
@@ -1346,6 +1346,11 @@ components:
|
|
1346
1346
|
transactionRequestResponse:
|
1347
1347
|
description: A response to a request for a quote.
|
1348
1348
|
properties:
|
1349
|
+
homeTransactionId:
|
1350
|
+
type: string
|
1351
|
+
description: >-
|
1352
|
+
Transaction ID from the DFSP backend, used to reconcile transactions
|
1353
|
+
between the Switch and DFSP backend systems.
|
1349
1354
|
transactionId:
|
1350
1355
|
$ref: '#/components/schemas/transactionId'
|
1351
1356
|
transactionRequestState:
|
@@ -2311,3 +2316,16 @@ components:
|
|
2311
2316
|
$ref: '#/components/schemas/bulkTransactionIndividualTransferResult'
|
2312
2317
|
extensions:
|
2313
2318
|
$ref: '#/components/schemas/ExtensionList'
|
2319
|
+
AuthenticationType:
|
2320
|
+
title: AuthenticationType
|
2321
|
+
type: string
|
2322
|
+
enum:
|
2323
|
+
- OTP
|
2324
|
+
- QRCODE
|
2325
|
+
- U2F
|
2326
|
+
description: |-
|
2327
|
+
Below are the allowed values for the enumeration AuthenticationType.
|
2328
|
+
- OTP - One-time password generated by the Payer FSP.
|
2329
|
+
- QRCODE - QR code used as One Time Password.
|
2330
|
+
- U2F - U2F is a new addition isolated to Thirdparty stream.
|
2331
|
+
example: OTP
|
@@ -294,17 +294,16 @@ paths:
|
|
294
294
|
responses:
|
295
295
|
'200':
|
296
296
|
$ref: '#/components/responses/requestToPaySuccess'
|
297
|
-
/requestToPay/{
|
297
|
+
/requestToPay/{transactionRequestId}:
|
298
298
|
put:
|
299
299
|
summary: >-
|
300
300
|
Continues a request funds from sender that has paused at the party
|
301
301
|
resolution stage in order to accept or reject party information
|
302
302
|
description: >
|
303
|
-
The HTTP request `PUT /requestToPay/{
|
303
|
+
The HTTP request `PUT /requestToPay/{transactionRequestId}` is used to
|
304
304
|
continue a transfer initiated via the `POST /requestToPay` method that
|
305
305
|
has halted after party lookup stage.
|
306
306
|
|
307
|
-
|
308
307
|
The request body should contain the "acceptParty" property set to `true`
|
309
308
|
as required to continue the transfer.
|
310
309
|
|
@@ -318,7 +317,7 @@ paths:
|
|
318
317
|
schema:
|
319
318
|
$ref: '#/components/schemas/transferContinuationAcceptParty'
|
320
319
|
parameters:
|
321
|
-
- $ref: '#/components/parameters/
|
320
|
+
- $ref: '#/components/parameters/transactionRequestId'
|
322
321
|
responses:
|
323
322
|
'200':
|
324
323
|
$ref: '#/components/responses/requestToPaySuccess'
|
@@ -2083,10 +2082,23 @@ components:
|
|
2083
2082
|
allOf:
|
2084
2083
|
- $ref: '#/components/schemas/errorResponse'
|
2085
2084
|
- type: object
|
2085
|
+
AuthenticationType:
|
2086
|
+
title: AuthenticationType
|
2087
|
+
type: string
|
2088
|
+
enum:
|
2089
|
+
- OTP
|
2090
|
+
- QRCODE
|
2091
|
+
- U2F
|
2092
|
+
description: |-
|
2093
|
+
Below are the allowed values for the enumeration AuthenticationType.
|
2094
|
+
- OTP - One-time password generated by the Payer FSP.
|
2095
|
+
- QRCODE - QR code used as One Time Password.
|
2096
|
+
- U2F - U2F is a new addition isolated to Thirdparty stream.
|
2097
|
+
example: OTP
|
2086
2098
|
requestToPayRequest:
|
2087
2099
|
type: object
|
2088
2100
|
required:
|
2089
|
-
-
|
2101
|
+
- homeR2PTransactionId
|
2090
2102
|
- from
|
2091
2103
|
- to
|
2092
2104
|
- amountType
|
@@ -2094,7 +2106,7 @@ components:
|
|
2094
2106
|
- amount
|
2095
2107
|
- transactionType
|
2096
2108
|
properties:
|
2097
|
-
|
2109
|
+
homeR2PTransactionId:
|
2098
2110
|
type: string
|
2099
2111
|
description: >-
|
2100
2112
|
Transaction ID from the DFSP backend, used to reconcile transactions
|
@@ -2113,17 +2125,67 @@ components:
|
|
2113
2125
|
$ref: '#/components/schemas/TransactionScenario'
|
2114
2126
|
subScenario:
|
2115
2127
|
$ref: '#/components/schemas/TransactionSubScenario'
|
2116
|
-
|
2128
|
+
authenticationType:
|
2129
|
+
$ref: '#/components/schemas/AuthenticationType'
|
2130
|
+
requestToPayStatus:
|
2117
2131
|
type: string
|
2118
2132
|
enum:
|
2119
2133
|
- ERROR_OCCURRED
|
2120
2134
|
- WAITING_FOR_PARTY_ACCEPTANCE
|
2121
|
-
- WAITING_FOR_QUOTE_ACCEPTANCE
|
2122
2135
|
- COMPLETED
|
2136
|
+
getPartiesResponse:
|
2137
|
+
title: getPartiesResponse
|
2138
|
+
type: object
|
2139
|
+
description: The object sent in the GET /parties/{Type}/{ID} callback.
|
2140
|
+
properties:
|
2141
|
+
body:
|
2142
|
+
$ref: '#/components/schemas/Party'
|
2143
|
+
description: Information regarding the requested Party.
|
2144
|
+
headers:
|
2145
|
+
type: object
|
2146
|
+
required:
|
2147
|
+
- body
|
2148
|
+
- headers
|
2149
|
+
TransactionRequestState:
|
2150
|
+
title: TransactionRequestState
|
2151
|
+
type: string
|
2152
|
+
enum:
|
2153
|
+
- RECEIVED
|
2154
|
+
- PENDING
|
2155
|
+
- ACCEPTED
|
2156
|
+
- REJECTED
|
2157
|
+
description: |-
|
2158
|
+
Below are the allowed values for the enumeration.
|
2159
|
+
- RECEIVED - Payer FSP has received the transaction from the Payee FSP.
|
2160
|
+
- PENDING - Payer FSP has sent the transaction request to the Payer.
|
2161
|
+
- ACCEPTED - Payer has approved the transaction.
|
2162
|
+
- REJECTED - Payer has rejected the transaction.
|
2163
|
+
example: RECEIVED
|
2164
|
+
TransactionRequestResponse:
|
2165
|
+
title: TransactionRequestResponse
|
2166
|
+
type: object
|
2167
|
+
description: The object sent in the PUT /transactionRequests/{ID} callback.
|
2168
|
+
properties:
|
2169
|
+
body:
|
2170
|
+
type: object
|
2171
|
+
properties:
|
2172
|
+
transactionId:
|
2173
|
+
$ref: '#/components/schemas/CorrelationId'
|
2174
|
+
transactionRequestState:
|
2175
|
+
$ref: '#/components/schemas/TransactionRequestState'
|
2176
|
+
extensionList:
|
2177
|
+
$ref: '#/components/schemas/ExtensionList'
|
2178
|
+
required:
|
2179
|
+
- transactionRequestState
|
2180
|
+
headers:
|
2181
|
+
type: object
|
2182
|
+
required:
|
2183
|
+
- body
|
2184
|
+
- headers
|
2123
2185
|
requestToPayResponse:
|
2124
2186
|
type: object
|
2125
2187
|
required:
|
2126
|
-
-
|
2188
|
+
- transactionRequestId
|
2127
2189
|
- from
|
2128
2190
|
- to
|
2129
2191
|
- amountType
|
@@ -2132,15 +2194,8 @@ components:
|
|
2132
2194
|
- transactionType
|
2133
2195
|
- currentState
|
2134
2196
|
properties:
|
2135
|
-
requestToPayId:
|
2136
|
-
$ref: '#/components/schemas/CorrelationId'
|
2137
2197
|
transactionRequestId:
|
2138
2198
|
$ref: '#/components/schemas/CorrelationId'
|
2139
|
-
homeTransactionId:
|
2140
|
-
type: string
|
2141
|
-
description: >-
|
2142
|
-
Transaction ID from the DFSP backend, used to reconcile transactions
|
2143
|
-
between the Switch and DFSP backend systems.
|
2144
2199
|
from:
|
2145
2200
|
$ref: '#/components/schemas/transferParty'
|
2146
2201
|
to:
|
@@ -2156,16 +2211,11 @@ components:
|
|
2156
2211
|
subScenario:
|
2157
2212
|
$ref: '#/components/schemas/TransactionSubScenario'
|
2158
2213
|
currentState:
|
2159
|
-
$ref: '#/components/schemas/
|
2214
|
+
$ref: '#/components/schemas/requestToPayStatus'
|
2160
2215
|
getPartiesResponse:
|
2161
|
-
|
2162
|
-
|
2163
|
-
|
2164
|
-
properties:
|
2165
|
-
body:
|
2166
|
-
type: object
|
2167
|
-
headers:
|
2168
|
-
type: object
|
2216
|
+
$ref: '#/components/schemas/getPartiesResponse'
|
2217
|
+
transactionRequestResponse:
|
2218
|
+
$ref: '#/components/schemas/TransactionRequestResponse'
|
2169
2219
|
lastError:
|
2170
2220
|
description: >
|
2171
2221
|
Object representing the last error to occur during a transfer
|
@@ -2173,6 +2223,13 @@ components:
|
|
2173
2223
|
entity in the scheme or an object representing other types of error
|
2174
2224
|
e.g. exceptions that may occur inside the scheme adapter.
|
2175
2225
|
$ref: '#/components/schemas/transferError'
|
2226
|
+
transferStatus:
|
2227
|
+
type: string
|
2228
|
+
enum:
|
2229
|
+
- ERROR_OCCURRED
|
2230
|
+
- WAITING_FOR_PARTY_ACCEPTANCE
|
2231
|
+
- WAITING_FOR_QUOTE_ACCEPTANCE
|
2232
|
+
- COMPLETED
|
2176
2233
|
QuotesIDPutResponse:
|
2177
2234
|
title: QuotesIDPutResponse
|
2178
2235
|
type: object
|
@@ -2737,8 +2794,8 @@ components:
|
|
2737
2794
|
description: >-
|
2738
2795
|
A sub-identifier of the party identifier, or a sub-type of the party
|
2739
2796
|
identifier's type. For example, `PASSPORT`, `DRIVING_LICENSE`.
|
2740
|
-
|
2741
|
-
name:
|
2797
|
+
transactionRequestId:
|
2798
|
+
name: transactionRequestId
|
2742
2799
|
in: path
|
2743
2800
|
required: true
|
2744
2801
|
schema:
|
@@ -8004,6 +8004,17 @@
|
|
8004
8004
|
"pattern": "^[A-Z_]{1,32}$",
|
8005
8005
|
"description": "Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type).",
|
8006
8006
|
"example": "LOCALLY_DEFINED_SUBSCENARIO"
|
8007
|
+
},
|
8008
|
+
"authenticationType": {
|
8009
|
+
"title": "AuthenticationType",
|
8010
|
+
"type": "string",
|
8011
|
+
"enum": [
|
8012
|
+
"OTP",
|
8013
|
+
"QRCODE",
|
8014
|
+
"U2F"
|
8015
|
+
],
|
8016
|
+
"description": "Below are the allowed values for the enumeration AuthenticationType.\n- OTP - One-time password generated by the Payer FSP.\n- QRCODE - QR code used as One Time Password.\n- U2F - U2F is a new addition isolated to Thirdparty stream.",
|
8017
|
+
"example": "OTP"
|
8007
8018
|
}
|
8008
8019
|
},
|
8009
8020
|
"required": [
|
@@ -8026,6 +8037,10 @@
|
|
8026
8037
|
"transactionRequestResponse": {
|
8027
8038
|
"description": "A response to a request for a quote.",
|
8028
8039
|
"properties": {
|
8040
|
+
"homeTransactionId": {
|
8041
|
+
"type": "string",
|
8042
|
+
"description": "Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems."
|
8043
|
+
},
|
8029
8044
|
"transactionId": {
|
8030
8045
|
"description": "ID of the transaction, the ID is decided by the Payer FSP during the creation of the quote.",
|
8031
8046
|
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
|
@@ -17135,5 +17150,16 @@
|
|
17135
17150
|
]
|
17136
17151
|
}
|
17137
17152
|
}
|
17153
|
+
},
|
17154
|
+
"AuthenticationType": {
|
17155
|
+
"title": "AuthenticationType",
|
17156
|
+
"type": "string",
|
17157
|
+
"enum": [
|
17158
|
+
"OTP",
|
17159
|
+
"QRCODE",
|
17160
|
+
"U2F"
|
17161
|
+
],
|
17162
|
+
"description": "Below are the allowed values for the enumeration AuthenticationType.\n- OTP - One-time password generated by the Payer FSP.\n- QRCODE - QR code used as One Time Password.\n- U2F - U2F is a new addition isolated to Thirdparty stream.",
|
17163
|
+
"example": "OTP"
|
17138
17164
|
}
|
17139
17165
|
}
|
@@ -22,7 +22,7 @@ export interface paths {
|
|
22
22
|
"/bulkTransfers/{idValue}": {
|
23
23
|
get: operations["BackendBulkTransfersGet"];
|
24
24
|
};
|
25
|
-
"/otp/{
|
25
|
+
"/otp/{transactionRequestId}": {
|
26
26
|
get: operations["BackendOtpGet"];
|
27
27
|
};
|
28
28
|
"/participants/{idType}/{idValue}": {
|
@@ -398,11 +398,14 @@ export interface components {
|
|
398
398
|
transactionRequestId: components["schemas"]["transactionRequestId"];
|
399
399
|
transactionType: components["schemas"]["transactionType"];
|
400
400
|
subScenario?: components["schemas"]["TransactionSubScenario"];
|
401
|
+
authenticationType?: components["schemas"]["AuthenticationType"];
|
401
402
|
};
|
402
403
|
/** @description A Mojaloop API transaction request identifier (UUID). */
|
403
404
|
transactionRequestId: string;
|
404
405
|
/** @description A response to a request for a quote. */
|
405
406
|
transactionRequestResponse: {
|
407
|
+
/** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
|
408
|
+
homeTransactionId?: string;
|
406
409
|
transactionId: components["schemas"]["transactionId"];
|
407
410
|
transactionRequestState: components["schemas"]["transactionRequestState"];
|
408
411
|
};
|
@@ -798,6 +801,16 @@ export interface components {
|
|
798
801
|
individualTransferResults: components["schemas"]["bulkTransactionIndividualTransferResult"][];
|
799
802
|
extensions?: components["schemas"]["ExtensionList"];
|
800
803
|
};
|
804
|
+
/**
|
805
|
+
* AuthenticationType
|
806
|
+
* @description Below are the allowed values for the enumeration AuthenticationType.
|
807
|
+
* - OTP - One-time password generated by the Payer FSP.
|
808
|
+
* - QRCODE - QR code used as One Time Password.
|
809
|
+
* - U2F - U2F is a new addition isolated to Thirdparty stream.
|
810
|
+
* @example OTP
|
811
|
+
* @enum {string}
|
812
|
+
*/
|
813
|
+
AuthenticationType: "OTP" | "QRCODE" | "U2F";
|
801
814
|
};
|
802
815
|
responses: {
|
803
816
|
/** Malformed or missing required headers or parameters. */
|
@@ -822,7 +835,7 @@ export interface components {
|
|
822
835
|
idType: string;
|
823
836
|
/** @description The identifier value. */
|
824
837
|
idValue: string;
|
825
|
-
|
838
|
+
transactionRequestId: components["schemas"]["transactionRequestId"];
|
826
839
|
transferId: string;
|
827
840
|
/** @description Identifier of the bulk transaction to continue as returned in the response to a `POST /bulkTransaction` request. */
|
828
841
|
bulkTransactionId: components["schemas"]["CorrelationId"];
|
@@ -932,7 +945,7 @@ export interface operations {
|
|
932
945
|
BackendOtpGet: {
|
933
946
|
parameters: {
|
934
947
|
path: {
|
935
|
-
|
948
|
+
transactionRequestId: components["parameters"]["transactionRequestId"];
|
936
949
|
};
|
937
950
|
};
|
938
951
|
responses: {
|
@@ -2582,6 +2582,13 @@ export declare namespace Schemas {
|
|
2582
2582
|
description: string;
|
2583
2583
|
example: string;
|
2584
2584
|
};
|
2585
|
+
authenticationType: {
|
2586
|
+
title: string;
|
2587
|
+
type: string;
|
2588
|
+
enum: string[];
|
2589
|
+
description: string;
|
2590
|
+
example: string;
|
2591
|
+
};
|
2585
2592
|
};
|
2586
2593
|
required: string[];
|
2587
2594
|
type: string;
|
@@ -2594,6 +2601,10 @@ export declare namespace Schemas {
|
|
2594
2601
|
const transactionRequestResponse: {
|
2595
2602
|
description: string;
|
2596
2603
|
properties: {
|
2604
|
+
homeTransactionId: {
|
2605
|
+
type: string;
|
2606
|
+
description: string;
|
2607
|
+
};
|
2597
2608
|
transactionId: {
|
2598
2609
|
description: string;
|
2599
2610
|
pattern: string;
|
@@ -6593,4 +6604,11 @@ export declare namespace Schemas {
|
|
6593
6604
|
};
|
6594
6605
|
};
|
6595
6606
|
};
|
6607
|
+
const AuthenticationType: {
|
6608
|
+
title: string;
|
6609
|
+
type: string;
|
6610
|
+
enum: string[];
|
6611
|
+
description: string;
|
6612
|
+
example: string;
|
6613
|
+
};
|
6596
6614
|
}
|
@@ -113,5 +113,6 @@ var Schemas;
|
|
113
113
|
Schemas.individualTransferResult = json_schemas_json_1.default.individualTransferResult;
|
114
114
|
Schemas.bulkTransactionIndividualTransferResult = json_schemas_json_1.default.bulkTransactionIndividualTransferResult;
|
115
115
|
Schemas.bulkTransactionResponse = json_schemas_json_1.default.bulkTransactionResponse;
|
116
|
+
Schemas.AuthenticationType = json_schemas_json_1.default.AuthenticationType;
|
116
117
|
})(Schemas = exports.Schemas || (exports.Schemas = {}));
|
117
118
|
//# 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":";AAAA,oDAAoD;;;;AAEpD,kEAAkE;AAElE,oFAA6C;AAE7C,IAAiB,OAAO,
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/sdk-scheme-adapter/v2_0_0/backend/schemas.ts"],"names":[],"mappings":"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"}
|
@@ -107,4 +107,5 @@ export declare namespace Types {
|
|
107
107
|
type individualTransferResult = components['schemas']['individualTransferResult'];
|
108
108
|
type bulkTransactionIndividualTransferResult = components['schemas']['bulkTransactionIndividualTransferResult'];
|
109
109
|
type bulkTransactionResponse = components['schemas']['bulkTransactionResponse'];
|
110
|
+
type AuthenticationType = components['schemas']['AuthenticationType'];
|
110
111
|
}
|