@seamapi/types 1.461.0 → 1.463.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 +515 -175
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +18096 -1263
- package/dist/index.cjs +515 -175
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +26418 -2872
- package/lib/seam/connect/models/batch.js +34 -11
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +2 -2
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -2
- package/lib/seam/connect/models/devices/device-provider.js +3 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/models/spaces/space.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +377 -6
- package/lib/seam/connect/openapi.js +335 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +15093 -10405
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +47 -21
- package/src/lib/seam/connect/models/devices/device-provider.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +338 -14
- package/src/lib/seam/connect/route-types.ts +6809 -1189
package/package.json
CHANGED
|
@@ -26,6 +26,7 @@ export const acs_system_external_type = z.enum([
|
|
|
26
26
|
'assa_abloy_credential_service',
|
|
27
27
|
'latch_building',
|
|
28
28
|
'dormakaba_community_site',
|
|
29
|
+
'dormakaba_ambiance_site',
|
|
29
30
|
'legic_connect_credential_service',
|
|
30
31
|
'assa_abloy_vostio',
|
|
31
32
|
'assa_abloy_vostio_credential_service',
|
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
acs_access_group,
|
|
5
|
+
unmanaged_acs_access_group,
|
|
6
|
+
} from './acs/acs-access-group.js'
|
|
7
|
+
import { acs_encoder } from './acs/acs-encoder.js'
|
|
8
|
+
import { acs_user, unmanaged_acs_user } from './acs/acs-users/acs-user.js'
|
|
9
|
+
import { acs_entrance, acs_system } from './acs/index.js'
|
|
10
|
+
import { action_attempt } from './action-attempts/action-attempt.js'
|
|
11
|
+
import { client_session } from './client-sessions/client-session.js'
|
|
12
|
+
import { connect_webview } from './connect-webviews/connect-webview.js'
|
|
5
13
|
import { connected_account } from './connected-accounts/index.js'
|
|
6
14
|
import { device } from './devices/index.js'
|
|
15
|
+
import { unmanaged_device } from './devices/unmanaged-device.js'
|
|
7
16
|
import { space } from './spaces/index.js'
|
|
8
17
|
import { user_identity } from './user-identities/index.js'
|
|
9
18
|
import { workspace } from './workspaces/index.js'
|
|
@@ -44,27 +53,44 @@ export const workspaces_batch = z
|
|
|
44
53
|
spaces: space.array().optional(),
|
|
45
54
|
devices: device.array().optional(),
|
|
46
55
|
acs_entrances: acs_entrance.array().optional(),
|
|
56
|
+
acs_systems: acs_system.array().optional(),
|
|
57
|
+
acs_users: acs_user.array().optional(),
|
|
58
|
+
acs_access_groups: acs_access_group.array().optional(),
|
|
59
|
+
acs_encoders: acs_encoder.array().optional(),
|
|
60
|
+
action_attempts: action_attempt.array().optional(),
|
|
61
|
+
client_sessions: client_session.array().optional(),
|
|
62
|
+
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
63
|
+
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
64
|
+
unmanaged_devices: unmanaged_device.array().optional(),
|
|
65
|
+
connect_webviews: connect_webview.array().optional(),
|
|
47
66
|
})
|
|
48
|
-
.describe('A batch of workspace
|
|
67
|
+
.describe('A batch of workspace resources.')
|
|
49
68
|
|
|
50
|
-
export const batch = z
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
export const batch = z
|
|
70
|
+
.object({
|
|
71
|
+
batch_type: z.enum([
|
|
72
|
+
'workspaces',
|
|
73
|
+
'spaces',
|
|
74
|
+
'access_grants',
|
|
75
|
+
'access_methods',
|
|
76
|
+
]),
|
|
77
|
+
user_identities: user_identity.array().optional(),
|
|
78
|
+
workspaces: workspace.array().optional(),
|
|
79
|
+
spaces: space.array().optional(),
|
|
80
|
+
devices: device.array().optional(),
|
|
81
|
+
acs_entrances: acs_entrance.array().optional(),
|
|
82
|
+
acs_systems: acs_system.array().optional(),
|
|
83
|
+
acs_users: acs_user.array().optional(),
|
|
84
|
+
acs_access_groups: acs_access_group.array().optional(),
|
|
85
|
+
acs_encoders: acs_encoder.array().optional(),
|
|
86
|
+
action_attempts: action_attempt.array().optional(),
|
|
87
|
+
client_sessions: client_session.array().optional(),
|
|
88
|
+
unmanaged_acs_users: unmanaged_acs_user.array().optional(),
|
|
89
|
+
unmanaged_acs_access_groups: unmanaged_acs_access_group.array().optional(),
|
|
90
|
+
unmanaged_devices: unmanaged_device.array().optional(),
|
|
91
|
+
connect_webviews: connect_webview.array().optional(),
|
|
92
|
+
})
|
|
93
|
+
.describe('A batch of workspace resources.')
|
|
68
94
|
|
|
69
95
|
// TODO: Resolve type issues blocking this approach.
|
|
70
96
|
// export const batch = z.discriminatedUnion("batch_type", [
|
|
@@ -51,6 +51,7 @@ export const DEVICE_PROVIDERS = {
|
|
|
51
51
|
SENSI: 'sensi',
|
|
52
52
|
KWIKSET2: 'kwikset2',
|
|
53
53
|
KEYNEST: 'keynest',
|
|
54
|
+
DORMAKABA_AMBIANCE: 'dormakaba_ambiance',
|
|
54
55
|
} as const
|
|
55
56
|
|
|
56
57
|
export type DeviceProviderName =
|
|
@@ -91,6 +92,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
91
92
|
'akiles',
|
|
92
93
|
'sensi',
|
|
93
94
|
'assa_abloy_vostio',
|
|
95
|
+
'avigilon_alta',
|
|
94
96
|
],
|
|
95
97
|
|
|
96
98
|
consumer_smartlocks: [
|
|
@@ -117,6 +119,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
117
119
|
'salto_ks',
|
|
118
120
|
'assa_abloy_vostio',
|
|
119
121
|
'salto_space',
|
|
122
|
+
'dormakaba_ambiance',
|
|
120
123
|
],
|
|
121
124
|
|
|
122
125
|
internal_beta: ALL_DEVICE_PROVIDERS,
|
|
@@ -3222,6 +3222,7 @@ export default {
|
|
|
3222
3222
|
'assa_abloy_credential_service',
|
|
3223
3223
|
'latch_building',
|
|
3224
3224
|
'dormakaba_community_site',
|
|
3225
|
+
'dormakaba_ambiance_site',
|
|
3225
3226
|
'legic_connect_credential_service',
|
|
3226
3227
|
'assa_abloy_vostio',
|
|
3227
3228
|
'assa_abloy_vostio_credential_service',
|
|
@@ -3278,6 +3279,7 @@ export default {
|
|
|
3278
3279
|
'assa_abloy_credential_service',
|
|
3279
3280
|
'latch_building',
|
|
3280
3281
|
'dormakaba_community_site',
|
|
3282
|
+
'dormakaba_ambiance_site',
|
|
3281
3283
|
'legic_connect_credential_service',
|
|
3282
3284
|
'assa_abloy_vostio',
|
|
3283
3285
|
'assa_abloy_vostio_credential_service',
|
|
@@ -13021,6 +13023,7 @@ export default {
|
|
|
13021
13023
|
'sensi',
|
|
13022
13024
|
'kwikset2',
|
|
13023
13025
|
'keynest',
|
|
13026
|
+
'dormakaba_ambiance',
|
|
13024
13027
|
],
|
|
13025
13028
|
type: 'string',
|
|
13026
13029
|
},
|
|
@@ -27960,6 +27963,13 @@ export default {
|
|
|
27960
27963
|
nullable: true,
|
|
27961
27964
|
type: 'string',
|
|
27962
27965
|
},
|
|
27966
|
+
user_identity_key: {
|
|
27967
|
+
description:
|
|
27968
|
+
'Unique key for the user identity.',
|
|
27969
|
+
minLength: 1,
|
|
27970
|
+
nullable: true,
|
|
27971
|
+
type: 'string',
|
|
27972
|
+
},
|
|
27963
27973
|
},
|
|
27964
27974
|
type: 'object',
|
|
27965
27975
|
},
|
|
@@ -28769,7 +28779,6 @@ export default {
|
|
|
28769
28779
|
description:
|
|
28770
28780
|
'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28771
28781
|
format: 'date-time',
|
|
28772
|
-
nullable: true,
|
|
28773
28782
|
type: 'string',
|
|
28774
28783
|
},
|
|
28775
28784
|
},
|
|
@@ -28838,7 +28847,6 @@ export default {
|
|
|
28838
28847
|
description:
|
|
28839
28848
|
'Date and time at which the validity of the grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
28840
28849
|
format: 'date-time',
|
|
28841
|
-
nullable: true,
|
|
28842
28850
|
type: 'string',
|
|
28843
28851
|
},
|
|
28844
28852
|
},
|
|
@@ -29195,21 +29203,57 @@ export default {
|
|
|
29195
29203
|
schema: {
|
|
29196
29204
|
properties: {
|
|
29197
29205
|
batch: {
|
|
29198
|
-
description: '
|
|
29206
|
+
description: 'A batch of workspace resources.',
|
|
29199
29207
|
properties: {
|
|
29208
|
+
acs_access_groups: {
|
|
29209
|
+
items: {
|
|
29210
|
+
$ref: '#/components/schemas/acs_access_group',
|
|
29211
|
+
},
|
|
29212
|
+
type: 'array',
|
|
29213
|
+
},
|
|
29214
|
+
acs_encoders: {
|
|
29215
|
+
items: { $ref: '#/components/schemas/acs_encoder' },
|
|
29216
|
+
type: 'array',
|
|
29217
|
+
},
|
|
29200
29218
|
acs_entrances: {
|
|
29201
29219
|
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
29202
29220
|
type: 'array',
|
|
29203
29221
|
},
|
|
29222
|
+
acs_systems: {
|
|
29223
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
29224
|
+
type: 'array',
|
|
29225
|
+
},
|
|
29226
|
+
acs_users: {
|
|
29227
|
+
items: { $ref: '#/components/schemas/acs_user' },
|
|
29228
|
+
type: 'array',
|
|
29229
|
+
},
|
|
29230
|
+
action_attempts: {
|
|
29231
|
+
items: {
|
|
29232
|
+
$ref: '#/components/schemas/action_attempt',
|
|
29233
|
+
},
|
|
29234
|
+
type: 'array',
|
|
29235
|
+
},
|
|
29204
29236
|
batch_type: {
|
|
29205
29237
|
enum: [
|
|
29206
29238
|
'workspaces',
|
|
29239
|
+
'spaces',
|
|
29207
29240
|
'access_grants',
|
|
29208
29241
|
'access_methods',
|
|
29209
|
-
'spaces',
|
|
29210
29242
|
],
|
|
29211
29243
|
type: 'string',
|
|
29212
29244
|
},
|
|
29245
|
+
client_sessions: {
|
|
29246
|
+
items: {
|
|
29247
|
+
$ref: '#/components/schemas/client_session',
|
|
29248
|
+
},
|
|
29249
|
+
type: 'array',
|
|
29250
|
+
},
|
|
29251
|
+
connect_webviews: {
|
|
29252
|
+
items: {
|
|
29253
|
+
$ref: '#/components/schemas/connect_webview',
|
|
29254
|
+
},
|
|
29255
|
+
type: 'array',
|
|
29256
|
+
},
|
|
29213
29257
|
devices: {
|
|
29214
29258
|
items: { $ref: '#/components/schemas/device' },
|
|
29215
29259
|
type: 'array',
|
|
@@ -29218,6 +29262,24 @@ export default {
|
|
|
29218
29262
|
items: { $ref: '#/components/schemas/space' },
|
|
29219
29263
|
type: 'array',
|
|
29220
29264
|
},
|
|
29265
|
+
unmanaged_acs_access_groups: {
|
|
29266
|
+
items: {
|
|
29267
|
+
$ref: '#/components/schemas/unmanaged_acs_access_group',
|
|
29268
|
+
},
|
|
29269
|
+
type: 'array',
|
|
29270
|
+
},
|
|
29271
|
+
unmanaged_acs_users: {
|
|
29272
|
+
items: {
|
|
29273
|
+
$ref: '#/components/schemas/unmanaged_acs_user',
|
|
29274
|
+
},
|
|
29275
|
+
type: 'array',
|
|
29276
|
+
},
|
|
29277
|
+
unmanaged_devices: {
|
|
29278
|
+
items: {
|
|
29279
|
+
$ref: '#/components/schemas/unmanaged_device',
|
|
29280
|
+
},
|
|
29281
|
+
type: 'array',
|
|
29282
|
+
},
|
|
29221
29283
|
user_identities: {
|
|
29222
29284
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
29223
29285
|
type: 'array',
|
|
@@ -29229,7 +29291,6 @@ export default {
|
|
|
29229
29291
|
},
|
|
29230
29292
|
required: ['batch_type'],
|
|
29231
29293
|
type: 'object',
|
|
29232
|
-
'x-route-path': '/',
|
|
29233
29294
|
},
|
|
29234
29295
|
ok: { type: 'boolean' },
|
|
29235
29296
|
},
|
|
@@ -29301,21 +29362,57 @@ export default {
|
|
|
29301
29362
|
schema: {
|
|
29302
29363
|
properties: {
|
|
29303
29364
|
batch: {
|
|
29304
|
-
description: '
|
|
29365
|
+
description: 'A batch of workspace resources.',
|
|
29305
29366
|
properties: {
|
|
29367
|
+
acs_access_groups: {
|
|
29368
|
+
items: {
|
|
29369
|
+
$ref: '#/components/schemas/acs_access_group',
|
|
29370
|
+
},
|
|
29371
|
+
type: 'array',
|
|
29372
|
+
},
|
|
29373
|
+
acs_encoders: {
|
|
29374
|
+
items: { $ref: '#/components/schemas/acs_encoder' },
|
|
29375
|
+
type: 'array',
|
|
29376
|
+
},
|
|
29306
29377
|
acs_entrances: {
|
|
29307
29378
|
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
29308
29379
|
type: 'array',
|
|
29309
29380
|
},
|
|
29381
|
+
acs_systems: {
|
|
29382
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
29383
|
+
type: 'array',
|
|
29384
|
+
},
|
|
29385
|
+
acs_users: {
|
|
29386
|
+
items: { $ref: '#/components/schemas/acs_user' },
|
|
29387
|
+
type: 'array',
|
|
29388
|
+
},
|
|
29389
|
+
action_attempts: {
|
|
29390
|
+
items: {
|
|
29391
|
+
$ref: '#/components/schemas/action_attempt',
|
|
29392
|
+
},
|
|
29393
|
+
type: 'array',
|
|
29394
|
+
},
|
|
29310
29395
|
batch_type: {
|
|
29311
29396
|
enum: [
|
|
29312
29397
|
'workspaces',
|
|
29398
|
+
'spaces',
|
|
29313
29399
|
'access_grants',
|
|
29314
29400
|
'access_methods',
|
|
29315
|
-
'spaces',
|
|
29316
29401
|
],
|
|
29317
29402
|
type: 'string',
|
|
29318
29403
|
},
|
|
29404
|
+
client_sessions: {
|
|
29405
|
+
items: {
|
|
29406
|
+
$ref: '#/components/schemas/client_session',
|
|
29407
|
+
},
|
|
29408
|
+
type: 'array',
|
|
29409
|
+
},
|
|
29410
|
+
connect_webviews: {
|
|
29411
|
+
items: {
|
|
29412
|
+
$ref: '#/components/schemas/connect_webview',
|
|
29413
|
+
},
|
|
29414
|
+
type: 'array',
|
|
29415
|
+
},
|
|
29319
29416
|
devices: {
|
|
29320
29417
|
items: { $ref: '#/components/schemas/device' },
|
|
29321
29418
|
type: 'array',
|
|
@@ -29324,6 +29421,24 @@ export default {
|
|
|
29324
29421
|
items: { $ref: '#/components/schemas/space' },
|
|
29325
29422
|
type: 'array',
|
|
29326
29423
|
},
|
|
29424
|
+
unmanaged_acs_access_groups: {
|
|
29425
|
+
items: {
|
|
29426
|
+
$ref: '#/components/schemas/unmanaged_acs_access_group',
|
|
29427
|
+
},
|
|
29428
|
+
type: 'array',
|
|
29429
|
+
},
|
|
29430
|
+
unmanaged_acs_users: {
|
|
29431
|
+
items: {
|
|
29432
|
+
$ref: '#/components/schemas/unmanaged_acs_user',
|
|
29433
|
+
},
|
|
29434
|
+
type: 'array',
|
|
29435
|
+
},
|
|
29436
|
+
unmanaged_devices: {
|
|
29437
|
+
items: {
|
|
29438
|
+
$ref: '#/components/schemas/unmanaged_device',
|
|
29439
|
+
},
|
|
29440
|
+
type: 'array',
|
|
29441
|
+
},
|
|
29327
29442
|
user_identities: {
|
|
29328
29443
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
29329
29444
|
type: 'array',
|
|
@@ -29335,7 +29450,6 @@ export default {
|
|
|
29335
29450
|
},
|
|
29336
29451
|
required: ['batch_type'],
|
|
29337
29452
|
type: 'object',
|
|
29338
|
-
'x-route-path': '/',
|
|
29339
29453
|
},
|
|
29340
29454
|
ok: { type: 'boolean' },
|
|
29341
29455
|
},
|
|
@@ -36883,6 +36997,7 @@ export default {
|
|
|
36883
36997
|
'sensi',
|
|
36884
36998
|
'kwikset2',
|
|
36885
36999
|
'keynest',
|
|
37000
|
+
'dormakaba_ambiance',
|
|
36886
37001
|
'yale_access',
|
|
36887
37002
|
'hid_cm',
|
|
36888
37003
|
'google_nest',
|
|
@@ -42812,6 +42927,109 @@ export default {
|
|
|
42812
42927
|
'x-title': 'List Events',
|
|
42813
42928
|
},
|
|
42814
42929
|
},
|
|
42930
|
+
'/instant_keys/get': {
|
|
42931
|
+
get: {
|
|
42932
|
+
description:
|
|
42933
|
+
'Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).',
|
|
42934
|
+
operationId: 'instantKeysGetGet',
|
|
42935
|
+
parameters: [
|
|
42936
|
+
{
|
|
42937
|
+
in: 'query',
|
|
42938
|
+
name: 'instant_key_id',
|
|
42939
|
+
required: true,
|
|
42940
|
+
schema: {
|
|
42941
|
+
description: 'ID of the instant key to get.',
|
|
42942
|
+
format: 'uuid',
|
|
42943
|
+
type: 'string',
|
|
42944
|
+
},
|
|
42945
|
+
},
|
|
42946
|
+
],
|
|
42947
|
+
responses: {
|
|
42948
|
+
200: {
|
|
42949
|
+
content: {
|
|
42950
|
+
'application/json': {
|
|
42951
|
+
schema: {
|
|
42952
|
+
properties: {
|
|
42953
|
+
instant_key: { $ref: '#/components/schemas/instant_key' },
|
|
42954
|
+
ok: { type: 'boolean' },
|
|
42955
|
+
},
|
|
42956
|
+
required: ['instant_key', 'ok'],
|
|
42957
|
+
type: 'object',
|
|
42958
|
+
},
|
|
42959
|
+
},
|
|
42960
|
+
},
|
|
42961
|
+
description: 'OK',
|
|
42962
|
+
},
|
|
42963
|
+
400: { description: 'Bad Request' },
|
|
42964
|
+
401: { description: 'Unauthorized' },
|
|
42965
|
+
},
|
|
42966
|
+
security: [
|
|
42967
|
+
{ api_key: [] },
|
|
42968
|
+
{ pat_with_workspace: [] },
|
|
42969
|
+
{ console_session_with_workspace: [] },
|
|
42970
|
+
],
|
|
42971
|
+
summary: '/instant_keys/get',
|
|
42972
|
+
tags: [],
|
|
42973
|
+
'x-fern-sdk-group-name': ['instant_keys'],
|
|
42974
|
+
'x-fern-sdk-method-name': 'get',
|
|
42975
|
+
'x-fern-sdk-return-value': 'instant_key',
|
|
42976
|
+
'x-response-key': 'instant_key',
|
|
42977
|
+
'x-title': 'Get an Instant Key',
|
|
42978
|
+
},
|
|
42979
|
+
post: {
|
|
42980
|
+
description:
|
|
42981
|
+
'Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).',
|
|
42982
|
+
operationId: 'instantKeysGetPost',
|
|
42983
|
+
requestBody: {
|
|
42984
|
+
content: {
|
|
42985
|
+
'application/json': {
|
|
42986
|
+
schema: {
|
|
42987
|
+
properties: {
|
|
42988
|
+
instant_key_id: {
|
|
42989
|
+
description: 'ID of the instant key to get.',
|
|
42990
|
+
format: 'uuid',
|
|
42991
|
+
type: 'string',
|
|
42992
|
+
},
|
|
42993
|
+
},
|
|
42994
|
+
required: ['instant_key_id'],
|
|
42995
|
+
type: 'object',
|
|
42996
|
+
},
|
|
42997
|
+
},
|
|
42998
|
+
},
|
|
42999
|
+
},
|
|
43000
|
+
responses: {
|
|
43001
|
+
200: {
|
|
43002
|
+
content: {
|
|
43003
|
+
'application/json': {
|
|
43004
|
+
schema: {
|
|
43005
|
+
properties: {
|
|
43006
|
+
instant_key: { $ref: '#/components/schemas/instant_key' },
|
|
43007
|
+
ok: { type: 'boolean' },
|
|
43008
|
+
},
|
|
43009
|
+
required: ['instant_key', 'ok'],
|
|
43010
|
+
type: 'object',
|
|
43011
|
+
},
|
|
43012
|
+
},
|
|
43013
|
+
},
|
|
43014
|
+
description: 'OK',
|
|
43015
|
+
},
|
|
43016
|
+
400: { description: 'Bad Request' },
|
|
43017
|
+
401: { description: 'Unauthorized' },
|
|
43018
|
+
},
|
|
43019
|
+
security: [
|
|
43020
|
+
{ api_key: [] },
|
|
43021
|
+
{ pat_with_workspace: [] },
|
|
43022
|
+
{ console_session_with_workspace: [] },
|
|
43023
|
+
],
|
|
43024
|
+
summary: '/instant_keys/get',
|
|
43025
|
+
tags: [],
|
|
43026
|
+
'x-fern-sdk-group-name': ['instant_keys'],
|
|
43027
|
+
'x-fern-sdk-method-name': 'get',
|
|
43028
|
+
'x-fern-sdk-return-value': 'instant_key',
|
|
43029
|
+
'x-response-key': 'instant_key',
|
|
43030
|
+
'x-title': 'Get an Instant Key',
|
|
43031
|
+
},
|
|
43032
|
+
},
|
|
42815
43033
|
'/instant_keys/list': {
|
|
42816
43034
|
get: {
|
|
42817
43035
|
description:
|
|
@@ -56928,21 +57146,57 @@ export default {
|
|
|
56928
57146
|
schema: {
|
|
56929
57147
|
properties: {
|
|
56930
57148
|
batch: {
|
|
56931
|
-
description: '
|
|
57149
|
+
description: 'A batch of workspace resources.',
|
|
56932
57150
|
properties: {
|
|
57151
|
+
acs_access_groups: {
|
|
57152
|
+
items: {
|
|
57153
|
+
$ref: '#/components/schemas/acs_access_group',
|
|
57154
|
+
},
|
|
57155
|
+
type: 'array',
|
|
57156
|
+
},
|
|
57157
|
+
acs_encoders: {
|
|
57158
|
+
items: { $ref: '#/components/schemas/acs_encoder' },
|
|
57159
|
+
type: 'array',
|
|
57160
|
+
},
|
|
56933
57161
|
acs_entrances: {
|
|
56934
57162
|
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
56935
57163
|
type: 'array',
|
|
56936
57164
|
},
|
|
57165
|
+
acs_systems: {
|
|
57166
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
57167
|
+
type: 'array',
|
|
57168
|
+
},
|
|
57169
|
+
acs_users: {
|
|
57170
|
+
items: { $ref: '#/components/schemas/acs_user' },
|
|
57171
|
+
type: 'array',
|
|
57172
|
+
},
|
|
57173
|
+
action_attempts: {
|
|
57174
|
+
items: {
|
|
57175
|
+
$ref: '#/components/schemas/action_attempt',
|
|
57176
|
+
},
|
|
57177
|
+
type: 'array',
|
|
57178
|
+
},
|
|
56937
57179
|
batch_type: {
|
|
56938
57180
|
enum: [
|
|
56939
57181
|
'workspaces',
|
|
57182
|
+
'spaces',
|
|
56940
57183
|
'access_grants',
|
|
56941
57184
|
'access_methods',
|
|
56942
|
-
'spaces',
|
|
56943
57185
|
],
|
|
56944
57186
|
type: 'string',
|
|
56945
57187
|
},
|
|
57188
|
+
client_sessions: {
|
|
57189
|
+
items: {
|
|
57190
|
+
$ref: '#/components/schemas/client_session',
|
|
57191
|
+
},
|
|
57192
|
+
type: 'array',
|
|
57193
|
+
},
|
|
57194
|
+
connect_webviews: {
|
|
57195
|
+
items: {
|
|
57196
|
+
$ref: '#/components/schemas/connect_webview',
|
|
57197
|
+
},
|
|
57198
|
+
type: 'array',
|
|
57199
|
+
},
|
|
56946
57200
|
devices: {
|
|
56947
57201
|
items: { $ref: '#/components/schemas/device' },
|
|
56948
57202
|
type: 'array',
|
|
@@ -56951,6 +57205,24 @@ export default {
|
|
|
56951
57205
|
items: { $ref: '#/components/schemas/space' },
|
|
56952
57206
|
type: 'array',
|
|
56953
57207
|
},
|
|
57208
|
+
unmanaged_acs_access_groups: {
|
|
57209
|
+
items: {
|
|
57210
|
+
$ref: '#/components/schemas/unmanaged_acs_access_group',
|
|
57211
|
+
},
|
|
57212
|
+
type: 'array',
|
|
57213
|
+
},
|
|
57214
|
+
unmanaged_acs_users: {
|
|
57215
|
+
items: {
|
|
57216
|
+
$ref: '#/components/schemas/unmanaged_acs_user',
|
|
57217
|
+
},
|
|
57218
|
+
type: 'array',
|
|
57219
|
+
},
|
|
57220
|
+
unmanaged_devices: {
|
|
57221
|
+
items: {
|
|
57222
|
+
$ref: '#/components/schemas/unmanaged_device',
|
|
57223
|
+
},
|
|
57224
|
+
type: 'array',
|
|
57225
|
+
},
|
|
56954
57226
|
user_identities: {
|
|
56955
57227
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
56956
57228
|
type: 'array',
|
|
@@ -56962,7 +57234,6 @@ export default {
|
|
|
56962
57234
|
},
|
|
56963
57235
|
required: ['batch_type'],
|
|
56964
57236
|
type: 'object',
|
|
56965
|
-
'x-route-path': '/',
|
|
56966
57237
|
},
|
|
56967
57238
|
ok: { type: 'boolean' },
|
|
56968
57239
|
},
|
|
@@ -57009,21 +57280,57 @@ export default {
|
|
|
57009
57280
|
schema: {
|
|
57010
57281
|
properties: {
|
|
57011
57282
|
batch: {
|
|
57012
|
-
description: '
|
|
57283
|
+
description: 'A batch of workspace resources.',
|
|
57013
57284
|
properties: {
|
|
57285
|
+
acs_access_groups: {
|
|
57286
|
+
items: {
|
|
57287
|
+
$ref: '#/components/schemas/acs_access_group',
|
|
57288
|
+
},
|
|
57289
|
+
type: 'array',
|
|
57290
|
+
},
|
|
57291
|
+
acs_encoders: {
|
|
57292
|
+
items: { $ref: '#/components/schemas/acs_encoder' },
|
|
57293
|
+
type: 'array',
|
|
57294
|
+
},
|
|
57014
57295
|
acs_entrances: {
|
|
57015
57296
|
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
57016
57297
|
type: 'array',
|
|
57017
57298
|
},
|
|
57299
|
+
acs_systems: {
|
|
57300
|
+
items: { $ref: '#/components/schemas/acs_system' },
|
|
57301
|
+
type: 'array',
|
|
57302
|
+
},
|
|
57303
|
+
acs_users: {
|
|
57304
|
+
items: { $ref: '#/components/schemas/acs_user' },
|
|
57305
|
+
type: 'array',
|
|
57306
|
+
},
|
|
57307
|
+
action_attempts: {
|
|
57308
|
+
items: {
|
|
57309
|
+
$ref: '#/components/schemas/action_attempt',
|
|
57310
|
+
},
|
|
57311
|
+
type: 'array',
|
|
57312
|
+
},
|
|
57018
57313
|
batch_type: {
|
|
57019
57314
|
enum: [
|
|
57020
57315
|
'workspaces',
|
|
57316
|
+
'spaces',
|
|
57021
57317
|
'access_grants',
|
|
57022
57318
|
'access_methods',
|
|
57023
|
-
'spaces',
|
|
57024
57319
|
],
|
|
57025
57320
|
type: 'string',
|
|
57026
57321
|
},
|
|
57322
|
+
client_sessions: {
|
|
57323
|
+
items: {
|
|
57324
|
+
$ref: '#/components/schemas/client_session',
|
|
57325
|
+
},
|
|
57326
|
+
type: 'array',
|
|
57327
|
+
},
|
|
57328
|
+
connect_webviews: {
|
|
57329
|
+
items: {
|
|
57330
|
+
$ref: '#/components/schemas/connect_webview',
|
|
57331
|
+
},
|
|
57332
|
+
type: 'array',
|
|
57333
|
+
},
|
|
57027
57334
|
devices: {
|
|
57028
57335
|
items: { $ref: '#/components/schemas/device' },
|
|
57029
57336
|
type: 'array',
|
|
@@ -57032,6 +57339,24 @@ export default {
|
|
|
57032
57339
|
items: { $ref: '#/components/schemas/space' },
|
|
57033
57340
|
type: 'array',
|
|
57034
57341
|
},
|
|
57342
|
+
unmanaged_acs_access_groups: {
|
|
57343
|
+
items: {
|
|
57344
|
+
$ref: '#/components/schemas/unmanaged_acs_access_group',
|
|
57345
|
+
},
|
|
57346
|
+
type: 'array',
|
|
57347
|
+
},
|
|
57348
|
+
unmanaged_acs_users: {
|
|
57349
|
+
items: {
|
|
57350
|
+
$ref: '#/components/schemas/unmanaged_acs_user',
|
|
57351
|
+
},
|
|
57352
|
+
type: 'array',
|
|
57353
|
+
},
|
|
57354
|
+
unmanaged_devices: {
|
|
57355
|
+
items: {
|
|
57356
|
+
$ref: '#/components/schemas/unmanaged_device',
|
|
57357
|
+
},
|
|
57358
|
+
type: 'array',
|
|
57359
|
+
},
|
|
57035
57360
|
user_identities: {
|
|
57036
57361
|
items: { $ref: '#/components/schemas/user_identity' },
|
|
57037
57362
|
type: 'array',
|
|
@@ -57043,7 +57368,6 @@ export default {
|
|
|
57043
57368
|
},
|
|
57044
57369
|
required: ['batch_type'],
|
|
57045
57370
|
type: 'object',
|
|
57046
|
-
'x-route-path': '/',
|
|
57047
57371
|
},
|
|
57048
57372
|
ok: { type: 'boolean' },
|
|
57049
57373
|
},
|