@seamapi/types 1.469.0 → 1.470.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 +0 -849
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +0 -1396
- package/dist/index.cjs +0 -849
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/openapi.d.ts +0 -1083
- package/lib/seam/connect/openapi.js +0 -849
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -313
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +0 -875
- package/src/lib/seam/connect/route-types.ts +0 -318
|
@@ -53294,881 +53294,6 @@ export default {
|
|
|
53294
53294
|
'x-title': 'Update the Thermostat Weekly Program',
|
|
53295
53295
|
},
|
|
53296
53296
|
},
|
|
53297
|
-
'/unstable_access_grants/create': {
|
|
53298
|
-
post: {
|
|
53299
|
-
description: 'Creates a new access grant.',
|
|
53300
|
-
operationId: 'unstableAccessGrantsCreatePost',
|
|
53301
|
-
requestBody: {
|
|
53302
|
-
content: {
|
|
53303
|
-
'application/json': {
|
|
53304
|
-
schema: {
|
|
53305
|
-
allOf: [
|
|
53306
|
-
{
|
|
53307
|
-
oneOf: [
|
|
53308
|
-
{
|
|
53309
|
-
properties: {
|
|
53310
|
-
user_identity_id: {
|
|
53311
|
-
description:
|
|
53312
|
-
'ID of user identity for whom you want to grant access.',
|
|
53313
|
-
format: 'uuid',
|
|
53314
|
-
type: 'string',
|
|
53315
|
-
},
|
|
53316
|
-
},
|
|
53317
|
-
required: ['user_identity_id'],
|
|
53318
|
-
type: 'object',
|
|
53319
|
-
},
|
|
53320
|
-
{
|
|
53321
|
-
properties: {
|
|
53322
|
-
user_identity: {
|
|
53323
|
-
description:
|
|
53324
|
-
'User identity. When used, creates a new user identity with the specified details and grants them access.',
|
|
53325
|
-
properties: {
|
|
53326
|
-
email_address: {
|
|
53327
|
-
description:
|
|
53328
|
-
'Unique email address for the user identity.',
|
|
53329
|
-
format: 'email',
|
|
53330
|
-
nullable: true,
|
|
53331
|
-
type: 'string',
|
|
53332
|
-
},
|
|
53333
|
-
full_name: {
|
|
53334
|
-
minLength: 1,
|
|
53335
|
-
nullable: true,
|
|
53336
|
-
type: 'string',
|
|
53337
|
-
},
|
|
53338
|
-
phone_number: {
|
|
53339
|
-
description:
|
|
53340
|
-
'Unique phone number for the user identity in [E.164 format](https://www.itu.int/rec/T-REC-E.164/en) (for example, +15555550100).',
|
|
53341
|
-
nullable: true,
|
|
53342
|
-
type: 'string',
|
|
53343
|
-
},
|
|
53344
|
-
},
|
|
53345
|
-
type: 'object',
|
|
53346
|
-
},
|
|
53347
|
-
},
|
|
53348
|
-
required: ['user_identity'],
|
|
53349
|
-
type: 'object',
|
|
53350
|
-
},
|
|
53351
|
-
],
|
|
53352
|
-
},
|
|
53353
|
-
{
|
|
53354
|
-
properties: {
|
|
53355
|
-
acs_entrance_ids: {
|
|
53356
|
-
default: [],
|
|
53357
|
-
description:
|
|
53358
|
-
'IDs of the [entrances](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) to which you want to grant access.',
|
|
53359
|
-
items: { format: 'uuid', type: 'string' },
|
|
53360
|
-
type: 'array',
|
|
53361
|
-
},
|
|
53362
|
-
device_ids: {
|
|
53363
|
-
default: [],
|
|
53364
|
-
description:
|
|
53365
|
-
'IDs of the devices to which you want to grant access.',
|
|
53366
|
-
items: { format: 'uuid', type: 'string' },
|
|
53367
|
-
type: 'array',
|
|
53368
|
-
},
|
|
53369
|
-
ends_at: {
|
|
53370
|
-
description:
|
|
53371
|
-
'Date and time at which the validity of the new grant ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. Must be a time in the future and after `starts_at`.',
|
|
53372
|
-
format: 'date-time',
|
|
53373
|
-
type: 'string',
|
|
53374
|
-
},
|
|
53375
|
-
location: {
|
|
53376
|
-
description:
|
|
53377
|
-
'Location. When used, creates a new location with the specified entrances and devices, and gives the user access to this location.',
|
|
53378
|
-
properties: {
|
|
53379
|
-
acs_entrance_ids: {
|
|
53380
|
-
default: [],
|
|
53381
|
-
deprecated: true,
|
|
53382
|
-
items: { format: 'uuid', type: 'string' },
|
|
53383
|
-
type: 'array',
|
|
53384
|
-
'x-deprecated':
|
|
53385
|
-
'Use `acs_entrance_ids` at the top level.',
|
|
53386
|
-
},
|
|
53387
|
-
device_ids: {
|
|
53388
|
-
default: [],
|
|
53389
|
-
deprecated: true,
|
|
53390
|
-
items: { format: 'uuid', type: 'string' },
|
|
53391
|
-
type: 'array',
|
|
53392
|
-
'x-deprecated':
|
|
53393
|
-
'Use `device_ids` at the top level.',
|
|
53394
|
-
},
|
|
53395
|
-
name: {
|
|
53396
|
-
description: 'Name of the location.',
|
|
53397
|
-
type: 'string',
|
|
53398
|
-
},
|
|
53399
|
-
},
|
|
53400
|
-
type: 'object',
|
|
53401
|
-
},
|
|
53402
|
-
location_ids: {
|
|
53403
|
-
deprecated: true,
|
|
53404
|
-
items: { format: 'uuid', type: 'string' },
|
|
53405
|
-
type: 'array',
|
|
53406
|
-
'x-deprecated': 'Use `space_ids`.',
|
|
53407
|
-
},
|
|
53408
|
-
requested_access_methods: {
|
|
53409
|
-
items: {
|
|
53410
|
-
properties: {
|
|
53411
|
-
mode: {
|
|
53412
|
-
description: 'Access method mode.',
|
|
53413
|
-
enum: ['code', 'card', 'mobile_key'],
|
|
53414
|
-
type: 'string',
|
|
53415
|
-
},
|
|
53416
|
-
},
|
|
53417
|
-
required: ['mode'],
|
|
53418
|
-
type: 'object',
|
|
53419
|
-
},
|
|
53420
|
-
type: 'array',
|
|
53421
|
-
},
|
|
53422
|
-
space_ids: {
|
|
53423
|
-
description:
|
|
53424
|
-
'IDs of the existing spaces to which you want to grant access.',
|
|
53425
|
-
items: { format: 'uuid', type: 'string' },
|
|
53426
|
-
type: 'array',
|
|
53427
|
-
},
|
|
53428
|
-
starts_at: {
|
|
53429
|
-
description:
|
|
53430
|
-
'Date and time at which the validity of the new grant starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
|
|
53431
|
-
format: 'date-time',
|
|
53432
|
-
type: 'string',
|
|
53433
|
-
},
|
|
53434
|
-
},
|
|
53435
|
-
required: ['requested_access_methods'],
|
|
53436
|
-
type: 'object',
|
|
53437
|
-
},
|
|
53438
|
-
],
|
|
53439
|
-
},
|
|
53440
|
-
},
|
|
53441
|
-
},
|
|
53442
|
-
},
|
|
53443
|
-
responses: {
|
|
53444
|
-
200: {
|
|
53445
|
-
content: {
|
|
53446
|
-
'application/json': {
|
|
53447
|
-
schema: {
|
|
53448
|
-
properties: {
|
|
53449
|
-
access_grant: { $ref: '#/components/schemas/access_grant' },
|
|
53450
|
-
ok: { type: 'boolean' },
|
|
53451
|
-
},
|
|
53452
|
-
required: ['access_grant', 'ok'],
|
|
53453
|
-
type: 'object',
|
|
53454
|
-
},
|
|
53455
|
-
},
|
|
53456
|
-
},
|
|
53457
|
-
description: 'OK',
|
|
53458
|
-
},
|
|
53459
|
-
400: { description: 'Bad Request' },
|
|
53460
|
-
401: { description: 'Unauthorized' },
|
|
53461
|
-
},
|
|
53462
|
-
security: [
|
|
53463
|
-
{ pat_with_workspace: [] },
|
|
53464
|
-
{ console_session_with_workspace: [] },
|
|
53465
|
-
{ api_key: [] },
|
|
53466
|
-
{ client_session_with_customer: [] },
|
|
53467
|
-
],
|
|
53468
|
-
summary: '/unstable_access_grants/create',
|
|
53469
|
-
tags: [],
|
|
53470
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53471
|
-
'x-fern-sdk-method-name': 'create',
|
|
53472
|
-
'x-fern-sdk-return-value': 'access_grant',
|
|
53473
|
-
'x-response-key': 'access_grant',
|
|
53474
|
-
'x-title': 'Create an Access Grant',
|
|
53475
|
-
'x-undocumented': 'Unreleased.',
|
|
53476
|
-
},
|
|
53477
|
-
},
|
|
53478
|
-
'/unstable_access_grants/delete': {
|
|
53479
|
-
delete: {
|
|
53480
|
-
description: 'Deletes an access grant.',
|
|
53481
|
-
operationId: 'unstableAccessGrantsDeleteDelete',
|
|
53482
|
-
parameters: [
|
|
53483
|
-
{
|
|
53484
|
-
in: 'query',
|
|
53485
|
-
name: 'access_grant_id',
|
|
53486
|
-
required: true,
|
|
53487
|
-
schema: {
|
|
53488
|
-
description: 'ID of access grant that you want to delete.',
|
|
53489
|
-
format: 'uuid',
|
|
53490
|
-
type: 'string',
|
|
53491
|
-
},
|
|
53492
|
-
},
|
|
53493
|
-
],
|
|
53494
|
-
responses: {
|
|
53495
|
-
200: {
|
|
53496
|
-
content: {
|
|
53497
|
-
'application/json': {
|
|
53498
|
-
schema: {
|
|
53499
|
-
properties: { ok: { type: 'boolean' } },
|
|
53500
|
-
required: ['ok'],
|
|
53501
|
-
type: 'object',
|
|
53502
|
-
},
|
|
53503
|
-
},
|
|
53504
|
-
},
|
|
53505
|
-
description: 'OK',
|
|
53506
|
-
},
|
|
53507
|
-
400: { description: 'Bad Request' },
|
|
53508
|
-
401: { description: 'Unauthorized' },
|
|
53509
|
-
},
|
|
53510
|
-
security: [
|
|
53511
|
-
{ pat_with_workspace: [] },
|
|
53512
|
-
{ console_session_with_workspace: [] },
|
|
53513
|
-
{ api_key: [] },
|
|
53514
|
-
{ client_session_with_customer: [] },
|
|
53515
|
-
],
|
|
53516
|
-
summary: '/unstable_access_grants/delete',
|
|
53517
|
-
tags: [],
|
|
53518
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53519
|
-
'x-fern-sdk-method-name': 'delete',
|
|
53520
|
-
'x-response-key': null,
|
|
53521
|
-
'x-title': 'Delete an Access Grant',
|
|
53522
|
-
'x-undocumented': 'Unreleased.',
|
|
53523
|
-
},
|
|
53524
|
-
post: {
|
|
53525
|
-
description: 'Deletes an access grant.',
|
|
53526
|
-
operationId: 'unstableAccessGrantsDeletePost',
|
|
53527
|
-
requestBody: {
|
|
53528
|
-
content: {
|
|
53529
|
-
'application/json': {
|
|
53530
|
-
schema: {
|
|
53531
|
-
properties: {
|
|
53532
|
-
access_grant_id: {
|
|
53533
|
-
description: 'ID of access grant that you want to delete.',
|
|
53534
|
-
format: 'uuid',
|
|
53535
|
-
type: 'string',
|
|
53536
|
-
},
|
|
53537
|
-
},
|
|
53538
|
-
required: ['access_grant_id'],
|
|
53539
|
-
type: 'object',
|
|
53540
|
-
},
|
|
53541
|
-
},
|
|
53542
|
-
},
|
|
53543
|
-
},
|
|
53544
|
-
responses: {
|
|
53545
|
-
200: {
|
|
53546
|
-
content: {
|
|
53547
|
-
'application/json': {
|
|
53548
|
-
schema: {
|
|
53549
|
-
properties: { ok: { type: 'boolean' } },
|
|
53550
|
-
required: ['ok'],
|
|
53551
|
-
type: 'object',
|
|
53552
|
-
},
|
|
53553
|
-
},
|
|
53554
|
-
},
|
|
53555
|
-
description: 'OK',
|
|
53556
|
-
},
|
|
53557
|
-
400: { description: 'Bad Request' },
|
|
53558
|
-
401: { description: 'Unauthorized' },
|
|
53559
|
-
},
|
|
53560
|
-
security: [
|
|
53561
|
-
{ pat_with_workspace: [] },
|
|
53562
|
-
{ console_session_with_workspace: [] },
|
|
53563
|
-
{ api_key: [] },
|
|
53564
|
-
{ client_session_with_customer: [] },
|
|
53565
|
-
],
|
|
53566
|
-
summary: '/unstable_access_grants/delete',
|
|
53567
|
-
tags: [],
|
|
53568
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53569
|
-
'x-fern-sdk-method-name': 'delete',
|
|
53570
|
-
'x-response-key': null,
|
|
53571
|
-
'x-title': 'Delete an Access Grant',
|
|
53572
|
-
'x-undocumented': 'Unreleased.',
|
|
53573
|
-
},
|
|
53574
|
-
},
|
|
53575
|
-
'/unstable_access_grants/get': {
|
|
53576
|
-
get: {
|
|
53577
|
-
description: 'Gets an access grant.',
|
|
53578
|
-
operationId: 'unstableAccessGrantsGetGet',
|
|
53579
|
-
parameters: [
|
|
53580
|
-
{
|
|
53581
|
-
in: 'query',
|
|
53582
|
-
name: 'access_grant_id',
|
|
53583
|
-
required: true,
|
|
53584
|
-
schema: {
|
|
53585
|
-
description: 'ID of access grant that you want to get.',
|
|
53586
|
-
format: 'uuid',
|
|
53587
|
-
type: 'string',
|
|
53588
|
-
},
|
|
53589
|
-
},
|
|
53590
|
-
],
|
|
53591
|
-
responses: {
|
|
53592
|
-
200: {
|
|
53593
|
-
content: {
|
|
53594
|
-
'application/json': {
|
|
53595
|
-
schema: {
|
|
53596
|
-
properties: {
|
|
53597
|
-
access_grant: { $ref: '#/components/schemas/access_grant' },
|
|
53598
|
-
ok: { type: 'boolean' },
|
|
53599
|
-
},
|
|
53600
|
-
required: ['access_grant', 'ok'],
|
|
53601
|
-
type: 'object',
|
|
53602
|
-
},
|
|
53603
|
-
},
|
|
53604
|
-
},
|
|
53605
|
-
description: 'OK',
|
|
53606
|
-
},
|
|
53607
|
-
400: { description: 'Bad Request' },
|
|
53608
|
-
401: { description: 'Unauthorized' },
|
|
53609
|
-
},
|
|
53610
|
-
security: [
|
|
53611
|
-
{ pat_with_workspace: [] },
|
|
53612
|
-
{ console_session_with_workspace: [] },
|
|
53613
|
-
{ api_key: [] },
|
|
53614
|
-
{ client_session_with_customer: [] },
|
|
53615
|
-
],
|
|
53616
|
-
summary: '/unstable_access_grants/get',
|
|
53617
|
-
tags: [],
|
|
53618
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53619
|
-
'x-fern-sdk-method-name': 'get',
|
|
53620
|
-
'x-fern-sdk-return-value': 'access_grant',
|
|
53621
|
-
'x-response-key': 'access_grant',
|
|
53622
|
-
'x-title': 'Get an Access Grant',
|
|
53623
|
-
'x-undocumented': 'Unreleased.',
|
|
53624
|
-
},
|
|
53625
|
-
post: {
|
|
53626
|
-
description: 'Gets an access grant.',
|
|
53627
|
-
operationId: 'unstableAccessGrantsGetPost',
|
|
53628
|
-
requestBody: {
|
|
53629
|
-
content: {
|
|
53630
|
-
'application/json': {
|
|
53631
|
-
schema: {
|
|
53632
|
-
properties: {
|
|
53633
|
-
access_grant_id: {
|
|
53634
|
-
description: 'ID of access grant that you want to get.',
|
|
53635
|
-
format: 'uuid',
|
|
53636
|
-
type: 'string',
|
|
53637
|
-
},
|
|
53638
|
-
},
|
|
53639
|
-
required: ['access_grant_id'],
|
|
53640
|
-
type: 'object',
|
|
53641
|
-
},
|
|
53642
|
-
},
|
|
53643
|
-
},
|
|
53644
|
-
},
|
|
53645
|
-
responses: {
|
|
53646
|
-
200: {
|
|
53647
|
-
content: {
|
|
53648
|
-
'application/json': {
|
|
53649
|
-
schema: {
|
|
53650
|
-
properties: {
|
|
53651
|
-
access_grant: { $ref: '#/components/schemas/access_grant' },
|
|
53652
|
-
ok: { type: 'boolean' },
|
|
53653
|
-
},
|
|
53654
|
-
required: ['access_grant', 'ok'],
|
|
53655
|
-
type: 'object',
|
|
53656
|
-
},
|
|
53657
|
-
},
|
|
53658
|
-
},
|
|
53659
|
-
description: 'OK',
|
|
53660
|
-
},
|
|
53661
|
-
400: { description: 'Bad Request' },
|
|
53662
|
-
401: { description: 'Unauthorized' },
|
|
53663
|
-
},
|
|
53664
|
-
security: [
|
|
53665
|
-
{ pat_with_workspace: [] },
|
|
53666
|
-
{ console_session_with_workspace: [] },
|
|
53667
|
-
{ api_key: [] },
|
|
53668
|
-
{ client_session_with_customer: [] },
|
|
53669
|
-
],
|
|
53670
|
-
summary: '/unstable_access_grants/get',
|
|
53671
|
-
tags: [],
|
|
53672
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53673
|
-
'x-fern-sdk-method-name': 'get',
|
|
53674
|
-
'x-fern-sdk-return-value': 'access_grant',
|
|
53675
|
-
'x-response-key': 'access_grant',
|
|
53676
|
-
'x-title': 'Get an Access Grant',
|
|
53677
|
-
'x-undocumented': 'Unreleased.',
|
|
53678
|
-
},
|
|
53679
|
-
},
|
|
53680
|
-
'/unstable_access_grants/list': {
|
|
53681
|
-
get: {
|
|
53682
|
-
description: 'Returns a list of all access grants.',
|
|
53683
|
-
operationId: 'unstableAccessGrantsListGet',
|
|
53684
|
-
parameters: [
|
|
53685
|
-
{
|
|
53686
|
-
in: 'query',
|
|
53687
|
-
name: 'user_identity_id',
|
|
53688
|
-
schema: {
|
|
53689
|
-
description:
|
|
53690
|
-
'ID of the user identity by which you want to filter the list of access grants.',
|
|
53691
|
-
format: 'uuid',
|
|
53692
|
-
type: 'string',
|
|
53693
|
-
},
|
|
53694
|
-
},
|
|
53695
|
-
{
|
|
53696
|
-
in: 'query',
|
|
53697
|
-
name: 'acs_system_id',
|
|
53698
|
-
schema: {
|
|
53699
|
-
description:
|
|
53700
|
-
'ID of the access system by which you want to filter the list of access grants.',
|
|
53701
|
-
format: 'uuid',
|
|
53702
|
-
type: 'string',
|
|
53703
|
-
},
|
|
53704
|
-
},
|
|
53705
|
-
{
|
|
53706
|
-
in: 'query',
|
|
53707
|
-
name: 'acs_entrance_id',
|
|
53708
|
-
schema: {
|
|
53709
|
-
description:
|
|
53710
|
-
'ID of the entrance by which you want to filter the list of access grants.',
|
|
53711
|
-
format: 'uuid',
|
|
53712
|
-
type: 'string',
|
|
53713
|
-
},
|
|
53714
|
-
},
|
|
53715
|
-
{
|
|
53716
|
-
in: 'query',
|
|
53717
|
-
name: 'location_id',
|
|
53718
|
-
schema: {
|
|
53719
|
-
deprecated: true,
|
|
53720
|
-
format: 'uuid',
|
|
53721
|
-
type: 'string',
|
|
53722
|
-
'x-deprecated': 'Use `space_id`.',
|
|
53723
|
-
},
|
|
53724
|
-
},
|
|
53725
|
-
{
|
|
53726
|
-
in: 'query',
|
|
53727
|
-
name: 'space_id',
|
|
53728
|
-
schema: {
|
|
53729
|
-
description:
|
|
53730
|
-
'ID of the space by which you want to filter the list of access grants.',
|
|
53731
|
-
format: 'uuid',
|
|
53732
|
-
type: 'string',
|
|
53733
|
-
},
|
|
53734
|
-
},
|
|
53735
|
-
],
|
|
53736
|
-
responses: {
|
|
53737
|
-
200: {
|
|
53738
|
-
content: {
|
|
53739
|
-
'application/json': {
|
|
53740
|
-
schema: {
|
|
53741
|
-
properties: {
|
|
53742
|
-
access_grants: {
|
|
53743
|
-
items: { $ref: '#/components/schemas/access_grant' },
|
|
53744
|
-
type: 'array',
|
|
53745
|
-
},
|
|
53746
|
-
ok: { type: 'boolean' },
|
|
53747
|
-
},
|
|
53748
|
-
required: ['access_grants', 'ok'],
|
|
53749
|
-
type: 'object',
|
|
53750
|
-
},
|
|
53751
|
-
},
|
|
53752
|
-
},
|
|
53753
|
-
description: 'OK',
|
|
53754
|
-
},
|
|
53755
|
-
400: { description: 'Bad Request' },
|
|
53756
|
-
401: { description: 'Unauthorized' },
|
|
53757
|
-
},
|
|
53758
|
-
security: [
|
|
53759
|
-
{ pat_with_workspace: [] },
|
|
53760
|
-
{ console_session_with_workspace: [] },
|
|
53761
|
-
{ api_key: [] },
|
|
53762
|
-
{ client_session_with_customer: [] },
|
|
53763
|
-
],
|
|
53764
|
-
summary: '/unstable_access_grants/list',
|
|
53765
|
-
tags: [],
|
|
53766
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53767
|
-
'x-fern-sdk-method-name': 'list',
|
|
53768
|
-
'x-fern-sdk-return-value': 'access_grants',
|
|
53769
|
-
'x-response-key': 'access_grants',
|
|
53770
|
-
'x-title': 'List Access Grants',
|
|
53771
|
-
'x-undocumented': 'Unreleased.',
|
|
53772
|
-
},
|
|
53773
|
-
post: {
|
|
53774
|
-
description: 'Returns a list of all access grants.',
|
|
53775
|
-
operationId: 'unstableAccessGrantsListPost',
|
|
53776
|
-
requestBody: {
|
|
53777
|
-
content: {
|
|
53778
|
-
'application/json': {
|
|
53779
|
-
schema: {
|
|
53780
|
-
properties: {
|
|
53781
|
-
acs_entrance_id: {
|
|
53782
|
-
description:
|
|
53783
|
-
'ID of the entrance by which you want to filter the list of access grants.',
|
|
53784
|
-
format: 'uuid',
|
|
53785
|
-
type: 'string',
|
|
53786
|
-
},
|
|
53787
|
-
acs_system_id: {
|
|
53788
|
-
description:
|
|
53789
|
-
'ID of the access system by which you want to filter the list of access grants.',
|
|
53790
|
-
format: 'uuid',
|
|
53791
|
-
type: 'string',
|
|
53792
|
-
},
|
|
53793
|
-
location_id: {
|
|
53794
|
-
deprecated: true,
|
|
53795
|
-
format: 'uuid',
|
|
53796
|
-
type: 'string',
|
|
53797
|
-
'x-deprecated': 'Use `space_id`.',
|
|
53798
|
-
},
|
|
53799
|
-
space_id: {
|
|
53800
|
-
description:
|
|
53801
|
-
'ID of the space by which you want to filter the list of access grants.',
|
|
53802
|
-
format: 'uuid',
|
|
53803
|
-
type: 'string',
|
|
53804
|
-
},
|
|
53805
|
-
user_identity_id: {
|
|
53806
|
-
description:
|
|
53807
|
-
'ID of the user identity by which you want to filter the list of access grants.',
|
|
53808
|
-
format: 'uuid',
|
|
53809
|
-
type: 'string',
|
|
53810
|
-
},
|
|
53811
|
-
},
|
|
53812
|
-
type: 'object',
|
|
53813
|
-
},
|
|
53814
|
-
},
|
|
53815
|
-
},
|
|
53816
|
-
},
|
|
53817
|
-
responses: {
|
|
53818
|
-
200: {
|
|
53819
|
-
content: {
|
|
53820
|
-
'application/json': {
|
|
53821
|
-
schema: {
|
|
53822
|
-
properties: {
|
|
53823
|
-
access_grants: {
|
|
53824
|
-
items: { $ref: '#/components/schemas/access_grant' },
|
|
53825
|
-
type: 'array',
|
|
53826
|
-
},
|
|
53827
|
-
ok: { type: 'boolean' },
|
|
53828
|
-
},
|
|
53829
|
-
required: ['access_grants', 'ok'],
|
|
53830
|
-
type: 'object',
|
|
53831
|
-
},
|
|
53832
|
-
},
|
|
53833
|
-
},
|
|
53834
|
-
description: 'OK',
|
|
53835
|
-
},
|
|
53836
|
-
400: { description: 'Bad Request' },
|
|
53837
|
-
401: { description: 'Unauthorized' },
|
|
53838
|
-
},
|
|
53839
|
-
security: [
|
|
53840
|
-
{ pat_with_workspace: [] },
|
|
53841
|
-
{ console_session_with_workspace: [] },
|
|
53842
|
-
{ api_key: [] },
|
|
53843
|
-
{ client_session_with_customer: [] },
|
|
53844
|
-
],
|
|
53845
|
-
summary: '/unstable_access_grants/list',
|
|
53846
|
-
tags: [],
|
|
53847
|
-
'x-fern-sdk-group-name': ['unstable_access_grants'],
|
|
53848
|
-
'x-fern-sdk-method-name': 'list',
|
|
53849
|
-
'x-fern-sdk-return-value': 'access_grants',
|
|
53850
|
-
'x-response-key': 'access_grants',
|
|
53851
|
-
'x-title': 'List Access Grants',
|
|
53852
|
-
'x-undocumented': 'Unreleased.',
|
|
53853
|
-
},
|
|
53854
|
-
},
|
|
53855
|
-
'/unstable_access_methods/delete': {
|
|
53856
|
-
delete: {
|
|
53857
|
-
description: 'Deletes an access method.',
|
|
53858
|
-
operationId: 'unstableAccessMethodsDeleteDelete',
|
|
53859
|
-
parameters: [
|
|
53860
|
-
{
|
|
53861
|
-
in: 'query',
|
|
53862
|
-
name: 'access_method_id',
|
|
53863
|
-
required: true,
|
|
53864
|
-
schema: {
|
|
53865
|
-
description: 'ID of the access method that you want to delete.',
|
|
53866
|
-
format: 'uuid',
|
|
53867
|
-
type: 'string',
|
|
53868
|
-
},
|
|
53869
|
-
},
|
|
53870
|
-
],
|
|
53871
|
-
responses: {
|
|
53872
|
-
200: {
|
|
53873
|
-
content: {
|
|
53874
|
-
'application/json': {
|
|
53875
|
-
schema: {
|
|
53876
|
-
properties: { ok: { type: 'boolean' } },
|
|
53877
|
-
required: ['ok'],
|
|
53878
|
-
type: 'object',
|
|
53879
|
-
},
|
|
53880
|
-
},
|
|
53881
|
-
},
|
|
53882
|
-
description: 'OK',
|
|
53883
|
-
},
|
|
53884
|
-
400: { description: 'Bad Request' },
|
|
53885
|
-
401: { description: 'Unauthorized' },
|
|
53886
|
-
},
|
|
53887
|
-
security: [
|
|
53888
|
-
{ pat_with_workspace: [] },
|
|
53889
|
-
{ console_session_with_workspace: [] },
|
|
53890
|
-
{ api_key: [] },
|
|
53891
|
-
],
|
|
53892
|
-
summary: '/unstable_access_methods/delete',
|
|
53893
|
-
tags: [],
|
|
53894
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
53895
|
-
'x-fern-sdk-method-name': 'delete',
|
|
53896
|
-
'x-response-key': null,
|
|
53897
|
-
'x-title': 'Delete an Access Method',
|
|
53898
|
-
'x-undocumented': 'Unreleased.',
|
|
53899
|
-
},
|
|
53900
|
-
post: {
|
|
53901
|
-
description: 'Deletes an access method.',
|
|
53902
|
-
operationId: 'unstableAccessMethodsDeletePost',
|
|
53903
|
-
requestBody: {
|
|
53904
|
-
content: {
|
|
53905
|
-
'application/json': {
|
|
53906
|
-
schema: {
|
|
53907
|
-
properties: {
|
|
53908
|
-
access_method_id: {
|
|
53909
|
-
description:
|
|
53910
|
-
'ID of the access method that you want to delete.',
|
|
53911
|
-
format: 'uuid',
|
|
53912
|
-
type: 'string',
|
|
53913
|
-
},
|
|
53914
|
-
},
|
|
53915
|
-
required: ['access_method_id'],
|
|
53916
|
-
type: 'object',
|
|
53917
|
-
},
|
|
53918
|
-
},
|
|
53919
|
-
},
|
|
53920
|
-
},
|
|
53921
|
-
responses: {
|
|
53922
|
-
200: {
|
|
53923
|
-
content: {
|
|
53924
|
-
'application/json': {
|
|
53925
|
-
schema: {
|
|
53926
|
-
properties: { ok: { type: 'boolean' } },
|
|
53927
|
-
required: ['ok'],
|
|
53928
|
-
type: 'object',
|
|
53929
|
-
},
|
|
53930
|
-
},
|
|
53931
|
-
},
|
|
53932
|
-
description: 'OK',
|
|
53933
|
-
},
|
|
53934
|
-
400: { description: 'Bad Request' },
|
|
53935
|
-
401: { description: 'Unauthorized' },
|
|
53936
|
-
},
|
|
53937
|
-
security: [
|
|
53938
|
-
{ pat_with_workspace: [] },
|
|
53939
|
-
{ console_session_with_workspace: [] },
|
|
53940
|
-
{ api_key: [] },
|
|
53941
|
-
],
|
|
53942
|
-
summary: '/unstable_access_methods/delete',
|
|
53943
|
-
tags: [],
|
|
53944
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
53945
|
-
'x-fern-sdk-method-name': 'delete',
|
|
53946
|
-
'x-response-key': null,
|
|
53947
|
-
'x-title': 'Delete an Access Method',
|
|
53948
|
-
'x-undocumented': 'Unreleased.',
|
|
53949
|
-
},
|
|
53950
|
-
},
|
|
53951
|
-
'/unstable_access_methods/get': {
|
|
53952
|
-
get: {
|
|
53953
|
-
description: 'Gets an access method.',
|
|
53954
|
-
operationId: 'unstableAccessMethodsGetGet',
|
|
53955
|
-
parameters: [
|
|
53956
|
-
{
|
|
53957
|
-
in: 'query',
|
|
53958
|
-
name: 'access_method_id',
|
|
53959
|
-
required: true,
|
|
53960
|
-
schema: {
|
|
53961
|
-
description: 'ID of the access method that you want to get.',
|
|
53962
|
-
format: 'uuid',
|
|
53963
|
-
type: 'string',
|
|
53964
|
-
},
|
|
53965
|
-
},
|
|
53966
|
-
],
|
|
53967
|
-
responses: {
|
|
53968
|
-
200: {
|
|
53969
|
-
content: {
|
|
53970
|
-
'application/json': {
|
|
53971
|
-
schema: {
|
|
53972
|
-
properties: {
|
|
53973
|
-
access_method: {
|
|
53974
|
-
$ref: '#/components/schemas/access_method',
|
|
53975
|
-
},
|
|
53976
|
-
ok: { type: 'boolean' },
|
|
53977
|
-
},
|
|
53978
|
-
required: ['access_method', 'ok'],
|
|
53979
|
-
type: 'object',
|
|
53980
|
-
},
|
|
53981
|
-
},
|
|
53982
|
-
},
|
|
53983
|
-
description: 'OK',
|
|
53984
|
-
},
|
|
53985
|
-
400: { description: 'Bad Request' },
|
|
53986
|
-
401: { description: 'Unauthorized' },
|
|
53987
|
-
},
|
|
53988
|
-
security: [
|
|
53989
|
-
{ pat_with_workspace: [] },
|
|
53990
|
-
{ console_session_with_workspace: [] },
|
|
53991
|
-
{ api_key: [] },
|
|
53992
|
-
],
|
|
53993
|
-
summary: '/unstable_access_methods/get',
|
|
53994
|
-
tags: [],
|
|
53995
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
53996
|
-
'x-fern-sdk-method-name': 'get',
|
|
53997
|
-
'x-fern-sdk-return-value': 'access_method',
|
|
53998
|
-
'x-response-key': 'access_method',
|
|
53999
|
-
'x-title': 'Get an Access Method',
|
|
54000
|
-
'x-undocumented': 'Unreleased.',
|
|
54001
|
-
},
|
|
54002
|
-
post: {
|
|
54003
|
-
description: 'Gets an access method.',
|
|
54004
|
-
operationId: 'unstableAccessMethodsGetPost',
|
|
54005
|
-
requestBody: {
|
|
54006
|
-
content: {
|
|
54007
|
-
'application/json': {
|
|
54008
|
-
schema: {
|
|
54009
|
-
properties: {
|
|
54010
|
-
access_method_id: {
|
|
54011
|
-
description:
|
|
54012
|
-
'ID of the access method that you want to get.',
|
|
54013
|
-
format: 'uuid',
|
|
54014
|
-
type: 'string',
|
|
54015
|
-
},
|
|
54016
|
-
},
|
|
54017
|
-
required: ['access_method_id'],
|
|
54018
|
-
type: 'object',
|
|
54019
|
-
},
|
|
54020
|
-
},
|
|
54021
|
-
},
|
|
54022
|
-
},
|
|
54023
|
-
responses: {
|
|
54024
|
-
200: {
|
|
54025
|
-
content: {
|
|
54026
|
-
'application/json': {
|
|
54027
|
-
schema: {
|
|
54028
|
-
properties: {
|
|
54029
|
-
access_method: {
|
|
54030
|
-
$ref: '#/components/schemas/access_method',
|
|
54031
|
-
},
|
|
54032
|
-
ok: { type: 'boolean' },
|
|
54033
|
-
},
|
|
54034
|
-
required: ['access_method', 'ok'],
|
|
54035
|
-
type: 'object',
|
|
54036
|
-
},
|
|
54037
|
-
},
|
|
54038
|
-
},
|
|
54039
|
-
description: 'OK',
|
|
54040
|
-
},
|
|
54041
|
-
400: { description: 'Bad Request' },
|
|
54042
|
-
401: { description: 'Unauthorized' },
|
|
54043
|
-
},
|
|
54044
|
-
security: [
|
|
54045
|
-
{ pat_with_workspace: [] },
|
|
54046
|
-
{ console_session_with_workspace: [] },
|
|
54047
|
-
{ api_key: [] },
|
|
54048
|
-
],
|
|
54049
|
-
summary: '/unstable_access_methods/get',
|
|
54050
|
-
tags: [],
|
|
54051
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
54052
|
-
'x-fern-sdk-method-name': 'get',
|
|
54053
|
-
'x-fern-sdk-return-value': 'access_method',
|
|
54054
|
-
'x-response-key': 'access_method',
|
|
54055
|
-
'x-title': 'Get an Access Method',
|
|
54056
|
-
'x-undocumented': 'Unreleased.',
|
|
54057
|
-
},
|
|
54058
|
-
},
|
|
54059
|
-
'/unstable_access_methods/list': {
|
|
54060
|
-
get: {
|
|
54061
|
-
description:
|
|
54062
|
-
'Lists all access methods, usually filtered by access grant.',
|
|
54063
|
-
operationId: 'unstableAccessMethodsListGet',
|
|
54064
|
-
parameters: [
|
|
54065
|
-
{
|
|
54066
|
-
in: 'query',
|
|
54067
|
-
name: 'access_grant_id',
|
|
54068
|
-
required: true,
|
|
54069
|
-
schema: {
|
|
54070
|
-
description:
|
|
54071
|
-
'ID of the access grant by which to filter the list of access methods.',
|
|
54072
|
-
format: 'uuid',
|
|
54073
|
-
type: 'string',
|
|
54074
|
-
},
|
|
54075
|
-
},
|
|
54076
|
-
],
|
|
54077
|
-
responses: {
|
|
54078
|
-
200: {
|
|
54079
|
-
content: {
|
|
54080
|
-
'application/json': {
|
|
54081
|
-
schema: {
|
|
54082
|
-
properties: {
|
|
54083
|
-
access_methods: {
|
|
54084
|
-
items: { $ref: '#/components/schemas/access_method' },
|
|
54085
|
-
type: 'array',
|
|
54086
|
-
},
|
|
54087
|
-
ok: { type: 'boolean' },
|
|
54088
|
-
},
|
|
54089
|
-
required: ['access_methods', 'ok'],
|
|
54090
|
-
type: 'object',
|
|
54091
|
-
},
|
|
54092
|
-
},
|
|
54093
|
-
},
|
|
54094
|
-
description: 'OK',
|
|
54095
|
-
},
|
|
54096
|
-
400: { description: 'Bad Request' },
|
|
54097
|
-
401: { description: 'Unauthorized' },
|
|
54098
|
-
},
|
|
54099
|
-
security: [
|
|
54100
|
-
{ pat_with_workspace: [] },
|
|
54101
|
-
{ console_session_with_workspace: [] },
|
|
54102
|
-
{ api_key: [] },
|
|
54103
|
-
],
|
|
54104
|
-
summary: '/unstable_access_methods/list',
|
|
54105
|
-
tags: [],
|
|
54106
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
54107
|
-
'x-fern-sdk-method-name': 'list',
|
|
54108
|
-
'x-fern-sdk-return-value': 'access_methods',
|
|
54109
|
-
'x-response-key': 'access_methods',
|
|
54110
|
-
'x-title': 'List Access Methods',
|
|
54111
|
-
'x-undocumented': 'Unreleased.',
|
|
54112
|
-
},
|
|
54113
|
-
post: {
|
|
54114
|
-
description:
|
|
54115
|
-
'Lists all access methods, usually filtered by access grant.',
|
|
54116
|
-
operationId: 'unstableAccessMethodsListPost',
|
|
54117
|
-
requestBody: {
|
|
54118
|
-
content: {
|
|
54119
|
-
'application/json': {
|
|
54120
|
-
schema: {
|
|
54121
|
-
properties: {
|
|
54122
|
-
access_grant_id: {
|
|
54123
|
-
description:
|
|
54124
|
-
'ID of the access grant by which to filter the list of access methods.',
|
|
54125
|
-
format: 'uuid',
|
|
54126
|
-
type: 'string',
|
|
54127
|
-
},
|
|
54128
|
-
},
|
|
54129
|
-
required: ['access_grant_id'],
|
|
54130
|
-
type: 'object',
|
|
54131
|
-
},
|
|
54132
|
-
},
|
|
54133
|
-
},
|
|
54134
|
-
},
|
|
54135
|
-
responses: {
|
|
54136
|
-
200: {
|
|
54137
|
-
content: {
|
|
54138
|
-
'application/json': {
|
|
54139
|
-
schema: {
|
|
54140
|
-
properties: {
|
|
54141
|
-
access_methods: {
|
|
54142
|
-
items: { $ref: '#/components/schemas/access_method' },
|
|
54143
|
-
type: 'array',
|
|
54144
|
-
},
|
|
54145
|
-
ok: { type: 'boolean' },
|
|
54146
|
-
},
|
|
54147
|
-
required: ['access_methods', 'ok'],
|
|
54148
|
-
type: 'object',
|
|
54149
|
-
},
|
|
54150
|
-
},
|
|
54151
|
-
},
|
|
54152
|
-
description: 'OK',
|
|
54153
|
-
},
|
|
54154
|
-
400: { description: 'Bad Request' },
|
|
54155
|
-
401: { description: 'Unauthorized' },
|
|
54156
|
-
},
|
|
54157
|
-
security: [
|
|
54158
|
-
{ pat_with_workspace: [] },
|
|
54159
|
-
{ console_session_with_workspace: [] },
|
|
54160
|
-
{ api_key: [] },
|
|
54161
|
-
],
|
|
54162
|
-
summary: '/unstable_access_methods/list',
|
|
54163
|
-
tags: [],
|
|
54164
|
-
'x-fern-sdk-group-name': ['unstable_access_methods'],
|
|
54165
|
-
'x-fern-sdk-method-name': 'list',
|
|
54166
|
-
'x-fern-sdk-return-value': 'access_methods',
|
|
54167
|
-
'x-response-key': 'access_methods',
|
|
54168
|
-
'x-title': 'List Access Methods',
|
|
54169
|
-
'x-undocumented': 'Unreleased.',
|
|
54170
|
-
},
|
|
54171
|
-
},
|
|
54172
53297
|
'/unstable_locations/add_acs_entrances': {
|
|
54173
53298
|
post: {
|
|
54174
53299
|
description:
|