@mojaloop/api-snippets 16.0.5 → 16.0.6
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 +7 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +0 -2
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json +0 -4
- package/lib/sdk-scheme-adapter/v2_0_0/outbound/schemas.d.ts +0 -4
- package/package.json +1 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/bulkTransactionContinuationAcceptParty.yaml +0 -1
- package/sdk-scheme-adapter/v2_0_0/components/schemas/bulkTransactionContinuationAcceptQuote.yaml +0 -1
package/CHANGELOG.md
CHANGED
@@ -1,4 +1,11 @@
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
2
|
+
### [16.0.6](https://github.com/mojaloop/api-snippets/compare/v16.0.5...v16.0.6) (2022-11-04)
|
3
|
+
|
4
|
+
|
5
|
+
### Bug Fixes
|
6
|
+
|
7
|
+
* **mojaloop/3003:** SDK Interface /bulkTransaction definition restricts individualTransfers maxLimit ([36bdeb3](https://github.com/mojaloop/api-snippets/commit/36bdeb30aa900320c33b66f8b7083f3a54cb0fa9))
|
8
|
+
|
2
9
|
### [16.0.5](https://github.com/mojaloop/api-snippets/compare/v16.0.4...v16.0.5) (2022-11-04)
|
3
10
|
|
4
11
|
|
@@ -1817,7 +1817,6 @@ paths:
|
|
1817
1817
|
accept party information.
|
1818
1818
|
type: array
|
1819
1819
|
minItems: 1
|
1820
|
-
maxItems: 1000
|
1821
1820
|
items:
|
1822
1821
|
allOf:
|
1823
1822
|
- type: object
|
@@ -1871,7 +1870,6 @@ paths:
|
|
1871
1870
|
description: List of individual transfers in a bulk transfer.
|
1872
1871
|
type: array
|
1873
1872
|
minItems: 1
|
1874
|
-
maxItems: 1000
|
1875
1873
|
items:
|
1876
1874
|
allOf:
|
1877
1875
|
- type: object
|
@@ -9209,7 +9209,6 @@
|
|
9209
9209
|
"description": "List of individual transfers in a bulk transfer with accept party information.",
|
9210
9210
|
"type": "array",
|
9211
9211
|
"minItems": 1,
|
9212
|
-
"maxItems": 1000,
|
9213
9212
|
"items": {
|
9214
9213
|
"allOf": [
|
9215
9214
|
{
|
@@ -9269,7 +9268,6 @@
|
|
9269
9268
|
"description": "List of individual transfers in a bulk transfer.",
|
9270
9269
|
"type": "array",
|
9271
9270
|
"minItems": 1,
|
9272
|
-
"maxItems": 1000,
|
9273
9271
|
"items": {
|
9274
9272
|
"allOf": [
|
9275
9273
|
{
|
@@ -9434,7 +9432,6 @@
|
|
9434
9432
|
"description": "List of individual transfers in a bulk transfer with accept party information.",
|
9435
9433
|
"type": "array",
|
9436
9434
|
"minItems": 1,
|
9437
|
-
"maxItems": 1000,
|
9438
9435
|
"items": {
|
9439
9436
|
"allOf": [
|
9440
9437
|
{
|
@@ -9687,7 +9684,6 @@
|
|
9687
9684
|
"description": "List of individual transfers in a bulk transfer.",
|
9688
9685
|
"type": "array",
|
9689
9686
|
"minItems": 1,
|
9690
|
-
"maxItems": 1000,
|
9691
9687
|
"items": {
|
9692
9688
|
"allOf": [
|
9693
9689
|
{
|
@@ -4675,7 +4675,6 @@ export declare namespace Schemas {
|
|
4675
4675
|
description: string;
|
4676
4676
|
type: string;
|
4677
4677
|
minItems: number;
|
4678
|
-
maxItems: number;
|
4679
4678
|
items: {
|
4680
4679
|
allOf: ({
|
4681
4680
|
type: string;
|
@@ -4725,7 +4724,6 @@ export declare namespace Schemas {
|
|
4725
4724
|
description: string;
|
4726
4725
|
type: string;
|
4727
4726
|
minItems: number;
|
4728
|
-
maxItems: number;
|
4729
4727
|
items: {
|
4730
4728
|
allOf: ({
|
4731
4729
|
type: string;
|
@@ -4869,7 +4867,6 @@ export declare namespace Schemas {
|
|
4869
4867
|
description: string;
|
4870
4868
|
type: string;
|
4871
4869
|
minItems: number;
|
4872
|
-
maxItems: number;
|
4873
4870
|
items: {
|
4874
4871
|
allOf: ({
|
4875
4872
|
type: string;
|
@@ -5097,7 +5094,6 @@ export declare namespace Schemas {
|
|
5097
5094
|
description: string;
|
5098
5095
|
type: string;
|
5099
5096
|
minItems: number;
|
5100
|
-
maxItems: number;
|
5101
5097
|
items: {
|
5102
5098
|
allOf: ({
|
5103
5099
|
type: string;
|
package/package.json
CHANGED