@mojaloop/api-snippets 15.0.0 → 15.0.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/CHANGELOG.md +7 -0
- package/docs/sdk-scheme-adapter-outbound-v2_0_0-openapi3-snippets.yaml +1 -0
- package/lib/sdk-scheme-adapter/outbound/v2_0_0/json-schemas.json +6 -3
- package/lib/sdk-scheme-adapter/outbound/v2_0_0/openapi.d.ts +7 -7
- package/package.json +7 -7
- package/sdk-scheme-adapter/outbound/v2_0_0/components/schemas/transferContinuationAcceptParty.yaml +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
# Changelog: [mojaloop/api-snippets](https://github.com/mojaloop/api-snippets)
|
|
2
|
+
### [15.0.1](https://github.com/mojaloop/api-snippets/compare/v15.0.0...v15.0.1) (2022-09-12)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **mojaloop/2922:** not able to specify acceptQuote to false in type bulkTransactionContinuationAcceptParty ([#140](https://github.com/mojaloop/api-snippets/issues/140)) ([1dcff89](https://github.com/mojaloop/api-snippets/commit/1dcff89398855ed9fac844d954b09f5d2857cf7f))
|
|
8
|
+
|
|
2
9
|
## [15.0.0](https://github.com/mojaloop/api-snippets/compare/v14.2.4...v15.0.0) (2022-09-07)
|
|
3
10
|
|
|
4
11
|
|
|
@@ -5898,7 +5898,8 @@
|
|
|
5898
5898
|
"acceptParty": {
|
|
5899
5899
|
"type": "boolean",
|
|
5900
5900
|
"enum": [
|
|
5901
|
-
true
|
|
5901
|
+
true,
|
|
5902
|
+
false
|
|
5902
5903
|
]
|
|
5903
5904
|
}
|
|
5904
5905
|
}
|
|
@@ -9242,7 +9243,8 @@
|
|
|
9242
9243
|
"acceptParty": {
|
|
9243
9244
|
"type": "boolean",
|
|
9244
9245
|
"enum": [
|
|
9245
|
-
true
|
|
9246
|
+
true,
|
|
9247
|
+
false
|
|
9246
9248
|
]
|
|
9247
9249
|
}
|
|
9248
9250
|
}
|
|
@@ -9466,7 +9468,8 @@
|
|
|
9466
9468
|
"acceptParty": {
|
|
9467
9469
|
"type": "boolean",
|
|
9468
9470
|
"enum": [
|
|
9469
|
-
true
|
|
9471
|
+
true,
|
|
9472
|
+
false
|
|
9470
9473
|
]
|
|
9471
9474
|
}
|
|
9472
9475
|
}
|
|
@@ -3855,7 +3855,7 @@ export interface paths {
|
|
|
3855
3855
|
content: {
|
|
3856
3856
|
"application/json": {
|
|
3857
3857
|
/** @enum {boolean} */
|
|
3858
|
-
acceptParty: true;
|
|
3858
|
+
acceptParty: true | false;
|
|
3859
3859
|
} | {
|
|
3860
3860
|
/** @enum {boolean} */
|
|
3861
3861
|
acceptQuote: true | false;
|
|
@@ -4465,7 +4465,7 @@ export interface paths {
|
|
|
4465
4465
|
transactionId: string;
|
|
4466
4466
|
} & {
|
|
4467
4467
|
/** @enum {boolean} */
|
|
4468
|
-
acceptParty: true;
|
|
4468
|
+
acceptParty: true | false;
|
|
4469
4469
|
})[];
|
|
4470
4470
|
} & {
|
|
4471
4471
|
/** @description The HTTP status code returned to the caller. This is the same as the actual HTTP status code returned with the response. */
|
|
@@ -4611,7 +4611,7 @@ export interface paths {
|
|
|
4611
4611
|
transactionId: string;
|
|
4612
4612
|
} & {
|
|
4613
4613
|
/** @enum {boolean} */
|
|
4614
|
-
acceptParty: true;
|
|
4614
|
+
acceptParty: true | false;
|
|
4615
4615
|
})[];
|
|
4616
4616
|
} | {
|
|
4617
4617
|
/** @description Transaction ID from the DFSP backend, used to reconcile transactions between the Switch and DFSP backend systems. */
|
|
@@ -13687,7 +13687,7 @@ export interface components {
|
|
|
13687
13687
|
};
|
|
13688
13688
|
transferContinuationAcceptParty: {
|
|
13689
13689
|
/** @enum {boolean} */
|
|
13690
|
-
acceptParty: true;
|
|
13690
|
+
acceptParty: true | false;
|
|
13691
13691
|
};
|
|
13692
13692
|
transferContinuationAcceptQuote: {
|
|
13693
13693
|
/** @enum {boolean} */
|
|
@@ -14992,7 +14992,7 @@ export interface components {
|
|
|
14992
14992
|
transactionId: string;
|
|
14993
14993
|
} & {
|
|
14994
14994
|
/** @enum {boolean} */
|
|
14995
|
-
acceptParty: true;
|
|
14995
|
+
acceptParty: true | false;
|
|
14996
14996
|
})[];
|
|
14997
14997
|
};
|
|
14998
14998
|
/** @description The object sent back as confirmation of quotes when autoAcceptQuotes is false. */
|
|
@@ -15079,7 +15079,7 @@ export interface components {
|
|
|
15079
15079
|
transactionId: string;
|
|
15080
15080
|
} & {
|
|
15081
15081
|
/** @enum {boolean} */
|
|
15082
|
-
acceptParty: true;
|
|
15082
|
+
acceptParty: true | false;
|
|
15083
15083
|
})[];
|
|
15084
15084
|
} & {
|
|
15085
15085
|
/** @description The HTTP status code returned to the caller. This is the same as the actual HTTP status code returned with the response. */
|
|
@@ -22270,7 +22270,7 @@ export interface components {
|
|
|
22270
22270
|
transactionId: string;
|
|
22271
22271
|
} & {
|
|
22272
22272
|
/** @enum {boolean} */
|
|
22273
|
-
acceptParty: true;
|
|
22273
|
+
acceptParty: true | false;
|
|
22274
22274
|
})[];
|
|
22275
22275
|
} & {
|
|
22276
22276
|
/** @description The HTTP status code returned to the caller. This is the same as the actual HTTP status code returned with the response. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mojaloop/api-snippets",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.1",
|
|
4
4
|
"description": "Mojaloop API specification reusable snippets",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -81,11 +81,11 @@
|
|
|
81
81
|
"@commitlint/cli": "^17.1.2",
|
|
82
82
|
"@commitlint/config-conventional": "^17.1.0",
|
|
83
83
|
"@redocly/openapi-cli": "^1.0.0-beta.94",
|
|
84
|
-
"@types/jest": "^29.0.
|
|
84
|
+
"@types/jest": "^29.0.1",
|
|
85
85
|
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
86
86
|
"@typescript-eslint/parser": "^5.36.2",
|
|
87
87
|
"diff": "^5.1.0",
|
|
88
|
-
"eslint": "^8.23.
|
|
88
|
+
"eslint": "^8.23.1",
|
|
89
89
|
"eslint-config-prettier": "^8.5.0",
|
|
90
90
|
"eslint-config-standard": "^17.0.0",
|
|
91
91
|
"eslint-import-resolver-typescript": "^3.5.1",
|
|
@@ -96,18 +96,18 @@
|
|
|
96
96
|
"eslint-plugin-promise": "^6.0.1",
|
|
97
97
|
"eslint-plugin-standard": "^5.0.0",
|
|
98
98
|
"husky": "4.3.8",
|
|
99
|
-
"jest": "^29.0.
|
|
99
|
+
"jest": "^29.0.3",
|
|
100
100
|
"jest-junit": "^14.0.1",
|
|
101
101
|
"lint-staged": "^13.0.3",
|
|
102
102
|
"npm-audit-resolver": "^3.0.0-7",
|
|
103
|
-
"npm-check-updates": "^16.1.
|
|
103
|
+
"npm-check-updates": "^16.1.2",
|
|
104
104
|
"prettier": "^2.7.1",
|
|
105
105
|
"standard-version": "^9.5.0",
|
|
106
106
|
"swagger-cli": "^4.0.4",
|
|
107
|
-
"ts-jest": "^
|
|
107
|
+
"ts-jest": "^29.0.0",
|
|
108
108
|
"ts-node": "^10.9.1",
|
|
109
109
|
"tslib": "^2.4.0",
|
|
110
|
-
"typescript": "^4.8.
|
|
110
|
+
"typescript": "^4.8.3"
|
|
111
111
|
},
|
|
112
112
|
"publishConfig": {
|
|
113
113
|
"registry": "https://registry.npmjs.org/"
|