@seamapi/types 1.798.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 +142 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +430 -0
- package/dist/index.cjs +142 -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 +255 -0
- package/lib/seam/connect/openapi.js +131 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +99 -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 +151 -0
- package/src/lib/seam/connect/route-types.ts +121 -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;
|
|
@@ -147883,6 +148214,15 @@ type Routes = {
|
|
|
147883
148214
|
message: string;
|
|
147884
148215
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
147885
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;
|
|
147886
148226
|
} | {
|
|
147887
148227
|
/** Date and time at which Seam created the warning. */
|
|
147888
148228
|
created_at: string;
|
|
@@ -148071,6 +148411,15 @@ type Routes = {
|
|
|
148071
148411
|
message: string;
|
|
148072
148412
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
148073
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;
|
|
148074
148423
|
} | {
|
|
148075
148424
|
/** Date and time at which Seam created the warning. */
|
|
148076
148425
|
created_at: string;
|
|
@@ -150342,6 +150691,15 @@ type Routes = {
|
|
|
150342
150691
|
message: string;
|
|
150343
150692
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150344
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;
|
|
150345
150703
|
} | {
|
|
150346
150704
|
/** Date and time at which Seam created the warning. */
|
|
150347
150705
|
created_at: string;
|
|
@@ -150532,6 +150890,15 @@ type Routes = {
|
|
|
150532
150890
|
message: string;
|
|
150533
150891
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150534
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;
|
|
150535
150902
|
} | {
|
|
150536
150903
|
/** Date and time at which Seam created the warning. */
|
|
150537
150904
|
created_at: string;
|
|
@@ -150696,6 +151063,15 @@ type Routes = {
|
|
|
150696
151063
|
message: string;
|
|
150697
151064
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150698
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;
|
|
150699
151075
|
} | {
|
|
150700
151076
|
/** Date and time at which Seam created the warning. */
|
|
150701
151077
|
created_at: string;
|
|
@@ -150869,6 +151245,15 @@ type Routes = {
|
|
|
150869
151245
|
message: string;
|
|
150870
151246
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
150871
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;
|
|
150872
151257
|
} | {
|
|
150873
151258
|
/** Date and time at which Seam created the warning. */
|
|
150874
151259
|
created_at: string;
|
|
@@ -154054,6 +154439,15 @@ type Routes = {
|
|
|
154054
154439
|
message: string;
|
|
154055
154440
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
154056
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;
|
|
154057
154451
|
} | {
|
|
154058
154452
|
/** Date and time at which Seam created the warning. */
|
|
154059
154453
|
created_at: string;
|
|
@@ -198395,6 +198789,15 @@ type Routes = {
|
|
|
198395
198789
|
message: string;
|
|
198396
198790
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
198397
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;
|
|
198398
198801
|
} | {
|
|
198399
198802
|
/** Date and time at which Seam created the warning. */
|
|
198400
198803
|
created_at: string;
|
|
@@ -204026,6 +204429,15 @@ type Routes = {
|
|
|
204026
204429
|
message: string;
|
|
204027
204430
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204028
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;
|
|
204029
204441
|
} | {
|
|
204030
204442
|
/** Date and time at which Seam created the warning. */
|
|
204031
204443
|
created_at: string;
|
|
@@ -204452,6 +204864,15 @@ type Routes = {
|
|
|
204452
204864
|
message: string;
|
|
204453
204865
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
204454
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;
|
|
204455
204876
|
} | {
|
|
204456
204877
|
/** Date and time at which Seam created the warning. */
|
|
204457
204878
|
created_at: string;
|
|
@@ -232784,6 +233205,15 @@ type Routes = {
|
|
|
232784
233205
|
message: string;
|
|
232785
233206
|
/** Unique identifier of the type of warning. Enables quick recognition and categorization of the issue. */
|
|
232786
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;
|
|
232787
233217
|
} | {
|
|
232788
233218
|
/** Date and time at which Seam created the warning. */
|
|
232789
233219
|
created_at: string;
|