Skip to content

Commit

Permalink
test(schema): update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon authored and ysfscream committed Oct 8, 2024
1 parent 32c5e7f commit e5fcebc
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types/schemas/actions.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -849,6 +849,9 @@ export const PulsarGetBridgeV2Type = {
pulsar: 'pulsar',
} as const

/**
* @deprecated
*/
export type PulsarActionResourceOptsRequestTtl = 'infinity' | string

export type PulsarActionResourceOptsQueryMode =
Expand All @@ -863,6 +866,7 @@ export const PulsarActionResourceOptsQueryMode = {
export interface PulsarActionResourceOpts {
health_check_interval?: string
query_mode?: PulsarActionResourceOptsQueryMode
/** @deprecated */
request_ttl?: PulsarActionResourceOptsRequestTtl
}

Expand Down
6 changes: 6 additions & 0 deletions src/types/schemas/connectors.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1331,6 +1331,8 @@ export interface IotdbPutThrift {
protocol_version?: IotdbPutThriftProtocolVersion
zoneId?: string
pool_size?: number
connect_timeout?: string
recv_timeout?: string
username: string
password: string
ssl?: EmqxSslClientOpts
Expand Down Expand Up @@ -1415,6 +1417,8 @@ export interface IotdbPostThrift {
protocol_version?: IotdbPostThriftProtocolVersion
zoneId?: string
pool_size?: number
connect_timeout?: string
recv_timeout?: string
username: string
password: string
ssl?: EmqxSslClientOpts
Expand Down Expand Up @@ -1522,6 +1526,8 @@ export interface IotdbGetThrift {
protocol_version?: IotdbGetThriftProtocolVersion
zoneId?: string
pool_size?: number
connect_timeout?: string
recv_timeout?: string
username: string
password: string
ssl?: EmqxSslClientOpts
Expand Down

0 comments on commit e5fcebc

Please sign in to comment.