@seamapi/types 1.501.0 → 1.503.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 +18 -133
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +179 -1358
- package/dist/index.cjs +18 -133
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +3 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +4 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +3 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js +1 -0
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
- package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
- package/lib/seam/connect/models/batch.d.ts +171 -1196
- package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -100
- package/lib/seam/connect/models/devices/device-metadata.js +1 -62
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -140
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -100
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +10 -91
- package/lib/seam/connect/openapi.js +12 -112
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +43 -663
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +6 -0
- package/src/lib/seam/connect/models/access-codes/unmanaged-access-code.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -62
- package/src/lib/seam/connect/openapi.ts +14 -124
- package/src/lib/seam/connect/route-types.ts +43 -663
package/dist/connect.d.cts
CHANGED
|
@@ -561,6 +561,7 @@ declare const access_code_warning: z.ZodDiscriminatedUnion<"warning_code", [z.Zo
|
|
|
561
561
|
}>]>;
|
|
562
562
|
type AccessCodeWarning = z.infer<typeof access_code_warning>;
|
|
563
563
|
declare const access_code: z.ZodObject<{
|
|
564
|
+
workspace_id: z.ZodString;
|
|
564
565
|
common_code_key: z.ZodNullable<z.ZodString>;
|
|
565
566
|
is_scheduled_on_device: z.ZodOptional<z.ZodBoolean>;
|
|
566
567
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
@@ -1498,6 +1499,7 @@ declare const access_code: z.ZodObject<{
|
|
|
1498
1499
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
1499
1500
|
name: string | null;
|
|
1500
1501
|
device_id: string;
|
|
1502
|
+
workspace_id: string;
|
|
1501
1503
|
created_at: string;
|
|
1502
1504
|
errors: ({
|
|
1503
1505
|
message: string;
|
|
@@ -1797,6 +1799,7 @@ declare const access_code: z.ZodObject<{
|
|
|
1797
1799
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
1798
1800
|
name: string | null;
|
|
1799
1801
|
device_id: string;
|
|
1802
|
+
workspace_id: string;
|
|
1800
1803
|
created_at: string;
|
|
1801
1804
|
errors: ({
|
|
1802
1805
|
message: string;
|
|
@@ -2098,6 +2101,7 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
2098
2101
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
2099
2102
|
name: z.ZodNullable<z.ZodString>;
|
|
2100
2103
|
device_id: z.ZodString;
|
|
2104
|
+
workspace_id: z.ZodString;
|
|
2101
2105
|
created_at: z.ZodString;
|
|
2102
2106
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2103
2107
|
ends_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -3023,6 +3027,7 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3023
3027
|
status: "set";
|
|
3024
3028
|
name: string | null;
|
|
3025
3029
|
device_id: string;
|
|
3030
|
+
workspace_id: string;
|
|
3026
3031
|
created_at: string;
|
|
3027
3032
|
errors: ({
|
|
3028
3033
|
message: string;
|
|
@@ -3313,6 +3318,7 @@ declare const unmanaged_access_code: z.ZodObject<{
|
|
|
3313
3318
|
status: "set";
|
|
3314
3319
|
name: string | null;
|
|
3315
3320
|
device_id: string;
|
|
3321
|
+
workspace_id: string;
|
|
3316
3322
|
created_at: string;
|
|
3317
3323
|
errors: ({
|
|
3318
3324
|
message: string;
|
|
@@ -3996,17 +4002,17 @@ declare const acs_credential: z.ZodObject<{
|
|
|
3996
4002
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3997
4003
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
3998
4004
|
}, "strip", z.ZodTypeAny, {
|
|
3999
|
-
key_id?: string | undefined;
|
|
4000
4005
|
endpoint_id?: string | undefined;
|
|
4001
4006
|
auto_join?: boolean | undefined;
|
|
4002
4007
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4008
|
+
key_id?: string | undefined;
|
|
4003
4009
|
key_issuing_request_id?: string | undefined;
|
|
4004
4010
|
door_names?: string[] | undefined;
|
|
4005
4011
|
}, {
|
|
4006
|
-
key_id?: string | undefined;
|
|
4007
4012
|
endpoint_id?: string | undefined;
|
|
4008
4013
|
auto_join?: boolean | undefined;
|
|
4009
4014
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4015
|
+
key_id?: string | undefined;
|
|
4010
4016
|
key_issuing_request_id?: string | undefined;
|
|
4011
4017
|
door_names?: string[] | undefined;
|
|
4012
4018
|
}>>;
|
|
@@ -4064,10 +4070,10 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4064
4070
|
credential_id?: string | undefined;
|
|
4065
4071
|
} | undefined;
|
|
4066
4072
|
assa_abloy_vostio_metadata?: {
|
|
4067
|
-
key_id?: string | undefined;
|
|
4068
4073
|
endpoint_id?: string | undefined;
|
|
4069
4074
|
auto_join?: boolean | undefined;
|
|
4070
4075
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4076
|
+
key_id?: string | undefined;
|
|
4071
4077
|
key_issuing_request_id?: string | undefined;
|
|
4072
4078
|
door_names?: string[] | undefined;
|
|
4073
4079
|
} | undefined;
|
|
@@ -4136,10 +4142,10 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4136
4142
|
credential_id?: string | undefined;
|
|
4137
4143
|
} | undefined;
|
|
4138
4144
|
assa_abloy_vostio_metadata?: {
|
|
4139
|
-
key_id?: string | undefined;
|
|
4140
4145
|
endpoint_id?: string | undefined;
|
|
4141
4146
|
auto_join?: boolean | undefined;
|
|
4142
4147
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4148
|
+
key_id?: string | undefined;
|
|
4143
4149
|
key_issuing_request_id?: string | undefined;
|
|
4144
4150
|
door_names?: string[] | undefined;
|
|
4145
4151
|
} | undefined;
|
|
@@ -4306,17 +4312,17 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4306
4312
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4307
4313
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
4308
4314
|
}, "strip", z.ZodTypeAny, {
|
|
4309
|
-
key_id?: string | undefined;
|
|
4310
4315
|
endpoint_id?: string | undefined;
|
|
4311
4316
|
auto_join?: boolean | undefined;
|
|
4312
4317
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4318
|
+
key_id?: string | undefined;
|
|
4313
4319
|
key_issuing_request_id?: string | undefined;
|
|
4314
4320
|
door_names?: string[] | undefined;
|
|
4315
4321
|
}, {
|
|
4316
|
-
key_id?: string | undefined;
|
|
4317
4322
|
endpoint_id?: string | undefined;
|
|
4318
4323
|
auto_join?: boolean | undefined;
|
|
4319
4324
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4325
|
+
key_id?: string | undefined;
|
|
4320
4326
|
key_issuing_request_id?: string | undefined;
|
|
4321
4327
|
door_names?: string[] | undefined;
|
|
4322
4328
|
}>>;
|
|
@@ -4374,10 +4380,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4374
4380
|
credential_id?: string | undefined;
|
|
4375
4381
|
} | undefined;
|
|
4376
4382
|
assa_abloy_vostio_metadata?: {
|
|
4377
|
-
key_id?: string | undefined;
|
|
4378
4383
|
endpoint_id?: string | undefined;
|
|
4379
4384
|
auto_join?: boolean | undefined;
|
|
4380
4385
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4386
|
+
key_id?: string | undefined;
|
|
4381
4387
|
key_issuing_request_id?: string | undefined;
|
|
4382
4388
|
door_names?: string[] | undefined;
|
|
4383
4389
|
} | undefined;
|
|
@@ -4446,10 +4452,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4446
4452
|
credential_id?: string | undefined;
|
|
4447
4453
|
} | undefined;
|
|
4448
4454
|
assa_abloy_vostio_metadata?: {
|
|
4449
|
-
key_id?: string | undefined;
|
|
4450
4455
|
endpoint_id?: string | undefined;
|
|
4451
4456
|
auto_join?: boolean | undefined;
|
|
4452
4457
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4458
|
+
key_id?: string | undefined;
|
|
4453
4459
|
key_issuing_request_id?: string | undefined;
|
|
4454
4460
|
door_names?: string[] | undefined;
|
|
4455
4461
|
} | undefined;
|
|
@@ -6740,17 +6746,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6740
6746
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6741
6747
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
6742
6748
|
}, "strip", z.ZodTypeAny, {
|
|
6743
|
-
key_id?: string | undefined;
|
|
6744
6749
|
endpoint_id?: string | undefined;
|
|
6745
6750
|
auto_join?: boolean | undefined;
|
|
6746
6751
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6752
|
+
key_id?: string | undefined;
|
|
6747
6753
|
key_issuing_request_id?: string | undefined;
|
|
6748
6754
|
door_names?: string[] | undefined;
|
|
6749
6755
|
}, {
|
|
6750
|
-
key_id?: string | undefined;
|
|
6751
6756
|
endpoint_id?: string | undefined;
|
|
6752
6757
|
auto_join?: boolean | undefined;
|
|
6753
6758
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6759
|
+
key_id?: string | undefined;
|
|
6754
6760
|
key_issuing_request_id?: string | undefined;
|
|
6755
6761
|
door_names?: string[] | undefined;
|
|
6756
6762
|
}>>;
|
|
@@ -6808,10 +6814,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6808
6814
|
credential_id?: string | undefined;
|
|
6809
6815
|
} | undefined;
|
|
6810
6816
|
assa_abloy_vostio_metadata?: {
|
|
6811
|
-
key_id?: string | undefined;
|
|
6812
6817
|
endpoint_id?: string | undefined;
|
|
6813
6818
|
auto_join?: boolean | undefined;
|
|
6814
6819
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6820
|
+
key_id?: string | undefined;
|
|
6815
6821
|
key_issuing_request_id?: string | undefined;
|
|
6816
6822
|
door_names?: string[] | undefined;
|
|
6817
6823
|
} | undefined;
|
|
@@ -6880,10 +6886,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6880
6886
|
credential_id?: string | undefined;
|
|
6881
6887
|
} | undefined;
|
|
6882
6888
|
assa_abloy_vostio_metadata?: {
|
|
6883
|
-
key_id?: string | undefined;
|
|
6884
6889
|
endpoint_id?: string | undefined;
|
|
6885
6890
|
auto_join?: boolean | undefined;
|
|
6886
6891
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6892
|
+
key_id?: string | undefined;
|
|
6887
6893
|
key_issuing_request_id?: string | undefined;
|
|
6888
6894
|
door_names?: string[] | undefined;
|
|
6889
6895
|
} | undefined;
|
|
@@ -7049,17 +7055,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7049
7055
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7050
7056
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
7051
7057
|
}, "strip", z.ZodTypeAny, {
|
|
7052
|
-
key_id?: string | undefined;
|
|
7053
7058
|
endpoint_id?: string | undefined;
|
|
7054
7059
|
auto_join?: boolean | undefined;
|
|
7055
7060
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7061
|
+
key_id?: string | undefined;
|
|
7056
7062
|
key_issuing_request_id?: string | undefined;
|
|
7057
7063
|
door_names?: string[] | undefined;
|
|
7058
7064
|
}, {
|
|
7059
|
-
key_id?: string | undefined;
|
|
7060
7065
|
endpoint_id?: string | undefined;
|
|
7061
7066
|
auto_join?: boolean | undefined;
|
|
7062
7067
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7068
|
+
key_id?: string | undefined;
|
|
7063
7069
|
key_issuing_request_id?: string | undefined;
|
|
7064
7070
|
door_names?: string[] | undefined;
|
|
7065
7071
|
}>>;
|
|
@@ -7117,10 +7123,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7117
7123
|
credential_id?: string | undefined;
|
|
7118
7124
|
} | undefined;
|
|
7119
7125
|
assa_abloy_vostio_metadata?: {
|
|
7120
|
-
key_id?: string | undefined;
|
|
7121
7126
|
endpoint_id?: string | undefined;
|
|
7122
7127
|
auto_join?: boolean | undefined;
|
|
7123
7128
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7129
|
+
key_id?: string | undefined;
|
|
7124
7130
|
key_issuing_request_id?: string | undefined;
|
|
7125
7131
|
door_names?: string[] | undefined;
|
|
7126
7132
|
} | undefined;
|
|
@@ -7189,10 +7195,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7189
7195
|
credential_id?: string | undefined;
|
|
7190
7196
|
} | undefined;
|
|
7191
7197
|
assa_abloy_vostio_metadata?: {
|
|
7192
|
-
key_id?: string | undefined;
|
|
7193
7198
|
endpoint_id?: string | undefined;
|
|
7194
7199
|
auto_join?: boolean | undefined;
|
|
7195
7200
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7201
|
+
key_id?: string | undefined;
|
|
7196
7202
|
key_issuing_request_id?: string | undefined;
|
|
7197
7203
|
door_names?: string[] | undefined;
|
|
7198
7204
|
} | undefined;
|
|
@@ -7298,10 +7304,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7298
7304
|
credential_id?: string | undefined;
|
|
7299
7305
|
} | undefined;
|
|
7300
7306
|
assa_abloy_vostio_metadata?: {
|
|
7301
|
-
key_id?: string | undefined;
|
|
7302
7307
|
endpoint_id?: string | undefined;
|
|
7303
7308
|
auto_join?: boolean | undefined;
|
|
7304
7309
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7310
|
+
key_id?: string | undefined;
|
|
7305
7311
|
key_issuing_request_id?: string | undefined;
|
|
7306
7312
|
door_names?: string[] | undefined;
|
|
7307
7313
|
} | undefined;
|
|
@@ -7370,10 +7376,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7370
7376
|
credential_id?: string | undefined;
|
|
7371
7377
|
} | undefined;
|
|
7372
7378
|
assa_abloy_vostio_metadata?: {
|
|
7373
|
-
key_id?: string | undefined;
|
|
7374
7379
|
endpoint_id?: string | undefined;
|
|
7375
7380
|
auto_join?: boolean | undefined;
|
|
7376
7381
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7382
|
+
key_id?: string | undefined;
|
|
7377
7383
|
key_issuing_request_id?: string | undefined;
|
|
7378
7384
|
door_names?: string[] | undefined;
|
|
7379
7385
|
} | undefined;
|
|
@@ -7469,10 +7475,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7469
7475
|
credential_id?: string | undefined;
|
|
7470
7476
|
} | undefined;
|
|
7471
7477
|
assa_abloy_vostio_metadata?: {
|
|
7472
|
-
key_id?: string | undefined;
|
|
7473
7478
|
endpoint_id?: string | undefined;
|
|
7474
7479
|
auto_join?: boolean | undefined;
|
|
7475
7480
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7481
|
+
key_id?: string | undefined;
|
|
7476
7482
|
key_issuing_request_id?: string | undefined;
|
|
7477
7483
|
door_names?: string[] | undefined;
|
|
7478
7484
|
} | undefined;
|
|
@@ -7541,10 +7547,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7541
7547
|
credential_id?: string | undefined;
|
|
7542
7548
|
} | undefined;
|
|
7543
7549
|
assa_abloy_vostio_metadata?: {
|
|
7544
|
-
key_id?: string | undefined;
|
|
7545
7550
|
endpoint_id?: string | undefined;
|
|
7546
7551
|
auto_join?: boolean | undefined;
|
|
7547
7552
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7553
|
+
key_id?: string | undefined;
|
|
7548
7554
|
key_issuing_request_id?: string | undefined;
|
|
7549
7555
|
door_names?: string[] | undefined;
|
|
7550
7556
|
} | undefined;
|
|
@@ -7645,10 +7651,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7645
7651
|
credential_id?: string | undefined;
|
|
7646
7652
|
} | undefined;
|
|
7647
7653
|
assa_abloy_vostio_metadata?: {
|
|
7648
|
-
key_id?: string | undefined;
|
|
7649
7654
|
endpoint_id?: string | undefined;
|
|
7650
7655
|
auto_join?: boolean | undefined;
|
|
7651
7656
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7657
|
+
key_id?: string | undefined;
|
|
7652
7658
|
key_issuing_request_id?: string | undefined;
|
|
7653
7659
|
door_names?: string[] | undefined;
|
|
7654
7660
|
} | undefined;
|
|
@@ -7717,10 +7723,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7717
7723
|
credential_id?: string | undefined;
|
|
7718
7724
|
} | undefined;
|
|
7719
7725
|
assa_abloy_vostio_metadata?: {
|
|
7720
|
-
key_id?: string | undefined;
|
|
7721
7726
|
endpoint_id?: string | undefined;
|
|
7722
7727
|
auto_join?: boolean | undefined;
|
|
7723
7728
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7729
|
+
key_id?: string | undefined;
|
|
7724
7730
|
key_issuing_request_id?: string | undefined;
|
|
7725
7731
|
door_names?: string[] | undefined;
|
|
7726
7732
|
} | undefined;
|
|
@@ -7822,10 +7828,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7822
7828
|
credential_id?: string | undefined;
|
|
7823
7829
|
} | undefined;
|
|
7824
7830
|
assa_abloy_vostio_metadata?: {
|
|
7825
|
-
key_id?: string | undefined;
|
|
7826
7831
|
endpoint_id?: string | undefined;
|
|
7827
7832
|
auto_join?: boolean | undefined;
|
|
7828
7833
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7834
|
+
key_id?: string | undefined;
|
|
7829
7835
|
key_issuing_request_id?: string | undefined;
|
|
7830
7836
|
door_names?: string[] | undefined;
|
|
7831
7837
|
} | undefined;
|
|
@@ -7894,10 +7900,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7894
7900
|
credential_id?: string | undefined;
|
|
7895
7901
|
} | undefined;
|
|
7896
7902
|
assa_abloy_vostio_metadata?: {
|
|
7897
|
-
key_id?: string | undefined;
|
|
7898
7903
|
endpoint_id?: string | undefined;
|
|
7899
7904
|
auto_join?: boolean | undefined;
|
|
7900
7905
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7906
|
+
key_id?: string | undefined;
|
|
7901
7907
|
key_issuing_request_id?: string | undefined;
|
|
7902
7908
|
door_names?: string[] | undefined;
|
|
7903
7909
|
} | undefined;
|
|
@@ -8158,17 +8164,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8158
8164
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8159
8165
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
8160
8166
|
}, "strip", z.ZodTypeAny, {
|
|
8161
|
-
key_id?: string | undefined;
|
|
8162
8167
|
endpoint_id?: string | undefined;
|
|
8163
8168
|
auto_join?: boolean | undefined;
|
|
8164
8169
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8170
|
+
key_id?: string | undefined;
|
|
8165
8171
|
key_issuing_request_id?: string | undefined;
|
|
8166
8172
|
door_names?: string[] | undefined;
|
|
8167
8173
|
}, {
|
|
8168
|
-
key_id?: string | undefined;
|
|
8169
8174
|
endpoint_id?: string | undefined;
|
|
8170
8175
|
auto_join?: boolean | undefined;
|
|
8171
8176
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8177
|
+
key_id?: string | undefined;
|
|
8172
8178
|
key_issuing_request_id?: string | undefined;
|
|
8173
8179
|
door_names?: string[] | undefined;
|
|
8174
8180
|
}>>;
|
|
@@ -8226,10 +8232,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8226
8232
|
credential_id?: string | undefined;
|
|
8227
8233
|
} | undefined;
|
|
8228
8234
|
assa_abloy_vostio_metadata?: {
|
|
8229
|
-
key_id?: string | undefined;
|
|
8230
8235
|
endpoint_id?: string | undefined;
|
|
8231
8236
|
auto_join?: boolean | undefined;
|
|
8232
8237
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8238
|
+
key_id?: string | undefined;
|
|
8233
8239
|
key_issuing_request_id?: string | undefined;
|
|
8234
8240
|
door_names?: string[] | undefined;
|
|
8235
8241
|
} | undefined;
|
|
@@ -8298,10 +8304,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8298
8304
|
credential_id?: string | undefined;
|
|
8299
8305
|
} | undefined;
|
|
8300
8306
|
assa_abloy_vostio_metadata?: {
|
|
8301
|
-
key_id?: string | undefined;
|
|
8302
8307
|
endpoint_id?: string | undefined;
|
|
8303
8308
|
auto_join?: boolean | undefined;
|
|
8304
8309
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8310
|
+
key_id?: string | undefined;
|
|
8305
8311
|
key_issuing_request_id?: string | undefined;
|
|
8306
8312
|
door_names?: string[] | undefined;
|
|
8307
8313
|
} | undefined;
|
|
@@ -8467,17 +8473,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8467
8473
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8468
8474
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
8469
8475
|
}, "strip", z.ZodTypeAny, {
|
|
8470
|
-
key_id?: string | undefined;
|
|
8471
8476
|
endpoint_id?: string | undefined;
|
|
8472
8477
|
auto_join?: boolean | undefined;
|
|
8473
8478
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8479
|
+
key_id?: string | undefined;
|
|
8474
8480
|
key_issuing_request_id?: string | undefined;
|
|
8475
8481
|
door_names?: string[] | undefined;
|
|
8476
8482
|
}, {
|
|
8477
|
-
key_id?: string | undefined;
|
|
8478
8483
|
endpoint_id?: string | undefined;
|
|
8479
8484
|
auto_join?: boolean | undefined;
|
|
8480
8485
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8486
|
+
key_id?: string | undefined;
|
|
8481
8487
|
key_issuing_request_id?: string | undefined;
|
|
8482
8488
|
door_names?: string[] | undefined;
|
|
8483
8489
|
}>>;
|
|
@@ -8535,10 +8541,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8535
8541
|
credential_id?: string | undefined;
|
|
8536
8542
|
} | undefined;
|
|
8537
8543
|
assa_abloy_vostio_metadata?: {
|
|
8538
|
-
key_id?: string | undefined;
|
|
8539
8544
|
endpoint_id?: string | undefined;
|
|
8540
8545
|
auto_join?: boolean | undefined;
|
|
8541
8546
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8547
|
+
key_id?: string | undefined;
|
|
8542
8548
|
key_issuing_request_id?: string | undefined;
|
|
8543
8549
|
door_names?: string[] | undefined;
|
|
8544
8550
|
} | undefined;
|
|
@@ -8607,10 +8613,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8607
8613
|
credential_id?: string | undefined;
|
|
8608
8614
|
} | undefined;
|
|
8609
8615
|
assa_abloy_vostio_metadata?: {
|
|
8610
|
-
key_id?: string | undefined;
|
|
8611
8616
|
endpoint_id?: string | undefined;
|
|
8612
8617
|
auto_join?: boolean | undefined;
|
|
8613
8618
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8619
|
+
key_id?: string | undefined;
|
|
8614
8620
|
key_issuing_request_id?: string | undefined;
|
|
8615
8621
|
door_names?: string[] | undefined;
|
|
8616
8622
|
} | undefined;
|
|
@@ -8684,10 +8690,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8684
8690
|
credential_id?: string | undefined;
|
|
8685
8691
|
} | undefined;
|
|
8686
8692
|
assa_abloy_vostio_metadata?: {
|
|
8687
|
-
key_id?: string | undefined;
|
|
8688
8693
|
endpoint_id?: string | undefined;
|
|
8689
8694
|
auto_join?: boolean | undefined;
|
|
8690
8695
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8696
|
+
key_id?: string | undefined;
|
|
8691
8697
|
key_issuing_request_id?: string | undefined;
|
|
8692
8698
|
door_names?: string[] | undefined;
|
|
8693
8699
|
} | undefined;
|
|
@@ -8756,10 +8762,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8756
8762
|
credential_id?: string | undefined;
|
|
8757
8763
|
} | undefined;
|
|
8758
8764
|
assa_abloy_vostio_metadata?: {
|
|
8759
|
-
key_id?: string | undefined;
|
|
8760
8765
|
endpoint_id?: string | undefined;
|
|
8761
8766
|
auto_join?: boolean | undefined;
|
|
8762
8767
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8768
|
+
key_id?: string | undefined;
|
|
8763
8769
|
key_issuing_request_id?: string | undefined;
|
|
8764
8770
|
door_names?: string[] | undefined;
|
|
8765
8771
|
} | undefined;
|
|
@@ -8834,10 +8840,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8834
8840
|
credential_id?: string | undefined;
|
|
8835
8841
|
} | undefined;
|
|
8836
8842
|
assa_abloy_vostio_metadata?: {
|
|
8837
|
-
key_id?: string | undefined;
|
|
8838
8843
|
endpoint_id?: string | undefined;
|
|
8839
8844
|
auto_join?: boolean | undefined;
|
|
8840
8845
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8846
|
+
key_id?: string | undefined;
|
|
8841
8847
|
key_issuing_request_id?: string | undefined;
|
|
8842
8848
|
door_names?: string[] | undefined;
|
|
8843
8849
|
} | undefined;
|
|
@@ -8906,10 +8912,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8906
8912
|
credential_id?: string | undefined;
|
|
8907
8913
|
} | undefined;
|
|
8908
8914
|
assa_abloy_vostio_metadata?: {
|
|
8909
|
-
key_id?: string | undefined;
|
|
8910
8915
|
endpoint_id?: string | undefined;
|
|
8911
8916
|
auto_join?: boolean | undefined;
|
|
8912
8917
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8918
|
+
key_id?: string | undefined;
|
|
8913
8919
|
key_issuing_request_id?: string | undefined;
|
|
8914
8920
|
door_names?: string[] | undefined;
|
|
8915
8921
|
} | undefined;
|
|
@@ -11317,68 +11323,11 @@ declare const batch: z.ZodObject<{
|
|
|
11317
11323
|
product_type: string;
|
|
11318
11324
|
}>>;
|
|
11319
11325
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
11320
|
-
|
|
11321
|
-
device_name: z.ZodString;
|
|
11322
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
11323
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
11324
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
11325
|
-
subscription_plan: z.ZodString;
|
|
11326
|
-
status_type: z.ZodString;
|
|
11327
|
-
current_or_last_store_id: z.ZodNumber;
|
|
11328
|
-
last_movement: z.ZodString;
|
|
11329
|
-
address: z.ZodNullable<z.ZodString>;
|
|
11330
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
11331
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
11332
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
11333
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
11334
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
11335
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
11336
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
11337
|
-
default_office_id: z.ZodNumber;
|
|
11338
|
-
fob_id: z.ZodNumber;
|
|
11339
|
-
has_photo: z.ZodBoolean;
|
|
11326
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
11340
11327
|
}, "strip", z.ZodTypeAny, {
|
|
11341
|
-
device_name
|
|
11342
|
-
key_id: string;
|
|
11343
|
-
property_id: string | null;
|
|
11344
|
-
property_postcode: string | null;
|
|
11345
|
-
key_notes: string | null;
|
|
11346
|
-
subscription_plan: string;
|
|
11347
|
-
status_type: string;
|
|
11348
|
-
current_or_last_store_id: number;
|
|
11349
|
-
last_movement: string;
|
|
11350
|
-
address: string | null;
|
|
11351
|
-
current_status: string | null;
|
|
11352
|
-
current_user_name: string | null;
|
|
11353
|
-
current_user_email: string | null;
|
|
11354
|
-
current_user_phone_number: string | null;
|
|
11355
|
-
current_user_company: string | null;
|
|
11356
|
-
handover_method: string | null;
|
|
11357
|
-
keynest_app_user: string | null;
|
|
11358
|
-
default_office_id: number;
|
|
11359
|
-
fob_id: number;
|
|
11360
|
-
has_photo: boolean;
|
|
11328
|
+
device_name?: string | undefined;
|
|
11361
11329
|
}, {
|
|
11362
|
-
device_name
|
|
11363
|
-
key_id: string;
|
|
11364
|
-
property_id: string | null;
|
|
11365
|
-
property_postcode: string | null;
|
|
11366
|
-
key_notes: string | null;
|
|
11367
|
-
subscription_plan: string;
|
|
11368
|
-
status_type: string;
|
|
11369
|
-
current_or_last_store_id: number;
|
|
11370
|
-
last_movement: string;
|
|
11371
|
-
address: string | null;
|
|
11372
|
-
current_status: string | null;
|
|
11373
|
-
current_user_name: string | null;
|
|
11374
|
-
current_user_email: string | null;
|
|
11375
|
-
current_user_phone_number: string | null;
|
|
11376
|
-
current_user_company: string | null;
|
|
11377
|
-
handover_method: string | null;
|
|
11378
|
-
keynest_app_user: string | null;
|
|
11379
|
-
default_office_id: number;
|
|
11380
|
-
fob_id: number;
|
|
11381
|
-
has_photo: boolean;
|
|
11330
|
+
device_name?: string | undefined;
|
|
11382
11331
|
}>>;
|
|
11383
11332
|
}, "strip", z.ZodTypeAny, {
|
|
11384
11333
|
ecobee_metadata?: {
|
|
@@ -11614,26 +11563,7 @@ declare const batch: z.ZodObject<{
|
|
|
11614
11563
|
product_type: string;
|
|
11615
11564
|
} | undefined;
|
|
11616
11565
|
keynest_metadata?: {
|
|
11617
|
-
device_name
|
|
11618
|
-
key_id: string;
|
|
11619
|
-
property_id: string | null;
|
|
11620
|
-
property_postcode: string | null;
|
|
11621
|
-
key_notes: string | null;
|
|
11622
|
-
subscription_plan: string;
|
|
11623
|
-
status_type: string;
|
|
11624
|
-
current_or_last_store_id: number;
|
|
11625
|
-
last_movement: string;
|
|
11626
|
-
address: string | null;
|
|
11627
|
-
current_status: string | null;
|
|
11628
|
-
current_user_name: string | null;
|
|
11629
|
-
current_user_email: string | null;
|
|
11630
|
-
current_user_phone_number: string | null;
|
|
11631
|
-
current_user_company: string | null;
|
|
11632
|
-
handover_method: string | null;
|
|
11633
|
-
keynest_app_user: string | null;
|
|
11634
|
-
default_office_id: number;
|
|
11635
|
-
fob_id: number;
|
|
11636
|
-
has_photo: boolean;
|
|
11566
|
+
device_name?: string | undefined;
|
|
11637
11567
|
} | undefined;
|
|
11638
11568
|
}, {
|
|
11639
11569
|
ecobee_metadata?: {
|
|
@@ -11869,26 +11799,7 @@ declare const batch: z.ZodObject<{
|
|
|
11869
11799
|
product_type: string;
|
|
11870
11800
|
} | undefined;
|
|
11871
11801
|
keynest_metadata?: {
|
|
11872
|
-
device_name
|
|
11873
|
-
key_id: string;
|
|
11874
|
-
property_id: string | null;
|
|
11875
|
-
property_postcode: string | null;
|
|
11876
|
-
key_notes: string | null;
|
|
11877
|
-
subscription_plan: string;
|
|
11878
|
-
status_type: string;
|
|
11879
|
-
current_or_last_store_id: number;
|
|
11880
|
-
last_movement: string;
|
|
11881
|
-
address: string | null;
|
|
11882
|
-
current_status: string | null;
|
|
11883
|
-
current_user_name: string | null;
|
|
11884
|
-
current_user_email: string | null;
|
|
11885
|
-
current_user_phone_number: string | null;
|
|
11886
|
-
current_user_company: string | null;
|
|
11887
|
-
handover_method: string | null;
|
|
11888
|
-
keynest_app_user: string | null;
|
|
11889
|
-
default_office_id: number;
|
|
11890
|
-
fob_id: number;
|
|
11891
|
-
has_photo: boolean;
|
|
11802
|
+
device_name?: string | undefined;
|
|
11892
11803
|
} | undefined;
|
|
11893
11804
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
11894
11805
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -13665,26 +13576,7 @@ declare const batch: z.ZodObject<{
|
|
|
13665
13576
|
product_type: string;
|
|
13666
13577
|
} | undefined;
|
|
13667
13578
|
keynest_metadata?: {
|
|
13668
|
-
device_name
|
|
13669
|
-
key_id: string;
|
|
13670
|
-
property_id: string | null;
|
|
13671
|
-
property_postcode: string | null;
|
|
13672
|
-
key_notes: string | null;
|
|
13673
|
-
subscription_plan: string;
|
|
13674
|
-
status_type: string;
|
|
13675
|
-
current_or_last_store_id: number;
|
|
13676
|
-
last_movement: string;
|
|
13677
|
-
address: string | null;
|
|
13678
|
-
current_status: string | null;
|
|
13679
|
-
current_user_name: string | null;
|
|
13680
|
-
current_user_email: string | null;
|
|
13681
|
-
current_user_phone_number: string | null;
|
|
13682
|
-
current_user_company: string | null;
|
|
13683
|
-
handover_method: string | null;
|
|
13684
|
-
keynest_app_user: string | null;
|
|
13685
|
-
default_office_id: number;
|
|
13686
|
-
fob_id: number;
|
|
13687
|
-
has_photo: boolean;
|
|
13579
|
+
device_name?: string | undefined;
|
|
13688
13580
|
} | undefined;
|
|
13689
13581
|
} & {
|
|
13690
13582
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14323,26 +14215,7 @@ declare const batch: z.ZodObject<{
|
|
|
14323
14215
|
product_type: string;
|
|
14324
14216
|
} | undefined;
|
|
14325
14217
|
keynest_metadata?: {
|
|
14326
|
-
device_name
|
|
14327
|
-
key_id: string;
|
|
14328
|
-
property_id: string | null;
|
|
14329
|
-
property_postcode: string | null;
|
|
14330
|
-
key_notes: string | null;
|
|
14331
|
-
subscription_plan: string;
|
|
14332
|
-
status_type: string;
|
|
14333
|
-
current_or_last_store_id: number;
|
|
14334
|
-
last_movement: string;
|
|
14335
|
-
address: string | null;
|
|
14336
|
-
current_status: string | null;
|
|
14337
|
-
current_user_name: string | null;
|
|
14338
|
-
current_user_email: string | null;
|
|
14339
|
-
current_user_phone_number: string | null;
|
|
14340
|
-
current_user_company: string | null;
|
|
14341
|
-
handover_method: string | null;
|
|
14342
|
-
keynest_app_user: string | null;
|
|
14343
|
-
default_office_id: number;
|
|
14344
|
-
fob_id: number;
|
|
14345
|
-
has_photo: boolean;
|
|
14218
|
+
device_name?: string | undefined;
|
|
14346
14219
|
} | undefined;
|
|
14347
14220
|
} & {
|
|
14348
14221
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -15957,17 +15830,17 @@ declare const batch: z.ZodObject<{
|
|
|
15957
15830
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15958
15831
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
15959
15832
|
}, "strip", z.ZodTypeAny, {
|
|
15960
|
-
key_id?: string | undefined;
|
|
15961
15833
|
endpoint_id?: string | undefined;
|
|
15962
15834
|
auto_join?: boolean | undefined;
|
|
15963
15835
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15836
|
+
key_id?: string | undefined;
|
|
15964
15837
|
key_issuing_request_id?: string | undefined;
|
|
15965
15838
|
door_names?: string[] | undefined;
|
|
15966
15839
|
}, {
|
|
15967
|
-
key_id?: string | undefined;
|
|
15968
15840
|
endpoint_id?: string | undefined;
|
|
15969
15841
|
auto_join?: boolean | undefined;
|
|
15970
15842
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15843
|
+
key_id?: string | undefined;
|
|
15971
15844
|
key_issuing_request_id?: string | undefined;
|
|
15972
15845
|
door_names?: string[] | undefined;
|
|
15973
15846
|
}>>;
|
|
@@ -16025,10 +15898,10 @@ declare const batch: z.ZodObject<{
|
|
|
16025
15898
|
credential_id?: string | undefined;
|
|
16026
15899
|
} | undefined;
|
|
16027
15900
|
assa_abloy_vostio_metadata?: {
|
|
16028
|
-
key_id?: string | undefined;
|
|
16029
15901
|
endpoint_id?: string | undefined;
|
|
16030
15902
|
auto_join?: boolean | undefined;
|
|
16031
15903
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15904
|
+
key_id?: string | undefined;
|
|
16032
15905
|
key_issuing_request_id?: string | undefined;
|
|
16033
15906
|
door_names?: string[] | undefined;
|
|
16034
15907
|
} | undefined;
|
|
@@ -16097,10 +15970,10 @@ declare const batch: z.ZodObject<{
|
|
|
16097
15970
|
credential_id?: string | undefined;
|
|
16098
15971
|
} | undefined;
|
|
16099
15972
|
assa_abloy_vostio_metadata?: {
|
|
16100
|
-
key_id?: string | undefined;
|
|
16101
15973
|
endpoint_id?: string | undefined;
|
|
16102
15974
|
auto_join?: boolean | undefined;
|
|
16103
15975
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15976
|
+
key_id?: string | undefined;
|
|
16104
15977
|
key_issuing_request_id?: string | undefined;
|
|
16105
15978
|
door_names?: string[] | undefined;
|
|
16106
15979
|
} | undefined;
|
|
@@ -16267,17 +16140,17 @@ declare const batch: z.ZodObject<{
|
|
|
16267
16140
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16268
16141
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
16269
16142
|
}, "strip", z.ZodTypeAny, {
|
|
16270
|
-
key_id?: string | undefined;
|
|
16271
16143
|
endpoint_id?: string | undefined;
|
|
16272
16144
|
auto_join?: boolean | undefined;
|
|
16273
16145
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16146
|
+
key_id?: string | undefined;
|
|
16274
16147
|
key_issuing_request_id?: string | undefined;
|
|
16275
16148
|
door_names?: string[] | undefined;
|
|
16276
16149
|
}, {
|
|
16277
|
-
key_id?: string | undefined;
|
|
16278
16150
|
endpoint_id?: string | undefined;
|
|
16279
16151
|
auto_join?: boolean | undefined;
|
|
16280
16152
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16153
|
+
key_id?: string | undefined;
|
|
16281
16154
|
key_issuing_request_id?: string | undefined;
|
|
16282
16155
|
door_names?: string[] | undefined;
|
|
16283
16156
|
}>>;
|
|
@@ -16335,10 +16208,10 @@ declare const batch: z.ZodObject<{
|
|
|
16335
16208
|
credential_id?: string | undefined;
|
|
16336
16209
|
} | undefined;
|
|
16337
16210
|
assa_abloy_vostio_metadata?: {
|
|
16338
|
-
key_id?: string | undefined;
|
|
16339
16211
|
endpoint_id?: string | undefined;
|
|
16340
16212
|
auto_join?: boolean | undefined;
|
|
16341
16213
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16214
|
+
key_id?: string | undefined;
|
|
16342
16215
|
key_issuing_request_id?: string | undefined;
|
|
16343
16216
|
door_names?: string[] | undefined;
|
|
16344
16217
|
} | undefined;
|
|
@@ -16407,10 +16280,10 @@ declare const batch: z.ZodObject<{
|
|
|
16407
16280
|
credential_id?: string | undefined;
|
|
16408
16281
|
} | undefined;
|
|
16409
16282
|
assa_abloy_vostio_metadata?: {
|
|
16410
|
-
key_id?: string | undefined;
|
|
16411
16283
|
endpoint_id?: string | undefined;
|
|
16412
16284
|
auto_join?: boolean | undefined;
|
|
16413
16285
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16286
|
+
key_id?: string | undefined;
|
|
16414
16287
|
key_issuing_request_id?: string | undefined;
|
|
16415
16288
|
door_names?: string[] | undefined;
|
|
16416
16289
|
} | undefined;
|
|
@@ -16842,17 +16715,17 @@ declare const batch: z.ZodObject<{
|
|
|
16842
16715
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16843
16716
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
16844
16717
|
}, "strip", z.ZodTypeAny, {
|
|
16845
|
-
key_id?: string | undefined;
|
|
16846
16718
|
endpoint_id?: string | undefined;
|
|
16847
16719
|
auto_join?: boolean | undefined;
|
|
16848
16720
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16721
|
+
key_id?: string | undefined;
|
|
16849
16722
|
key_issuing_request_id?: string | undefined;
|
|
16850
16723
|
door_names?: string[] | undefined;
|
|
16851
16724
|
}, {
|
|
16852
|
-
key_id?: string | undefined;
|
|
16853
16725
|
endpoint_id?: string | undefined;
|
|
16854
16726
|
auto_join?: boolean | undefined;
|
|
16855
16727
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16728
|
+
key_id?: string | undefined;
|
|
16856
16729
|
key_issuing_request_id?: string | undefined;
|
|
16857
16730
|
door_names?: string[] | undefined;
|
|
16858
16731
|
}>>;
|
|
@@ -16910,10 +16783,10 @@ declare const batch: z.ZodObject<{
|
|
|
16910
16783
|
credential_id?: string | undefined;
|
|
16911
16784
|
} | undefined;
|
|
16912
16785
|
assa_abloy_vostio_metadata?: {
|
|
16913
|
-
key_id?: string | undefined;
|
|
16914
16786
|
endpoint_id?: string | undefined;
|
|
16915
16787
|
auto_join?: boolean | undefined;
|
|
16916
16788
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16789
|
+
key_id?: string | undefined;
|
|
16917
16790
|
key_issuing_request_id?: string | undefined;
|
|
16918
16791
|
door_names?: string[] | undefined;
|
|
16919
16792
|
} | undefined;
|
|
@@ -16982,10 +16855,10 @@ declare const batch: z.ZodObject<{
|
|
|
16982
16855
|
credential_id?: string | undefined;
|
|
16983
16856
|
} | undefined;
|
|
16984
16857
|
assa_abloy_vostio_metadata?: {
|
|
16985
|
-
key_id?: string | undefined;
|
|
16986
16858
|
endpoint_id?: string | undefined;
|
|
16987
16859
|
auto_join?: boolean | undefined;
|
|
16988
16860
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16861
|
+
key_id?: string | undefined;
|
|
16989
16862
|
key_issuing_request_id?: string | undefined;
|
|
16990
16863
|
door_names?: string[] | undefined;
|
|
16991
16864
|
} | undefined;
|
|
@@ -17151,17 +17024,17 @@ declare const batch: z.ZodObject<{
|
|
|
17151
17024
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17152
17025
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
17153
17026
|
}, "strip", z.ZodTypeAny, {
|
|
17154
|
-
key_id?: string | undefined;
|
|
17155
17027
|
endpoint_id?: string | undefined;
|
|
17156
17028
|
auto_join?: boolean | undefined;
|
|
17157
17029
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17030
|
+
key_id?: string | undefined;
|
|
17158
17031
|
key_issuing_request_id?: string | undefined;
|
|
17159
17032
|
door_names?: string[] | undefined;
|
|
17160
17033
|
}, {
|
|
17161
|
-
key_id?: string | undefined;
|
|
17162
17034
|
endpoint_id?: string | undefined;
|
|
17163
17035
|
auto_join?: boolean | undefined;
|
|
17164
17036
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17037
|
+
key_id?: string | undefined;
|
|
17165
17038
|
key_issuing_request_id?: string | undefined;
|
|
17166
17039
|
door_names?: string[] | undefined;
|
|
17167
17040
|
}>>;
|
|
@@ -17219,10 +17092,10 @@ declare const batch: z.ZodObject<{
|
|
|
17219
17092
|
credential_id?: string | undefined;
|
|
17220
17093
|
} | undefined;
|
|
17221
17094
|
assa_abloy_vostio_metadata?: {
|
|
17222
|
-
key_id?: string | undefined;
|
|
17223
17095
|
endpoint_id?: string | undefined;
|
|
17224
17096
|
auto_join?: boolean | undefined;
|
|
17225
17097
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17098
|
+
key_id?: string | undefined;
|
|
17226
17099
|
key_issuing_request_id?: string | undefined;
|
|
17227
17100
|
door_names?: string[] | undefined;
|
|
17228
17101
|
} | undefined;
|
|
@@ -17291,10 +17164,10 @@ declare const batch: z.ZodObject<{
|
|
|
17291
17164
|
credential_id?: string | undefined;
|
|
17292
17165
|
} | undefined;
|
|
17293
17166
|
assa_abloy_vostio_metadata?: {
|
|
17294
|
-
key_id?: string | undefined;
|
|
17295
17167
|
endpoint_id?: string | undefined;
|
|
17296
17168
|
auto_join?: boolean | undefined;
|
|
17297
17169
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17170
|
+
key_id?: string | undefined;
|
|
17298
17171
|
key_issuing_request_id?: string | undefined;
|
|
17299
17172
|
door_names?: string[] | undefined;
|
|
17300
17173
|
} | undefined;
|
|
@@ -17400,10 +17273,10 @@ declare const batch: z.ZodObject<{
|
|
|
17400
17273
|
credential_id?: string | undefined;
|
|
17401
17274
|
} | undefined;
|
|
17402
17275
|
assa_abloy_vostio_metadata?: {
|
|
17403
|
-
key_id?: string | undefined;
|
|
17404
17276
|
endpoint_id?: string | undefined;
|
|
17405
17277
|
auto_join?: boolean | undefined;
|
|
17406
17278
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17279
|
+
key_id?: string | undefined;
|
|
17407
17280
|
key_issuing_request_id?: string | undefined;
|
|
17408
17281
|
door_names?: string[] | undefined;
|
|
17409
17282
|
} | undefined;
|
|
@@ -17472,10 +17345,10 @@ declare const batch: z.ZodObject<{
|
|
|
17472
17345
|
credential_id?: string | undefined;
|
|
17473
17346
|
} | undefined;
|
|
17474
17347
|
assa_abloy_vostio_metadata?: {
|
|
17475
|
-
key_id?: string | undefined;
|
|
17476
17348
|
endpoint_id?: string | undefined;
|
|
17477
17349
|
auto_join?: boolean | undefined;
|
|
17478
17350
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17351
|
+
key_id?: string | undefined;
|
|
17479
17352
|
key_issuing_request_id?: string | undefined;
|
|
17480
17353
|
door_names?: string[] | undefined;
|
|
17481
17354
|
} | undefined;
|
|
@@ -17571,10 +17444,10 @@ declare const batch: z.ZodObject<{
|
|
|
17571
17444
|
credential_id?: string | undefined;
|
|
17572
17445
|
} | undefined;
|
|
17573
17446
|
assa_abloy_vostio_metadata?: {
|
|
17574
|
-
key_id?: string | undefined;
|
|
17575
17447
|
endpoint_id?: string | undefined;
|
|
17576
17448
|
auto_join?: boolean | undefined;
|
|
17577
17449
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17450
|
+
key_id?: string | undefined;
|
|
17578
17451
|
key_issuing_request_id?: string | undefined;
|
|
17579
17452
|
door_names?: string[] | undefined;
|
|
17580
17453
|
} | undefined;
|
|
@@ -17643,10 +17516,10 @@ declare const batch: z.ZodObject<{
|
|
|
17643
17516
|
credential_id?: string | undefined;
|
|
17644
17517
|
} | undefined;
|
|
17645
17518
|
assa_abloy_vostio_metadata?: {
|
|
17646
|
-
key_id?: string | undefined;
|
|
17647
17519
|
endpoint_id?: string | undefined;
|
|
17648
17520
|
auto_join?: boolean | undefined;
|
|
17649
17521
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17522
|
+
key_id?: string | undefined;
|
|
17650
17523
|
key_issuing_request_id?: string | undefined;
|
|
17651
17524
|
door_names?: string[] | undefined;
|
|
17652
17525
|
} | undefined;
|
|
@@ -17747,10 +17620,10 @@ declare const batch: z.ZodObject<{
|
|
|
17747
17620
|
credential_id?: string | undefined;
|
|
17748
17621
|
} | undefined;
|
|
17749
17622
|
assa_abloy_vostio_metadata?: {
|
|
17750
|
-
key_id?: string | undefined;
|
|
17751
17623
|
endpoint_id?: string | undefined;
|
|
17752
17624
|
auto_join?: boolean | undefined;
|
|
17753
17625
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17626
|
+
key_id?: string | undefined;
|
|
17754
17627
|
key_issuing_request_id?: string | undefined;
|
|
17755
17628
|
door_names?: string[] | undefined;
|
|
17756
17629
|
} | undefined;
|
|
@@ -17819,10 +17692,10 @@ declare const batch: z.ZodObject<{
|
|
|
17819
17692
|
credential_id?: string | undefined;
|
|
17820
17693
|
} | undefined;
|
|
17821
17694
|
assa_abloy_vostio_metadata?: {
|
|
17822
|
-
key_id?: string | undefined;
|
|
17823
17695
|
endpoint_id?: string | undefined;
|
|
17824
17696
|
auto_join?: boolean | undefined;
|
|
17825
17697
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17698
|
+
key_id?: string | undefined;
|
|
17826
17699
|
key_issuing_request_id?: string | undefined;
|
|
17827
17700
|
door_names?: string[] | undefined;
|
|
17828
17701
|
} | undefined;
|
|
@@ -17924,10 +17797,10 @@ declare const batch: z.ZodObject<{
|
|
|
17924
17797
|
credential_id?: string | undefined;
|
|
17925
17798
|
} | undefined;
|
|
17926
17799
|
assa_abloy_vostio_metadata?: {
|
|
17927
|
-
key_id?: string | undefined;
|
|
17928
17800
|
endpoint_id?: string | undefined;
|
|
17929
17801
|
auto_join?: boolean | undefined;
|
|
17930
17802
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17803
|
+
key_id?: string | undefined;
|
|
17931
17804
|
key_issuing_request_id?: string | undefined;
|
|
17932
17805
|
door_names?: string[] | undefined;
|
|
17933
17806
|
} | undefined;
|
|
@@ -17996,10 +17869,10 @@ declare const batch: z.ZodObject<{
|
|
|
17996
17869
|
credential_id?: string | undefined;
|
|
17997
17870
|
} | undefined;
|
|
17998
17871
|
assa_abloy_vostio_metadata?: {
|
|
17999
|
-
key_id?: string | undefined;
|
|
18000
17872
|
endpoint_id?: string | undefined;
|
|
18001
17873
|
auto_join?: boolean | undefined;
|
|
18002
17874
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17875
|
+
key_id?: string | undefined;
|
|
18003
17876
|
key_issuing_request_id?: string | undefined;
|
|
18004
17877
|
door_names?: string[] | undefined;
|
|
18005
17878
|
} | undefined;
|
|
@@ -18260,17 +18133,17 @@ declare const batch: z.ZodObject<{
|
|
|
18260
18133
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18261
18134
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
18262
18135
|
}, "strip", z.ZodTypeAny, {
|
|
18263
|
-
key_id?: string | undefined;
|
|
18264
18136
|
endpoint_id?: string | undefined;
|
|
18265
18137
|
auto_join?: boolean | undefined;
|
|
18266
18138
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18139
|
+
key_id?: string | undefined;
|
|
18267
18140
|
key_issuing_request_id?: string | undefined;
|
|
18268
18141
|
door_names?: string[] | undefined;
|
|
18269
18142
|
}, {
|
|
18270
|
-
key_id?: string | undefined;
|
|
18271
18143
|
endpoint_id?: string | undefined;
|
|
18272
18144
|
auto_join?: boolean | undefined;
|
|
18273
18145
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18146
|
+
key_id?: string | undefined;
|
|
18274
18147
|
key_issuing_request_id?: string | undefined;
|
|
18275
18148
|
door_names?: string[] | undefined;
|
|
18276
18149
|
}>>;
|
|
@@ -18328,10 +18201,10 @@ declare const batch: z.ZodObject<{
|
|
|
18328
18201
|
credential_id?: string | undefined;
|
|
18329
18202
|
} | undefined;
|
|
18330
18203
|
assa_abloy_vostio_metadata?: {
|
|
18331
|
-
key_id?: string | undefined;
|
|
18332
18204
|
endpoint_id?: string | undefined;
|
|
18333
18205
|
auto_join?: boolean | undefined;
|
|
18334
18206
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18207
|
+
key_id?: string | undefined;
|
|
18335
18208
|
key_issuing_request_id?: string | undefined;
|
|
18336
18209
|
door_names?: string[] | undefined;
|
|
18337
18210
|
} | undefined;
|
|
@@ -18400,10 +18273,10 @@ declare const batch: z.ZodObject<{
|
|
|
18400
18273
|
credential_id?: string | undefined;
|
|
18401
18274
|
} | undefined;
|
|
18402
18275
|
assa_abloy_vostio_metadata?: {
|
|
18403
|
-
key_id?: string | undefined;
|
|
18404
18276
|
endpoint_id?: string | undefined;
|
|
18405
18277
|
auto_join?: boolean | undefined;
|
|
18406
18278
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18279
|
+
key_id?: string | undefined;
|
|
18407
18280
|
key_issuing_request_id?: string | undefined;
|
|
18408
18281
|
door_names?: string[] | undefined;
|
|
18409
18282
|
} | undefined;
|
|
@@ -18569,17 +18442,17 @@ declare const batch: z.ZodObject<{
|
|
|
18569
18442
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18570
18443
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
18571
18444
|
}, "strip", z.ZodTypeAny, {
|
|
18572
|
-
key_id?: string | undefined;
|
|
18573
18445
|
endpoint_id?: string | undefined;
|
|
18574
18446
|
auto_join?: boolean | undefined;
|
|
18575
18447
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18448
|
+
key_id?: string | undefined;
|
|
18576
18449
|
key_issuing_request_id?: string | undefined;
|
|
18577
18450
|
door_names?: string[] | undefined;
|
|
18578
18451
|
}, {
|
|
18579
|
-
key_id?: string | undefined;
|
|
18580
18452
|
endpoint_id?: string | undefined;
|
|
18581
18453
|
auto_join?: boolean | undefined;
|
|
18582
18454
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18455
|
+
key_id?: string | undefined;
|
|
18583
18456
|
key_issuing_request_id?: string | undefined;
|
|
18584
18457
|
door_names?: string[] | undefined;
|
|
18585
18458
|
}>>;
|
|
@@ -18637,10 +18510,10 @@ declare const batch: z.ZodObject<{
|
|
|
18637
18510
|
credential_id?: string | undefined;
|
|
18638
18511
|
} | undefined;
|
|
18639
18512
|
assa_abloy_vostio_metadata?: {
|
|
18640
|
-
key_id?: string | undefined;
|
|
18641
18513
|
endpoint_id?: string | undefined;
|
|
18642
18514
|
auto_join?: boolean | undefined;
|
|
18643
18515
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18516
|
+
key_id?: string | undefined;
|
|
18644
18517
|
key_issuing_request_id?: string | undefined;
|
|
18645
18518
|
door_names?: string[] | undefined;
|
|
18646
18519
|
} | undefined;
|
|
@@ -18709,10 +18582,10 @@ declare const batch: z.ZodObject<{
|
|
|
18709
18582
|
credential_id?: string | undefined;
|
|
18710
18583
|
} | undefined;
|
|
18711
18584
|
assa_abloy_vostio_metadata?: {
|
|
18712
|
-
key_id?: string | undefined;
|
|
18713
18585
|
endpoint_id?: string | undefined;
|
|
18714
18586
|
auto_join?: boolean | undefined;
|
|
18715
18587
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18588
|
+
key_id?: string | undefined;
|
|
18716
18589
|
key_issuing_request_id?: string | undefined;
|
|
18717
18590
|
door_names?: string[] | undefined;
|
|
18718
18591
|
} | undefined;
|
|
@@ -18786,10 +18659,10 @@ declare const batch: z.ZodObject<{
|
|
|
18786
18659
|
credential_id?: string | undefined;
|
|
18787
18660
|
} | undefined;
|
|
18788
18661
|
assa_abloy_vostio_metadata?: {
|
|
18789
|
-
key_id?: string | undefined;
|
|
18790
18662
|
endpoint_id?: string | undefined;
|
|
18791
18663
|
auto_join?: boolean | undefined;
|
|
18792
18664
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18665
|
+
key_id?: string | undefined;
|
|
18793
18666
|
key_issuing_request_id?: string | undefined;
|
|
18794
18667
|
door_names?: string[] | undefined;
|
|
18795
18668
|
} | undefined;
|
|
@@ -18858,10 +18731,10 @@ declare const batch: z.ZodObject<{
|
|
|
18858
18731
|
credential_id?: string | undefined;
|
|
18859
18732
|
} | undefined;
|
|
18860
18733
|
assa_abloy_vostio_metadata?: {
|
|
18861
|
-
key_id?: string | undefined;
|
|
18862
18734
|
endpoint_id?: string | undefined;
|
|
18863
18735
|
auto_join?: boolean | undefined;
|
|
18864
18736
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18737
|
+
key_id?: string | undefined;
|
|
18865
18738
|
key_issuing_request_id?: string | undefined;
|
|
18866
18739
|
door_names?: string[] | undefined;
|
|
18867
18740
|
} | undefined;
|
|
@@ -18936,10 +18809,10 @@ declare const batch: z.ZodObject<{
|
|
|
18936
18809
|
credential_id?: string | undefined;
|
|
18937
18810
|
} | undefined;
|
|
18938
18811
|
assa_abloy_vostio_metadata?: {
|
|
18939
|
-
key_id?: string | undefined;
|
|
18940
18812
|
endpoint_id?: string | undefined;
|
|
18941
18813
|
auto_join?: boolean | undefined;
|
|
18942
18814
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18815
|
+
key_id?: string | undefined;
|
|
18943
18816
|
key_issuing_request_id?: string | undefined;
|
|
18944
18817
|
door_names?: string[] | undefined;
|
|
18945
18818
|
} | undefined;
|
|
@@ -19008,10 +18881,10 @@ declare const batch: z.ZodObject<{
|
|
|
19008
18881
|
credential_id?: string | undefined;
|
|
19009
18882
|
} | undefined;
|
|
19010
18883
|
assa_abloy_vostio_metadata?: {
|
|
19011
|
-
key_id?: string | undefined;
|
|
19012
18884
|
endpoint_id?: string | undefined;
|
|
19013
18885
|
auto_join?: boolean | undefined;
|
|
19014
18886
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18887
|
+
key_id?: string | undefined;
|
|
19015
18888
|
key_issuing_request_id?: string | undefined;
|
|
19016
18889
|
door_names?: string[] | undefined;
|
|
19017
18890
|
} | undefined;
|
|
@@ -21904,68 +21777,11 @@ declare const batch: z.ZodObject<{
|
|
|
21904
21777
|
product_type: string;
|
|
21905
21778
|
}>>;
|
|
21906
21779
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
21907
|
-
|
|
21908
|
-
device_name: z.ZodString;
|
|
21909
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
21910
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
21911
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
21912
|
-
subscription_plan: z.ZodString;
|
|
21913
|
-
status_type: z.ZodString;
|
|
21914
|
-
current_or_last_store_id: z.ZodNumber;
|
|
21915
|
-
last_movement: z.ZodString;
|
|
21916
|
-
address: z.ZodNullable<z.ZodString>;
|
|
21917
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
21918
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
21919
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
21920
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
21921
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
21922
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
21923
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
21924
|
-
default_office_id: z.ZodNumber;
|
|
21925
|
-
fob_id: z.ZodNumber;
|
|
21926
|
-
has_photo: z.ZodBoolean;
|
|
21780
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
21927
21781
|
}, "strip", z.ZodTypeAny, {
|
|
21928
|
-
device_name
|
|
21929
|
-
key_id: string;
|
|
21930
|
-
property_id: string | null;
|
|
21931
|
-
property_postcode: string | null;
|
|
21932
|
-
key_notes: string | null;
|
|
21933
|
-
subscription_plan: string;
|
|
21934
|
-
status_type: string;
|
|
21935
|
-
current_or_last_store_id: number;
|
|
21936
|
-
last_movement: string;
|
|
21937
|
-
address: string | null;
|
|
21938
|
-
current_status: string | null;
|
|
21939
|
-
current_user_name: string | null;
|
|
21940
|
-
current_user_email: string | null;
|
|
21941
|
-
current_user_phone_number: string | null;
|
|
21942
|
-
current_user_company: string | null;
|
|
21943
|
-
handover_method: string | null;
|
|
21944
|
-
keynest_app_user: string | null;
|
|
21945
|
-
default_office_id: number;
|
|
21946
|
-
fob_id: number;
|
|
21947
|
-
has_photo: boolean;
|
|
21782
|
+
device_name?: string | undefined;
|
|
21948
21783
|
}, {
|
|
21949
|
-
device_name
|
|
21950
|
-
key_id: string;
|
|
21951
|
-
property_id: string | null;
|
|
21952
|
-
property_postcode: string | null;
|
|
21953
|
-
key_notes: string | null;
|
|
21954
|
-
subscription_plan: string;
|
|
21955
|
-
status_type: string;
|
|
21956
|
-
current_or_last_store_id: number;
|
|
21957
|
-
last_movement: string;
|
|
21958
|
-
address: string | null;
|
|
21959
|
-
current_status: string | null;
|
|
21960
|
-
current_user_name: string | null;
|
|
21961
|
-
current_user_email: string | null;
|
|
21962
|
-
current_user_phone_number: string | null;
|
|
21963
|
-
current_user_company: string | null;
|
|
21964
|
-
handover_method: string | null;
|
|
21965
|
-
keynest_app_user: string | null;
|
|
21966
|
-
default_office_id: number;
|
|
21967
|
-
fob_id: number;
|
|
21968
|
-
has_photo: boolean;
|
|
21784
|
+
device_name?: string | undefined;
|
|
21969
21785
|
}>>;
|
|
21970
21786
|
}, "strip", z.ZodTypeAny, {
|
|
21971
21787
|
ecobee_metadata?: {
|
|
@@ -22201,26 +22017,7 @@ declare const batch: z.ZodObject<{
|
|
|
22201
22017
|
product_type: string;
|
|
22202
22018
|
} | undefined;
|
|
22203
22019
|
keynest_metadata?: {
|
|
22204
|
-
device_name
|
|
22205
|
-
key_id: string;
|
|
22206
|
-
property_id: string | null;
|
|
22207
|
-
property_postcode: string | null;
|
|
22208
|
-
key_notes: string | null;
|
|
22209
|
-
subscription_plan: string;
|
|
22210
|
-
status_type: string;
|
|
22211
|
-
current_or_last_store_id: number;
|
|
22212
|
-
last_movement: string;
|
|
22213
|
-
address: string | null;
|
|
22214
|
-
current_status: string | null;
|
|
22215
|
-
current_user_name: string | null;
|
|
22216
|
-
current_user_email: string | null;
|
|
22217
|
-
current_user_phone_number: string | null;
|
|
22218
|
-
current_user_company: string | null;
|
|
22219
|
-
handover_method: string | null;
|
|
22220
|
-
keynest_app_user: string | null;
|
|
22221
|
-
default_office_id: number;
|
|
22222
|
-
fob_id: number;
|
|
22223
|
-
has_photo: boolean;
|
|
22020
|
+
device_name?: string | undefined;
|
|
22224
22021
|
} | undefined;
|
|
22225
22022
|
}, {
|
|
22226
22023
|
ecobee_metadata?: {
|
|
@@ -22456,26 +22253,7 @@ declare const batch: z.ZodObject<{
|
|
|
22456
22253
|
product_type: string;
|
|
22457
22254
|
} | undefined;
|
|
22458
22255
|
keynest_metadata?: {
|
|
22459
|
-
device_name
|
|
22460
|
-
key_id: string;
|
|
22461
|
-
property_id: string | null;
|
|
22462
|
-
property_postcode: string | null;
|
|
22463
|
-
key_notes: string | null;
|
|
22464
|
-
subscription_plan: string;
|
|
22465
|
-
status_type: string;
|
|
22466
|
-
current_or_last_store_id: number;
|
|
22467
|
-
last_movement: string;
|
|
22468
|
-
address: string | null;
|
|
22469
|
-
current_status: string | null;
|
|
22470
|
-
current_user_name: string | null;
|
|
22471
|
-
current_user_email: string | null;
|
|
22472
|
-
current_user_phone_number: string | null;
|
|
22473
|
-
current_user_company: string | null;
|
|
22474
|
-
handover_method: string | null;
|
|
22475
|
-
keynest_app_user: string | null;
|
|
22476
|
-
default_office_id: number;
|
|
22477
|
-
fob_id: number;
|
|
22478
|
-
has_photo: boolean;
|
|
22256
|
+
device_name?: string | undefined;
|
|
22479
22257
|
} | undefined;
|
|
22480
22258
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
22481
22259
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -27532,6 +27310,7 @@ declare const batch: z.ZodObject<{
|
|
|
27532
27310
|
} | undefined;
|
|
27533
27311
|
}>, "many">>;
|
|
27534
27312
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
27313
|
+
workspace_id: z.ZodString;
|
|
27535
27314
|
common_code_key: z.ZodNullable<z.ZodString>;
|
|
27536
27315
|
is_scheduled_on_device: z.ZodOptional<z.ZodBoolean>;
|
|
27537
27316
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
@@ -28469,6 +28248,7 @@ declare const batch: z.ZodObject<{
|
|
|
28469
28248
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
28470
28249
|
name: string | null;
|
|
28471
28250
|
device_id: string;
|
|
28251
|
+
workspace_id: string;
|
|
28472
28252
|
created_at: string;
|
|
28473
28253
|
errors: ({
|
|
28474
28254
|
message: string;
|
|
@@ -28768,6 +28548,7 @@ declare const batch: z.ZodObject<{
|
|
|
28768
28548
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
28769
28549
|
name: string | null;
|
|
28770
28550
|
device_id: string;
|
|
28551
|
+
workspace_id: string;
|
|
28771
28552
|
created_at: string;
|
|
28772
28553
|
errors: ({
|
|
28773
28554
|
message: string;
|
|
@@ -29067,6 +28848,7 @@ declare const batch: z.ZodObject<{
|
|
|
29067
28848
|
type: z.ZodEnum<["time_bound", "ongoing"]>;
|
|
29068
28849
|
name: z.ZodNullable<z.ZodString>;
|
|
29069
28850
|
device_id: z.ZodString;
|
|
28851
|
+
workspace_id: z.ZodString;
|
|
29070
28852
|
created_at: z.ZodString;
|
|
29071
28853
|
starts_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29072
28854
|
ends_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -29992,6 +29774,7 @@ declare const batch: z.ZodObject<{
|
|
|
29992
29774
|
status: "set";
|
|
29993
29775
|
name: string | null;
|
|
29994
29776
|
device_id: string;
|
|
29777
|
+
workspace_id: string;
|
|
29995
29778
|
created_at: string;
|
|
29996
29779
|
errors: ({
|
|
29997
29780
|
message: string;
|
|
@@ -30282,6 +30065,7 @@ declare const batch: z.ZodObject<{
|
|
|
30282
30065
|
status: "set";
|
|
30283
30066
|
name: string | null;
|
|
30284
30067
|
device_id: string;
|
|
30068
|
+
workspace_id: string;
|
|
30285
30069
|
created_at: string;
|
|
30286
30070
|
errors: ({
|
|
30287
30071
|
message: string;
|
|
@@ -31194,26 +30978,7 @@ declare const batch: z.ZodObject<{
|
|
|
31194
30978
|
product_type: string;
|
|
31195
30979
|
} | undefined;
|
|
31196
30980
|
keynest_metadata?: {
|
|
31197
|
-
device_name
|
|
31198
|
-
key_id: string;
|
|
31199
|
-
property_id: string | null;
|
|
31200
|
-
property_postcode: string | null;
|
|
31201
|
-
key_notes: string | null;
|
|
31202
|
-
subscription_plan: string;
|
|
31203
|
-
status_type: string;
|
|
31204
|
-
current_or_last_store_id: number;
|
|
31205
|
-
last_movement: string;
|
|
31206
|
-
address: string | null;
|
|
31207
|
-
current_status: string | null;
|
|
31208
|
-
current_user_name: string | null;
|
|
31209
|
-
current_user_email: string | null;
|
|
31210
|
-
current_user_phone_number: string | null;
|
|
31211
|
-
current_user_company: string | null;
|
|
31212
|
-
handover_method: string | null;
|
|
31213
|
-
keynest_app_user: string | null;
|
|
31214
|
-
default_office_id: number;
|
|
31215
|
-
fob_id: number;
|
|
31216
|
-
has_photo: boolean;
|
|
30981
|
+
device_name?: string | undefined;
|
|
31217
30982
|
} | undefined;
|
|
31218
30983
|
} & {
|
|
31219
30984
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -31797,10 +31562,10 @@ declare const batch: z.ZodObject<{
|
|
|
31797
31562
|
credential_id?: string | undefined;
|
|
31798
31563
|
} | undefined;
|
|
31799
31564
|
assa_abloy_vostio_metadata?: {
|
|
31800
|
-
key_id?: string | undefined;
|
|
31801
31565
|
endpoint_id?: string | undefined;
|
|
31802
31566
|
auto_join?: boolean | undefined;
|
|
31803
31567
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31568
|
+
key_id?: string | undefined;
|
|
31804
31569
|
key_issuing_request_id?: string | undefined;
|
|
31805
31570
|
door_names?: string[] | undefined;
|
|
31806
31571
|
} | undefined;
|
|
@@ -31870,10 +31635,10 @@ declare const batch: z.ZodObject<{
|
|
|
31870
31635
|
credential_id?: string | undefined;
|
|
31871
31636
|
} | undefined;
|
|
31872
31637
|
assa_abloy_vostio_metadata?: {
|
|
31873
|
-
key_id?: string | undefined;
|
|
31874
31638
|
endpoint_id?: string | undefined;
|
|
31875
31639
|
auto_join?: boolean | undefined;
|
|
31876
31640
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31641
|
+
key_id?: string | undefined;
|
|
31877
31642
|
key_issuing_request_id?: string | undefined;
|
|
31878
31643
|
door_names?: string[] | undefined;
|
|
31879
31644
|
} | undefined;
|
|
@@ -32129,10 +31894,10 @@ declare const batch: z.ZodObject<{
|
|
|
32129
31894
|
credential_id?: string | undefined;
|
|
32130
31895
|
} | undefined;
|
|
32131
31896
|
assa_abloy_vostio_metadata?: {
|
|
32132
|
-
key_id?: string | undefined;
|
|
32133
31897
|
endpoint_id?: string | undefined;
|
|
32134
31898
|
auto_join?: boolean | undefined;
|
|
32135
31899
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31900
|
+
key_id?: string | undefined;
|
|
32136
31901
|
key_issuing_request_id?: string | undefined;
|
|
32137
31902
|
door_names?: string[] | undefined;
|
|
32138
31903
|
} | undefined;
|
|
@@ -32201,10 +31966,10 @@ declare const batch: z.ZodObject<{
|
|
|
32201
31966
|
credential_id?: string | undefined;
|
|
32202
31967
|
} | undefined;
|
|
32203
31968
|
assa_abloy_vostio_metadata?: {
|
|
32204
|
-
key_id?: string | undefined;
|
|
32205
31969
|
endpoint_id?: string | undefined;
|
|
32206
31970
|
auto_join?: boolean | undefined;
|
|
32207
31971
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31972
|
+
key_id?: string | undefined;
|
|
32208
31973
|
key_issuing_request_id?: string | undefined;
|
|
32209
31974
|
door_names?: string[] | undefined;
|
|
32210
31975
|
} | undefined;
|
|
@@ -32395,10 +32160,10 @@ declare const batch: z.ZodObject<{
|
|
|
32395
32160
|
credential_id?: string | undefined;
|
|
32396
32161
|
} | undefined;
|
|
32397
32162
|
assa_abloy_vostio_metadata?: {
|
|
32398
|
-
key_id?: string | undefined;
|
|
32399
32163
|
endpoint_id?: string | undefined;
|
|
32400
32164
|
auto_join?: boolean | undefined;
|
|
32401
32165
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32166
|
+
key_id?: string | undefined;
|
|
32402
32167
|
key_issuing_request_id?: string | undefined;
|
|
32403
32168
|
door_names?: string[] | undefined;
|
|
32404
32169
|
} | undefined;
|
|
@@ -32467,10 +32232,10 @@ declare const batch: z.ZodObject<{
|
|
|
32467
32232
|
credential_id?: string | undefined;
|
|
32468
32233
|
} | undefined;
|
|
32469
32234
|
assa_abloy_vostio_metadata?: {
|
|
32470
|
-
key_id?: string | undefined;
|
|
32471
32235
|
endpoint_id?: string | undefined;
|
|
32472
32236
|
auto_join?: boolean | undefined;
|
|
32473
32237
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32238
|
+
key_id?: string | undefined;
|
|
32474
32239
|
key_issuing_request_id?: string | undefined;
|
|
32475
32240
|
door_names?: string[] | undefined;
|
|
32476
32241
|
} | undefined;
|
|
@@ -33939,6 +33704,7 @@ declare const batch: z.ZodObject<{
|
|
|
33939
33704
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
33940
33705
|
name: string | null;
|
|
33941
33706
|
device_id: string;
|
|
33707
|
+
workspace_id: string;
|
|
33942
33708
|
created_at: string;
|
|
33943
33709
|
errors: ({
|
|
33944
33710
|
message: string;
|
|
@@ -34239,6 +34005,7 @@ declare const batch: z.ZodObject<{
|
|
|
34239
34005
|
status: "set";
|
|
34240
34006
|
name: string | null;
|
|
34241
34007
|
device_id: string;
|
|
34008
|
+
workspace_id: string;
|
|
34242
34009
|
created_at: string;
|
|
34243
34010
|
errors: ({
|
|
34244
34011
|
message: string;
|
|
@@ -35046,26 +34813,7 @@ declare const batch: z.ZodObject<{
|
|
|
35046
34813
|
product_type: string;
|
|
35047
34814
|
} | undefined;
|
|
35048
34815
|
keynest_metadata?: {
|
|
35049
|
-
device_name
|
|
35050
|
-
key_id: string;
|
|
35051
|
-
property_id: string | null;
|
|
35052
|
-
property_postcode: string | null;
|
|
35053
|
-
key_notes: string | null;
|
|
35054
|
-
subscription_plan: string;
|
|
35055
|
-
status_type: string;
|
|
35056
|
-
current_or_last_store_id: number;
|
|
35057
|
-
last_movement: string;
|
|
35058
|
-
address: string | null;
|
|
35059
|
-
current_status: string | null;
|
|
35060
|
-
current_user_name: string | null;
|
|
35061
|
-
current_user_email: string | null;
|
|
35062
|
-
current_user_phone_number: string | null;
|
|
35063
|
-
current_user_company: string | null;
|
|
35064
|
-
handover_method: string | null;
|
|
35065
|
-
keynest_app_user: string | null;
|
|
35066
|
-
default_office_id: number;
|
|
35067
|
-
fob_id: number;
|
|
35068
|
-
has_photo: boolean;
|
|
34816
|
+
device_name?: string | undefined;
|
|
35069
34817
|
} | undefined;
|
|
35070
34818
|
} & {
|
|
35071
34819
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -35649,10 +35397,10 @@ declare const batch: z.ZodObject<{
|
|
|
35649
35397
|
credential_id?: string | undefined;
|
|
35650
35398
|
} | undefined;
|
|
35651
35399
|
assa_abloy_vostio_metadata?: {
|
|
35652
|
-
key_id?: string | undefined;
|
|
35653
35400
|
endpoint_id?: string | undefined;
|
|
35654
35401
|
auto_join?: boolean | undefined;
|
|
35655
35402
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35403
|
+
key_id?: string | undefined;
|
|
35656
35404
|
key_issuing_request_id?: string | undefined;
|
|
35657
35405
|
door_names?: string[] | undefined;
|
|
35658
35406
|
} | undefined;
|
|
@@ -35722,10 +35470,10 @@ declare const batch: z.ZodObject<{
|
|
|
35722
35470
|
credential_id?: string | undefined;
|
|
35723
35471
|
} | undefined;
|
|
35724
35472
|
assa_abloy_vostio_metadata?: {
|
|
35725
|
-
key_id?: string | undefined;
|
|
35726
35473
|
endpoint_id?: string | undefined;
|
|
35727
35474
|
auto_join?: boolean | undefined;
|
|
35728
35475
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35476
|
+
key_id?: string | undefined;
|
|
35729
35477
|
key_issuing_request_id?: string | undefined;
|
|
35730
35478
|
door_names?: string[] | undefined;
|
|
35731
35479
|
} | undefined;
|
|
@@ -35981,10 +35729,10 @@ declare const batch: z.ZodObject<{
|
|
|
35981
35729
|
credential_id?: string | undefined;
|
|
35982
35730
|
} | undefined;
|
|
35983
35731
|
assa_abloy_vostio_metadata?: {
|
|
35984
|
-
key_id?: string | undefined;
|
|
35985
35732
|
endpoint_id?: string | undefined;
|
|
35986
35733
|
auto_join?: boolean | undefined;
|
|
35987
35734
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35735
|
+
key_id?: string | undefined;
|
|
35988
35736
|
key_issuing_request_id?: string | undefined;
|
|
35989
35737
|
door_names?: string[] | undefined;
|
|
35990
35738
|
} | undefined;
|
|
@@ -36053,10 +35801,10 @@ declare const batch: z.ZodObject<{
|
|
|
36053
35801
|
credential_id?: string | undefined;
|
|
36054
35802
|
} | undefined;
|
|
36055
35803
|
assa_abloy_vostio_metadata?: {
|
|
36056
|
-
key_id?: string | undefined;
|
|
36057
35804
|
endpoint_id?: string | undefined;
|
|
36058
35805
|
auto_join?: boolean | undefined;
|
|
36059
35806
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35807
|
+
key_id?: string | undefined;
|
|
36060
35808
|
key_issuing_request_id?: string | undefined;
|
|
36061
35809
|
door_names?: string[] | undefined;
|
|
36062
35810
|
} | undefined;
|
|
@@ -36247,10 +35995,10 @@ declare const batch: z.ZodObject<{
|
|
|
36247
35995
|
credential_id?: string | undefined;
|
|
36248
35996
|
} | undefined;
|
|
36249
35997
|
assa_abloy_vostio_metadata?: {
|
|
36250
|
-
key_id?: string | undefined;
|
|
36251
35998
|
endpoint_id?: string | undefined;
|
|
36252
35999
|
auto_join?: boolean | undefined;
|
|
36253
36000
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36001
|
+
key_id?: string | undefined;
|
|
36254
36002
|
key_issuing_request_id?: string | undefined;
|
|
36255
36003
|
door_names?: string[] | undefined;
|
|
36256
36004
|
} | undefined;
|
|
@@ -36319,10 +36067,10 @@ declare const batch: z.ZodObject<{
|
|
|
36319
36067
|
credential_id?: string | undefined;
|
|
36320
36068
|
} | undefined;
|
|
36321
36069
|
assa_abloy_vostio_metadata?: {
|
|
36322
|
-
key_id?: string | undefined;
|
|
36323
36070
|
endpoint_id?: string | undefined;
|
|
36324
36071
|
auto_join?: boolean | undefined;
|
|
36325
36072
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36073
|
+
key_id?: string | undefined;
|
|
36326
36074
|
key_issuing_request_id?: string | undefined;
|
|
36327
36075
|
door_names?: string[] | undefined;
|
|
36328
36076
|
} | undefined;
|
|
@@ -37791,6 +37539,7 @@ declare const batch: z.ZodObject<{
|
|
|
37791
37539
|
status: "unknown" | "set" | "setting" | "unset" | "removing";
|
|
37792
37540
|
name: string | null;
|
|
37793
37541
|
device_id: string;
|
|
37542
|
+
workspace_id: string;
|
|
37794
37543
|
created_at: string;
|
|
37795
37544
|
errors: ({
|
|
37796
37545
|
message: string;
|
|
@@ -38091,6 +37840,7 @@ declare const batch: z.ZodObject<{
|
|
|
38091
37840
|
status: "set";
|
|
38092
37841
|
name: string | null;
|
|
38093
37842
|
device_id: string;
|
|
37843
|
+
workspace_id: string;
|
|
38094
37844
|
created_at: string;
|
|
38095
37845
|
errors: ({
|
|
38096
37846
|
message: string;
|
|
@@ -40697,68 +40447,11 @@ declare const device: z.ZodObject<{
|
|
|
40697
40447
|
product_type: string;
|
|
40698
40448
|
}>>;
|
|
40699
40449
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
40700
|
-
|
|
40701
|
-
device_name: z.ZodString;
|
|
40702
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
40703
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
40704
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
40705
|
-
subscription_plan: z.ZodString;
|
|
40706
|
-
status_type: z.ZodString;
|
|
40707
|
-
current_or_last_store_id: z.ZodNumber;
|
|
40708
|
-
last_movement: z.ZodString;
|
|
40709
|
-
address: z.ZodNullable<z.ZodString>;
|
|
40710
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
40711
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
40712
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
40713
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
40714
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
40715
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
40716
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
40717
|
-
default_office_id: z.ZodNumber;
|
|
40718
|
-
fob_id: z.ZodNumber;
|
|
40719
|
-
has_photo: z.ZodBoolean;
|
|
40450
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
40720
40451
|
}, "strip", z.ZodTypeAny, {
|
|
40721
|
-
device_name
|
|
40722
|
-
key_id: string;
|
|
40723
|
-
property_id: string | null;
|
|
40724
|
-
property_postcode: string | null;
|
|
40725
|
-
key_notes: string | null;
|
|
40726
|
-
subscription_plan: string;
|
|
40727
|
-
status_type: string;
|
|
40728
|
-
current_or_last_store_id: number;
|
|
40729
|
-
last_movement: string;
|
|
40730
|
-
address: string | null;
|
|
40731
|
-
current_status: string | null;
|
|
40732
|
-
current_user_name: string | null;
|
|
40733
|
-
current_user_email: string | null;
|
|
40734
|
-
current_user_phone_number: string | null;
|
|
40735
|
-
current_user_company: string | null;
|
|
40736
|
-
handover_method: string | null;
|
|
40737
|
-
keynest_app_user: string | null;
|
|
40738
|
-
default_office_id: number;
|
|
40739
|
-
fob_id: number;
|
|
40740
|
-
has_photo: boolean;
|
|
40452
|
+
device_name?: string | undefined;
|
|
40741
40453
|
}, {
|
|
40742
|
-
device_name
|
|
40743
|
-
key_id: string;
|
|
40744
|
-
property_id: string | null;
|
|
40745
|
-
property_postcode: string | null;
|
|
40746
|
-
key_notes: string | null;
|
|
40747
|
-
subscription_plan: string;
|
|
40748
|
-
status_type: string;
|
|
40749
|
-
current_or_last_store_id: number;
|
|
40750
|
-
last_movement: string;
|
|
40751
|
-
address: string | null;
|
|
40752
|
-
current_status: string | null;
|
|
40753
|
-
current_user_name: string | null;
|
|
40754
|
-
current_user_email: string | null;
|
|
40755
|
-
current_user_phone_number: string | null;
|
|
40756
|
-
current_user_company: string | null;
|
|
40757
|
-
handover_method: string | null;
|
|
40758
|
-
keynest_app_user: string | null;
|
|
40759
|
-
default_office_id: number;
|
|
40760
|
-
fob_id: number;
|
|
40761
|
-
has_photo: boolean;
|
|
40454
|
+
device_name?: string | undefined;
|
|
40762
40455
|
}>>;
|
|
40763
40456
|
}, "strip", z.ZodTypeAny, {
|
|
40764
40457
|
ecobee_metadata?: {
|
|
@@ -40994,26 +40687,7 @@ declare const device: z.ZodObject<{
|
|
|
40994
40687
|
product_type: string;
|
|
40995
40688
|
} | undefined;
|
|
40996
40689
|
keynest_metadata?: {
|
|
40997
|
-
device_name
|
|
40998
|
-
key_id: string;
|
|
40999
|
-
property_id: string | null;
|
|
41000
|
-
property_postcode: string | null;
|
|
41001
|
-
key_notes: string | null;
|
|
41002
|
-
subscription_plan: string;
|
|
41003
|
-
status_type: string;
|
|
41004
|
-
current_or_last_store_id: number;
|
|
41005
|
-
last_movement: string;
|
|
41006
|
-
address: string | null;
|
|
41007
|
-
current_status: string | null;
|
|
41008
|
-
current_user_name: string | null;
|
|
41009
|
-
current_user_email: string | null;
|
|
41010
|
-
current_user_phone_number: string | null;
|
|
41011
|
-
current_user_company: string | null;
|
|
41012
|
-
handover_method: string | null;
|
|
41013
|
-
keynest_app_user: string | null;
|
|
41014
|
-
default_office_id: number;
|
|
41015
|
-
fob_id: number;
|
|
41016
|
-
has_photo: boolean;
|
|
40690
|
+
device_name?: string | undefined;
|
|
41017
40691
|
} | undefined;
|
|
41018
40692
|
}, {
|
|
41019
40693
|
ecobee_metadata?: {
|
|
@@ -41249,26 +40923,7 @@ declare const device: z.ZodObject<{
|
|
|
41249
40923
|
product_type: string;
|
|
41250
40924
|
} | undefined;
|
|
41251
40925
|
keynest_metadata?: {
|
|
41252
|
-
device_name
|
|
41253
|
-
key_id: string;
|
|
41254
|
-
property_id: string | null;
|
|
41255
|
-
property_postcode: string | null;
|
|
41256
|
-
key_notes: string | null;
|
|
41257
|
-
subscription_plan: string;
|
|
41258
|
-
status_type: string;
|
|
41259
|
-
current_or_last_store_id: number;
|
|
41260
|
-
last_movement: string;
|
|
41261
|
-
address: string | null;
|
|
41262
|
-
current_status: string | null;
|
|
41263
|
-
current_user_name: string | null;
|
|
41264
|
-
current_user_email: string | null;
|
|
41265
|
-
current_user_phone_number: string | null;
|
|
41266
|
-
current_user_company: string | null;
|
|
41267
|
-
handover_method: string | null;
|
|
41268
|
-
keynest_app_user: string | null;
|
|
41269
|
-
default_office_id: number;
|
|
41270
|
-
fob_id: number;
|
|
41271
|
-
has_photo: boolean;
|
|
40926
|
+
device_name?: string | undefined;
|
|
41272
40927
|
} | undefined;
|
|
41273
40928
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
41274
40929
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -43045,26 +42700,7 @@ declare const device: z.ZodObject<{
|
|
|
43045
42700
|
product_type: string;
|
|
43046
42701
|
} | undefined;
|
|
43047
42702
|
keynest_metadata?: {
|
|
43048
|
-
device_name
|
|
43049
|
-
key_id: string;
|
|
43050
|
-
property_id: string | null;
|
|
43051
|
-
property_postcode: string | null;
|
|
43052
|
-
key_notes: string | null;
|
|
43053
|
-
subscription_plan: string;
|
|
43054
|
-
status_type: string;
|
|
43055
|
-
current_or_last_store_id: number;
|
|
43056
|
-
last_movement: string;
|
|
43057
|
-
address: string | null;
|
|
43058
|
-
current_status: string | null;
|
|
43059
|
-
current_user_name: string | null;
|
|
43060
|
-
current_user_email: string | null;
|
|
43061
|
-
current_user_phone_number: string | null;
|
|
43062
|
-
current_user_company: string | null;
|
|
43063
|
-
handover_method: string | null;
|
|
43064
|
-
keynest_app_user: string | null;
|
|
43065
|
-
default_office_id: number;
|
|
43066
|
-
fob_id: number;
|
|
43067
|
-
has_photo: boolean;
|
|
42703
|
+
device_name?: string | undefined;
|
|
43068
42704
|
} | undefined;
|
|
43069
42705
|
} & {
|
|
43070
42706
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -43703,26 +43339,7 @@ declare const device: z.ZodObject<{
|
|
|
43703
43339
|
product_type: string;
|
|
43704
43340
|
} | undefined;
|
|
43705
43341
|
keynest_metadata?: {
|
|
43706
|
-
device_name
|
|
43707
|
-
key_id: string;
|
|
43708
|
-
property_id: string | null;
|
|
43709
|
-
property_postcode: string | null;
|
|
43710
|
-
key_notes: string | null;
|
|
43711
|
-
subscription_plan: string;
|
|
43712
|
-
status_type: string;
|
|
43713
|
-
current_or_last_store_id: number;
|
|
43714
|
-
last_movement: string;
|
|
43715
|
-
address: string | null;
|
|
43716
|
-
current_status: string | null;
|
|
43717
|
-
current_user_name: string | null;
|
|
43718
|
-
current_user_email: string | null;
|
|
43719
|
-
current_user_phone_number: string | null;
|
|
43720
|
-
current_user_company: string | null;
|
|
43721
|
-
handover_method: string | null;
|
|
43722
|
-
keynest_app_user: string | null;
|
|
43723
|
-
default_office_id: number;
|
|
43724
|
-
fob_id: number;
|
|
43725
|
-
has_photo: boolean;
|
|
43342
|
+
device_name?: string | undefined;
|
|
43726
43343
|
} | undefined;
|
|
43727
43344
|
} & {
|
|
43728
43345
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -44974,68 +44591,11 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
44974
44591
|
product_type: string;
|
|
44975
44592
|
}>>;
|
|
44976
44593
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
44977
|
-
|
|
44978
|
-
device_name: z.ZodString;
|
|
44979
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
44980
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
44981
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
44982
|
-
subscription_plan: z.ZodString;
|
|
44983
|
-
status_type: z.ZodString;
|
|
44984
|
-
current_or_last_store_id: z.ZodNumber;
|
|
44985
|
-
last_movement: z.ZodString;
|
|
44986
|
-
address: z.ZodNullable<z.ZodString>;
|
|
44987
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
44988
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
44989
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
44990
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
44991
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
44992
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
44993
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
44994
|
-
default_office_id: z.ZodNumber;
|
|
44995
|
-
fob_id: z.ZodNumber;
|
|
44996
|
-
has_photo: z.ZodBoolean;
|
|
44594
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
44997
44595
|
}, "strip", z.ZodTypeAny, {
|
|
44998
|
-
device_name
|
|
44999
|
-
key_id: string;
|
|
45000
|
-
property_id: string | null;
|
|
45001
|
-
property_postcode: string | null;
|
|
45002
|
-
key_notes: string | null;
|
|
45003
|
-
subscription_plan: string;
|
|
45004
|
-
status_type: string;
|
|
45005
|
-
current_or_last_store_id: number;
|
|
45006
|
-
last_movement: string;
|
|
45007
|
-
address: string | null;
|
|
45008
|
-
current_status: string | null;
|
|
45009
|
-
current_user_name: string | null;
|
|
45010
|
-
current_user_email: string | null;
|
|
45011
|
-
current_user_phone_number: string | null;
|
|
45012
|
-
current_user_company: string | null;
|
|
45013
|
-
handover_method: string | null;
|
|
45014
|
-
keynest_app_user: string | null;
|
|
45015
|
-
default_office_id: number;
|
|
45016
|
-
fob_id: number;
|
|
45017
|
-
has_photo: boolean;
|
|
44596
|
+
device_name?: string | undefined;
|
|
45018
44597
|
}, {
|
|
45019
|
-
device_name
|
|
45020
|
-
key_id: string;
|
|
45021
|
-
property_id: string | null;
|
|
45022
|
-
property_postcode: string | null;
|
|
45023
|
-
key_notes: string | null;
|
|
45024
|
-
subscription_plan: string;
|
|
45025
|
-
status_type: string;
|
|
45026
|
-
current_or_last_store_id: number;
|
|
45027
|
-
last_movement: string;
|
|
45028
|
-
address: string | null;
|
|
45029
|
-
current_status: string | null;
|
|
45030
|
-
current_user_name: string | null;
|
|
45031
|
-
current_user_email: string | null;
|
|
45032
|
-
current_user_phone_number: string | null;
|
|
45033
|
-
current_user_company: string | null;
|
|
45034
|
-
handover_method: string | null;
|
|
45035
|
-
keynest_app_user: string | null;
|
|
45036
|
-
default_office_id: number;
|
|
45037
|
-
fob_id: number;
|
|
45038
|
-
has_photo: boolean;
|
|
44598
|
+
device_name?: string | undefined;
|
|
45039
44599
|
}>>;
|
|
45040
44600
|
}, "strip", z.ZodTypeAny, {
|
|
45041
44601
|
ecobee_metadata?: {
|
|
@@ -45271,26 +44831,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45271
44831
|
product_type: string;
|
|
45272
44832
|
} | undefined;
|
|
45273
44833
|
keynest_metadata?: {
|
|
45274
|
-
device_name
|
|
45275
|
-
key_id: string;
|
|
45276
|
-
property_id: string | null;
|
|
45277
|
-
property_postcode: string | null;
|
|
45278
|
-
key_notes: string | null;
|
|
45279
|
-
subscription_plan: string;
|
|
45280
|
-
status_type: string;
|
|
45281
|
-
current_or_last_store_id: number;
|
|
45282
|
-
last_movement: string;
|
|
45283
|
-
address: string | null;
|
|
45284
|
-
current_status: string | null;
|
|
45285
|
-
current_user_name: string | null;
|
|
45286
|
-
current_user_email: string | null;
|
|
45287
|
-
current_user_phone_number: string | null;
|
|
45288
|
-
current_user_company: string | null;
|
|
45289
|
-
handover_method: string | null;
|
|
45290
|
-
keynest_app_user: string | null;
|
|
45291
|
-
default_office_id: number;
|
|
45292
|
-
fob_id: number;
|
|
45293
|
-
has_photo: boolean;
|
|
44834
|
+
device_name?: string | undefined;
|
|
45294
44835
|
} | undefined;
|
|
45295
44836
|
}, {
|
|
45296
44837
|
ecobee_metadata?: {
|
|
@@ -45526,26 +45067,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45526
45067
|
product_type: string;
|
|
45527
45068
|
} | undefined;
|
|
45528
45069
|
keynest_metadata?: {
|
|
45529
|
-
device_name
|
|
45530
|
-
key_id: string;
|
|
45531
|
-
property_id: string | null;
|
|
45532
|
-
property_postcode: string | null;
|
|
45533
|
-
key_notes: string | null;
|
|
45534
|
-
subscription_plan: string;
|
|
45535
|
-
status_type: string;
|
|
45536
|
-
current_or_last_store_id: number;
|
|
45537
|
-
last_movement: string;
|
|
45538
|
-
address: string | null;
|
|
45539
|
-
current_status: string | null;
|
|
45540
|
-
current_user_name: string | null;
|
|
45541
|
-
current_user_email: string | null;
|
|
45542
|
-
current_user_phone_number: string | null;
|
|
45543
|
-
current_user_company: string | null;
|
|
45544
|
-
handover_method: string | null;
|
|
45545
|
-
keynest_app_user: string | null;
|
|
45546
|
-
default_office_id: number;
|
|
45547
|
-
fob_id: number;
|
|
45548
|
-
has_photo: boolean;
|
|
45070
|
+
device_name?: string | undefined;
|
|
45549
45071
|
} | undefined;
|
|
45550
45072
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
45551
45073
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -51319,6 +50841,11 @@ declare const _default: {
|
|
|
51319
50841
|
};
|
|
51320
50842
|
};
|
|
51321
50843
|
};
|
|
50844
|
+
workspace_id: {
|
|
50845
|
+
description: string;
|
|
50846
|
+
format: string;
|
|
50847
|
+
type: string;
|
|
50848
|
+
};
|
|
51322
50849
|
};
|
|
51323
50850
|
required: string[];
|
|
51324
50851
|
type: string;
|
|
@@ -56181,102 +55708,11 @@ declare const _default: {
|
|
|
56181
55708
|
keynest_metadata: {
|
|
56182
55709
|
description: string;
|
|
56183
55710
|
properties: {
|
|
56184
|
-
address: {
|
|
56185
|
-
description: string;
|
|
56186
|
-
nullable: boolean;
|
|
56187
|
-
type: string;
|
|
56188
|
-
};
|
|
56189
|
-
current_or_last_store_id: {
|
|
56190
|
-
description: string;
|
|
56191
|
-
format: string;
|
|
56192
|
-
type: string;
|
|
56193
|
-
};
|
|
56194
|
-
current_status: {
|
|
56195
|
-
description: string;
|
|
56196
|
-
nullable: boolean;
|
|
56197
|
-
type: string;
|
|
56198
|
-
};
|
|
56199
|
-
current_user_company: {
|
|
56200
|
-
description: string;
|
|
56201
|
-
nullable: boolean;
|
|
56202
|
-
type: string;
|
|
56203
|
-
};
|
|
56204
|
-
current_user_email: {
|
|
56205
|
-
description: string;
|
|
56206
|
-
nullable: boolean;
|
|
56207
|
-
type: string;
|
|
56208
|
-
};
|
|
56209
|
-
current_user_name: {
|
|
56210
|
-
description: string;
|
|
56211
|
-
nullable: boolean;
|
|
56212
|
-
type: string;
|
|
56213
|
-
};
|
|
56214
|
-
current_user_phone_number: {
|
|
56215
|
-
description: string;
|
|
56216
|
-
nullable: boolean;
|
|
56217
|
-
type: string;
|
|
56218
|
-
};
|
|
56219
|
-
default_office_id: {
|
|
56220
|
-
description: string;
|
|
56221
|
-
format: string;
|
|
56222
|
-
type: string;
|
|
56223
|
-
};
|
|
56224
55711
|
device_name: {
|
|
56225
55712
|
description: string;
|
|
56226
55713
|
type: string;
|
|
56227
55714
|
};
|
|
56228
|
-
fob_id: {
|
|
56229
|
-
description: string;
|
|
56230
|
-
format: string;
|
|
56231
|
-
type: string;
|
|
56232
|
-
};
|
|
56233
|
-
handover_method: {
|
|
56234
|
-
description: string;
|
|
56235
|
-
nullable: boolean;
|
|
56236
|
-
type: string;
|
|
56237
|
-
};
|
|
56238
|
-
has_photo: {
|
|
56239
|
-
description: string;
|
|
56240
|
-
type: string;
|
|
56241
|
-
};
|
|
56242
|
-
key_id: {
|
|
56243
|
-
description: string;
|
|
56244
|
-
type: string;
|
|
56245
|
-
};
|
|
56246
|
-
key_notes: {
|
|
56247
|
-
description: string;
|
|
56248
|
-
nullable: boolean;
|
|
56249
|
-
type: string;
|
|
56250
|
-
};
|
|
56251
|
-
keynest_app_user: {
|
|
56252
|
-
description: string;
|
|
56253
|
-
nullable: boolean;
|
|
56254
|
-
type: string;
|
|
56255
|
-
};
|
|
56256
|
-
last_movement: {
|
|
56257
|
-
description: string;
|
|
56258
|
-
type: string;
|
|
56259
|
-
};
|
|
56260
|
-
property_id: {
|
|
56261
|
-
description: string;
|
|
56262
|
-
nullable: boolean;
|
|
56263
|
-
type: string;
|
|
56264
|
-
};
|
|
56265
|
-
property_postcode: {
|
|
56266
|
-
description: string;
|
|
56267
|
-
nullable: boolean;
|
|
56268
|
-
type: string;
|
|
56269
|
-
};
|
|
56270
|
-
status_type: {
|
|
56271
|
-
description: string;
|
|
56272
|
-
type: string;
|
|
56273
|
-
};
|
|
56274
|
-
subscription_plan: {
|
|
56275
|
-
description: string;
|
|
56276
|
-
type: string;
|
|
56277
|
-
};
|
|
56278
55715
|
};
|
|
56279
|
-
required: string[];
|
|
56280
55716
|
type: string;
|
|
56281
55717
|
};
|
|
56282
55718
|
kwikset_metadata: {
|
|
@@ -62842,6 +62278,11 @@ declare const _default: {
|
|
|
62842
62278
|
};
|
|
62843
62279
|
};
|
|
62844
62280
|
};
|
|
62281
|
+
workspace_id: {
|
|
62282
|
+
description: string;
|
|
62283
|
+
format: string;
|
|
62284
|
+
type: string;
|
|
62285
|
+
};
|
|
62845
62286
|
};
|
|
62846
62287
|
required: string[];
|
|
62847
62288
|
type: string;
|
|
@@ -101897,6 +101338,8 @@ type Routes = {
|
|
|
101897
101338
|
|
|
101898
101339
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
101899
101340
|
access_code: {
|
|
101341
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
101342
|
+
workspace_id: string;
|
|
101900
101343
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
101901
101344
|
common_code_key: string | null;
|
|
101902
101345
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -102451,6 +101894,8 @@ type Routes = {
|
|
|
102451
101894
|
formData: {};
|
|
102452
101895
|
jsonResponse: {
|
|
102453
101896
|
access_codes: {
|
|
101897
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
101898
|
+
workspace_id: string;
|
|
102454
101899
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
102455
101900
|
common_code_key: string | null;
|
|
102456
101901
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -104259,6 +103704,8 @@ type Routes = {
|
|
|
104259
103704
|
|
|
104260
103705
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
104261
103706
|
access_code: {
|
|
103707
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
103708
|
+
workspace_id: string;
|
|
104262
103709
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
104263
103710
|
common_code_key: string | null;
|
|
104264
103711
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -104786,6 +104233,8 @@ type Routes = {
|
|
|
104786
104233
|
formData: {};
|
|
104787
104234
|
jsonResponse: {
|
|
104788
104235
|
access_codes: {
|
|
104236
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
104237
|
+
workspace_id: string;
|
|
104789
104238
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
104790
104239
|
common_code_key: string | null;
|
|
104791
104240
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -105320,6 +104769,8 @@ type Routes = {
|
|
|
105320
104769
|
|
|
105321
104770
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
105322
104771
|
backup_access_code: {
|
|
104772
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
104773
|
+
workspace_id: string;
|
|
105323
104774
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
105324
104775
|
common_code_key: string | null;
|
|
105325
104776
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -105832,6 +105283,8 @@ type Routes = {
|
|
|
105832
105283
|
|
|
105833
105284
|
In addition, for certain devices, Seam also supports [offline access codes](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#offline-access-codes). Offline access (PIN) codes are designed for door locks that might not always maintain an internet connection. For this type of access code, the device manufacturer uses encryption keys (tokens) to create server-based registries of algorithmically-generated offline PIN codes. Because the tokens remain synchronized with the managed devices, the locks do not require an active internet connection—and you do not need to be near the locks—to create an offline access code. Then, owners or managers can share these offline codes with users through a variety of mechanisms, such as messaging applications. That is, lock users do not need to install a smartphone application to receive an offline access code. */
|
|
105834
105285
|
access_code: {
|
|
105286
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
105287
|
+
workspace_id: string;
|
|
105835
105288
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
105836
105289
|
common_code_key: string | null;
|
|
105837
105290
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -106383,6 +105836,8 @@ type Routes = {
|
|
|
106383
105836
|
|
|
106384
105837
|
- [Kwikset](https://docs.seam.co/latest/device-and-system-integration-guides/kwikset-locks) */
|
|
106385
105838
|
access_code: {
|
|
105839
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
105840
|
+
workspace_id: string;
|
|
106386
105841
|
/** Type of the access code. `ongoing` access codes are active continuously until deactivated manually. `time_bound` access codes have a specific duration. */
|
|
106387
105842
|
type: 'time_bound' | 'ongoing';
|
|
106388
105843
|
/** Unique identifier for the access code. */
|
|
@@ -108178,6 +107633,8 @@ type Routes = {
|
|
|
108178
107633
|
|
|
108179
107634
|
- [Kwikset](https://docs.seam.co/latest/device-and-system-integration-guides/kwikset-locks) */
|
|
108180
107635
|
access_code: {
|
|
107636
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
107637
|
+
workspace_id: string;
|
|
108181
107638
|
/** Type of the access code. `ongoing` access codes are active continuously until deactivated manually. `time_bound` access codes have a specific duration. */
|
|
108182
107639
|
type: 'time_bound' | 'ongoing';
|
|
108183
107640
|
/** Unique identifier for the access code. */
|
|
@@ -108684,6 +108141,8 @@ type Routes = {
|
|
|
108684
108141
|
formData: {};
|
|
108685
108142
|
jsonResponse: {
|
|
108686
108143
|
access_codes: {
|
|
108144
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
108145
|
+
workspace_id: string;
|
|
108687
108146
|
/** Type of the access code. `ongoing` access codes are active continuously until deactivated manually. `time_bound` access codes have a specific duration. */
|
|
108688
108147
|
type: 'time_bound' | 'ongoing';
|
|
108689
108148
|
/** Unique identifier for the access code. */
|
|
@@ -111275,46 +110734,8 @@ type Routes = {
|
|
|
111275
110734
|
} | undefined;
|
|
111276
110735
|
/** Metadata for a KeyNest device. */
|
|
111277
110736
|
keynest_metadata?: {
|
|
111278
|
-
/** Key ID for a KeyNest device. */
|
|
111279
|
-
key_id: string;
|
|
111280
110737
|
/** Device name for a KeyNest device. */
|
|
111281
|
-
device_name
|
|
111282
|
-
/** Property ID for a KeyNest device. */
|
|
111283
|
-
property_id: string | null;
|
|
111284
|
-
/** Property postcode for a KeyNest device. */
|
|
111285
|
-
property_postcode: string | null;
|
|
111286
|
-
/** Key notes for a KeyNest device. */
|
|
111287
|
-
key_notes: string | null;
|
|
111288
|
-
/** Subscription plan for a KeyNest device. */
|
|
111289
|
-
subscription_plan: string;
|
|
111290
|
-
/** Status type for a KeyNest device. */
|
|
111291
|
-
status_type: string;
|
|
111292
|
-
/** Current or last store ID for a KeyNest device. */
|
|
111293
|
-
current_or_last_store_id: number;
|
|
111294
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
111295
|
-
last_movement: string;
|
|
111296
|
-
/** Address for a KeyNest device. */
|
|
111297
|
-
address: string | null;
|
|
111298
|
-
/** Current status for a KeyNest device. */
|
|
111299
|
-
current_status: string | null;
|
|
111300
|
-
/** Current user name for a KeyNest device. */
|
|
111301
|
-
current_user_name: string | null;
|
|
111302
|
-
/** Current user email for a KeyNest device. */
|
|
111303
|
-
current_user_email: string | null;
|
|
111304
|
-
/** Current user phone number for a KeyNest device. */
|
|
111305
|
-
current_user_phone_number: string | null;
|
|
111306
|
-
/** Current user company for a KeyNest device. */
|
|
111307
|
-
current_user_company: string | null;
|
|
111308
|
-
/** Handover method for a KeyNest device. */
|
|
111309
|
-
handover_method: string | null;
|
|
111310
|
-
/** KeyNest app user for a KeyNest device. */
|
|
111311
|
-
keynest_app_user: string | null;
|
|
111312
|
-
/** Default office ID for a KeyNest device. */
|
|
111313
|
-
default_office_id: number;
|
|
111314
|
-
/** Fob ID for a KeyNest device. */
|
|
111315
|
-
fob_id: number;
|
|
111316
|
-
/** Whether the KeyNest device has a photo. */
|
|
111317
|
-
has_photo: boolean;
|
|
110738
|
+
device_name?: string | undefined;
|
|
111318
110739
|
} | undefined;
|
|
111319
110740
|
}) & ({
|
|
111320
110741
|
/** */
|
|
@@ -114423,46 +113844,8 @@ type Routes = {
|
|
|
114423
113844
|
} | undefined;
|
|
114424
113845
|
/** Metadata for a KeyNest device. */
|
|
114425
113846
|
keynest_metadata?: {
|
|
114426
|
-
/** Key ID for a KeyNest device. */
|
|
114427
|
-
key_id: string;
|
|
114428
113847
|
/** Device name for a KeyNest device. */
|
|
114429
|
-
device_name
|
|
114430
|
-
/** Property ID for a KeyNest device. */
|
|
114431
|
-
property_id: string | null;
|
|
114432
|
-
/** Property postcode for a KeyNest device. */
|
|
114433
|
-
property_postcode: string | null;
|
|
114434
|
-
/** Key notes for a KeyNest device. */
|
|
114435
|
-
key_notes: string | null;
|
|
114436
|
-
/** Subscription plan for a KeyNest device. */
|
|
114437
|
-
subscription_plan: string;
|
|
114438
|
-
/** Status type for a KeyNest device. */
|
|
114439
|
-
status_type: string;
|
|
114440
|
-
/** Current or last store ID for a KeyNest device. */
|
|
114441
|
-
current_or_last_store_id: number;
|
|
114442
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
114443
|
-
last_movement: string;
|
|
114444
|
-
/** Address for a KeyNest device. */
|
|
114445
|
-
address: string | null;
|
|
114446
|
-
/** Current status for a KeyNest device. */
|
|
114447
|
-
current_status: string | null;
|
|
114448
|
-
/** Current user name for a KeyNest device. */
|
|
114449
|
-
current_user_name: string | null;
|
|
114450
|
-
/** Current user email for a KeyNest device. */
|
|
114451
|
-
current_user_email: string | null;
|
|
114452
|
-
/** Current user phone number for a KeyNest device. */
|
|
114453
|
-
current_user_phone_number: string | null;
|
|
114454
|
-
/** Current user company for a KeyNest device. */
|
|
114455
|
-
current_user_company: string | null;
|
|
114456
|
-
/** Handover method for a KeyNest device. */
|
|
114457
|
-
handover_method: string | null;
|
|
114458
|
-
/** KeyNest app user for a KeyNest device. */
|
|
114459
|
-
keynest_app_user: string | null;
|
|
114460
|
-
/** Default office ID for a KeyNest device. */
|
|
114461
|
-
default_office_id: number;
|
|
114462
|
-
/** Fob ID for a KeyNest device. */
|
|
114463
|
-
fob_id: number;
|
|
114464
|
-
/** Whether the KeyNest device has a photo. */
|
|
114465
|
-
has_photo: boolean;
|
|
113848
|
+
device_name?: string | undefined;
|
|
114466
113849
|
} | undefined;
|
|
114467
113850
|
}) & ({
|
|
114468
113851
|
/** */
|
|
@@ -119702,6 +119085,8 @@ type Routes = {
|
|
|
119702
119085
|
} | undefined;
|
|
119703
119086
|
}[] | undefined;
|
|
119704
119087
|
access_codes?: {
|
|
119088
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
119089
|
+
workspace_id: string;
|
|
119705
119090
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
119706
119091
|
common_code_key: string | null;
|
|
119707
119092
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -120207,6 +119592,8 @@ type Routes = {
|
|
|
120207
119592
|
is_offline_access_code: boolean;
|
|
120208
119593
|
}[] | undefined;
|
|
120209
119594
|
unmanaged_access_codes?: {
|
|
119595
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
119596
|
+
workspace_id: string;
|
|
120210
119597
|
/** Type of the access code. `ongoing` access codes are active continuously until deactivated manually. `time_bound` access codes have a specific duration. */
|
|
120211
119598
|
type: 'time_bound' | 'ongoing';
|
|
120212
119599
|
/** Unique identifier for the access code. */
|
|
@@ -132663,46 +132050,8 @@ type Routes = {
|
|
|
132663
132050
|
} | undefined;
|
|
132664
132051
|
/** Metadata for a KeyNest device. */
|
|
132665
132052
|
keynest_metadata?: {
|
|
132666
|
-
/** Key ID for a KeyNest device. */
|
|
132667
|
-
key_id: string;
|
|
132668
132053
|
/** Device name for a KeyNest device. */
|
|
132669
|
-
device_name
|
|
132670
|
-
/** Property ID for a KeyNest device. */
|
|
132671
|
-
property_id: string | null;
|
|
132672
|
-
/** Property postcode for a KeyNest device. */
|
|
132673
|
-
property_postcode: string | null;
|
|
132674
|
-
/** Key notes for a KeyNest device. */
|
|
132675
|
-
key_notes: string | null;
|
|
132676
|
-
/** Subscription plan for a KeyNest device. */
|
|
132677
|
-
subscription_plan: string;
|
|
132678
|
-
/** Status type for a KeyNest device. */
|
|
132679
|
-
status_type: string;
|
|
132680
|
-
/** Current or last store ID for a KeyNest device. */
|
|
132681
|
-
current_or_last_store_id: number;
|
|
132682
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
132683
|
-
last_movement: string;
|
|
132684
|
-
/** Address for a KeyNest device. */
|
|
132685
|
-
address: string | null;
|
|
132686
|
-
/** Current status for a KeyNest device. */
|
|
132687
|
-
current_status: string | null;
|
|
132688
|
-
/** Current user name for a KeyNest device. */
|
|
132689
|
-
current_user_name: string | null;
|
|
132690
|
-
/** Current user email for a KeyNest device. */
|
|
132691
|
-
current_user_email: string | null;
|
|
132692
|
-
/** Current user phone number for a KeyNest device. */
|
|
132693
|
-
current_user_phone_number: string | null;
|
|
132694
|
-
/** Current user company for a KeyNest device. */
|
|
132695
|
-
current_user_company: string | null;
|
|
132696
|
-
/** Handover method for a KeyNest device. */
|
|
132697
|
-
handover_method: string | null;
|
|
132698
|
-
/** KeyNest app user for a KeyNest device. */
|
|
132699
|
-
keynest_app_user: string | null;
|
|
132700
|
-
/** Default office ID for a KeyNest device. */
|
|
132701
|
-
default_office_id: number;
|
|
132702
|
-
/** Fob ID for a KeyNest device. */
|
|
132703
|
-
fob_id: number;
|
|
132704
|
-
/** Whether the KeyNest device has a photo. */
|
|
132705
|
-
has_photo: boolean;
|
|
132054
|
+
device_name?: string | undefined;
|
|
132706
132055
|
} | undefined;
|
|
132707
132056
|
}) & ({
|
|
132708
132057
|
/** */
|
|
@@ -133919,46 +133268,8 @@ type Routes = {
|
|
|
133919
133268
|
} | undefined;
|
|
133920
133269
|
/** Metadata for a KeyNest device. */
|
|
133921
133270
|
keynest_metadata?: {
|
|
133922
|
-
/** Key ID for a KeyNest device. */
|
|
133923
|
-
key_id: string;
|
|
133924
133271
|
/** Device name for a KeyNest device. */
|
|
133925
|
-
device_name
|
|
133926
|
-
/** Property ID for a KeyNest device. */
|
|
133927
|
-
property_id: string | null;
|
|
133928
|
-
/** Property postcode for a KeyNest device. */
|
|
133929
|
-
property_postcode: string | null;
|
|
133930
|
-
/** Key notes for a KeyNest device. */
|
|
133931
|
-
key_notes: string | null;
|
|
133932
|
-
/** Subscription plan for a KeyNest device. */
|
|
133933
|
-
subscription_plan: string;
|
|
133934
|
-
/** Status type for a KeyNest device. */
|
|
133935
|
-
status_type: string;
|
|
133936
|
-
/** Current or last store ID for a KeyNest device. */
|
|
133937
|
-
current_or_last_store_id: number;
|
|
133938
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
133939
|
-
last_movement: string;
|
|
133940
|
-
/** Address for a KeyNest device. */
|
|
133941
|
-
address: string | null;
|
|
133942
|
-
/** Current status for a KeyNest device. */
|
|
133943
|
-
current_status: string | null;
|
|
133944
|
-
/** Current user name for a KeyNest device. */
|
|
133945
|
-
current_user_name: string | null;
|
|
133946
|
-
/** Current user email for a KeyNest device. */
|
|
133947
|
-
current_user_email: string | null;
|
|
133948
|
-
/** Current user phone number for a KeyNest device. */
|
|
133949
|
-
current_user_phone_number: string | null;
|
|
133950
|
-
/** Current user company for a KeyNest device. */
|
|
133951
|
-
current_user_company: string | null;
|
|
133952
|
-
/** Handover method for a KeyNest device. */
|
|
133953
|
-
handover_method: string | null;
|
|
133954
|
-
/** KeyNest app user for a KeyNest device. */
|
|
133955
|
-
keynest_app_user: string | null;
|
|
133956
|
-
/** Default office ID for a KeyNest device. */
|
|
133957
|
-
default_office_id: number;
|
|
133958
|
-
/** Fob ID for a KeyNest device. */
|
|
133959
|
-
fob_id: number;
|
|
133960
|
-
/** Whether the KeyNest device has a photo. */
|
|
133961
|
-
has_photo: boolean;
|
|
133272
|
+
device_name?: string | undefined;
|
|
133962
133273
|
} | undefined;
|
|
133963
133274
|
}) & ({
|
|
133964
133275
|
/** */
|
|
@@ -139935,46 +139246,8 @@ type Routes = {
|
|
|
139935
139246
|
} | undefined;
|
|
139936
139247
|
/** Metadata for a KeyNest device. */
|
|
139937
139248
|
keynest_metadata?: {
|
|
139938
|
-
/** Key ID for a KeyNest device. */
|
|
139939
|
-
key_id: string;
|
|
139940
139249
|
/** Device name for a KeyNest device. */
|
|
139941
|
-
device_name
|
|
139942
|
-
/** Property ID for a KeyNest device. */
|
|
139943
|
-
property_id: string | null;
|
|
139944
|
-
/** Property postcode for a KeyNest device. */
|
|
139945
|
-
property_postcode: string | null;
|
|
139946
|
-
/** Key notes for a KeyNest device. */
|
|
139947
|
-
key_notes: string | null;
|
|
139948
|
-
/** Subscription plan for a KeyNest device. */
|
|
139949
|
-
subscription_plan: string;
|
|
139950
|
-
/** Status type for a KeyNest device. */
|
|
139951
|
-
status_type: string;
|
|
139952
|
-
/** Current or last store ID for a KeyNest device. */
|
|
139953
|
-
current_or_last_store_id: number;
|
|
139954
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
139955
|
-
last_movement: string;
|
|
139956
|
-
/** Address for a KeyNest device. */
|
|
139957
|
-
address: string | null;
|
|
139958
|
-
/** Current status for a KeyNest device. */
|
|
139959
|
-
current_status: string | null;
|
|
139960
|
-
/** Current user name for a KeyNest device. */
|
|
139961
|
-
current_user_name: string | null;
|
|
139962
|
-
/** Current user email for a KeyNest device. */
|
|
139963
|
-
current_user_email: string | null;
|
|
139964
|
-
/** Current user phone number for a KeyNest device. */
|
|
139965
|
-
current_user_phone_number: string | null;
|
|
139966
|
-
/** Current user company for a KeyNest device. */
|
|
139967
|
-
current_user_company: string | null;
|
|
139968
|
-
/** Handover method for a KeyNest device. */
|
|
139969
|
-
handover_method: string | null;
|
|
139970
|
-
/** KeyNest app user for a KeyNest device. */
|
|
139971
|
-
keynest_app_user: string | null;
|
|
139972
|
-
/** Default office ID for a KeyNest device. */
|
|
139973
|
-
default_office_id: number;
|
|
139974
|
-
/** Fob ID for a KeyNest device. */
|
|
139975
|
-
fob_id: number;
|
|
139976
|
-
/** Whether the KeyNest device has a photo. */
|
|
139977
|
-
has_photo: boolean;
|
|
139250
|
+
device_name?: string | undefined;
|
|
139978
139251
|
} | undefined;
|
|
139979
139252
|
}) & ({
|
|
139980
139253
|
/** */
|
|
@@ -141141,46 +140414,8 @@ type Routes = {
|
|
|
141141
140414
|
} | undefined;
|
|
141142
140415
|
/** Metadata for a KeyNest device. */
|
|
141143
140416
|
keynest_metadata?: {
|
|
141144
|
-
/** Key ID for a KeyNest device. */
|
|
141145
|
-
key_id: string;
|
|
141146
140417
|
/** Device name for a KeyNest device. */
|
|
141147
|
-
device_name
|
|
141148
|
-
/** Property ID for a KeyNest device. */
|
|
141149
|
-
property_id: string | null;
|
|
141150
|
-
/** Property postcode for a KeyNest device. */
|
|
141151
|
-
property_postcode: string | null;
|
|
141152
|
-
/** Key notes for a KeyNest device. */
|
|
141153
|
-
key_notes: string | null;
|
|
141154
|
-
/** Subscription plan for a KeyNest device. */
|
|
141155
|
-
subscription_plan: string;
|
|
141156
|
-
/** Status type for a KeyNest device. */
|
|
141157
|
-
status_type: string;
|
|
141158
|
-
/** Current or last store ID for a KeyNest device. */
|
|
141159
|
-
current_or_last_store_id: number;
|
|
141160
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
141161
|
-
last_movement: string;
|
|
141162
|
-
/** Address for a KeyNest device. */
|
|
141163
|
-
address: string | null;
|
|
141164
|
-
/** Current status for a KeyNest device. */
|
|
141165
|
-
current_status: string | null;
|
|
141166
|
-
/** Current user name for a KeyNest device. */
|
|
141167
|
-
current_user_name: string | null;
|
|
141168
|
-
/** Current user email for a KeyNest device. */
|
|
141169
|
-
current_user_email: string | null;
|
|
141170
|
-
/** Current user phone number for a KeyNest device. */
|
|
141171
|
-
current_user_phone_number: string | null;
|
|
141172
|
-
/** Current user company for a KeyNest device. */
|
|
141173
|
-
current_user_company: string | null;
|
|
141174
|
-
/** Handover method for a KeyNest device. */
|
|
141175
|
-
handover_method: string | null;
|
|
141176
|
-
/** KeyNest app user for a KeyNest device. */
|
|
141177
|
-
keynest_app_user: string | null;
|
|
141178
|
-
/** Default office ID for a KeyNest device. */
|
|
141179
|
-
default_office_id: number;
|
|
141180
|
-
/** Fob ID for a KeyNest device. */
|
|
141181
|
-
fob_id: number;
|
|
141182
|
-
/** Whether the KeyNest device has a photo. */
|
|
141183
|
-
has_photo: boolean;
|
|
140418
|
+
device_name?: string | undefined;
|
|
141184
140419
|
} | undefined;
|
|
141185
140420
|
}) & ({
|
|
141186
140421
|
/** */
|
|
@@ -142397,46 +141632,8 @@ type Routes = {
|
|
|
142397
141632
|
} | undefined;
|
|
142398
141633
|
/** Metadata for a KeyNest device. */
|
|
142399
141634
|
keynest_metadata?: {
|
|
142400
|
-
/** Key ID for a KeyNest device. */
|
|
142401
|
-
key_id: string;
|
|
142402
141635
|
/** Device name for a KeyNest device. */
|
|
142403
|
-
device_name
|
|
142404
|
-
/** Property ID for a KeyNest device. */
|
|
142405
|
-
property_id: string | null;
|
|
142406
|
-
/** Property postcode for a KeyNest device. */
|
|
142407
|
-
property_postcode: string | null;
|
|
142408
|
-
/** Key notes for a KeyNest device. */
|
|
142409
|
-
key_notes: string | null;
|
|
142410
|
-
/** Subscription plan for a KeyNest device. */
|
|
142411
|
-
subscription_plan: string;
|
|
142412
|
-
/** Status type for a KeyNest device. */
|
|
142413
|
-
status_type: string;
|
|
142414
|
-
/** Current or last store ID for a KeyNest device. */
|
|
142415
|
-
current_or_last_store_id: number;
|
|
142416
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
142417
|
-
last_movement: string;
|
|
142418
|
-
/** Address for a KeyNest device. */
|
|
142419
|
-
address: string | null;
|
|
142420
|
-
/** Current status for a KeyNest device. */
|
|
142421
|
-
current_status: string | null;
|
|
142422
|
-
/** Current user name for a KeyNest device. */
|
|
142423
|
-
current_user_name: string | null;
|
|
142424
|
-
/** Current user email for a KeyNest device. */
|
|
142425
|
-
current_user_email: string | null;
|
|
142426
|
-
/** Current user phone number for a KeyNest device. */
|
|
142427
|
-
current_user_phone_number: string | null;
|
|
142428
|
-
/** Current user company for a KeyNest device. */
|
|
142429
|
-
current_user_company: string | null;
|
|
142430
|
-
/** Handover method for a KeyNest device. */
|
|
142431
|
-
handover_method: string | null;
|
|
142432
|
-
/** KeyNest app user for a KeyNest device. */
|
|
142433
|
-
keynest_app_user: string | null;
|
|
142434
|
-
/** Default office ID for a KeyNest device. */
|
|
142435
|
-
default_office_id: number;
|
|
142436
|
-
/** Fob ID for a KeyNest device. */
|
|
142437
|
-
fob_id: number;
|
|
142438
|
-
/** Whether the KeyNest device has a photo. */
|
|
142439
|
-
has_photo: boolean;
|
|
141636
|
+
device_name?: string | undefined;
|
|
142440
141637
|
} | undefined;
|
|
142441
141638
|
}) & ({
|
|
142442
141639
|
/** */
|
|
@@ -143602,46 +142799,8 @@ type Routes = {
|
|
|
143602
142799
|
} | undefined;
|
|
143603
142800
|
/** Metadata for a KeyNest device. */
|
|
143604
142801
|
keynest_metadata?: {
|
|
143605
|
-
/** Key ID for a KeyNest device. */
|
|
143606
|
-
key_id: string;
|
|
143607
142802
|
/** Device name for a KeyNest device. */
|
|
143608
|
-
device_name
|
|
143609
|
-
/** Property ID for a KeyNest device. */
|
|
143610
|
-
property_id: string | null;
|
|
143611
|
-
/** Property postcode for a KeyNest device. */
|
|
143612
|
-
property_postcode: string | null;
|
|
143613
|
-
/** Key notes for a KeyNest device. */
|
|
143614
|
-
key_notes: string | null;
|
|
143615
|
-
/** Subscription plan for a KeyNest device. */
|
|
143616
|
-
subscription_plan: string;
|
|
143617
|
-
/** Status type for a KeyNest device. */
|
|
143618
|
-
status_type: string;
|
|
143619
|
-
/** Current or last store ID for a KeyNest device. */
|
|
143620
|
-
current_or_last_store_id: number;
|
|
143621
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
143622
|
-
last_movement: string;
|
|
143623
|
-
/** Address for a KeyNest device. */
|
|
143624
|
-
address: string | null;
|
|
143625
|
-
/** Current status for a KeyNest device. */
|
|
143626
|
-
current_status: string | null;
|
|
143627
|
-
/** Current user name for a KeyNest device. */
|
|
143628
|
-
current_user_name: string | null;
|
|
143629
|
-
/** Current user email for a KeyNest device. */
|
|
143630
|
-
current_user_email: string | null;
|
|
143631
|
-
/** Current user phone number for a KeyNest device. */
|
|
143632
|
-
current_user_phone_number: string | null;
|
|
143633
|
-
/** Current user company for a KeyNest device. */
|
|
143634
|
-
current_user_company: string | null;
|
|
143635
|
-
/** Handover method for a KeyNest device. */
|
|
143636
|
-
handover_method: string | null;
|
|
143637
|
-
/** KeyNest app user for a KeyNest device. */
|
|
143638
|
-
keynest_app_user: string | null;
|
|
143639
|
-
/** Default office ID for a KeyNest device. */
|
|
143640
|
-
default_office_id: number;
|
|
143641
|
-
/** Fob ID for a KeyNest device. */
|
|
143642
|
-
fob_id: number;
|
|
143643
|
-
/** Whether the KeyNest device has a photo. */
|
|
143644
|
-
has_photo: boolean;
|
|
142803
|
+
device_name?: string | undefined;
|
|
143645
142804
|
} | undefined;
|
|
143646
142805
|
}) & ({
|
|
143647
142806
|
/** */
|
|
@@ -149896,46 +149055,8 @@ type Routes = {
|
|
|
149896
149055
|
} | undefined;
|
|
149897
149056
|
/** Metadata for a KeyNest device. */
|
|
149898
149057
|
keynest_metadata?: {
|
|
149899
|
-
/** Key ID for a KeyNest device. */
|
|
149900
|
-
key_id: string;
|
|
149901
149058
|
/** Device name for a KeyNest device. */
|
|
149902
|
-
device_name
|
|
149903
|
-
/** Property ID for a KeyNest device. */
|
|
149904
|
-
property_id: string | null;
|
|
149905
|
-
/** Property postcode for a KeyNest device. */
|
|
149906
|
-
property_postcode: string | null;
|
|
149907
|
-
/** Key notes for a KeyNest device. */
|
|
149908
|
-
key_notes: string | null;
|
|
149909
|
-
/** Subscription plan for a KeyNest device. */
|
|
149910
|
-
subscription_plan: string;
|
|
149911
|
-
/** Status type for a KeyNest device. */
|
|
149912
|
-
status_type: string;
|
|
149913
|
-
/** Current or last store ID for a KeyNest device. */
|
|
149914
|
-
current_or_last_store_id: number;
|
|
149915
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
149916
|
-
last_movement: string;
|
|
149917
|
-
/** Address for a KeyNest device. */
|
|
149918
|
-
address: string | null;
|
|
149919
|
-
/** Current status for a KeyNest device. */
|
|
149920
|
-
current_status: string | null;
|
|
149921
|
-
/** Current user name for a KeyNest device. */
|
|
149922
|
-
current_user_name: string | null;
|
|
149923
|
-
/** Current user email for a KeyNest device. */
|
|
149924
|
-
current_user_email: string | null;
|
|
149925
|
-
/** Current user phone number for a KeyNest device. */
|
|
149926
|
-
current_user_phone_number: string | null;
|
|
149927
|
-
/** Current user company for a KeyNest device. */
|
|
149928
|
-
current_user_company: string | null;
|
|
149929
|
-
/** Handover method for a KeyNest device. */
|
|
149930
|
-
handover_method: string | null;
|
|
149931
|
-
/** KeyNest app user for a KeyNest device. */
|
|
149932
|
-
keynest_app_user: string | null;
|
|
149933
|
-
/** Default office ID for a KeyNest device. */
|
|
149934
|
-
default_office_id: number;
|
|
149935
|
-
/** Fob ID for a KeyNest device. */
|
|
149936
|
-
fob_id: number;
|
|
149937
|
-
/** Whether the KeyNest device has a photo. */
|
|
149938
|
-
has_photo: boolean;
|
|
149059
|
+
device_name?: string | undefined;
|
|
149939
149060
|
} | undefined;
|
|
149940
149061
|
}) & ({
|
|
149941
149062
|
/** */
|
|
@@ -151101,46 +150222,8 @@ type Routes = {
|
|
|
151101
150222
|
} | undefined;
|
|
151102
150223
|
/** Metadata for a KeyNest device. */
|
|
151103
150224
|
keynest_metadata?: {
|
|
151104
|
-
/** Key ID for a KeyNest device. */
|
|
151105
|
-
key_id: string;
|
|
151106
150225
|
/** Device name for a KeyNest device. */
|
|
151107
|
-
device_name
|
|
151108
|
-
/** Property ID for a KeyNest device. */
|
|
151109
|
-
property_id: string | null;
|
|
151110
|
-
/** Property postcode for a KeyNest device. */
|
|
151111
|
-
property_postcode: string | null;
|
|
151112
|
-
/** Key notes for a KeyNest device. */
|
|
151113
|
-
key_notes: string | null;
|
|
151114
|
-
/** Subscription plan for a KeyNest device. */
|
|
151115
|
-
subscription_plan: string;
|
|
151116
|
-
/** Status type for a KeyNest device. */
|
|
151117
|
-
status_type: string;
|
|
151118
|
-
/** Current or last store ID for a KeyNest device. */
|
|
151119
|
-
current_or_last_store_id: number;
|
|
151120
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
151121
|
-
last_movement: string;
|
|
151122
|
-
/** Address for a KeyNest device. */
|
|
151123
|
-
address: string | null;
|
|
151124
|
-
/** Current status for a KeyNest device. */
|
|
151125
|
-
current_status: string | null;
|
|
151126
|
-
/** Current user name for a KeyNest device. */
|
|
151127
|
-
current_user_name: string | null;
|
|
151128
|
-
/** Current user email for a KeyNest device. */
|
|
151129
|
-
current_user_email: string | null;
|
|
151130
|
-
/** Current user phone number for a KeyNest device. */
|
|
151131
|
-
current_user_phone_number: string | null;
|
|
151132
|
-
/** Current user company for a KeyNest device. */
|
|
151133
|
-
current_user_company: string | null;
|
|
151134
|
-
/** Handover method for a KeyNest device. */
|
|
151135
|
-
handover_method: string | null;
|
|
151136
|
-
/** KeyNest app user for a KeyNest device. */
|
|
151137
|
-
keynest_app_user: string | null;
|
|
151138
|
-
/** Default office ID for a KeyNest device. */
|
|
151139
|
-
default_office_id: number;
|
|
151140
|
-
/** Fob ID for a KeyNest device. */
|
|
151141
|
-
fob_id: number;
|
|
151142
|
-
/** Whether the KeyNest device has a photo. */
|
|
151143
|
-
has_photo: boolean;
|
|
150226
|
+
device_name?: string | undefined;
|
|
151144
150227
|
} | undefined;
|
|
151145
150228
|
}) & ({
|
|
151146
150229
|
/** */
|
|
@@ -159500,46 +158583,8 @@ type Routes = {
|
|
|
159500
158583
|
} | undefined;
|
|
159501
158584
|
/** Metadata for a KeyNest device. */
|
|
159502
158585
|
keynest_metadata?: {
|
|
159503
|
-
/** Key ID for a KeyNest device. */
|
|
159504
|
-
key_id: string;
|
|
159505
158586
|
/** Device name for a KeyNest device. */
|
|
159506
|
-
device_name
|
|
159507
|
-
/** Property ID for a KeyNest device. */
|
|
159508
|
-
property_id: string | null;
|
|
159509
|
-
/** Property postcode for a KeyNest device. */
|
|
159510
|
-
property_postcode: string | null;
|
|
159511
|
-
/** Key notes for a KeyNest device. */
|
|
159512
|
-
key_notes: string | null;
|
|
159513
|
-
/** Subscription plan for a KeyNest device. */
|
|
159514
|
-
subscription_plan: string;
|
|
159515
|
-
/** Status type for a KeyNest device. */
|
|
159516
|
-
status_type: string;
|
|
159517
|
-
/** Current or last store ID for a KeyNest device. */
|
|
159518
|
-
current_or_last_store_id: number;
|
|
159519
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
159520
|
-
last_movement: string;
|
|
159521
|
-
/** Address for a KeyNest device. */
|
|
159522
|
-
address: string | null;
|
|
159523
|
-
/** Current status for a KeyNest device. */
|
|
159524
|
-
current_status: string | null;
|
|
159525
|
-
/** Current user name for a KeyNest device. */
|
|
159526
|
-
current_user_name: string | null;
|
|
159527
|
-
/** Current user email for a KeyNest device. */
|
|
159528
|
-
current_user_email: string | null;
|
|
159529
|
-
/** Current user phone number for a KeyNest device. */
|
|
159530
|
-
current_user_phone_number: string | null;
|
|
159531
|
-
/** Current user company for a KeyNest device. */
|
|
159532
|
-
current_user_company: string | null;
|
|
159533
|
-
/** Handover method for a KeyNest device. */
|
|
159534
|
-
handover_method: string | null;
|
|
159535
|
-
/** KeyNest app user for a KeyNest device. */
|
|
159536
|
-
keynest_app_user: string | null;
|
|
159537
|
-
/** Default office ID for a KeyNest device. */
|
|
159538
|
-
default_office_id: number;
|
|
159539
|
-
/** Fob ID for a KeyNest device. */
|
|
159540
|
-
fob_id: number;
|
|
159541
|
-
/** Whether the KeyNest device has a photo. */
|
|
159542
|
-
has_photo: boolean;
|
|
158587
|
+
device_name?: string | undefined;
|
|
159543
158588
|
} | undefined;
|
|
159544
158589
|
}) & ({
|
|
159545
158590
|
/** */
|
|
@@ -165086,46 +164131,8 @@ type Routes = {
|
|
|
165086
164131
|
} | undefined;
|
|
165087
164132
|
/** Metadata for a KeyNest device. */
|
|
165088
164133
|
keynest_metadata?: {
|
|
165089
|
-
/** Key ID for a KeyNest device. */
|
|
165090
|
-
key_id: string;
|
|
165091
164134
|
/** Device name for a KeyNest device. */
|
|
165092
|
-
device_name
|
|
165093
|
-
/** Property ID for a KeyNest device. */
|
|
165094
|
-
property_id: string | null;
|
|
165095
|
-
/** Property postcode for a KeyNest device. */
|
|
165096
|
-
property_postcode: string | null;
|
|
165097
|
-
/** Key notes for a KeyNest device. */
|
|
165098
|
-
key_notes: string | null;
|
|
165099
|
-
/** Subscription plan for a KeyNest device. */
|
|
165100
|
-
subscription_plan: string;
|
|
165101
|
-
/** Status type for a KeyNest device. */
|
|
165102
|
-
status_type: string;
|
|
165103
|
-
/** Current or last store ID for a KeyNest device. */
|
|
165104
|
-
current_or_last_store_id: number;
|
|
165105
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
165106
|
-
last_movement: string;
|
|
165107
|
-
/** Address for a KeyNest device. */
|
|
165108
|
-
address: string | null;
|
|
165109
|
-
/** Current status for a KeyNest device. */
|
|
165110
|
-
current_status: string | null;
|
|
165111
|
-
/** Current user name for a KeyNest device. */
|
|
165112
|
-
current_user_name: string | null;
|
|
165113
|
-
/** Current user email for a KeyNest device. */
|
|
165114
|
-
current_user_email: string | null;
|
|
165115
|
-
/** Current user phone number for a KeyNest device. */
|
|
165116
|
-
current_user_phone_number: string | null;
|
|
165117
|
-
/** Current user company for a KeyNest device. */
|
|
165118
|
-
current_user_company: string | null;
|
|
165119
|
-
/** Handover method for a KeyNest device. */
|
|
165120
|
-
handover_method: string | null;
|
|
165121
|
-
/** KeyNest app user for a KeyNest device. */
|
|
165122
|
-
keynest_app_user: string | null;
|
|
165123
|
-
/** Default office ID for a KeyNest device. */
|
|
165124
|
-
default_office_id: number;
|
|
165125
|
-
/** Fob ID for a KeyNest device. */
|
|
165126
|
-
fob_id: number;
|
|
165127
|
-
/** Whether the KeyNest device has a photo. */
|
|
165128
|
-
has_photo: boolean;
|
|
164135
|
+
device_name?: string | undefined;
|
|
165129
164136
|
} | undefined;
|
|
165130
164137
|
}) & ({
|
|
165131
164138
|
/** */
|
|
@@ -168874,46 +167881,8 @@ type Routes = {
|
|
|
168874
167881
|
} | undefined;
|
|
168875
167882
|
/** Metadata for a KeyNest device. */
|
|
168876
167883
|
keynest_metadata?: {
|
|
168877
|
-
/** Key ID for a KeyNest device. */
|
|
168878
|
-
key_id: string;
|
|
168879
167884
|
/** Device name for a KeyNest device. */
|
|
168880
|
-
device_name
|
|
168881
|
-
/** Property ID for a KeyNest device. */
|
|
168882
|
-
property_id: string | null;
|
|
168883
|
-
/** Property postcode for a KeyNest device. */
|
|
168884
|
-
property_postcode: string | null;
|
|
168885
|
-
/** Key notes for a KeyNest device. */
|
|
168886
|
-
key_notes: string | null;
|
|
168887
|
-
/** Subscription plan for a KeyNest device. */
|
|
168888
|
-
subscription_plan: string;
|
|
168889
|
-
/** Status type for a KeyNest device. */
|
|
168890
|
-
status_type: string;
|
|
168891
|
-
/** Current or last store ID for a KeyNest device. */
|
|
168892
|
-
current_or_last_store_id: number;
|
|
168893
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
168894
|
-
last_movement: string;
|
|
168895
|
-
/** Address for a KeyNest device. */
|
|
168896
|
-
address: string | null;
|
|
168897
|
-
/** Current status for a KeyNest device. */
|
|
168898
|
-
current_status: string | null;
|
|
168899
|
-
/** Current user name for a KeyNest device. */
|
|
168900
|
-
current_user_name: string | null;
|
|
168901
|
-
/** Current user email for a KeyNest device. */
|
|
168902
|
-
current_user_email: string | null;
|
|
168903
|
-
/** Current user phone number for a KeyNest device. */
|
|
168904
|
-
current_user_phone_number: string | null;
|
|
168905
|
-
/** Current user company for a KeyNest device. */
|
|
168906
|
-
current_user_company: string | null;
|
|
168907
|
-
/** Handover method for a KeyNest device. */
|
|
168908
|
-
handover_method: string | null;
|
|
168909
|
-
/** KeyNest app user for a KeyNest device. */
|
|
168910
|
-
keynest_app_user: string | null;
|
|
168911
|
-
/** Default office ID for a KeyNest device. */
|
|
168912
|
-
default_office_id: number;
|
|
168913
|
-
/** Fob ID for a KeyNest device. */
|
|
168914
|
-
fob_id: number;
|
|
168915
|
-
/** Whether the KeyNest device has a photo. */
|
|
168916
|
-
has_photo: boolean;
|
|
167885
|
+
device_name?: string | undefined;
|
|
168917
167886
|
} | undefined;
|
|
168918
167887
|
}) & ({
|
|
168919
167888
|
/** */
|
|
@@ -170079,46 +169048,8 @@ type Routes = {
|
|
|
170079
169048
|
} | undefined;
|
|
170080
169049
|
/** Metadata for a KeyNest device. */
|
|
170081
169050
|
keynest_metadata?: {
|
|
170082
|
-
/** Key ID for a KeyNest device. */
|
|
170083
|
-
key_id: string;
|
|
170084
169051
|
/** Device name for a KeyNest device. */
|
|
170085
|
-
device_name
|
|
170086
|
-
/** Property ID for a KeyNest device. */
|
|
170087
|
-
property_id: string | null;
|
|
170088
|
-
/** Property postcode for a KeyNest device. */
|
|
170089
|
-
property_postcode: string | null;
|
|
170090
|
-
/** Key notes for a KeyNest device. */
|
|
170091
|
-
key_notes: string | null;
|
|
170092
|
-
/** Subscription plan for a KeyNest device. */
|
|
170093
|
-
subscription_plan: string;
|
|
170094
|
-
/** Status type for a KeyNest device. */
|
|
170095
|
-
status_type: string;
|
|
170096
|
-
/** Current or last store ID for a KeyNest device. */
|
|
170097
|
-
current_or_last_store_id: number;
|
|
170098
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
170099
|
-
last_movement: string;
|
|
170100
|
-
/** Address for a KeyNest device. */
|
|
170101
|
-
address: string | null;
|
|
170102
|
-
/** Current status for a KeyNest device. */
|
|
170103
|
-
current_status: string | null;
|
|
170104
|
-
/** Current user name for a KeyNest device. */
|
|
170105
|
-
current_user_name: string | null;
|
|
170106
|
-
/** Current user email for a KeyNest device. */
|
|
170107
|
-
current_user_email: string | null;
|
|
170108
|
-
/** Current user phone number for a KeyNest device. */
|
|
170109
|
-
current_user_phone_number: string | null;
|
|
170110
|
-
/** Current user company for a KeyNest device. */
|
|
170111
|
-
current_user_company: string | null;
|
|
170112
|
-
/** Handover method for a KeyNest device. */
|
|
170113
|
-
handover_method: string | null;
|
|
170114
|
-
/** KeyNest app user for a KeyNest device. */
|
|
170115
|
-
keynest_app_user: string | null;
|
|
170116
|
-
/** Default office ID for a KeyNest device. */
|
|
170117
|
-
default_office_id: number;
|
|
170118
|
-
/** Fob ID for a KeyNest device. */
|
|
170119
|
-
fob_id: number;
|
|
170120
|
-
/** Whether the KeyNest device has a photo. */
|
|
170121
|
-
has_photo: boolean;
|
|
169052
|
+
device_name?: string | undefined;
|
|
170122
169053
|
} | undefined;
|
|
170123
169054
|
}) & ({
|
|
170124
169055
|
/** */
|
|
@@ -177225,46 +176156,8 @@ type Routes = {
|
|
|
177225
176156
|
} | undefined;
|
|
177226
176157
|
/** Metadata for a KeyNest device. */
|
|
177227
176158
|
keynest_metadata?: {
|
|
177228
|
-
/** Key ID for a KeyNest device. */
|
|
177229
|
-
key_id: string;
|
|
177230
176159
|
/** Device name for a KeyNest device. */
|
|
177231
|
-
device_name
|
|
177232
|
-
/** Property ID for a KeyNest device. */
|
|
177233
|
-
property_id: string | null;
|
|
177234
|
-
/** Property postcode for a KeyNest device. */
|
|
177235
|
-
property_postcode: string | null;
|
|
177236
|
-
/** Key notes for a KeyNest device. */
|
|
177237
|
-
key_notes: string | null;
|
|
177238
|
-
/** Subscription plan for a KeyNest device. */
|
|
177239
|
-
subscription_plan: string;
|
|
177240
|
-
/** Status type for a KeyNest device. */
|
|
177241
|
-
status_type: string;
|
|
177242
|
-
/** Current or last store ID for a KeyNest device. */
|
|
177243
|
-
current_or_last_store_id: number;
|
|
177244
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
177245
|
-
last_movement: string;
|
|
177246
|
-
/** Address for a KeyNest device. */
|
|
177247
|
-
address: string | null;
|
|
177248
|
-
/** Current status for a KeyNest device. */
|
|
177249
|
-
current_status: string | null;
|
|
177250
|
-
/** Current user name for a KeyNest device. */
|
|
177251
|
-
current_user_name: string | null;
|
|
177252
|
-
/** Current user email for a KeyNest device. */
|
|
177253
|
-
current_user_email: string | null;
|
|
177254
|
-
/** Current user phone number for a KeyNest device. */
|
|
177255
|
-
current_user_phone_number: string | null;
|
|
177256
|
-
/** Current user company for a KeyNest device. */
|
|
177257
|
-
current_user_company: string | null;
|
|
177258
|
-
/** Handover method for a KeyNest device. */
|
|
177259
|
-
handover_method: string | null;
|
|
177260
|
-
/** KeyNest app user for a KeyNest device. */
|
|
177261
|
-
keynest_app_user: string | null;
|
|
177262
|
-
/** Default office ID for a KeyNest device. */
|
|
177263
|
-
default_office_id: number;
|
|
177264
|
-
/** Fob ID for a KeyNest device. */
|
|
177265
|
-
fob_id: number;
|
|
177266
|
-
/** Whether the KeyNest device has a photo. */
|
|
177267
|
-
has_photo: boolean;
|
|
176160
|
+
device_name?: string | undefined;
|
|
177268
176161
|
} | undefined;
|
|
177269
176162
|
}) & ({
|
|
177270
176163
|
/** */
|
|
@@ -178432,46 +177325,8 @@ type Routes = {
|
|
|
178432
177325
|
} | undefined;
|
|
178433
177326
|
/** Metadata for a KeyNest device. */
|
|
178434
177327
|
keynest_metadata?: {
|
|
178435
|
-
/** Key ID for a KeyNest device. */
|
|
178436
|
-
key_id: string;
|
|
178437
177328
|
/** Device name for a KeyNest device. */
|
|
178438
|
-
device_name
|
|
178439
|
-
/** Property ID for a KeyNest device. */
|
|
178440
|
-
property_id: string | null;
|
|
178441
|
-
/** Property postcode for a KeyNest device. */
|
|
178442
|
-
property_postcode: string | null;
|
|
178443
|
-
/** Key notes for a KeyNest device. */
|
|
178444
|
-
key_notes: string | null;
|
|
178445
|
-
/** Subscription plan for a KeyNest device. */
|
|
178446
|
-
subscription_plan: string;
|
|
178447
|
-
/** Status type for a KeyNest device. */
|
|
178448
|
-
status_type: string;
|
|
178449
|
-
/** Current or last store ID for a KeyNest device. */
|
|
178450
|
-
current_or_last_store_id: number;
|
|
178451
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
178452
|
-
last_movement: string;
|
|
178453
|
-
/** Address for a KeyNest device. */
|
|
178454
|
-
address: string | null;
|
|
178455
|
-
/** Current status for a KeyNest device. */
|
|
178456
|
-
current_status: string | null;
|
|
178457
|
-
/** Current user name for a KeyNest device. */
|
|
178458
|
-
current_user_name: string | null;
|
|
178459
|
-
/** Current user email for a KeyNest device. */
|
|
178460
|
-
current_user_email: string | null;
|
|
178461
|
-
/** Current user phone number for a KeyNest device. */
|
|
178462
|
-
current_user_phone_number: string | null;
|
|
178463
|
-
/** Current user company for a KeyNest device. */
|
|
178464
|
-
current_user_company: string | null;
|
|
178465
|
-
/** Handover method for a KeyNest device. */
|
|
178466
|
-
handover_method: string | null;
|
|
178467
|
-
/** KeyNest app user for a KeyNest device. */
|
|
178468
|
-
keynest_app_user: string | null;
|
|
178469
|
-
/** Default office ID for a KeyNest device. */
|
|
178470
|
-
default_office_id: number;
|
|
178471
|
-
/** Fob ID for a KeyNest device. */
|
|
178472
|
-
fob_id: number;
|
|
178473
|
-
/** Whether the KeyNest device has a photo. */
|
|
178474
|
-
has_photo: boolean;
|
|
177329
|
+
device_name?: string | undefined;
|
|
178475
177330
|
} | undefined;
|
|
178476
177331
|
}) & ({
|
|
178477
177332
|
/** */
|
|
@@ -180398,46 +179253,8 @@ type Routes = {
|
|
|
180398
179253
|
} | undefined;
|
|
180399
179254
|
/** Metadata for a KeyNest device. */
|
|
180400
179255
|
keynest_metadata?: {
|
|
180401
|
-
/** Key ID for a KeyNest device. */
|
|
180402
|
-
key_id: string;
|
|
180403
179256
|
/** Device name for a KeyNest device. */
|
|
180404
|
-
device_name
|
|
180405
|
-
/** Property ID for a KeyNest device. */
|
|
180406
|
-
property_id: string | null;
|
|
180407
|
-
/** Property postcode for a KeyNest device. */
|
|
180408
|
-
property_postcode: string | null;
|
|
180409
|
-
/** Key notes for a KeyNest device. */
|
|
180410
|
-
key_notes: string | null;
|
|
180411
|
-
/** Subscription plan for a KeyNest device. */
|
|
180412
|
-
subscription_plan: string;
|
|
180413
|
-
/** Status type for a KeyNest device. */
|
|
180414
|
-
status_type: string;
|
|
180415
|
-
/** Current or last store ID for a KeyNest device. */
|
|
180416
|
-
current_or_last_store_id: number;
|
|
180417
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
180418
|
-
last_movement: string;
|
|
180419
|
-
/** Address for a KeyNest device. */
|
|
180420
|
-
address: string | null;
|
|
180421
|
-
/** Current status for a KeyNest device. */
|
|
180422
|
-
current_status: string | null;
|
|
180423
|
-
/** Current user name for a KeyNest device. */
|
|
180424
|
-
current_user_name: string | null;
|
|
180425
|
-
/** Current user email for a KeyNest device. */
|
|
180426
|
-
current_user_email: string | null;
|
|
180427
|
-
/** Current user phone number for a KeyNest device. */
|
|
180428
|
-
current_user_phone_number: string | null;
|
|
180429
|
-
/** Current user company for a KeyNest device. */
|
|
180430
|
-
current_user_company: string | null;
|
|
180431
|
-
/** Handover method for a KeyNest device. */
|
|
180432
|
-
handover_method: string | null;
|
|
180433
|
-
/** KeyNest app user for a KeyNest device. */
|
|
180434
|
-
keynest_app_user: string | null;
|
|
180435
|
-
/** Default office ID for a KeyNest device. */
|
|
180436
|
-
default_office_id: number;
|
|
180437
|
-
/** Fob ID for a KeyNest device. */
|
|
180438
|
-
fob_id: number;
|
|
180439
|
-
/** Whether the KeyNest device has a photo. */
|
|
180440
|
-
has_photo: boolean;
|
|
179257
|
+
device_name?: string | undefined;
|
|
180441
179258
|
} | undefined;
|
|
180442
179259
|
}) & ({
|
|
180443
179260
|
/** */
|
|
@@ -185677,6 +184494,8 @@ type Routes = {
|
|
|
185677
184494
|
} | undefined;
|
|
185678
184495
|
}[] | undefined;
|
|
185679
184496
|
access_codes?: {
|
|
184497
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
184498
|
+
workspace_id: string;
|
|
185680
184499
|
/** Unique identifier for a group of access codes that share the same code. */
|
|
185681
184500
|
common_code_key: string | null;
|
|
185682
184501
|
/** Indicates whether the code is set on the device according to a preconfigured schedule. */
|
|
@@ -186182,6 +185001,8 @@ type Routes = {
|
|
|
186182
185001
|
is_offline_access_code: boolean;
|
|
186183
185002
|
}[] | undefined;
|
|
186184
185003
|
unmanaged_access_codes?: {
|
|
185004
|
+
/** Unique identifier for the Seam workspace associated with the access code. */
|
|
185005
|
+
workspace_id: string;
|
|
186185
185006
|
/** Type of the access code. `ongoing` access codes are active continuously until deactivated manually. `time_bound` access codes have a specific duration. */
|
|
186186
185007
|
type: 'time_bound' | 'ongoing';
|
|
186187
185008
|
/** Unique identifier for the access code. */
|