Skip to content

Commit 5ea17fb

Browse files
committed
Added @server_default flags, changed hard flag to required, and some typo fixes
1 parent d429054 commit 5ea17fb

File tree

6 files changed

+18
-12
lines changed

6 files changed

+18
-12
lines changed

output/schema/schema.json

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/typescript/types.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/connector/_types/Connector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ export interface Connector {
254254
api_key_secret_id?: string
255255
configuration: ConnectorConfiguration
256256
custom_scheduling: ConnectorCustomScheduling
257-
deleted?: boolean
257+
deleted: boolean
258258
description?: string
259259
error?: string | null
260260
features?: ConnectorFeatures

specification/connector/delete/ConnectorDeleteRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export interface Request extends RequestBase {
5050
*/
5151
delete_sync_jobs?: boolean
5252
/**
53-
* A flag indicating if the connector should be hard deleted. Defaults to false.
53+
* A flag indicating if the connector should be hard deleted.
54+
* @server_default false
5455
*/
5556
hard?: boolean
5657
}

specification/connector/get/ConnectorGetRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export interface Request extends RequestBase {
4343
}
4444
query_parameters: {
4545
/**
46-
* A flag to indicate if the desired connector should be fetched even if it was soft-deleted
46+
* A flag to indicate if the desired connector should be fetched, even if it was soft-deleted.
47+
* @server_default false
4748
*/
4849
include_deleted?: boolean
4950
}

specification/connector/list/ConnectorListRequest.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ export interface Request extends RequestBase {
5858
*/
5959
service_type?: Names
6060
/**
61-
* A flag to indicate if the desired connector should be fetched even if it was solf-deleted"
61+
* A flag to indicate if the desired connector should be fetched, even if it was soft-deleted.
62+
* @server_default false
6263
*/
6364
include_deleted?: boolean
6465
/**

0 commit comments

Comments
 (0)