Skip to content

Commit 54ba59d

Browse files
chore: generate
1 parent a4330a2 commit 54ba59d

2 files changed

Lines changed: 15 additions & 1 deletion

File tree

packages/sdk/js/src/v2/gen/types.gen.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1225,7 +1225,11 @@ export type ProviderConfig = {
12251225
* Timeout in milliseconds for requests to this provider. Default is 300000 (5 minutes). Set to false to disable timeout.
12261226
*/
12271227
timeout?: number | false
1228-
[key: string]: unknown | string | boolean | number | false | undefined
1228+
/**
1229+
* Timeout in milliseconds between streamed SSE chunks for this provider. If no chunk arrives within this window, the request is aborted.
1230+
*/
1231+
chunkTimeout?: number
1232+
[key: string]: unknown | string | boolean | number | false | number | undefined
12291233
}
12301234
}
12311235

packages/sdk/openapi.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1832,6 +1832,10 @@
18321832
},
18331833
"permission": {
18341834
"$ref": "#/components/schemas/PermissionRuleset"
1835+
},
1836+
"workspaceID": {
1837+
"type": "string",
1838+
"pattern": "^wrk.*"
18351839
}
18361840
}
18371841
}
@@ -10108,6 +10112,12 @@
1010810112
"const": false
1010910113
}
1011010114
]
10115+
},
10116+
"chunkTimeout": {
10117+
"description": "Timeout in milliseconds between streamed SSE chunks for this provider. If no chunk arrives within this window, the request is aborted.",
10118+
"type": "integer",
10119+
"exclusiveMinimum": 0,
10120+
"maximum": 9007199254740991
1011110121
}
1011210122
},
1011310123
"additionalProperties": {}

0 commit comments

Comments
 (0)