@seamapi/types 1.940.0 → 1.941.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 +90 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +20 -0
- package/dist/index.cjs +90 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.js +90 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +93 -0
- package/src/lib/seam/connect/route-types.ts +34 -0
|
@@ -62052,6 +62052,96 @@ const openapi = {
|
|
|
62052
62052
|
'x-undocumented': 'Internal endpoint for Console',
|
|
62053
62053
|
},
|
|
62054
62054
|
},
|
|
62055
|
+
'/seam/console/v1/workspace/feature_flags/update': {
|
|
62056
|
+
post: {
|
|
62057
|
+
description: 'Enables or disables a per-workspace feature flag (e.g. whether the Lynx\nmigration is enabled for the workspace). Only flags in the workspace-toggleable\nset can be updated.',
|
|
62058
|
+
operationId: 'seamConsoleV1WorkspaceFeatureFlagsUpdatePost',
|
|
62059
|
+
requestBody: {
|
|
62060
|
+
content: {
|
|
62061
|
+
'application/json': {
|
|
62062
|
+
schema: {
|
|
62063
|
+
properties: {
|
|
62064
|
+
enabled: {
|
|
62065
|
+
description: 'Whether the feature flag should be enabled for the workspace.',
|
|
62066
|
+
type: 'boolean',
|
|
62067
|
+
},
|
|
62068
|
+
feature_flag_name: {
|
|
62069
|
+
description: 'Name of the workspace feature flag to update.',
|
|
62070
|
+
enum: [
|
|
62071
|
+
'RESERVATION_LEGACY',
|
|
62072
|
+
'EXPERIMENTAL_DASHBOARD_API_ENABLED',
|
|
62073
|
+
'ICAL_CONNECTOR',
|
|
62074
|
+
'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS',
|
|
62075
|
+
'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES',
|
|
62076
|
+
'MANAGE_DEVICES_CONFIRMATION_MODAL',
|
|
62077
|
+
'LYNX_MIGRATION_ENABLED',
|
|
62078
|
+
],
|
|
62079
|
+
type: 'string',
|
|
62080
|
+
},
|
|
62081
|
+
},
|
|
62082
|
+
required: ['feature_flag_name', 'enabled'],
|
|
62083
|
+
type: 'object',
|
|
62084
|
+
},
|
|
62085
|
+
},
|
|
62086
|
+
},
|
|
62087
|
+
},
|
|
62088
|
+
responses: {
|
|
62089
|
+
200: {
|
|
62090
|
+
content: {
|
|
62091
|
+
'application/json': {
|
|
62092
|
+
schema: {
|
|
62093
|
+
properties: {
|
|
62094
|
+
feature_flag: {
|
|
62095
|
+
properties: {
|
|
62096
|
+
enabled: { type: 'boolean' },
|
|
62097
|
+
feature_flag_name: {
|
|
62098
|
+
enum: [
|
|
62099
|
+
'RESERVATION_LEGACY',
|
|
62100
|
+
'EXPERIMENTAL_DASHBOARD_API_ENABLED',
|
|
62101
|
+
'ICAL_CONNECTOR',
|
|
62102
|
+
'VISIONLINE_SERIALIZE_BRIDGE_REQUESTS',
|
|
62103
|
+
'SALTO_KS_ENTRANCES_ONLY_FOR_SPACES',
|
|
62104
|
+
'MANAGE_DEVICES_CONFIRMATION_MODAL',
|
|
62105
|
+
'LYNX_MIGRATION_ENABLED',
|
|
62106
|
+
],
|
|
62107
|
+
type: 'string',
|
|
62108
|
+
},
|
|
62109
|
+
},
|
|
62110
|
+
required: ['feature_flag_name', 'enabled'],
|
|
62111
|
+
type: 'object',
|
|
62112
|
+
},
|
|
62113
|
+
ok: { type: 'boolean' },
|
|
62114
|
+
},
|
|
62115
|
+
required: ['feature_flag', 'ok'],
|
|
62116
|
+
type: 'object',
|
|
62117
|
+
},
|
|
62118
|
+
},
|
|
62119
|
+
},
|
|
62120
|
+
description: 'OK',
|
|
62121
|
+
},
|
|
62122
|
+
400: { description: 'Bad Request' },
|
|
62123
|
+
401: { description: 'Unauthorized' },
|
|
62124
|
+
},
|
|
62125
|
+
security: [
|
|
62126
|
+
{ pat_with_workspace: [] },
|
|
62127
|
+
{ console_session_with_workspace: [] },
|
|
62128
|
+
{ api_key: [] },
|
|
62129
|
+
],
|
|
62130
|
+
summary: '/seam/console/v1/workspace/feature_flags/update',
|
|
62131
|
+
tags: [],
|
|
62132
|
+
'x-fern-sdk-group-name': [
|
|
62133
|
+
'seam',
|
|
62134
|
+
'console',
|
|
62135
|
+
'v1',
|
|
62136
|
+
'workspace',
|
|
62137
|
+
'feature_flags',
|
|
62138
|
+
],
|
|
62139
|
+
'x-fern-sdk-method-name': 'update',
|
|
62140
|
+
'x-fern-sdk-return-value': 'feature_flag',
|
|
62141
|
+
'x-response-key': 'feature_flag',
|
|
62142
|
+
'x-undocumented': 'Internal endpoint for Console',
|
|
62143
|
+
},
|
|
62144
|
+
},
|
|
62055
62145
|
'/seam/customer/v1/access_grants/list': {
|
|
62056
62146
|
get: {
|
|
62057
62147
|
description: 'Gets an Access Grant.',
|