Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 516
chore(api): sync Management API OpenAPI spec#5752
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -2539,6 +2539,7 @@ export const V1GetOrganizationEntitlementsOutput = Schema.Struct({ | ||
| "integrations.github_connections", | ||
| "dedicated_pooler", | ||
| "observability.dashboard_advanced_metrics", | ||
| "api.members.invitations", | ||
| "api.members.roles", | ||
| ]), | ||
| type: Schema.Literals(["boolean", "numeric", "set"]), | ||
| @@ -2906,6 +2907,12 @@ export const V1GetPostgrestServiceConfigOutput = Schema.Struct({ | ||
| }).check(Schema.isInt()), | ||
| Schema.Null, | ||
| ]), | ||
| db_pool_acquisition_timeout: Schema.Union([ | ||
jgoux marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| Schema.Number.annotate({ | ||
| description: "If `null`, the value is automatically configured to 10.", | ||
| }).check(Schema.isInt()), | ||
| Schema.Null, | ||
| ]), | ||
jgoux marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. jgoux marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. jgoux marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| jwt_secret: Schema.optionalKey(Schema.String), | ||
| }); | ||
| export const V1GetProfileInput = Schema.Struct({}); | ||
| @@ -5789,6 +5796,11 @@ export const V1UpdatePostgrestServiceConfigInput = Schema.Struct({ | ||
| .check(Schema.isGreaterThanOrEqualTo(0)) | ||
| .check(Schema.isLessThanOrEqualTo(1000)), | ||
| ), | ||
| db_pool_acquisition_timeout: Schema.optionalKey( | ||
| Schema.Number.check(Schema.isInt()) | ||
| .check(Schema.isGreaterThanOrEqualTo(0)) | ||
| .check(Schema.isLessThanOrEqualTo(60)), | ||
| ), | ||
| }); | ||
| export const V1UpdatePostgrestServiceConfigOutput = Schema.Struct({ | ||
| db_schema: Schema.String, | ||
| @@ -5800,6 +5812,12 @@ export const V1UpdatePostgrestServiceConfigOutput = Schema.Struct({ | ||
| }).check(Schema.isInt()), | ||
| Schema.Null, | ||
| ]), | ||
| db_pool_acquisition_timeout: Schema.Union([ | ||
| Schema.Number.annotate({ | ||
| description: "If `null`, the value is automatically configured to 10.", | ||
| }).check(Schema.isInt()), | ||
| Schema.Null, | ||
| ]), | ||
| }); | ||
| export const V1UpdateProjectApiKeyInput = Schema.Struct({ | ||
| ref: Schema.String.check(Schema.isMinLength(20)) | ||
| @@ -8792,7 +8810,13 @@ export const operationDefinitions = { | ||
| requestBody: { | ||
| kind: "json", | ||
| contentType: "application/json", | ||
| fields: ["db_extra_search_path", "db_schema", "max_rows", "db_pool"], | ||
| fields: [ | ||
| "db_extra_search_path", | ||
| "db_schema", | ||
| "max_rows", | ||
| "db_pool", | ||
| "db_pool_acquisition_timeout", | ||
| ], | ||
| }, | ||
| response: { kind: "json" }, | ||
| inputSchema: V1UpdatePostgrestServiceConfigInput, | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.