@seamapi/types 1.797.0 → 1.799.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 +584 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +447 -0
- package/dist/index.cjs +584 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +99 -0
- package/lib/seam/connect/models/access-grants/access-grant.js +16 -0
- package/lib/seam/connect/models/access-grants/access-grant.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +43 -0
- package/lib/seam/connect/openapi.d.ts +267 -0
- package/lib/seam/connect/openapi.js +573 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +104 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-grant.ts +21 -0
- package/src/lib/seam/connect/openapi.ts +594 -0
- package/src/lib/seam/connect/route-types.ts +557 -0
|
@@ -12417,6 +12417,17 @@ export type Routes = {
|
|
|
12417
12417
|
message: string
|
|
12418
12418
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12419
12419
|
warning_code: 'overprovisioned_access'
|
|
12420
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
12421
|
+
failed_devices?:
|
|
12422
|
+
| {
|
|
12423
|
+
/** Device whose access code could not be revoked. */
|
|
12424
|
+
device_id: string
|
|
12425
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
12426
|
+
error_code: string
|
|
12427
|
+
/** Human-readable description of why revocation failed. */
|
|
12428
|
+
message: string
|
|
12429
|
+
}[]
|
|
12430
|
+
| undefined
|
|
12420
12431
|
}
|
|
12421
12432
|
| {
|
|
12422
12433
|
/** Date and time at which Seam created the warning. */
|
|
@@ -12617,6 +12628,17 @@ export type Routes = {
|
|
|
12617
12628
|
message: string
|
|
12618
12629
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
12619
12630
|
warning_code: 'overprovisioned_access'
|
|
12631
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
12632
|
+
failed_devices?:
|
|
12633
|
+
| {
|
|
12634
|
+
/** Device whose access code could not be revoked. */
|
|
12635
|
+
device_id: string
|
|
12636
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
12637
|
+
error_code: string
|
|
12638
|
+
/** Human-readable description of why revocation failed. */
|
|
12639
|
+
message: string
|
|
12640
|
+
}[]
|
|
12641
|
+
| undefined
|
|
12620
12642
|
}
|
|
12621
12643
|
| {
|
|
12622
12644
|
/** Date and time at which Seam created the warning. */
|
|
@@ -15427,6 +15449,17 @@ export type Routes = {
|
|
|
15427
15449
|
message: string
|
|
15428
15450
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15429
15451
|
warning_code: 'overprovisioned_access'
|
|
15452
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
15453
|
+
failed_devices?:
|
|
15454
|
+
| {
|
|
15455
|
+
/** Device whose access code could not be revoked. */
|
|
15456
|
+
device_id: string
|
|
15457
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
15458
|
+
error_code: string
|
|
15459
|
+
/** Human-readable description of why revocation failed. */
|
|
15460
|
+
message: string
|
|
15461
|
+
}[]
|
|
15462
|
+
| undefined
|
|
15430
15463
|
}
|
|
15431
15464
|
| {
|
|
15432
15465
|
/** Date and time at which Seam created the warning. */
|
|
@@ -15627,6 +15660,17 @@ export type Routes = {
|
|
|
15627
15660
|
message: string
|
|
15628
15661
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15629
15662
|
warning_code: 'overprovisioned_access'
|
|
15663
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
15664
|
+
failed_devices?:
|
|
15665
|
+
| {
|
|
15666
|
+
/** Device whose access code could not be revoked. */
|
|
15667
|
+
device_id: string
|
|
15668
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
15669
|
+
error_code: string
|
|
15670
|
+
/** Human-readable description of why revocation failed. */
|
|
15671
|
+
message: string
|
|
15672
|
+
}[]
|
|
15673
|
+
| undefined
|
|
15630
15674
|
}
|
|
15631
15675
|
| {
|
|
15632
15676
|
/** Date and time at which Seam created the warning. */
|
|
@@ -15801,6 +15845,17 @@ export type Routes = {
|
|
|
15801
15845
|
message: string
|
|
15802
15846
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15803
15847
|
warning_code: 'overprovisioned_access'
|
|
15848
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
15849
|
+
failed_devices?:
|
|
15850
|
+
| {
|
|
15851
|
+
/** Device whose access code could not be revoked. */
|
|
15852
|
+
device_id: string
|
|
15853
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
15854
|
+
error_code: string
|
|
15855
|
+
/** Human-readable description of why revocation failed. */
|
|
15856
|
+
message: string
|
|
15857
|
+
}[]
|
|
15858
|
+
| undefined
|
|
15804
15859
|
}
|
|
15805
15860
|
| {
|
|
15806
15861
|
/** Date and time at which Seam created the warning. */
|
|
@@ -15984,6 +16039,17 @@ export type Routes = {
|
|
|
15984
16039
|
message: string
|
|
15985
16040
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
15986
16041
|
warning_code: 'overprovisioned_access'
|
|
16042
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
16043
|
+
failed_devices?:
|
|
16044
|
+
| {
|
|
16045
|
+
/** Device whose access code could not be revoked. */
|
|
16046
|
+
device_id: string
|
|
16047
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
16048
|
+
error_code: string
|
|
16049
|
+
/** Human-readable description of why revocation failed. */
|
|
16050
|
+
message: string
|
|
16051
|
+
}[]
|
|
16052
|
+
| undefined
|
|
15987
16053
|
}
|
|
15988
16054
|
| {
|
|
15989
16055
|
/** Date and time at which Seam created the warning. */
|
|
@@ -19814,6 +19880,17 @@ export type Routes = {
|
|
|
19814
19880
|
message: string
|
|
19815
19881
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
19816
19882
|
warning_code: 'overprovisioned_access'
|
|
19883
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
19884
|
+
failed_devices?:
|
|
19885
|
+
| {
|
|
19886
|
+
/** Device whose access code could not be revoked. */
|
|
19887
|
+
device_id: string
|
|
19888
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
19889
|
+
error_code: string
|
|
19890
|
+
/** Human-readable description of why revocation failed. */
|
|
19891
|
+
message: string
|
|
19892
|
+
}[]
|
|
19893
|
+
| undefined
|
|
19817
19894
|
}
|
|
19818
19895
|
| {
|
|
19819
19896
|
/** Date and time at which Seam created the warning. */
|
|
@@ -41297,6 +41374,442 @@ export type Routes = {
|
|
|
41297
41374
|
| 'Pacific/Wallis'
|
|
41298
41375
|
}
|
|
41299
41376
|
| undefined
|
|
41377
|
+
/** Schlage-specific metadata to update */
|
|
41378
|
+
schlage_metadata?:
|
|
41379
|
+
| {
|
|
41380
|
+
/** IANA timezone for the Schlage device */
|
|
41381
|
+
time_zone:
|
|
41382
|
+
| 'Africa/Abidjan'
|
|
41383
|
+
| 'Africa/Accra'
|
|
41384
|
+
| 'Africa/Addis_Ababa'
|
|
41385
|
+
| 'Africa/Algiers'
|
|
41386
|
+
| 'Africa/Asmera'
|
|
41387
|
+
| 'Africa/Bamako'
|
|
41388
|
+
| 'Africa/Bangui'
|
|
41389
|
+
| 'Africa/Banjul'
|
|
41390
|
+
| 'Africa/Bissau'
|
|
41391
|
+
| 'Africa/Blantyre'
|
|
41392
|
+
| 'Africa/Brazzaville'
|
|
41393
|
+
| 'Africa/Bujumbura'
|
|
41394
|
+
| 'Africa/Cairo'
|
|
41395
|
+
| 'Africa/Casablanca'
|
|
41396
|
+
| 'Africa/Ceuta'
|
|
41397
|
+
| 'Africa/Conakry'
|
|
41398
|
+
| 'Africa/Dakar'
|
|
41399
|
+
| 'Africa/Dar_es_Salaam'
|
|
41400
|
+
| 'Africa/Djibouti'
|
|
41401
|
+
| 'Africa/Douala'
|
|
41402
|
+
| 'Africa/El_Aaiun'
|
|
41403
|
+
| 'Africa/Freetown'
|
|
41404
|
+
| 'Africa/Gaborone'
|
|
41405
|
+
| 'Africa/Harare'
|
|
41406
|
+
| 'Africa/Johannesburg'
|
|
41407
|
+
| 'Africa/Juba'
|
|
41408
|
+
| 'Africa/Kampala'
|
|
41409
|
+
| 'Africa/Khartoum'
|
|
41410
|
+
| 'Africa/Kigali'
|
|
41411
|
+
| 'Africa/Kinshasa'
|
|
41412
|
+
| 'Africa/Lagos'
|
|
41413
|
+
| 'Africa/Libreville'
|
|
41414
|
+
| 'Africa/Lome'
|
|
41415
|
+
| 'Africa/Luanda'
|
|
41416
|
+
| 'Africa/Lubumbashi'
|
|
41417
|
+
| 'Africa/Lusaka'
|
|
41418
|
+
| 'Africa/Malabo'
|
|
41419
|
+
| 'Africa/Maputo'
|
|
41420
|
+
| 'Africa/Maseru'
|
|
41421
|
+
| 'Africa/Mbabane'
|
|
41422
|
+
| 'Africa/Mogadishu'
|
|
41423
|
+
| 'Africa/Monrovia'
|
|
41424
|
+
| 'Africa/Nairobi'
|
|
41425
|
+
| 'Africa/Ndjamena'
|
|
41426
|
+
| 'Africa/Niamey'
|
|
41427
|
+
| 'Africa/Nouakchott'
|
|
41428
|
+
| 'Africa/Ouagadougou'
|
|
41429
|
+
| 'Africa/Porto-Novo'
|
|
41430
|
+
| 'Africa/Sao_Tome'
|
|
41431
|
+
| 'Africa/Tripoli'
|
|
41432
|
+
| 'Africa/Tunis'
|
|
41433
|
+
| 'Africa/Windhoek'
|
|
41434
|
+
| 'America/Adak'
|
|
41435
|
+
| 'America/Anchorage'
|
|
41436
|
+
| 'America/Anguilla'
|
|
41437
|
+
| 'America/Antigua'
|
|
41438
|
+
| 'America/Araguaina'
|
|
41439
|
+
| 'America/Argentina/La_Rioja'
|
|
41440
|
+
| 'America/Argentina/Rio_Gallegos'
|
|
41441
|
+
| 'America/Argentina/Salta'
|
|
41442
|
+
| 'America/Argentina/San_Juan'
|
|
41443
|
+
| 'America/Argentina/San_Luis'
|
|
41444
|
+
| 'America/Argentina/Tucuman'
|
|
41445
|
+
| 'America/Argentina/Ushuaia'
|
|
41446
|
+
| 'America/Aruba'
|
|
41447
|
+
| 'America/Asuncion'
|
|
41448
|
+
| 'America/Bahia'
|
|
41449
|
+
| 'America/Bahia_Banderas'
|
|
41450
|
+
| 'America/Barbados'
|
|
41451
|
+
| 'America/Belem'
|
|
41452
|
+
| 'America/Belize'
|
|
41453
|
+
| 'America/Blanc-Sablon'
|
|
41454
|
+
| 'America/Boa_Vista'
|
|
41455
|
+
| 'America/Bogota'
|
|
41456
|
+
| 'America/Boise'
|
|
41457
|
+
| 'America/Buenos_Aires'
|
|
41458
|
+
| 'America/Cambridge_Bay'
|
|
41459
|
+
| 'America/Campo_Grande'
|
|
41460
|
+
| 'America/Cancun'
|
|
41461
|
+
| 'America/Caracas'
|
|
41462
|
+
| 'America/Catamarca'
|
|
41463
|
+
| 'America/Cayenne'
|
|
41464
|
+
| 'America/Cayman'
|
|
41465
|
+
| 'America/Chicago'
|
|
41466
|
+
| 'America/Chihuahua'
|
|
41467
|
+
| 'America/Ciudad_Juarez'
|
|
41468
|
+
| 'America/Coral_Harbour'
|
|
41469
|
+
| 'America/Cordoba'
|
|
41470
|
+
| 'America/Costa_Rica'
|
|
41471
|
+
| 'America/Creston'
|
|
41472
|
+
| 'America/Cuiaba'
|
|
41473
|
+
| 'America/Curacao'
|
|
41474
|
+
| 'America/Danmarkshavn'
|
|
41475
|
+
| 'America/Dawson'
|
|
41476
|
+
| 'America/Dawson_Creek'
|
|
41477
|
+
| 'America/Denver'
|
|
41478
|
+
| 'America/Detroit'
|
|
41479
|
+
| 'America/Dominica'
|
|
41480
|
+
| 'America/Edmonton'
|
|
41481
|
+
| 'America/Eirunepe'
|
|
41482
|
+
| 'America/El_Salvador'
|
|
41483
|
+
| 'America/Fort_Nelson'
|
|
41484
|
+
| 'America/Fortaleza'
|
|
41485
|
+
| 'America/Glace_Bay'
|
|
41486
|
+
| 'America/Godthab'
|
|
41487
|
+
| 'America/Goose_Bay'
|
|
41488
|
+
| 'America/Grand_Turk'
|
|
41489
|
+
| 'America/Grenada'
|
|
41490
|
+
| 'America/Guadeloupe'
|
|
41491
|
+
| 'America/Guatemala'
|
|
41492
|
+
| 'America/Guayaquil'
|
|
41493
|
+
| 'America/Guyana'
|
|
41494
|
+
| 'America/Halifax'
|
|
41495
|
+
| 'America/Havana'
|
|
41496
|
+
| 'America/Hermosillo'
|
|
41497
|
+
| 'America/Indiana/Knox'
|
|
41498
|
+
| 'America/Indiana/Marengo'
|
|
41499
|
+
| 'America/Indiana/Petersburg'
|
|
41500
|
+
| 'America/Indiana/Tell_City'
|
|
41501
|
+
| 'America/Indiana/Vevay'
|
|
41502
|
+
| 'America/Indiana/Vincennes'
|
|
41503
|
+
| 'America/Indiana/Winamac'
|
|
41504
|
+
| 'America/Indianapolis'
|
|
41505
|
+
| 'America/Inuvik'
|
|
41506
|
+
| 'America/Iqaluit'
|
|
41507
|
+
| 'America/Jamaica'
|
|
41508
|
+
| 'America/Jujuy'
|
|
41509
|
+
| 'America/Juneau'
|
|
41510
|
+
| 'America/Kentucky/Monticello'
|
|
41511
|
+
| 'America/Kralendijk'
|
|
41512
|
+
| 'America/La_Paz'
|
|
41513
|
+
| 'America/Lima'
|
|
41514
|
+
| 'America/Los_Angeles'
|
|
41515
|
+
| 'America/Louisville'
|
|
41516
|
+
| 'America/Lower_Princes'
|
|
41517
|
+
| 'America/Maceio'
|
|
41518
|
+
| 'America/Managua'
|
|
41519
|
+
| 'America/Manaus'
|
|
41520
|
+
| 'America/Marigot'
|
|
41521
|
+
| 'America/Martinique'
|
|
41522
|
+
| 'America/Matamoros'
|
|
41523
|
+
| 'America/Mazatlan'
|
|
41524
|
+
| 'America/Mendoza'
|
|
41525
|
+
| 'America/Menominee'
|
|
41526
|
+
| 'America/Merida'
|
|
41527
|
+
| 'America/Metlakatla'
|
|
41528
|
+
| 'America/Mexico_City'
|
|
41529
|
+
| 'America/Miquelon'
|
|
41530
|
+
| 'America/Moncton'
|
|
41531
|
+
| 'America/Monterrey'
|
|
41532
|
+
| 'America/Montevideo'
|
|
41533
|
+
| 'America/Montreal'
|
|
41534
|
+
| 'America/Montserrat'
|
|
41535
|
+
| 'America/Nassau'
|
|
41536
|
+
| 'America/New_York'
|
|
41537
|
+
| 'America/Nipigon'
|
|
41538
|
+
| 'America/Nome'
|
|
41539
|
+
| 'America/Noronha'
|
|
41540
|
+
| 'America/North_Dakota/Beulah'
|
|
41541
|
+
| 'America/North_Dakota/Center'
|
|
41542
|
+
| 'America/North_Dakota/New_Salem'
|
|
41543
|
+
| 'America/Ojinaga'
|
|
41544
|
+
| 'America/Panama'
|
|
41545
|
+
| 'America/Pangnirtung'
|
|
41546
|
+
| 'America/Paramaribo'
|
|
41547
|
+
| 'America/Phoenix'
|
|
41548
|
+
| 'America/Port-au-Prince'
|
|
41549
|
+
| 'America/Port_of_Spain'
|
|
41550
|
+
| 'America/Porto_Velho'
|
|
41551
|
+
| 'America/Puerto_Rico'
|
|
41552
|
+
| 'America/Punta_Arenas'
|
|
41553
|
+
| 'America/Rainy_River'
|
|
41554
|
+
| 'America/Rankin_Inlet'
|
|
41555
|
+
| 'America/Recife'
|
|
41556
|
+
| 'America/Regina'
|
|
41557
|
+
| 'America/Resolute'
|
|
41558
|
+
| 'America/Rio_Branco'
|
|
41559
|
+
| 'America/Santa_Isabel'
|
|
41560
|
+
| 'America/Santarem'
|
|
41561
|
+
| 'America/Santiago'
|
|
41562
|
+
| 'America/Santo_Domingo'
|
|
41563
|
+
| 'America/Sao_Paulo'
|
|
41564
|
+
| 'America/Scoresbysund'
|
|
41565
|
+
| 'America/Sitka'
|
|
41566
|
+
| 'America/St_Barthelemy'
|
|
41567
|
+
| 'America/St_Johns'
|
|
41568
|
+
| 'America/St_Kitts'
|
|
41569
|
+
| 'America/St_Lucia'
|
|
41570
|
+
| 'America/St_Thomas'
|
|
41571
|
+
| 'America/St_Vincent'
|
|
41572
|
+
| 'America/Swift_Current'
|
|
41573
|
+
| 'America/Tegucigalpa'
|
|
41574
|
+
| 'America/Thule'
|
|
41575
|
+
| 'America/Thunder_Bay'
|
|
41576
|
+
| 'America/Tijuana'
|
|
41577
|
+
| 'America/Toronto'
|
|
41578
|
+
| 'America/Tortola'
|
|
41579
|
+
| 'America/Vancouver'
|
|
41580
|
+
| 'America/Whitehorse'
|
|
41581
|
+
| 'America/Winnipeg'
|
|
41582
|
+
| 'America/Yakutat'
|
|
41583
|
+
| 'America/Yellowknife'
|
|
41584
|
+
| 'Antarctica/Casey'
|
|
41585
|
+
| 'Antarctica/Davis'
|
|
41586
|
+
| 'Antarctica/DumontDUrville'
|
|
41587
|
+
| 'Antarctica/Macquarie'
|
|
41588
|
+
| 'Antarctica/Mawson'
|
|
41589
|
+
| 'Antarctica/McMurdo'
|
|
41590
|
+
| 'Antarctica/Palmer'
|
|
41591
|
+
| 'Antarctica/Rothera'
|
|
41592
|
+
| 'Antarctica/Syowa'
|
|
41593
|
+
| 'Antarctica/Troll'
|
|
41594
|
+
| 'Antarctica/Vostok'
|
|
41595
|
+
| 'Arctic/Longyearbyen'
|
|
41596
|
+
| 'Asia/Aden'
|
|
41597
|
+
| 'Asia/Almaty'
|
|
41598
|
+
| 'Asia/Amman'
|
|
41599
|
+
| 'Asia/Anadyr'
|
|
41600
|
+
| 'Asia/Aqtau'
|
|
41601
|
+
| 'Asia/Aqtobe'
|
|
41602
|
+
| 'Asia/Ashgabat'
|
|
41603
|
+
| 'Asia/Atyrau'
|
|
41604
|
+
| 'Asia/Baghdad'
|
|
41605
|
+
| 'Asia/Bahrain'
|
|
41606
|
+
| 'Asia/Baku'
|
|
41607
|
+
| 'Asia/Bangkok'
|
|
41608
|
+
| 'Asia/Barnaul'
|
|
41609
|
+
| 'Asia/Beirut'
|
|
41610
|
+
| 'Asia/Bishkek'
|
|
41611
|
+
| 'Asia/Brunei'
|
|
41612
|
+
| 'Asia/Calcutta'
|
|
41613
|
+
| 'Asia/Chita'
|
|
41614
|
+
| 'Asia/Choibalsan'
|
|
41615
|
+
| 'Asia/Colombo'
|
|
41616
|
+
| 'Asia/Damascus'
|
|
41617
|
+
| 'Asia/Dhaka'
|
|
41618
|
+
| 'Asia/Dili'
|
|
41619
|
+
| 'Asia/Dubai'
|
|
41620
|
+
| 'Asia/Dushanbe'
|
|
41621
|
+
| 'Asia/Famagusta'
|
|
41622
|
+
| 'Asia/Gaza'
|
|
41623
|
+
| 'Asia/Hebron'
|
|
41624
|
+
| 'Asia/Hong_Kong'
|
|
41625
|
+
| 'Asia/Hovd'
|
|
41626
|
+
| 'Asia/Irkutsk'
|
|
41627
|
+
| 'Asia/Jakarta'
|
|
41628
|
+
| 'Asia/Jayapura'
|
|
41629
|
+
| 'Asia/Jerusalem'
|
|
41630
|
+
| 'Asia/Kabul'
|
|
41631
|
+
| 'Asia/Kamchatka'
|
|
41632
|
+
| 'Asia/Karachi'
|
|
41633
|
+
| 'Asia/Katmandu'
|
|
41634
|
+
| 'Asia/Khandyga'
|
|
41635
|
+
| 'Asia/Krasnoyarsk'
|
|
41636
|
+
| 'Asia/Kuala_Lumpur'
|
|
41637
|
+
| 'Asia/Kuching'
|
|
41638
|
+
| 'Asia/Kuwait'
|
|
41639
|
+
| 'Asia/Macau'
|
|
41640
|
+
| 'Asia/Magadan'
|
|
41641
|
+
| 'Asia/Makassar'
|
|
41642
|
+
| 'Asia/Manila'
|
|
41643
|
+
| 'Asia/Muscat'
|
|
41644
|
+
| 'Asia/Nicosia'
|
|
41645
|
+
| 'Asia/Novokuznetsk'
|
|
41646
|
+
| 'Asia/Novosibirsk'
|
|
41647
|
+
| 'Asia/Omsk'
|
|
41648
|
+
| 'Asia/Oral'
|
|
41649
|
+
| 'Asia/Phnom_Penh'
|
|
41650
|
+
| 'Asia/Pontianak'
|
|
41651
|
+
| 'Asia/Pyongyang'
|
|
41652
|
+
| 'Asia/Qatar'
|
|
41653
|
+
| 'Asia/Qostanay'
|
|
41654
|
+
| 'Asia/Qyzylorda'
|
|
41655
|
+
| 'Asia/Rangoon'
|
|
41656
|
+
| 'Asia/Riyadh'
|
|
41657
|
+
| 'Asia/Saigon'
|
|
41658
|
+
| 'Asia/Sakhalin'
|
|
41659
|
+
| 'Asia/Samarkand'
|
|
41660
|
+
| 'Asia/Seoul'
|
|
41661
|
+
| 'Asia/Shanghai'
|
|
41662
|
+
| 'Asia/Singapore'
|
|
41663
|
+
| 'Asia/Srednekolymsk'
|
|
41664
|
+
| 'Asia/Taipei'
|
|
41665
|
+
| 'Asia/Tashkent'
|
|
41666
|
+
| 'Asia/Tbilisi'
|
|
41667
|
+
| 'Asia/Tehran'
|
|
41668
|
+
| 'Asia/Thimphu'
|
|
41669
|
+
| 'Asia/Tokyo'
|
|
41670
|
+
| 'Asia/Tomsk'
|
|
41671
|
+
| 'Asia/Ulaanbaatar'
|
|
41672
|
+
| 'Asia/Urumqi'
|
|
41673
|
+
| 'Asia/Ust-Nera'
|
|
41674
|
+
| 'Asia/Vientiane'
|
|
41675
|
+
| 'Asia/Vladivostok'
|
|
41676
|
+
| 'Asia/Yakutsk'
|
|
41677
|
+
| 'Asia/Yekaterinburg'
|
|
41678
|
+
| 'Asia/Yerevan'
|
|
41679
|
+
| 'Atlantic/Azores'
|
|
41680
|
+
| 'Atlantic/Bermuda'
|
|
41681
|
+
| 'Atlantic/Canary'
|
|
41682
|
+
| 'Atlantic/Cape_Verde'
|
|
41683
|
+
| 'Atlantic/Faeroe'
|
|
41684
|
+
| 'Atlantic/Madeira'
|
|
41685
|
+
| 'Atlantic/Reykjavik'
|
|
41686
|
+
| 'Atlantic/South_Georgia'
|
|
41687
|
+
| 'Atlantic/St_Helena'
|
|
41688
|
+
| 'Atlantic/Stanley'
|
|
41689
|
+
| 'Australia/Adelaide'
|
|
41690
|
+
| 'Australia/Brisbane'
|
|
41691
|
+
| 'Australia/Broken_Hill'
|
|
41692
|
+
| 'Australia/Currie'
|
|
41693
|
+
| 'Australia/Darwin'
|
|
41694
|
+
| 'Australia/Eucla'
|
|
41695
|
+
| 'Australia/Hobart'
|
|
41696
|
+
| 'Australia/Lindeman'
|
|
41697
|
+
| 'Australia/Lord_Howe'
|
|
41698
|
+
| 'Australia/Melbourne'
|
|
41699
|
+
| 'Australia/Perth'
|
|
41700
|
+
| 'Australia/Sydney'
|
|
41701
|
+
| 'Europe/Amsterdam'
|
|
41702
|
+
| 'Europe/Andorra'
|
|
41703
|
+
| 'Europe/Astrakhan'
|
|
41704
|
+
| 'Europe/Athens'
|
|
41705
|
+
| 'Europe/Belgrade'
|
|
41706
|
+
| 'Europe/Berlin'
|
|
41707
|
+
| 'Europe/Bratislava'
|
|
41708
|
+
| 'Europe/Brussels'
|
|
41709
|
+
| 'Europe/Bucharest'
|
|
41710
|
+
| 'Europe/Budapest'
|
|
41711
|
+
| 'Europe/Busingen'
|
|
41712
|
+
| 'Europe/Chisinau'
|
|
41713
|
+
| 'Europe/Copenhagen'
|
|
41714
|
+
| 'Europe/Dublin'
|
|
41715
|
+
| 'Europe/Gibraltar'
|
|
41716
|
+
| 'Europe/Guernsey'
|
|
41717
|
+
| 'Europe/Helsinki'
|
|
41718
|
+
| 'Europe/Isle_of_Man'
|
|
41719
|
+
| 'Europe/Istanbul'
|
|
41720
|
+
| 'Europe/Jersey'
|
|
41721
|
+
| 'Europe/Kaliningrad'
|
|
41722
|
+
| 'Europe/Kiev'
|
|
41723
|
+
| 'Europe/Kirov'
|
|
41724
|
+
| 'Europe/Lisbon'
|
|
41725
|
+
| 'Europe/Ljubljana'
|
|
41726
|
+
| 'Europe/London'
|
|
41727
|
+
| 'Europe/Luxembourg'
|
|
41728
|
+
| 'Europe/Madrid'
|
|
41729
|
+
| 'Europe/Malta'
|
|
41730
|
+
| 'Europe/Mariehamn'
|
|
41731
|
+
| 'Europe/Minsk'
|
|
41732
|
+
| 'Europe/Monaco'
|
|
41733
|
+
| 'Europe/Moscow'
|
|
41734
|
+
| 'Europe/Oslo'
|
|
41735
|
+
| 'Europe/Paris'
|
|
41736
|
+
| 'Europe/Podgorica'
|
|
41737
|
+
| 'Europe/Prague'
|
|
41738
|
+
| 'Europe/Riga'
|
|
41739
|
+
| 'Europe/Rome'
|
|
41740
|
+
| 'Europe/Samara'
|
|
41741
|
+
| 'Europe/San_Marino'
|
|
41742
|
+
| 'Europe/Sarajevo'
|
|
41743
|
+
| 'Europe/Saratov'
|
|
41744
|
+
| 'Europe/Simferopol'
|
|
41745
|
+
| 'Europe/Skopje'
|
|
41746
|
+
| 'Europe/Sofia'
|
|
41747
|
+
| 'Europe/Stockholm'
|
|
41748
|
+
| 'Europe/Tallinn'
|
|
41749
|
+
| 'Europe/Tirane'
|
|
41750
|
+
| 'Europe/Ulyanovsk'
|
|
41751
|
+
| 'Europe/Uzhgorod'
|
|
41752
|
+
| 'Europe/Vaduz'
|
|
41753
|
+
| 'Europe/Vatican'
|
|
41754
|
+
| 'Europe/Vienna'
|
|
41755
|
+
| 'Europe/Vilnius'
|
|
41756
|
+
| 'Europe/Volgograd'
|
|
41757
|
+
| 'Europe/Warsaw'
|
|
41758
|
+
| 'Europe/Zagreb'
|
|
41759
|
+
| 'Europe/Zaporozhye'
|
|
41760
|
+
| 'Europe/Zurich'
|
|
41761
|
+
| 'Indian/Antananarivo'
|
|
41762
|
+
| 'Indian/Chagos'
|
|
41763
|
+
| 'Indian/Christmas'
|
|
41764
|
+
| 'Indian/Cocos'
|
|
41765
|
+
| 'Indian/Comoro'
|
|
41766
|
+
| 'Indian/Kerguelen'
|
|
41767
|
+
| 'Indian/Mahe'
|
|
41768
|
+
| 'Indian/Maldives'
|
|
41769
|
+
| 'Indian/Mauritius'
|
|
41770
|
+
| 'Indian/Mayotte'
|
|
41771
|
+
| 'Indian/Reunion'
|
|
41772
|
+
| 'Pacific/Apia'
|
|
41773
|
+
| 'Pacific/Auckland'
|
|
41774
|
+
| 'Pacific/Bougainville'
|
|
41775
|
+
| 'Pacific/Chatham'
|
|
41776
|
+
| 'Pacific/Easter'
|
|
41777
|
+
| 'Pacific/Efate'
|
|
41778
|
+
| 'Pacific/Enderbury'
|
|
41779
|
+
| 'Pacific/Fakaofo'
|
|
41780
|
+
| 'Pacific/Fiji'
|
|
41781
|
+
| 'Pacific/Funafuti'
|
|
41782
|
+
| 'Pacific/Galapagos'
|
|
41783
|
+
| 'Pacific/Gambier'
|
|
41784
|
+
| 'Pacific/Guadalcanal'
|
|
41785
|
+
| 'Pacific/Guam'
|
|
41786
|
+
| 'Pacific/Honolulu'
|
|
41787
|
+
| 'Pacific/Johnston'
|
|
41788
|
+
| 'Pacific/Kiritimati'
|
|
41789
|
+
| 'Pacific/Kosrae'
|
|
41790
|
+
| 'Pacific/Kwajalein'
|
|
41791
|
+
| 'Pacific/Majuro'
|
|
41792
|
+
| 'Pacific/Marquesas'
|
|
41793
|
+
| 'Pacific/Midway'
|
|
41794
|
+
| 'Pacific/Nauru'
|
|
41795
|
+
| 'Pacific/Niue'
|
|
41796
|
+
| 'Pacific/Norfolk'
|
|
41797
|
+
| 'Pacific/Noumea'
|
|
41798
|
+
| 'Pacific/Pago_Pago'
|
|
41799
|
+
| 'Pacific/Palau'
|
|
41800
|
+
| 'Pacific/Pitcairn'
|
|
41801
|
+
| 'Pacific/Ponape'
|
|
41802
|
+
| 'Pacific/Port_Moresby'
|
|
41803
|
+
| 'Pacific/Rarotonga'
|
|
41804
|
+
| 'Pacific/Saipan'
|
|
41805
|
+
| 'Pacific/Tahiti'
|
|
41806
|
+
| 'Pacific/Tarawa'
|
|
41807
|
+
| 'Pacific/Tongatapu'
|
|
41808
|
+
| 'Pacific/Truk'
|
|
41809
|
+
| 'Pacific/Wake'
|
|
41810
|
+
| 'Pacific/Wallis'
|
|
41811
|
+
}
|
|
41812
|
+
| undefined
|
|
41300
41813
|
}[]
|
|
41301
41814
|
}
|
|
41302
41815
|
formData: {}
|
|
@@ -73060,6 +73573,17 @@ export type Routes = {
|
|
|
73060
73573
|
message: string
|
|
73061
73574
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
73062
73575
|
warning_code: 'overprovisioned_access'
|
|
73576
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
73577
|
+
failed_devices?:
|
|
73578
|
+
| {
|
|
73579
|
+
/** Device whose access code could not be revoked. */
|
|
73580
|
+
device_id: string
|
|
73581
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
73582
|
+
error_code: string
|
|
73583
|
+
/** Human-readable description of why revocation failed. */
|
|
73584
|
+
message: string
|
|
73585
|
+
}[]
|
|
73586
|
+
| undefined
|
|
73063
73587
|
}
|
|
73064
73588
|
| {
|
|
73065
73589
|
/** Date and time at which Seam created the warning. */
|
|
@@ -79732,6 +80256,17 @@ export type Routes = {
|
|
|
79732
80256
|
message: string
|
|
79733
80257
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
79734
80258
|
warning_code: 'overprovisioned_access'
|
|
80259
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
80260
|
+
failed_devices?:
|
|
80261
|
+
| {
|
|
80262
|
+
/** Device whose access code could not be revoked. */
|
|
80263
|
+
device_id: string
|
|
80264
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
80265
|
+
error_code: string
|
|
80266
|
+
/** Human-readable description of why revocation failed. */
|
|
80267
|
+
message: string
|
|
80268
|
+
}[]
|
|
80269
|
+
| undefined
|
|
79735
80270
|
}
|
|
79736
80271
|
| {
|
|
79737
80272
|
/** Date and time at which Seam created the warning. */
|
|
@@ -80197,6 +80732,17 @@ export type Routes = {
|
|
|
80197
80732
|
message: string
|
|
80198
80733
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
80199
80734
|
warning_code: 'overprovisioned_access'
|
|
80735
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
80736
|
+
failed_devices?:
|
|
80737
|
+
| {
|
|
80738
|
+
/** Device whose access code could not be revoked. */
|
|
80739
|
+
device_id: string
|
|
80740
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
80741
|
+
error_code: string
|
|
80742
|
+
/** Human-readable description of why revocation failed. */
|
|
80743
|
+
message: string
|
|
80744
|
+
}[]
|
|
80745
|
+
| undefined
|
|
80200
80746
|
}
|
|
80201
80747
|
| {
|
|
80202
80748
|
/** Date and time at which Seam created the warning. */
|
|
@@ -113877,6 +114423,17 @@ export type Routes = {
|
|
|
113877
114423
|
message: string
|
|
113878
114424
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
113879
114425
|
warning_code: 'overprovisioned_access'
|
|
114426
|
+
/** Devices whose access codes could not be revoked during reconciliation. Present when the provider does not support revoking an offline access code (e.g. Dormakaba oracode with exhausted override budget). */
|
|
114427
|
+
failed_devices?:
|
|
114428
|
+
| {
|
|
114429
|
+
/** Device whose access code could not be revoked. */
|
|
114430
|
+
device_id: string
|
|
114431
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
114432
|
+
error_code: string
|
|
114433
|
+
/** Human-readable description of why revocation failed. */
|
|
114434
|
+
message: string
|
|
114435
|
+
}[]
|
|
114436
|
+
| undefined
|
|
113880
114437
|
}
|
|
113881
114438
|
| {
|
|
113882
114439
|
/** Date and time at which Seam created the warning. */
|