@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.
@@ -2805,6 +2805,7 @@ export default {
2805
2805
  'assa_abloy_credential_service',
2806
2806
  'latch_building',
2807
2807
  'dormakaba_community_site',
2808
+ 'dormakaba_ambiance_site',
2808
2809
  'legic_connect_credential_service',
2809
2810
  'assa_abloy_vostio',
2810
2811
  'assa_abloy_vostio_credential_service',
@@ -2855,6 +2856,7 @@ export default {
2855
2856
  'assa_abloy_credential_service',
2856
2857
  'latch_building',
2857
2858
  'dormakaba_community_site',
2859
+ 'dormakaba_ambiance_site',
2858
2860
  'legic_connect_credential_service',
2859
2861
  'assa_abloy_vostio',
2860
2862
  'assa_abloy_vostio_credential_service',
@@ -11534,6 +11536,7 @@ export default {
11534
11536
  'sensi',
11535
11537
  'kwikset2',
11536
11538
  'keynest',
11539
+ 'dormakaba_ambiance',
11537
11540
  ],
11538
11541
  type: 'string',
11539
11542
  },
@@ -25104,6 +25107,12 @@ export default {
25104
25107
  nullable: true,
25105
25108
  type: 'string',
25106
25109
  },
25110
+ user_identity_key: {
25111
+ description: 'Unique key for the user identity.',
25112
+ minLength: 1,
25113
+ nullable: true,
25114
+ type: 'string',
25115
+ },
25107
25116
  },
25108
25117
  type: 'object',
25109
25118
  },
@@ -25888,7 +25897,6 @@ export default {
25888
25897
  starts_at: {
25889
25898
  description: '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.',
25890
25899
  format: 'date-time',
25891
- nullable: true,
25892
25900
  type: 'string',
25893
25901
  },
25894
25902
  },
@@ -25955,7 +25963,6 @@ export default {
25955
25963
  starts_at: {
25956
25964
  description: '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.',
25957
25965
  format: 'date-time',
25958
- nullable: true,
25959
25966
  type: 'string',
25960
25967
  },
25961
25968
  },
