Skip to content

Commit

Permalink
fix: update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
jkoenig134 committed Sep 2, 2024
1 parent 0deb868 commit 40a63a1
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions packages/runtime/src/useCases/common/Schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20357,6 +20357,27 @@ export const UpdateSettingRequest: any = {
}
}

export const UpsertSettingByKeyRequest: any = {
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/UpsertSettingByKeyRequest",
"definitions": {
"UpsertSettingByKeyRequest": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {}
},
"required": [
"key",
"value"
],
"additionalProperties": false
}
}
}

export const DownloadFileRequest: any = {
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/DownloadFileRequest",
Expand Down

0 comments on commit 40a63a1

Please sign in to comment.