@seamapi/types 1.411.1 → 1.413.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 +139 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +336 -3
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +26 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +26 -0
- package/lib/seam/connect/models/client-sessions/client-session.d.ts +3 -0
- package/lib/seam/connect/models/client-sessions/client-session.js +4 -1
- package/lib/seam/connect/models/client-sessions/client-session.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +87 -0
- package/lib/seam/connect/models/devices/device.js +9 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +26 -0
- package/lib/seam/connect/openapi.d.ts +45 -0
- package/lib/seam/connect/openapi.js +125 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +168 -3
- package/package.json +2 -2
- package/src/lib/seam/connect/models/client-sessions/client-session.ts +4 -1
- package/src/lib/seam/connect/models/devices/device.ts +10 -0
- package/src/lib/seam/connect/openapi.ts +138 -3
- package/src/lib/seam/connect/route-types.ts +192 -3
package/dist/connect.d.cts
CHANGED
|
@@ -1310,6 +1310,22 @@ declare const access_code: z.ZodObject<{
|
|
|
1310
1310
|
created_at: string;
|
|
1311
1311
|
error_code: "subscription_required";
|
|
1312
1312
|
is_device_error: true;
|
|
1313
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
1314
|
+
message: z.ZodString;
|
|
1315
|
+
is_device_error: z.ZodLiteral<true>;
|
|
1316
|
+
created_at: z.ZodString;
|
|
1317
|
+
}, {
|
|
1318
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
1319
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1320
|
+
message: string;
|
|
1321
|
+
created_at: string;
|
|
1322
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1323
|
+
is_device_error: true;
|
|
1324
|
+
}, {
|
|
1325
|
+
message: string;
|
|
1326
|
+
created_at: string;
|
|
1327
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1328
|
+
is_device_error: true;
|
|
1313
1329
|
}>)[]]>, "many">;
|
|
1314
1330
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
1315
1331
|
message: z.ZodString;
|
|
@@ -1584,6 +1600,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1584
1600
|
created_at: string;
|
|
1585
1601
|
error_code: "subscription_required";
|
|
1586
1602
|
is_device_error: true;
|
|
1603
|
+
} | {
|
|
1604
|
+
message: string;
|
|
1605
|
+
created_at: string;
|
|
1606
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1607
|
+
is_device_error: true;
|
|
1587
1608
|
} | {
|
|
1588
1609
|
message: string;
|
|
1589
1610
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -1878,6 +1899,11 @@ declare const access_code: z.ZodObject<{
|
|
|
1878
1899
|
created_at: string;
|
|
1879
1900
|
error_code: "subscription_required";
|
|
1880
1901
|
is_device_error: true;
|
|
1902
|
+
} | {
|
|
1903
|
+
message: string;
|
|
1904
|
+
created_at: string;
|
|
1905
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
1906
|
+
is_device_error: true;
|
|
1881
1907
|
} | {
|
|
1882
1908
|
message: string;
|
|
1883
1909
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -2819,6 +2845,22 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
2819
2845
|
created_at: string;
|
|
2820
2846
|
error_code: "subscription_required";
|
|
2821
2847
|
is_device_error: true;
|
|
2848
|
+
}> | z.ZodObject<z.objectUtil.extendShape<{
|
|
2849
|
+
message: z.ZodString;
|
|
2850
|
+
is_device_error: z.ZodLiteral<true>;
|
|
2851
|
+
created_at: z.ZodString;
|
|
2852
|
+
}, {
|
|
2853
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
2854
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2855
|
+
message: string;
|
|
2856
|
+
created_at: string;
|
|
2857
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
2858
|
+
is_device_error: true;
|
|
2859
|
+
}, {
|
|
2860
|
+
message: string;
|
|
2861
|
+
created_at: string;
|
|
2862
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
2863
|
+
is_device_error: true;
|
|
2822
2864
|
}>)[]]>, "many">;
|
|
2823
2865
|
warnings: z.ZodArray<z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
2824
2866
|
message: z.ZodString;
|
|
@@ -3096,6 +3138,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
3096
3138
|
created_at: string;
|
|
3097
3139
|
error_code: "subscription_required";
|
|
3098
3140
|
is_device_error: true;
|
|
3141
|
+
} | {
|
|
3142
|
+
message: string;
|
|
3143
|
+
created_at: string;
|
|
3144
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
3145
|
+
is_device_error: true;
|
|
3099
3146
|
} | {
|
|
3100
3147
|
message: string;
|
|
3101
3148
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -3381,6 +3428,11 @@ declare const unmanaged_access_code: z.ZodObject<z.objectUtil.extendShape<Pick<{
|
|
|
3381
3428
|
created_at: string;
|
|
3382
3429
|
error_code: "subscription_required";
|
|
3383
3430
|
is_device_error: true;
|
|
3431
|
+
} | {
|
|
3432
|
+
message: string;
|
|
3433
|
+
created_at: string;
|
|
3434
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
3435
|
+
is_device_error: true;
|
|
3384
3436
|
} | {
|
|
3385
3437
|
message: string;
|
|
3386
3438
|
error_code: "smartthings_failed_to_set_access_code";
|
|
@@ -10378,6 +10430,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10378
10430
|
connected_account_ids: z.ZodArray<z.ZodString, "many">;
|
|
10379
10431
|
connect_webview_ids: z.ZodArray<z.ZodString, "many">;
|
|
10380
10432
|
user_identity_ids: z.ZodArray<z.ZodString, "many">;
|
|
10433
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
10381
10434
|
}, "strip", z.ZodTypeAny, {
|
|
10382
10435
|
workspace_id: string;
|
|
10383
10436
|
created_at: string;
|
|
@@ -10389,6 +10442,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10389
10442
|
device_count: number;
|
|
10390
10443
|
connect_webview_ids: string[];
|
|
10391
10444
|
user_identity_ids: string[];
|
|
10445
|
+
user_identity_id?: string | undefined;
|
|
10392
10446
|
customer_id?: string | undefined;
|
|
10393
10447
|
}, {
|
|
10394
10448
|
workspace_id: string;
|
|
@@ -10401,6 +10455,7 @@ declare const client_session: z.ZodObject<{
|
|
|
10401
10455
|
device_count: number;
|
|
10402
10456
|
connect_webview_ids: string[];
|
|
10403
10457
|
user_identity_ids: string[];
|
|
10458
|
+
user_identity_id?: string | undefined;
|
|
10404
10459
|
customer_id?: string | undefined;
|
|
10405
10460
|
}>;
|
|
10406
10461
|
type ClientSession = z.infer<typeof client_session>;
|
|
@@ -11283,6 +11338,22 @@ declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<z
|
|
|
11283
11338
|
created_at: string;
|
|
11284
11339
|
error_code: "subscription_required";
|
|
11285
11340
|
is_device_error: true;
|
|
11341
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11342
|
+
message: z.ZodString;
|
|
11343
|
+
is_device_error: z.ZodLiteral<true>;
|
|
11344
|
+
created_at: z.ZodString;
|
|
11345
|
+
}, {
|
|
11346
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
11347
|
+
}>, "strip", z.ZodTypeAny, {
|
|
11348
|
+
message: string;
|
|
11349
|
+
created_at: string;
|
|
11350
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
11351
|
+
is_device_error: true;
|
|
11352
|
+
}, {
|
|
11353
|
+
message: string;
|
|
11354
|
+
created_at: string;
|
|
11355
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
11356
|
+
is_device_error: true;
|
|
11286
11357
|
}>]>;
|
|
11287
11358
|
type DeviceError = z.infer<typeof device_error>;
|
|
11288
11359
|
declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -13732,6 +13803,22 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13732
13803
|
created_at: string;
|
|
13733
13804
|
error_code: "subscription_required";
|
|
13734
13805
|
is_device_error: true;
|
|
13806
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
13807
|
+
message: z.ZodString;
|
|
13808
|
+
is_device_error: z.ZodLiteral<true>;
|
|
13809
|
+
created_at: z.ZodString;
|
|
13810
|
+
}, {
|
|
13811
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
13812
|
+
}>, "strip", z.ZodTypeAny, {
|
|
13813
|
+
message: string;
|
|
13814
|
+
created_at: string;
|
|
13815
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
13816
|
+
is_device_error: true;
|
|
13817
|
+
}, {
|
|
13818
|
+
message: string;
|
|
13819
|
+
created_at: string;
|
|
13820
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
13821
|
+
is_device_error: true;
|
|
13735
13822
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
13736
13823
|
created_at: z.ZodString;
|
|
13737
13824
|
message: z.ZodString;
|
|
@@ -14199,6 +14286,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14199
14286
|
created_at: string;
|
|
14200
14287
|
error_code: "subscription_required";
|
|
14201
14288
|
is_device_error: true;
|
|
14289
|
+
} | {
|
|
14290
|
+
message: string;
|
|
14291
|
+
created_at: string;
|
|
14292
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
14293
|
+
is_device_error: true;
|
|
14202
14294
|
})[];
|
|
14203
14295
|
connected_account_id: string;
|
|
14204
14296
|
warnings: ({
|
|
@@ -14803,6 +14895,11 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14803
14895
|
created_at: string;
|
|
14804
14896
|
error_code: "subscription_required";
|
|
14805
14897
|
is_device_error: true;
|
|
14898
|
+
} | {
|
|
14899
|
+
message: string;
|
|
14900
|
+
created_at: string;
|
|
14901
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
14902
|
+
is_device_error: true;
|
|
14806
14903
|
})[];
|
|
14807
14904
|
connected_account_id: string;
|
|
14808
14905
|
warnings: ({
|
|
@@ -17633,6 +17730,22 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
17633
17730
|
created_at: string;
|
|
17634
17731
|
error_code: "subscription_required";
|
|
17635
17732
|
is_device_error: true;
|
|
17733
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
17734
|
+
message: z.ZodString;
|
|
17735
|
+
is_device_error: z.ZodLiteral<true>;
|
|
17736
|
+
created_at: z.ZodString;
|
|
17737
|
+
}, {
|
|
17738
|
+
error_code: z.ZodLiteral<"lockly_missing_wifi_bridge">;
|
|
17739
|
+
}>, "strip", z.ZodTypeAny, {
|
|
17740
|
+
message: string;
|
|
17741
|
+
created_at: string;
|
|
17742
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
17743
|
+
is_device_error: true;
|
|
17744
|
+
}, {
|
|
17745
|
+
message: string;
|
|
17746
|
+
created_at: string;
|
|
17747
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
17748
|
+
is_device_error: true;
|
|
17636
17749
|
}>, ...(z.ZodObject<z.objectUtil.extendShape<{
|
|
17637
17750
|
created_at: z.ZodString;
|
|
17638
17751
|
message: z.ZodString;
|
|
@@ -18248,6 +18361,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18248
18361
|
created_at: string;
|
|
18249
18362
|
error_code: "subscription_required";
|
|
18250
18363
|
is_device_error: true;
|
|
18364
|
+
} | {
|
|
18365
|
+
message: string;
|
|
18366
|
+
created_at: string;
|
|
18367
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
18368
|
+
is_device_error: true;
|
|
18251
18369
|
})[];
|
|
18252
18370
|
connected_account_id: string;
|
|
18253
18371
|
warnings: ({
|
|
@@ -18469,6 +18587,11 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18469
18587
|
created_at: string;
|
|
18470
18588
|
error_code: "subscription_required";
|
|
18471
18589
|
is_device_error: true;
|
|
18590
|
+
} | {
|
|
18591
|
+
message: string;
|
|
18592
|
+
created_at: string;
|
|
18593
|
+
error_code: "lockly_missing_wifi_bridge";
|
|
18594
|
+
is_device_error: true;
|
|
18472
18595
|
})[];
|
|
18473
18596
|
connected_account_id: string;
|
|
18474
18597
|
warnings: ({
|
|
@@ -24532,7 +24655,12 @@ declare const _default: {
|
|
|
24532
24655
|
nullable: boolean;
|
|
24533
24656
|
type: string;
|
|
24534
24657
|
};
|
|
24658
|
+
user_identity_id: {
|
|
24659
|
+
format: string;
|
|
24660
|
+
type: string;
|
|
24661
|
+
};
|
|
24535
24662
|
user_identity_ids: {
|
|
24663
|
+
description: string;
|
|
24536
24664
|
items: {
|
|
24537
24665
|
format: string;
|
|
24538
24666
|
type: string;
|
|
@@ -40969,12 +41097,20 @@ declare const _default: {
|
|
|
40969
41097
|
minLength: number;
|
|
40970
41098
|
type: string;
|
|
40971
41099
|
};
|
|
41100
|
+
user_identity_id: {
|
|
41101
|
+
description: string;
|
|
41102
|
+
type: string;
|
|
41103
|
+
};
|
|
40972
41104
|
user_identity_ids: {
|
|
41105
|
+
deprecated: boolean;
|
|
40973
41106
|
description: string;
|
|
40974
41107
|
items: {
|
|
40975
41108
|
type: string;
|
|
40976
41109
|
};
|
|
41110
|
+
maxItems: number;
|
|
41111
|
+
minItems: number;
|
|
40977
41112
|
type: string;
|
|
41113
|
+
'x-deprecated': string;
|
|
40978
41114
|
};
|
|
40979
41115
|
};
|
|
40980
41116
|
type: string;
|
|
@@ -41076,12 +41212,20 @@ declare const _default: {
|
|
|
41076
41212
|
minLength: number;
|
|
41077
41213
|
type: string;
|
|
41078
41214
|
};
|
|
41215
|
+
user_identity_id: {
|
|
41216
|
+
description: string;
|
|
41217
|
+
type: string;
|
|
41218
|
+
};
|
|
41079
41219
|
user_identity_ids: {
|
|
41220
|
+
deprecated: boolean;
|
|
41080
41221
|
description: string;
|
|
41081
41222
|
items: {
|
|
41082
41223
|
type: string;
|
|
41083
41224
|
};
|
|
41225
|
+
maxItems: number;
|
|
41226
|
+
minItems: number;
|
|
41084
41227
|
type: string;
|
|
41228
|
+
'x-deprecated': string;
|
|
41085
41229
|
};
|
|
41086
41230
|
};
|
|
41087
41231
|
type: string;
|
|
@@ -41323,12 +41467,20 @@ declare const _default: {
|
|
|
41323
41467
|
minLength: number;
|
|
41324
41468
|
type: string;
|
|
41325
41469
|
};
|
|
41470
|
+
user_identity_id: {
|
|
41471
|
+
description: string;
|
|
41472
|
+
type: string;
|
|
41473
|
+
};
|
|
41326
41474
|
user_identity_ids: {
|
|
41475
|
+
deprecated: boolean;
|
|
41327
41476
|
description: string;
|
|
41328
41477
|
items: {
|
|
41329
41478
|
type: string;
|
|
41330
41479
|
};
|
|
41480
|
+
maxItems: number;
|
|
41481
|
+
minItems: number;
|
|
41331
41482
|
type: string;
|
|
41483
|
+
'x-deprecated': string;
|
|
41332
41484
|
};
|
|
41333
41485
|
};
|
|
41334
41486
|
type: string;
|
|
@@ -41424,12 +41576,20 @@ declare const _default: {
|
|
|
41424
41576
|
description: string;
|
|
41425
41577
|
type: string;
|
|
41426
41578
|
};
|
|
41579
|
+
user_identity_id: {
|
|
41580
|
+
description: string;
|
|
41581
|
+
type: string;
|
|
41582
|
+
};
|
|
41427
41583
|
user_identity_ids: {
|
|
41584
|
+
deprecated: boolean;
|
|
41428
41585
|
description: string;
|
|
41429
41586
|
items: {
|
|
41430
41587
|
type: string;
|
|
41431
41588
|
};
|
|
41589
|
+
maxItems: number;
|
|
41590
|
+
minItems: number;
|
|
41432
41591
|
type: string;
|
|
41592
|
+
'x-deprecated': string;
|
|
41433
41593
|
};
|
|
41434
41594
|
};
|
|
41435
41595
|
type: string;
|
|
@@ -41513,12 +41673,20 @@ declare const _default: {
|
|
|
41513
41673
|
description: string;
|
|
41514
41674
|
type: string;
|
|
41515
41675
|
};
|
|
41676
|
+
user_identity_id: {
|
|
41677
|
+
description: string;
|
|
41678
|
+
type: string;
|
|
41679
|
+
};
|
|
41516
41680
|
user_identity_ids: {
|
|
41681
|
+
deprecated: boolean;
|
|
41517
41682
|
description: string;
|
|
41518
41683
|
items: {
|
|
41519
41684
|
type: string;
|
|
41520
41685
|
};
|
|
41686
|
+
maxItems: number;
|
|
41687
|
+
minItems: number;
|
|
41521
41688
|
type: string;
|
|
41689
|
+
'x-deprecated': string;
|
|
41522
41690
|
};
|
|
41523
41691
|
};
|
|
41524
41692
|
type: string;
|
|
@@ -58301,6 +58469,12 @@ interface Routes {
|
|
|
58301
58469
|
created_at: string;
|
|
58302
58470
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58303
58471
|
error_code: 'subscription_required';
|
|
58472
|
+
} | {
|
|
58473
|
+
message: string;
|
|
58474
|
+
is_device_error: true;
|
|
58475
|
+
created_at: string;
|
|
58476
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58477
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
58304
58478
|
} | {
|
|
58305
58479
|
/** Date and time at which Seam created the error. */
|
|
58306
58480
|
created_at: string;
|
|
@@ -58797,6 +58971,12 @@ interface Routes {
|
|
|
58797
58971
|
created_at: string;
|
|
58798
58972
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58799
58973
|
error_code: 'subscription_required';
|
|
58974
|
+
} | {
|
|
58975
|
+
message: string;
|
|
58976
|
+
is_device_error: true;
|
|
58977
|
+
created_at: string;
|
|
58978
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
58979
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
58800
58980
|
} | {
|
|
58801
58981
|
/** Date and time at which Seam created the error. */
|
|
58802
58982
|
created_at: string;
|
|
@@ -60413,6 +60593,12 @@ interface Routes {
|
|
|
60413
60593
|
created_at: string;
|
|
60414
60594
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60415
60595
|
error_code: 'subscription_required';
|
|
60596
|
+
} | {
|
|
60597
|
+
message: string;
|
|
60598
|
+
is_device_error: true;
|
|
60599
|
+
created_at: string;
|
|
60600
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60601
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
60416
60602
|
} | {
|
|
60417
60603
|
/** Date and time at which Seam created the error. */
|
|
60418
60604
|
created_at: string;
|
|
@@ -60890,6 +61076,12 @@ interface Routes {
|
|
|
60890
61076
|
created_at: string;
|
|
60891
61077
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
60892
61078
|
error_code: 'subscription_required';
|
|
61079
|
+
} | {
|
|
61080
|
+
message: string;
|
|
61081
|
+
is_device_error: true;
|
|
61082
|
+
created_at: string;
|
|
61083
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61084
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
60893
61085
|
} | {
|
|
60894
61086
|
/** Date and time at which Seam created the error. */
|
|
60895
61087
|
created_at: string;
|
|
@@ -61374,6 +61566,12 @@ interface Routes {
|
|
|
61374
61566
|
created_at: string;
|
|
61375
61567
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61376
61568
|
error_code: 'subscription_required';
|
|
61569
|
+
} | {
|
|
61570
|
+
message: string;
|
|
61571
|
+
is_device_error: true;
|
|
61572
|
+
created_at: string;
|
|
61573
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61574
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
61377
61575
|
} | {
|
|
61378
61576
|
/** Date and time at which Seam created the error. */
|
|
61379
61577
|
created_at: string;
|
|
@@ -61836,6 +62034,12 @@ interface Routes {
|
|
|
61836
62034
|
created_at: string;
|
|
61837
62035
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
61838
62036
|
error_code: 'subscription_required';
|
|
62037
|
+
} | {
|
|
62038
|
+
message: string;
|
|
62039
|
+
is_device_error: true;
|
|
62040
|
+
created_at: string;
|
|
62041
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62042
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
61839
62043
|
} | {
|
|
61840
62044
|
/** Date and time at which Seam created the error. */
|
|
61841
62045
|
created_at: string;
|
|
@@ -62331,6 +62535,12 @@ interface Routes {
|
|
|
62331
62535
|
created_at: string;
|
|
62332
62536
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62333
62537
|
error_code: 'subscription_required';
|
|
62538
|
+
} | {
|
|
62539
|
+
message: string;
|
|
62540
|
+
is_device_error: true;
|
|
62541
|
+
created_at: string;
|
|
62542
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
62543
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
62334
62544
|
} | {
|
|
62335
62545
|
/** Date and time at which Seam created the error. */
|
|
62336
62546
|
created_at: string;
|
|
@@ -63934,6 +64144,12 @@ interface Routes {
|
|
|
63934
64144
|
created_at: string;
|
|
63935
64145
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
63936
64146
|
error_code: 'subscription_required';
|
|
64147
|
+
} | {
|
|
64148
|
+
message: string;
|
|
64149
|
+
is_device_error: true;
|
|
64150
|
+
created_at: string;
|
|
64151
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64152
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
63937
64153
|
} | {
|
|
63938
64154
|
/** Date and time at which Seam created the error. */
|
|
63939
64155
|
created_at: string;
|
|
@@ -64386,6 +64602,12 @@ interface Routes {
|
|
|
64386
64602
|
created_at: string;
|
|
64387
64603
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64388
64604
|
error_code: 'subscription_required';
|
|
64605
|
+
} | {
|
|
64606
|
+
message: string;
|
|
64607
|
+
is_device_error: true;
|
|
64608
|
+
created_at: string;
|
|
64609
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
64610
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
64389
64611
|
} | {
|
|
64390
64612
|
/** Date and time at which Seam created the error. */
|
|
64391
64613
|
created_at: string;
|
|
@@ -75642,8 +75864,11 @@ interface Routes {
|
|
|
75642
75864
|
connect_webview_ids?: string[] | undefined;
|
|
75643
75865
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) for which you want to create a client session. */
|
|
75644
75866
|
connected_account_ids?: string[] | undefined;
|
|
75645
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity)
|
|
75867
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
75868
|
+
* @deprecated Use `user_identity_id`. */
|
|
75646
75869
|
user_identity_ids?: string[] | undefined;
|
|
75870
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) for which you want to create a client session. */
|
|
75871
|
+
user_identity_id?: string | undefined;
|
|
75647
75872
|
/** Date and time at which the client session should expire, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
75648
75873
|
expires_at?: Date | undefined;
|
|
75649
75874
|
};
|
|
@@ -75670,7 +75895,9 @@ interface Routes {
|
|
|
75670
75895
|
customer_id?: string | undefined;
|
|
75671
75896
|
connected_account_ids: string[];
|
|
75672
75897
|
connect_webview_ids: string[];
|
|
75898
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75673
75899
|
user_identity_ids: string[];
|
|
75900
|
+
user_identity_id?: string | undefined;
|
|
75674
75901
|
};
|
|
75675
75902
|
};
|
|
75676
75903
|
};
|
|
@@ -75719,7 +75946,9 @@ interface Routes {
|
|
|
75719
75946
|
customer_id?: string | undefined;
|
|
75720
75947
|
connected_account_ids: string[];
|
|
75721
75948
|
connect_webview_ids: string[];
|
|
75949
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75722
75950
|
user_identity_ids: string[];
|
|
75951
|
+
user_identity_id?: string | undefined;
|
|
75723
75952
|
};
|
|
75724
75953
|
};
|
|
75725
75954
|
};
|
|
@@ -75734,8 +75963,11 @@ interface Routes {
|
|
|
75734
75963
|
connect_webview_ids?: string[] | undefined;
|
|
75735
75964
|
/** IDs of the [connected accounts](https://docs.seam.co/latest/api/connected_accounts) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
75736
75965
|
connected_account_ids?: string[] | undefined;
|
|
75737
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session
|
|
75966
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
75967
|
+
* @deprecated Use `user_identity_id`. */
|
|
75738
75968
|
user_identity_ids?: string[] | undefined;
|
|
75969
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session (or that are already associated with the existing client session). */
|
|
75970
|
+
user_identity_id?: string | undefined;
|
|
75739
75971
|
/** Date and time at which the client session should expire (or at which the existing client session expires), in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
75740
75972
|
expires_at?: Date | undefined;
|
|
75741
75973
|
};
|
|
@@ -75762,7 +75994,9 @@ interface Routes {
|
|
|
75762
75994
|
customer_id?: string | undefined;
|
|
75763
75995
|
connected_account_ids: string[];
|
|
75764
75996
|
connect_webview_ids: string[];
|
|
75997
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75765
75998
|
user_identity_ids: string[];
|
|
75999
|
+
user_identity_id?: string | undefined;
|
|
75766
76000
|
};
|
|
75767
76001
|
};
|
|
75768
76002
|
};
|
|
@@ -75780,8 +76014,11 @@ interface Routes {
|
|
|
75780
76014
|
connected_account_ids?: string[] | undefined;
|
|
75781
76015
|
/** IDs of the [Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews) that you want to associate with the client session. */
|
|
75782
76016
|
connect_webview_ids?: string[] | undefined;
|
|
75783
|
-
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
76017
|
+
/** IDs of the [user identities](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session.
|
|
76018
|
+
* @deprecated Use `user_identity_id`. */
|
|
75784
76019
|
user_identity_ids?: string[] | undefined;
|
|
76020
|
+
/** ID of the [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) that you want to associate with the client session. */
|
|
76021
|
+
user_identity_id?: string | undefined;
|
|
75785
76022
|
};
|
|
75786
76023
|
formData: {};
|
|
75787
76024
|
jsonResponse: {
|
|
@@ -75805,7 +76042,9 @@ interface Routes {
|
|
|
75805
76042
|
customer_id?: string | undefined;
|
|
75806
76043
|
connected_account_ids: string[];
|
|
75807
76044
|
connect_webview_ids: string[];
|
|
76045
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75808
76046
|
user_identity_ids: string[];
|
|
76047
|
+
user_identity_id?: string | undefined;
|
|
75809
76048
|
};
|
|
75810
76049
|
};
|
|
75811
76050
|
};
|
|
@@ -75839,7 +76078,9 @@ interface Routes {
|
|
|
75839
76078
|
customer_id?: string | undefined;
|
|
75840
76079
|
connected_account_ids: string[];
|
|
75841
76080
|
connect_webview_ids: string[];
|
|
76081
|
+
/** deprecated: Use `user_identity_id`. */
|
|
75842
76082
|
user_identity_ids: string[];
|
|
76083
|
+
user_identity_id?: string | undefined;
|
|
75843
76084
|
}>;
|
|
75844
76085
|
};
|
|
75845
76086
|
};
|
|
@@ -77642,6 +77883,12 @@ interface Routes {
|
|
|
77642
77883
|
created_at: string;
|
|
77643
77884
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
77644
77885
|
error_code: 'subscription_required';
|
|
77886
|
+
} | {
|
|
77887
|
+
message: string;
|
|
77888
|
+
is_device_error: true;
|
|
77889
|
+
created_at: string;
|
|
77890
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
77891
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
77645
77892
|
} | {
|
|
77646
77893
|
/** Date and time at which Seam created the error. */
|
|
77647
77894
|
created_at: string;
|
|
@@ -78890,6 +79137,12 @@ interface Routes {
|
|
|
78890
79137
|
created_at: string;
|
|
78891
79138
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
78892
79139
|
error_code: 'subscription_required';
|
|
79140
|
+
} | {
|
|
79141
|
+
message: string;
|
|
79142
|
+
is_device_error: true;
|
|
79143
|
+
created_at: string;
|
|
79144
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79145
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
78893
79146
|
} | {
|
|
78894
79147
|
/** Date and time at which Seam created the error. */
|
|
78895
79148
|
created_at: string;
|
|
@@ -79212,6 +79465,12 @@ interface Routes {
|
|
|
79212
79465
|
created_at: string;
|
|
79213
79466
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79214
79467
|
error_code: 'subscription_required';
|
|
79468
|
+
} | {
|
|
79469
|
+
message: string;
|
|
79470
|
+
is_device_error: true;
|
|
79471
|
+
created_at: string;
|
|
79472
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79473
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
79215
79474
|
} | {
|
|
79216
79475
|
/** Date and time at which Seam created the error. */
|
|
79217
79476
|
created_at: string;
|
|
@@ -79553,6 +79812,12 @@ interface Routes {
|
|
|
79553
79812
|
created_at: string;
|
|
79554
79813
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79555
79814
|
error_code: 'subscription_required';
|
|
79815
|
+
} | {
|
|
79816
|
+
message: string;
|
|
79817
|
+
is_device_error: true;
|
|
79818
|
+
created_at: string;
|
|
79819
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
79820
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
79556
79821
|
} | {
|
|
79557
79822
|
/** Date and time at which Seam created the error. */
|
|
79558
79823
|
created_at: string;
|
|
@@ -83693,6 +83958,12 @@ interface Routes {
|
|
|
83693
83958
|
created_at: string;
|
|
83694
83959
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83695
83960
|
error_code: 'subscription_required';
|
|
83961
|
+
} | {
|
|
83962
|
+
message: string;
|
|
83963
|
+
is_device_error: true;
|
|
83964
|
+
created_at: string;
|
|
83965
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
83966
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
83696
83967
|
} | {
|
|
83697
83968
|
/** Date and time at which Seam created the error. */
|
|
83698
83969
|
created_at: string;
|
|
@@ -84897,6 +85168,12 @@ interface Routes {
|
|
|
84897
85168
|
created_at: string;
|
|
84898
85169
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
84899
85170
|
error_code: 'subscription_required';
|
|
85171
|
+
} | {
|
|
85172
|
+
message: string;
|
|
85173
|
+
is_device_error: true;
|
|
85174
|
+
created_at: string;
|
|
85175
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
85176
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
84900
85177
|
} | {
|
|
84901
85178
|
/** Date and time at which Seam created the error. */
|
|
84902
85179
|
created_at: string;
|
|
@@ -86145,6 +86422,12 @@ interface Routes {
|
|
|
86145
86422
|
created_at: string;
|
|
86146
86423
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86147
86424
|
error_code: 'subscription_required';
|
|
86425
|
+
} | {
|
|
86426
|
+
message: string;
|
|
86427
|
+
is_device_error: true;
|
|
86428
|
+
created_at: string;
|
|
86429
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
86430
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
86148
86431
|
} | {
|
|
86149
86432
|
/** Date and time at which Seam created the error. */
|
|
86150
86433
|
created_at: string;
|
|
@@ -87348,6 +87631,12 @@ interface Routes {
|
|
|
87348
87631
|
created_at: string;
|
|
87349
87632
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87350
87633
|
error_code: 'subscription_required';
|
|
87634
|
+
} | {
|
|
87635
|
+
message: string;
|
|
87636
|
+
is_device_error: true;
|
|
87637
|
+
created_at: string;
|
|
87638
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
87639
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
87351
87640
|
} | {
|
|
87352
87641
|
/** Date and time at which Seam created the error. */
|
|
87353
87642
|
created_at: string;
|
|
@@ -93101,6 +93390,12 @@ interface Routes {
|
|
|
93101
93390
|
created_at: string;
|
|
93102
93391
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
93103
93392
|
error_code: 'subscription_required';
|
|
93393
|
+
} | {
|
|
93394
|
+
message: string;
|
|
93395
|
+
is_device_error: true;
|
|
93396
|
+
created_at: string;
|
|
93397
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
93398
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
93104
93399
|
} | {
|
|
93105
93400
|
/** Date and time at which Seam created the error. */
|
|
93106
93401
|
created_at: string;
|
|
@@ -94304,6 +94599,12 @@ interface Routes {
|
|
|
94304
94599
|
created_at: string;
|
|
94305
94600
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94306
94601
|
error_code: 'subscription_required';
|
|
94602
|
+
} | {
|
|
94603
|
+
message: string;
|
|
94604
|
+
is_device_error: true;
|
|
94605
|
+
created_at: string;
|
|
94606
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
94607
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
94307
94608
|
} | {
|
|
94308
94609
|
/** Date and time at which Seam created the error. */
|
|
94309
94610
|
created_at: string;
|
|
@@ -98410,7 +98711,9 @@ interface Routes {
|
|
|
98410
98711
|
customer_id?: string | undefined;
|
|
98411
98712
|
connected_account_ids: string[];
|
|
98412
98713
|
connect_webview_ids: string[];
|
|
98714
|
+
/** deprecated: Use `user_identity_id`. */
|
|
98413
98715
|
user_identity_ids: string[];
|
|
98716
|
+
user_identity_id?: string | undefined;
|
|
98414
98717
|
};
|
|
98415
98718
|
};
|
|
98416
98719
|
};
|
|
@@ -103526,6 +103829,12 @@ interface Routes {
|
|
|
103526
103829
|
created_at: string;
|
|
103527
103830
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
103528
103831
|
error_code: 'subscription_required';
|
|
103832
|
+
} | {
|
|
103833
|
+
message: string;
|
|
103834
|
+
is_device_error: true;
|
|
103835
|
+
created_at: string;
|
|
103836
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
103837
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
103529
103838
|
} | {
|
|
103530
103839
|
/** Date and time at which Seam created the error. */
|
|
103531
103840
|
created_at: string;
|
|
@@ -107022,6 +107331,12 @@ interface Routes {
|
|
|
107022
107331
|
created_at: string;
|
|
107023
107332
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107024
107333
|
error_code: 'subscription_required';
|
|
107334
|
+
} | {
|
|
107335
|
+
message: string;
|
|
107336
|
+
is_device_error: true;
|
|
107337
|
+
created_at: string;
|
|
107338
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
107339
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
107025
107340
|
} | {
|
|
107026
107341
|
/** Date and time at which Seam created the error. */
|
|
107027
107342
|
created_at: string;
|
|
@@ -108225,6 +108540,12 @@ interface Routes {
|
|
|
108225
108540
|
created_at: string;
|
|
108226
108541
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108227
108542
|
error_code: 'subscription_required';
|
|
108543
|
+
} | {
|
|
108544
|
+
message: string;
|
|
108545
|
+
is_device_error: true;
|
|
108546
|
+
created_at: string;
|
|
108547
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
108548
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
108228
108549
|
} | {
|
|
108229
108550
|
/** Date and time at which Seam created the error. */
|
|
108230
108551
|
created_at: string;
|
|
@@ -115140,6 +115461,12 @@ interface Routes {
|
|
|
115140
115461
|
created_at: string;
|
|
115141
115462
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115142
115463
|
error_code: 'subscription_required';
|
|
115464
|
+
} | {
|
|
115465
|
+
message: string;
|
|
115466
|
+
is_device_error: true;
|
|
115467
|
+
created_at: string;
|
|
115468
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
115469
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
115143
115470
|
} | {
|
|
115144
115471
|
/** Date and time at which Seam created the error. */
|
|
115145
115472
|
created_at: string;
|
|
@@ -116345,6 +116672,12 @@ interface Routes {
|
|
|
116345
116672
|
created_at: string;
|
|
116346
116673
|
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116347
116674
|
error_code: 'subscription_required';
|
|
116675
|
+
} | {
|
|
116676
|
+
message: string;
|
|
116677
|
+
is_device_error: true;
|
|
116678
|
+
created_at: string;
|
|
116679
|
+
/** Unique identifier of the type of error. Enables quick recognition and categorization of the issue. */
|
|
116680
|
+
error_code: 'lockly_missing_wifi_bridge';
|
|
116348
116681
|
} | {
|
|
116349
116682
|
/** Date and time at which Seam created the error. */
|
|
116350
116683
|
created_at: string;
|