@seamapi/types 1.425.0 → 1.426.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 +59 -21
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +73 -12
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +4 -4
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +6 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +4 -0
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +33 -0
- package/lib/seam/connect/openapi.js +37 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +28 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +39 -0
- package/src/lib/seam/connect/route-types.ts +28 -0
|
@@ -22337,6 +22337,8 @@ export interface Routes {
|
|
|
22337
22337
|
/** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
22338
22338
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
22339
22339
|
customer_ids?: string[] | undefined;
|
|
22340
|
+
/** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
|
|
22341
|
+
search?: string | undefined;
|
|
22340
22342
|
/** Maximum number of records to return per page. */
|
|
22341
22343
|
limit?: number;
|
|
22342
22344
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -24298,6 +24300,7 @@ export interface Routes {
|
|
|
24298
24300
|
can_simulate_removal?: boolean | undefined;
|
|
24299
24301
|
can_simulate_connection?: boolean | undefined;
|
|
24300
24302
|
can_simulate_disconnection?: boolean | undefined;
|
|
24303
|
+
can_unlock_with_code?: boolean | undefined;
|
|
24301
24304
|
};
|
|
24302
24305
|
};
|
|
24303
24306
|
};
|
|
@@ -24333,9 +24336,9 @@ export interface Routes {
|
|
|
24333
24336
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
24334
24337
|
page_cursor?: (string | undefined) | null;
|
|
24335
24338
|
/** */
|
|
24336
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
24339
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
24337
24340
|
/** */
|
|
24338
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
24341
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
24339
24342
|
/**
|
|
24340
24343
|
* @deprecated Use `space_id`. */
|
|
24341
24344
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -25455,6 +25458,7 @@ export interface Routes {
|
|
|
25455
25458
|
can_simulate_removal?: boolean | undefined;
|
|
25456
25459
|
can_simulate_connection?: boolean | undefined;
|
|
25457
25460
|
can_simulate_disconnection?: boolean | undefined;
|
|
25461
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25458
25462
|
}>;
|
|
25459
25463
|
/** Information about the current page of results. */
|
|
25460
25464
|
pagination: {
|
|
@@ -25494,6 +25498,7 @@ export interface Routes {
|
|
|
25494
25498
|
can_simulate_removal?: boolean | undefined;
|
|
25495
25499
|
can_simulate_connection?: boolean | undefined;
|
|
25496
25500
|
can_simulate_disconnection?: boolean | undefined;
|
|
25501
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25497
25502
|
}>;
|
|
25498
25503
|
};
|
|
25499
25504
|
};
|
|
@@ -25933,6 +25938,7 @@ export interface Routes {
|
|
|
25933
25938
|
can_simulate_removal?: boolean | undefined;
|
|
25934
25939
|
can_simulate_connection?: boolean | undefined;
|
|
25935
25940
|
can_simulate_disconnection?: boolean | undefined;
|
|
25941
|
+
can_unlock_with_code?: boolean | undefined;
|
|
25936
25942
|
};
|
|
25937
25943
|
};
|
|
25938
25944
|
};
|
|
@@ -25968,9 +25974,9 @@ export interface Routes {
|
|
|
25968
25974
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
25969
25975
|
page_cursor?: (string | undefined) | null;
|
|
25970
25976
|
/** */
|
|
25971
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
25977
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
25972
25978
|
/** */
|
|
25973
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
25979
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
25974
25980
|
/**
|
|
25975
25981
|
* @deprecated Use `space_id`. */
|
|
25976
25982
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -26367,6 +26373,7 @@ export interface Routes {
|
|
|
26367
26373
|
can_simulate_removal?: boolean | undefined;
|
|
26368
26374
|
can_simulate_connection?: boolean | undefined;
|
|
26369
26375
|
can_simulate_disconnection?: boolean | undefined;
|
|
26376
|
+
can_unlock_with_code?: boolean | undefined;
|
|
26370
26377
|
}>;
|
|
26371
26378
|
};
|
|
26372
26379
|
};
|
|
@@ -30373,6 +30380,7 @@ export interface Routes {
|
|
|
30373
30380
|
can_simulate_removal?: boolean | undefined;
|
|
30374
30381
|
can_simulate_connection?: boolean | undefined;
|
|
30375
30382
|
can_simulate_disconnection?: boolean | undefined;
|
|
30383
|
+
can_unlock_with_code?: boolean | undefined;
|
|
30376
30384
|
};
|
|
30377
30385
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
30378
30386
|
device: {
|
|
@@ -31484,6 +31492,7 @@ export interface Routes {
|
|
|
31484
31492
|
can_simulate_removal?: boolean | undefined;
|
|
31485
31493
|
can_simulate_connection?: boolean | undefined;
|
|
31486
31494
|
can_simulate_disconnection?: boolean | undefined;
|
|
31495
|
+
can_unlock_with_code?: boolean | undefined;
|
|
31487
31496
|
};
|
|
31488
31497
|
};
|
|
31489
31498
|
};
|
|
@@ -31519,9 +31528,9 @@ export interface Routes {
|
|
|
31519
31528
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
31520
31529
|
page_cursor?: (string | undefined) | null;
|
|
31521
31530
|
/** */
|
|
31522
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31531
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
31523
31532
|
/** */
|
|
31524
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
31533
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
31525
31534
|
/**
|
|
31526
31535
|
* @deprecated Use `space_id`. */
|
|
31527
31536
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -32641,6 +32650,7 @@ export interface Routes {
|
|
|
32641
32650
|
can_simulate_removal?: boolean | undefined;
|
|
32642
32651
|
can_simulate_connection?: boolean | undefined;
|
|
32643
32652
|
can_simulate_disconnection?: boolean | undefined;
|
|
32653
|
+
can_unlock_with_code?: boolean | undefined;
|
|
32644
32654
|
}>;
|
|
32645
32655
|
devices: Array<{
|
|
32646
32656
|
/** ID of the device. */
|
|
@@ -33751,6 +33761,7 @@ export interface Routes {
|
|
|
33751
33761
|
can_simulate_removal?: boolean | undefined;
|
|
33752
33762
|
can_simulate_connection?: boolean | undefined;
|
|
33753
33763
|
can_simulate_disconnection?: boolean | undefined;
|
|
33764
|
+
can_unlock_with_code?: boolean | undefined;
|
|
33754
33765
|
}>;
|
|
33755
33766
|
};
|
|
33756
33767
|
};
|
|
@@ -39111,9 +39122,9 @@ export interface Routes {
|
|
|
39111
39122
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
39112
39123
|
page_cursor?: (string | undefined) | null;
|
|
39113
39124
|
/** */
|
|
39114
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
39125
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
39115
39126
|
/** */
|
|
39116
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
39127
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
39117
39128
|
/**
|
|
39118
39129
|
* @deprecated Use `space_id`. */
|
|
39119
39130
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -40233,6 +40244,7 @@ export interface Routes {
|
|
|
40233
40244
|
can_simulate_removal?: boolean | undefined;
|
|
40234
40245
|
can_simulate_connection?: boolean | undefined;
|
|
40235
40246
|
can_simulate_disconnection?: boolean | undefined;
|
|
40247
|
+
can_unlock_with_code?: boolean | undefined;
|
|
40236
40248
|
}>;
|
|
40237
40249
|
devices: Array<{
|
|
40238
40250
|
/** ID of the device. */
|
|
@@ -41343,6 +41355,7 @@ export interface Routes {
|
|
|
41343
41355
|
can_simulate_removal?: boolean | undefined;
|
|
41344
41356
|
can_simulate_connection?: boolean | undefined;
|
|
41345
41357
|
can_simulate_disconnection?: boolean | undefined;
|
|
41358
|
+
can_unlock_with_code?: boolean | undefined;
|
|
41346
41359
|
}>;
|
|
41347
41360
|
};
|
|
41348
41361
|
};
|
|
@@ -51881,6 +51894,7 @@ export interface Routes {
|
|
|
51881
51894
|
can_simulate_removal?: boolean | undefined;
|
|
51882
51895
|
can_simulate_connection?: boolean | undefined;
|
|
51883
51896
|
can_simulate_disconnection?: boolean | undefined;
|
|
51897
|
+
can_unlock_with_code?: boolean | undefined;
|
|
51884
51898
|
};
|
|
51885
51899
|
};
|
|
51886
51900
|
};
|
|
@@ -54574,9 +54588,9 @@ export interface Routes {
|
|
|
54574
54588
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
54575
54589
|
page_cursor?: (string | undefined) | null;
|
|
54576
54590
|
/** */
|
|
54577
|
-
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
54591
|
+
include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
54578
54592
|
/** */
|
|
54579
|
-
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection'> | undefined;
|
|
54593
|
+
exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code'> | undefined;
|
|
54580
54594
|
/**
|
|
54581
54595
|
* @deprecated Use `space_id`. */
|
|
54582
54596
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -55696,6 +55710,7 @@ export interface Routes {
|
|
|
55696
55710
|
can_simulate_removal?: boolean | undefined;
|
|
55697
55711
|
can_simulate_connection?: boolean | undefined;
|
|
55698
55712
|
can_simulate_disconnection?: boolean | undefined;
|
|
55713
|
+
can_unlock_with_code?: boolean | undefined;
|
|
55699
55714
|
}>;
|
|
55700
55715
|
devices: Array<{
|
|
55701
55716
|
/** ID of the device. */
|
|
@@ -56806,6 +56821,7 @@ export interface Routes {
|
|
|
56806
56821
|
can_simulate_removal?: boolean | undefined;
|
|
56807
56822
|
can_simulate_connection?: boolean | undefined;
|
|
56808
56823
|
can_simulate_disconnection?: boolean | undefined;
|
|
56824
|
+
can_unlock_with_code?: boolean | undefined;
|
|
56809
56825
|
}>;
|
|
56810
56826
|
};
|
|
56811
56827
|
};
|
|
@@ -64528,6 +64544,7 @@ export interface Routes {
|
|
|
64528
64544
|
can_simulate_removal?: boolean | undefined;
|
|
64529
64545
|
can_simulate_connection?: boolean | undefined;
|
|
64530
64546
|
can_simulate_disconnection?: boolean | undefined;
|
|
64547
|
+
can_unlock_with_code?: boolean | undefined;
|
|
64531
64548
|
}>;
|
|
64532
64549
|
/**
|
|
64533
64550
|
* @deprecated Use devices. */
|
|
@@ -65640,6 +65657,7 @@ export interface Routes {
|
|
|
65640
65657
|
can_simulate_removal?: boolean | undefined;
|
|
65641
65658
|
can_simulate_connection?: boolean | undefined;
|
|
65642
65659
|
can_simulate_disconnection?: boolean | undefined;
|
|
65660
|
+
can_unlock_with_code?: boolean | undefined;
|
|
65643
65661
|
}>;
|
|
65644
65662
|
};
|
|
65645
65663
|
};
|
package/package.json
CHANGED
|
@@ -15,6 +15,7 @@ export const device_capability_flags =
|
|
|
15
15
|
can_simulate_removal: z.boolean().optional(),
|
|
16
16
|
can_simulate_connection: z.boolean().optional(),
|
|
17
17
|
can_simulate_disconnection: z.boolean().optional(),
|
|
18
|
+
can_unlock_with_code: z.boolean().optional(),
|
|
18
19
|
})
|
|
19
20
|
|
|
20
21
|
export const battery_status = z.enum(['critical', 'low', 'good', 'full'])
|
|
@@ -9359,6 +9359,7 @@ export default {
|
|
|
9359
9359
|
can_simulate_disconnection: { type: 'boolean' },
|
|
9360
9360
|
can_simulate_removal: { type: 'boolean' },
|
|
9361
9361
|
can_turn_off_hvac: { type: 'boolean' },
|
|
9362
|
+
can_unlock_with_code: { type: 'boolean' },
|
|
9362
9363
|
capabilities_supported: {
|
|
9363
9364
|
description:
|
|
9364
9365
|
'\n Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).\n ',
|
|
@@ -12861,6 +12862,7 @@ export default {
|
|
|
12861
12862
|
can_simulate_disconnection: { type: 'boolean' },
|
|
12862
12863
|
can_simulate_removal: { type: 'boolean' },
|
|
12863
12864
|
can_turn_off_hvac: { type: 'boolean' },
|
|
12865
|
+
can_unlock_with_code: { type: 'boolean' },
|
|
12864
12866
|
device_provider_name: {
|
|
12865
12867
|
enum: [
|
|
12866
12868
|
'dormakaba_community',
|
|
@@ -22438,6 +22440,7 @@ export default {
|
|
|
22438
22440
|
can_simulate_disconnection: { type: 'boolean' },
|
|
22439
22441
|
can_simulate_removal: { type: 'boolean' },
|
|
22440
22442
|
can_turn_off_hvac: { type: 'boolean' },
|
|
22443
|
+
can_unlock_with_code: { type: 'boolean' },
|
|
22441
22444
|
capabilities_supported: {
|
|
22442
22445
|
description:
|
|
22443
22446
|
'\n Collection of capabilities that the device supports when connected to Seam. Values are `access_code`, which indicates that the device can manage and utilize digital PIN codes for secure access; `lock`, which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; `noise_detection`, which indicates that the device supports monitoring and responding to ambient noise levels; `thermostat`, which indicates that the device can regulate and adjust indoor temperatures; `battery`, which indicates that the device can manage battery life and health; and `phone`, which indicates that the device is a mobile device, such as a smartphone. **Important:** Superseded by [capability flags](https://docs.seam.co/latest/capability-guides/device-and-system-capabilities#capability-flags).\n ',
|
|
@@ -35719,6 +35722,16 @@ export default {
|
|
|
35719
35722
|
type: 'array',
|
|
35720
35723
|
},
|
|
35721
35724
|
},
|
|
35725
|
+
{
|
|
35726
|
+
in: 'query',
|
|
35727
|
+
name: 'search',
|
|
35728
|
+
schema: {
|
|
35729
|
+
description:
|
|
35730
|
+
'String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`.',
|
|
35731
|
+
minLength: 1,
|
|
35732
|
+
type: 'string',
|
|
35733
|
+
},
|
|
35734
|
+
},
|
|
35722
35735
|
{
|
|
35723
35736
|
in: 'query',
|
|
35724
35737
|
name: 'limit',
|
|
@@ -35813,6 +35826,12 @@ export default {
|
|
|
35813
35826
|
nullable: true,
|
|
35814
35827
|
type: 'string',
|
|
35815
35828
|
},
|
|
35829
|
+
search: {
|
|
35830
|
+
description:
|
|
35831
|
+
'String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`.',
|
|
35832
|
+
minLength: 1,
|
|
35833
|
+
type: 'string',
|
|
35834
|
+
},
|
|
35816
35835
|
user_identifier_key: {
|
|
35817
35836
|
description:
|
|
35818
35837
|
'Your user ID for the user by which you want to filter connected accounts.',
|
|
@@ -37968,6 +37987,7 @@ export default {
|
|
|
37968
37987
|
'can_simulate_removal',
|
|
37969
37988
|
'can_simulate_connection',
|
|
37970
37989
|
'can_simulate_disconnection',
|
|
37990
|
+
'can_unlock_with_code',
|
|
37971
37991
|
],
|
|
37972
37992
|
type: 'string',
|
|
37973
37993
|
},
|
|
@@ -37992,6 +38012,7 @@ export default {
|
|
|
37992
38012
|
'can_simulate_removal',
|
|
37993
38013
|
'can_simulate_connection',
|
|
37994
38014
|
'can_simulate_disconnection',
|
|
38015
|
+
'can_unlock_with_code',
|
|
37995
38016
|
],
|
|
37996
38017
|
type: 'string',
|
|
37997
38018
|
},
|
|
@@ -38263,6 +38284,7 @@ export default {
|
|
|
38263
38284
|
'can_simulate_removal',
|
|
38264
38285
|
'can_simulate_connection',
|
|
38265
38286
|
'can_simulate_disconnection',
|
|
38287
|
+
'can_unlock_with_code',
|
|
38266
38288
|
],
|
|
38267
38289
|
type: 'string',
|
|
38268
38290
|
},
|
|
@@ -38283,6 +38305,7 @@ export default {
|
|
|
38283
38305
|
'can_simulate_removal',
|
|
38284
38306
|
'can_simulate_connection',
|
|
38285
38307
|
'can_simulate_disconnection',
|
|
38308
|
+
'can_unlock_with_code',
|
|
38286
38309
|
],
|
|
38287
38310
|
type: 'string',
|
|
38288
38311
|
},
|
|
@@ -39119,6 +39142,7 @@ export default {
|
|
|
39119
39142
|
'can_simulate_removal',
|
|
39120
39143
|
'can_simulate_connection',
|
|
39121
39144
|
'can_simulate_disconnection',
|
|
39145
|
+
'can_unlock_with_code',
|
|
39122
39146
|
],
|
|
39123
39147
|
type: 'string',
|
|
39124
39148
|
},
|
|
@@ -39143,6 +39167,7 @@ export default {
|
|
|
39143
39167
|
'can_simulate_removal',
|
|
39144
39168
|
'can_simulate_connection',
|
|
39145
39169
|
'can_simulate_disconnection',
|
|
39170
|
+
'can_unlock_with_code',
|
|
39146
39171
|
],
|
|
39147
39172
|
type: 'string',
|
|
39148
39173
|
},
|
|
@@ -39411,6 +39436,7 @@ export default {
|
|
|
39411
39436
|
'can_simulate_removal',
|
|
39412
39437
|
'can_simulate_connection',
|
|
39413
39438
|
'can_simulate_disconnection',
|
|
39439
|
+
'can_unlock_with_code',
|
|
39414
39440
|
],
|
|
39415
39441
|
type: 'string',
|
|
39416
39442
|
},
|
|
@@ -39431,6 +39457,7 @@ export default {
|
|
|
39431
39457
|
'can_simulate_removal',
|
|
39432
39458
|
'can_simulate_connection',
|
|
39433
39459
|
'can_simulate_disconnection',
|
|
39460
|
+
'can_unlock_with_code',
|
|
39434
39461
|
],
|
|
39435
39462
|
type: 'string',
|
|
39436
39463
|
},
|
|
@@ -41069,6 +41096,7 @@ export default {
|
|
|
41069
41096
|
'can_simulate_removal',
|
|
41070
41097
|
'can_simulate_connection',
|
|
41071
41098
|
'can_simulate_disconnection',
|
|
41099
|
+
'can_unlock_with_code',
|
|
41072
41100
|
],
|
|
41073
41101
|
type: 'string',
|
|
41074
41102
|
},
|
|
@@ -41093,6 +41121,7 @@ export default {
|
|
|
41093
41121
|
'can_simulate_removal',
|
|
41094
41122
|
'can_simulate_connection',
|
|
41095
41123
|
'can_simulate_disconnection',
|
|
41124
|
+
'can_unlock_with_code',
|
|
41096
41125
|
],
|
|
41097
41126
|
type: 'string',
|
|
41098
41127
|
},
|
|
@@ -41309,6 +41338,7 @@ export default {
|
|
|
41309
41338
|
'can_simulate_removal',
|
|
41310
41339
|
'can_simulate_connection',
|
|
41311
41340
|
'can_simulate_disconnection',
|
|
41341
|
+
'can_unlock_with_code',
|
|
41312
41342
|
],
|
|
41313
41343
|
type: 'string',
|
|
41314
41344
|
},
|
|
@@ -41329,6 +41359,7 @@ export default {
|
|
|
41329
41359
|
'can_simulate_removal',
|
|
41330
41360
|
'can_simulate_connection',
|
|
41331
41361
|
'can_simulate_disconnection',
|
|
41362
|
+
'can_unlock_with_code',
|
|
41332
41363
|
],
|
|
41333
41364
|
type: 'string',
|
|
41334
41365
|
},
|
|
@@ -42099,6 +42130,7 @@ export default {
|
|
|
42099
42130
|
'can_simulate_removal',
|
|
42100
42131
|
'can_simulate_connection',
|
|
42101
42132
|
'can_simulate_disconnection',
|
|
42133
|
+
'can_unlock_with_code',
|
|
42102
42134
|
],
|
|
42103
42135
|
type: 'string',
|
|
42104
42136
|
},
|
|
@@ -42123,6 +42155,7 @@ export default {
|
|
|
42123
42155
|
'can_simulate_removal',
|
|
42124
42156
|
'can_simulate_connection',
|
|
42125
42157
|
'can_simulate_disconnection',
|
|
42158
|
+
'can_unlock_with_code',
|
|
42126
42159
|
],
|
|
42127
42160
|
type: 'string',
|
|
42128
42161
|
},
|
|
@@ -42283,6 +42316,7 @@ export default {
|
|
|
42283
42316
|
'can_simulate_removal',
|
|
42284
42317
|
'can_simulate_connection',
|
|
42285
42318
|
'can_simulate_disconnection',
|
|
42319
|
+
'can_unlock_with_code',
|
|
42286
42320
|
],
|
|
42287
42321
|
type: 'string',
|
|
42288
42322
|
},
|
|
@@ -42303,6 +42337,7 @@ export default {
|
|
|
42303
42337
|
'can_simulate_removal',
|
|
42304
42338
|
'can_simulate_connection',
|
|
42305
42339
|
'can_simulate_disconnection',
|
|
42340
|
+
'can_unlock_with_code',
|
|
42306
42341
|
],
|
|
42307
42342
|
type: 'string',
|
|
42308
42343
|
},
|
|
@@ -46844,6 +46879,7 @@ export default {
|
|
|
46844
46879
|
'can_simulate_removal',
|
|
46845
46880
|
'can_simulate_connection',
|
|
46846
46881
|
'can_simulate_disconnection',
|
|
46882
|
+
'can_unlock_with_code',
|
|
46847
46883
|
],
|
|
46848
46884
|
type: 'string',
|
|
46849
46885
|
},
|
|
@@ -46868,6 +46904,7 @@ export default {
|
|
|
46868
46904
|
'can_simulate_removal',
|
|
46869
46905
|
'can_simulate_connection',
|
|
46870
46906
|
'can_simulate_disconnection',
|
|
46907
|
+
'can_unlock_with_code',
|
|
46871
46908
|
],
|
|
46872
46909
|
type: 'string',
|
|
46873
46910
|
},
|
|
@@ -47042,6 +47079,7 @@ export default {
|
|
|
47042
47079
|
'can_simulate_removal',
|
|
47043
47080
|
'can_simulate_connection',
|
|
47044
47081
|
'can_simulate_disconnection',
|
|
47082
|
+
'can_unlock_with_code',
|
|
47045
47083
|
],
|
|
47046
47084
|
type: 'string',
|
|
47047
47085
|
},
|
|
@@ -47062,6 +47100,7 @@ export default {
|
|
|
47062
47100
|
'can_simulate_removal',
|
|
47063
47101
|
'can_simulate_connection',
|
|
47064
47102
|
'can_simulate_disconnection',
|
|
47103
|
+
'can_unlock_with_code',
|
|
47065
47104
|
],
|
|
47066
47105
|
type: 'string',
|
|
47067
47106
|
},
|
|
@@ -25414,6 +25414,8 @@ export interface Routes {
|
|
|
25414
25414
|
/** Custom metadata pairs by which you want to filter connected accounts. Returns connected accounts with `custom_metadata` that contains all of the provided key:value pairs. */
|
|
25415
25415
|
custom_metadata_has?: Record<string, string | boolean> | undefined
|
|
25416
25416
|
customer_ids?: string[] | undefined
|
|
25417
|
+
/** String for which to search. Filters returned connected accounts to include all records that satisfy a partial match using `connected_account_id`, `account_type`, `customer_key`, `custom_metadata`, `user_identifier.username`, `user_identifier.email` or `user_identifier.phone`. */
|
|
25418
|
+
search?: string | undefined
|
|
25417
25419
|
/** Maximum number of records to return per page. */
|
|
25418
25420
|
limit?: number
|
|
25419
25421
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -27708,6 +27710,7 @@ export interface Routes {
|
|
|
27708
27710
|
can_simulate_removal?: boolean | undefined
|
|
27709
27711
|
can_simulate_connection?: boolean | undefined
|
|
27710
27712
|
can_simulate_disconnection?: boolean | undefined
|
|
27713
|
+
can_unlock_with_code?: boolean | undefined
|
|
27711
27714
|
}
|
|
27712
27715
|
}
|
|
27713
27716
|
}
|
|
@@ -27882,6 +27885,7 @@ export interface Routes {
|
|
|
27882
27885
|
| 'can_simulate_removal'
|
|
27883
27886
|
| 'can_simulate_connection'
|
|
27884
27887
|
| 'can_simulate_disconnection'
|
|
27888
|
+
| 'can_unlock_with_code'
|
|
27885
27889
|
>
|
|
27886
27890
|
| undefined
|
|
27887
27891
|
/** */
|
|
@@ -27898,6 +27902,7 @@ export interface Routes {
|
|
|
27898
27902
|
| 'can_simulate_removal'
|
|
27899
27903
|
| 'can_simulate_connection'
|
|
27900
27904
|
| 'can_simulate_disconnection'
|
|
27905
|
+
| 'can_unlock_with_code'
|
|
27901
27906
|
>
|
|
27902
27907
|
| undefined
|
|
27903
27908
|
/**
|
|
@@ -29256,6 +29261,7 @@ export interface Routes {
|
|
|
29256
29261
|
can_simulate_removal?: boolean | undefined
|
|
29257
29262
|
can_simulate_connection?: boolean | undefined
|
|
29258
29263
|
can_simulate_disconnection?: boolean | undefined
|
|
29264
|
+
can_unlock_with_code?: boolean | undefined
|
|
29259
29265
|
}>
|
|
29260
29266
|
/** Information about the current page of results. */
|
|
29261
29267
|
pagination: {
|
|
@@ -29356,6 +29362,7 @@ export interface Routes {
|
|
|
29356
29362
|
can_simulate_removal?: boolean | undefined
|
|
29357
29363
|
can_simulate_connection?: boolean | undefined
|
|
29358
29364
|
can_simulate_disconnection?: boolean | undefined
|
|
29365
|
+
can_unlock_with_code?: boolean | undefined
|
|
29359
29366
|
}>
|
|
29360
29367
|
}
|
|
29361
29368
|
}
|
|
@@ -29883,6 +29890,7 @@ export interface Routes {
|
|
|
29883
29890
|
can_simulate_removal?: boolean | undefined
|
|
29884
29891
|
can_simulate_connection?: boolean | undefined
|
|
29885
29892
|
can_simulate_disconnection?: boolean | undefined
|
|
29893
|
+
can_unlock_with_code?: boolean | undefined
|
|
29886
29894
|
}
|
|
29887
29895
|
}
|
|
29888
29896
|
}
|
|
@@ -30057,6 +30065,7 @@ export interface Routes {
|
|
|
30057
30065
|
| 'can_simulate_removal'
|
|
30058
30066
|
| 'can_simulate_connection'
|
|
30059
30067
|
| 'can_simulate_disconnection'
|
|
30068
|
+
| 'can_unlock_with_code'
|
|
30060
30069
|
>
|
|
30061
30070
|
| undefined
|
|
30062
30071
|
/** */
|
|
@@ -30073,6 +30082,7 @@ export interface Routes {
|
|
|
30073
30082
|
| 'can_simulate_removal'
|
|
30074
30083
|
| 'can_simulate_connection'
|
|
30075
30084
|
| 'can_simulate_disconnection'
|
|
30085
|
+
| 'can_unlock_with_code'
|
|
30076
30086
|
>
|
|
30077
30087
|
| undefined
|
|
30078
30088
|
/**
|
|
@@ -30559,6 +30569,7 @@ export interface Routes {
|
|
|
30559
30569
|
can_simulate_removal?: boolean | undefined
|
|
30560
30570
|
can_simulate_connection?: boolean | undefined
|
|
30561
30571
|
can_simulate_disconnection?: boolean | undefined
|
|
30572
|
+
can_unlock_with_code?: boolean | undefined
|
|
30562
30573
|
}>
|
|
30563
30574
|
}
|
|
30564
30575
|
}
|
|
@@ -35204,6 +35215,7 @@ export interface Routes {
|
|
|
35204
35215
|
can_simulate_removal?: boolean | undefined
|
|
35205
35216
|
can_simulate_connection?: boolean | undefined
|
|
35206
35217
|
can_simulate_disconnection?: boolean | undefined
|
|
35218
|
+
can_unlock_with_code?: boolean | undefined
|
|
35207
35219
|
}
|
|
35208
35220
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
35209
35221
|
device: {
|
|
@@ -36552,6 +36564,7 @@ export interface Routes {
|
|
|
36552
36564
|
can_simulate_removal?: boolean | undefined
|
|
36553
36565
|
can_simulate_connection?: boolean | undefined
|
|
36554
36566
|
can_simulate_disconnection?: boolean | undefined
|
|
36567
|
+
can_unlock_with_code?: boolean | undefined
|
|
36555
36568
|
}
|
|
36556
36569
|
}
|
|
36557
36570
|
}
|
|
@@ -36691,6 +36704,7 @@ export interface Routes {
|
|
|
36691
36704
|
| 'can_simulate_removal'
|
|
36692
36705
|
| 'can_simulate_connection'
|
|
36693
36706
|
| 'can_simulate_disconnection'
|
|
36707
|
+
| 'can_unlock_with_code'
|
|
36694
36708
|
>
|
|
36695
36709
|
| undefined
|
|
36696
36710
|
/** */
|
|
@@ -36707,6 +36721,7 @@ export interface Routes {
|
|
|
36707
36721
|
| 'can_simulate_removal'
|
|
36708
36722
|
| 'can_simulate_connection'
|
|
36709
36723
|
| 'can_simulate_disconnection'
|
|
36724
|
+
| 'can_unlock_with_code'
|
|
36710
36725
|
>
|
|
36711
36726
|
| undefined
|
|
36712
36727
|
/**
|
|
@@ -38065,6 +38080,7 @@ export interface Routes {
|
|
|
38065
38080
|
can_simulate_removal?: boolean | undefined
|
|
38066
38081
|
can_simulate_connection?: boolean | undefined
|
|
38067
38082
|
can_simulate_disconnection?: boolean | undefined
|
|
38083
|
+
can_unlock_with_code?: boolean | undefined
|
|
38068
38084
|
}>
|
|
38069
38085
|
devices: Array<{
|
|
38070
38086
|
/** ID of the device. */
|
|
@@ -39412,6 +39428,7 @@ export interface Routes {
|
|
|
39412
39428
|
can_simulate_removal?: boolean | undefined
|
|
39413
39429
|
can_simulate_connection?: boolean | undefined
|
|
39414
39430
|
can_simulate_disconnection?: boolean | undefined
|
|
39431
|
+
can_unlock_with_code?: boolean | undefined
|
|
39415
39432
|
}>
|
|
39416
39433
|
}
|
|
39417
39434
|
}
|
|
@@ -45543,6 +45560,7 @@ export interface Routes {
|
|
|
45543
45560
|
| 'can_simulate_removal'
|
|
45544
45561
|
| 'can_simulate_connection'
|
|
45545
45562
|
| 'can_simulate_disconnection'
|
|
45563
|
+
| 'can_unlock_with_code'
|
|
45546
45564
|
>
|
|
45547
45565
|
| undefined
|
|
45548
45566
|
/** */
|
|
@@ -45559,6 +45577,7 @@ export interface Routes {
|
|
|
45559
45577
|
| 'can_simulate_removal'
|
|
45560
45578
|
| 'can_simulate_connection'
|
|
45561
45579
|
| 'can_simulate_disconnection'
|
|
45580
|
+
| 'can_unlock_with_code'
|
|
45562
45581
|
>
|
|
45563
45582
|
| undefined
|
|
45564
45583
|
/**
|
|
@@ -46917,6 +46936,7 @@ export interface Routes {
|
|
|
46917
46936
|
can_simulate_removal?: boolean | undefined
|
|
46918
46937
|
can_simulate_connection?: boolean | undefined
|
|
46919
46938
|
can_simulate_disconnection?: boolean | undefined
|
|
46939
|
+
can_unlock_with_code?: boolean | undefined
|
|
46920
46940
|
}>
|
|
46921
46941
|
devices: Array<{
|
|
46922
46942
|
/** ID of the device. */
|
|
@@ -48264,6 +48284,7 @@ export interface Routes {
|
|
|
48264
48284
|
can_simulate_removal?: boolean | undefined
|
|
48265
48285
|
can_simulate_connection?: boolean | undefined
|
|
48266
48286
|
can_simulate_disconnection?: boolean | undefined
|
|
48287
|
+
can_unlock_with_code?: boolean | undefined
|
|
48267
48288
|
}>
|
|
48268
48289
|
}
|
|
48269
48290
|
}
|
|
@@ -60301,6 +60322,7 @@ export interface Routes {
|
|
|
60301
60322
|
can_simulate_removal?: boolean | undefined
|
|
60302
60323
|
can_simulate_connection?: boolean | undefined
|
|
60303
60324
|
can_simulate_disconnection?: boolean | undefined
|
|
60325
|
+
can_unlock_with_code?: boolean | undefined
|
|
60304
60326
|
}
|
|
60305
60327
|
}
|
|
60306
60328
|
}
|
|
@@ -63412,6 +63434,7 @@ export interface Routes {
|
|
|
63412
63434
|
| 'can_simulate_removal'
|
|
63413
63435
|
| 'can_simulate_connection'
|
|
63414
63436
|
| 'can_simulate_disconnection'
|
|
63437
|
+
| 'can_unlock_with_code'
|
|
63415
63438
|
>
|
|
63416
63439
|
| undefined
|
|
63417
63440
|
/** */
|
|
@@ -63428,6 +63451,7 @@ export interface Routes {
|
|
|
63428
63451
|
| 'can_simulate_removal'
|
|
63429
63452
|
| 'can_simulate_connection'
|
|
63430
63453
|
| 'can_simulate_disconnection'
|
|
63454
|
+
| 'can_unlock_with_code'
|
|
63431
63455
|
>
|
|
63432
63456
|
| undefined
|
|
63433
63457
|
/**
|
|
@@ -64786,6 +64810,7 @@ export interface Routes {
|
|
|
64786
64810
|
can_simulate_removal?: boolean | undefined
|
|
64787
64811
|
can_simulate_connection?: boolean | undefined
|
|
64788
64812
|
can_simulate_disconnection?: boolean | undefined
|
|
64813
|
+
can_unlock_with_code?: boolean | undefined
|
|
64789
64814
|
}>
|
|
64790
64815
|
devices: Array<{
|
|
64791
64816
|
/** ID of the device. */
|
|
@@ -66133,6 +66158,7 @@ export interface Routes {
|
|
|
66133
66158
|
can_simulate_removal?: boolean | undefined
|
|
66134
66159
|
can_simulate_connection?: boolean | undefined
|
|
66135
66160
|
can_simulate_disconnection?: boolean | undefined
|
|
66161
|
+
can_unlock_with_code?: boolean | undefined
|
|
66136
66162
|
}>
|
|
66137
66163
|
}
|
|
66138
66164
|
}
|
|
@@ -74899,6 +74925,7 @@ export interface Routes {
|
|
|
74899
74925
|
can_simulate_removal?: boolean | undefined
|
|
74900
74926
|
can_simulate_connection?: boolean | undefined
|
|
74901
74927
|
can_simulate_disconnection?: boolean | undefined
|
|
74928
|
+
can_unlock_with_code?: boolean | undefined
|
|
74902
74929
|
}>
|
|
74903
74930
|
/**
|
|
74904
74931
|
* @deprecated Use devices. */
|
|
@@ -76248,6 +76275,7 @@ export interface Routes {
|
|
|
76248
76275
|
can_simulate_removal?: boolean | undefined
|
|
76249
76276
|
can_simulate_connection?: boolean | undefined
|
|
76250
76277
|
can_simulate_disconnection?: boolean | undefined
|
|
76278
|
+
can_unlock_with_code?: boolean | undefined
|
|
76251
76279
|
}>
|
|
76252
76280
|
}
|
|
76253
76281
|
}
|