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

Upgrade quicktype and correct a schema error #1082

Merged
merged 4 commits into from
Oct 17, 2023
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
103 changes: 44 additions & 59 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@finos/fdc3",
"version": "2.1.0-beta.2",
"version": "2.1.0-beta.3",
"author": "Fintech Open Source Foundation (FINOS)",
"homepage": "https://fdc3.finos.org",
"repository": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"devDependencies": {
"husky": "^4.3.0",
"jest-mock-extended": "^1.0.13",
"quicktype": "^23.0.49",
"quicktype": "23.0.75",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
Expand Down
1 change: 1 addition & 0 deletions schemas/api/api.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://fdc3.finos.org/schemas/next/api/api.schema.json",
"title": "FDC3 Desktop Agent API Schema",
"definitions": {
"AppIdentifier": {
"description": "Identifies an application, or instance of an application, and is used to target FDC3 API calls, such as `fdc3.open` or `fdc3.raiseIntent` at specific applications or application instances.\n\nWill always include at least an `appId` field, which uniquely identifies a specific app.\n\nIf the `instanceId` field is set then the `AppMetadata` object represents a specific instance of the application that may be addressed using that Id.",
Expand Down
1 change: 1 addition & 0 deletions schemas/bridging/agentRequest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"openRequest",
"PrivateChannel.broadcast",
"PrivateChannel.eventListenerAdded",
"PrivateChannel.eventListenerRemoved",
"PrivateChannel.onAddContextListener",
"PrivateChannel.onDisconnect",
"PrivateChannel.onUnsubscribe",
Expand Down
3 changes: 2 additions & 1 deletion schemas/bridging/common.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@
"description": "Array of error message strings for responses that were not returned to the bridge before the timeout or because an error occurred. Should be the same length as the `errorSources` array and ordered the same. May be omitted if all sources responded without errors."
},
"PrivateChannelEventListenerTypes": {
"title": "",
"title": "Private Channel Event Listener Types",
"description": "Event listener type names for Private Channel events",
"type": "string",
"enum": [
"onAddContextListener",
Expand Down
Loading