Skip to content

Commit a8fb7ea

Browse files
authored
feat: Sync with Seam API via e77f6b76aedc7d0bf9d30403fbe60bb3c098d865 (#2746)
1 parent d8de343 commit a8fb7ea

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed

src/lib/seam/connect/openapi.ts

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61214,6 +61214,88 @@ export default {
6121461214
'x-undocumented': 'Internal endpoint for Console',
6121561215
},
6121661216
},
61217+
'/seam/console/v1/workspace/feature_flags/list': {
61218+
get: {
61219+
description: 'Lists workspace feature flags.',
61220+
operationId: 'seamConsoleV1WorkspaceFeatureFlagsListGet',
61221+
responses: {
61222+
200: {
61223+
content: {
61224+
'application/json': {
61225+
schema: {
61226+
properties: {
61227+
feature_flags: {
61228+
additionalProperties: { type: 'boolean' },
61229+
type: 'object',
61230+
},
61231+
ok: { type: 'boolean' },
61232+
},
61233+
required: ['feature_flags', 'ok'],
61234+
type: 'object',
61235+
},
61236+
},
61237+
},
61238+
description: 'OK',
61239+
},
61240+
400: { description: 'Bad Request' },
61241+
401: { description: 'Unauthorized' },
61242+
},
61243+
security: [{ console_session_with_workspace: [] }],
61244+
summary: '/seam/console/v1/workspace/feature_flags/list',
61245+
tags: [],
61246+
'x-fern-sdk-group-name': [
61247+
'seam',
61248+
'console',
61249+
'v1',
61250+
'workspace',
61251+
'feature_flags',
61252+
],
61253+
'x-fern-sdk-method-name': 'list',
61254+
'x-fern-sdk-return-value': 'feature_flags',
61255+
'x-response-key': 'feature_flags',
61256+
'x-undocumented': 'Internal endpoint for Console',
61257+
},
61258+
post: {
61259+
description: 'Lists workspace feature flags.',
61260+
operationId: 'seamConsoleV1WorkspaceFeatureFlagsListPost',
61261+
responses: {
61262+
200: {
61263+
content: {
61264+
'application/json': {
61265+
schema: {
61266+
properties: {
61267+
feature_flags: {
61268+
additionalProperties: { type: 'boolean' },
61269+
type: 'object',
61270+
},
61271+
ok: { type: 'boolean' },
61272+
},
61273+
required: ['feature_flags', 'ok'],
61274+
type: 'object',
61275+
},
61276+
},
61277+
},
61278+
description: 'OK',
61279+
},
61280+
400: { description: 'Bad Request' },
61281+
401: { description: 'Unauthorized' },
61282+
},
61283+
security: [{ console_session_with_workspace: [] }],
61284+
summary: '/seam/console/v1/workspace/feature_flags/list',
61285+
tags: [],
61286+
'x-fern-sdk-group-name': [
61287+
'seam',
61288+
'console',
61289+
'v1',
61290+
'workspace',
61291+
'feature_flags',
61292+
],
61293+
'x-fern-sdk-method-name': 'list',
61294+
'x-fern-sdk-return-value': 'feature_flags',
61295+
'x-response-key': 'feature_flags',
61296+
'x-undocumented': 'Internal endpoint for Console',
61297+
},
61298+
},
6121761299
'/seam/customer/v1/access_grants/list': {
6121861300
get: {
6121961301
description: 'Gets an Access Grant.',

src/lib/seam/connect/route-types.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72253,6 +72253,20 @@ export type Routes = {
7225372253
}
7225472254
maxDuration: undefined
7225572255
}
72256+
'/seam/console/v1/workspace/feature_flags/list': {
72257+
route: '/seam/console/v1/workspace/feature_flags/list'
72258+
method: 'GET' | 'POST'
72259+
queryParams: {}
72260+
jsonBody: {}
72261+
commonParams: {}
72262+
formData: {}
72263+
jsonResponse: {
72264+
feature_flags: {
72265+
[x: string]: boolean
72266+
}
72267+
}
72268+
maxDuration: undefined
72269+
}
7225672270
'/seam/customer/v1/access_grants/list': {
7225772271
route: '/seam/customer/v1/access_grants/list'
7225872272
method: 'GET' | 'POST'

0 commit comments

Comments
 (0)