Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,070 changes: 842 additions & 228 deletions .oas/ats.json

Large diffs are not rendered by default.

133 changes: 105 additions & 28 deletions .oas/core.json
Original file line numberDiff line numberDiff line change
Expand Up@@ -59,10 +59,15 @@
}
],
"summary": "Create Connect Session",
"tags": ["Connect Sessions"],
"tags": [
"Connect Sessions"
],
"x-speakeasy-name-override": "create_connect_session",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -126,10 +131,15 @@
}
],
"summary": "Authenticate Connect Session",
"tags": ["Connect Sessions"],
"tags": [
"Connect Sessions"
],
"x-speakeasy-name-override": "authenticate_connect_session",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -264,10 +274,15 @@
}
],
"summary": "List Accounts",
"tags": ["Accounts"],
"tags": [
"Accounts"
],
"x-speakeasy-name-override": "list_linked_accounts",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -329,10 +344,15 @@
}
],
"summary": "Get Account",
"tags": ["Accounts"],
"tags": [
"Accounts"
],
"x-speakeasy-name-override": "get_account",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
},
Expand DownExpand Up@@ -402,10 +422,15 @@
}
],
"summary": "Update Account",
"tags": ["Accounts"],
"tags": [
"Accounts"
],
"x-speakeasy-name-override": "update_account",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
},
Expand DownExpand Up@@ -468,10 +493,15 @@
}
],
"summary": "Delete Account",
"tags": ["Accounts"],
"tags": [
"Accounts"
],
"x-speakeasy-name-override": "delete_account",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -536,10 +566,15 @@
}
],
"summary": "Get meta information of the account",
"tags": ["Accounts"],
"tags": [
"Accounts"
],
"x-speakeasy-name-override": "get_account_meta_info",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -607,10 +642,15 @@
}
],
"summary": "List Connectors Meta Information for all providers",
"tags": ["Connectors"],
"tags": [
"Connectors"
],
"x-speakeasy-name-override": "list_connectors_meta",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -686,10 +726,15 @@
}
],
"summary": "Get Connector Meta information for the given provider key",
"tags": ["Connectors"],
"tags": [
"Connectors"
],
"x-speakeasy-name-override": "get_connector_meta",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -759,10 +804,15 @@
}
],
"summary": "Proxy Request",
"tags": ["Proxy"],
"tags": [
"Proxy"
],
"x-speakeasy-name-override": "proxy_request",
"x-speakeasy-retries": {
"statusCodes": [429, 408],
"statusCodes": [
429,
408
],
"strategy": "backoff"
}
}
Expand DownExpand Up@@ -901,7 +951,12 @@
]
}
},
"required": ["provider", "provider_name", "category", "models"]
"required": [
"provider",
"provider_name",
"category",
"models"
]
},
"ConnectorsMetaResources": {
"type": "object",
Expand DownExpand Up@@ -1021,7 +1076,9 @@
"description": "The token to authenticate with"
}
},
"required": ["token"]
"required": [
"token"
]
},
"ConnectSessionCreate": {
"type": "object",
Expand DownExpand Up@@ -1104,7 +1161,10 @@
"nullable": true
}
},
"required": ["origin_owner_id", "origin_owner_name"]
"required": [
"origin_owner_id",
"origin_owner_name"
]
},
"ConnectSessionTokenAuthLink": {
"type": "object",
Expand DownExpand Up@@ -1208,7 +1268,11 @@
},
"status": {
"type": "string",
"enum": ["active", "inactive", "error"],
"enum": [
"active",
"inactive",
"error"
],
"x-speakeasy-unknown-values": "allow"
},
"status_reasons": {
Expand DownExpand Up@@ -1285,7 +1349,11 @@
"additionalProperties": true
}
},
"required": ["provider", "category", "models"]
"required": [
"provider",
"category",
"models"
]
},
"PatchAccountExternalDto": {
"type": "object",
Expand DownExpand Up@@ -1347,7 +1415,14 @@
"method": {
"type": "string",
"description": "The method of the request",
"enum": ["get", "post", "put", "delete", "patch", null],
"enum": [
"get",
"post",
"put",
"delete",
"patch",
null
],
"default": "get",
"x-speakeasy-unknown-values": "allow",
"nullable": true
Expand DownExpand Up@@ -1391,12 +1466,14 @@
"type": "string"
}
},
"required": ["timestamp"]
"required": [
"timestamp"
]
}
}
},
"x-readme": {
"explorer-enabled": true,
"proxy-enabled": true
}
}
}
Loading