@seamapi/types 1.558.0 → 1.560.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 +215 -150
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +297 -775
- package/dist/index.cjs +215 -150
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +0 -31
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +0 -31
- package/lib/seam/connect/models/batch.d.ts +0 -602
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +0 -104
- package/lib/seam/connect/models/connected-accounts/connected-account.js +0 -9
- package/lib/seam/connect/models/connected-accounts/connected-account.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -50
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -31
- package/lib/seam/connect/openapi.d.ts +255 -0
- package/lib/seam/connect/openapi.js +215 -145
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +42 -429
- package/package.json +1 -1
- package/src/lib/seam/connect/models/connected-accounts/connected-account.ts +0 -10
- package/src/lib/seam/connect/openapi.ts +222 -175
- package/src/lib/seam/connect/route-types.ts +42 -468
package/dist/connect.d.cts
CHANGED
|
@@ -995,25 +995,6 @@ declare const access_code: z.ZodObject<{
|
|
|
995
995
|
message: z.ZodString;
|
|
996
996
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
997
997
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
998
|
-
} & {
|
|
999
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
1000
|
-
}, "strip", z.ZodTypeAny, {
|
|
1001
|
-
message: string;
|
|
1002
|
-
created_at: string;
|
|
1003
|
-
error_code: "invalid_credentials";
|
|
1004
|
-
is_connected_account_error?: boolean | undefined;
|
|
1005
|
-
is_bridge_error?: boolean | undefined;
|
|
1006
|
-
}, {
|
|
1007
|
-
message: string;
|
|
1008
|
-
created_at: string;
|
|
1009
|
-
error_code: "invalid_credentials";
|
|
1010
|
-
is_connected_account_error?: boolean | undefined;
|
|
1011
|
-
is_bridge_error?: boolean | undefined;
|
|
1012
|
-
}> | z.ZodObject<{
|
|
1013
|
-
created_at: z.ZodString;
|
|
1014
|
-
message: z.ZodString;
|
|
1015
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
1016
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
1017
998
|
} & {
|
|
1018
999
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
1019
1000
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1507,12 +1488,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1507
1488
|
error_code: "account_disconnected";
|
|
1508
1489
|
is_connected_account_error?: boolean | undefined;
|
|
1509
1490
|
is_bridge_error?: boolean | undefined;
|
|
1510
|
-
} | {
|
|
1511
|
-
message: string;
|
|
1512
|
-
created_at: string;
|
|
1513
|
-
error_code: "invalid_credentials";
|
|
1514
|
-
is_connected_account_error?: boolean | undefined;
|
|
1515
|
-
is_bridge_error?: boolean | undefined;
|
|
1516
1491
|
} | {
|
|
1517
1492
|
message: string;
|
|
1518
1493
|
created_at: string;
|
|
@@ -1807,12 +1782,6 @@ declare const access_code: z.ZodObject<{
|
|
|
1807
1782
|
error_code: "account_disconnected";
|
|
1808
1783
|
is_connected_account_error?: boolean | undefined;
|
|
1809
1784
|
is_bridge_error?: boolean | undefined;
|
|
1810
|
-
} | {
|
|
1811
|
-
message: string;
|
|
1812
|
-
created_at: string;
|
|
1813
|
-
error_code: "invalid_credentials";
|
|
1814
|
-
is_connected_account_error?: boolean | undefined;
|
|
1815
|
-
is_bridge_error?: boolean | undefined;
|
|
1816
1785
|
} | {
|
|
1817
1786
|
message: string;
|
|
1818
1787
|
created_at: string;
|
|
@@ -2529,25 +2498,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2529
2498
|
message: z.ZodString;
|
|
2530
2499
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
2531
2500
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
2532
|
-
} & {
|
|
2533
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
2534
|
-
}, "strip", z.ZodTypeAny, {
|
|
2535
|
-
message: string;
|
|
2536
|
-
created_at: string;
|
|
2537
|
-
error_code: "invalid_credentials";
|
|
2538
|
-
is_connected_account_error?: boolean | undefined;
|
|
2539
|
-
is_bridge_error?: boolean | undefined;
|
|
2540
|
-
}, {
|
|
2541
|
-
message: string;
|
|
2542
|
-
created_at: string;
|
|
2543
|
-
error_code: "invalid_credentials";
|
|
2544
|
-
is_connected_account_error?: boolean | undefined;
|
|
2545
|
-
is_bridge_error?: boolean | undefined;
|
|
2546
|
-
}> | z.ZodObject<{
|
|
2547
|
-
created_at: z.ZodString;
|
|
2548
|
-
message: z.ZodString;
|
|
2549
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
2550
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
2551
2501
|
} & {
|
|
2552
2502
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
2553
2503
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -3035,12 +2985,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3035
2985
|
error_code: "account_disconnected";
|
|
3036
2986
|
is_connected_account_error?: boolean | undefined;
|
|
3037
2987
|
is_bridge_error?: boolean | undefined;
|
|
3038
|
-
} | {
|
|
3039
|
-
message: string;
|
|
3040
|
-
created_at: string;
|
|
3041
|
-
error_code: "invalid_credentials";
|
|
3042
|
-
is_connected_account_error?: boolean | undefined;
|
|
3043
|
-
is_bridge_error?: boolean | undefined;
|
|
3044
2988
|
} | {
|
|
3045
2989
|
message: string;
|
|
3046
2990
|
created_at: string;
|
|
@@ -3326,12 +3270,6 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3326
3270
|
error_code: "account_disconnected";
|
|
3327
3271
|
is_connected_account_error?: boolean | undefined;
|
|
3328
3272
|
is_bridge_error?: boolean | undefined;
|
|
3329
|
-
} | {
|
|
3330
|
-
message: string;
|
|
3331
|
-
created_at: string;
|
|
3332
|
-
error_code: "invalid_credentials";
|
|
3333
|
-
is_connected_account_error?: boolean | undefined;
|
|
3334
|
-
is_bridge_error?: boolean | undefined;
|
|
3335
3273
|
} | {
|
|
3336
3274
|
message: string;
|
|
3337
3275
|
created_at: string;
|
|
@@ -12962,25 +12900,6 @@ declare const batch: z.ZodObject<{
|
|
|
12962
12900
|
message: z.ZodString;
|
|
12963
12901
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
12964
12902
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
12965
|
-
} & {
|
|
12966
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
12967
|
-
}, "strip", z.ZodTypeAny, {
|
|
12968
|
-
message: string;
|
|
12969
|
-
created_at: string;
|
|
12970
|
-
error_code: "invalid_credentials";
|
|
12971
|
-
is_connected_account_error?: boolean | undefined;
|
|
12972
|
-
is_bridge_error?: boolean | undefined;
|
|
12973
|
-
}, {
|
|
12974
|
-
message: string;
|
|
12975
|
-
created_at: string;
|
|
12976
|
-
error_code: "invalid_credentials";
|
|
12977
|
-
is_connected_account_error?: boolean | undefined;
|
|
12978
|
-
is_bridge_error?: boolean | undefined;
|
|
12979
|
-
}> | z.ZodObject<{
|
|
12980
|
-
created_at: z.ZodString;
|
|
12981
|
-
message: z.ZodString;
|
|
12982
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
12983
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
12984
12903
|
} & {
|
|
12985
12904
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
12986
12905
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -13316,12 +13235,6 @@ declare const batch: z.ZodObject<{
|
|
|
13316
13235
|
error_code: "account_disconnected";
|
|
13317
13236
|
is_connected_account_error?: boolean | undefined;
|
|
13318
13237
|
is_bridge_error?: boolean | undefined;
|
|
13319
|
-
} | {
|
|
13320
|
-
message: string;
|
|
13321
|
-
created_at: string;
|
|
13322
|
-
error_code: "invalid_credentials";
|
|
13323
|
-
is_connected_account_error?: boolean | undefined;
|
|
13324
|
-
is_bridge_error?: boolean | undefined;
|
|
13325
13238
|
} | {
|
|
13326
13239
|
message: string;
|
|
13327
13240
|
created_at: string;
|
|
@@ -13976,12 +13889,6 @@ declare const batch: z.ZodObject<{
|
|
|
13976
13889
|
error_code: "account_disconnected";
|
|
13977
13890
|
is_connected_account_error?: boolean | undefined;
|
|
13978
13891
|
is_bridge_error?: boolean | undefined;
|
|
13979
|
-
} | {
|
|
13980
|
-
message: string;
|
|
13981
|
-
created_at: string;
|
|
13982
|
-
error_code: "invalid_credentials";
|
|
13983
|
-
is_connected_account_error?: boolean | undefined;
|
|
13984
|
-
is_bridge_error?: boolean | undefined;
|
|
13985
13892
|
} | {
|
|
13986
13893
|
message: string;
|
|
13987
13894
|
created_at: string;
|
|
@@ -23587,25 +23494,6 @@ declare const batch: z.ZodObject<{
|
|
|
23587
23494
|
message: z.ZodString;
|
|
23588
23495
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
23589
23496
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
23590
|
-
} & {
|
|
23591
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
23592
|
-
}, "strip", z.ZodTypeAny, {
|
|
23593
|
-
message: string;
|
|
23594
|
-
created_at: string;
|
|
23595
|
-
error_code: "invalid_credentials";
|
|
23596
|
-
is_connected_account_error?: boolean | undefined;
|
|
23597
|
-
is_bridge_error?: boolean | undefined;
|
|
23598
|
-
}, {
|
|
23599
|
-
message: string;
|
|
23600
|
-
created_at: string;
|
|
23601
|
-
error_code: "invalid_credentials";
|
|
23602
|
-
is_connected_account_error?: boolean | undefined;
|
|
23603
|
-
is_bridge_error?: boolean | undefined;
|
|
23604
|
-
}> | z.ZodObject<{
|
|
23605
|
-
created_at: z.ZodString;
|
|
23606
|
-
message: z.ZodString;
|
|
23607
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
23608
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
23609
23497
|
} & {
|
|
23610
23498
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
23611
23499
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -24093,12 +23981,6 @@ declare const batch: z.ZodObject<{
|
|
|
24093
23981
|
error_code: "account_disconnected";
|
|
24094
23982
|
is_connected_account_error?: boolean | undefined;
|
|
24095
23983
|
is_bridge_error?: boolean | undefined;
|
|
24096
|
-
} | {
|
|
24097
|
-
message: string;
|
|
24098
|
-
created_at: string;
|
|
24099
|
-
error_code: "invalid_credentials";
|
|
24100
|
-
is_connected_account_error?: boolean | undefined;
|
|
24101
|
-
is_bridge_error?: boolean | undefined;
|
|
24102
23984
|
} | {
|
|
24103
23985
|
message: string;
|
|
24104
23986
|
created_at: string;
|
|
@@ -24325,12 +24207,6 @@ declare const batch: z.ZodObject<{
|
|
|
24325
24207
|
error_code: "account_disconnected";
|
|
24326
24208
|
is_connected_account_error?: boolean | undefined;
|
|
24327
24209
|
is_bridge_error?: boolean | undefined;
|
|
24328
|
-
} | {
|
|
24329
|
-
message: string;
|
|
24330
|
-
created_at: string;
|
|
24331
|
-
error_code: "invalid_credentials";
|
|
24332
|
-
is_connected_account_error?: boolean | undefined;
|
|
24333
|
-
is_bridge_error?: boolean | undefined;
|
|
24334
24210
|
} | {
|
|
24335
24211
|
message: string;
|
|
24336
24212
|
created_at: string;
|
|
@@ -28252,25 +28128,6 @@ declare const batch: z.ZodObject<{
|
|
|
28252
28128
|
message: z.ZodString;
|
|
28253
28129
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
28254
28130
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
28255
|
-
} & {
|
|
28256
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
28257
|
-
}, "strip", z.ZodTypeAny, {
|
|
28258
|
-
message: string;
|
|
28259
|
-
created_at: string;
|
|
28260
|
-
error_code: "invalid_credentials";
|
|
28261
|
-
is_connected_account_error?: boolean | undefined;
|
|
28262
|
-
is_bridge_error?: boolean | undefined;
|
|
28263
|
-
}, {
|
|
28264
|
-
message: string;
|
|
28265
|
-
created_at: string;
|
|
28266
|
-
error_code: "invalid_credentials";
|
|
28267
|
-
is_connected_account_error?: boolean | undefined;
|
|
28268
|
-
is_bridge_error?: boolean | undefined;
|
|
28269
|
-
}> | z.ZodObject<{
|
|
28270
|
-
created_at: z.ZodString;
|
|
28271
|
-
message: z.ZodString;
|
|
28272
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
28273
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
28274
28131
|
} & {
|
|
28275
28132
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
28276
28133
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -28764,12 +28621,6 @@ declare const batch: z.ZodObject<{
|
|
|
28764
28621
|
error_code: "account_disconnected";
|
|
28765
28622
|
is_connected_account_error?: boolean | undefined;
|
|
28766
28623
|
is_bridge_error?: boolean | undefined;
|
|
28767
|
-
} | {
|
|
28768
|
-
message: string;
|
|
28769
|
-
created_at: string;
|
|
28770
|
-
error_code: "invalid_credentials";
|
|
28771
|
-
is_connected_account_error?: boolean | undefined;
|
|
28772
|
-
is_bridge_error?: boolean | undefined;
|
|
28773
28624
|
} | {
|
|
28774
28625
|
message: string;
|
|
28775
28626
|
created_at: string;
|
|
@@ -29064,12 +28915,6 @@ declare const batch: z.ZodObject<{
|
|
|
29064
28915
|
error_code: "account_disconnected";
|
|
29065
28916
|
is_connected_account_error?: boolean | undefined;
|
|
29066
28917
|
is_bridge_error?: boolean | undefined;
|
|
29067
|
-
} | {
|
|
29068
|
-
message: string;
|
|
29069
|
-
created_at: string;
|
|
29070
|
-
error_code: "invalid_credentials";
|
|
29071
|
-
is_connected_account_error?: boolean | undefined;
|
|
29072
|
-
is_bridge_error?: boolean | undefined;
|
|
29073
28918
|
} | {
|
|
29074
28919
|
message: string;
|
|
29075
28920
|
created_at: string;
|
|
@@ -29784,25 +29629,6 @@ declare const batch: z.ZodObject<{
|
|
|
29784
29629
|
message: z.ZodString;
|
|
29785
29630
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
29786
29631
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
29787
|
-
} & {
|
|
29788
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
29789
|
-
}, "strip", z.ZodTypeAny, {
|
|
29790
|
-
message: string;
|
|
29791
|
-
created_at: string;
|
|
29792
|
-
error_code: "invalid_credentials";
|
|
29793
|
-
is_connected_account_error?: boolean | undefined;
|
|
29794
|
-
is_bridge_error?: boolean | undefined;
|
|
29795
|
-
}, {
|
|
29796
|
-
message: string;
|
|
29797
|
-
created_at: string;
|
|
29798
|
-
error_code: "invalid_credentials";
|
|
29799
|
-
is_connected_account_error?: boolean | undefined;
|
|
29800
|
-
is_bridge_error?: boolean | undefined;
|
|
29801
|
-
}> | z.ZodObject<{
|
|
29802
|
-
created_at: z.ZodString;
|
|
29803
|
-
message: z.ZodString;
|
|
29804
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
29805
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
29806
29632
|
} & {
|
|
29807
29633
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
29808
29634
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -30290,12 +30116,6 @@ declare const batch: z.ZodObject<{
|
|
|
30290
30116
|
error_code: "account_disconnected";
|
|
30291
30117
|
is_connected_account_error?: boolean | undefined;
|
|
30292
30118
|
is_bridge_error?: boolean | undefined;
|
|
30293
|
-
} | {
|
|
30294
|
-
message: string;
|
|
30295
|
-
created_at: string;
|
|
30296
|
-
error_code: "invalid_credentials";
|
|
30297
|
-
is_connected_account_error?: boolean | undefined;
|
|
30298
|
-
is_bridge_error?: boolean | undefined;
|
|
30299
30119
|
} | {
|
|
30300
30120
|
message: string;
|
|
30301
30121
|
created_at: string;
|
|
@@ -30581,12 +30401,6 @@ declare const batch: z.ZodObject<{
|
|
|
30581
30401
|
error_code: "account_disconnected";
|
|
30582
30402
|
is_connected_account_error?: boolean | undefined;
|
|
30583
30403
|
is_bridge_error?: boolean | undefined;
|
|
30584
|
-
} | {
|
|
30585
|
-
message: string;
|
|
30586
|
-
created_at: string;
|
|
30587
|
-
error_code: "invalid_credentials";
|
|
30588
|
-
is_connected_account_error?: boolean | undefined;
|
|
30589
|
-
is_bridge_error?: boolean | undefined;
|
|
30590
30404
|
} | {
|
|
30591
30405
|
message: string;
|
|
30592
30406
|
created_at: string;
|
|
@@ -31032,12 +30846,6 @@ declare const batch: z.ZodObject<{
|
|
|
31032
30846
|
error_code: "account_disconnected";
|
|
31033
30847
|
is_connected_account_error?: boolean | undefined;
|
|
31034
30848
|
is_bridge_error?: boolean | undefined;
|
|
31035
|
-
} | {
|
|
31036
|
-
message: string;
|
|
31037
|
-
created_at: string;
|
|
31038
|
-
error_code: "invalid_credentials";
|
|
31039
|
-
is_connected_account_error?: boolean | undefined;
|
|
31040
|
-
is_bridge_error?: boolean | undefined;
|
|
31041
30849
|
} | {
|
|
31042
30850
|
message: string;
|
|
31043
30851
|
created_at: string;
|
|
@@ -33092,12 +32900,6 @@ declare const batch: z.ZodObject<{
|
|
|
33092
32900
|
error_code: "account_disconnected";
|
|
33093
32901
|
is_connected_account_error?: boolean | undefined;
|
|
33094
32902
|
is_bridge_error?: boolean | undefined;
|
|
33095
|
-
} | {
|
|
33096
|
-
message: string;
|
|
33097
|
-
created_at: string;
|
|
33098
|
-
error_code: "invalid_credentials";
|
|
33099
|
-
is_connected_account_error?: boolean | undefined;
|
|
33100
|
-
is_bridge_error?: boolean | undefined;
|
|
33101
32903
|
} | {
|
|
33102
32904
|
message: string;
|
|
33103
32905
|
created_at: string;
|
|
@@ -34290,12 +34092,6 @@ declare const batch: z.ZodObject<{
|
|
|
34290
34092
|
error_code: "account_disconnected";
|
|
34291
34093
|
is_connected_account_error?: boolean | undefined;
|
|
34292
34094
|
is_bridge_error?: boolean | undefined;
|
|
34293
|
-
} | {
|
|
34294
|
-
message: string;
|
|
34295
|
-
created_at: string;
|
|
34296
|
-
error_code: "invalid_credentials";
|
|
34297
|
-
is_connected_account_error?: boolean | undefined;
|
|
34298
|
-
is_bridge_error?: boolean | undefined;
|
|
34299
34095
|
} | {
|
|
34300
34096
|
message: string;
|
|
34301
34097
|
created_at: string;
|
|
@@ -34591,12 +34387,6 @@ declare const batch: z.ZodObject<{
|
|
|
34591
34387
|
error_code: "account_disconnected";
|
|
34592
34388
|
is_connected_account_error?: boolean | undefined;
|
|
34593
34389
|
is_bridge_error?: boolean | undefined;
|
|
34594
|
-
} | {
|
|
34595
|
-
message: string;
|
|
34596
|
-
created_at: string;
|
|
34597
|
-
error_code: "invalid_credentials";
|
|
34598
|
-
is_connected_account_error?: boolean | undefined;
|
|
34599
|
-
is_bridge_error?: boolean | undefined;
|
|
34600
34390
|
} | {
|
|
34601
34391
|
message: string;
|
|
34602
34392
|
created_at: string;
|
|
@@ -34937,12 +34727,6 @@ declare const batch: z.ZodObject<{
|
|
|
34937
34727
|
error_code: "account_disconnected";
|
|
34938
34728
|
is_connected_account_error?: boolean | undefined;
|
|
34939
34729
|
is_bridge_error?: boolean | undefined;
|
|
34940
|
-
} | {
|
|
34941
|
-
message: string;
|
|
34942
|
-
created_at: string;
|
|
34943
|
-
error_code: "invalid_credentials";
|
|
34944
|
-
is_connected_account_error?: boolean | undefined;
|
|
34945
|
-
is_bridge_error?: boolean | undefined;
|
|
34946
34730
|
} | {
|
|
34947
34731
|
message: string;
|
|
34948
34732
|
created_at: string;
|
|
@@ -36997,12 +36781,6 @@ declare const batch: z.ZodObject<{
|
|
|
36997
36781
|
error_code: "account_disconnected";
|
|
36998
36782
|
is_connected_account_error?: boolean | undefined;
|
|
36999
36783
|
is_bridge_error?: boolean | undefined;
|
|
37000
|
-
} | {
|
|
37001
|
-
message: string;
|
|
37002
|
-
created_at: string;
|
|
37003
|
-
error_code: "invalid_credentials";
|
|
37004
|
-
is_connected_account_error?: boolean | undefined;
|
|
37005
|
-
is_bridge_error?: boolean | undefined;
|
|
37006
36784
|
} | {
|
|
37007
36785
|
message: string;
|
|
37008
36786
|
created_at: string;
|
|
@@ -38195,12 +37973,6 @@ declare const batch: z.ZodObject<{
|
|
|
38195
37973
|
error_code: "account_disconnected";
|
|
38196
37974
|
is_connected_account_error?: boolean | undefined;
|
|
38197
37975
|
is_bridge_error?: boolean | undefined;
|
|
38198
|
-
} | {
|
|
38199
|
-
message: string;
|
|
38200
|
-
created_at: string;
|
|
38201
|
-
error_code: "invalid_credentials";
|
|
38202
|
-
is_connected_account_error?: boolean | undefined;
|
|
38203
|
-
is_bridge_error?: boolean | undefined;
|
|
38204
37976
|
} | {
|
|
38205
37977
|
message: string;
|
|
38206
37978
|
created_at: string;
|
|
@@ -38496,12 +38268,6 @@ declare const batch: z.ZodObject<{
|
|
|
38496
38268
|
error_code: "account_disconnected";
|
|
38497
38269
|
is_connected_account_error?: boolean | undefined;
|
|
38498
38270
|
is_bridge_error?: boolean | undefined;
|
|
38499
|
-
} | {
|
|
38500
|
-
message: string;
|
|
38501
|
-
created_at: string;
|
|
38502
|
-
error_code: "invalid_credentials";
|
|
38503
|
-
is_connected_account_error?: boolean | undefined;
|
|
38504
|
-
is_bridge_error?: boolean | undefined;
|
|
38505
38271
|
} | {
|
|
38506
38272
|
message: string;
|
|
38507
38273
|
created_at: string;
|
|
@@ -39075,25 +38841,6 @@ declare const connected_account_error: z.ZodDiscriminatedUnion<"error_code", [z.
|
|
|
39075
38841
|
message: z.ZodString;
|
|
39076
38842
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
39077
38843
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
39078
|
-
} & {
|
|
39079
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
39080
|
-
}, "strip", z.ZodTypeAny, {
|
|
39081
|
-
message: string;
|
|
39082
|
-
created_at: string;
|
|
39083
|
-
error_code: "invalid_credentials";
|
|
39084
|
-
is_connected_account_error?: boolean | undefined;
|
|
39085
|
-
is_bridge_error?: boolean | undefined;
|
|
39086
|
-
}, {
|
|
39087
|
-
message: string;
|
|
39088
|
-
created_at: string;
|
|
39089
|
-
error_code: "invalid_credentials";
|
|
39090
|
-
is_connected_account_error?: boolean | undefined;
|
|
39091
|
-
is_bridge_error?: boolean | undefined;
|
|
39092
|
-
}>, z.ZodObject<{
|
|
39093
|
-
created_at: z.ZodString;
|
|
39094
|
-
message: z.ZodString;
|
|
39095
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
39096
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
39097
38844
|
} & {
|
|
39098
38845
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
39099
38846
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39314,25 +39061,6 @@ declare const connected_account: z.ZodObject<{
|
|
|
39314
39061
|
message: z.ZodString;
|
|
39315
39062
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
39316
39063
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
39317
|
-
} & {
|
|
39318
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
39319
|
-
}, "strip", z.ZodTypeAny, {
|
|
39320
|
-
message: string;
|
|
39321
|
-
created_at: string;
|
|
39322
|
-
error_code: "invalid_credentials";
|
|
39323
|
-
is_connected_account_error?: boolean | undefined;
|
|
39324
|
-
is_bridge_error?: boolean | undefined;
|
|
39325
|
-
}, {
|
|
39326
|
-
message: string;
|
|
39327
|
-
created_at: string;
|
|
39328
|
-
error_code: "invalid_credentials";
|
|
39329
|
-
is_connected_account_error?: boolean | undefined;
|
|
39330
|
-
is_bridge_error?: boolean | undefined;
|
|
39331
|
-
}>, z.ZodObject<{
|
|
39332
|
-
created_at: z.ZodString;
|
|
39333
|
-
message: z.ZodString;
|
|
39334
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
39335
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
39336
39064
|
} & {
|
|
39337
39065
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
39338
39066
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -39514,12 +39242,6 @@ declare const connected_account: z.ZodObject<{
|
|
|
39514
39242
|
error_code: "account_disconnected";
|
|
39515
39243
|
is_connected_account_error?: boolean | undefined;
|
|
39516
39244
|
is_bridge_error?: boolean | undefined;
|
|
39517
|
-
} | {
|
|
39518
|
-
message: string;
|
|
39519
|
-
created_at: string;
|
|
39520
|
-
error_code: "invalid_credentials";
|
|
39521
|
-
is_connected_account_error?: boolean | undefined;
|
|
39522
|
-
is_bridge_error?: boolean | undefined;
|
|
39523
39245
|
} | {
|
|
39524
39246
|
message: string;
|
|
39525
39247
|
created_at: string;
|
|
@@ -39584,12 +39306,6 @@ declare const connected_account: z.ZodObject<{
|
|
|
39584
39306
|
error_code: "account_disconnected";
|
|
39585
39307
|
is_connected_account_error?: boolean | undefined;
|
|
39586
39308
|
is_bridge_error?: boolean | undefined;
|
|
39587
|
-
} | {
|
|
39588
|
-
message: string;
|
|
39589
|
-
created_at: string;
|
|
39590
|
-
error_code: "invalid_credentials";
|
|
39591
|
-
is_connected_account_error?: boolean | undefined;
|
|
39592
|
-
is_bridge_error?: boolean | undefined;
|
|
39593
39309
|
} | {
|
|
39594
39310
|
message: string;
|
|
39595
39311
|
created_at: string;
|
|
@@ -42641,25 +42357,6 @@ declare const device: z.ZodObject<{
|
|
|
42641
42357
|
message: z.ZodString;
|
|
42642
42358
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
42643
42359
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
42644
|
-
} & {
|
|
42645
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
42646
|
-
}, "strip", z.ZodTypeAny, {
|
|
42647
|
-
message: string;
|
|
42648
|
-
created_at: string;
|
|
42649
|
-
error_code: "invalid_credentials";
|
|
42650
|
-
is_connected_account_error?: boolean | undefined;
|
|
42651
|
-
is_bridge_error?: boolean | undefined;
|
|
42652
|
-
}, {
|
|
42653
|
-
message: string;
|
|
42654
|
-
created_at: string;
|
|
42655
|
-
error_code: "invalid_credentials";
|
|
42656
|
-
is_connected_account_error?: boolean | undefined;
|
|
42657
|
-
is_bridge_error?: boolean | undefined;
|
|
42658
|
-
}> | z.ZodObject<{
|
|
42659
|
-
created_at: z.ZodString;
|
|
42660
|
-
message: z.ZodString;
|
|
42661
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
42662
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
42663
42360
|
} & {
|
|
42664
42361
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
42665
42362
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42995,12 +42692,6 @@ declare const device: z.ZodObject<{
|
|
|
42995
42692
|
error_code: "account_disconnected";
|
|
42996
42693
|
is_connected_account_error?: boolean | undefined;
|
|
42997
42694
|
is_bridge_error?: boolean | undefined;
|
|
42998
|
-
} | {
|
|
42999
|
-
message: string;
|
|
43000
|
-
created_at: string;
|
|
43001
|
-
error_code: "invalid_credentials";
|
|
43002
|
-
is_connected_account_error?: boolean | undefined;
|
|
43003
|
-
is_bridge_error?: boolean | undefined;
|
|
43004
42695
|
} | {
|
|
43005
42696
|
message: string;
|
|
43006
42697
|
created_at: string;
|
|
@@ -43655,12 +43346,6 @@ declare const device: z.ZodObject<{
|
|
|
43655
43346
|
error_code: "account_disconnected";
|
|
43656
43347
|
is_connected_account_error?: boolean | undefined;
|
|
43657
43348
|
is_bridge_error?: boolean | undefined;
|
|
43658
|
-
} | {
|
|
43659
|
-
message: string;
|
|
43660
|
-
created_at: string;
|
|
43661
|
-
error_code: "invalid_credentials";
|
|
43662
|
-
is_connected_account_error?: boolean | undefined;
|
|
43663
|
-
is_bridge_error?: boolean | undefined;
|
|
43664
43349
|
} | {
|
|
43665
43350
|
message: string;
|
|
43666
43351
|
created_at: string;
|
|
@@ -46932,25 +46617,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
46932
46617
|
message: z.ZodString;
|
|
46933
46618
|
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
46934
46619
|
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
46935
|
-
} & {
|
|
46936
|
-
error_code: z.ZodLiteral<"invalid_credentials">;
|
|
46937
|
-
}, "strip", z.ZodTypeAny, {
|
|
46938
|
-
message: string;
|
|
46939
|
-
created_at: string;
|
|
46940
|
-
error_code: "invalid_credentials";
|
|
46941
|
-
is_connected_account_error?: boolean | undefined;
|
|
46942
|
-
is_bridge_error?: boolean | undefined;
|
|
46943
|
-
}, {
|
|
46944
|
-
message: string;
|
|
46945
|
-
created_at: string;
|
|
46946
|
-
error_code: "invalid_credentials";
|
|
46947
|
-
is_connected_account_error?: boolean | undefined;
|
|
46948
|
-
is_bridge_error?: boolean | undefined;
|
|
46949
|
-
}> | z.ZodObject<{
|
|
46950
|
-
created_at: z.ZodString;
|
|
46951
|
-
message: z.ZodString;
|
|
46952
|
-
is_connected_account_error: z.ZodOptional<z.ZodBoolean>;
|
|
46953
|
-
is_bridge_error: z.ZodOptional<z.ZodBoolean>;
|
|
46954
46620
|
} & {
|
|
46955
46621
|
error_code: z.ZodLiteral<"bridge_disconnected">;
|
|
46956
46622
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -47438,12 +47104,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47438
47104
|
error_code: "account_disconnected";
|
|
47439
47105
|
is_connected_account_error?: boolean | undefined;
|
|
47440
47106
|
is_bridge_error?: boolean | undefined;
|
|
47441
|
-
} | {
|
|
47442
|
-
message: string;
|
|
47443
|
-
created_at: string;
|
|
47444
|
-
error_code: "invalid_credentials";
|
|
47445
|
-
is_connected_account_error?: boolean | undefined;
|
|
47446
|
-
is_bridge_error?: boolean | undefined;
|
|
47447
47107
|
} | {
|
|
47448
47108
|
message: string;
|
|
47449
47109
|
created_at: string;
|
|
@@ -47670,12 +47330,6 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
47670
47330
|
error_code: "account_disconnected";
|
|
47671
47331
|
is_connected_account_error?: boolean | undefined;
|
|
47672
47332
|
is_bridge_error?: boolean | undefined;
|
|
47673
|
-
} | {
|
|
47674
|
-
message: string;
|
|
47675
|
-
created_at: string;
|
|
47676
|
-
error_code: "invalid_credentials";
|
|
47677
|
-
is_connected_account_error?: boolean | undefined;
|
|
47678
|
-
is_bridge_error?: boolean | undefined;
|
|
47679
47333
|
} | {
|
|
47680
47334
|
message: string;
|
|
47681
47335
|
created_at: string;
|
|
@@ -92089,6 +91743,261 @@ declare const _default: {
|
|
|
92089
91743
|
'x-undocumented': string;
|
|
92090
91744
|
};
|
|
92091
91745
|
};
|
|
91746
|
+
'/seam/customer/v1/reservations/list': {
|
|
91747
|
+
get: {
|
|
91748
|
+
description: string;
|
|
91749
|
+
operationId: string;
|
|
91750
|
+
parameters: ({
|
|
91751
|
+
in: string;
|
|
91752
|
+
name: string;
|
|
91753
|
+
schema: {
|
|
91754
|
+
description: string;
|
|
91755
|
+
type: string;
|
|
91756
|
+
default?: never;
|
|
91757
|
+
exclusiveMinimum?: never;
|
|
91758
|
+
minimum?: never;
|
|
91759
|
+
format?: never;
|
|
91760
|
+
nullable?: never;
|
|
91761
|
+
};
|
|
91762
|
+
} | {
|
|
91763
|
+
in: string;
|
|
91764
|
+
name: string;
|
|
91765
|
+
schema: {
|
|
91766
|
+
default: number;
|
|
91767
|
+
description: string;
|
|
91768
|
+
exclusiveMinimum: boolean;
|
|
91769
|
+
minimum: number;
|
|
91770
|
+
type: string;
|
|
91771
|
+
format?: never;
|
|
91772
|
+
nullable?: never;
|
|
91773
|
+
};
|
|
91774
|
+
} | {
|
|
91775
|
+
in: string;
|
|
91776
|
+
name: string;
|
|
91777
|
+
schema: {
|
|
91778
|
+
description: string;
|
|
91779
|
+
format: string;
|
|
91780
|
+
type: string;
|
|
91781
|
+
default?: never;
|
|
91782
|
+
exclusiveMinimum?: never;
|
|
91783
|
+
minimum?: never;
|
|
91784
|
+
nullable?: never;
|
|
91785
|
+
};
|
|
91786
|
+
} | {
|
|
91787
|
+
in: string;
|
|
91788
|
+
name: string;
|
|
91789
|
+
schema: {
|
|
91790
|
+
description: string;
|
|
91791
|
+
nullable: boolean;
|
|
91792
|
+
type: string;
|
|
91793
|
+
default?: never;
|
|
91794
|
+
exclusiveMinimum?: never;
|
|
91795
|
+
minimum?: never;
|
|
91796
|
+
format?: never;
|
|
91797
|
+
};
|
|
91798
|
+
})[];
|
|
91799
|
+
responses: {
|
|
91800
|
+
200: {
|
|
91801
|
+
content: {
|
|
91802
|
+
'application/json': {
|
|
91803
|
+
schema: {
|
|
91804
|
+
properties: {
|
|
91805
|
+
ok: {
|
|
91806
|
+
type: string;
|
|
91807
|
+
};
|
|
91808
|
+
pagination: {
|
|
91809
|
+
$ref: string;
|
|
91810
|
+
};
|
|
91811
|
+
reservations: {
|
|
91812
|
+
items: {
|
|
91813
|
+
properties: {
|
|
91814
|
+
access_methods: {
|
|
91815
|
+
items: {
|
|
91816
|
+
$ref: string;
|
|
91817
|
+
};
|
|
91818
|
+
type: string;
|
|
91819
|
+
};
|
|
91820
|
+
created_at: {
|
|
91821
|
+
format: string;
|
|
91822
|
+
type: string;
|
|
91823
|
+
};
|
|
91824
|
+
ends_at: {
|
|
91825
|
+
format: string;
|
|
91826
|
+
nullable: boolean;
|
|
91827
|
+
type: string;
|
|
91828
|
+
};
|
|
91829
|
+
guest_name: {
|
|
91830
|
+
nullable: boolean;
|
|
91831
|
+
type: string;
|
|
91832
|
+
};
|
|
91833
|
+
name: {
|
|
91834
|
+
nullable: boolean;
|
|
91835
|
+
type: string;
|
|
91836
|
+
};
|
|
91837
|
+
reservation_id: {
|
|
91838
|
+
format: string;
|
|
91839
|
+
type: string;
|
|
91840
|
+
};
|
|
91841
|
+
reservation_key: {
|
|
91842
|
+
type: string;
|
|
91843
|
+
};
|
|
91844
|
+
starts_at: {
|
|
91845
|
+
format: string;
|
|
91846
|
+
nullable: boolean;
|
|
91847
|
+
type: string;
|
|
91848
|
+
};
|
|
91849
|
+
};
|
|
91850
|
+
required: string[];
|
|
91851
|
+
type: string;
|
|
91852
|
+
};
|
|
91853
|
+
type: string;
|
|
91854
|
+
};
|
|
91855
|
+
};
|
|
91856
|
+
required: string[];
|
|
91857
|
+
type: string;
|
|
91858
|
+
};
|
|
91859
|
+
};
|
|
91860
|
+
};
|
|
91861
|
+
description: string;
|
|
91862
|
+
};
|
|
91863
|
+
400: {
|
|
91864
|
+
description: string;
|
|
91865
|
+
};
|
|
91866
|
+
401: {
|
|
91867
|
+
description: string;
|
|
91868
|
+
};
|
|
91869
|
+
};
|
|
91870
|
+
security: {
|
|
91871
|
+
client_session_with_customer: never[];
|
|
91872
|
+
}[];
|
|
91873
|
+
summary: string;
|
|
91874
|
+
tags: never[];
|
|
91875
|
+
'x-fern-sdk-group-name': string[];
|
|
91876
|
+
'x-fern-sdk-method-name': string;
|
|
91877
|
+
'x-fern-sdk-return-value': string;
|
|
91878
|
+
'x-response-key': string;
|
|
91879
|
+
'x-title': string;
|
|
91880
|
+
'x-undocumented': string;
|
|
91881
|
+
};
|
|
91882
|
+
post: {
|
|
91883
|
+
description: string;
|
|
91884
|
+
operationId: string;
|
|
91885
|
+
requestBody: {
|
|
91886
|
+
content: {
|
|
91887
|
+
'application/json': {
|
|
91888
|
+
schema: {
|
|
91889
|
+
properties: {
|
|
91890
|
+
created_before: {
|
|
91891
|
+
description: string;
|
|
91892
|
+
format: string;
|
|
91893
|
+
type: string;
|
|
91894
|
+
};
|
|
91895
|
+
limit: {
|
|
91896
|
+
default: number;
|
|
91897
|
+
description: string;
|
|
91898
|
+
exclusiveMinimum: boolean;
|
|
91899
|
+
minimum: number;
|
|
91900
|
+
type: string;
|
|
91901
|
+
};
|
|
91902
|
+
page_cursor: {
|
|
91903
|
+
description: string;
|
|
91904
|
+
nullable: boolean;
|
|
91905
|
+
type: string;
|
|
91906
|
+
};
|
|
91907
|
+
space_key: {
|
|
91908
|
+
description: string;
|
|
91909
|
+
type: string;
|
|
91910
|
+
};
|
|
91911
|
+
};
|
|
91912
|
+
type: string;
|
|
91913
|
+
};
|
|
91914
|
+
};
|
|
91915
|
+
};
|
|
91916
|
+
};
|
|
91917
|
+
responses: {
|
|
91918
|
+
200: {
|
|
91919
|
+
content: {
|
|
91920
|
+
'application/json': {
|
|
91921
|
+
schema: {
|
|
91922
|
+
properties: {
|
|
91923
|
+
ok: {
|
|
91924
|
+
type: string;
|
|
91925
|
+
};
|
|
91926
|
+
pagination: {
|
|
91927
|
+
$ref: string;
|
|
91928
|
+
};
|
|
91929
|
+
reservations: {
|
|
91930
|
+
items: {
|
|
91931
|
+
properties: {
|
|
91932
|
+
access_methods: {
|
|
91933
|
+
items: {
|
|
91934
|
+
$ref: string;
|
|
91935
|
+
};
|
|
91936
|
+
type: string;
|
|
91937
|
+
};
|
|
91938
|
+
created_at: {
|
|
91939
|
+
format: string;
|
|
91940
|
+
type: string;
|
|
91941
|
+
};
|
|
91942
|
+
ends_at: {
|
|
91943
|
+
format: string;
|
|
91944
|
+
nullable: boolean;
|
|
91945
|
+
type: string;
|
|
91946
|
+
};
|
|
91947
|
+
guest_name: {
|
|
91948
|
+
nullable: boolean;
|
|
91949
|
+
type: string;
|
|
91950
|
+
};
|
|
91951
|
+
name: {
|
|
91952
|
+
nullable: boolean;
|
|
91953
|
+
type: string;
|
|
91954
|
+
};
|
|
91955
|
+
reservation_id: {
|
|
91956
|
+
format: string;
|
|
91957
|
+
type: string;
|
|
91958
|
+
};
|
|
91959
|
+
reservation_key: {
|
|
91960
|
+
type: string;
|
|
91961
|
+
};
|
|
91962
|
+
starts_at: {
|
|
91963
|
+
format: string;
|
|
91964
|
+
nullable: boolean;
|
|
91965
|
+
type: string;
|
|
91966
|
+
};
|
|
91967
|
+
};
|
|
91968
|
+
required: string[];
|
|
91969
|
+
type: string;
|
|
91970
|
+
};
|
|
91971
|
+
type: string;
|
|
91972
|
+
};
|
|
91973
|
+
};
|
|
91974
|
+
required: string[];
|
|
91975
|
+
type: string;
|
|
91976
|
+
};
|
|
91977
|
+
};
|
|
91978
|
+
};
|
|
91979
|
+
description: string;
|
|
91980
|
+
};
|
|
91981
|
+
400: {
|
|
91982
|
+
description: string;
|
|
91983
|
+
};
|
|
91984
|
+
401: {
|
|
91985
|
+
description: string;
|
|
91986
|
+
};
|
|
91987
|
+
};
|
|
91988
|
+
security: {
|
|
91989
|
+
client_session_with_customer: never[];
|
|
91990
|
+
}[];
|
|
91991
|
+
summary: string;
|
|
91992
|
+
tags: never[];
|
|
91993
|
+
'x-fern-sdk-group-name': string[];
|
|
91994
|
+
'x-fern-sdk-method-name': string;
|
|
91995
|
+
'x-fern-sdk-return-value': string;
|
|
91996
|
+
'x-response-key': string;
|
|
91997
|
+
'x-title': string;
|
|
91998
|
+
'x-undocumented': string;
|
|
91999
|
+
};
|
|
92000
|
+
};
|
|
92092
92001
|
'/seam/customer/v1/settings/get': {
|
|
92093
92002
|
get: {
|
|
92094
92003
|
description: string;
|
|
@@ -105295,17 +105204,6 @@ type Routes = {
|
|
|
105295
105204
|
created_at: string;
|
|
105296
105205
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105297
105206
|
error_code: 'lockly_missing_wifi_bridge';
|
|
105298
|
-
} | {
|
|
105299
|
-
/** Date and time at which Seam created the error. */
|
|
105300
|
-
created_at: string;
|
|
105301
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105302
|
-
message: string;
|
|
105303
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
105304
|
-
is_connected_account_error?: boolean | undefined;
|
|
105305
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
105306
|
-
is_bridge_error?: boolean | undefined;
|
|
105307
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105308
|
-
error_code: 'invalid_credentials';
|
|
105309
105207
|
} | {
|
|
105310
105208
|
/** Date and time at which Seam created the error. */
|
|
105311
105209
|
created_at: string;
|
|
@@ -105851,17 +105749,6 @@ type Routes = {
|
|
|
105851
105749
|
created_at: string;
|
|
105852
105750
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105853
105751
|
error_code: 'lockly_missing_wifi_bridge';
|
|
105854
|
-
} | {
|
|
105855
|
-
/** Date and time at which Seam created the error. */
|
|
105856
|
-
created_at: string;
|
|
105857
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
105858
|
-
message: string;
|
|
105859
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
105860
|
-
is_connected_account_error?: boolean | undefined;
|
|
105861
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
105862
|
-
is_bridge_error?: boolean | undefined;
|
|
105863
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
105864
|
-
error_code: 'invalid_credentials';
|
|
105865
105752
|
} | {
|
|
105866
105753
|
/** Date and time at which Seam created the error. */
|
|
105867
105754
|
created_at: string;
|
|
@@ -107661,17 +107548,6 @@ type Routes = {
|
|
|
107661
107548
|
created_at: string;
|
|
107662
107549
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107663
107550
|
error_code: 'lockly_missing_wifi_bridge';
|
|
107664
|
-
} | {
|
|
107665
|
-
/** Date and time at which Seam created the error. */
|
|
107666
|
-
created_at: string;
|
|
107667
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
107668
|
-
message: string;
|
|
107669
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
107670
|
-
is_connected_account_error?: boolean | undefined;
|
|
107671
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
107672
|
-
is_bridge_error?: boolean | undefined;
|
|
107673
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107674
|
-
error_code: 'invalid_credentials';
|
|
107675
107551
|
} | {
|
|
107676
107552
|
/** Date and time at which Seam created the error. */
|
|
107677
107553
|
created_at: string;
|
|
@@ -108191,17 +108067,6 @@ type Routes = {
|
|
|
108191
108067
|
created_at: string;
|
|
108192
108068
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108193
108069
|
error_code: 'lockly_missing_wifi_bridge';
|
|
108194
|
-
} | {
|
|
108195
|
-
/** Date and time at which Seam created the error. */
|
|
108196
|
-
created_at: string;
|
|
108197
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108198
|
-
message: string;
|
|
108199
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
108200
|
-
is_connected_account_error?: boolean | undefined;
|
|
108201
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
108202
|
-
is_bridge_error?: boolean | undefined;
|
|
108203
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108204
|
-
error_code: 'invalid_credentials';
|
|
108205
108070
|
} | {
|
|
108206
108071
|
/** Date and time at which Seam created the error. */
|
|
108207
108072
|
created_at: string;
|
|
@@ -108727,17 +108592,6 @@ type Routes = {
|
|
|
108727
108592
|
created_at: string;
|
|
108728
108593
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108729
108594
|
error_code: 'lockly_missing_wifi_bridge';
|
|
108730
|
-
} | {
|
|
108731
|
-
/** Date and time at which Seam created the error. */
|
|
108732
|
-
created_at: string;
|
|
108733
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
108734
|
-
message: string;
|
|
108735
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
108736
|
-
is_connected_account_error?: boolean | undefined;
|
|
108737
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
108738
|
-
is_bridge_error?: boolean | undefined;
|
|
108739
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108740
|
-
error_code: 'invalid_credentials';
|
|
108741
108595
|
} | {
|
|
108742
108596
|
/** Date and time at which Seam created the error. */
|
|
108743
108597
|
created_at: string;
|
|
@@ -109241,17 +109095,6 @@ type Routes = {
|
|
|
109241
109095
|
created_at: string;
|
|
109242
109096
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109243
109097
|
error_code: 'lockly_missing_wifi_bridge';
|
|
109244
|
-
} | {
|
|
109245
|
-
/** Date and time at which Seam created the error. */
|
|
109246
|
-
created_at: string;
|
|
109247
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109248
|
-
message: string;
|
|
109249
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
109250
|
-
is_connected_account_error?: boolean | undefined;
|
|
109251
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
109252
|
-
is_bridge_error?: boolean | undefined;
|
|
109253
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109254
|
-
error_code: 'invalid_credentials';
|
|
109255
109098
|
} | {
|
|
109256
109099
|
/** Date and time at which Seam created the error. */
|
|
109257
109100
|
created_at: string;
|
|
@@ -109788,17 +109631,6 @@ type Routes = {
|
|
|
109788
109631
|
created_at: string;
|
|
109789
109632
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109790
109633
|
error_code: 'lockly_missing_wifi_bridge';
|
|
109791
|
-
} | {
|
|
109792
|
-
/** Date and time at which Seam created the error. */
|
|
109793
|
-
created_at: string;
|
|
109794
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
109795
|
-
message: string;
|
|
109796
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
109797
|
-
is_connected_account_error?: boolean | undefined;
|
|
109798
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
109799
|
-
is_bridge_error?: boolean | undefined;
|
|
109800
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
109801
|
-
error_code: 'invalid_credentials';
|
|
109802
109634
|
} | {
|
|
109803
109635
|
/** Date and time at which Seam created the error. */
|
|
109804
109636
|
created_at: string;
|
|
@@ -111585,17 +111417,6 @@ type Routes = {
|
|
|
111585
111417
|
created_at: string;
|
|
111586
111418
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
111587
111419
|
error_code: 'lockly_missing_wifi_bridge';
|
|
111588
|
-
} | {
|
|
111589
|
-
/** Date and time at which Seam created the error. */
|
|
111590
|
-
created_at: string;
|
|
111591
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
111592
|
-
message: string;
|
|
111593
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
111594
|
-
is_connected_account_error?: boolean | undefined;
|
|
111595
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
111596
|
-
is_bridge_error?: boolean | undefined;
|
|
111597
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
111598
|
-
error_code: 'invalid_credentials';
|
|
111599
111420
|
} | {
|
|
111600
111421
|
/** Date and time at which Seam created the error. */
|
|
111601
111422
|
created_at: string;
|
|
@@ -112093,17 +111914,6 @@ type Routes = {
|
|
|
112093
111914
|
created_at: string;
|
|
112094
111915
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112095
111916
|
error_code: 'lockly_missing_wifi_bridge';
|
|
112096
|
-
} | {
|
|
112097
|
-
/** Date and time at which Seam created the error. */
|
|
112098
|
-
created_at: string;
|
|
112099
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
112100
|
-
message: string;
|
|
112101
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
112102
|
-
is_connected_account_error?: boolean | undefined;
|
|
112103
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
112104
|
-
is_bridge_error?: boolean | undefined;
|
|
112105
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
112106
|
-
error_code: 'invalid_credentials';
|
|
112107
111917
|
} | {
|
|
112108
111918
|
/** Date and time at which Seam created the error. */
|
|
112109
111919
|
created_at: string;
|
|
@@ -114842,17 +114652,6 @@ type Routes = {
|
|
|
114842
114652
|
created_at: string;
|
|
114843
114653
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114844
114654
|
error_code: 'lockly_missing_wifi_bridge';
|
|
114845
|
-
} | {
|
|
114846
|
-
/** Date and time at which Seam created the error. */
|
|
114847
|
-
created_at: string;
|
|
114848
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
114849
|
-
message: string;
|
|
114850
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
114851
|
-
is_connected_account_error?: boolean | undefined;
|
|
114852
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
114853
|
-
is_bridge_error?: boolean | undefined;
|
|
114854
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
114855
|
-
error_code: 'invalid_credentials';
|
|
114856
114655
|
} | {
|
|
114857
114656
|
/** Date and time at which Seam created the error. */
|
|
114858
114657
|
created_at: string;
|
|
@@ -115211,17 +115010,6 @@ type Routes = {
|
|
|
115211
115010
|
is_bridge_error?: boolean | undefined;
|
|
115212
115011
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115213
115012
|
error_code: 'account_disconnected';
|
|
115214
|
-
} | {
|
|
115215
|
-
/** Date and time at which Seam created the error. */
|
|
115216
|
-
created_at: string;
|
|
115217
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
115218
|
-
message: string;
|
|
115219
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
115220
|
-
is_connected_account_error?: boolean | undefined;
|
|
115221
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
115222
|
-
is_bridge_error?: boolean | undefined;
|
|
115223
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115224
|
-
error_code: 'invalid_credentials';
|
|
115225
115013
|
} | {
|
|
115226
115014
|
/** Date and time at which Seam created the error. */
|
|
115227
115015
|
created_at: string;
|
|
@@ -118036,17 +117824,6 @@ type Routes = {
|
|
|
118036
117824
|
created_at: string;
|
|
118037
117825
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118038
117826
|
error_code: 'lockly_missing_wifi_bridge';
|
|
118039
|
-
} | {
|
|
118040
|
-
/** Date and time at which Seam created the error. */
|
|
118041
|
-
created_at: string;
|
|
118042
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
118043
|
-
message: string;
|
|
118044
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
118045
|
-
is_connected_account_error?: boolean | undefined;
|
|
118046
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
118047
|
-
is_bridge_error?: boolean | undefined;
|
|
118048
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
118049
|
-
error_code: 'invalid_credentials';
|
|
118050
117827
|
} | {
|
|
118051
117828
|
/** Date and time at which Seam created the error. */
|
|
118052
117829
|
created_at: string;
|
|
@@ -120633,17 +120410,6 @@ type Routes = {
|
|
|
120633
120410
|
created_at: string;
|
|
120634
120411
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
120635
120412
|
error_code: 'lockly_missing_wifi_bridge';
|
|
120636
|
-
} | {
|
|
120637
|
-
/** Date and time at which Seam created the error. */
|
|
120638
|
-
created_at: string;
|
|
120639
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
120640
|
-
message: string;
|
|
120641
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
120642
|
-
is_connected_account_error?: boolean | undefined;
|
|
120643
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
120644
|
-
is_bridge_error?: boolean | undefined;
|
|
120645
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
120646
|
-
error_code: 'invalid_credentials';
|
|
120647
120413
|
} | {
|
|
120648
120414
|
/** Date and time at which Seam created the error. */
|
|
120649
120415
|
created_at: string;
|
|
@@ -123292,17 +123058,6 @@ type Routes = {
|
|
|
123292
123058
|
created_at: string;
|
|
123293
123059
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123294
123060
|
error_code: 'lockly_missing_wifi_bridge';
|
|
123295
|
-
} | {
|
|
123296
|
-
/** Date and time at which Seam created the error. */
|
|
123297
|
-
created_at: string;
|
|
123298
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123299
|
-
message: string;
|
|
123300
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
123301
|
-
is_connected_account_error?: boolean | undefined;
|
|
123302
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
123303
|
-
is_bridge_error?: boolean | undefined;
|
|
123304
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123305
|
-
error_code: 'invalid_credentials';
|
|
123306
123061
|
} | {
|
|
123307
123062
|
/** Date and time at which Seam created the error. */
|
|
123308
123063
|
created_at: string;
|
|
@@ -123793,17 +123548,6 @@ type Routes = {
|
|
|
123793
123548
|
created_at: string;
|
|
123794
123549
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123795
123550
|
error_code: 'lockly_missing_wifi_bridge';
|
|
123796
|
-
} | {
|
|
123797
|
-
/** Date and time at which Seam created the error. */
|
|
123798
|
-
created_at: string;
|
|
123799
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
123800
|
-
message: string;
|
|
123801
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
123802
|
-
is_connected_account_error?: boolean | undefined;
|
|
123803
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
123804
|
-
is_bridge_error?: boolean | undefined;
|
|
123805
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
123806
|
-
error_code: 'invalid_credentials';
|
|
123807
123551
|
} | {
|
|
123808
123552
|
/** Date and time at which Seam created the error. */
|
|
123809
123553
|
created_at: string;
|
|
@@ -134436,17 +134180,6 @@ type Routes = {
|
|
|
134436
134180
|
is_bridge_error?: boolean | undefined;
|
|
134437
134181
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134438
134182
|
error_code: 'account_disconnected';
|
|
134439
|
-
} | {
|
|
134440
|
-
/** Date and time at which Seam created the error. */
|
|
134441
|
-
created_at: string;
|
|
134442
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134443
|
-
message: string;
|
|
134444
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
134445
|
-
is_connected_account_error?: boolean | undefined;
|
|
134446
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
134447
|
-
is_bridge_error?: boolean | undefined;
|
|
134448
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134449
|
-
error_code: 'invalid_credentials';
|
|
134450
134183
|
} | {
|
|
134451
134184
|
/** Date and time at which Seam created the error. */
|
|
134452
134185
|
created_at: string;
|
|
@@ -134591,17 +134324,6 @@ type Routes = {
|
|
|
134591
134324
|
is_bridge_error?: boolean | undefined;
|
|
134592
134325
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134593
134326
|
error_code: 'account_disconnected';
|
|
134594
|
-
} | {
|
|
134595
|
-
/** Date and time at which Seam created the error. */
|
|
134596
|
-
created_at: string;
|
|
134597
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134598
|
-
message: string;
|
|
134599
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
134600
|
-
is_connected_account_error?: boolean | undefined;
|
|
134601
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
134602
|
-
is_bridge_error?: boolean | undefined;
|
|
134603
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134604
|
-
error_code: 'invalid_credentials';
|
|
134605
134327
|
} | {
|
|
134606
134328
|
/** Date and time at which Seam created the error. */
|
|
134607
134329
|
created_at: string;
|
|
@@ -134764,17 +134486,6 @@ type Routes = {
|
|
|
134764
134486
|
is_bridge_error?: boolean | undefined;
|
|
134765
134487
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134766
134488
|
error_code: 'account_disconnected';
|
|
134767
|
-
} | {
|
|
134768
|
-
/** Date and time at which Seam created the error. */
|
|
134769
|
-
created_at: string;
|
|
134770
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
134771
|
-
message: string;
|
|
134772
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
134773
|
-
is_connected_account_error?: boolean | undefined;
|
|
134774
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
134775
|
-
is_bridge_error?: boolean | undefined;
|
|
134776
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
134777
|
-
error_code: 'invalid_credentials';
|
|
134778
134489
|
} | {
|
|
134779
134490
|
/** Date and time at which Seam created the error. */
|
|
134780
134491
|
created_at: string;
|
|
@@ -136540,17 +136251,6 @@ type Routes = {
|
|
|
136540
136251
|
created_at: string;
|
|
136541
136252
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
136542
136253
|
error_code: 'lockly_missing_wifi_bridge';
|
|
136543
|
-
} | {
|
|
136544
|
-
/** Date and time at which Seam created the error. */
|
|
136545
|
-
created_at: string;
|
|
136546
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
136547
|
-
message: string;
|
|
136548
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
136549
|
-
is_connected_account_error?: boolean | undefined;
|
|
136550
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
136551
|
-
is_bridge_error?: boolean | undefined;
|
|
136552
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
136553
|
-
error_code: 'invalid_credentials';
|
|
136554
136254
|
} | {
|
|
136555
136255
|
/** Date and time at which Seam created the error. */
|
|
136556
136256
|
created_at: string;
|
|
@@ -137800,17 +137500,6 @@ type Routes = {
|
|
|
137800
137500
|
created_at: string;
|
|
137801
137501
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137802
137502
|
error_code: 'lockly_missing_wifi_bridge';
|
|
137803
|
-
} | {
|
|
137804
|
-
/** Date and time at which Seam created the error. */
|
|
137805
|
-
created_at: string;
|
|
137806
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
137807
|
-
message: string;
|
|
137808
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
137809
|
-
is_connected_account_error?: boolean | undefined;
|
|
137810
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
137811
|
-
is_bridge_error?: boolean | undefined;
|
|
137812
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
137813
|
-
error_code: 'invalid_credentials';
|
|
137814
137503
|
} | {
|
|
137815
137504
|
/** Date and time at which Seam created the error. */
|
|
137816
137505
|
created_at: string;
|
|
@@ -138254,17 +137943,6 @@ type Routes = {
|
|
|
138254
137943
|
created_at: string;
|
|
138255
137944
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138256
137945
|
error_code: 'lockly_missing_wifi_bridge';
|
|
138257
|
-
} | {
|
|
138258
|
-
/** Date and time at which Seam created the error. */
|
|
138259
|
-
created_at: string;
|
|
138260
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138261
|
-
message: string;
|
|
138262
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
138263
|
-
is_connected_account_error?: boolean | undefined;
|
|
138264
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
138265
|
-
is_bridge_error?: boolean | undefined;
|
|
138266
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138267
|
-
error_code: 'invalid_credentials';
|
|
138268
137946
|
} | {
|
|
138269
137947
|
/** Date and time at which Seam created the error. */
|
|
138270
137948
|
created_at: string;
|
|
@@ -138695,17 +138373,6 @@ type Routes = {
|
|
|
138695
138373
|
created_at: string;
|
|
138696
138374
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138697
138375
|
error_code: 'lockly_missing_wifi_bridge';
|
|
138698
|
-
} | {
|
|
138699
|
-
/** Date and time at which Seam created the error. */
|
|
138700
|
-
created_at: string;
|
|
138701
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
138702
|
-
message: string;
|
|
138703
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
138704
|
-
is_connected_account_error?: boolean | undefined;
|
|
138705
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
138706
|
-
is_bridge_error?: boolean | undefined;
|
|
138707
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
138708
|
-
error_code: 'invalid_credentials';
|
|
138709
138376
|
} | {
|
|
138710
138377
|
/** Date and time at which Seam created the error. */
|
|
138711
138378
|
created_at: string;
|
|
@@ -143953,17 +143620,6 @@ type Routes = {
|
|
|
143953
143620
|
created_at: string;
|
|
143954
143621
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
143955
143622
|
error_code: 'lockly_missing_wifi_bridge';
|
|
143956
|
-
} | {
|
|
143957
|
-
/** Date and time at which Seam created the error. */
|
|
143958
|
-
created_at: string;
|
|
143959
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
143960
|
-
message: string;
|
|
143961
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
143962
|
-
is_connected_account_error?: boolean | undefined;
|
|
143963
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
143964
|
-
is_bridge_error?: boolean | undefined;
|
|
143965
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
143966
|
-
error_code: 'invalid_credentials';
|
|
143967
143623
|
} | {
|
|
143968
143624
|
/** Date and time at which Seam created the error. */
|
|
143969
143625
|
created_at: string;
|
|
@@ -145164,17 +144820,6 @@ type Routes = {
|
|
|
145164
144820
|
created_at: string;
|
|
145165
144821
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
145166
144822
|
error_code: 'lockly_missing_wifi_bridge';
|
|
145167
|
-
} | {
|
|
145168
|
-
/** Date and time at which Seam created the error. */
|
|
145169
|
-
created_at: string;
|
|
145170
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
145171
|
-
message: string;
|
|
145172
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
145173
|
-
is_connected_account_error?: boolean | undefined;
|
|
145174
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
145175
|
-
is_bridge_error?: boolean | undefined;
|
|
145176
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
145177
|
-
error_code: 'invalid_credentials';
|
|
145178
144823
|
} | {
|
|
145179
144824
|
/** Date and time at which Seam created the error. */
|
|
145180
144825
|
created_at: string;
|
|
@@ -146424,17 +146069,6 @@ type Routes = {
|
|
|
146424
146069
|
created_at: string;
|
|
146425
146070
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146426
146071
|
error_code: 'lockly_missing_wifi_bridge';
|
|
146427
|
-
} | {
|
|
146428
|
-
/** Date and time at which Seam created the error. */
|
|
146429
|
-
created_at: string;
|
|
146430
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
146431
|
-
message: string;
|
|
146432
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
146433
|
-
is_connected_account_error?: boolean | undefined;
|
|
146434
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
146435
|
-
is_bridge_error?: boolean | undefined;
|
|
146436
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
146437
|
-
error_code: 'invalid_credentials';
|
|
146438
146072
|
} | {
|
|
146439
146073
|
/** Date and time at which Seam created the error. */
|
|
146440
146074
|
created_at: string;
|
|
@@ -147634,17 +147268,6 @@ type Routes = {
|
|
|
147634
147268
|
created_at: string;
|
|
147635
147269
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147636
147270
|
error_code: 'lockly_missing_wifi_bridge';
|
|
147637
|
-
} | {
|
|
147638
|
-
/** Date and time at which Seam created the error. */
|
|
147639
|
-
created_at: string;
|
|
147640
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
147641
|
-
message: string;
|
|
147642
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
147643
|
-
is_connected_account_error?: boolean | undefined;
|
|
147644
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
147645
|
-
is_bridge_error?: boolean | undefined;
|
|
147646
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
147647
|
-
error_code: 'invalid_credentials';
|
|
147648
147271
|
} | {
|
|
147649
147272
|
/** Date and time at which Seam created the error. */
|
|
147650
147273
|
created_at: string;
|
|
@@ -153932,17 +153555,6 @@ type Routes = {
|
|
|
153932
153555
|
created_at: string;
|
|
153933
153556
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
153934
153557
|
error_code: 'lockly_missing_wifi_bridge';
|
|
153935
|
-
} | {
|
|
153936
|
-
/** Date and time at which Seam created the error. */
|
|
153937
|
-
created_at: string;
|
|
153938
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
153939
|
-
message: string;
|
|
153940
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
153941
|
-
is_connected_account_error?: boolean | undefined;
|
|
153942
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
153943
|
-
is_bridge_error?: boolean | undefined;
|
|
153944
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
153945
|
-
error_code: 'invalid_credentials';
|
|
153946
153558
|
} | {
|
|
153947
153559
|
/** Date and time at which Seam created the error. */
|
|
153948
153560
|
created_at: string;
|
|
@@ -155142,17 +154754,6 @@ type Routes = {
|
|
|
155142
154754
|
created_at: string;
|
|
155143
154755
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
155144
154756
|
error_code: 'lockly_missing_wifi_bridge';
|
|
155145
|
-
} | {
|
|
155146
|
-
/** Date and time at which Seam created the error. */
|
|
155147
|
-
created_at: string;
|
|
155148
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
155149
|
-
message: string;
|
|
155150
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
155151
|
-
is_connected_account_error?: boolean | undefined;
|
|
155152
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
155153
|
-
is_bridge_error?: boolean | undefined;
|
|
155154
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
155155
|
-
error_code: 'invalid_credentials';
|
|
155156
154757
|
} | {
|
|
155157
154758
|
/** Date and time at which Seam created the error. */
|
|
155158
154759
|
created_at: string;
|
|
@@ -161943,6 +161544,48 @@ type Routes = {
|
|
|
161943
161544
|
};
|
|
161944
161545
|
};
|
|
161945
161546
|
};
|
|
161547
|
+
'/seam/customer/v1/reservations/list': {
|
|
161548
|
+
route: '/seam/customer/v1/reservations/list';
|
|
161549
|
+
method: 'GET' | 'POST';
|
|
161550
|
+
queryParams: {};
|
|
161551
|
+
jsonBody: {};
|
|
161552
|
+
commonParams: {
|
|
161553
|
+
/** Filter reservations by space key. */
|
|
161554
|
+
space_key?: string | undefined;
|
|
161555
|
+
/** Maximum number of records to return per page. */
|
|
161556
|
+
limit?: number;
|
|
161557
|
+
/** Timestamp by which to limit returned reservations. Returns reservations created before this timestamp. */
|
|
161558
|
+
created_before?: Date | undefined;
|
|
161559
|
+
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
161560
|
+
page_cursor?: ((string | undefined) | null) | undefined;
|
|
161561
|
+
};
|
|
161562
|
+
formData: {};
|
|
161563
|
+
jsonResponse: {
|
|
161564
|
+
reservations: {
|
|
161565
|
+
reservation_id: string;
|
|
161566
|
+
reservation_key: string;
|
|
161567
|
+
name: string | null;
|
|
161568
|
+
starts_at: string | null;
|
|
161569
|
+
ends_at: string | null;
|
|
161570
|
+
created_at: string;
|
|
161571
|
+
guest_name: string | null;
|
|
161572
|
+
access_methods: {
|
|
161573
|
+
access_method_id: string;
|
|
161574
|
+
mode: string;
|
|
161575
|
+
is_issued: boolean;
|
|
161576
|
+
}[];
|
|
161577
|
+
}[];
|
|
161578
|
+
/** Information about the current page of results. */
|
|
161579
|
+
pagination: {
|
|
161580
|
+
/** Opaque value that can be used to select the next page of results via the `page_cursor` parameter. */
|
|
161581
|
+
next_page_cursor: string | null;
|
|
161582
|
+
/** Indicates whether there is another page of results after this one. */
|
|
161583
|
+
has_next_page: boolean;
|
|
161584
|
+
/** URL to get the next page of results. */
|
|
161585
|
+
next_page_url: string | null;
|
|
161586
|
+
};
|
|
161587
|
+
};
|
|
161588
|
+
};
|
|
161946
161589
|
'/seam/customer/v1/settings/get': {
|
|
161947
161590
|
route: '/seam/customer/v1/settings/get';
|
|
161948
161591
|
method: 'GET' | 'POST';
|
|
@@ -163764,17 +163407,6 @@ type Routes = {
|
|
|
163764
163407
|
created_at: string;
|
|
163765
163408
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
163766
163409
|
error_code: 'lockly_missing_wifi_bridge';
|
|
163767
|
-
} | {
|
|
163768
|
-
/** Date and time at which Seam created the error. */
|
|
163769
|
-
created_at: string;
|
|
163770
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
163771
|
-
message: string;
|
|
163772
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
163773
|
-
is_connected_account_error?: boolean | undefined;
|
|
163774
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
163775
|
-
is_bridge_error?: boolean | undefined;
|
|
163776
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
163777
|
-
error_code: 'invalid_credentials';
|
|
163778
163410
|
} | {
|
|
163779
163411
|
/** Date and time at which Seam created the error. */
|
|
163780
163412
|
created_at: string;
|
|
@@ -164086,17 +163718,6 @@ type Routes = {
|
|
|
164086
163718
|
is_bridge_error?: boolean | undefined;
|
|
164087
163719
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
164088
163720
|
error_code: 'account_disconnected';
|
|
164089
|
-
} | {
|
|
164090
|
-
/** Date and time at which Seam created the error. */
|
|
164091
|
-
created_at: string;
|
|
164092
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
164093
|
-
message: string;
|
|
164094
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
164095
|
-
is_connected_account_error?: boolean | undefined;
|
|
164096
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
164097
|
-
is_bridge_error?: boolean | undefined;
|
|
164098
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
164099
|
-
error_code: 'invalid_credentials';
|
|
164100
163721
|
} | {
|
|
164101
163722
|
/** Date and time at which Seam created the error. */
|
|
164102
163723
|
created_at: string;
|
|
@@ -169368,17 +168989,6 @@ type Routes = {
|
|
|
169368
168989
|
created_at: string;
|
|
169369
168990
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
169370
168991
|
error_code: 'lockly_missing_wifi_bridge';
|
|
169371
|
-
} | {
|
|
169372
|
-
/** Date and time at which Seam created the error. */
|
|
169373
|
-
created_at: string;
|
|
169374
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
169375
|
-
message: string;
|
|
169376
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
169377
|
-
is_connected_account_error?: boolean | undefined;
|
|
169378
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
169379
|
-
is_bridge_error?: boolean | undefined;
|
|
169380
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
169381
|
-
error_code: 'invalid_credentials';
|
|
169382
168992
|
} | {
|
|
169383
168993
|
/** Date and time at which Seam created the error. */
|
|
169384
168994
|
created_at: string;
|
|
@@ -173160,17 +172770,6 @@ type Routes = {
|
|
|
173160
172770
|
created_at: string;
|
|
173161
172771
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
173162
172772
|
error_code: 'lockly_missing_wifi_bridge';
|
|
173163
|
-
} | {
|
|
173164
|
-
/** Date and time at which Seam created the error. */
|
|
173165
|
-
created_at: string;
|
|
173166
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
173167
|
-
message: string;
|
|
173168
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
173169
|
-
is_connected_account_error?: boolean | undefined;
|
|
173170
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
173171
|
-
is_bridge_error?: boolean | undefined;
|
|
173172
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
173173
|
-
error_code: 'invalid_credentials';
|
|
173174
172773
|
} | {
|
|
173175
172774
|
/** Date and time at which Seam created the error. */
|
|
173176
172775
|
created_at: string;
|
|
@@ -174370,17 +173969,6 @@ type Routes = {
|
|
|
174370
173969
|
created_at: string;
|
|
174371
173970
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174372
173971
|
error_code: 'lockly_missing_wifi_bridge';
|
|
174373
|
-
} | {
|
|
174374
|
-
/** Date and time at which Seam created the error. */
|
|
174375
|
-
created_at: string;
|
|
174376
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
174377
|
-
message: string;
|
|
174378
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
174379
|
-
is_connected_account_error?: boolean | undefined;
|
|
174380
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
174381
|
-
is_bridge_error?: boolean | undefined;
|
|
174382
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
174383
|
-
error_code: 'invalid_credentials';
|
|
174384
173972
|
} | {
|
|
174385
173973
|
/** Date and time at which Seam created the error. */
|
|
174386
173974
|
created_at: string;
|
|
@@ -181521,17 +181109,6 @@ type Routes = {
|
|
|
181521
181109
|
created_at: string;
|
|
181522
181110
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
181523
181111
|
error_code: 'lockly_missing_wifi_bridge';
|
|
181524
|
-
} | {
|
|
181525
|
-
/** Date and time at which Seam created the error. */
|
|
181526
|
-
created_at: string;
|
|
181527
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
181528
|
-
message: string;
|
|
181529
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
181530
|
-
is_connected_account_error?: boolean | undefined;
|
|
181531
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
181532
|
-
is_bridge_error?: boolean | undefined;
|
|
181533
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
181534
|
-
error_code: 'invalid_credentials';
|
|
181535
181112
|
} | {
|
|
181536
181113
|
/** Date and time at which Seam created the error. */
|
|
181537
181114
|
created_at: string;
|
|
@@ -182733,17 +182310,6 @@ type Routes = {
|
|
|
182733
182310
|
created_at: string;
|
|
182734
182311
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
182735
182312
|
error_code: 'lockly_missing_wifi_bridge';
|
|
182736
|
-
} | {
|
|
182737
|
-
/** Date and time at which Seam created the error. */
|
|
182738
|
-
created_at: string;
|
|
182739
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
182740
|
-
message: string;
|
|
182741
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
182742
|
-
is_connected_account_error?: boolean | undefined;
|
|
182743
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
182744
|
-
is_bridge_error?: boolean | undefined;
|
|
182745
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
182746
|
-
error_code: 'invalid_credentials';
|
|
182747
182313
|
} | {
|
|
182748
182314
|
/** Date and time at which Seam created the error. */
|
|
182749
182315
|
created_at: string;
|
|
@@ -184715,17 +184281,6 @@ type Routes = {
|
|
|
184715
184281
|
created_at: string;
|
|
184716
184282
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
184717
184283
|
error_code: 'lockly_missing_wifi_bridge';
|
|
184718
|
-
} | {
|
|
184719
|
-
/** Date and time at which Seam created the error. */
|
|
184720
|
-
created_at: string;
|
|
184721
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
184722
|
-
message: string;
|
|
184723
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
184724
|
-
is_connected_account_error?: boolean | undefined;
|
|
184725
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
184726
|
-
is_bridge_error?: boolean | undefined;
|
|
184727
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
184728
|
-
error_code: 'invalid_credentials';
|
|
184729
184284
|
} | {
|
|
184730
184285
|
/** Date and time at which Seam created the error. */
|
|
184731
184286
|
created_at: string;
|
|
@@ -187312,17 +186867,6 @@ type Routes = {
|
|
|
187312
186867
|
created_at: string;
|
|
187313
186868
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
187314
186869
|
error_code: 'lockly_missing_wifi_bridge';
|
|
187315
|
-
} | {
|
|
187316
|
-
/** Date and time at which Seam created the error. */
|
|
187317
|
-
created_at: string;
|
|
187318
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
187319
|
-
message: string;
|
|
187320
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
187321
|
-
is_connected_account_error?: boolean | undefined;
|
|
187322
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
187323
|
-
is_bridge_error?: boolean | undefined;
|
|
187324
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
187325
|
-
error_code: 'invalid_credentials';
|
|
187326
186870
|
} | {
|
|
187327
186871
|
/** Date and time at which Seam created the error. */
|
|
187328
186872
|
created_at: string;
|
|
@@ -189971,17 +189515,6 @@ type Routes = {
|
|
|
189971
189515
|
created_at: string;
|
|
189972
189516
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
189973
189517
|
error_code: 'lockly_missing_wifi_bridge';
|
|
189974
|
-
} | {
|
|
189975
|
-
/** Date and time at which Seam created the error. */
|
|
189976
|
-
created_at: string;
|
|
189977
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
189978
|
-
message: string;
|
|
189979
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
189980
|
-
is_connected_account_error?: boolean | undefined;
|
|
189981
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
189982
|
-
is_bridge_error?: boolean | undefined;
|
|
189983
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
189984
|
-
error_code: 'invalid_credentials';
|
|
189985
189518
|
} | {
|
|
189986
189519
|
/** Date and time at which Seam created the error. */
|
|
189987
189520
|
created_at: string;
|
|
@@ -190472,17 +190005,6 @@ type Routes = {
|
|
|
190472
190005
|
created_at: string;
|
|
190473
190006
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
190474
190007
|
error_code: 'lockly_missing_wifi_bridge';
|
|
190475
|
-
} | {
|
|
190476
|
-
/** Date and time at which Seam created the error. */
|
|
190477
|
-
created_at: string;
|
|
190478
|
-
/** Detailed description of the error. Provides insights into the issue and potentially how to rectify it. */
|
|
190479
|
-
message: string;
|
|
190480
|
-
/** Indicates whether the error is related specifically to the connected account. */
|
|
190481
|
-
is_connected_account_error?: boolean | undefined;
|
|
190482
|
-
/** Indicates whether the error is related to [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge). */
|
|
190483
|
-
is_bridge_error?: boolean | undefined;
|
|
190484
|
-
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
190485
|
-
error_code: 'invalid_credentials';
|
|
190486
190008
|
} | {
|
|
190487
190009
|
/** Date and time at which Seam created the error. */
|
|
190488
190010
|
created_at: string;
|