Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(mojaloop/#3003): remove maxItems on bulkTransaction components #146

Merged
merged 2 commits into from
Nov 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1610,7 +1610,6 @@ paths:
response.
type: array
minItems: 1
maxItems: 1000
items:
type: object
required: &ref_76
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1479,7 +1479,6 @@ paths:
description: List of individual transfers in a bulk transfer.
type: array
minItems: 1
maxItems: 1000
items:
title: BulkTransactionIndividualTransfer
type: object
Expand Down
2,777 changes: 1,483 additions & 1,294 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,35 +82,35 @@
"@types/responselike": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@redocly/openapi-cli": "^1.0.0-beta.94",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"@types/jest": "^29.2.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"diff": "^5.1.0",
"eslint": "^8.24.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-cucumber": "^2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "4.3.8",
"jest": "^29.1.2",
"jest": "^29.2.2",
"jest-junit": "^14.0.1",
"lint-staged": "^13.0.3",
"npm-audit-resolver": "^3.0.0-7",
"npm-check-updates": "^16.3.4",
"npm-check-updates": "^16.3.16",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"swagger-cli": "^4.0.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
},
"publishConfig": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ properties:
description: List of individual transfers in a bulk transfer.
type: array
minItems: 1
maxItems: 1000
items:
$ref: ./bulkTransactionIndividualTransfer.yaml
extensions:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ properties:
description: List of individual transfer result in a bulk transfer response.
type: array
minItems: 1
maxItems: 1000
items:
$ref: ./bulkTransactionIndividualTransferResult.yaml
extensions:
Expand Down
1 change: 0 additions & 1 deletion src/sdk-scheme-adapter/v2_0_0/inbound/json-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -9479,7 +9479,6 @@
"description": "List of individual transfer result in a bulk transfer response.",
"type": "array",
"minItems": 1,
"maxItems": 1000,
"items": {
"type": "object",
"required": [
Expand Down
1 change: 0 additions & 1 deletion src/sdk-scheme-adapter/v2_0_0/outbound/json-schemas.json
Original file line number Diff line number Diff line change
Expand Up @@ -7914,7 +7914,6 @@
"description": "List of individual transfers in a bulk transfer.",
"type": "array",
"minItems": 1,
"maxItems": 1000,
"items": {
"title": "BulkTransactionIndividualTransfer",
"type": "object",
Expand Down