@@ -26307,21 +26314,57 @@ export default {
26307
26314
  schema: {
26308
26315
  properties: {
26309
26316
  batch: {
26310
- description: 'Represents a resource batch.',
26317
+ description: 'A batch of workspace resources.',
26311
26318
  properties: {
26319
+ acs_access_groups: {
26320
+ items: {
26321
+ $ref: '#/components/schemas/acs_access_group',
26322
+ },
26323
+ type: 'array',
26324
+ },
26325
+ acs_encoders: {
26326
+ items: { $ref: '#/components/schemas/acs_encoder' },
26327
+ type: 'array',
26328
+ },
26312
26329
  acs_entrances: {
26313
26330
  items: { $ref: '#/components/schemas/acs_entrance' },
26314
26331
  type: 'array',
26315
26332
  },
26333
+ acs_systems: {
26334
+ items: { $ref: '#/components/schemas/acs_system' },
26335
+ type: 'array',
26336
+ },
26337
+ acs_users: {
26338
+ items: { $ref: '#/components/schemas/acs_user' },
26339
+ type: 'array',
26340
+ },
26341
+ action_attempts: {
26342
+ items: {
26343
+ $ref: '#/components/schemas/action_attempt',
26344
+ },
26345
+ type: 'array',
26346
+ },
26316
26347
  batch_type: {
26317
26348
  enum: [
26318
26349
  'workspaces',
26350
+ 'spaces',
26319
26351
  'access_grants',
26320
26352
  'access_methods',
26321
- 'spaces',
26322
26353
  ],
26323
26354
  type: 'string',
26324
26355
  },
26356
+ client_sessions: {
26357
+ items: {
26358
+ $ref: '#/components/schemas/client_session',
26359
+ },
26360
+ type: 'array',
26361
+ },
26362
+ connect_webviews: {
26363
+ items: {
26364
+ $ref: '#/components/schemas/connect_webview',
26365
+ },
26366
+ type: 'array',
26367
+ },
26325
26368
  devices: {
26326
26369
  items: { $ref: '#/components/schemas/device' },
26327
26370
  type: 'array',
@@ -26330,6 +26373,24 @@ export default {
26330
26373
  items: { $ref: '#/components/schemas/space' },
26331
26374
  type: 'array',
26332
26375
  },
26376
+ unmanaged_acs_access_groups: {
26377
+ items: {
26378
+ $ref: '#/components/schemas/unmanaged_acs_access_group',
26379
+ },
26380
+ type: 'array',
26381
+ },
26382
+ unmanaged_acs_users: {
26383
+ items: {
26384
+ $ref: '#/components/schemas/unmanaged_acs_user',
26385
+ },
26386
+ type: 'array',
26387
+ },
26388
+ unmanaged_devices: {
26389
+ items: {
26390
+ $ref: '#/components/schemas/unmanaged_device',
26391
+ },
26392
+ type: 'array',
26393
+ },
26333
26394
  user_identities: {
26334
26395
  items: { $ref: '#/components/schemas/user_identity' },
26335
26396
  type: 'array',
@@ -26341,7 +26402,6 @@ export default {
26341
26402
  },
26342
26403
  required: ['batch_type'],
26343
26404
  type: 'object',
26344
- 'x-route-path': '/',
26345
26405
  },
26346
26406
  ok: { type: 'boolean' },
26347
26407
  },
@@ -26411,21 +26471,57 @@ export default {
26411
26471
  schema: {
26412
26472
  properties: {
26413
26473
  batch: {
26414
- description: 'Represents a resource batch.',
26474
+ description: 'A batch of workspace resources.',
26415
26475
  properties: {
26476
+ acs_access_groups: {
26477
+ items: {
26478
+ $ref: '#/components/schemas/acs_access_group',
26479
+ },
26480
+ type: 'array',
26481
+ },
26482
+ acs_encoders: {
26483
+ items: { $ref: '#/components/schemas/acs_encoder' },
26484
+ type: 'array',
26485
+ },
26416
26486
  acs_entrances: {
26417
26487
  items: { $ref: '#/components/schemas/acs_entrance' },
26418
26488
  type: 'array',
26419
26489
  },
26490
+ acs_systems: {
26491
+ items: { $ref: '#/components/schemas/acs_system' },
26492
+ type: 'array',
26493
+ },
26494
+ acs_users: {
26495
+ items: { $ref: '#/components/schemas/acs_user' },
26496
+ type: 'array',
26497
+ },
26498
+ action_attempts: {
26499
+ items: {
26500
+ $ref: '#/components/schemas/action_attempt',
26501
+ },
26502
+ type: 'array',
26503
+ },
26420
26504
  batch_type: {
26421
26505
  enum: [
26422
26506
  'workspaces',
26507
+ 'spaces',
26423
26508
  'access_grants',
26424
26509
  'access_methods',
26425
- 'spaces',
26426
26510
  ],
26427
26511
  type: 'string',
26428
26512
  },
26513
+ client_sessions: {
26514
+ items: {
26515
+ $ref: '#/components/schemas/client_session',
26516
+ },
26517
+ type: 'array',
26518
+ },
26519
+ connect_webviews: {
26520
+ items: {
26521
+ $ref: '#/components/schemas/connect_webview',
26522
+ },
26523
+ type: 'array',
26524
+ },
26429
26525
  devices: {
26430
26526
  items: { $ref: '#/components/schemas/device' },
26431
26527
  type: 'array',
@@ -26434,6 +26530,24 @@ export default {
26434
26530
  items: { $ref: '#/components/schemas/space' },
26435
26531
  type: 'array',
26436
26532
  },
26533
+ unmanaged_acs_access_groups: {
26534
+ items: {
26535
+ $ref: '#/components/schemas/unmanaged_acs_access_group',
26536
+ },
26537
+ type: 'array',
26538
+ },
26539
+ unmanaged_acs_users: {
26540
+ items: {
26541
+ $ref: '#/components/schemas/unmanaged_acs_user',
26542
+ },
26543
+ type: 'array',
26544
+ },
26545
+ unmanaged_devices: {
26546
+ items: {
26547
+ $ref: '#/components/schemas/unmanaged_device',
26548
+ },
26549
+ type: 'array',
26550
+ },
26437
26551
  user_identities: {
26438
26552
  items: { $ref: '#/components/schemas/user_identity' },
26439
26553
  type: 'array',
@@ -26445,7 +26559,6 @@ export default {
26445
26559
  },
26446
26560
  required: ['batch_type'],
26447
26561
  type: 'object',
26448
- 'x-route-path': '/',
26449
26562
  },
26450
26563
  ok: { type: 'boolean' },
26451
26564
  },
@@ -33577,6 +33690,7 @@ export default {
33577
33690
  'sensi',
33578
33691
  'kwikset2',
33579
33692
  'keynest',
33693
+ 'dormakaba_ambiance',
33580
33694
  'yale_access',
33581
33695
  'hid_cm',
33582
33696
  'google_nest',
@@ -39134,6 +39248,107 @@ export default {
39134
39248
  'x-title': 'List Events',
39135
39249
  },
39136
39250
  },
39251
+ '/instant_keys/get': {
39252
+ get: {
39253
+ description: 'Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).',
39254
+ operationId: 'instantKeysGetGet',
39255
+ parameters: [
39256
+ {
39257
+ in: 'query',
39258
+ name: 'instant_key_id',
39259
+ required: true,
39260
+ schema: {
39261
+ description: 'ID of the instant key to get.',
39262
+ format: 'uuid',
39263
+ type: 'string',
39264
+ },
39265
+ },
39266
+ ],
39267
+ responses: {
39268
+ 200: {
39269
+ content: {
39270
+ 'application/json': {
39271
+ schema: {
39272
+ properties: {
39273
+ instant_key: { $ref: '#/components/schemas/instant_key' },
39274
+ ok: { type: 'boolean' },
39275
+ },
39276
+ required: ['instant_key', 'ok'],
39277
+ type: 'object',
39278
+ },
39279
+ },
39280
+ },
39281
+ description: 'OK',
39282
+ },
39283
+ 400: { description: 'Bad Request' },
39284
+ 401: { description: 'Unauthorized' },
39285
+ },
39286
+ security: [
39287
+ { api_key: [] },
39288
+ { pat_with_workspace: [] },
39289
+ { console_session_with_workspace: [] },
39290
+ ],
39291
+ summary: '/instant_keys/get',
39292
+ tags: [],
39293
+ 'x-fern-sdk-group-name': ['instant_keys'],
39294
+ 'x-fern-sdk-method-name': 'get',
39295
+ 'x-fern-sdk-return-value': 'instant_key',
39296
+ 'x-response-key': 'instant_key',
39297
+ 'x-title': 'Get an Instant Key',
39298
+ },
39299
+ post: {
39300
+ description: 'Gets an [instant key](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).',
39301
+ operationId: 'instantKeysGetPost',
39302
+ requestBody: {
39303
+ content: {
39304
+ 'application/json': {
39305
+ schema: {
39306
+ properties: {
39307
+ instant_key_id: {
39308
+ description: 'ID of the instant key to get.',
39309
+ format: 'uuid',
39310
+ type: 'string',
39311
+ },
39312
+ },
39313
+ required: ['instant_key_id'],
39314
+ type: 'object',
39315
+ },
39316
+ },
39317
+ },
39318
+ },
39319
+ responses: {
39320
+ 200: {
39321
+ content: {
39322
+ 'application/json': {
39323
+ schema: {
39324
+ properties: {
39325
+ instant_key: { $ref: '#/components/schemas/instant_key' },
39326
+ ok: { type: 'boolean' },
39327
+ },
39328
+ required: ['instant_key', 'ok'],
39329
+ type: 'object',
39330
+ },
39331
+ },
39332
+ },
39333
+ description: 'OK',
39334
+ },
39335
+ 400: { description: 'Bad Request' },
39336
+ 401: { description: 'Unauthorized' },
39337
+ },
39338
+ security: [
39339
+ { api_key: [] },
39340
+ { pat_with_workspace: [] },
39341
+ { console_session_with_workspace: [] },
39342
+ ],
39343
+ summary: '/instant_keys/get',
39344
+ tags: [],
39345
+ 'x-fern-sdk-group-name': ['instant_keys'],
39346
+ 'x-fern-sdk-method-name': 'get',
39347
+ 'x-fern-sdk-return-value': 'instant_key',
39348
+ 'x-response-key': 'instant_key',
39349
+ 'x-title': 'Get an Instant Key',
39350
+ },
39351
+ },
39137
39352
  '/instant_keys/list': {
39138
39353
  get: {
39139
39354
  description: 'Returns a list of all [instant keys](https://docs.seam.co/latest/capability-guides/mobile-access/instant-keys).',
@@ -52615,21 +52830,57 @@ export default {
52615
52830
  schema: {
52616
52831
  properties: {
52617
52832
  batch: {
52618
- description: 'Represents a resource batch.',
52833
+ description: 'A batch of workspace resources.',
52619
52834
  properties: {
52835
+ acs_access_groups: {
52836
+ items: {
52837
+ $ref: '#/components/schemas/acs_access_group',
52838
+ },
52839
+ type: 'array',
52840
+ },
52841
+ acs_encoders: {
52842
+ items: { $ref: '#/components/schemas/acs_encoder' },
52843
+ type: 'array',
52844
+ },
52620
52845
  acs_entrances: {
52621
52846
  items: { $ref: '#/components/schemas/acs_entrance' },
52622
52847
  type: 'array',
52623
52848
  },
52849
+ acs_systems: {
52850
+ items: { $ref: '#/components/schemas/acs_system' },
52851
+ type: 'array',
52852
+ },
52853
+ acs_users: {
52854
+ items: { $ref: '#/components/schemas/acs_user' },
52855
+ type: 'array',
52856
+ },
52857
+ action_attempts: {
52858
+ items: {
52859
+ $ref: '#/components/schemas/action_attempt',
52860
+ },
52861
+ type: 'array',
52862
+ },
52624
52863
  batch_type: {
52625
52864
  enum: [
52626
52865
  'workspaces',
52866
+ 'spaces',
52627
52867
  'access_grants',
52628
52868
  'access_methods',
52629
- 'spaces',
52630
52869
  ],
52631
52870
  type: 'string',
52632
52871
  },
52872
+ client_sessions: {
52873
+ items: {
52874
+ $ref: '#/components/schemas/client_session',
52875
+ },
52876
+ type: 'array',
52877
+ },
52878
+ connect_webviews: {
52879
+ items: {
52880
+ $ref: '#/components/schemas/connect_webview',
52881
+ },
52882
+ type: 'array',
52883
+ },
52633
52884
  devices: {
52634
52885
  items: { $ref: '#/components/schemas/device' },
52635
52886
  type: 'array',
@@ -52638,6 +52889,24 @@ export default {
52638
52889
  items: { $ref: '#/components/schemas/space' },
52639
52890
  type: 'array',
52640
52891
  },
52892
+ unmanaged_acs_access_groups: {
52893
+ items: {
52894
+ $ref: '#/components/schemas/unmanaged_acs_access_group',
52895
+ },
52896
+ type: 'array',
52897
+ },
52898
+ unmanaged_acs_users: {
52899
+ items: {
52900
+ $ref: '#/components/schemas/unmanaged_acs_user',
52901
+ },
52902
+ type: 'array',
52903
+ },
52904
+ unmanaged_devices: {
52905
+ items: {
52906
+ $ref: '#/components/schemas/unmanaged_device',
52907
+ },
52908
+ type: 'array',
52909
+ },
52641
52910
  user_identities: {
52642
52911
  items: { $ref: '#/components/schemas/user_identity' },
52643
52912
  type: 'array',
@@ -52649,7 +52918,6 @@ export default {
52649
52918
  },
52650
52919
  required: ['batch_type'],
52651
52920
  type: 'object',
52652
- 'x-route-path': '/',
52653
52921
  },
52654
52922
  ok: { type: 'boolean' },
52655
52923
  },
@@ -52696,21 +52964,57 @@ export default {
52696
52964
  schema: {
52697
52965
  properties: {
52698
52966
  batch: {
52699
- description: 'Represents a resource batch.',
52967
+ description: 'A batch of workspace resources.',
52700
52968
  properties: {
52969
+ acs_access_groups: {
52970
+ items: {
52971
+ $ref: '#/components/schemas/acs_access_group',
52972
+ },
52973
+ type: 'array',
52974
+ },
52975
+ acs_encoders: {
52976
+ items: { $ref: '#/components/schemas/acs_encoder' },
52977
+ type: 'array',
52978
+ },
52701
52979
  acs_entrances: {
52702
52980
  items: { $ref: '#/components/schemas/acs_entrance' },
52703
52981
  type: 'array',
52704
52982
  },
52983
+ acs_systems: {
52984
+ items: { $ref: '#/components/schemas/acs_system' },
52985
+ type: 'array',
52986
+ },
52987
+ acs_users: {
52988
+ items: { $ref: '#/components/schemas/acs_user' },
52989
+ type: 'array',
52990
+ },
52991
+ action_attempts: {
52992
+ items: {
52993
+ $ref: '#/components/schemas/action_attempt',
52994
+ },
52995
+ type: 'array',
52996
+ },
52705
52997
  batch_type: {
52706
52998
  enum: [
52707
52999
  'workspaces',
53000
+ 'spaces',
52708
53001
  'access_grants',
52709
53002
  'access_methods',
52710
- 'spaces',
52711
53003
  ],
52712
53004
  type: 'string',
52713
53005
  },
53006
+ client_sessions: {
53007
+ items: {
53008
+ $ref: '#/components/schemas/client_session',
53009
+ },
53010
+ type: 'array',
53011
+ },
53012
+ connect_webviews: {
53013
+ items: {
53014
+ $ref: '#/components/schemas/connect_webview',
53015
+ },
53016
+ type: 'array',
53017
+ },
52714
53018
  devices: {
52715
53019
  items: { $ref: '#/components/schemas/device' },
52716
53020
  type: 'array',
@@ -52719,6 +53023,24 @@ export default {
52719
53023
  items: { $ref: '#/components/schemas/space' },
52720
53024
  type: 'array',
52721
53025
  },
53026
+ unmanaged_acs_access_groups: {
53027
+ items: {
53028
+ $ref: '#/components/schemas/unmanaged_acs_access_group',
53029
+ },
53030
+ type: 'array',
53031
+ },
53032
+ unmanaged_acs_users: {
53033
+ items: {
53034
+ $ref: '#/components/schemas/unmanaged_acs_user',
53035
+ },
53036
+ type: 'array',
53037
+ },
53038
+ unmanaged_devices: {
53039
+ items: {
53040
+ $ref: '#/components/schemas/unmanaged_device',
53041
+ },
53042
+ type: 'array',
53043
+ },
52722
53044
  user_identities: {
52723
53045
  items: { $ref: '#/components/schemas/user_identity' },
52724
53046
  type: 'array',
@@ -52730,7 +53052,6 @@ export default {
52730
53052
  },
52731
53053
  required: ['batch_type'],
52732
53054
  type: 'object',
52733
- 'x-route-path': '/',
52734
53055
  },
52735
53056
  ok: { type: 'boolean' },
52736
53057
  },