Skip to content

Commit

Permalink
test(schemas): update schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon committed Nov 21, 2024
1 parent 80c96b7 commit 04e601f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/types/schemas/configs.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,8 @@ export type EmqxMqttMaxAwaitingRel = 'infinity' | number

export type EmqxMqttMessageExpiryInterval = 'infinity' | string

export type EmqxMqttClientidOverride = string | 'disabled'

export type EmqxMqttPeerCertAsClientid =
typeof EmqxMqttPeerCertAsClientid[keyof typeof EmqxMqttPeerCertAsClientid]

Expand Down Expand Up @@ -574,6 +576,7 @@ export interface EmqxMqtt {
peer_cert_as_username?: EmqxMqttPeerCertAsUsername
peer_cert_as_clientid?: EmqxMqttPeerCertAsClientid
client_attrs_init?: EmqxClientAttrsInit[]
clientid_override?: EmqxMqttClientidOverride
session_expiry_interval?: string
message_expiry_interval?: EmqxMqttMessageExpiryInterval
max_awaiting_rel?: EmqxMqttMaxAwaitingRel
Expand Down
1 change: 1 addition & 0 deletions src/types/schemas/gatewayListeners.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,7 @@ export interface EmqxTcpOpts {
buffer?: string
high_watermark?: string
nodelay?: boolean
nolinger?: boolean
reuseaddr?: boolean
keepalive?: string
}
Expand Down
1 change: 1 addition & 0 deletions src/types/schemas/gateways.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,7 @@ export interface EmqxTcpOpts {
buffer?: string
high_watermark?: string
nodelay?: boolean
nolinger?: boolean
reuseaddr?: boolean
keepalive?: string
}
Expand Down
1 change: 1 addition & 0 deletions src/types/schemas/listeners.schemas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -857,6 +857,7 @@ export interface EmqxTcpOpts {
buffer?: string
high_watermark?: string
nodelay?: boolean
nolinger?: boolean
reuseaddr?: boolean
keepalive?: string
}
Expand Down

0 comments on commit 04e601f

Please sign in to comment.