@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
package/dist/connect.d.cts
CHANGED
|
@@ -3932,14 +3932,37 @@ declare const access_grant: z.ZodObject<{
|
|
|
3932
3932
|
message: z.ZodString;
|
|
3933
3933
|
} & {
|
|
3934
3934
|
warning_code: z.ZodLiteral<"overprovisioned_access">;
|
|
3935
|
+
failed_devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3936
|
+
device_id: z.ZodString;
|
|
3937
|
+
error_code: z.ZodString;
|
|
3938
|
+
message: z.ZodString;
|
|
3939
|
+
}, "strip", z.ZodTypeAny, {
|
|
3940
|
+
message: string;
|
|
3941
|
+
device_id: string;
|
|
3942
|
+
error_code: string;
|
|
3943
|
+
}, {
|
|
3944
|
+
message: string;
|
|
3945
|
+
device_id: string;
|
|
3946
|
+
error_code: string;
|
|
3947
|
+
}>, "many">>;
|
|
3935
3948
|
}, "strip", z.ZodTypeAny, {
|
|
3936
3949
|
message: string;
|
|
3937
3950
|
created_at: string;
|
|
3938
3951
|
warning_code: "overprovisioned_access";
|
|
3952
|
+
failed_devices?: {
|
|
3953
|
+
message: string;
|
|
3954
|
+
device_id: string;
|
|
3955
|
+
error_code: string;
|
|
3956
|
+
}[] | undefined;
|
|
3939
3957
|
}, {
|
|
3940
3958
|
message: string;
|
|
3941
3959
|
created_at: string;
|
|
3942
3960
|
warning_code: "overprovisioned_access";
|
|
3961
|
+
failed_devices?: {
|
|
3962
|
+
message: string;
|
|
3963
|
+
device_id: string;
|
|
3964
|
+
error_code: string;
|
|
3965
|
+
}[] | undefined;
|
|
3943
3966
|
}>, z.ZodObject<{
|
|
3944
3967
|
created_at: z.ZodString;
|
|
3945
3968
|
message: z.ZodString;
|
|
@@ -4131,6 +4154,11 @@ declare const access_grant: z.ZodObject<{
|
|
|
4131
4154
|
message: string;
|
|
4132
4155
|
created_at: string;
|
|
4133
4156
|
warning_code: "overprovisioned_access";
|
|
4157
|
+
failed_devices?: {
|
|
4158
|
+
message: string;
|
|
4159
|
+
device_id: string;
|
|
4160
|
+
error_code: string;
|
|
4161
|
+
}[] | undefined;
|
|
4134
4162
|
} | {
|
|
4135
4163
|
message: string;
|
|
4136
4164
|
created_at: string;
|
|
@@ -4216,6 +4244,11 @@ declare const access_grant: z.ZodObject<{
|
|
|
4216
4244
|
message: string;
|
|
4217
4245
|
created_at: string;
|
|
4218
4246
|
warning_code: "overprovisioned_access";
|
|
4247
|
+
failed_devices?: {
|
|
4248
|
+
message: string;
|
|
4249
|
+
device_id: string;
|
|
4250
|
+
error_code: string;
|
|
4251
|
+
}[] | undefined;
|
|
4219
4252
|
} | {
|
|
4220
4253
|
message: string;
|
|
4221
4254
|
created_at: string;
|
|
@@ -29261,14 +29294,37 @@ declare const batch: z.ZodObject<{
|
|
|
29261
29294
|
message: z.ZodString;
|
|
29262
29295
|
} & {
|
|
29263
29296
|
warning_code: z.ZodLiteral<"overprovisioned_access">;
|
|
29297
|
+
failed_devices: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
29298
|
+
device_id: z.ZodString;
|
|
29299
|
+
error_code: z.ZodString;
|
|
29300
|
+
message: z.ZodString;
|
|
29301
|
+
}, "strip", z.ZodTypeAny, {
|
|
29302
|
+
message: string;
|
|
29303
|
+
device_id: string;
|
|
29304
|
+
error_code: string;
|
|
29305
|
+
}, {
|
|
29306
|
+
message: string;
|
|
29307
|
+
device_id: string;
|
|
29308
|
+
error_code: string;
|
|
29309
|
+
}>, "many">>;
|
|
29264
29310
|
}, "strip", z.ZodTypeAny, {
|
|
29265
29311
|
message: string;
|
|
29266
29312
|
created_at: string;
|
|
29267
29313
|
warning_code: "overprovisioned_access";
|
|
29314
|
+
failed_devices?: {
|
|
29315
|
+
message: string;
|
|
29316
|
+
device_id: string;
|
|
29317
|
+
error_code: string;
|
|
29318
|
+
}[] | undefined;
|
|
29268
29319
|
}, {
|
|
29269
29320
|
message: string;
|
|
29270
29321
|
created_at: string;
|
|
29271
29322
|
warning_code: "overprovisioned_access";
|
|
29323
|
+
failed_devices?: {
|
|
29324
|
+
message: string;
|
|
29325
|
+
device_id: string;
|
|
29326
|
+
error_code: string;
|
|
29327
|
+
}[] | undefined;
|
|
29272
29328
|
}>, z.ZodObject<{
|
|
29273
29329
|
created_at: z.ZodString;
|
|
29274
29330
|
message: z.ZodString;
|
|
@@ -29460,6 +29516,11 @@ declare const batch: z.ZodObject<{
|
|
|
29460
29516
|
message: string;
|
|
29461
29517
|
created_at: string;
|
|
29462
29518
|
warning_code: "overprovisioned_access";
|
|
29519
|
+
failed_devices?: {
|
|
29520
|
+
message: string;
|
|
29521
|
+
device_id: string;
|
|
29522
|
+
error_code: string;
|
|
29523
|
+
}[] | undefined;
|
|
29463
29524
|
} | {
|
|
29464
29525
|
message: string;
|
|
29465
29526
|
created_at: string;
|
|
@@ -29545,6 +29606,11 @@ declare const batch: z.ZodObject<{
|
|
|
29545
29606
|
message: string;
|
|
29546
29607
|
created_at: string;
|
|
29547
29608
|
warning_code: "overprovisioned_access";
|
|
29609
|
+
failed_devices?: {
|
|
29610
|
+
message: string;
|
|
29611
|
+
device_id: string;
|
|
29612
|
+
error_code: string;
|
|
29613
|
+
}[] | undefined;
|
|
29548
29614
|
} | {
|
|
29549
29615
|
message: string;
|
|
29550
29616
|
created_at: string;
|
|
@@ -40789,6 +40855,11 @@ declare const batch: z.ZodObject<{
|
|
|
40789
40855
|
message: string;
|
|
40790
40856
|
created_at: string;
|
|
40791
40857
|
warning_code: "overprovisioned_access";
|
|
40858
|
+
failed_devices?: {
|
|
40859
|
+
message: string;
|
|
40860
|
+
device_id: string;
|
|
40861
|
+
error_code: string;
|
|
40862
|
+
}[] | undefined;
|
|
40792
40863
|
} | {
|
|
40793
40864
|
message: string;
|
|
40794
40865
|
created_at: string;
|
|
@@ -45713,6 +45784,11 @@ declare const batch: z.ZodObject<{
|
|
|
45713
45784
|
message: string;
|
|
45714
45785
|
created_at: string;
|
|
45715
45786
|
warning_code: "overprovisioned_access";
|
|
45787
|
+
failed_devices?: {
|
|
45788
|
+
message: string;
|
|
45789
|
+
device_id: string;
|
|
45790
|
+
error_code: string;
|
|
45791
|
+
}[] | undefined;
|
|
45716
45792
|
} | {
|
|
45717
45793
|
message: string;
|
|
45718
45794
|
created_at: string;
|
|
@@ -64203,6 +64279,54 @@ declare const _default: {
|
|
|
64203
64279
|
enum: string[];
|
|
64204
64280
|
type: string;
|
|
64205
64281
|
};
|
|
64282
|
+
failed_devices?: never;
|
|
64283
|
+
access_method_ids?: never;
|
|
64284
|
+
device_id?: never;
|
|
64285
|
+
new_code?: never;
|
|
64286
|
+
original_code?: never;
|
|
64287
|
+
};
|
|
64288
|
+
required: string[];
|
|
64289
|
+
type: string;
|
|
64290
|
+
} | {
|
|
64291
|
+
description: string;
|
|
64292
|
+
properties: {
|
|
64293
|
+
created_at: {
|
|
64294
|
+
description: string;
|
|
64295
|
+
format: string;
|
|
64296
|
+
type: string;
|
|
64297
|
+
};
|
|
64298
|
+
failed_devices: {
|
|
64299
|
+
description: string;
|
|
64300
|
+
items: {
|
|
64301
|
+
properties: {
|
|
64302
|
+
device_id: {
|
|
64303
|
+
description: string;
|
|
64304
|
+
format: string;
|
|
64305
|
+
type: string;
|
|
64306
|
+
};
|
|
64307
|
+
error_code: {
|
|
64308
|
+
description: string;
|
|
64309
|
+
type: string;
|
|
64310
|
+
};
|
|
64311
|
+
message: {
|
|
64312
|
+
description: string;
|
|
64313
|
+
type: string;
|
|
64314
|
+
};
|
|
64315
|
+
};
|
|
64316
|
+
required: string[];
|
|
64317
|
+
type: string;
|
|
64318
|
+
};
|
|
64319
|
+
type: string;
|
|
64320
|
+
};
|
|
64321
|
+
message: {
|
|
64322
|
+
description: string;
|
|
64323
|
+
type: string;
|
|
64324
|
+
};
|
|
64325
|
+
warning_code: {
|
|
64326
|
+
description: string;
|
|
64327
|
+
enum: string[];
|
|
64328
|
+
type: string;
|
|
64329
|
+
};
|
|
64206
64330
|
access_method_ids?: never;
|
|
64207
64331
|
device_id?: never;
|
|
64208
64332
|
new_code?: never;
|
|
@@ -64235,6 +64359,7 @@ declare const _default: {
|
|
|
64235
64359
|
enum: string[];
|
|
64236
64360
|
type: string;
|
|
64237
64361
|
};
|
|
64362
|
+
failed_devices?: never;
|
|
64238
64363
|
device_id?: never;
|
|
64239
64364
|
new_code?: never;
|
|
64240
64365
|
original_code?: never;
|
|
@@ -64271,6 +64396,7 @@ declare const _default: {
|
|
|
64271
64396
|
enum: string[];
|
|
64272
64397
|
type: string;
|
|
64273
64398
|
};
|
|
64399
|
+
failed_devices?: never;
|
|
64274
64400
|
access_method_ids?: never;
|
|
64275
64401
|
};
|
|
64276
64402
|
required: string[];
|
|
@@ -64297,6 +64423,7 @@ declare const _default: {
|
|
|
64297
64423
|
enum: string[];
|
|
64298
64424
|
type: string;
|
|
64299
64425
|
};
|
|
64426
|
+
failed_devices?: never;
|
|
64300
64427
|
access_method_ids?: never;
|
|
64301
64428
|
new_code?: never;
|
|
64302
64429
|
original_code?: never;
|
|
@@ -87740,6 +87867,54 @@ declare const _default: {
|
|
|
87740
87867
|
enum: string[];
|
|
87741
87868
|
type: string;
|
|
87742
87869
|
};
|
|
87870
|
+
failed_devices?: never;
|
|
87871
|
+
access_method_ids?: never;
|
|
87872
|
+
device_id?: never;
|
|
87873
|
+
new_code?: never;
|
|
87874
|
+
original_code?: never;
|
|
87875
|
+
};
|
|
87876
|
+
required: string[];
|
|
87877
|
+
type: string;
|
|
87878
|
+
} | {
|
|
87879
|
+
description: string;
|
|
87880
|
+
properties: {
|
|
87881
|
+
created_at: {
|
|
87882
|
+
description: string;
|
|
87883
|
+
format: string;
|
|
87884
|
+
type: string;
|
|
87885
|
+
};
|
|
87886
|
+
failed_devices: {
|
|
87887
|
+
description: string;
|
|
87888
|
+
items: {
|
|
87889
|
+
properties: {
|
|
87890
|
+
device_id: {
|
|
87891
|
+
description: string;
|
|
87892
|
+
format: string;
|
|
87893
|
+
type: string;
|
|
87894
|
+
};
|
|
87895
|
+
error_code: {
|
|
87896
|
+
description: string;
|
|
87897
|
+
type: string;
|
|
87898
|
+
};
|
|
87899
|
+
message: {
|
|
87900
|
+
description: string;
|
|
87901
|
+
type: string;
|
|
87902
|
+
};
|
|
87903
|
+
};
|
|
87904
|
+
required: string[];
|
|
87905
|
+
type: string;
|
|
87906
|
+
};
|
|
87907
|
+
type: string;
|
|
87908
|
+
};
|
|
87909
|
+
message: {
|
|
87910
|
+
description: string;
|
|
87911
|
+
type: string;
|
|
87912
|
+
};
|
|
87913
|
+
warning_code: {
|
|
87914
|
+
description: string;
|
|
87915
|
+
enum: string[];
|
|
87916
|
+
type: string;
|
|
87917
|
+
};
|
|
87743
87918
|
access_method_ids?: never;
|
|
87744
87919
|
device_id?: never;
|
|
87745
87920
|
new_code?: never;
|
|
@@ -87772,6 +87947,7 @@ declare const _default: {
|
|
|
87772
87947
|
enum: string[];
|
|
87773
87948
|
type: string;
|
|
87774
87949
|
};
|
|
87950
|
+
failed_devices?: never;
|
|
87775
87951
|
device_id?: never;
|
|
87776
87952
|
new_code?: never;
|
|
87777
87953
|
original_code?: never;
|
|
@@ -87808,6 +87984,7 @@ declare const _default: {
|
|
|
87808
87984
|
enum: string[];
|
|
87809
87985
|
type: string;
|
|
87810
87986
|
};
|
|
87987
|
+
failed_devices?: never;
|
|
87811
87988
|
access_method_ids?: never;
|
|
87812
87989
|
};
|
|
87813
87990
|
required: string[];
|
|
@@ -87834,6 +88011,7 @@ declare const _default: {
|
|
|
87834
88011
|
enum: string[];
|
|
87835
88012
|
type: string;
|
|
87836
88013
|
};
|
|
88014
|
+
failed_devices?: never;
|
|
87837
88015
|
access_method_ids?: never;
|
|
87838
88016
|
new_code?: never;
|
|
87839
88017
|
original_code?: never;
|
|
@@ -88232,6 +88410,54 @@ declare const _default: {
|
|
|
88232
88410
|
enum: string[];
|
|
88233
88411
|
type: string;
|
|
88234
88412
|
};
|
|
88413
|
+
failed_devices?: never;
|
|
88414
|
+
access_method_ids?: never;
|
|
88415
|
+
device_id?: never;
|
|
88416
|
+
new_code?: never;
|
|
88417
|
+
original_code?: never;
|
|
88418
|
+
};
|
|
88419
|
+
required: string[];
|
|
88420
|
+
type: string;
|
|
88421
|
+
} | {
|
|
88422
|
+
description: string;
|
|
88423
|
+
properties: {
|
|
88424
|
+
created_at: {
|
|
88425
|
+
description: string;
|
|
88426
|
+
format: string;
|
|
88427
|
+
type: string;
|
|
88428
|
+
};
|
|
88429
|
+
failed_devices: {
|
|
88430
|
+
description: string;
|
|
88431
|
+
items: {
|
|
88432
|
+
properties: {
|
|
88433
|
+
device_id: {
|
|
88434
|
+
description: string;
|
|
88435
|
+
format: string;
|
|
88436
|
+
type: string;
|
|
88437
|
+
};
|
|
88438
|
+
error_code: {
|
|
88439
|
+
description: string;
|
|
88440
|
+
type: string;
|
|
88441
|
+
};
|
|
88442
|
+
message: {
|
|
88443
|
+
description: string;
|
|
88444
|
+
type: string;
|
|
88445
|
+
};
|
|
88446
|
+
};
|
|
88447
|
+
required: string[];
|
|
88448
|
+
type: string;
|
|
88449
|
+
};
|
|
88450
|
+
type: string;
|
|
88451
|
+
};
|
|
88452
|
+
message: {
|
|
88453
|
+
description: string;
|
|
88454
|
+
type: string;
|
|
88455
|
+
};
|
|
88456
|
+
warning_code: {
|
|
88457
|
+
description: string;
|
|
88458
|
+
enum: string[];
|
|
88459
|
+
type: string;
|
|
88460
|
+
};
|
|
88235
88461
|
access_method_ids?: never;
|
|
88236
88462
|
device_id?: never;
|
|
88237
88463
|
new_code?: never;
|
|
@@ -88264,6 +88490,7 @@ declare const _default: {
|
|
|
88264
88490
|
enum: string[];
|
|
88265
88491
|
type: string;
|
|
88266
88492
|
};
|
|
88493
|
+
failed_devices?: never;
|
|
88267
88494
|
device_id?: never;
|
|
88268
88495
|
new_code?: never;
|
|
88269
88496
|
original_code?: never;
|
|
@@ -88300,6 +88527,7 @@ declare const _default: {
|
|
|
88300
88527
|
enum: string[];
|
|
88301
88528
|
type: string;
|
|
88302
88529
|
};
|
|
88530
|
+
failed_devices?: never;
|
|
88303
88531
|
access_method_ids?: never;
|
|
88304
88532
|
};
|
|
88305
88533
|
required: string[];
|
|
@@ -88326,6 +88554,7 @@ declare const _default: {
|
|
|
88326
88554
|
enum: string[];
|
|
88327
88555
|
type: string;
|
|
88328
88556
|
};
|
|
88557
|
+
failed_devices?: never;
|
|
88329
88558
|
access_method_ids?: never;
|
|
88330
88559
|
new_code?: never;
|
|
88331
88560
|
original_code?: never;
|
|
@@ -88751,6 +88980,54 @@ declare const _default: {
|
|
|
88751
88980
|
enum: string[];
|
|
88752
88981
|
type: string;
|
|
88753
88982
|
};
|
|
88983
|
+
failed_devices?: never;
|
|
88984
|
+
access_method_ids?: never;
|
|
88985
|
+
device_id?: never;
|
|
88986
|
+
new_code?: never;
|
|
88987
|
+
original_code?: never;
|
|
88988
|
+
};
|
|
88989
|
+
required: string[];
|
|
88990
|
+
type: string;
|
|
88991
|
+
} | {
|
|
88992
|
+
description: string;
|
|
88993
|
+
properties: {
|
|
88994
|
+
created_at: {
|
|
88995
|
+
description: string;
|
|
88996
|
+
format: string;
|
|
88997
|
+
type: string;
|
|
88998
|
+
};
|
|
88999
|
+
failed_devices: {
|
|
89000
|
+
description: string;
|
|
89001
|
+
items: {
|
|
89002
|
+
properties: {
|
|
89003
|
+
device_id: {
|
|
89004
|
+
description: string;
|
|
89005
|
+
format: string;
|
|
89006
|
+
type: string;
|
|
89007
|
+
};
|
|
89008
|
+
error_code: {
|
|
89009
|
+
description: string;
|
|
89010
|
+
type: string;
|
|
89011
|
+
};
|
|
89012
|
+
message: {
|
|
89013
|
+
description: string;
|
|
89014
|
+
type: string;
|
|
89015
|
+
};
|
|
89016
|
+
};
|
|
89017
|
+
required: string[];
|
|
89018
|
+
type: string;
|
|
89019
|
+
};
|
|
89020
|
+
type: string;
|
|
89021
|
+
};
|
|
89022
|
+
message: {
|
|
89023
|
+
description: string;
|
|
89024
|
+
type: string;
|
|
89025
|
+
};
|
|
89026
|
+
warning_code: {
|
|
89027
|
+
description: string;
|
|
89028
|
+
enum: string[];
|
|
89029
|
+
type: string;
|
|
89030
|
+
};
|
|
88754
89031
|
access_method_ids?: never;
|
|
88755
89032
|
device_id?: never;
|
|
88756
89033
|
new_code?: never;
|
|
@@ -88783,6 +89060,7 @@ declare const _default: {
|
|
|
88783
89060
|
enum: string[];
|
|
88784
89061
|
type: string;
|
|
88785
89062
|
};
|
|
89063
|
+
failed_devices?: never;
|
|
88786
89064
|
device_id?: never;
|
|
88787
89065
|
new_code?: never;
|
|
88788
89066
|
original_code?: never;
|
|
@@ -88819,6 +89097,7 @@ declare const _default: {
|
|
|
88819
89097
|
enum: string[];
|
|
88820
89098
|
type: string;
|
|
88821
89099
|
};
|
|
89100
|
+
failed_devices?: never;
|
|
88822
89101
|
access_method_ids?: never;
|
|
88823
89102
|
};
|
|
88824
89103
|
required: string[];
|
|
@@ -88845,6 +89124,7 @@ declare const _default: {
|
|
|
88845
89124
|
enum: string[];
|
|
88846
89125
|
type: string;
|
|
88847
89126
|
};
|
|
89127
|
+
failed_devices?: never;
|
|
88848
89128
|
access_method_ids?: never;
|
|
88849
89129
|
new_code?: never;
|
|
88850
89130
|
original_code?: never;
|
|
@@ -89273,6 +89553,54 @@ declare const _default: {
|
|
|
89273
89553
|
enum: string[];
|
|
89274
89554
|
type: string;
|
|
89275
89555
|
};
|
|
89556
|
+
failed_devices?: never;
|
|
89557
|
+
access_method_ids?: never;
|
|
89558
|
+
device_id?: never;
|
|
89559
|
+
new_code?: never;
|
|
89560
|
+
original_code?: never;
|
|
89561
|
+
};
|
|
89562
|
+
required: string[];
|
|
89563
|
+
type: string;
|
|
89564
|
+
} | {
|
|
89565
|
+
description: string;
|
|
89566
|
+
properties: {
|
|
89567
|
+
created_at: {
|
|
89568
|
+
description: string;
|
|
89569
|
+
format: string;
|
|
89570
|
+
type: string;
|
|
89571
|
+
};
|
|
89572
|
+
failed_devices: {
|
|
89573
|
+
description: string;
|
|
89574
|
+
items: {
|
|
89575
|
+
properties: {
|
|
89576
|
+
device_id: {
|
|
89577
|
+
description: string;
|
|
89578
|
+
format: string;
|
|
89579
|
+
type: string;
|
|
89580
|
+
};
|
|
89581
|
+
error_code: {
|
|
89582
|
+
description: string;
|
|
89583
|
+
type: string;
|
|
89584
|
+
};
|
|
89585
|
+
message: {
|
|
89586
|
+
description: string;
|
|
89587
|
+
type: string;
|
|
89588
|
+
};
|
|
89589
|
+
};
|
|
89590
|
+
required: string[];
|
|
89591
|
+
type: string;
|
|
89592
|
+
};
|
|
89593
|
+
type: string;
|
|
89594
|
+
};
|
|
89595
|
+
message: {
|
|
89596
|
+
description: string;
|
|
89597
|
+
type: string;
|
|
89598
|
+
};
|
|
89599
|
+
warning_code: {
|
|
89600
|
+
description: string;
|
|
89601
|
+
enum: string[];
|
|
89602
|
+
type: string;
|
|
89603
|
+
};
|
|
89276
89604
|
access_method_ids?: never;
|
|
89277
89605
|
device_id?: never;
|
|
89278
89606
|
new_code?: never;
|
|
@@ -89305,6 +89633,7 @@ declare const _default: {
|
|
|
89305
89633
|
enum: string[];
|
|
89306
89634
|
type: string;
|
|
89307
89635
|
};
|
|
89636
|
+
failed_devices?: never;
|
|
89308
89637
|
device_id?: never;
|
|
89309
89638
|
new_code?: never;
|
|
89310
89639
|
original_code?: never;
|
|
@@ -89341,6 +89670,7 @@ declare const _default: {
|
|
|
89341
89670
|
enum: string[];
|
|
89342
89671
|
type: string;
|
|
89343
89672
|
};
|
|
89673
|
+
failed_devices?: never;
|
|
89344
89674
|
access_method_ids?: never;
|
|
89345
89675
|
};
|
|
89346
89676
|
required: string[];
|
|
@@ -89367,6 +89697,7 @@ declare const _default: {
|
|
|
89367
89697
|
enum: string[];
|
|
89368
89698
|
type: string;
|
|
89369
89699
|
};
|
|
89700
|
+
failed_devices?: never;
|
|
89370
89701
|
access_method_ids?: never;
|
|
89371
89702
|
new_code?: never;
|
|
89372
89703
|
original_code?: never;
|
|
@@ -106169,6 +106500,18 @@ declare const _default: {
|
|
|
106169
106500
|
format: string;
|
|
106170
106501
|
type: string;
|
|
106171
106502
|
};
|
|
106503
|
+
schlage_metadata: {
|
|
106504
|
+
description: string;
|
|
106505
|
+
properties: {
|
|
106506
|
+
time_zone: {
|
|
106507
|
+
description: string;
|
|
106508
|
+
enum: string[];
|
|
106509
|
+
type: string;
|
|
106510
|
+
};
|
|
106511
|
+
};
|
|
106512
|
+
required: string[];
|
|
106513
|
+
type: string;
|
|
106514
|
+
};
|
|
106172
106515
|
ultraloq_metadata: {
|
|
106173
106516
|
description: string;
|
|
106174
106517
|
properties: {
|
|
@@ -147871,6 +148214,15 @@ type Routes = {
|
|
|
147871
148214
|
message: string;
|
|
147872
148215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
147873
148216
|
warning_code: 'overprovisioned_access';
|
|
148217
|
+
/** 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). */
|
|
148218
|
+
failed_devices?: {
|
|
148219
|
+
/** Device whose access code could not be revoked. */
|
|
148220
|
+
device_id: string;
|
|
148221
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
148222
|
+
error_code: string;
|
|
148223
|
+
/** Human-readable description of why revocation failed. */
|
|
148224
|
+
message: string;
|
|
148225
|
+
}[] | undefined;
|
|
147874
148226
|
} | {
|
|
147875
148227
|
/** Date and time at which Seam created the warning. */
|
|
147876
148228
|
created_at: string;
|
|
@@ -148059,6 +148411,15 @@ type Routes = {
|
|
|
148059
148411
|
message: string;
|
|
148060
148412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148061
148413
|
warning_code: 'overprovisioned_access';
|
|
148414
|
+
/** 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). */
|
|
148415
|
+
failed_devices?: {
|
|
148416
|
+
/** Device whose access code could not be revoked. */
|
|
148417
|
+
device_id: string;
|
|
148418
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
148419
|
+
error_code: string;
|
|
148420
|
+
/** Human-readable description of why revocation failed. */
|
|
148421
|
+
message: string;
|
|
148422
|
+
}[] | undefined;
|
|
148062
148423
|
} | {
|
|
148063
148424
|
/** Date and time at which Seam created the warning. */
|
|
148064
148425
|
created_at: string;
|
|
@@ -150330,6 +150691,15 @@ type Routes = {
|
|
|
150330
150691
|
message: string;
|
|
150331
150692
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150332
150693
|
warning_code: 'overprovisioned_access';
|
|
150694
|
+
/** 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). */
|
|
150695
|
+
failed_devices?: {
|
|
150696
|
+
/** Device whose access code could not be revoked. */
|
|
150697
|
+
device_id: string;
|
|
150698
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
150699
|
+
error_code: string;
|
|
150700
|
+
/** Human-readable description of why revocation failed. */
|
|
150701
|
+
message: string;
|
|
150702
|
+
}[] | undefined;
|
|
150333
150703
|
} | {
|
|
150334
150704
|
/** Date and time at which Seam created the warning. */
|
|
150335
150705
|
created_at: string;
|
|
@@ -150520,6 +150890,15 @@ type Routes = {
|
|
|
150520
150890
|
message: string;
|
|
150521
150891
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150522
150892
|
warning_code: 'overprovisioned_access';
|
|
150893
|
+
/** 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). */
|
|
150894
|
+
failed_devices?: {
|
|
150895
|
+
/** Device whose access code could not be revoked. */
|
|
150896
|
+
device_id: string;
|
|
150897
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
150898
|
+
error_code: string;
|
|
150899
|
+
/** Human-readable description of why revocation failed. */
|
|
150900
|
+
message: string;
|
|
150901
|
+
}[] | undefined;
|
|
150523
150902
|
} | {
|
|
150524
150903
|
/** Date and time at which Seam created the warning. */
|
|
150525
150904
|
created_at: string;
|
|
@@ -150684,6 +151063,15 @@ type Routes = {
|
|
|
150684
151063
|
message: string;
|
|
150685
151064
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150686
151065
|
warning_code: 'overprovisioned_access';
|
|
151066
|
+
/** 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). */
|
|
151067
|
+
failed_devices?: {
|
|
151068
|
+
/** Device whose access code could not be revoked. */
|
|
151069
|
+
device_id: string;
|
|
151070
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
151071
|
+
error_code: string;
|
|
151072
|
+
/** Human-readable description of why revocation failed. */
|
|
151073
|
+
message: string;
|
|
151074
|
+
}[] | undefined;
|
|
150687
151075
|
} | {
|
|
150688
151076
|
/** Date and time at which Seam created the warning. */
|
|
150689
151077
|
created_at: string;
|
|
@@ -150857,6 +151245,15 @@ type Routes = {
|
|
|
150857
151245
|
message: string;
|
|
150858
151246
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150859
151247
|
warning_code: 'overprovisioned_access';
|
|
151248
|
+
/** 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). */
|
|
151249
|
+
failed_devices?: {
|
|
151250
|
+
/** Device whose access code could not be revoked. */
|
|
151251
|
+
device_id: string;
|
|
151252
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
151253
|
+
error_code: string;
|
|
151254
|
+
/** Human-readable description of why revocation failed. */
|
|
151255
|
+
message: string;
|
|
151256
|
+
}[] | undefined;
|
|
150860
151257
|
} | {
|
|
150861
151258
|
/** Date and time at which Seam created the warning. */
|
|
150862
151259
|
created_at: string;
|
|
@@ -154042,6 +154439,15 @@ type Routes = {
|
|
|
154042
154439
|
message: string;
|
|
154043
154440
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
154044
154441
|
warning_code: 'overprovisioned_access';
|
|
154442
|
+
/** 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). */
|
|
154443
|
+
failed_devices?: {
|
|
154444
|
+
/** Device whose access code could not be revoked. */
|
|
154445
|
+
device_id: string;
|
|
154446
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
154447
|
+
error_code: string;
|
|
154448
|
+
/** Human-readable description of why revocation failed. */
|
|
154449
|
+
message: string;
|
|
154450
|
+
}[] | undefined;
|
|
154045
154451
|
} | {
|
|
154046
154452
|
/** Date and time at which Seam created the warning. */
|
|
154047
154453
|
created_at: string;
|
|
@@ -171818,6 +172224,11 @@ type Routes = {
|
|
|
171818
172224
|
/** IANA timezone for the Ultraloq device */
|
|
171819
172225
|
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
171820
172226
|
} | undefined;
|
|
172227
|
+
/** Schlage-specific metadata to update */
|
|
172228
|
+
schlage_metadata?: {
|
|
172229
|
+
/** IANA timezone for the Schlage device */
|
|
172230
|
+
time_zone: 'Africa/Abidjan' | 'Africa/Accra' | 'Africa/Addis_Ababa' | 'Africa/Algiers' | 'Africa/Asmera' | 'Africa/Bamako' | 'Africa/Bangui' | 'Africa/Banjul' | 'Africa/Bissau' | 'Africa/Blantyre' | 'Africa/Brazzaville' | 'Africa/Bujumbura' | 'Africa/Cairo' | 'Africa/Casablanca' | 'Africa/Ceuta' | 'Africa/Conakry' | 'Africa/Dakar' | 'Africa/Dar_es_Salaam' | 'Africa/Djibouti' | 'Africa/Douala' | 'Africa/El_Aaiun' | 'Africa/Freetown' | 'Africa/Gaborone' | 'Africa/Harare' | 'Africa/Johannesburg' | 'Africa/Juba' | 'Africa/Kampala' | 'Africa/Khartoum' | 'Africa/Kigali' | 'Africa/Kinshasa' | 'Africa/Lagos' | 'Africa/Libreville' | 'Africa/Lome' | 'Africa/Luanda' | 'Africa/Lubumbashi' | 'Africa/Lusaka' | 'Africa/Malabo' | 'Africa/Maputo' | 'Africa/Maseru' | 'Africa/Mbabane' | 'Africa/Mogadishu' | 'Africa/Monrovia' | 'Africa/Nairobi' | 'Africa/Ndjamena' | 'Africa/Niamey' | 'Africa/Nouakchott' | 'Africa/Ouagadougou' | 'Africa/Porto-Novo' | 'Africa/Sao_Tome' | 'Africa/Tripoli' | 'Africa/Tunis' | 'Africa/Windhoek' | 'America/Adak' | 'America/Anchorage' | 'America/Anguilla' | 'America/Antigua' | 'America/Araguaina' | 'America/Argentina/La_Rioja' | 'America/Argentina/Rio_Gallegos' | 'America/Argentina/Salta' | 'America/Argentina/San_Juan' | 'America/Argentina/San_Luis' | 'America/Argentina/Tucuman' | 'America/Argentina/Ushuaia' | 'America/Aruba' | 'America/Asuncion' | 'America/Bahia' | 'America/Bahia_Banderas' | 'America/Barbados' | 'America/Belem' | 'America/Belize' | 'America/Blanc-Sablon' | 'America/Boa_Vista' | 'America/Bogota' | 'America/Boise' | 'America/Buenos_Aires' | 'America/Cambridge_Bay' | 'America/Campo_Grande' | 'America/Cancun' | 'America/Caracas' | 'America/Catamarca' | 'America/Cayenne' | 'America/Cayman' | 'America/Chicago' | 'America/Chihuahua' | 'America/Ciudad_Juarez' | 'America/Coral_Harbour' | 'America/Cordoba' | 'America/Costa_Rica' | 'America/Creston' | 'America/Cuiaba' | 'America/Curacao' | 'America/Danmarkshavn' | 'America/Dawson' | 'America/Dawson_Creek' | 'America/Denver' | 'America/Detroit' | 'America/Dominica' | 'America/Edmonton' | 'America/Eirunepe' | 'America/El_Salvador' | 'America/Fort_Nelson' | 'America/Fortaleza' | 'America/Glace_Bay' | 'America/Godthab' | 'America/Goose_Bay' | 'America/Grand_Turk' | 'America/Grenada' | 'America/Guadeloupe' | 'America/Guatemala' | 'America/Guayaquil' | 'America/Guyana' | 'America/Halifax' | 'America/Havana' | 'America/Hermosillo' | 'America/Indiana/Knox' | 'America/Indiana/Marengo' | 'America/Indiana/Petersburg' | 'America/Indiana/Tell_City' | 'America/Indiana/Vevay' | 'America/Indiana/Vincennes' | 'America/Indiana/Winamac' | 'America/Indianapolis' | 'America/Inuvik' | 'America/Iqaluit' | 'America/Jamaica' | 'America/Jujuy' | 'America/Juneau' | 'America/Kentucky/Monticello' | 'America/Kralendijk' | 'America/La_Paz' | 'America/Lima' | 'America/Los_Angeles' | 'America/Louisville' | 'America/Lower_Princes' | 'America/Maceio' | 'America/Managua' | 'America/Manaus' | 'America/Marigot' | 'America/Martinique' | 'America/Matamoros' | 'America/Mazatlan' | 'America/Mendoza' | 'America/Menominee' | 'America/Merida' | 'America/Metlakatla' | 'America/Mexico_City' | 'America/Miquelon' | 'America/Moncton' | 'America/Monterrey' | 'America/Montevideo' | 'America/Montreal' | 'America/Montserrat' | 'America/Nassau' | 'America/New_York' | 'America/Nipigon' | 'America/Nome' | 'America/Noronha' | 'America/North_Dakota/Beulah' | 'America/North_Dakota/Center' | 'America/North_Dakota/New_Salem' | 'America/Ojinaga' | 'America/Panama' | 'America/Pangnirtung' | 'America/Paramaribo' | 'America/Phoenix' | 'America/Port-au-Prince' | 'America/Port_of_Spain' | 'America/Porto_Velho' | 'America/Puerto_Rico' | 'America/Punta_Arenas' | 'America/Rainy_River' | 'America/Rankin_Inlet' | 'America/Recife' | 'America/Regina' | 'America/Resolute' | 'America/Rio_Branco' | 'America/Santa_Isabel' | 'America/Santarem' | 'America/Santiago' | 'America/Santo_Domingo' | 'America/Sao_Paulo' | 'America/Scoresbysund' | 'America/Sitka' | 'America/St_Barthelemy' | 'America/St_Johns' | 'America/St_Kitts' | 'America/St_Lucia' | 'America/St_Thomas' | 'America/St_Vincent' | 'America/Swift_Current' | 'America/Tegucigalpa' | 'America/Thule' | 'America/Thunder_Bay' | 'America/Tijuana' | 'America/Toronto' | 'America/Tortola' | 'America/Vancouver' | 'America/Whitehorse' | 'America/Winnipeg' | 'America/Yakutat' | 'America/Yellowknife' | 'Antarctica/Casey' | 'Antarctica/Davis' | 'Antarctica/DumontDUrville' | 'Antarctica/Macquarie' | 'Antarctica/Mawson' | 'Antarctica/McMurdo' | 'Antarctica/Palmer' | 'Antarctica/Rothera' | 'Antarctica/Syowa' | 'Antarctica/Troll' | 'Antarctica/Vostok' | 'Arctic/Longyearbyen' | 'Asia/Aden' | 'Asia/Almaty' | 'Asia/Amman' | 'Asia/Anadyr' | 'Asia/Aqtau' | 'Asia/Aqtobe' | 'Asia/Ashgabat' | 'Asia/Atyrau' | 'Asia/Baghdad' | 'Asia/Bahrain' | 'Asia/Baku' | 'Asia/Bangkok' | 'Asia/Barnaul' | 'Asia/Beirut' | 'Asia/Bishkek' | 'Asia/Brunei' | 'Asia/Calcutta' | 'Asia/Chita' | 'Asia/Choibalsan' | 'Asia/Colombo' | 'Asia/Damascus' | 'Asia/Dhaka' | 'Asia/Dili' | 'Asia/Dubai' | 'Asia/Dushanbe' | 'Asia/Famagusta' | 'Asia/Gaza' | 'Asia/Hebron' | 'Asia/Hong_Kong' | 'Asia/Hovd' | 'Asia/Irkutsk' | 'Asia/Jakarta' | 'Asia/Jayapura' | 'Asia/Jerusalem' | 'Asia/Kabul' | 'Asia/Kamchatka' | 'Asia/Karachi' | 'Asia/Katmandu' | 'Asia/Khandyga' | 'Asia/Krasnoyarsk' | 'Asia/Kuala_Lumpur' | 'Asia/Kuching' | 'Asia/Kuwait' | 'Asia/Macau' | 'Asia/Magadan' | 'Asia/Makassar' | 'Asia/Manila' | 'Asia/Muscat' | 'Asia/Nicosia' | 'Asia/Novokuznetsk' | 'Asia/Novosibirsk' | 'Asia/Omsk' | 'Asia/Oral' | 'Asia/Phnom_Penh' | 'Asia/Pontianak' | 'Asia/Pyongyang' | 'Asia/Qatar' | 'Asia/Qostanay' | 'Asia/Qyzylorda' | 'Asia/Rangoon' | 'Asia/Riyadh' | 'Asia/Saigon' | 'Asia/Sakhalin' | 'Asia/Samarkand' | 'Asia/Seoul' | 'Asia/Shanghai' | 'Asia/Singapore' | 'Asia/Srednekolymsk' | 'Asia/Taipei' | 'Asia/Tashkent' | 'Asia/Tbilisi' | 'Asia/Tehran' | 'Asia/Thimphu' | 'Asia/Tokyo' | 'Asia/Tomsk' | 'Asia/Ulaanbaatar' | 'Asia/Urumqi' | 'Asia/Ust-Nera' | 'Asia/Vientiane' | 'Asia/Vladivostok' | 'Asia/Yakutsk' | 'Asia/Yekaterinburg' | 'Asia/Yerevan' | 'Atlantic/Azores' | 'Atlantic/Bermuda' | 'Atlantic/Canary' | 'Atlantic/Cape_Verde' | 'Atlantic/Faeroe' | 'Atlantic/Madeira' | 'Atlantic/Reykjavik' | 'Atlantic/South_Georgia' | 'Atlantic/St_Helena' | 'Atlantic/Stanley' | 'Australia/Adelaide' | 'Australia/Brisbane' | 'Australia/Broken_Hill' | 'Australia/Currie' | 'Australia/Darwin' | 'Australia/Eucla' | 'Australia/Hobart' | 'Australia/Lindeman' | 'Australia/Lord_Howe' | 'Australia/Melbourne' | 'Australia/Perth' | 'Australia/Sydney' | 'Europe/Amsterdam' | 'Europe/Andorra' | 'Europe/Astrakhan' | 'Europe/Athens' | 'Europe/Belgrade' | 'Europe/Berlin' | 'Europe/Bratislava' | 'Europe/Brussels' | 'Europe/Bucharest' | 'Europe/Budapest' | 'Europe/Busingen' | 'Europe/Chisinau' | 'Europe/Copenhagen' | 'Europe/Dublin' | 'Europe/Gibraltar' | 'Europe/Guernsey' | 'Europe/Helsinki' | 'Europe/Isle_of_Man' | 'Europe/Istanbul' | 'Europe/Jersey' | 'Europe/Kaliningrad' | 'Europe/Kiev' | 'Europe/Kirov' | 'Europe/Lisbon' | 'Europe/Ljubljana' | 'Europe/London' | 'Europe/Luxembourg' | 'Europe/Madrid' | 'Europe/Malta' | 'Europe/Mariehamn' | 'Europe/Minsk' | 'Europe/Monaco' | 'Europe/Moscow' | 'Europe/Oslo' | 'Europe/Paris' | 'Europe/Podgorica' | 'Europe/Prague' | 'Europe/Riga' | 'Europe/Rome' | 'Europe/Samara' | 'Europe/San_Marino' | 'Europe/Sarajevo' | 'Europe/Saratov' | 'Europe/Simferopol' | 'Europe/Skopje' | 'Europe/Sofia' | 'Europe/Stockholm' | 'Europe/Tallinn' | 'Europe/Tirane' | 'Europe/Ulyanovsk' | 'Europe/Uzhgorod' | 'Europe/Vaduz' | 'Europe/Vatican' | 'Europe/Vienna' | 'Europe/Vilnius' | 'Europe/Volgograd' | 'Europe/Warsaw' | 'Europe/Zagreb' | 'Europe/Zaporozhye' | 'Europe/Zurich' | 'Indian/Antananarivo' | 'Indian/Chagos' | 'Indian/Christmas' | 'Indian/Cocos' | 'Indian/Comoro' | 'Indian/Kerguelen' | 'Indian/Mahe' | 'Indian/Maldives' | 'Indian/Mauritius' | 'Indian/Mayotte' | 'Indian/Reunion' | 'Pacific/Apia' | 'Pacific/Auckland' | 'Pacific/Bougainville' | 'Pacific/Chatham' | 'Pacific/Easter' | 'Pacific/Efate' | 'Pacific/Enderbury' | 'Pacific/Fakaofo' | 'Pacific/Fiji' | 'Pacific/Funafuti' | 'Pacific/Galapagos' | 'Pacific/Gambier' | 'Pacific/Guadalcanal' | 'Pacific/Guam' | 'Pacific/Honolulu' | 'Pacific/Johnston' | 'Pacific/Kiritimati' | 'Pacific/Kosrae' | 'Pacific/Kwajalein' | 'Pacific/Majuro' | 'Pacific/Marquesas' | 'Pacific/Midway' | 'Pacific/Nauru' | 'Pacific/Niue' | 'Pacific/Norfolk' | 'Pacific/Noumea' | 'Pacific/Pago_Pago' | 'Pacific/Palau' | 'Pacific/Pitcairn' | 'Pacific/Ponape' | 'Pacific/Port_Moresby' | 'Pacific/Rarotonga' | 'Pacific/Saipan' | 'Pacific/Tahiti' | 'Pacific/Tarawa' | 'Pacific/Tongatapu' | 'Pacific/Truk' | 'Pacific/Wake' | 'Pacific/Wallis';
|
|
172231
|
+
} | undefined;
|
|
171821
172232
|
}[];
|
|
171822
172233
|
};
|
|
171823
172234
|
formData: {};
|
|
@@ -198378,6 +198789,15 @@ type Routes = {
|
|
|
198378
198789
|
message: string;
|
|
198379
198790
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
198380
198791
|
warning_code: 'overprovisioned_access';
|
|
198792
|
+
/** 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). */
|
|
198793
|
+
failed_devices?: {
|
|
198794
|
+
/** Device whose access code could not be revoked. */
|
|
198795
|
+
device_id: string;
|
|
198796
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
198797
|
+
error_code: string;
|
|
198798
|
+
/** Human-readable description of why revocation failed. */
|
|
198799
|
+
message: string;
|
|
198800
|
+
}[] | undefined;
|
|
198381
198801
|
} | {
|
|
198382
198802
|
/** Date and time at which Seam created the warning. */
|
|
198383
198803
|
created_at: string;
|
|
@@ -204009,6 +204429,15 @@ type Routes = {
|
|
|
204009
204429
|
message: string;
|
|
204010
204430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204011
204431
|
warning_code: 'overprovisioned_access';
|
|
204432
|
+
/** 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). */
|
|
204433
|
+
failed_devices?: {
|
|
204434
|
+
/** Device whose access code could not be revoked. */
|
|
204435
|
+
device_id: string;
|
|
204436
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
204437
|
+
error_code: string;
|
|
204438
|
+
/** Human-readable description of why revocation failed. */
|
|
204439
|
+
message: string;
|
|
204440
|
+
}[] | undefined;
|
|
204012
204441
|
} | {
|
|
204013
204442
|
/** Date and time at which Seam created the warning. */
|
|
204014
204443
|
created_at: string;
|
|
@@ -204435,6 +204864,15 @@ type Routes = {
|
|
|
204435
204864
|
message: string;
|
|
204436
204865
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204437
204866
|
warning_code: 'overprovisioned_access';
|
|
204867
|
+
/** 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). */
|
|
204868
|
+
failed_devices?: {
|
|
204869
|
+
/** Device whose access code could not be revoked. */
|
|
204870
|
+
device_id: string;
|
|
204871
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
204872
|
+
error_code: string;
|
|
204873
|
+
/** Human-readable description of why revocation failed. */
|
|
204874
|
+
message: string;
|
|
204875
|
+
}[] | undefined;
|
|
204438
204876
|
} | {
|
|
204439
204877
|
/** Date and time at which Seam created the warning. */
|
|
204440
204878
|
created_at: string;
|
|
@@ -232767,6 +233205,15 @@ type Routes = {
|
|
|
232767
233205
|
message: string;
|
|
232768
233206
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
232769
233207
|
warning_code: 'overprovisioned_access';
|
|
233208
|
+
/** 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). */
|
|
233209
|
+
failed_devices?: {
|
|
233210
|
+
/** Device whose access code could not be revoked. */
|
|
233211
|
+
device_id: string;
|
|
233212
|
+
/** Reason the access code could not be revoked (e.g. `offline_access_code_not_revocable`). */
|
|
233213
|
+
error_code: string;
|
|
233214
|
+
/** Human-readable description of why revocation failed. */
|
|
233215
|
+
message: string;
|
|
233216
|
+
}[] | undefined;
|
|
232770
233217
|
} | {
|
|
232771
233218
|
/** Date and time at which Seam created the warning. */
|
|
232772
233219
|
created_at: string;
|