Skip to content
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
3,909 changes: 1,290 additions & 2,619 deletions libs/events/generated/all.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions libs/events/generated/payments/v2.0.0/CONNECTOR_RESET.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
},
"payload": {
"type": "object",
"required": [
"createdAt",
"connectorID"
],
"properties": {
"createdAt": {
"type": "string"
},
"connector": {
"connectorID": {
"type": "string"
}
},
"required": [
"createdAt",
"connectorId"
]
}
}
},
"required": [
Expand Down
43 changes: 43 additions & 0 deletions libs/events/generated/payments/v3.0.0/CONNECTOR_RESET.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{
"type": "object",
"properties": {
"app": {
"type": "string"
},
"version": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"ledger": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"createdAt",
"connectorID"
],
"properties": {
"createdAt": {
"type": "string"
},
"connectorID": {
"type": "string"
}
}
}
},
"required": [
"date",
"app",
"version",
"type",
"payload"
]
}
44 changes: 44 additions & 0 deletions libs/events/generated/payments/v3.0.0/DELETED_POOL.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"type": "object",
"properties": {
"app": {
"type": "string"
},
"version": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"ledger": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"id",
"createdAt"
],
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
}
},
"required": [
"date",
"app",
"version",
"type",
"payload"
]
}
75 changes: 75 additions & 0 deletions libs/events/generated/payments/v3.0.0/SAVED_ACCOUNT.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
{
"type": "object",
"properties": {
"app": {
"type": "string"
},
"version": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"ledger": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"id",
"provider",
"connectorID",
"createdAt",
"reference",
"type"
],
"properties": {
"id": {
"type": "string"
},
"provider": {
"type": "string"
},
"connectorID": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"reference": {
"type": "string"
},
"type": {
"type": "string"
},
"rawData": {
"type": "object"
},
"defaultAsset": {
"type": "string"
},
"name": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
}
},
"required": [
"date",
"app",
"version",
"type",
"payload"
]
}
66 changes: 66 additions & 0 deletions libs/events/generated/payments/v3.0.0/SAVED_BALANCE.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{
"type": "object",
"properties": {
"app": {
"type": "string"
},
"version": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"ledger": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"accountID",
"connectorID",
"provider",
"createdAt",
"lastUpdatedAt",
"asset",
"balance"
],
"properties": {
"accountID": {
"type": "string"
},
"connectorID": {
"type": "string"
},
"provider": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"lastUpdatedAt": {
"type": "string",
"format": "date-time"
},
"asset": {
"type": "string"
},
"balance": {
"type": "number",
"format": "bigint"
}
}
}
},
"required": [
"date",
"app",
"version",
"type",
"payload"
]
}
96 changes: 96 additions & 0 deletions libs/events/generated/payments/v3.0.0/SAVED_BANK_ACCOUNT.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{
"type": "object",
"properties": {
"app": {
"type": "string"
},
"version": {
"type": "string"
},
"date": {
"type": "string",
"format": "date-time"
},
"type": {
"type": "string"
},
"ledger": {
"type": "string"
},
"payload": {
"type": "object",
"required": [
"id",
"createdAt",
"name"
],
"properties": {
"id": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"name": {
"type": "string"
},
"country": {
"type": "string"
},
"accountNumber": {
"type": "string"
},
"iban": {
"type": "string"
},
"swiftBicCode": {
"type": "string"
},
"metadata": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"relatedAccounts": {
"type": [
"array",
"null"
],
"items": {
"type": "object",
"required": [
"createdAt",
"accountID",
"connectorID",
"provider"
],
"properties": {
"createdAt": {
"type": "string",
"format": "date-time"
},
"accountID": {
"type": "string"
},
"connectorID": {
"type": "string"
},
"provider": {
"type": "string"
}
}
}
}
}
}
},
"required": [
"date",
"app",
"version",
"type",
"payload"
]
}
Loading