Skip to content

Commit

Permalink
test(schema): update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon authored and ysfscream committed Jun 5, 2024
1 parent 631422f commit 0121436
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/schemas/actions.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ export interface BridgeS3S3DirectUploadParameters {
key: string
acl?: BridgeS3S3DirectUploadParametersAcl
headers?: BridgeS3S3DirectUploadParametersHeaders
mode: BridgeS3S3DirectUploadParametersMode
mode?: BridgeS3S3DirectUploadParametersMode
content?: string
}

Expand Down
9 changes: 9 additions & 0 deletions src/types/schemas/connectors.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1849,6 +1849,7 @@ export interface ConnectorPostgresPutConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand All @@ -1874,6 +1875,7 @@ export interface ConnectorPostgresPostConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down Expand Up @@ -1914,6 +1916,7 @@ export interface ConnectorPostgresGetConnector {
node_status?: ConnectorNodeStatus[]
actions?: string[]
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down Expand Up @@ -2267,6 +2270,7 @@ export interface BridgeTimescalePutConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand All @@ -2292,6 +2296,7 @@ export interface BridgeTimescalePostConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down Expand Up @@ -2332,6 +2337,7 @@ export interface BridgeTimescaleGetConnector {
node_status?: ConnectorNodeStatus[]
actions?: string[]
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down Expand Up @@ -2828,6 +2834,7 @@ export interface BridgeMatrixPutConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand All @@ -2853,6 +2860,7 @@ export interface BridgeMatrixPostConnector {
tags?: string[]
description?: string
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down Expand Up @@ -2893,6 +2901,7 @@ export interface BridgeMatrixGetConnector {
node_status?: ConnectorNodeStatus[]
actions?: string[]
server: string
disable_prepared_statements?: boolean
database: string
pool_size?: number
username: string
Expand Down

0 comments on commit 0121436

Please sign in to comment.