@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
package/dist/connect.d.cts
CHANGED
|
@@ -4671,9 +4671,9 @@ declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4671
4671
|
stand_open?: boolean | undefined;
|
|
4672
4672
|
pms_id?: string | undefined;
|
|
4673
4673
|
} | undefined;
|
|
4674
|
+
can_unlock_with_code?: boolean | undefined;
|
|
4674
4675
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
4675
4676
|
can_unlock_with_card?: boolean | undefined;
|
|
4676
|
-
can_unlock_with_code?: boolean | undefined;
|
|
4677
4677
|
latch_metadata?: {
|
|
4678
4678
|
door_name: string;
|
|
4679
4679
|
is_connected: boolean;
|
|
@@ -4723,9 +4723,9 @@ declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4723
4723
|
stand_open?: boolean | undefined;
|
|
4724
4724
|
pms_id?: string | undefined;
|
|
4725
4725
|
} | undefined;
|
|
4726
|
+
can_unlock_with_code?: boolean | undefined;
|
|
4726
4727
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
4727
4728
|
can_unlock_with_card?: boolean | undefined;
|
|
4728
|
-
can_unlock_with_code?: boolean | undefined;
|
|
4729
4729
|
latch_metadata?: {
|
|
4730
4730
|
door_name: string;
|
|
4731
4731
|
is_connected: boolean;
|
|
@@ -14266,6 +14266,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14266
14266
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
14267
14267
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
14268
14268
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
14269
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
14269
14270
|
}>>, "strip", z.ZodTypeAny, {
|
|
14270
14271
|
display_name: string;
|
|
14271
14272
|
device_id: string;
|
|
@@ -14879,6 +14880,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14879
14880
|
can_simulate_removal?: boolean | undefined;
|
|
14880
14881
|
can_simulate_connection?: boolean | undefined;
|
|
14881
14882
|
can_simulate_disconnection?: boolean | undefined;
|
|
14883
|
+
can_unlock_with_code?: boolean | undefined;
|
|
14882
14884
|
nickname?: string | undefined;
|
|
14883
14885
|
}, {
|
|
14884
14886
|
display_name: string;
|
|
@@ -15493,6 +15495,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15493
15495
|
can_simulate_removal?: boolean | undefined;
|
|
15494
15496
|
can_simulate_connection?: boolean | undefined;
|
|
15495
15497
|
can_simulate_disconnection?: boolean | undefined;
|
|
15498
|
+
can_unlock_with_code?: boolean | undefined;
|
|
15496
15499
|
nickname?: string | undefined;
|
|
15497
15500
|
}>;
|
|
15498
15501
|
type Device = z.infer<typeof device>;
|
|
@@ -15565,6 +15568,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15565
15568
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
15566
15569
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
15567
15570
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
15571
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
15568
15572
|
}>>, "strip", z.ZodTypeAny, {
|
|
15569
15573
|
display_name: string;
|
|
15570
15574
|
image_url: string;
|
|
@@ -15581,6 +15585,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15581
15585
|
can_simulate_removal?: boolean | undefined;
|
|
15582
15586
|
can_simulate_connection?: boolean | undefined;
|
|
15583
15587
|
can_simulate_disconnection?: boolean | undefined;
|
|
15588
|
+
can_unlock_with_code?: boolean | undefined;
|
|
15584
15589
|
}, {
|
|
15585
15590
|
display_name: string;
|
|
15586
15591
|
image_url: string;
|
|
@@ -15597,6 +15602,7 @@ declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
15597
15602
|
can_simulate_removal?: boolean | undefined;
|
|
15598
15603
|
can_simulate_connection?: boolean | undefined;
|
|
15599
15604
|
can_simulate_disconnection?: boolean | undefined;
|
|
15605
|
+
can_unlock_with_code?: boolean | undefined;
|
|
15600
15606
|
}>;
|
|
15601
15607
|
type DeviceProvider = z.infer<typeof device_provider>;
|
|
15602
15608
|
|
|
@@ -18219,6 +18225,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18219
18225
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
18220
18226
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
18221
18227
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
18228
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
18222
18229
|
}>>, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location">, {
|
|
18223
18230
|
is_managed: z.ZodLiteral<false>;
|
|
18224
18231
|
properties: z.ZodObject<Pick<{
|
|
@@ -18368,6 +18375,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18368
18375
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
18369
18376
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
18370
18377
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
18378
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
18371
18379
|
}>>, "strip", z.ZodTypeAny, {
|
|
18372
18380
|
device_id: string;
|
|
18373
18381
|
workspace_id: string;
|
|
@@ -18598,6 +18606,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18598
18606
|
can_simulate_removal?: boolean | undefined;
|
|
18599
18607
|
can_simulate_connection?: boolean | undefined;
|
|
18600
18608
|
can_simulate_disconnection?: boolean | undefined;
|
|
18609
|
+
can_unlock_with_code?: boolean | undefined;
|
|
18601
18610
|
}, {
|
|
18602
18611
|
device_id: string;
|
|
18603
18612
|
workspace_id: string;
|
|
@@ -18828,6 +18837,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
18828
18837
|
can_simulate_removal?: boolean | undefined;
|
|
18829
18838
|
can_simulate_connection?: boolean | undefined;
|
|
18830
18839
|
can_simulate_disconnection?: boolean | undefined;
|
|
18840
|
+
can_unlock_with_code?: boolean | undefined;
|
|
18831
18841
|
}>;
|
|
18832
18842
|
type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|
|
18833
18843
|
|
|
@@ -26147,6 +26157,9 @@ declare const _default: {
|
|
|
26147
26157
|
can_turn_off_hvac: {
|
|
26148
26158
|
type: string;
|
|
26149
26159
|
};
|
|
26160
|
+
can_unlock_with_code: {
|
|
26161
|
+
type: string;
|
|
26162
|
+
};
|
|
26150
26163
|
capabilities_supported: {
|
|
26151
26164
|
description: string;
|
|
26152
26165
|
items: {
|
|
@@ -28486,6 +28499,9 @@ declare const _default: {
|
|
|
28486
28499
|
can_turn_off_hvac: {
|
|
28487
28500
|
type: string;
|
|
28488
28501
|
};
|
|
28502
|
+
can_unlock_with_code: {
|
|
28503
|
+
type: string;
|
|
28504
|
+
};
|
|
28489
28505
|
device_provider_name: {
|
|
28490
28506
|
enum: string[];
|
|
28491
28507
|
type: string;
|
|
@@ -33829,6 +33845,9 @@ declare const _default: {
|
|
|
33829
33845
|
can_turn_off_hvac: {
|
|
33830
33846
|
type: string;
|
|
33831
33847
|
};
|
|
33848
|
+
can_unlock_with_code: {
|
|
33849
|
+
type: string;
|
|
33850
|
+
};
|
|
33832
33851
|
capabilities_supported: {
|
|
33833
33852
|
description: string;
|
|
33834
33853
|
items: {
|
|
@@ -48358,6 +48377,7 @@ declare const _default: {
|
|
|
48358
48377
|
type: string;
|
|
48359
48378
|
additionalProperties?: never;
|
|
48360
48379
|
items?: never;
|
|
48380
|
+
minLength?: never;
|
|
48361
48381
|
default?: never;
|
|
48362
48382
|
exclusiveMinimum?: never;
|
|
48363
48383
|
minimum?: never;
|
|
@@ -48375,6 +48395,7 @@ declare const _default: {
|
|
|
48375
48395
|
description: string;
|
|
48376
48396
|
type: string;
|
|
48377
48397
|
items?: never;
|
|
48398
|
+
minLength?: never;
|
|
48378
48399
|
default?: never;
|
|
48379
48400
|
exclusiveMinimum?: never;
|
|
48380
48401
|
minimum?: never;
|
|
@@ -48391,6 +48412,21 @@ declare const _default: {
|
|
|
48391
48412
|
type: string;
|
|
48392
48413
|
description?: never;
|
|
48393
48414
|
additionalProperties?: never;
|
|
48415
|
+
minLength?: never;
|
|
48416
|
+
default?: never;
|
|
48417
|
+
exclusiveMinimum?: never;
|
|
48418
|
+
minimum?: never;
|
|
48419
|
+
nullable?: never;
|
|
48420
|
+
};
|
|
48421
|
+
} | {
|
|
48422
|
+
in: string;
|
|
48423
|
+
name: string;
|
|
48424
|
+
schema: {
|
|
48425
|
+
description: string;
|
|
48426
|
+
minLength: number;
|
|
48427
|
+
type: string;
|
|
48428
|
+
additionalProperties?: never;
|
|
48429
|
+
items?: never;
|
|
48394
48430
|
default?: never;
|
|
48395
48431
|
exclusiveMinimum?: never;
|
|
48396
48432
|
minimum?: never;
|
|
@@ -48407,6 +48443,7 @@ declare const _default: {
|
|
|
48407
48443
|
type: string;
|
|
48408
48444
|
additionalProperties?: never;
|
|
48409
48445
|
items?: never;
|
|
48446
|
+
minLength?: never;
|
|
48410
48447
|
nullable?: never;
|
|
48411
48448
|
};
|
|
48412
48449
|
} | {
|
|
@@ -48418,6 +48455,7 @@ declare const _default: {
|
|
|
48418
48455
|
type: string;
|
|
48419
48456
|
additionalProperties?: never;
|
|
48420
48457
|
items?: never;
|
|
48458
|
+
minLength?: never;
|
|
48421
48459
|
default?: never;
|
|
48422
48460
|
exclusiveMinimum?: never;
|
|
48423
48461
|
minimum?: never;
|
|
@@ -48521,6 +48559,11 @@ declare const _default: {
|
|
|
48521
48559
|
nullable: boolean;
|
|
48522
48560
|
type: string;
|
|
48523
48561
|
};
|
|
48562
|
+
search: {
|
|
48563
|
+
description: string;
|
|
48564
|
+
minLength: number;
|
|
48565
|
+
type: string;
|
|
48566
|
+
};
|
|
48524
48567
|
user_identifier_key: {
|
|
48525
48568
|
description: string;
|
|
48526
48569
|
type: string;
|
|
@@ -90969,6 +91012,8 @@ interface Routes {
|
|
|
90969
91012
|
/** 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. */
|
|
90970
91013
|
custom_metadata_has?: Record<string, string | boolean> | undefined;
|
|
90971
91014
|
customer_ids?: string[] | undefined;
|
|
91015
|
+
/** 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`. */
|
|
91016
|
+
search?: string | undefined;
|
|
90972
91017
|
/** Maximum number of records to return per page. */
|
|
90973
91018
|
limit?: number;
|
|
90974
91019
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
@@ -92930,6 +92975,7 @@ interface Routes {
|
|
|
92930
92975
|
can_simulate_removal?: boolean | undefined;
|
|
92931
92976
|
can_simulate_connection?: boolean | undefined;
|
|
92932
92977
|
can_simulate_disconnection?: boolean | undefined;
|
|
92978
|
+
can_unlock_with_code?: boolean | undefined;
|
|
92933
92979
|
};
|
|
92934
92980
|
};
|
|
92935
92981
|
};
|
|
@@ -92965,9 +93011,9 @@ interface Routes {
|
|
|
92965
93011
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
92966
93012
|
page_cursor?: (string | undefined) | null;
|
|
92967
93013
|
/** */
|
|
92968
|
-
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;
|
|
93014
|
+
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;
|
|
92969
93015
|
/** */
|
|
92970
|
-
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;
|
|
93016
|
+
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;
|
|
92971
93017
|
/**
|
|
92972
93018
|
* @deprecated Use `space_id`. */
|
|
92973
93019
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -94087,6 +94133,7 @@ interface Routes {
|
|
|
94087
94133
|
can_simulate_removal?: boolean | undefined;
|
|
94088
94134
|
can_simulate_connection?: boolean | undefined;
|
|
94089
94135
|
can_simulate_disconnection?: boolean | undefined;
|
|
94136
|
+
can_unlock_with_code?: boolean | undefined;
|
|
94090
94137
|
}>;
|
|
94091
94138
|
/** Information about the current page of results. */
|
|
94092
94139
|
pagination: {
|
|
@@ -94126,6 +94173,7 @@ interface Routes {
|
|
|
94126
94173
|
can_simulate_removal?: boolean | undefined;
|
|
94127
94174
|
can_simulate_connection?: boolean | undefined;
|
|
94128
94175
|
can_simulate_disconnection?: boolean | undefined;
|
|
94176
|
+
can_unlock_with_code?: boolean | undefined;
|
|
94129
94177
|
}>;
|
|
94130
94178
|
};
|
|
94131
94179
|
};
|
|
@@ -94565,6 +94613,7 @@ interface Routes {
|
|
|
94565
94613
|
can_simulate_removal?: boolean | undefined;
|
|
94566
94614
|
can_simulate_connection?: boolean | undefined;
|
|
94567
94615
|
can_simulate_disconnection?: boolean | undefined;
|
|
94616
|
+
can_unlock_with_code?: boolean | undefined;
|
|
94568
94617
|
};
|
|
94569
94618
|
};
|
|
94570
94619
|
};
|
|
@@ -94600,9 +94649,9 @@ interface Routes {
|
|
|
94600
94649
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
94601
94650
|
page_cursor?: (string | undefined) | null;
|
|
94602
94651
|
/** */
|
|
94603
|
-
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;
|
|
94652
|
+
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;
|
|
94604
94653
|
/** */
|
|
94605
|
-
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;
|
|
94654
|
+
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;
|
|
94606
94655
|
/**
|
|
94607
94656
|
* @deprecated Use `space_id`. */
|
|
94608
94657
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -94999,6 +95048,7 @@ interface Routes {
|
|
|
94999
95048
|
can_simulate_removal?: boolean | undefined;
|
|
95000
95049
|
can_simulate_connection?: boolean | undefined;
|
|
95001
95050
|
can_simulate_disconnection?: boolean | undefined;
|
|
95051
|
+
can_unlock_with_code?: boolean | undefined;
|
|
95002
95052
|
}>;
|
|
95003
95053
|
};
|
|
95004
95054
|
};
|
|
@@ -99005,6 +99055,7 @@ interface Routes {
|
|
|
99005
99055
|
can_simulate_removal?: boolean | undefined;
|
|
99006
99056
|
can_simulate_connection?: boolean | undefined;
|
|
99007
99057
|
can_simulate_disconnection?: boolean | undefined;
|
|
99058
|
+
can_unlock_with_code?: boolean | undefined;
|
|
99008
99059
|
};
|
|
99009
99060
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
99010
99061
|
device: {
|
|
@@ -100116,6 +100167,7 @@ interface Routes {
|
|
|
100116
100167
|
can_simulate_removal?: boolean | undefined;
|
|
100117
100168
|
can_simulate_connection?: boolean | undefined;
|
|
100118
100169
|
can_simulate_disconnection?: boolean | undefined;
|
|
100170
|
+
can_unlock_with_code?: boolean | undefined;
|
|
100119
100171
|
};
|
|
100120
100172
|
};
|
|
100121
100173
|
};
|
|
@@ -100151,9 +100203,9 @@ interface Routes {
|
|
|
100151
100203
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
100152
100204
|
page_cursor?: (string | undefined) | null;
|
|
100153
100205
|
/** */
|
|
100154
|
-
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;
|
|
100206
|
+
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;
|
|
100155
100207
|
/** */
|
|
100156
|
-
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;
|
|
100208
|
+
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;
|
|
100157
100209
|
/**
|
|
100158
100210
|
* @deprecated Use `space_id`. */
|
|
100159
100211
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -101273,6 +101325,7 @@ interface Routes {
|
|
|
101273
101325
|
can_simulate_removal?: boolean | undefined;
|
|
101274
101326
|
can_simulate_connection?: boolean | undefined;
|
|
101275
101327
|
can_simulate_disconnection?: boolean | undefined;
|
|
101328
|
+
can_unlock_with_code?: boolean | undefined;
|
|
101276
101329
|
}>;
|
|
101277
101330
|
devices: Array<{
|
|
101278
101331
|
/** ID of the device. */
|
|
@@ -102383,6 +102436,7 @@ interface Routes {
|
|
|
102383
102436
|
can_simulate_removal?: boolean | undefined;
|
|
102384
102437
|
can_simulate_connection?: boolean | undefined;
|
|
102385
102438
|
can_simulate_disconnection?: boolean | undefined;
|
|
102439
|
+
can_unlock_with_code?: boolean | undefined;
|
|
102386
102440
|
}>;
|
|
102387
102441
|
};
|
|
102388
102442
|
};
|
|
@@ -107743,9 +107797,9 @@ interface Routes {
|
|
|
107743
107797
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
107744
107798
|
page_cursor?: (string | undefined) | null;
|
|
107745
107799
|
/** */
|
|
107746
|
-
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;
|
|
107800
|
+
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;
|
|
107747
107801
|
/** */
|
|
107748
|
-
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;
|
|
107802
|
+
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;
|
|
107749
107803
|
/**
|
|
107750
107804
|
* @deprecated Use `space_id`. */
|
|
107751
107805
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -108865,6 +108919,7 @@ interface Routes {
|
|
|
108865
108919
|
can_simulate_removal?: boolean | undefined;
|
|
108866
108920
|
can_simulate_connection?: boolean | undefined;
|
|
108867
108921
|
can_simulate_disconnection?: boolean | undefined;
|
|
108922
|
+
can_unlock_with_code?: boolean | undefined;
|
|
108868
108923
|
}>;
|
|
108869
108924
|
devices: Array<{
|
|
108870
108925
|
/** ID of the device. */
|
|
@@ -109975,6 +110030,7 @@ interface Routes {
|
|
|
109975
110030
|
can_simulate_removal?: boolean | undefined;
|
|
109976
110031
|
can_simulate_connection?: boolean | undefined;
|
|
109977
110032
|
can_simulate_disconnection?: boolean | undefined;
|
|
110033
|
+
can_unlock_with_code?: boolean | undefined;
|
|
109978
110034
|
}>;
|
|
109979
110035
|
};
|
|
109980
110036
|
};
|
|
@@ -120513,6 +120569,7 @@ interface Routes {
|
|
|
120513
120569
|
can_simulate_removal?: boolean | undefined;
|
|
120514
120570
|
can_simulate_connection?: boolean | undefined;
|
|
120515
120571
|
can_simulate_disconnection?: boolean | undefined;
|
|
120572
|
+
can_unlock_with_code?: boolean | undefined;
|
|
120516
120573
|
};
|
|
120517
120574
|
};
|
|
120518
120575
|
};
|
|
@@ -123206,9 +123263,9 @@ interface Routes {
|
|
|
123206
123263
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
123207
123264
|
page_cursor?: (string | undefined) | null;
|
|
123208
123265
|
/** */
|
|
123209
|
-
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;
|
|
123266
|
+
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;
|
|
123210
123267
|
/** */
|
|
123211
|
-
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;
|
|
123268
|
+
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;
|
|
123212
123269
|
/**
|
|
123213
123270
|
* @deprecated Use `space_id`. */
|
|
123214
123271
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -124328,6 +124385,7 @@ interface Routes {
|
|
|
124328
124385
|
can_simulate_removal?: boolean | undefined;
|
|
124329
124386
|
can_simulate_connection?: boolean | undefined;
|
|
124330
124387
|
can_simulate_disconnection?: boolean | undefined;
|
|
124388
|
+
can_unlock_with_code?: boolean | undefined;
|
|
124331
124389
|
}>;
|
|
124332
124390
|
devices: Array<{
|
|
124333
124391
|
/** ID of the device. */
|
|
@@ -125438,6 +125496,7 @@ interface Routes {
|
|
|
125438
125496
|
can_simulate_removal?: boolean | undefined;
|
|
125439
125497
|
can_simulate_connection?: boolean | undefined;
|
|
125440
125498
|
can_simulate_disconnection?: boolean | undefined;
|
|
125499
|
+
can_unlock_with_code?: boolean | undefined;
|
|
125441
125500
|
}>;
|
|
125442
125501
|
};
|
|
125443
125502
|
};
|
|
@@ -133160,6 +133219,7 @@ interface Routes {
|
|
|
133160
133219
|
can_simulate_removal?: boolean | undefined;
|
|
133161
133220
|
can_simulate_connection?: boolean | undefined;
|
|
133162
133221
|
can_simulate_disconnection?: boolean | undefined;
|
|
133222
|
+
can_unlock_with_code?: boolean | undefined;
|
|
133163
133223
|
}>;
|
|
133164
133224
|
/**
|
|
133165
133225
|
* @deprecated Use devices. */
|
|
@@ -134272,6 +134332,7 @@ interface Routes {
|
|
|
134272
134332
|
can_simulate_removal?: boolean | undefined;
|
|
134273
134333
|
can_simulate_connection?: boolean | undefined;
|
|
134274
134334
|
can_simulate_disconnection?: boolean | undefined;
|
|
134335
|
+
can_unlock_with_code?: boolean | undefined;
|
|
134275
134336
|
}>;
|
|
134276
134337
|
};
|
|
134277
134338
|
};
|
|
@@ -4,13 +4,13 @@ export declare const acs_entrance_capability_flags: z.ZodObject<{
|
|
|
4
4
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
5
5
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
+
can_unlock_with_code?: boolean | undefined;
|
|
7
8
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
8
9
|
can_unlock_with_card?: boolean | undefined;
|
|
9
|
-
can_unlock_with_code?: boolean | undefined;
|
|
10
10
|
}, {
|
|
11
|
+
can_unlock_with_code?: boolean | undefined;
|
|
11
12
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
12
13
|
can_unlock_with_card?: boolean | undefined;
|
|
13
|
-
can_unlock_with_code?: boolean | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
16
16
|
acs_system_id: z.ZodString;
|
|
@@ -178,9 +178,9 @@ export declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
178
178
|
stand_open?: boolean | undefined;
|
|
179
179
|
pms_id?: string | undefined;
|
|
180
180
|
} | undefined;
|
|
181
|
+
can_unlock_with_code?: boolean | undefined;
|
|
181
182
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
182
183
|
can_unlock_with_card?: boolean | undefined;
|
|
183
|
-
can_unlock_with_code?: boolean | undefined;
|
|
184
184
|
latch_metadata?: {
|
|
185
185
|
door_name: string;
|
|
186
186
|
is_connected: boolean;
|
|
@@ -230,9 +230,9 @@ export declare const acs_entrance: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
230
230
|
stand_open?: boolean | undefined;
|
|
231
231
|
pms_id?: string | undefined;
|
|
232
232
|
} | undefined;
|
|
233
|
+
can_unlock_with_code?: boolean | undefined;
|
|
233
234
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
234
235
|
can_unlock_with_card?: boolean | undefined;
|
|
235
|
-
can_unlock_with_code?: boolean | undefined;
|
|
236
236
|
latch_metadata?: {
|
|
237
237
|
door_name: string;
|
|
238
238
|
is_connected: boolean;
|
|
@@ -83,6 +83,7 @@ export declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
83
83
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
84
84
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
85
85
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
86
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
86
87
|
}>>, "strip", z.ZodTypeAny, {
|
|
87
88
|
display_name: string;
|
|
88
89
|
image_url: string;
|
|
@@ -99,6 +100,7 @@ export declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
99
100
|
can_simulate_removal?: boolean | undefined;
|
|
100
101
|
can_simulate_connection?: boolean | undefined;
|
|
101
102
|
can_simulate_disconnection?: boolean | undefined;
|
|
103
|
+
can_unlock_with_code?: boolean | undefined;
|
|
102
104
|
}, {
|
|
103
105
|
display_name: string;
|
|
104
106
|
image_url: string;
|
|
@@ -115,6 +117,7 @@ export declare const device_provider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
115
117
|
can_simulate_removal?: boolean | undefined;
|
|
116
118
|
can_simulate_connection?: boolean | undefined;
|
|
117
119
|
can_simulate_disconnection?: boolean | undefined;
|
|
120
|
+
can_unlock_with_code?: boolean | undefined;
|
|
118
121
|
}>;
|
|
119
122
|
export type DeviceProvider = z.infer<typeof device_provider>;
|
|
120
123
|
export declare const PROVIDER_CATEGORY_CAPABILITY_MAP: Record<ProviderCategory, ProviderCapability[]>;
|
|
@@ -12,6 +12,7 @@ export declare const device_capability_flags: z.ZodObject<z.objectUtil.extendSha
|
|
|
12
12
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
13
13
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
14
14
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
15
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
15
16
|
}>, "strip", z.ZodTypeAny, {
|
|
16
17
|
can_remotely_unlock?: boolean | undefined;
|
|
17
18
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -24,6 +25,7 @@ export declare const device_capability_flags: z.ZodObject<z.objectUtil.extendSha
|
|
|
24
25
|
can_simulate_removal?: boolean | undefined;
|
|
25
26
|
can_simulate_connection?: boolean | undefined;
|
|
26
27
|
can_simulate_disconnection?: boolean | undefined;
|
|
28
|
+
can_unlock_with_code?: boolean | undefined;
|
|
27
29
|
}, {
|
|
28
30
|
can_remotely_unlock?: boolean | undefined;
|
|
29
31
|
can_remotely_lock?: boolean | undefined;
|
|
@@ -36,6 +38,7 @@ export declare const device_capability_flags: z.ZodObject<z.objectUtil.extendSha
|
|
|
36
38
|
can_simulate_removal?: boolean | undefined;
|
|
37
39
|
can_simulate_connection?: boolean | undefined;
|
|
38
40
|
can_simulate_disconnection?: boolean | undefined;
|
|
41
|
+
can_unlock_with_code?: boolean | undefined;
|
|
39
42
|
}>;
|
|
40
43
|
export declare const battery_status: z.ZodEnum<["critical", "low", "good", "full"]>;
|
|
41
44
|
export type BatteryStatus = z.infer<typeof battery_status>;
|
|
@@ -4522,6 +4525,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4522
4525
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
4523
4526
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
4524
4527
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
4528
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
4525
4529
|
}>>, "strip", z.ZodTypeAny, {
|
|
4526
4530
|
location: {
|
|
4527
4531
|
location_name?: string | undefined;
|
|
@@ -5135,6 +5139,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5135
5139
|
can_simulate_removal?: boolean | undefined;
|
|
5136
5140
|
can_simulate_connection?: boolean | undefined;
|
|
5137
5141
|
can_simulate_disconnection?: boolean | undefined;
|
|
5142
|
+
can_unlock_with_code?: boolean | undefined;
|
|
5138
5143
|
nickname?: string | undefined;
|
|
5139
5144
|
}, {
|
|
5140
5145
|
location: {
|
|
@@ -5749,6 +5754,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5749
5754
|
can_simulate_removal?: boolean | undefined;
|
|
5750
5755
|
can_simulate_connection?: boolean | undefined;
|
|
5751
5756
|
can_simulate_disconnection?: boolean | undefined;
|
|
5757
|
+
can_unlock_with_code?: boolean | undefined;
|
|
5752
5758
|
nickname?: string | undefined;
|
|
5753
5759
|
}>;
|
|
5754
5760
|
export type Device = z.infer<typeof device>;
|
|
@@ -11,6 +11,7 @@ export const device_capability_flags = devicedb_schemas.device_capability_flags.
|
|
|
11
11
|
can_simulate_removal: z.boolean().optional(),
|
|
12
12
|
can_simulate_connection: z.boolean().optional(),
|
|
13
13
|
can_simulate_disconnection: z.boolean().optional(),
|
|
14
|
+
can_unlock_with_code: z.boolean().optional(),
|
|
14
15
|
});
|
|
15
16
|
export const battery_status = z.enum(['critical', 'low', 'good', 'full'])
|
|
16
17
|
.describe(`Represents the current status of the battery charge level. Values are \`critical\`, which indicates an extremely low level, suggesting imminent shutdown or an urgent need for charging; \`low\`, which signifies that the battery is under the preferred threshold and should be charged soon; \`good\`, which denotes a satisfactory charge level, adequate for normal use without the immediate need for recharging; and \`full\`, which represents a battery that is fully charged, providing the maximum duration of usage.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"device.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/devices/device.ts"],"names":[],"mappings":"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"}
|
|
@@ -2618,6 +2618,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
2618
2618
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
2619
2619
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2620
2620
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2621
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
2621
2622
|
}>>, "location" | "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported">, {
|
|
2622
2623
|
is_managed: z.ZodLiteral<false>;
|
|
2623
2624
|
properties: z.ZodObject<Pick<{
|
|
@@ -2767,6 +2768,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
2767
2768
|
can_simulate_removal: z.ZodOptional<z.ZodBoolean>;
|
|
2768
2769
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2769
2770
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2771
|
+
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
2770
2772
|
}>>, "strip", z.ZodTypeAny, {
|
|
2771
2773
|
location: {
|
|
2772
2774
|
location_name?: string | undefined;
|
|
@@ -2997,6 +2999,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
2997
2999
|
can_simulate_removal?: boolean | undefined;
|
|
2998
3000
|
can_simulate_connection?: boolean | undefined;
|
|
2999
3001
|
can_simulate_disconnection?: boolean | undefined;
|
|
3002
|
+
can_unlock_with_code?: boolean | undefined;
|
|
3000
3003
|
}, {
|
|
3001
3004
|
location: {
|
|
3002
3005
|
location_name?: string | undefined;
|
|
@@ -3227,5 +3230,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
3227
3230
|
can_simulate_removal?: boolean | undefined;
|
|
3228
3231
|
can_simulate_connection?: boolean | undefined;
|
|
3229
3232
|
can_simulate_disconnection?: boolean | undefined;
|
|
3233
|
+
can_unlock_with_code?: boolean | undefined;
|
|
3230
3234
|
}>;
|
|
3231
3235
|
export type UnmanagedDevice = z.infer<typeof unmanaged_device>;
|