@seamapi/types 1.776.0 → 1.777.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +82 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +104 -0
- package/dist/index.cjs +82 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +90 -0
- package/lib/seam/connect/openapi.js +82 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +82 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
|
@@ -60741,6 +60741,20 @@ export type Routes = {
|
|
|
60741
60741
|
};
|
|
60742
60742
|
maxDuration: undefined;
|
|
60743
60743
|
};
|
|
60744
|
+
'/seam/console/v1/workspace/feature_flags/list': {
|
|
60745
|
+
route: '/seam/console/v1/workspace/feature_flags/list';
|
|
60746
|
+
method: 'GET' | 'POST';
|
|
60747
|
+
queryParams: {};
|
|
60748
|
+
jsonBody: {};
|
|
60749
|
+
commonParams: {};
|
|
60750
|
+
formData: {};
|
|
60751
|
+
jsonResponse: {
|
|
60752
|
+
feature_flags: {
|
|
60753
|
+
[x: string]: boolean;
|
|
60754
|
+
};
|
|
60755
|
+
};
|
|
60756
|
+
maxDuration: undefined;
|
|
60757
|
+
};
|
|
60744
60758
|
'/seam/customer/v1/access_grants/list': {
|
|
60745
60759
|
route: '/seam/customer/v1/access_grants/list';
|
|
60746
60760
|
method: 'GET' | 'POST';
|
package/package.json
CHANGED
|
@@ -61214,6 +61214,88 @@ export default {
|
|
|
61214
61214
|
'x-undocumented': 'Internal endpoint for Console',
|
|
61215
61215
|
},
|
|
61216
61216
|
},
|
|
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
|
+
},
|
|
61217
61299
|
'/seam/customer/v1/access_grants/list': {
|
|
61218
61300
|
get: {
|
|
61219
61301
|
description: 'Gets an Access Grant.',
|
|
@@ -72253,6 +72253,20 @@ export type Routes = {
|
|
|
72253
72253
|
}
|
|
72254
72254
|
maxDuration: undefined
|
|
72255
72255
|
}
|
|
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
|
+
}
|
|
72256
72270
|
'/seam/customer/v1/access_grants/list': {
|
|
72257
72271
|
route: '/seam/customer/v1/access_grants/list'
|
|
72258
72272
|
method: 'GET' | 'POST'
|