@seamapi/types 1.500.0 → 1.502.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 +46 -151
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +226 -1371
- package/dist/index.cjs +46 -151
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/lib/seam/connect/model-types.d.ts +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 +249 -1208
- package/lib/seam/connect/models/batch.js +3 -0
- package/lib/seam/connect/models/batch.js.map +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js → customization-profiles/customization-profile.js} +1 -1
- package/lib/seam/connect/models/{customization_profiles/customization_profile.js.map → customization-profiles/customization-profile.js.map} +1 -1
- package/lib/seam/connect/models/customization-profiles/index.d.ts +1 -0
- package/lib/seam/connect/models/customization-profiles/index.js +2 -0
- package/lib/seam/connect/models/customization-profiles/index.js.map +1 -0
- 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/index.d.ts +1 -1
- package/lib/seam/connect/models/index.js +1 -1
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/instant-keys/instant-key.d.ts +4 -4
- package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
- package/lib/seam/connect/openapi.d.ts +24 -91
- package/lib/seam/connect/openapi.js +24 -112
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +35 -663
- package/package.json +1 -1
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/batch.ts +3 -0
- package/src/lib/seam/connect/models/customization-profiles/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -62
- package/src/lib/seam/connect/models/index.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +24 -124
- package/src/lib/seam/connect/route-types.ts +39 -663
- package/lib/seam/connect/models/{customization_profiles/customization_profile.d.ts → customization-profiles/customization-profile.d.ts} +2 -2
- /package/src/lib/seam/connect/models/{customization_profiles/customization_profile.ts → customization-profiles/customization-profile.ts} +0 -0
package/dist/connect.d.cts
CHANGED
|
@@ -3996,17 +3996,17 @@ declare const acs_credential: z.ZodObject<{
|
|
|
3996
3996
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3997
3997
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
3998
3998
|
}, "strip", z.ZodTypeAny, {
|
|
3999
|
-
key_id?: string | undefined;
|
|
4000
3999
|
endpoint_id?: string | undefined;
|
|
4001
4000
|
auto_join?: boolean | undefined;
|
|
4002
4001
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4002
|
+
key_id?: string | undefined;
|
|
4003
4003
|
key_issuing_request_id?: string | undefined;
|
|
4004
4004
|
door_names?: string[] | undefined;
|
|
4005
4005
|
}, {
|
|
4006
|
-
key_id?: string | undefined;
|
|
4007
4006
|
endpoint_id?: string | undefined;
|
|
4008
4007
|
auto_join?: boolean | undefined;
|
|
4009
4008
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4009
|
+
key_id?: string | undefined;
|
|
4010
4010
|
key_issuing_request_id?: string | undefined;
|
|
4011
4011
|
door_names?: string[] | undefined;
|
|
4012
4012
|
}>>;
|
|
@@ -4064,10 +4064,10 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4064
4064
|
credential_id?: string | undefined;
|
|
4065
4065
|
} | undefined;
|
|
4066
4066
|
assa_abloy_vostio_metadata?: {
|
|
4067
|
-
key_id?: string | undefined;
|
|
4068
4067
|
endpoint_id?: string | undefined;
|
|
4069
4068
|
auto_join?: boolean | undefined;
|
|
4070
4069
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4070
|
+
key_id?: string | undefined;
|
|
4071
4071
|
key_issuing_request_id?: string | undefined;
|
|
4072
4072
|
door_names?: string[] | undefined;
|
|
4073
4073
|
} | undefined;
|
|
@@ -4136,10 +4136,10 @@ declare const acs_credential: z.ZodObject<{
|
|
|
4136
4136
|
credential_id?: string | undefined;
|
|
4137
4137
|
} | undefined;
|
|
4138
4138
|
assa_abloy_vostio_metadata?: {
|
|
4139
|
-
key_id?: string | undefined;
|
|
4140
4139
|
endpoint_id?: string | undefined;
|
|
4141
4140
|
auto_join?: boolean | undefined;
|
|
4142
4141
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4142
|
+
key_id?: string | undefined;
|
|
4143
4143
|
key_issuing_request_id?: string | undefined;
|
|
4144
4144
|
door_names?: string[] | undefined;
|
|
4145
4145
|
} | undefined;
|
|
@@ -4306,17 +4306,17 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4306
4306
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
4307
4307
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
4308
4308
|
}, "strip", z.ZodTypeAny, {
|
|
4309
|
-
key_id?: string | undefined;
|
|
4310
4309
|
endpoint_id?: string | undefined;
|
|
4311
4310
|
auto_join?: boolean | undefined;
|
|
4312
4311
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4312
|
+
key_id?: string | undefined;
|
|
4313
4313
|
key_issuing_request_id?: string | undefined;
|
|
4314
4314
|
door_names?: string[] | undefined;
|
|
4315
4315
|
}, {
|
|
4316
|
-
key_id?: string | undefined;
|
|
4317
4316
|
endpoint_id?: string | undefined;
|
|
4318
4317
|
auto_join?: boolean | undefined;
|
|
4319
4318
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4319
|
+
key_id?: string | undefined;
|
|
4320
4320
|
key_issuing_request_id?: string | undefined;
|
|
4321
4321
|
door_names?: string[] | undefined;
|
|
4322
4322
|
}>>;
|
|
@@ -4374,10 +4374,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4374
4374
|
credential_id?: string | undefined;
|
|
4375
4375
|
} | undefined;
|
|
4376
4376
|
assa_abloy_vostio_metadata?: {
|
|
4377
|
-
key_id?: string | undefined;
|
|
4378
4377
|
endpoint_id?: string | undefined;
|
|
4379
4378
|
auto_join?: boolean | undefined;
|
|
4380
4379
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4380
|
+
key_id?: string | undefined;
|
|
4381
4381
|
key_issuing_request_id?: string | undefined;
|
|
4382
4382
|
door_names?: string[] | undefined;
|
|
4383
4383
|
} | undefined;
|
|
@@ -4446,10 +4446,10 @@ declare const unmanaged_acs_credential: z.ZodObject<{
|
|
|
4446
4446
|
credential_id?: string | undefined;
|
|
4447
4447
|
} | undefined;
|
|
4448
4448
|
assa_abloy_vostio_metadata?: {
|
|
4449
|
-
key_id?: string | undefined;
|
|
4450
4449
|
endpoint_id?: string | undefined;
|
|
4451
4450
|
auto_join?: boolean | undefined;
|
|
4452
4451
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
4452
|
+
key_id?: string | undefined;
|
|
4453
4453
|
key_issuing_request_id?: string | undefined;
|
|
4454
4454
|
door_names?: string[] | undefined;
|
|
4455
4455
|
} | undefined;
|
|
@@ -6740,17 +6740,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6740
6740
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6741
6741
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
6742
6742
|
}, "strip", z.ZodTypeAny, {
|
|
6743
|
-
key_id?: string | undefined;
|
|
6744
6743
|
endpoint_id?: string | undefined;
|
|
6745
6744
|
auto_join?: boolean | undefined;
|
|
6746
6745
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6746
|
+
key_id?: string | undefined;
|
|
6747
6747
|
key_issuing_request_id?: string | undefined;
|
|
6748
6748
|
door_names?: string[] | undefined;
|
|
6749
6749
|
}, {
|
|
6750
|
-
key_id?: string | undefined;
|
|
6751
6750
|
endpoint_id?: string | undefined;
|
|
6752
6751
|
auto_join?: boolean | undefined;
|
|
6753
6752
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6753
|
+
key_id?: string | undefined;
|
|
6754
6754
|
key_issuing_request_id?: string | undefined;
|
|
6755
6755
|
door_names?: string[] | undefined;
|
|
6756
6756
|
}>>;
|
|
@@ -6808,10 +6808,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6808
6808
|
credential_id?: string | undefined;
|
|
6809
6809
|
} | undefined;
|
|
6810
6810
|
assa_abloy_vostio_metadata?: {
|
|
6811
|
-
key_id?: string | undefined;
|
|
6812
6811
|
endpoint_id?: string | undefined;
|
|
6813
6812
|
auto_join?: boolean | undefined;
|
|
6814
6813
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6814
|
+
key_id?: string | undefined;
|
|
6815
6815
|
key_issuing_request_id?: string | undefined;
|
|
6816
6816
|
door_names?: string[] | undefined;
|
|
6817
6817
|
} | undefined;
|
|
@@ -6880,10 +6880,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
6880
6880
|
credential_id?: string | undefined;
|
|
6881
6881
|
} | undefined;
|
|
6882
6882
|
assa_abloy_vostio_metadata?: {
|
|
6883
|
-
key_id?: string | undefined;
|
|
6884
6883
|
endpoint_id?: string | undefined;
|
|
6885
6884
|
auto_join?: boolean | undefined;
|
|
6886
6885
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
6886
|
+
key_id?: string | undefined;
|
|
6887
6887
|
key_issuing_request_id?: string | undefined;
|
|
6888
6888
|
door_names?: string[] | undefined;
|
|
6889
6889
|
} | undefined;
|
|
@@ -7049,17 +7049,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7049
7049
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7050
7050
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
7051
7051
|
}, "strip", z.ZodTypeAny, {
|
|
7052
|
-
key_id?: string | undefined;
|
|
7053
7052
|
endpoint_id?: string | undefined;
|
|
7054
7053
|
auto_join?: boolean | undefined;
|
|
7055
7054
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7055
|
+
key_id?: string | undefined;
|
|
7056
7056
|
key_issuing_request_id?: string | undefined;
|
|
7057
7057
|
door_names?: string[] | undefined;
|
|
7058
7058
|
}, {
|
|
7059
|
-
key_id?: string | undefined;
|
|
7060
7059
|
endpoint_id?: string | undefined;
|
|
7061
7060
|
auto_join?: boolean | undefined;
|
|
7062
7061
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7062
|
+
key_id?: string | undefined;
|
|
7063
7063
|
key_issuing_request_id?: string | undefined;
|
|
7064
7064
|
door_names?: string[] | undefined;
|
|
7065
7065
|
}>>;
|
|
@@ -7117,10 +7117,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7117
7117
|
credential_id?: string | undefined;
|
|
7118
7118
|
} | undefined;
|
|
7119
7119
|
assa_abloy_vostio_metadata?: {
|
|
7120
|
-
key_id?: string | undefined;
|
|
7121
7120
|
endpoint_id?: string | undefined;
|
|
7122
7121
|
auto_join?: boolean | undefined;
|
|
7123
7122
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7123
|
+
key_id?: string | undefined;
|
|
7124
7124
|
key_issuing_request_id?: string | undefined;
|
|
7125
7125
|
door_names?: string[] | undefined;
|
|
7126
7126
|
} | undefined;
|
|
@@ -7189,10 +7189,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7189
7189
|
credential_id?: string | undefined;
|
|
7190
7190
|
} | undefined;
|
|
7191
7191
|
assa_abloy_vostio_metadata?: {
|
|
7192
|
-
key_id?: string | undefined;
|
|
7193
7192
|
endpoint_id?: string | undefined;
|
|
7194
7193
|
auto_join?: boolean | undefined;
|
|
7195
7194
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7195
|
+
key_id?: string | undefined;
|
|
7196
7196
|
key_issuing_request_id?: string | undefined;
|
|
7197
7197
|
door_names?: string[] | undefined;
|
|
7198
7198
|
} | undefined;
|
|
@@ -7298,10 +7298,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7298
7298
|
credential_id?: string | undefined;
|
|
7299
7299
|
} | undefined;
|
|
7300
7300
|
assa_abloy_vostio_metadata?: {
|
|
7301
|
-
key_id?: string | undefined;
|
|
7302
7301
|
endpoint_id?: string | undefined;
|
|
7303
7302
|
auto_join?: boolean | undefined;
|
|
7304
7303
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7304
|
+
key_id?: string | undefined;
|
|
7305
7305
|
key_issuing_request_id?: string | undefined;
|
|
7306
7306
|
door_names?: string[] | undefined;
|
|
7307
7307
|
} | undefined;
|
|
@@ -7370,10 +7370,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7370
7370
|
credential_id?: string | undefined;
|
|
7371
7371
|
} | undefined;
|
|
7372
7372
|
assa_abloy_vostio_metadata?: {
|
|
7373
|
-
key_id?: string | undefined;
|
|
7374
7373
|
endpoint_id?: string | undefined;
|
|
7375
7374
|
auto_join?: boolean | undefined;
|
|
7376
7375
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7376
|
+
key_id?: string | undefined;
|
|
7377
7377
|
key_issuing_request_id?: string | undefined;
|
|
7378
7378
|
door_names?: string[] | undefined;
|
|
7379
7379
|
} | undefined;
|
|
@@ -7469,10 +7469,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7469
7469
|
credential_id?: string | undefined;
|
|
7470
7470
|
} | undefined;
|
|
7471
7471
|
assa_abloy_vostio_metadata?: {
|
|
7472
|
-
key_id?: string | undefined;
|
|
7473
7472
|
endpoint_id?: string | undefined;
|
|
7474
7473
|
auto_join?: boolean | undefined;
|
|
7475
7474
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7475
|
+
key_id?: string | undefined;
|
|
7476
7476
|
key_issuing_request_id?: string | undefined;
|
|
7477
7477
|
door_names?: string[] | undefined;
|
|
7478
7478
|
} | undefined;
|
|
@@ -7541,10 +7541,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7541
7541
|
credential_id?: string | undefined;
|
|
7542
7542
|
} | undefined;
|
|
7543
7543
|
assa_abloy_vostio_metadata?: {
|
|
7544
|
-
key_id?: string | undefined;
|
|
7545
7544
|
endpoint_id?: string | undefined;
|
|
7546
7545
|
auto_join?: boolean | undefined;
|
|
7547
7546
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7547
|
+
key_id?: string | undefined;
|
|
7548
7548
|
key_issuing_request_id?: string | undefined;
|
|
7549
7549
|
door_names?: string[] | undefined;
|
|
7550
7550
|
} | undefined;
|
|
@@ -7645,10 +7645,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7645
7645
|
credential_id?: string | undefined;
|
|
7646
7646
|
} | undefined;
|
|
7647
7647
|
assa_abloy_vostio_metadata?: {
|
|
7648
|
-
key_id?: string | undefined;
|
|
7649
7648
|
endpoint_id?: string | undefined;
|
|
7650
7649
|
auto_join?: boolean | undefined;
|
|
7651
7650
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7651
|
+
key_id?: string | undefined;
|
|
7652
7652
|
key_issuing_request_id?: string | undefined;
|
|
7653
7653
|
door_names?: string[] | undefined;
|
|
7654
7654
|
} | undefined;
|
|
@@ -7717,10 +7717,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7717
7717
|
credential_id?: string | undefined;
|
|
7718
7718
|
} | undefined;
|
|
7719
7719
|
assa_abloy_vostio_metadata?: {
|
|
7720
|
-
key_id?: string | undefined;
|
|
7721
7720
|
endpoint_id?: string | undefined;
|
|
7722
7721
|
auto_join?: boolean | undefined;
|
|
7723
7722
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7723
|
+
key_id?: string | undefined;
|
|
7724
7724
|
key_issuing_request_id?: string | undefined;
|
|
7725
7725
|
door_names?: string[] | undefined;
|
|
7726
7726
|
} | undefined;
|
|
@@ -7822,10 +7822,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7822
7822
|
credential_id?: string | undefined;
|
|
7823
7823
|
} | undefined;
|
|
7824
7824
|
assa_abloy_vostio_metadata?: {
|
|
7825
|
-
key_id?: string | undefined;
|
|
7826
7825
|
endpoint_id?: string | undefined;
|
|
7827
7826
|
auto_join?: boolean | undefined;
|
|
7828
7827
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7828
|
+
key_id?: string | undefined;
|
|
7829
7829
|
key_issuing_request_id?: string | undefined;
|
|
7830
7830
|
door_names?: string[] | undefined;
|
|
7831
7831
|
} | undefined;
|
|
@@ -7894,10 +7894,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
7894
7894
|
credential_id?: string | undefined;
|
|
7895
7895
|
} | undefined;
|
|
7896
7896
|
assa_abloy_vostio_metadata?: {
|
|
7897
|
-
key_id?: string | undefined;
|
|
7898
7897
|
endpoint_id?: string | undefined;
|
|
7899
7898
|
auto_join?: boolean | undefined;
|
|
7900
7899
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
7900
|
+
key_id?: string | undefined;
|
|
7901
7901
|
key_issuing_request_id?: string | undefined;
|
|
7902
7902
|
door_names?: string[] | undefined;
|
|
7903
7903
|
} | undefined;
|
|
@@ -8158,17 +8158,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8158
8158
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8159
8159
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
8160
8160
|
}, "strip", z.ZodTypeAny, {
|
|
8161
|
-
key_id?: string | undefined;
|
|
8162
8161
|
endpoint_id?: string | undefined;
|
|
8163
8162
|
auto_join?: boolean | undefined;
|
|
8164
8163
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8164
|
+
key_id?: string | undefined;
|
|
8165
8165
|
key_issuing_request_id?: string | undefined;
|
|
8166
8166
|
door_names?: string[] | undefined;
|
|
8167
8167
|
}, {
|
|
8168
|
-
key_id?: string | undefined;
|
|
8169
8168
|
endpoint_id?: string | undefined;
|
|
8170
8169
|
auto_join?: boolean | undefined;
|
|
8171
8170
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8171
|
+
key_id?: string | undefined;
|
|
8172
8172
|
key_issuing_request_id?: string | undefined;
|
|
8173
8173
|
door_names?: string[] | undefined;
|
|
8174
8174
|
}>>;
|
|
@@ -8226,10 +8226,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8226
8226
|
credential_id?: string | undefined;
|
|
8227
8227
|
} | undefined;
|
|
8228
8228
|
assa_abloy_vostio_metadata?: {
|
|
8229
|
-
key_id?: string | undefined;
|
|
8230
8229
|
endpoint_id?: string | undefined;
|
|
8231
8230
|
auto_join?: boolean | undefined;
|
|
8232
8231
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8232
|
+
key_id?: string | undefined;
|
|
8233
8233
|
key_issuing_request_id?: string | undefined;
|
|
8234
8234
|
door_names?: string[] | undefined;
|
|
8235
8235
|
} | undefined;
|
|
@@ -8298,10 +8298,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8298
8298
|
credential_id?: string | undefined;
|
|
8299
8299
|
} | undefined;
|
|
8300
8300
|
assa_abloy_vostio_metadata?: {
|
|
8301
|
-
key_id?: string | undefined;
|
|
8302
8301
|
endpoint_id?: string | undefined;
|
|
8303
8302
|
auto_join?: boolean | undefined;
|
|
8304
8303
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8304
|
+
key_id?: string | undefined;
|
|
8305
8305
|
key_issuing_request_id?: string | undefined;
|
|
8306
8306
|
door_names?: string[] | undefined;
|
|
8307
8307
|
} | undefined;
|
|
@@ -8467,17 +8467,17 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8467
8467
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8468
8468
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
8469
8469
|
}, "strip", z.ZodTypeAny, {
|
|
8470
|
-
key_id?: string | undefined;
|
|
8471
8470
|
endpoint_id?: string | undefined;
|
|
8472
8471
|
auto_join?: boolean | undefined;
|
|
8473
8472
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8473
|
+
key_id?: string | undefined;
|
|
8474
8474
|
key_issuing_request_id?: string | undefined;
|
|
8475
8475
|
door_names?: string[] | undefined;
|
|
8476
8476
|
}, {
|
|
8477
|
-
key_id?: string | undefined;
|
|
8478
8477
|
endpoint_id?: string | undefined;
|
|
8479
8478
|
auto_join?: boolean | undefined;
|
|
8480
8479
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8480
|
+
key_id?: string | undefined;
|
|
8481
8481
|
key_issuing_request_id?: string | undefined;
|
|
8482
8482
|
door_names?: string[] | undefined;
|
|
8483
8483
|
}>>;
|
|
@@ -8535,10 +8535,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8535
8535
|
credential_id?: string | undefined;
|
|
8536
8536
|
} | undefined;
|
|
8537
8537
|
assa_abloy_vostio_metadata?: {
|
|
8538
|
-
key_id?: string | undefined;
|
|
8539
8538
|
endpoint_id?: string | undefined;
|
|
8540
8539
|
auto_join?: boolean | undefined;
|
|
8541
8540
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8541
|
+
key_id?: string | undefined;
|
|
8542
8542
|
key_issuing_request_id?: string | undefined;
|
|
8543
8543
|
door_names?: string[] | undefined;
|
|
8544
8544
|
} | undefined;
|
|
@@ -8607,10 +8607,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8607
8607
|
credential_id?: string | undefined;
|
|
8608
8608
|
} | undefined;
|
|
8609
8609
|
assa_abloy_vostio_metadata?: {
|
|
8610
|
-
key_id?: string | undefined;
|
|
8611
8610
|
endpoint_id?: string | undefined;
|
|
8612
8611
|
auto_join?: boolean | undefined;
|
|
8613
8612
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8613
|
+
key_id?: string | undefined;
|
|
8614
8614
|
key_issuing_request_id?: string | undefined;
|
|
8615
8615
|
door_names?: string[] | undefined;
|
|
8616
8616
|
} | undefined;
|
|
@@ -8684,10 +8684,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8684
8684
|
credential_id?: string | undefined;
|
|
8685
8685
|
} | undefined;
|
|
8686
8686
|
assa_abloy_vostio_metadata?: {
|
|
8687
|
-
key_id?: string | undefined;
|
|
8688
8687
|
endpoint_id?: string | undefined;
|
|
8689
8688
|
auto_join?: boolean | undefined;
|
|
8690
8689
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8690
|
+
key_id?: string | undefined;
|
|
8691
8691
|
key_issuing_request_id?: string | undefined;
|
|
8692
8692
|
door_names?: string[] | undefined;
|
|
8693
8693
|
} | undefined;
|
|
@@ -8756,10 +8756,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8756
8756
|
credential_id?: string | undefined;
|
|
8757
8757
|
} | undefined;
|
|
8758
8758
|
assa_abloy_vostio_metadata?: {
|
|
8759
|
-
key_id?: string | undefined;
|
|
8760
8759
|
endpoint_id?: string | undefined;
|
|
8761
8760
|
auto_join?: boolean | undefined;
|
|
8762
8761
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8762
|
+
key_id?: string | undefined;
|
|
8763
8763
|
key_issuing_request_id?: string | undefined;
|
|
8764
8764
|
door_names?: string[] | undefined;
|
|
8765
8765
|
} | undefined;
|
|
@@ -8834,10 +8834,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8834
8834
|
credential_id?: string | undefined;
|
|
8835
8835
|
} | undefined;
|
|
8836
8836
|
assa_abloy_vostio_metadata?: {
|
|
8837
|
-
key_id?: string | undefined;
|
|
8838
8837
|
endpoint_id?: string | undefined;
|
|
8839
8838
|
auto_join?: boolean | undefined;
|
|
8840
8839
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8840
|
+
key_id?: string | undefined;
|
|
8841
8841
|
key_issuing_request_id?: string | undefined;
|
|
8842
8842
|
door_names?: string[] | undefined;
|
|
8843
8843
|
} | undefined;
|
|
@@ -8906,10 +8906,10 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<{
|
|
|
8906
8906
|
credential_id?: string | undefined;
|
|
8907
8907
|
} | undefined;
|
|
8908
8908
|
assa_abloy_vostio_metadata?: {
|
|
8909
|
-
key_id?: string | undefined;
|
|
8910
8909
|
endpoint_id?: string | undefined;
|
|
8911
8910
|
auto_join?: boolean | undefined;
|
|
8912
8911
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
8912
|
+
key_id?: string | undefined;
|
|
8913
8913
|
key_issuing_request_id?: string | undefined;
|
|
8914
8914
|
door_names?: string[] | undefined;
|
|
8915
8915
|
} | undefined;
|
|
@@ -11317,68 +11317,11 @@ declare const batch: z.ZodObject<{
|
|
|
11317
11317
|
product_type: string;
|
|
11318
11318
|
}>>;
|
|
11319
11319
|
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;
|
|
11320
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
11340
11321
|
}, "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;
|
|
11322
|
+
device_name?: string | undefined;
|
|
11361
11323
|
}, {
|
|
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;
|
|
11324
|
+
device_name?: string | undefined;
|
|
11382
11325
|
}>>;
|
|
11383
11326
|
}, "strip", z.ZodTypeAny, {
|
|
11384
11327
|
ecobee_metadata?: {
|
|
@@ -11614,26 +11557,7 @@ declare const batch: z.ZodObject<{
|
|
|
11614
11557
|
product_type: string;
|
|
11615
11558
|
} | undefined;
|
|
11616
11559
|
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;
|
|
11560
|
+
device_name?: string | undefined;
|
|
11637
11561
|
} | undefined;
|
|
11638
11562
|
}, {
|
|
11639
11563
|
ecobee_metadata?: {
|
|
@@ -11869,26 +11793,7 @@ declare const batch: z.ZodObject<{
|
|
|
11869
11793
|
product_type: string;
|
|
11870
11794
|
} | undefined;
|
|
11871
11795
|
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;
|
|
11796
|
+
device_name?: string | undefined;
|
|
11892
11797
|
} | undefined;
|
|
11893
11798
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
11894
11799
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -13665,26 +13570,7 @@ declare const batch: z.ZodObject<{
|
|
|
13665
13570
|
product_type: string;
|
|
13666
13571
|
} | undefined;
|
|
13667
13572
|
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;
|
|
13573
|
+
device_name?: string | undefined;
|
|
13688
13574
|
} | undefined;
|
|
13689
13575
|
} & {
|
|
13690
13576
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -14323,26 +14209,7 @@ declare const batch: z.ZodObject<{
|
|
|
14323
14209
|
product_type: string;
|
|
14324
14210
|
} | undefined;
|
|
14325
14211
|
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;
|
|
14212
|
+
device_name?: string | undefined;
|
|
14346
14213
|
} | undefined;
|
|
14347
14214
|
} & {
|
|
14348
14215
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -15957,17 +15824,17 @@ declare const batch: z.ZodObject<{
|
|
|
15957
15824
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
15958
15825
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
15959
15826
|
}, "strip", z.ZodTypeAny, {
|
|
15960
|
-
key_id?: string | undefined;
|
|
15961
15827
|
endpoint_id?: string | undefined;
|
|
15962
15828
|
auto_join?: boolean | undefined;
|
|
15963
15829
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15830
|
+
key_id?: string | undefined;
|
|
15964
15831
|
key_issuing_request_id?: string | undefined;
|
|
15965
15832
|
door_names?: string[] | undefined;
|
|
15966
15833
|
}, {
|
|
15967
|
-
key_id?: string | undefined;
|
|
15968
15834
|
endpoint_id?: string | undefined;
|
|
15969
15835
|
auto_join?: boolean | undefined;
|
|
15970
15836
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15837
|
+
key_id?: string | undefined;
|
|
15971
15838
|
key_issuing_request_id?: string | undefined;
|
|
15972
15839
|
door_names?: string[] | undefined;
|
|
15973
15840
|
}>>;
|
|
@@ -16025,10 +15892,10 @@ declare const batch: z.ZodObject<{
|
|
|
16025
15892
|
credential_id?: string | undefined;
|
|
16026
15893
|
} | undefined;
|
|
16027
15894
|
assa_abloy_vostio_metadata?: {
|
|
16028
|
-
key_id?: string | undefined;
|
|
16029
15895
|
endpoint_id?: string | undefined;
|
|
16030
15896
|
auto_join?: boolean | undefined;
|
|
16031
15897
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15898
|
+
key_id?: string | undefined;
|
|
16032
15899
|
key_issuing_request_id?: string | undefined;
|
|
16033
15900
|
door_names?: string[] | undefined;
|
|
16034
15901
|
} | undefined;
|
|
@@ -16097,10 +15964,10 @@ declare const batch: z.ZodObject<{
|
|
|
16097
15964
|
credential_id?: string | undefined;
|
|
16098
15965
|
} | undefined;
|
|
16099
15966
|
assa_abloy_vostio_metadata?: {
|
|
16100
|
-
key_id?: string | undefined;
|
|
16101
15967
|
endpoint_id?: string | undefined;
|
|
16102
15968
|
auto_join?: boolean | undefined;
|
|
16103
15969
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
15970
|
+
key_id?: string | undefined;
|
|
16104
15971
|
key_issuing_request_id?: string | undefined;
|
|
16105
15972
|
door_names?: string[] | undefined;
|
|
16106
15973
|
} | undefined;
|
|
@@ -16267,17 +16134,17 @@ declare const batch: z.ZodObject<{
|
|
|
16267
16134
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16268
16135
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
16269
16136
|
}, "strip", z.ZodTypeAny, {
|
|
16270
|
-
key_id?: string | undefined;
|
|
16271
16137
|
endpoint_id?: string | undefined;
|
|
16272
16138
|
auto_join?: boolean | undefined;
|
|
16273
16139
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16140
|
+
key_id?: string | undefined;
|
|
16274
16141
|
key_issuing_request_id?: string | undefined;
|
|
16275
16142
|
door_names?: string[] | undefined;
|
|
16276
16143
|
}, {
|
|
16277
|
-
key_id?: string | undefined;
|
|
16278
16144
|
endpoint_id?: string | undefined;
|
|
16279
16145
|
auto_join?: boolean | undefined;
|
|
16280
16146
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16147
|
+
key_id?: string | undefined;
|
|
16281
16148
|
key_issuing_request_id?: string | undefined;
|
|
16282
16149
|
door_names?: string[] | undefined;
|
|
16283
16150
|
}>>;
|
|
@@ -16335,10 +16202,10 @@ declare const batch: z.ZodObject<{
|
|
|
16335
16202
|
credential_id?: string | undefined;
|
|
16336
16203
|
} | undefined;
|
|
16337
16204
|
assa_abloy_vostio_metadata?: {
|
|
16338
|
-
key_id?: string | undefined;
|
|
16339
16205
|
endpoint_id?: string | undefined;
|
|
16340
16206
|
auto_join?: boolean | undefined;
|
|
16341
16207
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16208
|
+
key_id?: string | undefined;
|
|
16342
16209
|
key_issuing_request_id?: string | undefined;
|
|
16343
16210
|
door_names?: string[] | undefined;
|
|
16344
16211
|
} | undefined;
|
|
@@ -16407,10 +16274,10 @@ declare const batch: z.ZodObject<{
|
|
|
16407
16274
|
credential_id?: string | undefined;
|
|
16408
16275
|
} | undefined;
|
|
16409
16276
|
assa_abloy_vostio_metadata?: {
|
|
16410
|
-
key_id?: string | undefined;
|
|
16411
16277
|
endpoint_id?: string | undefined;
|
|
16412
16278
|
auto_join?: boolean | undefined;
|
|
16413
16279
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16280
|
+
key_id?: string | undefined;
|
|
16414
16281
|
key_issuing_request_id?: string | undefined;
|
|
16415
16282
|
door_names?: string[] | undefined;
|
|
16416
16283
|
} | undefined;
|
|
@@ -16842,17 +16709,17 @@ declare const batch: z.ZodObject<{
|
|
|
16842
16709
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
16843
16710
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
16844
16711
|
}, "strip", z.ZodTypeAny, {
|
|
16845
|
-
key_id?: string | undefined;
|
|
16846
16712
|
endpoint_id?: string | undefined;
|
|
16847
16713
|
auto_join?: boolean | undefined;
|
|
16848
16714
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16715
|
+
key_id?: string | undefined;
|
|
16849
16716
|
key_issuing_request_id?: string | undefined;
|
|
16850
16717
|
door_names?: string[] | undefined;
|
|
16851
16718
|
}, {
|
|
16852
|
-
key_id?: string | undefined;
|
|
16853
16719
|
endpoint_id?: string | undefined;
|
|
16854
16720
|
auto_join?: boolean | undefined;
|
|
16855
16721
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16722
|
+
key_id?: string | undefined;
|
|
16856
16723
|
key_issuing_request_id?: string | undefined;
|
|
16857
16724
|
door_names?: string[] | undefined;
|
|
16858
16725
|
}>>;
|
|
@@ -16910,10 +16777,10 @@ declare const batch: z.ZodObject<{
|
|
|
16910
16777
|
credential_id?: string | undefined;
|
|
16911
16778
|
} | undefined;
|
|
16912
16779
|
assa_abloy_vostio_metadata?: {
|
|
16913
|
-
key_id?: string | undefined;
|
|
16914
16780
|
endpoint_id?: string | undefined;
|
|
16915
16781
|
auto_join?: boolean | undefined;
|
|
16916
16782
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16783
|
+
key_id?: string | undefined;
|
|
16917
16784
|
key_issuing_request_id?: string | undefined;
|
|
16918
16785
|
door_names?: string[] | undefined;
|
|
16919
16786
|
} | undefined;
|
|
@@ -16982,10 +16849,10 @@ declare const batch: z.ZodObject<{
|
|
|
16982
16849
|
credential_id?: string | undefined;
|
|
16983
16850
|
} | undefined;
|
|
16984
16851
|
assa_abloy_vostio_metadata?: {
|
|
16985
|
-
key_id?: string | undefined;
|
|
16986
16852
|
endpoint_id?: string | undefined;
|
|
16987
16853
|
auto_join?: boolean | undefined;
|
|
16988
16854
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
16855
|
+
key_id?: string | undefined;
|
|
16989
16856
|
key_issuing_request_id?: string | undefined;
|
|
16990
16857
|
door_names?: string[] | undefined;
|
|
16991
16858
|
} | undefined;
|
|
@@ -17151,17 +17018,17 @@ declare const batch: z.ZodObject<{
|
|
|
17151
17018
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
17152
17019
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
17153
17020
|
}, "strip", z.ZodTypeAny, {
|
|
17154
|
-
key_id?: string | undefined;
|
|
17155
17021
|
endpoint_id?: string | undefined;
|
|
17156
17022
|
auto_join?: boolean | undefined;
|
|
17157
17023
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17024
|
+
key_id?: string | undefined;
|
|
17158
17025
|
key_issuing_request_id?: string | undefined;
|
|
17159
17026
|
door_names?: string[] | undefined;
|
|
17160
17027
|
}, {
|
|
17161
|
-
key_id?: string | undefined;
|
|
17162
17028
|
endpoint_id?: string | undefined;
|
|
17163
17029
|
auto_join?: boolean | undefined;
|
|
17164
17030
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17031
|
+
key_id?: string | undefined;
|
|
17165
17032
|
key_issuing_request_id?: string | undefined;
|
|
17166
17033
|
door_names?: string[] | undefined;
|
|
17167
17034
|
}>>;
|
|
@@ -17219,10 +17086,10 @@ declare const batch: z.ZodObject<{
|
|
|
17219
17086
|
credential_id?: string | undefined;
|
|
17220
17087
|
} | undefined;
|
|
17221
17088
|
assa_abloy_vostio_metadata?: {
|
|
17222
|
-
key_id?: string | undefined;
|
|
17223
17089
|
endpoint_id?: string | undefined;
|
|
17224
17090
|
auto_join?: boolean | undefined;
|
|
17225
17091
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17092
|
+
key_id?: string | undefined;
|
|
17226
17093
|
key_issuing_request_id?: string | undefined;
|
|
17227
17094
|
door_names?: string[] | undefined;
|
|
17228
17095
|
} | undefined;
|
|
@@ -17291,10 +17158,10 @@ declare const batch: z.ZodObject<{
|
|
|
17291
17158
|
credential_id?: string | undefined;
|
|
17292
17159
|
} | undefined;
|
|
17293
17160
|
assa_abloy_vostio_metadata?: {
|
|
17294
|
-
key_id?: string | undefined;
|
|
17295
17161
|
endpoint_id?: string | undefined;
|
|
17296
17162
|
auto_join?: boolean | undefined;
|
|
17297
17163
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17164
|
+
key_id?: string | undefined;
|
|
17298
17165
|
key_issuing_request_id?: string | undefined;
|
|
17299
17166
|
door_names?: string[] | undefined;
|
|
17300
17167
|
} | undefined;
|
|
@@ -17400,10 +17267,10 @@ declare const batch: z.ZodObject<{
|
|
|
17400
17267
|
credential_id?: string | undefined;
|
|
17401
17268
|
} | undefined;
|
|
17402
17269
|
assa_abloy_vostio_metadata?: {
|
|
17403
|
-
key_id?: string | undefined;
|
|
17404
17270
|
endpoint_id?: string | undefined;
|
|
17405
17271
|
auto_join?: boolean | undefined;
|
|
17406
17272
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17273
|
+
key_id?: string | undefined;
|
|
17407
17274
|
key_issuing_request_id?: string | undefined;
|
|
17408
17275
|
door_names?: string[] | undefined;
|
|
17409
17276
|
} | undefined;
|
|
@@ -17472,10 +17339,10 @@ declare const batch: z.ZodObject<{
|
|
|
17472
17339
|
credential_id?: string | undefined;
|
|
17473
17340
|
} | undefined;
|
|
17474
17341
|
assa_abloy_vostio_metadata?: {
|
|
17475
|
-
key_id?: string | undefined;
|
|
17476
17342
|
endpoint_id?: string | undefined;
|
|
17477
17343
|
auto_join?: boolean | undefined;
|
|
17478
17344
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17345
|
+
key_id?: string | undefined;
|
|
17479
17346
|
key_issuing_request_id?: string | undefined;
|
|
17480
17347
|
door_names?: string[] | undefined;
|
|
17481
17348
|
} | undefined;
|
|
@@ -17571,10 +17438,10 @@ declare const batch: z.ZodObject<{
|
|
|
17571
17438
|
credential_id?: string | undefined;
|
|
17572
17439
|
} | undefined;
|
|
17573
17440
|
assa_abloy_vostio_metadata?: {
|
|
17574
|
-
key_id?: string | undefined;
|
|
17575
17441
|
endpoint_id?: string | undefined;
|
|
17576
17442
|
auto_join?: boolean | undefined;
|
|
17577
17443
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17444
|
+
key_id?: string | undefined;
|
|
17578
17445
|
key_issuing_request_id?: string | undefined;
|
|
17579
17446
|
door_names?: string[] | undefined;
|
|
17580
17447
|
} | undefined;
|
|
@@ -17643,10 +17510,10 @@ declare const batch: z.ZodObject<{
|
|
|
17643
17510
|
credential_id?: string | undefined;
|
|
17644
17511
|
} | undefined;
|
|
17645
17512
|
assa_abloy_vostio_metadata?: {
|
|
17646
|
-
key_id?: string | undefined;
|
|
17647
17513
|
endpoint_id?: string | undefined;
|
|
17648
17514
|
auto_join?: boolean | undefined;
|
|
17649
17515
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17516
|
+
key_id?: string | undefined;
|
|
17650
17517
|
key_issuing_request_id?: string | undefined;
|
|
17651
17518
|
door_names?: string[] | undefined;
|
|
17652
17519
|
} | undefined;
|
|
@@ -17747,10 +17614,10 @@ declare const batch: z.ZodObject<{
|
|
|
17747
17614
|
credential_id?: string | undefined;
|
|
17748
17615
|
} | undefined;
|
|
17749
17616
|
assa_abloy_vostio_metadata?: {
|
|
17750
|
-
key_id?: string | undefined;
|
|
17751
17617
|
endpoint_id?: string | undefined;
|
|
17752
17618
|
auto_join?: boolean | undefined;
|
|
17753
17619
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17620
|
+
key_id?: string | undefined;
|
|
17754
17621
|
key_issuing_request_id?: string | undefined;
|
|
17755
17622
|
door_names?: string[] | undefined;
|
|
17756
17623
|
} | undefined;
|
|
@@ -17819,10 +17686,10 @@ declare const batch: z.ZodObject<{
|
|
|
17819
17686
|
credential_id?: string | undefined;
|
|
17820
17687
|
} | undefined;
|
|
17821
17688
|
assa_abloy_vostio_metadata?: {
|
|
17822
|
-
key_id?: string | undefined;
|
|
17823
17689
|
endpoint_id?: string | undefined;
|
|
17824
17690
|
auto_join?: boolean | undefined;
|
|
17825
17691
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17692
|
+
key_id?: string | undefined;
|
|
17826
17693
|
key_issuing_request_id?: string | undefined;
|
|
17827
17694
|
door_names?: string[] | undefined;
|
|
17828
17695
|
} | undefined;
|
|
@@ -17924,10 +17791,10 @@ declare const batch: z.ZodObject<{
|
|
|
17924
17791
|
credential_id?: string | undefined;
|
|
17925
17792
|
} | undefined;
|
|
17926
17793
|
assa_abloy_vostio_metadata?: {
|
|
17927
|
-
key_id?: string | undefined;
|
|
17928
17794
|
endpoint_id?: string | undefined;
|
|
17929
17795
|
auto_join?: boolean | undefined;
|
|
17930
17796
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17797
|
+
key_id?: string | undefined;
|
|
17931
17798
|
key_issuing_request_id?: string | undefined;
|
|
17932
17799
|
door_names?: string[] | undefined;
|
|
17933
17800
|
} | undefined;
|
|
@@ -17996,10 +17863,10 @@ declare const batch: z.ZodObject<{
|
|
|
17996
17863
|
credential_id?: string | undefined;
|
|
17997
17864
|
} | undefined;
|
|
17998
17865
|
assa_abloy_vostio_metadata?: {
|
|
17999
|
-
key_id?: string | undefined;
|
|
18000
17866
|
endpoint_id?: string | undefined;
|
|
18001
17867
|
auto_join?: boolean | undefined;
|
|
18002
17868
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
17869
|
+
key_id?: string | undefined;
|
|
18003
17870
|
key_issuing_request_id?: string | undefined;
|
|
18004
17871
|
door_names?: string[] | undefined;
|
|
18005
17872
|
} | undefined;
|
|
@@ -18260,17 +18127,17 @@ declare const batch: z.ZodObject<{
|
|
|
18260
18127
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18261
18128
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
18262
18129
|
}, "strip", z.ZodTypeAny, {
|
|
18263
|
-
key_id?: string | undefined;
|
|
18264
18130
|
endpoint_id?: string | undefined;
|
|
18265
18131
|
auto_join?: boolean | undefined;
|
|
18266
18132
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18133
|
+
key_id?: string | undefined;
|
|
18267
18134
|
key_issuing_request_id?: string | undefined;
|
|
18268
18135
|
door_names?: string[] | undefined;
|
|
18269
18136
|
}, {
|
|
18270
|
-
key_id?: string | undefined;
|
|
18271
18137
|
endpoint_id?: string | undefined;
|
|
18272
18138
|
auto_join?: boolean | undefined;
|
|
18273
18139
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18140
|
+
key_id?: string | undefined;
|
|
18274
18141
|
key_issuing_request_id?: string | undefined;
|
|
18275
18142
|
door_names?: string[] | undefined;
|
|
18276
18143
|
}>>;
|
|
@@ -18328,10 +18195,10 @@ declare const batch: z.ZodObject<{
|
|
|
18328
18195
|
credential_id?: string | undefined;
|
|
18329
18196
|
} | undefined;
|
|
18330
18197
|
assa_abloy_vostio_metadata?: {
|
|
18331
|
-
key_id?: string | undefined;
|
|
18332
18198
|
endpoint_id?: string | undefined;
|
|
18333
18199
|
auto_join?: boolean | undefined;
|
|
18334
18200
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18201
|
+
key_id?: string | undefined;
|
|
18335
18202
|
key_issuing_request_id?: string | undefined;
|
|
18336
18203
|
door_names?: string[] | undefined;
|
|
18337
18204
|
} | undefined;
|
|
@@ -18400,10 +18267,10 @@ declare const batch: z.ZodObject<{
|
|
|
18400
18267
|
credential_id?: string | undefined;
|
|
18401
18268
|
} | undefined;
|
|
18402
18269
|
assa_abloy_vostio_metadata?: {
|
|
18403
|
-
key_id?: string | undefined;
|
|
18404
18270
|
endpoint_id?: string | undefined;
|
|
18405
18271
|
auto_join?: boolean | undefined;
|
|
18406
18272
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18273
|
+
key_id?: string | undefined;
|
|
18407
18274
|
key_issuing_request_id?: string | undefined;
|
|
18408
18275
|
door_names?: string[] | undefined;
|
|
18409
18276
|
} | undefined;
|
|
@@ -18569,17 +18436,17 @@ declare const batch: z.ZodObject<{
|
|
|
18569
18436
|
door_names: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
18570
18437
|
endpoint_id: z.ZodOptional<z.ZodString>;
|
|
18571
18438
|
}, "strip", z.ZodTypeAny, {
|
|
18572
|
-
key_id?: string | undefined;
|
|
18573
18439
|
endpoint_id?: string | undefined;
|
|
18574
18440
|
auto_join?: boolean | undefined;
|
|
18575
18441
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18442
|
+
key_id?: string | undefined;
|
|
18576
18443
|
key_issuing_request_id?: string | undefined;
|
|
18577
18444
|
door_names?: string[] | undefined;
|
|
18578
18445
|
}, {
|
|
18579
|
-
key_id?: string | undefined;
|
|
18580
18446
|
endpoint_id?: string | undefined;
|
|
18581
18447
|
auto_join?: boolean | undefined;
|
|
18582
18448
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18449
|
+
key_id?: string | undefined;
|
|
18583
18450
|
key_issuing_request_id?: string | undefined;
|
|
18584
18451
|
door_names?: string[] | undefined;
|
|
18585
18452
|
}>>;
|
|
@@ -18637,10 +18504,10 @@ declare const batch: z.ZodObject<{
|
|
|
18637
18504
|
credential_id?: string | undefined;
|
|
18638
18505
|
} | undefined;
|
|
18639
18506
|
assa_abloy_vostio_metadata?: {
|
|
18640
|
-
key_id?: string | undefined;
|
|
18641
18507
|
endpoint_id?: string | undefined;
|
|
18642
18508
|
auto_join?: boolean | undefined;
|
|
18643
18509
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18510
|
+
key_id?: string | undefined;
|
|
18644
18511
|
key_issuing_request_id?: string | undefined;
|
|
18645
18512
|
door_names?: string[] | undefined;
|
|
18646
18513
|
} | undefined;
|
|
@@ -18709,10 +18576,10 @@ declare const batch: z.ZodObject<{
|
|
|
18709
18576
|
credential_id?: string | undefined;
|
|
18710
18577
|
} | undefined;
|
|
18711
18578
|
assa_abloy_vostio_metadata?: {
|
|
18712
|
-
key_id?: string | undefined;
|
|
18713
18579
|
endpoint_id?: string | undefined;
|
|
18714
18580
|
auto_join?: boolean | undefined;
|
|
18715
18581
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18582
|
+
key_id?: string | undefined;
|
|
18716
18583
|
key_issuing_request_id?: string | undefined;
|
|
18717
18584
|
door_names?: string[] | undefined;
|
|
18718
18585
|
} | undefined;
|
|
@@ -18786,10 +18653,10 @@ declare const batch: z.ZodObject<{
|
|
|
18786
18653
|
credential_id?: string | undefined;
|
|
18787
18654
|
} | undefined;
|
|
18788
18655
|
assa_abloy_vostio_metadata?: {
|
|
18789
|
-
key_id?: string | undefined;
|
|
18790
18656
|
endpoint_id?: string | undefined;
|
|
18791
18657
|
auto_join?: boolean | undefined;
|
|
18792
18658
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18659
|
+
key_id?: string | undefined;
|
|
18793
18660
|
key_issuing_request_id?: string | undefined;
|
|
18794
18661
|
door_names?: string[] | undefined;
|
|
18795
18662
|
} | undefined;
|
|
@@ -18858,10 +18725,10 @@ declare const batch: z.ZodObject<{
|
|
|
18858
18725
|
credential_id?: string | undefined;
|
|
18859
18726
|
} | undefined;
|
|
18860
18727
|
assa_abloy_vostio_metadata?: {
|
|
18861
|
-
key_id?: string | undefined;
|
|
18862
18728
|
endpoint_id?: string | undefined;
|
|
18863
18729
|
auto_join?: boolean | undefined;
|
|
18864
18730
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18731
|
+
key_id?: string | undefined;
|
|
18865
18732
|
key_issuing_request_id?: string | undefined;
|
|
18866
18733
|
door_names?: string[] | undefined;
|
|
18867
18734
|
} | undefined;
|
|
@@ -18936,10 +18803,10 @@ declare const batch: z.ZodObject<{
|
|
|
18936
18803
|
credential_id?: string | undefined;
|
|
18937
18804
|
} | undefined;
|
|
18938
18805
|
assa_abloy_vostio_metadata?: {
|
|
18939
|
-
key_id?: string | undefined;
|
|
18940
18806
|
endpoint_id?: string | undefined;
|
|
18941
18807
|
auto_join?: boolean | undefined;
|
|
18942
18808
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18809
|
+
key_id?: string | undefined;
|
|
18943
18810
|
key_issuing_request_id?: string | undefined;
|
|
18944
18811
|
door_names?: string[] | undefined;
|
|
18945
18812
|
} | undefined;
|
|
@@ -19008,10 +18875,10 @@ declare const batch: z.ZodObject<{
|
|
|
19008
18875
|
credential_id?: string | undefined;
|
|
19009
18876
|
} | undefined;
|
|
19010
18877
|
assa_abloy_vostio_metadata?: {
|
|
19011
|
-
key_id?: string | undefined;
|
|
19012
18878
|
endpoint_id?: string | undefined;
|
|
19013
18879
|
auto_join?: boolean | undefined;
|
|
19014
18880
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
18881
|
+
key_id?: string | undefined;
|
|
19015
18882
|
key_issuing_request_id?: string | undefined;
|
|
19016
18883
|
door_names?: string[] | undefined;
|
|
19017
18884
|
} | undefined;
|
|
@@ -21904,68 +21771,11 @@ declare const batch: z.ZodObject<{
|
|
|
21904
21771
|
product_type: string;
|
|
21905
21772
|
}>>;
|
|
21906
21773
|
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;
|
|
21774
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
21927
21775
|
}, "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;
|
|
21776
|
+
device_name?: string | undefined;
|
|
21948
21777
|
}, {
|
|
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;
|
|
21778
|
+
device_name?: string | undefined;
|
|
21969
21779
|
}>>;
|
|
21970
21780
|
}, "strip", z.ZodTypeAny, {
|
|
21971
21781
|
ecobee_metadata?: {
|
|
@@ -22201,26 +22011,7 @@ declare const batch: z.ZodObject<{
|
|
|
22201
22011
|
product_type: string;
|
|
22202
22012
|
} | undefined;
|
|
22203
22013
|
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;
|
|
22014
|
+
device_name?: string | undefined;
|
|
22224
22015
|
} | undefined;
|
|
22225
22016
|
}, {
|
|
22226
22017
|
ecobee_metadata?: {
|
|
@@ -22456,26 +22247,7 @@ declare const batch: z.ZodObject<{
|
|
|
22456
22247
|
product_type: string;
|
|
22457
22248
|
} | undefined;
|
|
22458
22249
|
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;
|
|
22250
|
+
device_name?: string | undefined;
|
|
22479
22251
|
} | undefined;
|
|
22480
22252
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
22481
22253
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -27494,13 +27266,13 @@ declare const batch: z.ZodObject<{
|
|
|
27494
27266
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
27495
27267
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
27496
27268
|
}, "strip", z.ZodTypeAny, {
|
|
27269
|
+
logo_url?: string | undefined;
|
|
27497
27270
|
primary_color?: string | undefined;
|
|
27498
27271
|
secondary_color?: string | undefined;
|
|
27499
|
-
logo_url?: string | undefined;
|
|
27500
27272
|
}, {
|
|
27273
|
+
logo_url?: string | undefined;
|
|
27501
27274
|
primary_color?: string | undefined;
|
|
27502
27275
|
secondary_color?: string | undefined;
|
|
27503
|
-
logo_url?: string | undefined;
|
|
27504
27276
|
}>>;
|
|
27505
27277
|
}, "strip", z.ZodTypeAny, {
|
|
27506
27278
|
workspace_id: string;
|
|
@@ -27512,9 +27284,9 @@ declare const batch: z.ZodObject<{
|
|
|
27512
27284
|
instant_key_id: string;
|
|
27513
27285
|
customization_profile_id?: string | undefined;
|
|
27514
27286
|
customization?: {
|
|
27287
|
+
logo_url?: string | undefined;
|
|
27515
27288
|
primary_color?: string | undefined;
|
|
27516
27289
|
secondary_color?: string | undefined;
|
|
27517
|
-
logo_url?: string | undefined;
|
|
27518
27290
|
} | undefined;
|
|
27519
27291
|
}, {
|
|
27520
27292
|
workspace_id: string;
|
|
@@ -27526,9 +27298,9 @@ declare const batch: z.ZodObject<{
|
|
|
27526
27298
|
instant_key_id: string;
|
|
27527
27299
|
customization_profile_id?: string | undefined;
|
|
27528
27300
|
customization?: {
|
|
27301
|
+
logo_url?: string | undefined;
|
|
27529
27302
|
primary_color?: string | undefined;
|
|
27530
27303
|
secondary_color?: string | undefined;
|
|
27531
|
-
logo_url?: string | undefined;
|
|
27532
27304
|
} | undefined;
|
|
27533
27305
|
}>, "many">>;
|
|
27534
27306
|
access_codes: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -30681,6 +30453,31 @@ declare const batch: z.ZodObject<{
|
|
|
30681
30453
|
noise_threshold_decibels: number;
|
|
30682
30454
|
noise_threshold_nrs?: number | undefined;
|
|
30683
30455
|
}>, "many">>;
|
|
30456
|
+
customization_profiles: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
30457
|
+
workspace_id: z.ZodString;
|
|
30458
|
+
name: z.ZodNullable<z.ZodString>;
|
|
30459
|
+
customization_profile_id: z.ZodString;
|
|
30460
|
+
created_at: z.ZodString;
|
|
30461
|
+
logo_url: z.ZodOptional<z.ZodString>;
|
|
30462
|
+
primary_color: z.ZodOptional<z.ZodString>;
|
|
30463
|
+
secondary_color: z.ZodOptional<z.ZodString>;
|
|
30464
|
+
}, "strip", z.ZodTypeAny, {
|
|
30465
|
+
name: string | null;
|
|
30466
|
+
workspace_id: string;
|
|
30467
|
+
created_at: string;
|
|
30468
|
+
customization_profile_id: string;
|
|
30469
|
+
logo_url?: string | undefined;
|
|
30470
|
+
primary_color?: string | undefined;
|
|
30471
|
+
secondary_color?: string | undefined;
|
|
30472
|
+
}, {
|
|
30473
|
+
name: string | null;
|
|
30474
|
+
workspace_id: string;
|
|
30475
|
+
created_at: string;
|
|
30476
|
+
customization_profile_id: string;
|
|
30477
|
+
logo_url?: string | undefined;
|
|
30478
|
+
primary_color?: string | undefined;
|
|
30479
|
+
secondary_color?: string | undefined;
|
|
30480
|
+
}>, "many">>;
|
|
30684
30481
|
}, "strip", z.ZodTypeAny, {
|
|
30685
30482
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
30686
30483
|
thermostat_daily_programs?: {
|
|
@@ -31169,26 +30966,7 @@ declare const batch: z.ZodObject<{
|
|
|
31169
30966
|
product_type: string;
|
|
31170
30967
|
} | undefined;
|
|
31171
30968
|
keynest_metadata?: {
|
|
31172
|
-
device_name
|
|
31173
|
-
key_id: string;
|
|
31174
|
-
property_id: string | null;
|
|
31175
|
-
property_postcode: string | null;
|
|
31176
|
-
key_notes: string | null;
|
|
31177
|
-
subscription_plan: string;
|
|
31178
|
-
status_type: string;
|
|
31179
|
-
current_or_last_store_id: number;
|
|
31180
|
-
last_movement: string;
|
|
31181
|
-
address: string | null;
|
|
31182
|
-
current_status: string | null;
|
|
31183
|
-
current_user_name: string | null;
|
|
31184
|
-
current_user_email: string | null;
|
|
31185
|
-
current_user_phone_number: string | null;
|
|
31186
|
-
current_user_company: string | null;
|
|
31187
|
-
handover_method: string | null;
|
|
31188
|
-
keynest_app_user: string | null;
|
|
31189
|
-
default_office_id: number;
|
|
31190
|
-
fob_id: number;
|
|
31191
|
-
has_photo: boolean;
|
|
30969
|
+
device_name?: string | undefined;
|
|
31192
30970
|
} | undefined;
|
|
31193
30971
|
} & {
|
|
31194
30972
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -31772,10 +31550,10 @@ declare const batch: z.ZodObject<{
|
|
|
31772
31550
|
credential_id?: string | undefined;
|
|
31773
31551
|
} | undefined;
|
|
31774
31552
|
assa_abloy_vostio_metadata?: {
|
|
31775
|
-
key_id?: string | undefined;
|
|
31776
31553
|
endpoint_id?: string | undefined;
|
|
31777
31554
|
auto_join?: boolean | undefined;
|
|
31778
31555
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31556
|
+
key_id?: string | undefined;
|
|
31779
31557
|
key_issuing_request_id?: string | undefined;
|
|
31780
31558
|
door_names?: string[] | undefined;
|
|
31781
31559
|
} | undefined;
|
|
@@ -31845,10 +31623,10 @@ declare const batch: z.ZodObject<{
|
|
|
31845
31623
|
credential_id?: string | undefined;
|
|
31846
31624
|
} | undefined;
|
|
31847
31625
|
assa_abloy_vostio_metadata?: {
|
|
31848
|
-
key_id?: string | undefined;
|
|
31849
31626
|
endpoint_id?: string | undefined;
|
|
31850
31627
|
auto_join?: boolean | undefined;
|
|
31851
31628
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31629
|
+
key_id?: string | undefined;
|
|
31852
31630
|
key_issuing_request_id?: string | undefined;
|
|
31853
31631
|
door_names?: string[] | undefined;
|
|
31854
31632
|
} | undefined;
|
|
@@ -32104,10 +31882,10 @@ declare const batch: z.ZodObject<{
|
|
|
32104
31882
|
credential_id?: string | undefined;
|
|
32105
31883
|
} | undefined;
|
|
32106
31884
|
assa_abloy_vostio_metadata?: {
|
|
32107
|
-
key_id?: string | undefined;
|
|
32108
31885
|
endpoint_id?: string | undefined;
|
|
32109
31886
|
auto_join?: boolean | undefined;
|
|
32110
31887
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31888
|
+
key_id?: string | undefined;
|
|
32111
31889
|
key_issuing_request_id?: string | undefined;
|
|
32112
31890
|
door_names?: string[] | undefined;
|
|
32113
31891
|
} | undefined;
|
|
@@ -32176,10 +31954,10 @@ declare const batch: z.ZodObject<{
|
|
|
32176
31954
|
credential_id?: string | undefined;
|
|
32177
31955
|
} | undefined;
|
|
32178
31956
|
assa_abloy_vostio_metadata?: {
|
|
32179
|
-
key_id?: string | undefined;
|
|
32180
31957
|
endpoint_id?: string | undefined;
|
|
32181
31958
|
auto_join?: boolean | undefined;
|
|
32182
31959
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
31960
|
+
key_id?: string | undefined;
|
|
32183
31961
|
key_issuing_request_id?: string | undefined;
|
|
32184
31962
|
door_names?: string[] | undefined;
|
|
32185
31963
|
} | undefined;
|
|
@@ -32370,10 +32148,10 @@ declare const batch: z.ZodObject<{
|
|
|
32370
32148
|
credential_id?: string | undefined;
|
|
32371
32149
|
} | undefined;
|
|
32372
32150
|
assa_abloy_vostio_metadata?: {
|
|
32373
|
-
key_id?: string | undefined;
|
|
32374
32151
|
endpoint_id?: string | undefined;
|
|
32375
32152
|
auto_join?: boolean | undefined;
|
|
32376
32153
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32154
|
+
key_id?: string | undefined;
|
|
32377
32155
|
key_issuing_request_id?: string | undefined;
|
|
32378
32156
|
door_names?: string[] | undefined;
|
|
32379
32157
|
} | undefined;
|
|
@@ -32442,10 +32220,10 @@ declare const batch: z.ZodObject<{
|
|
|
32442
32220
|
credential_id?: string | undefined;
|
|
32443
32221
|
} | undefined;
|
|
32444
32222
|
assa_abloy_vostio_metadata?: {
|
|
32445
|
-
key_id?: string | undefined;
|
|
32446
32223
|
endpoint_id?: string | undefined;
|
|
32447
32224
|
auto_join?: boolean | undefined;
|
|
32448
32225
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
32226
|
+
key_id?: string | undefined;
|
|
32449
32227
|
key_issuing_request_id?: string | undefined;
|
|
32450
32228
|
door_names?: string[] | undefined;
|
|
32451
32229
|
} | undefined;
|
|
@@ -33903,9 +33681,9 @@ declare const batch: z.ZodObject<{
|
|
|
33903
33681
|
instant_key_id: string;
|
|
33904
33682
|
customization_profile_id?: string | undefined;
|
|
33905
33683
|
customization?: {
|
|
33684
|
+
logo_url?: string | undefined;
|
|
33906
33685
|
primary_color?: string | undefined;
|
|
33907
33686
|
secondary_color?: string | undefined;
|
|
33908
|
-
logo_url?: string | undefined;
|
|
33909
33687
|
} | undefined;
|
|
33910
33688
|
}[] | undefined;
|
|
33911
33689
|
access_codes?: {
|
|
@@ -34524,6 +34302,15 @@ declare const batch: z.ZodObject<{
|
|
|
34524
34302
|
noise_threshold_decibels: number;
|
|
34525
34303
|
noise_threshold_nrs?: number | undefined;
|
|
34526
34304
|
}[] | undefined;
|
|
34305
|
+
customization_profiles?: {
|
|
34306
|
+
name: string | null;
|
|
34307
|
+
workspace_id: string;
|
|
34308
|
+
created_at: string;
|
|
34309
|
+
customization_profile_id: string;
|
|
34310
|
+
logo_url?: string | undefined;
|
|
34311
|
+
primary_color?: string | undefined;
|
|
34312
|
+
secondary_color?: string | undefined;
|
|
34313
|
+
}[] | undefined;
|
|
34527
34314
|
}, {
|
|
34528
34315
|
batch_type: "spaces" | "access_grants" | "access_methods" | "workspaces";
|
|
34529
34316
|
thermostat_daily_programs?: {
|
|
@@ -35012,26 +34799,7 @@ declare const batch: z.ZodObject<{
|
|
|
35012
34799
|
product_type: string;
|
|
35013
34800
|
} | undefined;
|
|
35014
34801
|
keynest_metadata?: {
|
|
35015
|
-
device_name
|
|
35016
|
-
key_id: string;
|
|
35017
|
-
property_id: string | null;
|
|
35018
|
-
property_postcode: string | null;
|
|
35019
|
-
key_notes: string | null;
|
|
35020
|
-
subscription_plan: string;
|
|
35021
|
-
status_type: string;
|
|
35022
|
-
current_or_last_store_id: number;
|
|
35023
|
-
last_movement: string;
|
|
35024
|
-
address: string | null;
|
|
35025
|
-
current_status: string | null;
|
|
35026
|
-
current_user_name: string | null;
|
|
35027
|
-
current_user_email: string | null;
|
|
35028
|
-
current_user_phone_number: string | null;
|
|
35029
|
-
current_user_company: string | null;
|
|
35030
|
-
handover_method: string | null;
|
|
35031
|
-
keynest_app_user: string | null;
|
|
35032
|
-
default_office_id: number;
|
|
35033
|
-
fob_id: number;
|
|
35034
|
-
has_photo: boolean;
|
|
34802
|
+
device_name?: string | undefined;
|
|
35035
34803
|
} | undefined;
|
|
35036
34804
|
} & {
|
|
35037
34805
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -35615,10 +35383,10 @@ declare const batch: z.ZodObject<{
|
|
|
35615
35383
|
credential_id?: string | undefined;
|
|
35616
35384
|
} | undefined;
|
|
35617
35385
|
assa_abloy_vostio_metadata?: {
|
|
35618
|
-
key_id?: string | undefined;
|
|
35619
35386
|
endpoint_id?: string | undefined;
|
|
35620
35387
|
auto_join?: boolean | undefined;
|
|
35621
35388
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35389
|
+
key_id?: string | undefined;
|
|
35622
35390
|
key_issuing_request_id?: string | undefined;
|
|
35623
35391
|
door_names?: string[] | undefined;
|
|
35624
35392
|
} | undefined;
|
|
@@ -35688,10 +35456,10 @@ declare const batch: z.ZodObject<{
|
|
|
35688
35456
|
credential_id?: string | undefined;
|
|
35689
35457
|
} | undefined;
|
|
35690
35458
|
assa_abloy_vostio_metadata?: {
|
|
35691
|
-
key_id?: string | undefined;
|
|
35692
35459
|
endpoint_id?: string | undefined;
|
|
35693
35460
|
auto_join?: boolean | undefined;
|
|
35694
35461
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35462
|
+
key_id?: string | undefined;
|
|
35695
35463
|
key_issuing_request_id?: string | undefined;
|
|
35696
35464
|
door_names?: string[] | undefined;
|
|
35697
35465
|
} | undefined;
|
|
@@ -35947,10 +35715,10 @@ declare const batch: z.ZodObject<{
|
|
|
35947
35715
|
credential_id?: string | undefined;
|
|
35948
35716
|
} | undefined;
|
|
35949
35717
|
assa_abloy_vostio_metadata?: {
|
|
35950
|
-
key_id?: string | undefined;
|
|
35951
35718
|
endpoint_id?: string | undefined;
|
|
35952
35719
|
auto_join?: boolean | undefined;
|
|
35953
35720
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35721
|
+
key_id?: string | undefined;
|
|
35954
35722
|
key_issuing_request_id?: string | undefined;
|
|
35955
35723
|
door_names?: string[] | undefined;
|
|
35956
35724
|
} | undefined;
|
|
@@ -36019,10 +35787,10 @@ declare const batch: z.ZodObject<{
|
|
|
36019
35787
|
credential_id?: string | undefined;
|
|
36020
35788
|
} | undefined;
|
|
36021
35789
|
assa_abloy_vostio_metadata?: {
|
|
36022
|
-
key_id?: string | undefined;
|
|
36023
35790
|
endpoint_id?: string | undefined;
|
|
36024
35791
|
auto_join?: boolean | undefined;
|
|
36025
35792
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35793
|
+
key_id?: string | undefined;
|
|
36026
35794
|
key_issuing_request_id?: string | undefined;
|
|
36027
35795
|
door_names?: string[] | undefined;
|
|
36028
35796
|
} | undefined;
|
|
@@ -36213,10 +35981,10 @@ declare const batch: z.ZodObject<{
|
|
|
36213
35981
|
credential_id?: string | undefined;
|
|
36214
35982
|
} | undefined;
|
|
36215
35983
|
assa_abloy_vostio_metadata?: {
|
|
36216
|
-
key_id?: string | undefined;
|
|
36217
35984
|
endpoint_id?: string | undefined;
|
|
36218
35985
|
auto_join?: boolean | undefined;
|
|
36219
35986
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
35987
|
+
key_id?: string | undefined;
|
|
36220
35988
|
key_issuing_request_id?: string | undefined;
|
|
36221
35989
|
door_names?: string[] | undefined;
|
|
36222
35990
|
} | undefined;
|
|
@@ -36285,10 +36053,10 @@ declare const batch: z.ZodObject<{
|
|
|
36285
36053
|
credential_id?: string | undefined;
|
|
36286
36054
|
} | undefined;
|
|
36287
36055
|
assa_abloy_vostio_metadata?: {
|
|
36288
|
-
key_id?: string | undefined;
|
|
36289
36056
|
endpoint_id?: string | undefined;
|
|
36290
36057
|
auto_join?: boolean | undefined;
|
|
36291
36058
|
override_guest_acs_entrance_ids?: string[] | undefined;
|
|
36059
|
+
key_id?: string | undefined;
|
|
36292
36060
|
key_issuing_request_id?: string | undefined;
|
|
36293
36061
|
door_names?: string[] | undefined;
|
|
36294
36062
|
} | undefined;
|
|
@@ -37746,9 +37514,9 @@ declare const batch: z.ZodObject<{
|
|
|
37746
37514
|
instant_key_id: string;
|
|
37747
37515
|
customization_profile_id?: string | undefined;
|
|
37748
37516
|
customization?: {
|
|
37517
|
+
logo_url?: string | undefined;
|
|
37749
37518
|
primary_color?: string | undefined;
|
|
37750
37519
|
secondary_color?: string | undefined;
|
|
37751
|
-
logo_url?: string | undefined;
|
|
37752
37520
|
} | undefined;
|
|
37753
37521
|
}[] | undefined;
|
|
37754
37522
|
access_codes?: {
|
|
@@ -38367,6 +38135,15 @@ declare const batch: z.ZodObject<{
|
|
|
38367
38135
|
noise_threshold_decibels: number;
|
|
38368
38136
|
noise_threshold_nrs?: number | undefined;
|
|
38369
38137
|
}[] | undefined;
|
|
38138
|
+
customization_profiles?: {
|
|
38139
|
+
name: string | null;
|
|
38140
|
+
workspace_id: string;
|
|
38141
|
+
created_at: string;
|
|
38142
|
+
customization_profile_id: string;
|
|
38143
|
+
logo_url?: string | undefined;
|
|
38144
|
+
primary_color?: string | undefined;
|
|
38145
|
+
secondary_color?: string | undefined;
|
|
38146
|
+
}[] | undefined;
|
|
38370
38147
|
}>;
|
|
38371
38148
|
type Batch = z.infer<typeof batch>;
|
|
38372
38149
|
|
|
@@ -39225,18 +39002,19 @@ declare const customization_profile: z.ZodObject<{
|
|
|
39225
39002
|
workspace_id: string;
|
|
39226
39003
|
created_at: string;
|
|
39227
39004
|
customization_profile_id: string;
|
|
39005
|
+
logo_url?: string | undefined;
|
|
39228
39006
|
primary_color?: string | undefined;
|
|
39229
39007
|
secondary_color?: string | undefined;
|
|
39230
|
-
logo_url?: string | undefined;
|
|
39231
39008
|
}, {
|
|
39232
39009
|
name: string | null;
|
|
39233
39010
|
workspace_id: string;
|
|
39234
39011
|
created_at: string;
|
|
39235
39012
|
customization_profile_id: string;
|
|
39013
|
+
logo_url?: string | undefined;
|
|
39236
39014
|
primary_color?: string | undefined;
|
|
39237
39015
|
secondary_color?: string | undefined;
|
|
39238
|
-
logo_url?: string | undefined;
|
|
39239
39016
|
}>;
|
|
39017
|
+
type CustomizationProfile = z.infer<typeof customization_profile>;
|
|
39240
39018
|
|
|
39241
39019
|
declare const device_error: z.ZodDiscriminatedUnion<"error_code", [z.ZodObject<{
|
|
39242
39020
|
message: z.ZodString;
|
|
@@ -40653,68 +40431,11 @@ declare const device: z.ZodObject<{
|
|
|
40653
40431
|
product_type: string;
|
|
40654
40432
|
}>>;
|
|
40655
40433
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
40656
|
-
|
|
40657
|
-
device_name: z.ZodString;
|
|
40658
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
40659
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
40660
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
40661
|
-
subscription_plan: z.ZodString;
|
|
40662
|
-
status_type: z.ZodString;
|
|
40663
|
-
current_or_last_store_id: z.ZodNumber;
|
|
40664
|
-
last_movement: z.ZodString;
|
|
40665
|
-
address: z.ZodNullable<z.ZodString>;
|
|
40666
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
40667
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
40668
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
40669
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
40670
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
40671
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
40672
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
40673
|
-
default_office_id: z.ZodNumber;
|
|
40674
|
-
fob_id: z.ZodNumber;
|
|
40675
|
-
has_photo: z.ZodBoolean;
|
|
40434
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
40676
40435
|
}, "strip", z.ZodTypeAny, {
|
|
40677
|
-
device_name
|
|
40678
|
-
key_id: string;
|
|
40679
|
-
property_id: string | null;
|
|
40680
|
-
property_postcode: string | null;
|
|
40681
|
-
key_notes: string | null;
|
|
40682
|
-
subscription_plan: string;
|
|
40683
|
-
status_type: string;
|
|
40684
|
-
current_or_last_store_id: number;
|
|
40685
|
-
last_movement: string;
|
|
40686
|
-
address: string | null;
|
|
40687
|
-
current_status: string | null;
|
|
40688
|
-
current_user_name: string | null;
|
|
40689
|
-
current_user_email: string | null;
|
|
40690
|
-
current_user_phone_number: string | null;
|
|
40691
|
-
current_user_company: string | null;
|
|
40692
|
-
handover_method: string | null;
|
|
40693
|
-
keynest_app_user: string | null;
|
|
40694
|
-
default_office_id: number;
|
|
40695
|
-
fob_id: number;
|
|
40696
|
-
has_photo: boolean;
|
|
40436
|
+
device_name?: string | undefined;
|
|
40697
40437
|
}, {
|
|
40698
|
-
device_name
|
|
40699
|
-
key_id: string;
|
|
40700
|
-
property_id: string | null;
|
|
40701
|
-
property_postcode: string | null;
|
|
40702
|
-
key_notes: string | null;
|
|
40703
|
-
subscription_plan: string;
|
|
40704
|
-
status_type: string;
|
|
40705
|
-
current_or_last_store_id: number;
|
|
40706
|
-
last_movement: string;
|
|
40707
|
-
address: string | null;
|
|
40708
|
-
current_status: string | null;
|
|
40709
|
-
current_user_name: string | null;
|
|
40710
|
-
current_user_email: string | null;
|
|
40711
|
-
current_user_phone_number: string | null;
|
|
40712
|
-
current_user_company: string | null;
|
|
40713
|
-
handover_method: string | null;
|
|
40714
|
-
keynest_app_user: string | null;
|
|
40715
|
-
default_office_id: number;
|
|
40716
|
-
fob_id: number;
|
|
40717
|
-
has_photo: boolean;
|
|
40438
|
+
device_name?: string | undefined;
|
|
40718
40439
|
}>>;
|
|
40719
40440
|
}, "strip", z.ZodTypeAny, {
|
|
40720
40441
|
ecobee_metadata?: {
|
|
@@ -40950,26 +40671,7 @@ declare const device: z.ZodObject<{
|
|
|
40950
40671
|
product_type: string;
|
|
40951
40672
|
} | undefined;
|
|
40952
40673
|
keynest_metadata?: {
|
|
40953
|
-
device_name
|
|
40954
|
-
key_id: string;
|
|
40955
|
-
property_id: string | null;
|
|
40956
|
-
property_postcode: string | null;
|
|
40957
|
-
key_notes: string | null;
|
|
40958
|
-
subscription_plan: string;
|
|
40959
|
-
status_type: string;
|
|
40960
|
-
current_or_last_store_id: number;
|
|
40961
|
-
last_movement: string;
|
|
40962
|
-
address: string | null;
|
|
40963
|
-
current_status: string | null;
|
|
40964
|
-
current_user_name: string | null;
|
|
40965
|
-
current_user_email: string | null;
|
|
40966
|
-
current_user_phone_number: string | null;
|
|
40967
|
-
current_user_company: string | null;
|
|
40968
|
-
handover_method: string | null;
|
|
40969
|
-
keynest_app_user: string | null;
|
|
40970
|
-
default_office_id: number;
|
|
40971
|
-
fob_id: number;
|
|
40972
|
-
has_photo: boolean;
|
|
40674
|
+
device_name?: string | undefined;
|
|
40973
40675
|
} | undefined;
|
|
40974
40676
|
}, {
|
|
40975
40677
|
ecobee_metadata?: {
|
|
@@ -41205,26 +40907,7 @@ declare const device: z.ZodObject<{
|
|
|
41205
40907
|
product_type: string;
|
|
41206
40908
|
} | undefined;
|
|
41207
40909
|
keynest_metadata?: {
|
|
41208
|
-
device_name
|
|
41209
|
-
key_id: string;
|
|
41210
|
-
property_id: string | null;
|
|
41211
|
-
property_postcode: string | null;
|
|
41212
|
-
key_notes: string | null;
|
|
41213
|
-
subscription_plan: string;
|
|
41214
|
-
status_type: string;
|
|
41215
|
-
current_or_last_store_id: number;
|
|
41216
|
-
last_movement: string;
|
|
41217
|
-
address: string | null;
|
|
41218
|
-
current_status: string | null;
|
|
41219
|
-
current_user_name: string | null;
|
|
41220
|
-
current_user_email: string | null;
|
|
41221
|
-
current_user_phone_number: string | null;
|
|
41222
|
-
current_user_company: string | null;
|
|
41223
|
-
handover_method: string | null;
|
|
41224
|
-
keynest_app_user: string | null;
|
|
41225
|
-
default_office_id: number;
|
|
41226
|
-
fob_id: number;
|
|
41227
|
-
has_photo: boolean;
|
|
40910
|
+
device_name?: string | undefined;
|
|
41228
40911
|
} | undefined;
|
|
41229
40912
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
41230
40913
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -43001,26 +42684,7 @@ declare const device: z.ZodObject<{
|
|
|
43001
42684
|
product_type: string;
|
|
43002
42685
|
} | undefined;
|
|
43003
42686
|
keynest_metadata?: {
|
|
43004
|
-
device_name
|
|
43005
|
-
key_id: string;
|
|
43006
|
-
property_id: string | null;
|
|
43007
|
-
property_postcode: string | null;
|
|
43008
|
-
key_notes: string | null;
|
|
43009
|
-
subscription_plan: string;
|
|
43010
|
-
status_type: string;
|
|
43011
|
-
current_or_last_store_id: number;
|
|
43012
|
-
last_movement: string;
|
|
43013
|
-
address: string | null;
|
|
43014
|
-
current_status: string | null;
|
|
43015
|
-
current_user_name: string | null;
|
|
43016
|
-
current_user_email: string | null;
|
|
43017
|
-
current_user_phone_number: string | null;
|
|
43018
|
-
current_user_company: string | null;
|
|
43019
|
-
handover_method: string | null;
|
|
43020
|
-
keynest_app_user: string | null;
|
|
43021
|
-
default_office_id: number;
|
|
43022
|
-
fob_id: number;
|
|
43023
|
-
has_photo: boolean;
|
|
42687
|
+
device_name?: string | undefined;
|
|
43024
42688
|
} | undefined;
|
|
43025
42689
|
} & {
|
|
43026
42690
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -43659,26 +43323,7 @@ declare const device: z.ZodObject<{
|
|
|
43659
43323
|
product_type: string;
|
|
43660
43324
|
} | undefined;
|
|
43661
43325
|
keynest_metadata?: {
|
|
43662
|
-
device_name
|
|
43663
|
-
key_id: string;
|
|
43664
|
-
property_id: string | null;
|
|
43665
|
-
property_postcode: string | null;
|
|
43666
|
-
key_notes: string | null;
|
|
43667
|
-
subscription_plan: string;
|
|
43668
|
-
status_type: string;
|
|
43669
|
-
current_or_last_store_id: number;
|
|
43670
|
-
last_movement: string;
|
|
43671
|
-
address: string | null;
|
|
43672
|
-
current_status: string | null;
|
|
43673
|
-
current_user_name: string | null;
|
|
43674
|
-
current_user_email: string | null;
|
|
43675
|
-
current_user_phone_number: string | null;
|
|
43676
|
-
current_user_company: string | null;
|
|
43677
|
-
handover_method: string | null;
|
|
43678
|
-
keynest_app_user: string | null;
|
|
43679
|
-
default_office_id: number;
|
|
43680
|
-
fob_id: number;
|
|
43681
|
-
has_photo: boolean;
|
|
43326
|
+
device_name?: string | undefined;
|
|
43682
43327
|
} | undefined;
|
|
43683
43328
|
} & {
|
|
43684
43329
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -44930,68 +44575,11 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
44930
44575
|
product_type: string;
|
|
44931
44576
|
}>>;
|
|
44932
44577
|
keynest_metadata: z.ZodOptional<z.ZodObject<{
|
|
44933
|
-
|
|
44934
|
-
device_name: z.ZodString;
|
|
44935
|
-
property_id: z.ZodNullable<z.ZodString>;
|
|
44936
|
-
property_postcode: z.ZodNullable<z.ZodString>;
|
|
44937
|
-
key_notes: z.ZodNullable<z.ZodString>;
|
|
44938
|
-
subscription_plan: z.ZodString;
|
|
44939
|
-
status_type: z.ZodString;
|
|
44940
|
-
current_or_last_store_id: z.ZodNumber;
|
|
44941
|
-
last_movement: z.ZodString;
|
|
44942
|
-
address: z.ZodNullable<z.ZodString>;
|
|
44943
|
-
current_status: z.ZodNullable<z.ZodString>;
|
|
44944
|
-
current_user_name: z.ZodNullable<z.ZodString>;
|
|
44945
|
-
current_user_email: z.ZodNullable<z.ZodString>;
|
|
44946
|
-
current_user_phone_number: z.ZodNullable<z.ZodString>;
|
|
44947
|
-
current_user_company: z.ZodNullable<z.ZodString>;
|
|
44948
|
-
handover_method: z.ZodNullable<z.ZodString>;
|
|
44949
|
-
keynest_app_user: z.ZodNullable<z.ZodString>;
|
|
44950
|
-
default_office_id: z.ZodNumber;
|
|
44951
|
-
fob_id: z.ZodNumber;
|
|
44952
|
-
has_photo: z.ZodBoolean;
|
|
44578
|
+
device_name: z.ZodOptional<z.ZodString>;
|
|
44953
44579
|
}, "strip", z.ZodTypeAny, {
|
|
44954
|
-
device_name
|
|
44955
|
-
key_id: string;
|
|
44956
|
-
property_id: string | null;
|
|
44957
|
-
property_postcode: string | null;
|
|
44958
|
-
key_notes: string | null;
|
|
44959
|
-
subscription_plan: string;
|
|
44960
|
-
status_type: string;
|
|
44961
|
-
current_or_last_store_id: number;
|
|
44962
|
-
last_movement: string;
|
|
44963
|
-
address: string | null;
|
|
44964
|
-
current_status: string | null;
|
|
44965
|
-
current_user_name: string | null;
|
|
44966
|
-
current_user_email: string | null;
|
|
44967
|
-
current_user_phone_number: string | null;
|
|
44968
|
-
current_user_company: string | null;
|
|
44969
|
-
handover_method: string | null;
|
|
44970
|
-
keynest_app_user: string | null;
|
|
44971
|
-
default_office_id: number;
|
|
44972
|
-
fob_id: number;
|
|
44973
|
-
has_photo: boolean;
|
|
44580
|
+
device_name?: string | undefined;
|
|
44974
44581
|
}, {
|
|
44975
|
-
device_name
|
|
44976
|
-
key_id: string;
|
|
44977
|
-
property_id: string | null;
|
|
44978
|
-
property_postcode: string | null;
|
|
44979
|
-
key_notes: string | null;
|
|
44980
|
-
subscription_plan: string;
|
|
44981
|
-
status_type: string;
|
|
44982
|
-
current_or_last_store_id: number;
|
|
44983
|
-
last_movement: string;
|
|
44984
|
-
address: string | null;
|
|
44985
|
-
current_status: string | null;
|
|
44986
|
-
current_user_name: string | null;
|
|
44987
|
-
current_user_email: string | null;
|
|
44988
|
-
current_user_phone_number: string | null;
|
|
44989
|
-
current_user_company: string | null;
|
|
44990
|
-
handover_method: string | null;
|
|
44991
|
-
keynest_app_user: string | null;
|
|
44992
|
-
default_office_id: number;
|
|
44993
|
-
fob_id: number;
|
|
44994
|
-
has_photo: boolean;
|
|
44582
|
+
device_name?: string | undefined;
|
|
44995
44583
|
}>>;
|
|
44996
44584
|
}, "strip", z.ZodTypeAny, {
|
|
44997
44585
|
ecobee_metadata?: {
|
|
@@ -45227,26 +44815,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45227
44815
|
product_type: string;
|
|
45228
44816
|
} | undefined;
|
|
45229
44817
|
keynest_metadata?: {
|
|
45230
|
-
device_name
|
|
45231
|
-
key_id: string;
|
|
45232
|
-
property_id: string | null;
|
|
45233
|
-
property_postcode: string | null;
|
|
45234
|
-
key_notes: string | null;
|
|
45235
|
-
subscription_plan: string;
|
|
45236
|
-
status_type: string;
|
|
45237
|
-
current_or_last_store_id: number;
|
|
45238
|
-
last_movement: string;
|
|
45239
|
-
address: string | null;
|
|
45240
|
-
current_status: string | null;
|
|
45241
|
-
current_user_name: string | null;
|
|
45242
|
-
current_user_email: string | null;
|
|
45243
|
-
current_user_phone_number: string | null;
|
|
45244
|
-
current_user_company: string | null;
|
|
45245
|
-
handover_method: string | null;
|
|
45246
|
-
keynest_app_user: string | null;
|
|
45247
|
-
default_office_id: number;
|
|
45248
|
-
fob_id: number;
|
|
45249
|
-
has_photo: boolean;
|
|
44818
|
+
device_name?: string | undefined;
|
|
45250
44819
|
} | undefined;
|
|
45251
44820
|
}, {
|
|
45252
44821
|
ecobee_metadata?: {
|
|
@@ -45482,26 +45051,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
45482
45051
|
product_type: string;
|
|
45483
45052
|
} | undefined;
|
|
45484
45053
|
keynest_metadata?: {
|
|
45485
|
-
device_name
|
|
45486
|
-
key_id: string;
|
|
45487
|
-
property_id: string | null;
|
|
45488
|
-
property_postcode: string | null;
|
|
45489
|
-
key_notes: string | null;
|
|
45490
|
-
subscription_plan: string;
|
|
45491
|
-
status_type: string;
|
|
45492
|
-
current_or_last_store_id: number;
|
|
45493
|
-
last_movement: string;
|
|
45494
|
-
address: string | null;
|
|
45495
|
-
current_status: string | null;
|
|
45496
|
-
current_user_name: string | null;
|
|
45497
|
-
current_user_email: string | null;
|
|
45498
|
-
current_user_phone_number: string | null;
|
|
45499
|
-
current_user_company: string | null;
|
|
45500
|
-
handover_method: string | null;
|
|
45501
|
-
keynest_app_user: string | null;
|
|
45502
|
-
default_office_id: number;
|
|
45503
|
-
fob_id: number;
|
|
45504
|
-
has_photo: boolean;
|
|
45054
|
+
device_name?: string | undefined;
|
|
45505
45055
|
} | undefined;
|
|
45506
45056
|
}>>, z.ZodIntersection<z.ZodObject<{
|
|
45507
45057
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -50347,13 +49897,13 @@ declare const instant_key: z.ZodObject<{
|
|
|
50347
49897
|
secondary_color: z.ZodOptional<z.ZodString>;
|
|
50348
49898
|
logo_url: z.ZodOptional<z.ZodString>;
|
|
50349
49899
|
}, "strip", z.ZodTypeAny, {
|
|
49900
|
+
logo_url?: string | undefined;
|
|
50350
49901
|
primary_color?: string | undefined;
|
|
50351
49902
|
secondary_color?: string | undefined;
|
|
50352
|
-
logo_url?: string | undefined;
|
|
50353
49903
|
}, {
|
|
49904
|
+
logo_url?: string | undefined;
|
|
50354
49905
|
primary_color?: string | undefined;
|
|
50355
49906
|
secondary_color?: string | undefined;
|
|
50356
|
-
logo_url?: string | undefined;
|
|
50357
49907
|
}>>;
|
|
50358
49908
|
}, "strip", z.ZodTypeAny, {
|
|
50359
49909
|
workspace_id: string;
|
|
@@ -50365,9 +49915,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
50365
49915
|
instant_key_id: string;
|
|
50366
49916
|
customization_profile_id?: string | undefined;
|
|
50367
49917
|
customization?: {
|
|
49918
|
+
logo_url?: string | undefined;
|
|
50368
49919
|
primary_color?: string | undefined;
|
|
50369
49920
|
secondary_color?: string | undefined;
|
|
50370
|
-
logo_url?: string | undefined;
|
|
50371
49921
|
} | undefined;
|
|
50372
49922
|
}, {
|
|
50373
49923
|
workspace_id: string;
|
|
@@ -50379,9 +49929,9 @@ declare const instant_key: z.ZodObject<{
|
|
|
50379
49929
|
instant_key_id: string;
|
|
50380
49930
|
customization_profile_id?: string | undefined;
|
|
50381
49931
|
customization?: {
|
|
49932
|
+
logo_url?: string | undefined;
|
|
50382
49933
|
primary_color?: string | undefined;
|
|
50383
49934
|
secondary_color?: string | undefined;
|
|
50384
|
-
logo_url?: string | undefined;
|
|
50385
49935
|
} | undefined;
|
|
50386
49936
|
}>;
|
|
50387
49937
|
type InstantKey = z.infer<typeof instant_key>;
|
|
@@ -56137,102 +55687,11 @@ declare const _default: {
|
|
|
56137
55687
|
keynest_metadata: {
|
|
56138
55688
|
description: string;
|
|
56139
55689
|
properties: {
|
|
56140
|
-
address: {
|
|
56141
|
-
description: string;
|
|
56142
|
-
nullable: boolean;
|
|
56143
|
-
type: string;
|
|
56144
|
-
};
|
|
56145
|
-
current_or_last_store_id: {
|
|
56146
|
-
description: string;
|
|
56147
|
-
format: string;
|
|
56148
|
-
type: string;
|
|
56149
|
-
};
|
|
56150
|
-
current_status: {
|
|
56151
|
-
description: string;
|
|
56152
|
-
nullable: boolean;
|
|
56153
|
-
type: string;
|
|
56154
|
-
};
|
|
56155
|
-
current_user_company: {
|
|
56156
|
-
description: string;
|
|
56157
|
-
nullable: boolean;
|
|
56158
|
-
type: string;
|
|
56159
|
-
};
|
|
56160
|
-
current_user_email: {
|
|
56161
|
-
description: string;
|
|
56162
|
-
nullable: boolean;
|
|
56163
|
-
type: string;
|
|
56164
|
-
};
|
|
56165
|
-
current_user_name: {
|
|
56166
|
-
description: string;
|
|
56167
|
-
nullable: boolean;
|
|
56168
|
-
type: string;
|
|
56169
|
-
};
|
|
56170
|
-
current_user_phone_number: {
|
|
56171
|
-
description: string;
|
|
56172
|
-
nullable: boolean;
|
|
56173
|
-
type: string;
|
|
56174
|
-
};
|
|
56175
|
-
default_office_id: {
|
|
56176
|
-
description: string;
|
|
56177
|
-
format: string;
|
|
56178
|
-
type: string;
|
|
56179
|
-
};
|
|
56180
55690
|
device_name: {
|
|
56181
55691
|
description: string;
|
|
56182
55692
|
type: string;
|
|
56183
55693
|
};
|
|
56184
|
-
fob_id: {
|
|
56185
|
-
description: string;
|
|
56186
|
-
format: string;
|
|
56187
|
-
type: string;
|
|
56188
|
-
};
|
|
56189
|
-
handover_method: {
|
|
56190
|
-
description: string;
|
|
56191
|
-
nullable: boolean;
|
|
56192
|
-
type: string;
|
|
56193
|
-
};
|
|
56194
|
-
has_photo: {
|
|
56195
|
-
description: string;
|
|
56196
|
-
type: string;
|
|
56197
|
-
};
|
|
56198
|
-
key_id: {
|
|
56199
|
-
description: string;
|
|
56200
|
-
type: string;
|
|
56201
|
-
};
|
|
56202
|
-
key_notes: {
|
|
56203
|
-
description: string;
|
|
56204
|
-
nullable: boolean;
|
|
56205
|
-
type: string;
|
|
56206
|
-
};
|
|
56207
|
-
keynest_app_user: {
|
|
56208
|
-
description: string;
|
|
56209
|
-
nullable: boolean;
|
|
56210
|
-
type: string;
|
|
56211
|
-
};
|
|
56212
|
-
last_movement: {
|
|
56213
|
-
description: string;
|
|
56214
|
-
type: string;
|
|
56215
|
-
};
|
|
56216
|
-
property_id: {
|
|
56217
|
-
description: string;
|
|
56218
|
-
nullable: boolean;
|
|
56219
|
-
type: string;
|
|
56220
|
-
};
|
|
56221
|
-
property_postcode: {
|
|
56222
|
-
description: string;
|
|
56223
|
-
nullable: boolean;
|
|
56224
|
-
type: string;
|
|
56225
|
-
};
|
|
56226
|
-
status_type: {
|
|
56227
|
-
description: string;
|
|
56228
|
-
type: string;
|
|
56229
|
-
};
|
|
56230
|
-
subscription_plan: {
|
|
56231
|
-
description: string;
|
|
56232
|
-
type: string;
|
|
56233
|
-
};
|
|
56234
55694
|
};
|
|
56235
|
-
required: string[];
|
|
56236
55695
|
type: string;
|
|
56237
55696
|
};
|
|
56238
55697
|
kwikset_metadata: {
|
|
@@ -69177,6 +68636,12 @@ declare const _default: {
|
|
|
69177
68636
|
};
|
|
69178
68637
|
type: string;
|
|
69179
68638
|
};
|
|
68639
|
+
customization_profiles: {
|
|
68640
|
+
items: {
|
|
68641
|
+
$ref: string;
|
|
68642
|
+
};
|
|
68643
|
+
type: string;
|
|
68644
|
+
};
|
|
69180
68645
|
devices: {
|
|
69181
68646
|
items: {
|
|
69182
68647
|
$ref: string;
|
|
@@ -69428,6 +68893,12 @@ declare const _default: {
|
|
|
69428
68893
|
};
|
|
69429
68894
|
type: string;
|
|
69430
68895
|
};
|
|
68896
|
+
customization_profiles: {
|
|
68897
|
+
items: {
|
|
68898
|
+
$ref: string;
|
|
68899
|
+
};
|
|
68900
|
+
type: string;
|
|
68901
|
+
};
|
|
69431
68902
|
devices: {
|
|
69432
68903
|
items: {
|
|
69433
68904
|
$ref: string;
|
|
@@ -99619,6 +99090,12 @@ declare const _default: {
|
|
|
99619
99090
|
};
|
|
99620
99091
|
type: string;
|
|
99621
99092
|
};
|
|
99093
|
+
customization_profiles: {
|
|
99094
|
+
items: {
|
|
99095
|
+
$ref: string;
|
|
99096
|
+
};
|
|
99097
|
+
type: string;
|
|
99098
|
+
};
|
|
99622
99099
|
devices: {
|
|
99623
99100
|
items: {
|
|
99624
99101
|
$ref: string;
|
|
@@ -99852,6 +99329,12 @@ declare const _default: {
|
|
|
99852
99329
|
};
|
|
99853
99330
|
type: string;
|
|
99854
99331
|
};
|
|
99332
|
+
customization_profiles: {
|
|
99333
|
+
items: {
|
|
99334
|
+
$ref: string;
|
|
99335
|
+
};
|
|
99336
|
+
type: string;
|
|
99337
|
+
};
|
|
99855
99338
|
devices: {
|
|
99856
99339
|
items: {
|
|
99857
99340
|
$ref: string;
|
|
@@ -111207,46 +110690,8 @@ type Routes = {
|
|
|
111207
110690
|
} | undefined;
|
|
111208
110691
|
/** Metadata for a KeyNest device. */
|
|
111209
110692
|
keynest_metadata?: {
|
|
111210
|
-
/** Key ID for a KeyNest device. */
|
|
111211
|
-
key_id: string;
|
|
111212
110693
|
/** Device name for a KeyNest device. */
|
|
111213
|
-
device_name
|
|
111214
|
-
/** Property ID for a KeyNest device. */
|
|
111215
|
-
property_id: string | null;
|
|
111216
|
-
/** Property postcode for a KeyNest device. */
|
|
111217
|
-
property_postcode: string | null;
|
|
111218
|
-
/** Key notes for a KeyNest device. */
|
|
111219
|
-
key_notes: string | null;
|
|
111220
|
-
/** Subscription plan for a KeyNest device. */
|
|
111221
|
-
subscription_plan: string;
|
|
111222
|
-
/** Status type for a KeyNest device. */
|
|
111223
|
-
status_type: string;
|
|
111224
|
-
/** Current or last store ID for a KeyNest device. */
|
|
111225
|
-
current_or_last_store_id: number;
|
|
111226
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
111227
|
-
last_movement: string;
|
|
111228
|
-
/** Address for a KeyNest device. */
|
|
111229
|
-
address: string | null;
|
|
111230
|
-
/** Current status for a KeyNest device. */
|
|
111231
|
-
current_status: string | null;
|
|
111232
|
-
/** Current user name for a KeyNest device. */
|
|
111233
|
-
current_user_name: string | null;
|
|
111234
|
-
/** Current user email for a KeyNest device. */
|
|
111235
|
-
current_user_email: string | null;
|
|
111236
|
-
/** Current user phone number for a KeyNest device. */
|
|
111237
|
-
current_user_phone_number: string | null;
|
|
111238
|
-
/** Current user company for a KeyNest device. */
|
|
111239
|
-
current_user_company: string | null;
|
|
111240
|
-
/** Handover method for a KeyNest device. */
|
|
111241
|
-
handover_method: string | null;
|
|
111242
|
-
/** KeyNest app user for a KeyNest device. */
|
|
111243
|
-
keynest_app_user: string | null;
|
|
111244
|
-
/** Default office ID for a KeyNest device. */
|
|
111245
|
-
default_office_id: number;
|
|
111246
|
-
/** Fob ID for a KeyNest device. */
|
|
111247
|
-
fob_id: number;
|
|
111248
|
-
/** Whether the KeyNest device has a photo. */
|
|
111249
|
-
has_photo: boolean;
|
|
110694
|
+
device_name?: string | undefined;
|
|
111250
110695
|
} | undefined;
|
|
111251
110696
|
}) & ({
|
|
111252
110697
|
/** */
|
|
@@ -114355,46 +113800,8 @@ type Routes = {
|
|
|
114355
113800
|
} | undefined;
|
|
114356
113801
|
/** Metadata for a KeyNest device. */
|
|
114357
113802
|
keynest_metadata?: {
|
|
114358
|
-
/** Key ID for a KeyNest device. */
|
|
114359
|
-
key_id: string;
|
|
114360
113803
|
/** Device name for a KeyNest device. */
|
|
114361
|
-
device_name
|
|
114362
|
-
/** Property ID for a KeyNest device. */
|
|
114363
|
-
property_id: string | null;
|
|
114364
|
-
/** Property postcode for a KeyNest device. */
|
|
114365
|
-
property_postcode: string | null;
|
|
114366
|
-
/** Key notes for a KeyNest device. */
|
|
114367
|
-
key_notes: string | null;
|
|
114368
|
-
/** Subscription plan for a KeyNest device. */
|
|
114369
|
-
subscription_plan: string;
|
|
114370
|
-
/** Status type for a KeyNest device. */
|
|
114371
|
-
status_type: string;
|
|
114372
|
-
/** Current or last store ID for a KeyNest device. */
|
|
114373
|
-
current_or_last_store_id: number;
|
|
114374
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
114375
|
-
last_movement: string;
|
|
114376
|
-
/** Address for a KeyNest device. */
|
|
114377
|
-
address: string | null;
|
|
114378
|
-
/** Current status for a KeyNest device. */
|
|
114379
|
-
current_status: string | null;
|
|
114380
|
-
/** Current user name for a KeyNest device. */
|
|
114381
|
-
current_user_name: string | null;
|
|
114382
|
-
/** Current user email for a KeyNest device. */
|
|
114383
|
-
current_user_email: string | null;
|
|
114384
|
-
/** Current user phone number for a KeyNest device. */
|
|
114385
|
-
current_user_phone_number: string | null;
|
|
114386
|
-
/** Current user company for a KeyNest device. */
|
|
114387
|
-
current_user_company: string | null;
|
|
114388
|
-
/** Handover method for a KeyNest device. */
|
|
114389
|
-
handover_method: string | null;
|
|
114390
|
-
/** KeyNest app user for a KeyNest device. */
|
|
114391
|
-
keynest_app_user: string | null;
|
|
114392
|
-
/** Default office ID for a KeyNest device. */
|
|
114393
|
-
default_office_id: number;
|
|
114394
|
-
/** Fob ID for a KeyNest device. */
|
|
114395
|
-
fob_id: number;
|
|
114396
|
-
/** Whether the KeyNest device has a photo. */
|
|
114397
|
-
has_photo: boolean;
|
|
113804
|
+
device_name?: string | undefined;
|
|
114398
113805
|
} | undefined;
|
|
114399
113806
|
}) & ({
|
|
114400
113807
|
/** */
|
|
@@ -120689,6 +120096,15 @@ type Routes = {
|
|
|
120689
120096
|
/** Noise level in decibels for the noise threshold. */
|
|
120690
120097
|
noise_threshold_decibels: number;
|
|
120691
120098
|
}[] | undefined;
|
|
120099
|
+
customization_profiles?: {
|
|
120100
|
+
workspace_id: string;
|
|
120101
|
+
name: string | null;
|
|
120102
|
+
customization_profile_id: string;
|
|
120103
|
+
created_at: string;
|
|
120104
|
+
logo_url?: string | undefined;
|
|
120105
|
+
primary_color?: string | undefined;
|
|
120106
|
+
secondary_color?: string | undefined;
|
|
120107
|
+
}[] | undefined;
|
|
120692
120108
|
};
|
|
120693
120109
|
};
|
|
120694
120110
|
};
|
|
@@ -132586,46 +132002,8 @@ type Routes = {
|
|
|
132586
132002
|
} | undefined;
|
|
132587
132003
|
/** Metadata for a KeyNest device. */
|
|
132588
132004
|
keynest_metadata?: {
|
|
132589
|
-
/** Key ID for a KeyNest device. */
|
|
132590
|
-
key_id: string;
|
|
132591
132005
|
/** Device name for a KeyNest device. */
|
|
132592
|
-
device_name
|
|
132593
|
-
/** Property ID for a KeyNest device. */
|
|
132594
|
-
property_id: string | null;
|
|
132595
|
-
/** Property postcode for a KeyNest device. */
|
|
132596
|
-
property_postcode: string | null;
|
|
132597
|
-
/** Key notes for a KeyNest device. */
|
|
132598
|
-
key_notes: string | null;
|
|
132599
|
-
/** Subscription plan for a KeyNest device. */
|
|
132600
|
-
subscription_plan: string;
|
|
132601
|
-
/** Status type for a KeyNest device. */
|
|
132602
|
-
status_type: string;
|
|
132603
|
-
/** Current or last store ID for a KeyNest device. */
|
|
132604
|
-
current_or_last_store_id: number;
|
|
132605
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
132606
|
-
last_movement: string;
|
|
132607
|
-
/** Address for a KeyNest device. */
|
|
132608
|
-
address: string | null;
|
|
132609
|
-
/** Current status for a KeyNest device. */
|
|
132610
|
-
current_status: string | null;
|
|
132611
|
-
/** Current user name for a KeyNest device. */
|
|
132612
|
-
current_user_name: string | null;
|
|
132613
|
-
/** Current user email for a KeyNest device. */
|
|
132614
|
-
current_user_email: string | null;
|
|
132615
|
-
/** Current user phone number for a KeyNest device. */
|
|
132616
|
-
current_user_phone_number: string | null;
|
|
132617
|
-
/** Current user company for a KeyNest device. */
|
|
132618
|
-
current_user_company: string | null;
|
|
132619
|
-
/** Handover method for a KeyNest device. */
|
|
132620
|
-
handover_method: string | null;
|
|
132621
|
-
/** KeyNest app user for a KeyNest device. */
|
|
132622
|
-
keynest_app_user: string | null;
|
|
132623
|
-
/** Default office ID for a KeyNest device. */
|
|
132624
|
-
default_office_id: number;
|
|
132625
|
-
/** Fob ID for a KeyNest device. */
|
|
132626
|
-
fob_id: number;
|
|
132627
|
-
/** Whether the KeyNest device has a photo. */
|
|
132628
|
-
has_photo: boolean;
|
|
132006
|
+
device_name?: string | undefined;
|
|
132629
132007
|
} | undefined;
|
|
132630
132008
|
}) & ({
|
|
132631
132009
|
/** */
|
|
@@ -133842,46 +133220,8 @@ type Routes = {
|
|
|
133842
133220
|
} | undefined;
|
|
133843
133221
|
/** Metadata for a KeyNest device. */
|
|
133844
133222
|
keynest_metadata?: {
|
|
133845
|
-
/** Key ID for a KeyNest device. */
|
|
133846
|
-
key_id: string;
|
|
133847
133223
|
/** Device name for a KeyNest device. */
|
|
133848
|
-
device_name
|
|
133849
|
-
/** Property ID for a KeyNest device. */
|
|
133850
|
-
property_id: string | null;
|
|
133851
|
-
/** Property postcode for a KeyNest device. */
|
|
133852
|
-
property_postcode: string | null;
|
|
133853
|
-
/** Key notes for a KeyNest device. */
|
|
133854
|
-
key_notes: string | null;
|
|
133855
|
-
/** Subscription plan for a KeyNest device. */
|
|
133856
|
-
subscription_plan: string;
|
|
133857
|
-
/** Status type for a KeyNest device. */
|
|
133858
|
-
status_type: string;
|
|
133859
|
-
/** Current or last store ID for a KeyNest device. */
|
|
133860
|
-
current_or_last_store_id: number;
|
|
133861
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
133862
|
-
last_movement: string;
|
|
133863
|
-
/** Address for a KeyNest device. */
|
|
133864
|
-
address: string | null;
|
|
133865
|
-
/** Current status for a KeyNest device. */
|
|
133866
|
-
current_status: string | null;
|
|
133867
|
-
/** Current user name for a KeyNest device. */
|
|
133868
|
-
current_user_name: string | null;
|
|
133869
|
-
/** Current user email for a KeyNest device. */
|
|
133870
|
-
current_user_email: string | null;
|
|
133871
|
-
/** Current user phone number for a KeyNest device. */
|
|
133872
|
-
current_user_phone_number: string | null;
|
|
133873
|
-
/** Current user company for a KeyNest device. */
|
|
133874
|
-
current_user_company: string | null;
|
|
133875
|
-
/** Handover method for a KeyNest device. */
|
|
133876
|
-
handover_method: string | null;
|
|
133877
|
-
/** KeyNest app user for a KeyNest device. */
|
|
133878
|
-
keynest_app_user: string | null;
|
|
133879
|
-
/** Default office ID for a KeyNest device. */
|
|
133880
|
-
default_office_id: number;
|
|
133881
|
-
/** Fob ID for a KeyNest device. */
|
|
133882
|
-
fob_id: number;
|
|
133883
|
-
/** Whether the KeyNest device has a photo. */
|
|
133884
|
-
has_photo: boolean;
|
|
133224
|
+
device_name?: string | undefined;
|
|
133885
133225
|
} | undefined;
|
|
133886
133226
|
}) & ({
|
|
133887
133227
|
/** */
|
|
@@ -139858,46 +139198,8 @@ type Routes = {
|
|
|
139858
139198
|
} | undefined;
|
|
139859
139199
|
/** Metadata for a KeyNest device. */
|
|
139860
139200
|
keynest_metadata?: {
|
|
139861
|
-
/** Key ID for a KeyNest device. */
|
|
139862
|
-
key_id: string;
|
|
139863
139201
|
/** Device name for a KeyNest device. */
|
|
139864
|
-
device_name
|
|
139865
|
-
/** Property ID for a KeyNest device. */
|
|
139866
|
-
property_id: string | null;
|
|
139867
|
-
/** Property postcode for a KeyNest device. */
|
|
139868
|
-
property_postcode: string | null;
|
|
139869
|
-
/** Key notes for a KeyNest device. */
|
|
139870
|
-
key_notes: string | null;
|
|
139871
|
-
/** Subscription plan for a KeyNest device. */
|
|
139872
|
-
subscription_plan: string;
|
|
139873
|
-
/** Status type for a KeyNest device. */
|
|
139874
|
-
status_type: string;
|
|
139875
|
-
/** Current or last store ID for a KeyNest device. */
|
|
139876
|
-
current_or_last_store_id: number;
|
|
139877
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
139878
|
-
last_movement: string;
|
|
139879
|
-
/** Address for a KeyNest device. */
|
|
139880
|
-
address: string | null;
|
|
139881
|
-
/** Current status for a KeyNest device. */
|
|
139882
|
-
current_status: string | null;
|
|
139883
|
-
/** Current user name for a KeyNest device. */
|
|
139884
|
-
current_user_name: string | null;
|
|
139885
|
-
/** Current user email for a KeyNest device. */
|
|
139886
|
-
current_user_email: string | null;
|
|
139887
|
-
/** Current user phone number for a KeyNest device. */
|
|
139888
|
-
current_user_phone_number: string | null;
|
|
139889
|
-
/** Current user company for a KeyNest device. */
|
|
139890
|
-
current_user_company: string | null;
|
|
139891
|
-
/** Handover method for a KeyNest device. */
|
|
139892
|
-
handover_method: string | null;
|
|
139893
|
-
/** KeyNest app user for a KeyNest device. */
|
|
139894
|
-
keynest_app_user: string | null;
|
|
139895
|
-
/** Default office ID for a KeyNest device. */
|
|
139896
|
-
default_office_id: number;
|
|
139897
|
-
/** Fob ID for a KeyNest device. */
|
|
139898
|
-
fob_id: number;
|
|
139899
|
-
/** Whether the KeyNest device has a photo. */
|
|
139900
|
-
has_photo: boolean;
|
|
139202
|
+
device_name?: string | undefined;
|
|
139901
139203
|
} | undefined;
|
|
139902
139204
|
}) & ({
|
|
139903
139205
|
/** */
|
|
@@ -141064,46 +140366,8 @@ type Routes = {
|
|
|
141064
140366
|
} | undefined;
|
|
141065
140367
|
/** Metadata for a KeyNest device. */
|
|
141066
140368
|
keynest_metadata?: {
|
|
141067
|
-
/** Key ID for a KeyNest device. */
|
|
141068
|
-
key_id: string;
|
|
141069
140369
|
/** Device name for a KeyNest device. */
|
|
141070
|
-
device_name
|
|
141071
|
-
/** Property ID for a KeyNest device. */
|
|
141072
|
-
property_id: string | null;
|
|
141073
|
-
/** Property postcode for a KeyNest device. */
|
|
141074
|
-
property_postcode: string | null;
|
|
141075
|
-
/** Key notes for a KeyNest device. */
|
|
141076
|
-
key_notes: string | null;
|
|
141077
|
-
/** Subscription plan for a KeyNest device. */
|
|
141078
|
-
subscription_plan: string;
|
|
141079
|
-
/** Status type for a KeyNest device. */
|
|
141080
|
-
status_type: string;
|
|
141081
|
-
/** Current or last store ID for a KeyNest device. */
|
|
141082
|
-
current_or_last_store_id: number;
|
|
141083
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
141084
|
-
last_movement: string;
|
|
141085
|
-
/** Address for a KeyNest device. */
|
|
141086
|
-
address: string | null;
|
|
141087
|
-
/** Current status for a KeyNest device. */
|
|
141088
|
-
current_status: string | null;
|
|
141089
|
-
/** Current user name for a KeyNest device. */
|
|
141090
|
-
current_user_name: string | null;
|
|
141091
|
-
/** Current user email for a KeyNest device. */
|
|
141092
|
-
current_user_email: string | null;
|
|
141093
|
-
/** Current user phone number for a KeyNest device. */
|
|
141094
|
-
current_user_phone_number: string | null;
|
|
141095
|
-
/** Current user company for a KeyNest device. */
|
|
141096
|
-
current_user_company: string | null;
|
|
141097
|
-
/** Handover method for a KeyNest device. */
|
|
141098
|
-
handover_method: string | null;
|
|
141099
|
-
/** KeyNest app user for a KeyNest device. */
|
|
141100
|
-
keynest_app_user: string | null;
|
|
141101
|
-
/** Default office ID for a KeyNest device. */
|
|
141102
|
-
default_office_id: number;
|
|
141103
|
-
/** Fob ID for a KeyNest device. */
|
|
141104
|
-
fob_id: number;
|
|
141105
|
-
/** Whether the KeyNest device has a photo. */
|
|
141106
|
-
has_photo: boolean;
|
|
140370
|
+
device_name?: string | undefined;
|
|
141107
140371
|
} | undefined;
|
|
141108
140372
|
}) & ({
|
|
141109
140373
|
/** */
|
|
@@ -142320,46 +141584,8 @@ type Routes = {
|
|
|
142320
141584
|
} | undefined;
|
|
142321
141585
|
/** Metadata for a KeyNest device. */
|
|
142322
141586
|
keynest_metadata?: {
|
|
142323
|
-
/** Key ID for a KeyNest device. */
|
|
142324
|
-
key_id: string;
|
|
142325
141587
|
/** Device name for a KeyNest device. */
|
|
142326
|
-
device_name
|
|
142327
|
-
/** Property ID for a KeyNest device. */
|
|
142328
|
-
property_id: string | null;
|
|
142329
|
-
/** Property postcode for a KeyNest device. */
|
|
142330
|
-
property_postcode: string | null;
|
|
142331
|
-
/** Key notes for a KeyNest device. */
|
|
142332
|
-
key_notes: string | null;
|
|
142333
|
-
/** Subscription plan for a KeyNest device. */
|
|
142334
|
-
subscription_plan: string;
|
|
142335
|
-
/** Status type for a KeyNest device. */
|
|
142336
|
-
status_type: string;
|
|
142337
|
-
/** Current or last store ID for a KeyNest device. */
|
|
142338
|
-
current_or_last_store_id: number;
|
|
142339
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
142340
|
-
last_movement: string;
|
|
142341
|
-
/** Address for a KeyNest device. */
|
|
142342
|
-
address: string | null;
|
|
142343
|
-
/** Current status for a KeyNest device. */
|
|
142344
|
-
current_status: string | null;
|
|
142345
|
-
/** Current user name for a KeyNest device. */
|
|
142346
|
-
current_user_name: string | null;
|
|
142347
|
-
/** Current user email for a KeyNest device. */
|
|
142348
|
-
current_user_email: string | null;
|
|
142349
|
-
/** Current user phone number for a KeyNest device. */
|
|
142350
|
-
current_user_phone_number: string | null;
|
|
142351
|
-
/** Current user company for a KeyNest device. */
|
|
142352
|
-
current_user_company: string | null;
|
|
142353
|
-
/** Handover method for a KeyNest device. */
|
|
142354
|
-
handover_method: string | null;
|
|
142355
|
-
/** KeyNest app user for a KeyNest device. */
|
|
142356
|
-
keynest_app_user: string | null;
|
|
142357
|
-
/** Default office ID for a KeyNest device. */
|
|
142358
|
-
default_office_id: number;
|
|
142359
|
-
/** Fob ID for a KeyNest device. */
|
|
142360
|
-
fob_id: number;
|
|
142361
|
-
/** Whether the KeyNest device has a photo. */
|
|
142362
|
-
has_photo: boolean;
|
|
141588
|
+
device_name?: string | undefined;
|
|
142363
141589
|
} | undefined;
|
|
142364
141590
|
}) & ({
|
|
142365
141591
|
/** */
|
|
@@ -143525,46 +142751,8 @@ type Routes = {
|
|
|
143525
142751
|
} | undefined;
|
|
143526
142752
|
/** Metadata for a KeyNest device. */
|
|
143527
142753
|
keynest_metadata?: {
|
|
143528
|
-
/** Key ID for a KeyNest device. */
|
|
143529
|
-
key_id: string;
|
|
143530
142754
|
/** Device name for a KeyNest device. */
|
|
143531
|
-
device_name
|
|
143532
|
-
/** Property ID for a KeyNest device. */
|
|
143533
|
-
property_id: string | null;
|
|
143534
|
-
/** Property postcode for a KeyNest device. */
|
|
143535
|
-
property_postcode: string | null;
|
|
143536
|
-
/** Key notes for a KeyNest device. */
|
|
143537
|
-
key_notes: string | null;
|
|
143538
|
-
/** Subscription plan for a KeyNest device. */
|
|
143539
|
-
subscription_plan: string;
|
|
143540
|
-
/** Status type for a KeyNest device. */
|
|
143541
|
-
status_type: string;
|
|
143542
|
-
/** Current or last store ID for a KeyNest device. */
|
|
143543
|
-
current_or_last_store_id: number;
|
|
143544
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
143545
|
-
last_movement: string;
|
|
143546
|
-
/** Address for a KeyNest device. */
|
|
143547
|
-
address: string | null;
|
|
143548
|
-
/** Current status for a KeyNest device. */
|
|
143549
|
-
current_status: string | null;
|
|
143550
|
-
/** Current user name for a KeyNest device. */
|
|
143551
|
-
current_user_name: string | null;
|
|
143552
|
-
/** Current user email for a KeyNest device. */
|
|
143553
|
-
current_user_email: string | null;
|
|
143554
|
-
/** Current user phone number for a KeyNest device. */
|
|
143555
|
-
current_user_phone_number: string | null;
|
|
143556
|
-
/** Current user company for a KeyNest device. */
|
|
143557
|
-
current_user_company: string | null;
|
|
143558
|
-
/** Handover method for a KeyNest device. */
|
|
143559
|
-
handover_method: string | null;
|
|
143560
|
-
/** KeyNest app user for a KeyNest device. */
|
|
143561
|
-
keynest_app_user: string | null;
|
|
143562
|
-
/** Default office ID for a KeyNest device. */
|
|
143563
|
-
default_office_id: number;
|
|
143564
|
-
/** Fob ID for a KeyNest device. */
|
|
143565
|
-
fob_id: number;
|
|
143566
|
-
/** Whether the KeyNest device has a photo. */
|
|
143567
|
-
has_photo: boolean;
|
|
142755
|
+
device_name?: string | undefined;
|
|
143568
142756
|
} | undefined;
|
|
143569
142757
|
}) & ({
|
|
143570
142758
|
/** */
|
|
@@ -149819,46 +149007,8 @@ type Routes = {
|
|
|
149819
149007
|
} | undefined;
|
|
149820
149008
|
/** Metadata for a KeyNest device. */
|
|
149821
149009
|
keynest_metadata?: {
|
|
149822
|
-
/** Key ID for a KeyNest device. */
|
|
149823
|
-
key_id: string;
|
|
149824
149010
|
/** Device name for a KeyNest device. */
|
|
149825
|
-
device_name
|
|
149826
|
-
/** Property ID for a KeyNest device. */
|
|
149827
|
-
property_id: string | null;
|
|
149828
|
-
/** Property postcode for a KeyNest device. */
|
|
149829
|
-
property_postcode: string | null;
|
|
149830
|
-
/** Key notes for a KeyNest device. */
|
|
149831
|
-
key_notes: string | null;
|
|
149832
|
-
/** Subscription plan for a KeyNest device. */
|
|
149833
|
-
subscription_plan: string;
|
|
149834
|
-
/** Status type for a KeyNest device. */
|
|
149835
|
-
status_type: string;
|
|
149836
|
-
/** Current or last store ID for a KeyNest device. */
|
|
149837
|
-
current_or_last_store_id: number;
|
|
149838
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
149839
|
-
last_movement: string;
|
|
149840
|
-
/** Address for a KeyNest device. */
|
|
149841
|
-
address: string | null;
|
|
149842
|
-
/** Current status for a KeyNest device. */
|
|
149843
|
-
current_status: string | null;
|
|
149844
|
-
/** Current user name for a KeyNest device. */
|
|
149845
|
-
current_user_name: string | null;
|
|
149846
|
-
/** Current user email for a KeyNest device. */
|
|
149847
|
-
current_user_email: string | null;
|
|
149848
|
-
/** Current user phone number for a KeyNest device. */
|
|
149849
|
-
current_user_phone_number: string | null;
|
|
149850
|
-
/** Current user company for a KeyNest device. */
|
|
149851
|
-
current_user_company: string | null;
|
|
149852
|
-
/** Handover method for a KeyNest device. */
|
|
149853
|
-
handover_method: string | null;
|
|
149854
|
-
/** KeyNest app user for a KeyNest device. */
|
|
149855
|
-
keynest_app_user: string | null;
|
|
149856
|
-
/** Default office ID for a KeyNest device. */
|
|
149857
|
-
default_office_id: number;
|
|
149858
|
-
/** Fob ID for a KeyNest device. */
|
|
149859
|
-
fob_id: number;
|
|
149860
|
-
/** Whether the KeyNest device has a photo. */
|
|
149861
|
-
has_photo: boolean;
|
|
149011
|
+
device_name?: string | undefined;
|
|
149862
149012
|
} | undefined;
|
|
149863
149013
|
}) & ({
|
|
149864
149014
|
/** */
|
|
@@ -151024,46 +150174,8 @@ type Routes = {
|
|
|
151024
150174
|
} | undefined;
|
|
151025
150175
|
/** Metadata for a KeyNest device. */
|
|
151026
150176
|
keynest_metadata?: {
|
|
151027
|
-
/** Key ID for a KeyNest device. */
|
|
151028
|
-
key_id: string;
|
|
151029
150177
|
/** Device name for a KeyNest device. */
|
|
151030
|
-
device_name
|
|
151031
|
-
/** Property ID for a KeyNest device. */
|
|
151032
|
-
property_id: string | null;
|
|
151033
|
-
/** Property postcode for a KeyNest device. */
|
|
151034
|
-
property_postcode: string | null;
|
|
151035
|
-
/** Key notes for a KeyNest device. */
|
|
151036
|
-
key_notes: string | null;
|
|
151037
|
-
/** Subscription plan for a KeyNest device. */
|
|
151038
|
-
subscription_plan: string;
|
|
151039
|
-
/** Status type for a KeyNest device. */
|
|
151040
|
-
status_type: string;
|
|
151041
|
-
/** Current or last store ID for a KeyNest device. */
|
|
151042
|
-
current_or_last_store_id: number;
|
|
151043
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
151044
|
-
last_movement: string;
|
|
151045
|
-
/** Address for a KeyNest device. */
|
|
151046
|
-
address: string | null;
|
|
151047
|
-
/** Current status for a KeyNest device. */
|
|
151048
|
-
current_status: string | null;
|
|
151049
|
-
/** Current user name for a KeyNest device. */
|
|
151050
|
-
current_user_name: string | null;
|
|
151051
|
-
/** Current user email for a KeyNest device. */
|
|
151052
|
-
current_user_email: string | null;
|
|
151053
|
-
/** Current user phone number for a KeyNest device. */
|
|
151054
|
-
current_user_phone_number: string | null;
|
|
151055
|
-
/** Current user company for a KeyNest device. */
|
|
151056
|
-
current_user_company: string | null;
|
|
151057
|
-
/** Handover method for a KeyNest device. */
|
|
151058
|
-
handover_method: string | null;
|
|
151059
|
-
/** KeyNest app user for a KeyNest device. */
|
|
151060
|
-
keynest_app_user: string | null;
|
|
151061
|
-
/** Default office ID for a KeyNest device. */
|
|
151062
|
-
default_office_id: number;
|
|
151063
|
-
/** Fob ID for a KeyNest device. */
|
|
151064
|
-
fob_id: number;
|
|
151065
|
-
/** Whether the KeyNest device has a photo. */
|
|
151066
|
-
has_photo: boolean;
|
|
150178
|
+
device_name?: string | undefined;
|
|
151067
150179
|
} | undefined;
|
|
151068
150180
|
}) & ({
|
|
151069
150181
|
/** */
|
|
@@ -159423,46 +158535,8 @@ type Routes = {
|
|
|
159423
158535
|
} | undefined;
|
|
159424
158536
|
/** Metadata for a KeyNest device. */
|
|
159425
158537
|
keynest_metadata?: {
|
|
159426
|
-
/** Key ID for a KeyNest device. */
|
|
159427
|
-
key_id: string;
|
|
159428
158538
|
/** Device name for a KeyNest device. */
|
|
159429
|
-
device_name
|
|
159430
|
-
/** Property ID for a KeyNest device. */
|
|
159431
|
-
property_id: string | null;
|
|
159432
|
-
/** Property postcode for a KeyNest device. */
|
|
159433
|
-
property_postcode: string | null;
|
|
159434
|
-
/** Key notes for a KeyNest device. */
|
|
159435
|
-
key_notes: string | null;
|
|
159436
|
-
/** Subscription plan for a KeyNest device. */
|
|
159437
|
-
subscription_plan: string;
|
|
159438
|
-
/** Status type for a KeyNest device. */
|
|
159439
|
-
status_type: string;
|
|
159440
|
-
/** Current or last store ID for a KeyNest device. */
|
|
159441
|
-
current_or_last_store_id: number;
|
|
159442
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
159443
|
-
last_movement: string;
|
|
159444
|
-
/** Address for a KeyNest device. */
|
|
159445
|
-
address: string | null;
|
|
159446
|
-
/** Current status for a KeyNest device. */
|
|
159447
|
-
current_status: string | null;
|
|
159448
|
-
/** Current user name for a KeyNest device. */
|
|
159449
|
-
current_user_name: string | null;
|
|
159450
|
-
/** Current user email for a KeyNest device. */
|
|
159451
|
-
current_user_email: string | null;
|
|
159452
|
-
/** Current user phone number for a KeyNest device. */
|
|
159453
|
-
current_user_phone_number: string | null;
|
|
159454
|
-
/** Current user company for a KeyNest device. */
|
|
159455
|
-
current_user_company: string | null;
|
|
159456
|
-
/** Handover method for a KeyNest device. */
|
|
159457
|
-
handover_method: string | null;
|
|
159458
|
-
/** KeyNest app user for a KeyNest device. */
|
|
159459
|
-
keynest_app_user: string | null;
|
|
159460
|
-
/** Default office ID for a KeyNest device. */
|
|
159461
|
-
default_office_id: number;
|
|
159462
|
-
/** Fob ID for a KeyNest device. */
|
|
159463
|
-
fob_id: number;
|
|
159464
|
-
/** Whether the KeyNest device has a photo. */
|
|
159465
|
-
has_photo: boolean;
|
|
158539
|
+
device_name?: string | undefined;
|
|
159466
158540
|
} | undefined;
|
|
159467
158541
|
}) & ({
|
|
159468
158542
|
/** */
|
|
@@ -165009,46 +164083,8 @@ type Routes = {
|
|
|
165009
164083
|
} | undefined;
|
|
165010
164084
|
/** Metadata for a KeyNest device. */
|
|
165011
164085
|
keynest_metadata?: {
|
|
165012
|
-
/** Key ID for a KeyNest device. */
|
|
165013
|
-
key_id: string;
|
|
165014
164086
|
/** Device name for a KeyNest device. */
|
|
165015
|
-
device_name
|
|
165016
|
-
/** Property ID for a KeyNest device. */
|
|
165017
|
-
property_id: string | null;
|
|
165018
|
-
/** Property postcode for a KeyNest device. */
|
|
165019
|
-
property_postcode: string | null;
|
|
165020
|
-
/** Key notes for a KeyNest device. */
|
|
165021
|
-
key_notes: string | null;
|
|
165022
|
-
/** Subscription plan for a KeyNest device. */
|
|
165023
|
-
subscription_plan: string;
|
|
165024
|
-
/** Status type for a KeyNest device. */
|
|
165025
|
-
status_type: string;
|
|
165026
|
-
/** Current or last store ID for a KeyNest device. */
|
|
165027
|
-
current_or_last_store_id: number;
|
|
165028
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
165029
|
-
last_movement: string;
|
|
165030
|
-
/** Address for a KeyNest device. */
|
|
165031
|
-
address: string | null;
|
|
165032
|
-
/** Current status for a KeyNest device. */
|
|
165033
|
-
current_status: string | null;
|
|
165034
|
-
/** Current user name for a KeyNest device. */
|
|
165035
|
-
current_user_name: string | null;
|
|
165036
|
-
/** Current user email for a KeyNest device. */
|
|
165037
|
-
current_user_email: string | null;
|
|
165038
|
-
/** Current user phone number for a KeyNest device. */
|
|
165039
|
-
current_user_phone_number: string | null;
|
|
165040
|
-
/** Current user company for a KeyNest device. */
|
|
165041
|
-
current_user_company: string | null;
|
|
165042
|
-
/** Handover method for a KeyNest device. */
|
|
165043
|
-
handover_method: string | null;
|
|
165044
|
-
/** KeyNest app user for a KeyNest device. */
|
|
165045
|
-
keynest_app_user: string | null;
|
|
165046
|
-
/** Default office ID for a KeyNest device. */
|
|
165047
|
-
default_office_id: number;
|
|
165048
|
-
/** Fob ID for a KeyNest device. */
|
|
165049
|
-
fob_id: number;
|
|
165050
|
-
/** Whether the KeyNest device has a photo. */
|
|
165051
|
-
has_photo: boolean;
|
|
164087
|
+
device_name?: string | undefined;
|
|
165052
164088
|
} | undefined;
|
|
165053
164089
|
}) & ({
|
|
165054
164090
|
/** */
|
|
@@ -168797,46 +167833,8 @@ type Routes = {
|
|
|
168797
167833
|
} | undefined;
|
|
168798
167834
|
/** Metadata for a KeyNest device. */
|
|
168799
167835
|
keynest_metadata?: {
|
|
168800
|
-
/** Key ID for a KeyNest device. */
|
|
168801
|
-
key_id: string;
|
|
168802
167836
|
/** Device name for a KeyNest device. */
|
|
168803
|
-
device_name
|
|
168804
|
-
/** Property ID for a KeyNest device. */
|
|
168805
|
-
property_id: string | null;
|
|
168806
|
-
/** Property postcode for a KeyNest device. */
|
|
168807
|
-
property_postcode: string | null;
|
|
168808
|
-
/** Key notes for a KeyNest device. */
|
|
168809
|
-
key_notes: string | null;
|
|
168810
|
-
/** Subscription plan for a KeyNest device. */
|
|
168811
|
-
subscription_plan: string;
|
|
168812
|
-
/** Status type for a KeyNest device. */
|
|
168813
|
-
status_type: string;
|
|
168814
|
-
/** Current or last store ID for a KeyNest device. */
|
|
168815
|
-
current_or_last_store_id: number;
|
|
168816
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
168817
|
-
last_movement: string;
|
|
168818
|
-
/** Address for a KeyNest device. */
|
|
168819
|
-
address: string | null;
|
|
168820
|
-
/** Current status for a KeyNest device. */
|
|
168821
|
-
current_status: string | null;
|
|
168822
|
-
/** Current user name for a KeyNest device. */
|
|
168823
|
-
current_user_name: string | null;
|
|
168824
|
-
/** Current user email for a KeyNest device. */
|
|
168825
|
-
current_user_email: string | null;
|
|
168826
|
-
/** Current user phone number for a KeyNest device. */
|
|
168827
|
-
current_user_phone_number: string | null;
|
|
168828
|
-
/** Current user company for a KeyNest device. */
|
|
168829
|
-
current_user_company: string | null;
|
|
168830
|
-
/** Handover method for a KeyNest device. */
|
|
168831
|
-
handover_method: string | null;
|
|
168832
|
-
/** KeyNest app user for a KeyNest device. */
|
|
168833
|
-
keynest_app_user: string | null;
|
|
168834
|
-
/** Default office ID for a KeyNest device. */
|
|
168835
|
-
default_office_id: number;
|
|
168836
|
-
/** Fob ID for a KeyNest device. */
|
|
168837
|
-
fob_id: number;
|
|
168838
|
-
/** Whether the KeyNest device has a photo. */
|
|
168839
|
-
has_photo: boolean;
|
|
167837
|
+
device_name?: string | undefined;
|
|
168840
167838
|
} | undefined;
|
|
168841
167839
|
}) & ({
|
|
168842
167840
|
/** */
|
|
@@ -170002,46 +169000,8 @@ type Routes = {
|
|
|
170002
169000
|
} | undefined;
|
|
170003
169001
|
/** Metadata for a KeyNest device. */
|
|
170004
169002
|
keynest_metadata?: {
|
|
170005
|
-
/** Key ID for a KeyNest device. */
|
|
170006
|
-
key_id: string;
|
|
170007
169003
|
/** Device name for a KeyNest device. */
|
|
170008
|
-
device_name
|
|
170009
|
-
/** Property ID for a KeyNest device. */
|
|
170010
|
-
property_id: string | null;
|
|
170011
|
-
/** Property postcode for a KeyNest device. */
|
|
170012
|
-
property_postcode: string | null;
|
|
170013
|
-
/** Key notes for a KeyNest device. */
|
|
170014
|
-
key_notes: string | null;
|
|
170015
|
-
/** Subscription plan for a KeyNest device. */
|
|
170016
|
-
subscription_plan: string;
|
|
170017
|
-
/** Status type for a KeyNest device. */
|
|
170018
|
-
status_type: string;
|
|
170019
|
-
/** Current or last store ID for a KeyNest device. */
|
|
170020
|
-
current_or_last_store_id: number;
|
|
170021
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
170022
|
-
last_movement: string;
|
|
170023
|
-
/** Address for a KeyNest device. */
|
|
170024
|
-
address: string | null;
|
|
170025
|
-
/** Current status for a KeyNest device. */
|
|
170026
|
-
current_status: string | null;
|
|
170027
|
-
/** Current user name for a KeyNest device. */
|
|
170028
|
-
current_user_name: string | null;
|
|
170029
|
-
/** Current user email for a KeyNest device. */
|
|
170030
|
-
current_user_email: string | null;
|
|
170031
|
-
/** Current user phone number for a KeyNest device. */
|
|
170032
|
-
current_user_phone_number: string | null;
|
|
170033
|
-
/** Current user company for a KeyNest device. */
|
|
170034
|
-
current_user_company: string | null;
|
|
170035
|
-
/** Handover method for a KeyNest device. */
|
|
170036
|
-
handover_method: string | null;
|
|
170037
|
-
/** KeyNest app user for a KeyNest device. */
|
|
170038
|
-
keynest_app_user: string | null;
|
|
170039
|
-
/** Default office ID for a KeyNest device. */
|
|
170040
|
-
default_office_id: number;
|
|
170041
|
-
/** Fob ID for a KeyNest device. */
|
|
170042
|
-
fob_id: number;
|
|
170043
|
-
/** Whether the KeyNest device has a photo. */
|
|
170044
|
-
has_photo: boolean;
|
|
169004
|
+
device_name?: string | undefined;
|
|
170045
169005
|
} | undefined;
|
|
170046
169006
|
}) & ({
|
|
170047
169007
|
/** */
|
|
@@ -177148,46 +176108,8 @@ type Routes = {
|
|
|
177148
176108
|
} | undefined;
|
|
177149
176109
|
/** Metadata for a KeyNest device. */
|
|
177150
176110
|
keynest_metadata?: {
|
|
177151
|
-
/** Key ID for a KeyNest device. */
|
|
177152
|
-
key_id: string;
|
|
177153
176111
|
/** Device name for a KeyNest device. */
|
|
177154
|
-
device_name
|
|
177155
|
-
/** Property ID for a KeyNest device. */
|
|
177156
|
-
property_id: string | null;
|
|
177157
|
-
/** Property postcode for a KeyNest device. */
|
|
177158
|
-
property_postcode: string | null;
|
|
177159
|
-
/** Key notes for a KeyNest device. */
|
|
177160
|
-
key_notes: string | null;
|
|
177161
|
-
/** Subscription plan for a KeyNest device. */
|
|
177162
|
-
subscription_plan: string;
|
|
177163
|
-
/** Status type for a KeyNest device. */
|
|
177164
|
-
status_type: string;
|
|
177165
|
-
/** Current or last store ID for a KeyNest device. */
|
|
177166
|
-
current_or_last_store_id: number;
|
|
177167
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
177168
|
-
last_movement: string;
|
|
177169
|
-
/** Address for a KeyNest device. */
|
|
177170
|
-
address: string | null;
|
|
177171
|
-
/** Current status for a KeyNest device. */
|
|
177172
|
-
current_status: string | null;
|
|
177173
|
-
/** Current user name for a KeyNest device. */
|
|
177174
|
-
current_user_name: string | null;
|
|
177175
|
-
/** Current user email for a KeyNest device. */
|
|
177176
|
-
current_user_email: string | null;
|
|
177177
|
-
/** Current user phone number for a KeyNest device. */
|
|
177178
|
-
current_user_phone_number: string | null;
|
|
177179
|
-
/** Current user company for a KeyNest device. */
|
|
177180
|
-
current_user_company: string | null;
|
|
177181
|
-
/** Handover method for a KeyNest device. */
|
|
177182
|
-
handover_method: string | null;
|
|
177183
|
-
/** KeyNest app user for a KeyNest device. */
|
|
177184
|
-
keynest_app_user: string | null;
|
|
177185
|
-
/** Default office ID for a KeyNest device. */
|
|
177186
|
-
default_office_id: number;
|
|
177187
|
-
/** Fob ID for a KeyNest device. */
|
|
177188
|
-
fob_id: number;
|
|
177189
|
-
/** Whether the KeyNest device has a photo. */
|
|
177190
|
-
has_photo: boolean;
|
|
176112
|
+
device_name?: string | undefined;
|
|
177191
176113
|
} | undefined;
|
|
177192
176114
|
}) & ({
|
|
177193
176115
|
/** */
|
|
@@ -178355,46 +177277,8 @@ type Routes = {
|
|
|
178355
177277
|
} | undefined;
|
|
178356
177278
|
/** Metadata for a KeyNest device. */
|
|
178357
177279
|
keynest_metadata?: {
|
|
178358
|
-
/** Key ID for a KeyNest device. */
|
|
178359
|
-
key_id: string;
|
|
178360
177280
|
/** Device name for a KeyNest device. */
|
|
178361
|
-
device_name
|
|
178362
|
-
/** Property ID for a KeyNest device. */
|
|
178363
|
-
property_id: string | null;
|
|
178364
|
-
/** Property postcode for a KeyNest device. */
|
|
178365
|
-
property_postcode: string | null;
|
|
178366
|
-
/** Key notes for a KeyNest device. */
|
|
178367
|
-
key_notes: string | null;
|
|
178368
|
-
/** Subscription plan for a KeyNest device. */
|
|
178369
|
-
subscription_plan: string;
|
|
178370
|
-
/** Status type for a KeyNest device. */
|
|
178371
|
-
status_type: string;
|
|
178372
|
-
/** Current or last store ID for a KeyNest device. */
|
|
178373
|
-
current_or_last_store_id: number;
|
|
178374
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
178375
|
-
last_movement: string;
|
|
178376
|
-
/** Address for a KeyNest device. */
|
|
178377
|
-
address: string | null;
|
|
178378
|
-
/** Current status for a KeyNest device. */
|
|
178379
|
-
current_status: string | null;
|
|
178380
|
-
/** Current user name for a KeyNest device. */
|
|
178381
|
-
current_user_name: string | null;
|
|
178382
|
-
/** Current user email for a KeyNest device. */
|
|
178383
|
-
current_user_email: string | null;
|
|
178384
|
-
/** Current user phone number for a KeyNest device. */
|
|
178385
|
-
current_user_phone_number: string | null;
|
|
178386
|
-
/** Current user company for a KeyNest device. */
|
|
178387
|
-
current_user_company: string | null;
|
|
178388
|
-
/** Handover method for a KeyNest device. */
|
|
178389
|
-
handover_method: string | null;
|
|
178390
|
-
/** KeyNest app user for a KeyNest device. */
|
|
178391
|
-
keynest_app_user: string | null;
|
|
178392
|
-
/** Default office ID for a KeyNest device. */
|
|
178393
|
-
default_office_id: number;
|
|
178394
|
-
/** Fob ID for a KeyNest device. */
|
|
178395
|
-
fob_id: number;
|
|
178396
|
-
/** Whether the KeyNest device has a photo. */
|
|
178397
|
-
has_photo: boolean;
|
|
177281
|
+
device_name?: string | undefined;
|
|
178398
177282
|
} | undefined;
|
|
178399
177283
|
}) & ({
|
|
178400
177284
|
/** */
|
|
@@ -180321,46 +179205,8 @@ type Routes = {
|
|
|
180321
179205
|
} | undefined;
|
|
180322
179206
|
/** Metadata for a KeyNest device. */
|
|
180323
179207
|
keynest_metadata?: {
|
|
180324
|
-
/** Key ID for a KeyNest device. */
|
|
180325
|
-
key_id: string;
|
|
180326
179208
|
/** Device name for a KeyNest device. */
|
|
180327
|
-
device_name
|
|
180328
|
-
/** Property ID for a KeyNest device. */
|
|
180329
|
-
property_id: string | null;
|
|
180330
|
-
/** Property postcode for a KeyNest device. */
|
|
180331
|
-
property_postcode: string | null;
|
|
180332
|
-
/** Key notes for a KeyNest device. */
|
|
180333
|
-
key_notes: string | null;
|
|
180334
|
-
/** Subscription plan for a KeyNest device. */
|
|
180335
|
-
subscription_plan: string;
|
|
180336
|
-
/** Status type for a KeyNest device. */
|
|
180337
|
-
status_type: string;
|
|
180338
|
-
/** Current or last store ID for a KeyNest device. */
|
|
180339
|
-
current_or_last_store_id: number;
|
|
180340
|
-
/** Last movement timestamp for a KeyNest device. */
|
|
180341
|
-
last_movement: string;
|
|
180342
|
-
/** Address for a KeyNest device. */
|
|
180343
|
-
address: string | null;
|
|
180344
|
-
/** Current status for a KeyNest device. */
|
|
180345
|
-
current_status: string | null;
|
|
180346
|
-
/** Current user name for a KeyNest device. */
|
|
180347
|
-
current_user_name: string | null;
|
|
180348
|
-
/** Current user email for a KeyNest device. */
|
|
180349
|
-
current_user_email: string | null;
|
|
180350
|
-
/** Current user phone number for a KeyNest device. */
|
|
180351
|
-
current_user_phone_number: string | null;
|
|
180352
|
-
/** Current user company for a KeyNest device. */
|
|
180353
|
-
current_user_company: string | null;
|
|
180354
|
-
/** Handover method for a KeyNest device. */
|
|
180355
|
-
handover_method: string | null;
|
|
180356
|
-
/** KeyNest app user for a KeyNest device. */
|
|
180357
|
-
keynest_app_user: string | null;
|
|
180358
|
-
/** Default office ID for a KeyNest device. */
|
|
180359
|
-
default_office_id: number;
|
|
180360
|
-
/** Fob ID for a KeyNest device. */
|
|
180361
|
-
fob_id: number;
|
|
180362
|
-
/** Whether the KeyNest device has a photo. */
|
|
180363
|
-
has_photo: boolean;
|
|
179209
|
+
device_name?: string | undefined;
|
|
180364
179210
|
} | undefined;
|
|
180365
179211
|
}) & ({
|
|
180366
179212
|
/** */
|
|
@@ -186655,6 +185501,15 @@ type Routes = {
|
|
|
186655
185501
|
/** Noise level in decibels for the noise threshold. */
|
|
186656
185502
|
noise_threshold_decibels: number;
|
|
186657
185503
|
}[] | undefined;
|
|
185504
|
+
customization_profiles?: {
|
|
185505
|
+
workspace_id: string;
|
|
185506
|
+
name: string | null;
|
|
185507
|
+
customization_profile_id: string;
|
|
185508
|
+
created_at: string;
|
|
185509
|
+
logo_url?: string | undefined;
|
|
185510
|
+
primary_color?: string | undefined;
|
|
185511
|
+
secondary_color?: string | undefined;
|
|
185512
|
+
}[] | undefined;
|
|
186658
185513
|
};
|
|
186659
185514
|
};
|
|
186660
185515
|
};
|
|
@@ -188022,4 +186877,4 @@ type RouteRequestParams<Path extends keyof Routes> = Routes[Path]['queryParams']
|
|
|
188022
186877
|
|
|
188023
186878
|
declare const routes: {};
|
|
188024
186879
|
|
|
188025
|
-
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AccessGrant, type AccessMethod, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Batch, type Bridge, type BuildingBlockType, type ClientSession, type ClimatePreset, type ConnectWebview, type ConnectedAccount, type ConnectedAccountError, type ConnectedAccountWarning, type CustomMetadata, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type MagicLink, type NoiseThreshold, type Pagination, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type Space, type ThermostatDailyProgram, type ThermostatSchedule, type ThermostatWeeklyProgram, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|
|
186880
|
+
export { type AccessCode, type AccessCodeError, type AccessCodeWarning, type AccessGrant, type AccessMethod, type AcsAccessGroup, type AcsCredential, type AcsEncoder, type AcsEntrance, type AcsSystem, type AcsUser, type ActionAttempt, type Batch, type Bridge, type BuildingBlockType, type ClientSession, type ClimatePreset, type ConnectWebview, type ConnectedAccount, type ConnectedAccountError, type ConnectedAccountWarning, type CustomMetadata, type CustomizationProfile, type Device, type DeviceError, type DeviceProvider, type DeviceWarning, type InstantKey, type MagicLink, type NoiseThreshold, type Pagination, type RouteRequestBody, type RouteRequestParams, type RouteResponse, type Routes, type SeamEvent, type SeamEventType, type Space, type ThermostatDailyProgram, type ThermostatSchedule, type ThermostatWeeklyProgram, type UnmanagedAccessCode, type UnmanagedDevice, type UserIdentity, type Webhook, type Workspace, _default as openapi, routes, schemas };
|