@seamapi/types 1.768.1 → 1.770.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 +159 -35
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +834 -90
- package/dist/index.cjs +159 -35
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-grants/access-grant.d.ts +10 -10
- package/lib/seam/connect/models/access-grants/access-method.d.ts +6 -6
- package/lib/seam/connect/models/access-grants/access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/access-method.js.map +1 -1
- package/lib/seam/connect/models/access-grants/requested-access-method.d.ts +3 -3
- package/lib/seam/connect/models/access-grants/requested-access-method.js +2 -2
- package/lib/seam/connect/models/access-grants/requested-access-method.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +6 -6
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -4
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +60 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/encode-credential.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +30 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js +22 -0
- package/lib/seam/connect/models/action-attempts/scan-credential.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +101 -17
- package/lib/seam/connect/models/phones/phone-session.d.ts +16 -16
- package/lib/seam/connect/openapi.js +110 -26
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +662 -62
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-grants/access-method.ts +2 -2
- package/src/lib/seam/connect/models/access-grants/requested-access-method.ts +2 -2
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +4 -4
- package/src/lib/seam/connect/models/action-attempts/encode-credential.ts +34 -0
- package/src/lib/seam/connect/models/action-attempts/scan-credential.ts +34 -0
- package/src/lib/seam/connect/openapi.ts +122 -26
- package/src/lib/seam/connect/route-types.ts +782 -62
|
@@ -5286,8 +5286,8 @@ export declare const batch: z.ZodObject<{
|
|
|
5286
5286
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
5287
5287
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
5288
5288
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
5289
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
5290
5289
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
5290
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
5291
5291
|
}, "strip", z.ZodTypeAny, {
|
|
5292
5292
|
display_name: string;
|
|
5293
5293
|
created_at: string;
|
|
@@ -5332,8 +5332,8 @@ export declare const batch: z.ZodObject<{
|
|
|
5332
5332
|
can_unlock_with_code?: boolean | undefined;
|
|
5333
5333
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
5334
5334
|
can_unlock_with_card?: boolean | undefined;
|
|
5335
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
5336
5335
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
5336
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
5337
5337
|
latch_metadata?: {
|
|
5338
5338
|
door_name: string;
|
|
5339
5339
|
is_connected: boolean;
|
|
@@ -5403,8 +5403,8 @@ export declare const batch: z.ZodObject<{
|
|
|
5403
5403
|
can_unlock_with_code?: boolean | undefined;
|
|
5404
5404
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
5405
5405
|
can_unlock_with_card?: boolean | undefined;
|
|
5406
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
5407
5406
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
5407
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
5408
5408
|
latch_metadata?: {
|
|
5409
5409
|
door_name: string;
|
|
5410
5410
|
is_connected: boolean;
|
|
@@ -9193,6 +9193,24 @@ export declare const batch: z.ZodObject<{
|
|
|
9193
9193
|
}, {
|
|
9194
9194
|
message: string;
|
|
9195
9195
|
type: "encoder_not_online";
|
|
9196
|
+
}>, z.ZodObject<{
|
|
9197
|
+
type: z.ZodLiteral<"encoder_timeout_error">;
|
|
9198
|
+
message: z.ZodString;
|
|
9199
|
+
}, "strip", z.ZodTypeAny, {
|
|
9200
|
+
message: string;
|
|
9201
|
+
type: "encoder_timeout_error";
|
|
9202
|
+
}, {
|
|
9203
|
+
message: string;
|
|
9204
|
+
type: "encoder_timeout_error";
|
|
9205
|
+
}>, z.ZodObject<{
|
|
9206
|
+
type: z.ZodLiteral<"bridge_disconnected">;
|
|
9207
|
+
message: z.ZodString;
|
|
9208
|
+
}, "strip", z.ZodTypeAny, {
|
|
9209
|
+
message: string;
|
|
9210
|
+
type: "bridge_disconnected";
|
|
9211
|
+
}, {
|
|
9212
|
+
message: string;
|
|
9213
|
+
type: "bridge_disconnected";
|
|
9196
9214
|
}>]>;
|
|
9197
9215
|
}, "strip", z.ZodTypeAny, {
|
|
9198
9216
|
status: "error";
|
|
@@ -9209,6 +9227,12 @@ export declare const batch: z.ZodObject<{
|
|
|
9209
9227
|
} | {
|
|
9210
9228
|
message: string;
|
|
9211
9229
|
type: "encoder_not_online";
|
|
9230
|
+
} | {
|
|
9231
|
+
message: string;
|
|
9232
|
+
type: "encoder_timeout_error";
|
|
9233
|
+
} | {
|
|
9234
|
+
message: string;
|
|
9235
|
+
type: "bridge_disconnected";
|
|
9212
9236
|
};
|
|
9213
9237
|
result: null;
|
|
9214
9238
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -9227,6 +9251,12 @@ export declare const batch: z.ZodObject<{
|
|
|
9227
9251
|
} | {
|
|
9228
9252
|
message: string;
|
|
9229
9253
|
type: "encoder_not_online";
|
|
9254
|
+
} | {
|
|
9255
|
+
message: string;
|
|
9256
|
+
type: "encoder_timeout_error";
|
|
9257
|
+
} | {
|
|
9258
|
+
message: string;
|
|
9259
|
+
type: "bridge_disconnected";
|
|
9230
9260
|
};
|
|
9231
9261
|
result: null;
|
|
9232
9262
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -10237,6 +10267,24 @@ export declare const batch: z.ZodObject<{
|
|
|
10237
10267
|
}, {
|
|
10238
10268
|
message: string;
|
|
10239
10269
|
type: "encoder_not_online";
|
|
10270
|
+
}>, z.ZodObject<{
|
|
10271
|
+
type: z.ZodLiteral<"encoder_timeout_error">;
|
|
10272
|
+
message: z.ZodString;
|
|
10273
|
+
}, "strip", z.ZodTypeAny, {
|
|
10274
|
+
message: string;
|
|
10275
|
+
type: "encoder_timeout_error";
|
|
10276
|
+
}, {
|
|
10277
|
+
message: string;
|
|
10278
|
+
type: "encoder_timeout_error";
|
|
10279
|
+
}>, z.ZodObject<{
|
|
10280
|
+
type: z.ZodLiteral<"bridge_disconnected">;
|
|
10281
|
+
message: z.ZodString;
|
|
10282
|
+
}, "strip", z.ZodTypeAny, {
|
|
10283
|
+
message: string;
|
|
10284
|
+
type: "bridge_disconnected";
|
|
10285
|
+
}, {
|
|
10286
|
+
message: string;
|
|
10287
|
+
type: "bridge_disconnected";
|
|
10240
10288
|
}>]>;
|
|
10241
10289
|
}, "strip", z.ZodTypeAny, {
|
|
10242
10290
|
status: "error";
|
|
@@ -10259,6 +10307,12 @@ export declare const batch: z.ZodObject<{
|
|
|
10259
10307
|
} | {
|
|
10260
10308
|
message: string;
|
|
10261
10309
|
type: "encoder_not_online";
|
|
10310
|
+
} | {
|
|
10311
|
+
message: string;
|
|
10312
|
+
type: "encoder_timeout_error";
|
|
10313
|
+
} | {
|
|
10314
|
+
message: string;
|
|
10315
|
+
type: "bridge_disconnected";
|
|
10262
10316
|
};
|
|
10263
10317
|
result: null;
|
|
10264
10318
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -10283,6 +10337,12 @@ export declare const batch: z.ZodObject<{
|
|
|
10283
10337
|
} | {
|
|
10284
10338
|
message: string;
|
|
10285
10339
|
type: "encoder_not_online";
|
|
10340
|
+
} | {
|
|
10341
|
+
message: string;
|
|
10342
|
+
type: "encoder_timeout_error";
|
|
10343
|
+
} | {
|
|
10344
|
+
message: string;
|
|
10345
|
+
type: "bridge_disconnected";
|
|
10286
10346
|
};
|
|
10287
10347
|
result: null;
|
|
10288
10348
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -16447,7 +16507,7 @@ export declare const batch: z.ZodObject<{
|
|
|
16447
16507
|
workspace_id: z.ZodString;
|
|
16448
16508
|
access_method_id: z.ZodString;
|
|
16449
16509
|
display_name: z.ZodString;
|
|
16450
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
16510
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
16451
16511
|
created_at: z.ZodString;
|
|
16452
16512
|
issued_at: z.ZodNullable<z.ZodString>;
|
|
16453
16513
|
is_issued: z.ZodBoolean;
|
|
@@ -16646,7 +16706,7 @@ export declare const batch: z.ZodObject<{
|
|
|
16646
16706
|
warning_code: "pulled_backup_access_code";
|
|
16647
16707
|
original_access_method_id?: string | undefined;
|
|
16648
16708
|
})[];
|
|
16649
|
-
mode: "code" | "card" | "mobile_key";
|
|
16709
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
16650
16710
|
pending_mutations: ({
|
|
16651
16711
|
message: string;
|
|
16652
16712
|
created_at: string;
|
|
@@ -16707,7 +16767,7 @@ export declare const batch: z.ZodObject<{
|
|
|
16707
16767
|
warning_code: "pulled_backup_access_code";
|
|
16708
16768
|
original_access_method_id?: string | undefined;
|
|
16709
16769
|
})[];
|
|
16710
|
-
mode: "code" | "card" | "mobile_key";
|
|
16770
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
16711
16771
|
pending_mutations: ({
|
|
16712
16772
|
message: string;
|
|
16713
16773
|
created_at: string;
|
|
@@ -16761,7 +16821,7 @@ export declare const batch: z.ZodObject<{
|
|
|
16761
16821
|
space_ids: z.ZodArray<z.ZodString, "many">;
|
|
16762
16822
|
requested_access_methods: z.ZodArray<z.ZodObject<{
|
|
16763
16823
|
display_name: z.ZodString;
|
|
16764
|
-
mode: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
16824
|
+
mode: z.ZodEnum<["code", "card", "mobile_key", "cloud_key"]>;
|
|
16765
16825
|
code: z.ZodOptional<z.ZodString>;
|
|
16766
16826
|
instant_key_max_use_count: z.ZodOptional<z.ZodNumber>;
|
|
16767
16827
|
created_at: z.ZodString;
|
|
@@ -16769,14 +16829,14 @@ export declare const batch: z.ZodObject<{
|
|
|
16769
16829
|
}, "strip", z.ZodTypeAny, {
|
|
16770
16830
|
display_name: string;
|
|
16771
16831
|
created_at: string;
|
|
16772
|
-
mode: "code" | "card" | "mobile_key";
|
|
16832
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
16773
16833
|
created_access_method_ids: string[];
|
|
16774
16834
|
code?: string | undefined;
|
|
16775
16835
|
instant_key_max_use_count?: number | undefined;
|
|
16776
16836
|
}, {
|
|
16777
16837
|
display_name: string;
|
|
16778
16838
|
created_at: string;
|
|
16779
|
-
mode: "code" | "card" | "mobile_key";
|
|
16839
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
16780
16840
|
created_access_method_ids: string[];
|
|
16781
16841
|
code?: string | undefined;
|
|
16782
16842
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -17045,7 +17105,7 @@ export declare const batch: z.ZodObject<{
|
|
|
17045
17105
|
requested_access_methods: {
|
|
17046
17106
|
display_name: string;
|
|
17047
17107
|
created_at: string;
|
|
17048
|
-
mode: "code" | "card" | "mobile_key";
|
|
17108
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
17049
17109
|
created_access_method_ids: string[];
|
|
17050
17110
|
code?: string | undefined;
|
|
17051
17111
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -17130,7 +17190,7 @@ export declare const batch: z.ZodObject<{
|
|
|
17130
17190
|
requested_access_methods: {
|
|
17131
17191
|
display_name: string;
|
|
17132
17192
|
created_at: string;
|
|
17133
|
-
mode: "code" | "card" | "mobile_key";
|
|
17193
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
17134
17194
|
created_access_method_ids: string[];
|
|
17135
17195
|
code?: string | undefined;
|
|
17136
17196
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -26218,8 +26278,8 @@ export declare const batch: z.ZodObject<{
|
|
|
26218
26278
|
can_unlock_with_code?: boolean | undefined;
|
|
26219
26279
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
26220
26280
|
can_unlock_with_card?: boolean | undefined;
|
|
26221
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
26222
26281
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
26282
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
26223
26283
|
latch_metadata?: {
|
|
26224
26284
|
door_name: string;
|
|
26225
26285
|
is_connected: boolean;
|
|
@@ -27071,6 +27131,12 @@ export declare const batch: z.ZodObject<{
|
|
|
27071
27131
|
} | {
|
|
27072
27132
|
message: string;
|
|
27073
27133
|
type: "encoder_not_online";
|
|
27134
|
+
} | {
|
|
27135
|
+
message: string;
|
|
27136
|
+
type: "encoder_timeout_error";
|
|
27137
|
+
} | {
|
|
27138
|
+
message: string;
|
|
27139
|
+
type: "bridge_disconnected";
|
|
27074
27140
|
};
|
|
27075
27141
|
result: null;
|
|
27076
27142
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -27337,6 +27403,12 @@ export declare const batch: z.ZodObject<{
|
|
|
27337
27403
|
} | {
|
|
27338
27404
|
message: string;
|
|
27339
27405
|
type: "encoder_not_online";
|
|
27406
|
+
} | {
|
|
27407
|
+
message: string;
|
|
27408
|
+
type: "encoder_timeout_error";
|
|
27409
|
+
} | {
|
|
27410
|
+
message: string;
|
|
27411
|
+
type: "bridge_disconnected";
|
|
27340
27412
|
};
|
|
27341
27413
|
result: null;
|
|
27342
27414
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -27986,7 +28058,7 @@ export declare const batch: z.ZodObject<{
|
|
|
27986
28058
|
warning_code: "pulled_backup_access_code";
|
|
27987
28059
|
original_access_method_id?: string | undefined;
|
|
27988
28060
|
})[];
|
|
27989
|
-
mode: "code" | "card" | "mobile_key";
|
|
28061
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
27990
28062
|
pending_mutations: ({
|
|
27991
28063
|
message: string;
|
|
27992
28064
|
created_at: string;
|
|
@@ -28080,7 +28152,7 @@ export declare const batch: z.ZodObject<{
|
|
|
28080
28152
|
requested_access_methods: {
|
|
28081
28153
|
display_name: string;
|
|
28082
28154
|
created_at: string;
|
|
28083
|
-
mode: "code" | "card" | "mobile_key";
|
|
28155
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
28084
28156
|
created_access_method_ids: string[];
|
|
28085
28157
|
code?: string | undefined;
|
|
28086
28158
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -31064,8 +31136,8 @@ export declare const batch: z.ZodObject<{
|
|
|
31064
31136
|
can_unlock_with_code?: boolean | undefined;
|
|
31065
31137
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
31066
31138
|
can_unlock_with_card?: boolean | undefined;
|
|
31067
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
31068
31139
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
31140
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
31069
31141
|
latch_metadata?: {
|
|
31070
31142
|
door_name: string;
|
|
31071
31143
|
is_connected: boolean;
|
|
@@ -31917,6 +31989,12 @@ export declare const batch: z.ZodObject<{
|
|
|
31917
31989
|
} | {
|
|
31918
31990
|
message: string;
|
|
31919
31991
|
type: "encoder_not_online";
|
|
31992
|
+
} | {
|
|
31993
|
+
message: string;
|
|
31994
|
+
type: "encoder_timeout_error";
|
|
31995
|
+
} | {
|
|
31996
|
+
message: string;
|
|
31997
|
+
type: "bridge_disconnected";
|
|
31920
31998
|
};
|
|
31921
31999
|
result: null;
|
|
31922
32000
|
action_type: "ENCODE_CREDENTIAL";
|
|
@@ -32183,6 +32261,12 @@ export declare const batch: z.ZodObject<{
|
|
|
32183
32261
|
} | {
|
|
32184
32262
|
message: string;
|
|
32185
32263
|
type: "encoder_not_online";
|
|
32264
|
+
} | {
|
|
32265
|
+
message: string;
|
|
32266
|
+
type: "encoder_timeout_error";
|
|
32267
|
+
} | {
|
|
32268
|
+
message: string;
|
|
32269
|
+
type: "bridge_disconnected";
|
|
32186
32270
|
};
|
|
32187
32271
|
result: null;
|
|
32188
32272
|
action_type: "SCAN_CREDENTIAL";
|
|
@@ -32832,7 +32916,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32832
32916
|
warning_code: "pulled_backup_access_code";
|
|
32833
32917
|
original_access_method_id?: string | undefined;
|
|
32834
32918
|
})[];
|
|
32835
|
-
mode: "code" | "card" | "mobile_key";
|
|
32919
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
32836
32920
|
pending_mutations: ({
|
|
32837
32921
|
message: string;
|
|
32838
32922
|
created_at: string;
|
|
@@ -32926,7 +33010,7 @@ export declare const batch: z.ZodObject<{
|
|
|
32926
33010
|
requested_access_methods: {
|
|
32927
33011
|
display_name: string;
|
|
32928
33012
|
created_at: string;
|
|
32929
|
-
mode: "code" | "card" | "mobile_key";
|
|
33013
|
+
mode: "code" | "card" | "mobile_key" | "cloud_key";
|
|
32930
33014
|
created_access_method_ids: string[];
|
|
32931
33015
|
code?: string | undefined;
|
|
32932
33016
|
instant_key_max_use_count?: number | undefined;
|
|
@@ -357,8 +357,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
357
357
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
358
358
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
359
359
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
360
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
361
360
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
361
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
362
362
|
}, "strip", z.ZodTypeAny, {
|
|
363
363
|
display_name: string;
|
|
364
364
|
created_at: string;
|
|
@@ -403,8 +403,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
403
403
|
can_unlock_with_code?: boolean | undefined;
|
|
404
404
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
405
405
|
can_unlock_with_card?: boolean | undefined;
|
|
406
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
407
406
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
407
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
408
408
|
latch_metadata?: {
|
|
409
409
|
door_name: string;
|
|
410
410
|
is_connected: boolean;
|
|
@@ -474,8 +474,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
474
474
|
can_unlock_with_code?: boolean | undefined;
|
|
475
475
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
476
476
|
can_unlock_with_card?: boolean | undefined;
|
|
477
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
478
477
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
478
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
479
479
|
latch_metadata?: {
|
|
480
480
|
door_name: string;
|
|
481
481
|
is_connected: boolean;
|
|
@@ -584,8 +584,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
584
584
|
can_unlock_with_code?: boolean | undefined;
|
|
585
585
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
586
586
|
can_unlock_with_card?: boolean | undefined;
|
|
587
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
588
587
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
588
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
589
589
|
latch_metadata?: {
|
|
590
590
|
door_name: string;
|
|
591
591
|
is_connected: boolean;
|
|
@@ -728,8 +728,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
728
728
|
can_unlock_with_code?: boolean | undefined;
|
|
729
729
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
730
730
|
can_unlock_with_card?: boolean | undefined;
|
|
731
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
732
731
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
732
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
733
733
|
latch_metadata?: {
|
|
734
734
|
door_name: string;
|
|
735
735
|
is_connected: boolean;
|
|
@@ -874,8 +874,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
874
874
|
can_unlock_with_code?: boolean | undefined;
|
|
875
875
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
876
876
|
can_unlock_with_card?: boolean | undefined;
|
|
877
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
878
877
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
878
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
879
879
|
latch_metadata?: {
|
|
880
880
|
door_name: string;
|
|
881
881
|
is_connected: boolean;
|
|
@@ -1026,8 +1026,8 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
1026
1026
|
can_unlock_with_code?: boolean | undefined;
|
|
1027
1027
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1028
1028
|
can_unlock_with_card?: boolean | undefined;
|
|
1029
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1030
1029
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1030
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1031
1031
|
latch_metadata?: {
|
|
1032
1032
|
door_name: string;
|
|
1033
1033
|
is_connected: boolean;
|
|
@@ -1455,8 +1455,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1455
1455
|
can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
|
|
1456
1456
|
can_unlock_with_card: z.ZodOptional<z.ZodBoolean>;
|
|
1457
1457
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
1458
|
-
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
1459
1458
|
can_unlock_with_cloud_key: z.ZodOptional<z.ZodBoolean>;
|
|
1459
|
+
can_belong_to_reservation: z.ZodOptional<z.ZodBoolean>;
|
|
1460
1460
|
}, "strip", z.ZodTypeAny, {
|
|
1461
1461
|
display_name: string;
|
|
1462
1462
|
created_at: string;
|
|
@@ -1501,8 +1501,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1501
1501
|
can_unlock_with_code?: boolean | undefined;
|
|
1502
1502
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1503
1503
|
can_unlock_with_card?: boolean | undefined;
|
|
1504
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1505
1504
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1505
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1506
1506
|
latch_metadata?: {
|
|
1507
1507
|
door_name: string;
|
|
1508
1508
|
is_connected: boolean;
|
|
@@ -1572,8 +1572,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1572
1572
|
can_unlock_with_code?: boolean | undefined;
|
|
1573
1573
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1574
1574
|
can_unlock_with_card?: boolean | undefined;
|
|
1575
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1576
1575
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1576
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1577
1577
|
latch_metadata?: {
|
|
1578
1578
|
door_name: string;
|
|
1579
1579
|
is_connected: boolean;
|
|
@@ -1682,8 +1682,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1682
1682
|
can_unlock_with_code?: boolean | undefined;
|
|
1683
1683
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1684
1684
|
can_unlock_with_card?: boolean | undefined;
|
|
1685
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1686
1685
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1686
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1687
1687
|
latch_metadata?: {
|
|
1688
1688
|
door_name: string;
|
|
1689
1689
|
is_connected: boolean;
|
|
@@ -1826,8 +1826,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1826
1826
|
can_unlock_with_code?: boolean | undefined;
|
|
1827
1827
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1828
1828
|
can_unlock_with_card?: boolean | undefined;
|
|
1829
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1830
1829
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1830
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1831
1831
|
latch_metadata?: {
|
|
1832
1832
|
door_name: string;
|
|
1833
1833
|
is_connected: boolean;
|
|
@@ -1972,8 +1972,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1972
1972
|
can_unlock_with_code?: boolean | undefined;
|
|
1973
1973
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
1974
1974
|
can_unlock_with_card?: boolean | undefined;
|
|
1975
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
1976
1975
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
1976
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
1977
1977
|
latch_metadata?: {
|
|
1978
1978
|
door_name: string;
|
|
1979
1979
|
is_connected: boolean;
|
|
@@ -2124,8 +2124,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2124
2124
|
can_unlock_with_code?: boolean | undefined;
|
|
2125
2125
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2126
2126
|
can_unlock_with_card?: boolean | undefined;
|
|
2127
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2128
2127
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2128
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2129
2129
|
latch_metadata?: {
|
|
2130
2130
|
door_name: string;
|
|
2131
2131
|
is_connected: boolean;
|
|
@@ -2391,8 +2391,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2391
2391
|
can_unlock_with_code?: boolean | undefined;
|
|
2392
2392
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2393
2393
|
can_unlock_with_card?: boolean | undefined;
|
|
2394
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2395
2394
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2395
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2396
2396
|
latch_metadata?: {
|
|
2397
2397
|
door_name: string;
|
|
2398
2398
|
is_connected: boolean;
|
|
@@ -2574,8 +2574,8 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2574
2574
|
can_unlock_with_code?: boolean | undefined;
|
|
2575
2575
|
can_unlock_with_mobile_key?: boolean | undefined;
|
|
2576
2576
|
can_unlock_with_card?: boolean | undefined;
|
|
2577
|
-
can_belong_to_reservation?: boolean | undefined;
|
|
2578
2577
|
can_unlock_with_cloud_key?: boolean | undefined;
|
|
2578
|
+
can_belong_to_reservation?: boolean | undefined;
|
|
2579
2579
|
latch_metadata?: {
|
|
2580
2580
|
door_name: string;
|
|
2581
2581
|
is_connected: boolean;
|