@mojaloop/api-snippets 17.0.1 → 17.0.2-snapshot.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/docs/sdk-scheme-adapter-backend-v2_0_0-openapi3-snippets.yaml +71 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +40 -8
- package/lib/sdk-scheme-adapter/v2_0_0/backend/json-schemas.json +84 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/openapi.d.ts +114 -0
- package/lib/sdk-scheme-adapter/v2_0_0/backend/schemas.d.ts +84 -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 +63 -7
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/openapi.d.ts +186 -6
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +63 -7
- 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/sdk-scheme-adapter/v2_0_0/outbound/types.d.ts +1 -1
- package/package.json +9 -9
- package/sdk-scheme-adapter/v2_0_0/backend/openapi.yaml +20 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualQuote.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/individualTransfer.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/transferRequest.yaml +2 -0
- package/sdk-scheme-adapter/v2_0_0/components/schemas/transferResponse.yaml +2 -0
@@ -384,7 +384,6 @@ paths:
|
|
384
384
|
summary: Receive notification for a specific transfer.
|
385
385
|
tags:
|
386
386
|
- Transfers
|
387
|
-
|
388
387
|
components:
|
389
388
|
parameters:
|
390
389
|
bulkTransactionId:
|
@@ -533,6 +532,8 @@ components:
|
|
533
532
|
type: string
|
534
533
|
quoteId:
|
535
534
|
$ref: '#/components/schemas/quoteId'
|
535
|
+
subScenario:
|
536
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
536
537
|
to:
|
537
538
|
$ref: '#/components/schemas/transferParty'
|
538
539
|
transactionId:
|
@@ -607,6 +608,8 @@ components:
|
|
607
608
|
maxLength: 128
|
608
609
|
minLength: 1
|
609
610
|
type: string
|
611
|
+
subScenario:
|
612
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
610
613
|
to:
|
611
614
|
$ref: '#/components/schemas/transferParty'
|
612
615
|
transactionType:
|
@@ -1377,6 +1380,8 @@ components:
|
|
1377
1380
|
type: string
|
1378
1381
|
quoteId:
|
1379
1382
|
$ref: '#/components/schemas/quoteId'
|
1383
|
+
subScenario:
|
1384
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
1380
1385
|
to:
|
1381
1386
|
$ref: '#/components/schemas/transferParty'
|
1382
1387
|
description: Information about the Payee in the proposed financial transaction.
|
@@ -1485,6 +1490,8 @@ components:
|
|
1485
1490
|
$ref: '#/components/schemas/transactionRequestId'
|
1486
1491
|
transactionType:
|
1487
1492
|
$ref: '#/components/schemas/transactionType'
|
1493
|
+
subScenario:
|
1494
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
1488
1495
|
required:
|
1489
1496
|
- transactionRequestId
|
1490
1497
|
- to
|
@@ -1517,6 +1524,12 @@ components:
|
|
1517
1524
|
- ACCEPTED
|
1518
1525
|
- REJECTED
|
1519
1526
|
type: string
|
1527
|
+
transactionSubScenario:
|
1528
|
+
description: Possible sub-scenario, defined locally within the scheme (UndefinedEnum Type). Based on FSPIOP TransactionSubScenario.
|
1529
|
+
example: LOCALLY_DEFINED_SUBSCENARIO
|
1530
|
+
pattern: ^[A-Z_]{1,32}$
|
1531
|
+
title: transactionSubScenario
|
1532
|
+
type: string
|
1520
1533
|
transactionType:
|
1521
1534
|
enum:
|
1522
1535
|
- TRANSFER
|
@@ -1533,6 +1546,8 @@ components:
|
|
1533
1546
|
description: Specifies the type of the transaction initiator.
|
1534
1547
|
scenario:
|
1535
1548
|
$ref: '#/components/schemas/scenario'
|
1549
|
+
subScenario:
|
1550
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
1536
1551
|
required:
|
1537
1552
|
- scenario
|
1538
1553
|
- initiator
|
@@ -1556,6 +1571,8 @@ components:
|
|
1556
1571
|
note:
|
1557
1572
|
maxLength: 128
|
1558
1573
|
type: string
|
1574
|
+
subScenario:
|
1575
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
1559
1576
|
timestamp:
|
1560
1577
|
$ref: '#/components/schemas/timestamp'
|
1561
1578
|
to:
|
@@ -1650,6 +1667,8 @@ components:
|
|
1650
1667
|
$ref: '#/components/schemas/quoteResponse'
|
1651
1668
|
quoteRequestExtensions:
|
1652
1669
|
$ref: '#/components/schemas/extensionList'
|
1670
|
+
subScenario:
|
1671
|
+
$ref: '#/components/schemas/transactionSubScenario'
|
1653
1672
|
to:
|
1654
1673
|
$ref: '#/components/schemas/transferParty'
|
1655
1674
|
transactionType:
|