@seamapi/types 1.547.0 → 1.549.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 +43 -11
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +292 -210
- package/dist/index.cjs +43 -11
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credential.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-credential.js +1 -0
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +14 -4
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +6 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js +2 -0
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +24 -24
- package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +10 -10
- package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +14 -14
- package/lib/seam/connect/models/batch.d.ts +184 -114
- package/lib/seam/connect/models/phones/phone-session.d.ts +70 -30
- package/lib/seam/connect/openapi.d.ts +18 -0
- package/lib/seam/connect/openapi.js +31 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +168 -128
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +31 -2
- package/src/lib/seam/connect/route-types.ts +168 -0
|
@@ -4100,9 +4100,15 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4100
4100
|
}>>;
|
|
4101
4101
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
4102
4102
|
room_number: z.ZodString;
|
|
4103
|
+
display_name: z.ZodString;
|
|
4104
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
4103
4105
|
}, "strip", z.ZodTypeAny, {
|
|
4106
|
+
display_name: string;
|
|
4107
|
+
door_type: "common_area" | "guest";
|
|
4104
4108
|
room_number: string;
|
|
4105
4109
|
}, {
|
|
4110
|
+
display_name: string;
|
|
4111
|
+
door_type: "common_area" | "guest";
|
|
4106
4112
|
room_number: string;
|
|
4107
4113
|
}>>;
|
|
4108
4114
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -4120,14 +4126,14 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4120
4126
|
}>, "many">>;
|
|
4121
4127
|
}, "strip", z.ZodTypeAny, {
|
|
4122
4128
|
door_name: string;
|
|
4123
|
-
door_category: "
|
|
4129
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
4124
4130
|
profiles?: {
|
|
4125
4131
|
visionline_door_profile_id: string;
|
|
4126
4132
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
4127
4133
|
}[] | undefined;
|
|
4128
4134
|
}, {
|
|
4129
4135
|
door_name: string;
|
|
4130
|
-
door_category: "
|
|
4136
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
4131
4137
|
profiles?: {
|
|
4132
4138
|
visionline_door_profile_id: string;
|
|
4133
4139
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4245,7 +4251,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4245
4251
|
} | undefined;
|
|
4246
4252
|
visionline_metadata?: {
|
|
4247
4253
|
door_name: string;
|
|
4248
|
-
door_category: "
|
|
4254
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
4249
4255
|
profiles?: {
|
|
4250
4256
|
visionline_door_profile_id: string;
|
|
4251
4257
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4268,6 +4274,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4268
4274
|
accessibility_type: string;
|
|
4269
4275
|
} | undefined;
|
|
4270
4276
|
hotek_metadata?: {
|
|
4277
|
+
display_name: string;
|
|
4278
|
+
door_type: "common_area" | "guest";
|
|
4271
4279
|
room_number: string;
|
|
4272
4280
|
} | undefined;
|
|
4273
4281
|
dormakaba_community_metadata?: {
|
|
@@ -4307,7 +4315,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4307
4315
|
} | undefined;
|
|
4308
4316
|
visionline_metadata?: {
|
|
4309
4317
|
door_name: string;
|
|
4310
|
-
door_category: "
|
|
4318
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
4311
4319
|
profiles?: {
|
|
4312
4320
|
visionline_door_profile_id: string;
|
|
4313
4321
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -4330,6 +4338,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4330
4338
|
accessibility_type: string;
|
|
4331
4339
|
} | undefined;
|
|
4332
4340
|
hotek_metadata?: {
|
|
4341
|
+
display_name: string;
|
|
4342
|
+
door_type: "common_area" | "guest";
|
|
4333
4343
|
room_number: string;
|
|
4334
4344
|
} | undefined;
|
|
4335
4345
|
dormakaba_community_metadata?: {
|
|
@@ -5699,7 +5709,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5699
5709
|
} | undefined;
|
|
5700
5710
|
visionline_metadata?: {
|
|
5701
5711
|
door_name: string;
|
|
5702
|
-
door_category: "
|
|
5712
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
5703
5713
|
profiles?: {
|
|
5704
5714
|
visionline_door_profile_id: string;
|
|
5705
5715
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -5722,6 +5732,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5722
5732
|
accessibility_type: string;
|
|
5723
5733
|
} | undefined;
|
|
5724
5734
|
hotek_metadata?: {
|
|
5735
|
+
display_name: string;
|
|
5736
|
+
door_type: "common_area" | "guest";
|
|
5725
5737
|
room_number: string;
|
|
5726
5738
|
} | undefined;
|
|
5727
5739
|
dormakaba_community_metadata?: {
|
|
@@ -6553,7 +6565,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6553
6565
|
} | undefined;
|
|
6554
6566
|
visionline_metadata?: {
|
|
6555
6567
|
door_name: string;
|
|
6556
|
-
door_category: "
|
|
6568
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
6557
6569
|
profiles?: {
|
|
6558
6570
|
visionline_door_profile_id: string;
|
|
6559
6571
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -6576,6 +6588,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6576
6588
|
accessibility_type: string;
|
|
6577
6589
|
} | undefined;
|
|
6578
6590
|
hotek_metadata?: {
|
|
6591
|
+
display_name: string;
|
|
6592
|
+
door_type: "common_area" | "guest";
|
|
6579
6593
|
room_number: string;
|
|
6580
6594
|
} | undefined;
|
|
6581
6595
|
dormakaba_community_metadata?: {
|
|
@@ -10833,9 +10847,15 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10833
10847
|
}>>;
|
|
10834
10848
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
10835
10849
|
room_number: z.ZodString;
|
|
10850
|
+
display_name: z.ZodString;
|
|
10851
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
10836
10852
|
}, "strip", z.ZodTypeAny, {
|
|
10853
|
+
display_name: string;
|
|
10854
|
+
door_type: "common_area" | "guest";
|
|
10837
10855
|
room_number: string;
|
|
10838
10856
|
}, {
|
|
10857
|
+
display_name: string;
|
|
10858
|
+
door_type: "common_area" | "guest";
|
|
10839
10859
|
room_number: string;
|
|
10840
10860
|
}>>;
|
|
10841
10861
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -10853,14 +10873,14 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10853
10873
|
}>, "many">>;
|
|
10854
10874
|
}, "strip", z.ZodTypeAny, {
|
|
10855
10875
|
door_name: string;
|
|
10856
|
-
door_category: "
|
|
10876
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
10857
10877
|
profiles?: {
|
|
10858
10878
|
visionline_door_profile_id: string;
|
|
10859
10879
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
10860
10880
|
}[] | undefined;
|
|
10861
10881
|
}, {
|
|
10862
10882
|
door_name: string;
|
|
10863
|
-
door_category: "
|
|
10883
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
10864
10884
|
profiles?: {
|
|
10865
10885
|
visionline_door_profile_id: string;
|
|
10866
10886
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -10978,7 +10998,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10978
10998
|
} | undefined;
|
|
10979
10999
|
visionline_metadata?: {
|
|
10980
11000
|
door_name: string;
|
|
10981
|
-
door_category: "
|
|
11001
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
10982
11002
|
profiles?: {
|
|
10983
11003
|
visionline_door_profile_id: string;
|
|
10984
11004
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -11001,6 +11021,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11001
11021
|
accessibility_type: string;
|
|
11002
11022
|
} | undefined;
|
|
11003
11023
|
hotek_metadata?: {
|
|
11024
|
+
display_name: string;
|
|
11025
|
+
door_type: "common_area" | "guest";
|
|
11004
11026
|
room_number: string;
|
|
11005
11027
|
} | undefined;
|
|
11006
11028
|
dormakaba_community_metadata?: {
|
|
@@ -11040,7 +11062,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11040
11062
|
} | undefined;
|
|
11041
11063
|
visionline_metadata?: {
|
|
11042
11064
|
door_name: string;
|
|
11043
|
-
door_category: "
|
|
11065
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
11044
11066
|
profiles?: {
|
|
11045
11067
|
visionline_door_profile_id: string;
|
|
11046
11068
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -11063,6 +11085,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11063
11085
|
accessibility_type: string;
|
|
11064
11086
|
} | undefined;
|
|
11065
11087
|
hotek_metadata?: {
|
|
11088
|
+
display_name: string;
|
|
11089
|
+
door_type: "common_area" | "guest";
|
|
11066
11090
|
room_number: string;
|
|
11067
11091
|
} | undefined;
|
|
11068
11092
|
dormakaba_community_metadata?: {
|
|
@@ -12607,7 +12631,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12607
12631
|
} | undefined;
|
|
12608
12632
|
visionline_metadata?: {
|
|
12609
12633
|
door_name: string;
|
|
12610
|
-
door_category: "
|
|
12634
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
12611
12635
|
profiles?: {
|
|
12612
12636
|
visionline_door_profile_id: string;
|
|
12613
12637
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -12630,6 +12654,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12630
12654
|
accessibility_type: string;
|
|
12631
12655
|
} | undefined;
|
|
12632
12656
|
hotek_metadata?: {
|
|
12657
|
+
display_name: string;
|
|
12658
|
+
door_type: "common_area" | "guest";
|
|
12633
12659
|
room_number: string;
|
|
12634
12660
|
} | undefined;
|
|
12635
12661
|
dormakaba_community_metadata?: {
|
|
@@ -13507,7 +13533,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13507
13533
|
} | undefined;
|
|
13508
13534
|
visionline_metadata?: {
|
|
13509
13535
|
door_name: string;
|
|
13510
|
-
door_category: "
|
|
13536
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
13511
13537
|
profiles?: {
|
|
13512
13538
|
visionline_door_profile_id: string;
|
|
13513
13539
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -13530,6 +13556,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13530
13556
|
accessibility_type: string;
|
|
13531
13557
|
} | undefined;
|
|
13532
13558
|
hotek_metadata?: {
|
|
13559
|
+
display_name: string;
|
|
13560
|
+
door_type: "common_area" | "guest";
|
|
13533
13561
|
room_number: string;
|
|
13534
13562
|
} | undefined;
|
|
13535
13563
|
dormakaba_community_metadata?: {
|
|
@@ -17833,9 +17861,15 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17833
17861
|
}>>;
|
|
17834
17862
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
17835
17863
|
room_number: z.ZodString;
|
|
17864
|
+
display_name: z.ZodString;
|
|
17865
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
17836
17866
|
}, "strip", z.ZodTypeAny, {
|
|
17867
|
+
display_name: string;
|
|
17868
|
+
door_type: "common_area" | "guest";
|
|
17837
17869
|
room_number: string;
|
|
17838
17870
|
}, {
|
|
17871
|
+
display_name: string;
|
|
17872
|
+
door_type: "common_area" | "guest";
|
|
17839
17873
|
room_number: string;
|
|
17840
17874
|
}>>;
|
|
17841
17875
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -17853,14 +17887,14 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17853
17887
|
}>, "many">>;
|
|
17854
17888
|
}, "strip", z.ZodTypeAny, {
|
|
17855
17889
|
door_name: string;
|
|
17856
|
-
door_category: "
|
|
17890
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
17857
17891
|
profiles?: {
|
|
17858
17892
|
visionline_door_profile_id: string;
|
|
17859
17893
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
17860
17894
|
}[] | undefined;
|
|
17861
17895
|
}, {
|
|
17862
17896
|
door_name: string;
|
|
17863
|
-
door_category: "
|
|
17897
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
17864
17898
|
profiles?: {
|
|
17865
17899
|
visionline_door_profile_id: string;
|
|
17866
17900
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -17978,7 +18012,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17978
18012
|
} | undefined;
|
|
17979
18013
|
visionline_metadata?: {
|
|
17980
18014
|
door_name: string;
|
|
17981
|
-
door_category: "
|
|
18015
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
17982
18016
|
profiles?: {
|
|
17983
18017
|
visionline_door_profile_id: string;
|
|
17984
18018
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -18001,6 +18035,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18001
18035
|
accessibility_type: string;
|
|
18002
18036
|
} | undefined;
|
|
18003
18037
|
hotek_metadata?: {
|
|
18038
|
+
display_name: string;
|
|
18039
|
+
door_type: "common_area" | "guest";
|
|
18004
18040
|
room_number: string;
|
|
18005
18041
|
} | undefined;
|
|
18006
18042
|
dormakaba_community_metadata?: {
|
|
@@ -18040,7 +18076,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18040
18076
|
} | undefined;
|
|
18041
18077
|
visionline_metadata?: {
|
|
18042
18078
|
door_name: string;
|
|
18043
|
-
door_category: "
|
|
18079
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
18044
18080
|
profiles?: {
|
|
18045
18081
|
visionline_door_profile_id: string;
|
|
18046
18082
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -18063,6 +18099,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18063
18099
|
accessibility_type: string;
|
|
18064
18100
|
} | undefined;
|
|
18065
18101
|
hotek_metadata?: {
|
|
18102
|
+
display_name: string;
|
|
18103
|
+
door_type: "common_area" | "guest";
|
|
18066
18104
|
room_number: string;
|
|
18067
18105
|
} | undefined;
|
|
18068
18106
|
dormakaba_community_metadata?: {
|
|
@@ -18757,7 +18795,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18757
18795
|
} | undefined;
|
|
18758
18796
|
visionline_metadata?: {
|
|
18759
18797
|
door_name: string;
|
|
18760
|
-
door_category: "
|
|
18798
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
18761
18799
|
profiles?: {
|
|
18762
18800
|
visionline_door_profile_id: string;
|
|
18763
18801
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -18780,6 +18818,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18780
18818
|
accessibility_type: string;
|
|
18781
18819
|
} | undefined;
|
|
18782
18820
|
hotek_metadata?: {
|
|
18821
|
+
display_name: string;
|
|
18822
|
+
door_type: "common_area" | "guest";
|
|
18783
18823
|
room_number: string;
|
|
18784
18824
|
} | undefined;
|
|
18785
18825
|
dormakaba_community_metadata?: {
|
|
@@ -19474,7 +19514,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19474
19514
|
} | undefined;
|
|
19475
19515
|
visionline_metadata?: {
|
|
19476
19516
|
door_name: string;
|
|
19477
|
-
door_category: "
|
|
19517
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
19478
19518
|
profiles?: {
|
|
19479
19519
|
visionline_door_profile_id: string;
|
|
19480
19520
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -19497,6 +19537,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19497
19537
|
accessibility_type: string;
|
|
19498
19538
|
} | undefined;
|
|
19499
19539
|
hotek_metadata?: {
|
|
19540
|
+
display_name: string;
|
|
19541
|
+
door_type: "common_area" | "guest";
|
|
19500
19542
|
room_number: string;
|
|
19501
19543
|
} | undefined;
|
|
19502
19544
|
dormakaba_community_metadata?: {
|
|
@@ -23782,9 +23824,15 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23782
23824
|
}>>;
|
|
23783
23825
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
23784
23826
|
room_number: z.ZodString;
|
|
23827
|
+
display_name: z.ZodString;
|
|
23828
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
23785
23829
|
}, "strip", z.ZodTypeAny, {
|
|
23830
|
+
display_name: string;
|
|
23831
|
+
door_type: "common_area" | "guest";
|
|
23786
23832
|
room_number: string;
|
|
23787
23833
|
}, {
|
|
23834
|
+
display_name: string;
|
|
23835
|
+
door_type: "common_area" | "guest";
|
|
23788
23836
|
room_number: string;
|
|
23789
23837
|
}>>;
|
|
23790
23838
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -23802,14 +23850,14 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23802
23850
|
}>, "many">>;
|
|
23803
23851
|
}, "strip", z.ZodTypeAny, {
|
|
23804
23852
|
door_name: string;
|
|
23805
|
-
door_category: "
|
|
23853
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
23806
23854
|
profiles?: {
|
|
23807
23855
|
visionline_door_profile_id: string;
|
|
23808
23856
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
23809
23857
|
}[] | undefined;
|
|
23810
23858
|
}, {
|
|
23811
23859
|
door_name: string;
|
|
23812
|
-
door_category: "
|
|
23860
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
23813
23861
|
profiles?: {
|
|
23814
23862
|
visionline_door_profile_id: string;
|
|
23815
23863
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -23927,7 +23975,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23927
23975
|
} | undefined;
|
|
23928
23976
|
visionline_metadata?: {
|
|
23929
23977
|
door_name: string;
|
|
23930
|
-
door_category: "
|
|
23978
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
23931
23979
|
profiles?: {
|
|
23932
23980
|
visionline_door_profile_id: string;
|
|
23933
23981
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -23950,6 +23998,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23950
23998
|
accessibility_type: string;
|
|
23951
23999
|
} | undefined;
|
|
23952
24000
|
hotek_metadata?: {
|
|
24001
|
+
display_name: string;
|
|
24002
|
+
door_type: "common_area" | "guest";
|
|
23953
24003
|
room_number: string;
|
|
23954
24004
|
} | undefined;
|
|
23955
24005
|
dormakaba_community_metadata?: {
|
|
@@ -23989,7 +24039,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23989
24039
|
} | undefined;
|
|
23990
24040
|
visionline_metadata?: {
|
|
23991
24041
|
door_name: string;
|
|
23992
|
-
door_category: "
|
|
24042
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
23993
24043
|
profiles?: {
|
|
23994
24044
|
visionline_door_profile_id: string;
|
|
23995
24045
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -24012,6 +24062,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24012
24062
|
accessibility_type: string;
|
|
24013
24063
|
} | undefined;
|
|
24014
24064
|
hotek_metadata?: {
|
|
24065
|
+
display_name: string;
|
|
24066
|
+
door_type: "common_area" | "guest";
|
|
24015
24067
|
room_number: string;
|
|
24016
24068
|
} | undefined;
|
|
24017
24069
|
dormakaba_community_metadata?: {
|
|
@@ -25072,7 +25124,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25072
25124
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
25073
25125
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25074
25126
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
25075
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
25127
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
25076
25128
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
25077
25129
|
created_at: z.ZodString;
|
|
25078
25130
|
workspace_id: z.ZodString;
|
|
@@ -25285,7 +25337,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25285
25337
|
user_identity_id?: string | undefined;
|
|
25286
25338
|
issued_at?: string | null | undefined;
|
|
25287
25339
|
is_issued?: boolean | undefined;
|
|
25288
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
25340
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
25289
25341
|
external_type_display_name?: string | undefined;
|
|
25290
25342
|
acs_user_id?: string | undefined;
|
|
25291
25343
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25357,7 +25409,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25357
25409
|
user_identity_id?: string | undefined;
|
|
25358
25410
|
issued_at?: string | null | undefined;
|
|
25359
25411
|
is_issued?: boolean | undefined;
|
|
25360
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
25412
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
25361
25413
|
external_type_display_name?: string | undefined;
|
|
25362
25414
|
acs_user_id?: string | undefined;
|
|
25363
25415
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25382,7 +25434,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25382
25434
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
25383
25435
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25384
25436
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
25385
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
25437
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
25386
25438
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
25387
25439
|
created_at: z.ZodString;
|
|
25388
25440
|
workspace_id: z.ZodString;
|
|
@@ -25595,7 +25647,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25595
25647
|
user_identity_id?: string | undefined;
|
|
25596
25648
|
issued_at?: string | null | undefined;
|
|
25597
25649
|
is_issued?: boolean | undefined;
|
|
25598
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
25650
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
25599
25651
|
external_type_display_name?: string | undefined;
|
|
25600
25652
|
acs_user_id?: string | undefined;
|
|
25601
25653
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25667,7 +25719,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25667
25719
|
user_identity_id?: string | undefined;
|
|
25668
25720
|
issued_at?: string | null | undefined;
|
|
25669
25721
|
is_issued?: boolean | undefined;
|
|
25670
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
25722
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
25671
25723
|
external_type_display_name?: string | undefined;
|
|
25672
25724
|
acs_user_id?: string | undefined;
|
|
25673
25725
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -25957,7 +26009,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
25957
26009
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
25958
26010
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
25959
26011
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
25960
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
26012
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
25961
26013
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
25962
26014
|
created_at: z.ZodString;
|
|
25963
26015
|
workspace_id: z.ZodString;
|
|
@@ -26170,7 +26222,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26170
26222
|
user_identity_id?: string | undefined;
|
|
26171
26223
|
issued_at?: string | null | undefined;
|
|
26172
26224
|
is_issued?: boolean | undefined;
|
|
26173
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26225
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26174
26226
|
external_type_display_name?: string | undefined;
|
|
26175
26227
|
acs_user_id?: string | undefined;
|
|
26176
26228
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26242,7 +26294,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26242
26294
|
user_identity_id?: string | undefined;
|
|
26243
26295
|
issued_at?: string | null | undefined;
|
|
26244
26296
|
is_issued?: boolean | undefined;
|
|
26245
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26297
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26246
26298
|
external_type_display_name?: string | undefined;
|
|
26247
26299
|
acs_user_id?: string | undefined;
|
|
26248
26300
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26266,7 +26318,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26266
26318
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
26267
26319
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
26268
26320
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
26269
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
26321
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
26270
26322
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
26271
26323
|
created_at: z.ZodString;
|
|
26272
26324
|
workspace_id: z.ZodString;
|
|
@@ -26479,7 +26531,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26479
26531
|
user_identity_id?: string | undefined;
|
|
26480
26532
|
issued_at?: string | null | undefined;
|
|
26481
26533
|
is_issued?: boolean | undefined;
|
|
26482
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26534
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26483
26535
|
external_type_display_name?: string | undefined;
|
|
26484
26536
|
acs_user_id?: string | undefined;
|
|
26485
26537
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26551,7 +26603,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26551
26603
|
user_identity_id?: string | undefined;
|
|
26552
26604
|
issued_at?: string | null | undefined;
|
|
26553
26605
|
is_issued?: boolean | undefined;
|
|
26554
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26606
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26555
26607
|
external_type_display_name?: string | undefined;
|
|
26556
26608
|
acs_user_id?: string | undefined;
|
|
26557
26609
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26660,7 +26712,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26660
26712
|
user_identity_id?: string | undefined;
|
|
26661
26713
|
issued_at?: string | null | undefined;
|
|
26662
26714
|
is_issued?: boolean | undefined;
|
|
26663
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26715
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26664
26716
|
external_type_display_name?: string | undefined;
|
|
26665
26717
|
acs_user_id?: string | undefined;
|
|
26666
26718
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26732,7 +26784,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26732
26784
|
user_identity_id?: string | undefined;
|
|
26733
26785
|
issued_at?: string | null | undefined;
|
|
26734
26786
|
is_issued?: boolean | undefined;
|
|
26735
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26787
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26736
26788
|
external_type_display_name?: string | undefined;
|
|
26737
26789
|
acs_user_id?: string | undefined;
|
|
26738
26790
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26831,7 +26883,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26831
26883
|
user_identity_id?: string | undefined;
|
|
26832
26884
|
issued_at?: string | null | undefined;
|
|
26833
26885
|
is_issued?: boolean | undefined;
|
|
26834
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26886
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26835
26887
|
external_type_display_name?: string | undefined;
|
|
26836
26888
|
acs_user_id?: string | undefined;
|
|
26837
26889
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -26903,7 +26955,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
26903
26955
|
user_identity_id?: string | undefined;
|
|
26904
26956
|
issued_at?: string | null | undefined;
|
|
26905
26957
|
is_issued?: boolean | undefined;
|
|
26906
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
26958
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
26907
26959
|
external_type_display_name?: string | undefined;
|
|
26908
26960
|
acs_user_id?: string | undefined;
|
|
26909
26961
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27007,7 +27059,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27007
27059
|
user_identity_id?: string | undefined;
|
|
27008
27060
|
issued_at?: string | null | undefined;
|
|
27009
27061
|
is_issued?: boolean | undefined;
|
|
27010
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27062
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27011
27063
|
external_type_display_name?: string | undefined;
|
|
27012
27064
|
acs_user_id?: string | undefined;
|
|
27013
27065
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27079,7 +27131,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27079
27131
|
user_identity_id?: string | undefined;
|
|
27080
27132
|
issued_at?: string | null | undefined;
|
|
27081
27133
|
is_issued?: boolean | undefined;
|
|
27082
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27134
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27083
27135
|
external_type_display_name?: string | undefined;
|
|
27084
27136
|
acs_user_id?: string | undefined;
|
|
27085
27137
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27184,7 +27236,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27184
27236
|
user_identity_id?: string | undefined;
|
|
27185
27237
|
issued_at?: string | null | undefined;
|
|
27186
27238
|
is_issued?: boolean | undefined;
|
|
27187
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27239
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27188
27240
|
external_type_display_name?: string | undefined;
|
|
27189
27241
|
acs_user_id?: string | undefined;
|
|
27190
27242
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27256,7 +27308,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27256
27308
|
user_identity_id?: string | undefined;
|
|
27257
27309
|
issued_at?: string | null | undefined;
|
|
27258
27310
|
is_issued?: boolean | undefined;
|
|
27259
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27311
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27260
27312
|
external_type_display_name?: string | undefined;
|
|
27261
27313
|
acs_user_id?: string | undefined;
|
|
27262
27314
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27375,7 +27427,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27375
27427
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
27376
27428
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
27377
27429
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
27378
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
27430
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
27379
27431
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
27380
27432
|
created_at: z.ZodString;
|
|
27381
27433
|
workspace_id: z.ZodString;
|
|
@@ -27588,7 +27640,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27588
27640
|
user_identity_id?: string | undefined;
|
|
27589
27641
|
issued_at?: string | null | undefined;
|
|
27590
27642
|
is_issued?: boolean | undefined;
|
|
27591
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27643
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27592
27644
|
external_type_display_name?: string | undefined;
|
|
27593
27645
|
acs_user_id?: string | undefined;
|
|
27594
27646
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27660,7 +27712,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27660
27712
|
user_identity_id?: string | undefined;
|
|
27661
27713
|
issued_at?: string | null | undefined;
|
|
27662
27714
|
is_issued?: boolean | undefined;
|
|
27663
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27715
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27664
27716
|
external_type_display_name?: string | undefined;
|
|
27665
27717
|
acs_user_id?: string | undefined;
|
|
27666
27718
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27684,7 +27736,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27684
27736
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
27685
27737
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
27686
27738
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
27687
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
27739
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
27688
27740
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
27689
27741
|
created_at: z.ZodString;
|
|
27690
27742
|
workspace_id: z.ZodString;
|
|
@@ -27897,7 +27949,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27897
27949
|
user_identity_id?: string | undefined;
|
|
27898
27950
|
issued_at?: string | null | undefined;
|
|
27899
27951
|
is_issued?: boolean | undefined;
|
|
27900
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
27952
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27901
27953
|
external_type_display_name?: string | undefined;
|
|
27902
27954
|
acs_user_id?: string | undefined;
|
|
27903
27955
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -27969,7 +28021,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
27969
28021
|
user_identity_id?: string | undefined;
|
|
27970
28022
|
issued_at?: string | null | undefined;
|
|
27971
28023
|
is_issued?: boolean | undefined;
|
|
27972
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
28024
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
27973
28025
|
external_type_display_name?: string | undefined;
|
|
27974
28026
|
acs_user_id?: string | undefined;
|
|
27975
28027
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28046,7 +28098,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28046
28098
|
user_identity_id?: string | undefined;
|
|
28047
28099
|
issued_at?: string | null | undefined;
|
|
28048
28100
|
is_issued?: boolean | undefined;
|
|
28049
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
28101
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
28050
28102
|
external_type_display_name?: string | undefined;
|
|
28051
28103
|
acs_user_id?: string | undefined;
|
|
28052
28104
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28118,7 +28170,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28118
28170
|
user_identity_id?: string | undefined;
|
|
28119
28171
|
issued_at?: string | null | undefined;
|
|
28120
28172
|
is_issued?: boolean | undefined;
|
|
28121
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
28173
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
28122
28174
|
external_type_display_name?: string | undefined;
|
|
28123
28175
|
acs_user_id?: string | undefined;
|
|
28124
28176
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28196,7 +28248,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28196
28248
|
user_identity_id?: string | undefined;
|
|
28197
28249
|
issued_at?: string | null | undefined;
|
|
28198
28250
|
is_issued?: boolean | undefined;
|
|
28199
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
28251
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
28200
28252
|
external_type_display_name?: string | undefined;
|
|
28201
28253
|
acs_user_id?: string | undefined;
|
|
28202
28254
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -28268,7 +28320,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
28268
28320
|
user_identity_id?: string | undefined;
|
|
28269
28321
|
issued_at?: string | null | undefined;
|
|
28270
28322
|
is_issued?: boolean | undefined;
|
|
28271
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
28323
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
28272
28324
|
external_type_display_name?: string | undefined;
|
|
28273
28325
|
acs_user_id?: string | undefined;
|
|
28274
28326
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -40999,7 +41051,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
40999
41051
|
} | undefined;
|
|
41000
41052
|
visionline_metadata?: {
|
|
41001
41053
|
door_name: string;
|
|
41002
|
-
door_category: "
|
|
41054
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
41003
41055
|
profiles?: {
|
|
41004
41056
|
visionline_door_profile_id: string;
|
|
41005
41057
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -41022,6 +41074,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41022
41074
|
accessibility_type: string;
|
|
41023
41075
|
} | undefined;
|
|
41024
41076
|
hotek_metadata?: {
|
|
41077
|
+
display_name: string;
|
|
41078
|
+
door_type: "common_area" | "guest";
|
|
41025
41079
|
room_number: string;
|
|
41026
41080
|
} | undefined;
|
|
41027
41081
|
dormakaba_community_metadata?: {
|
|
@@ -41475,7 +41529,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41475
41529
|
user_identity_id?: string | undefined;
|
|
41476
41530
|
issued_at?: string | null | undefined;
|
|
41477
41531
|
is_issued?: boolean | undefined;
|
|
41478
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
41532
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
41479
41533
|
external_type_display_name?: string | undefined;
|
|
41480
41534
|
acs_user_id?: string | undefined;
|
|
41481
41535
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41548,7 +41602,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41548
41602
|
user_identity_id?: string | undefined;
|
|
41549
41603
|
issued_at?: string | null | undefined;
|
|
41550
41604
|
is_issued?: boolean | undefined;
|
|
41551
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
41605
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
41552
41606
|
external_type_display_name?: string | undefined;
|
|
41553
41607
|
acs_user_id?: string | undefined;
|
|
41554
41608
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41807,7 +41861,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41807
41861
|
user_identity_id?: string | undefined;
|
|
41808
41862
|
issued_at?: string | null | undefined;
|
|
41809
41863
|
is_issued?: boolean | undefined;
|
|
41810
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
41864
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
41811
41865
|
external_type_display_name?: string | undefined;
|
|
41812
41866
|
acs_user_id?: string | undefined;
|
|
41813
41867
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -41879,7 +41933,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
41879
41933
|
user_identity_id?: string | undefined;
|
|
41880
41934
|
issued_at?: string | null | undefined;
|
|
41881
41935
|
is_issued?: boolean | undefined;
|
|
41882
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
41936
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
41883
41937
|
external_type_display_name?: string | undefined;
|
|
41884
41938
|
acs_user_id?: string | undefined;
|
|
41885
41939
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42073,7 +42127,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42073
42127
|
user_identity_id?: string | undefined;
|
|
42074
42128
|
issued_at?: string | null | undefined;
|
|
42075
42129
|
is_issued?: boolean | undefined;
|
|
42076
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
42130
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
42077
42131
|
external_type_display_name?: string | undefined;
|
|
42078
42132
|
acs_user_id?: string | undefined;
|
|
42079
42133
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -42145,7 +42199,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42145
42199
|
user_identity_id?: string | undefined;
|
|
42146
42200
|
issued_at?: string | null | undefined;
|
|
42147
42201
|
is_issued?: boolean | undefined;
|
|
42148
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
42202
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
42149
42203
|
external_type_display_name?: string | undefined;
|
|
42150
42204
|
acs_user_id?: string | undefined;
|
|
42151
42205
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -44930,7 +44984,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44930
44984
|
} | undefined;
|
|
44931
44985
|
visionline_metadata?: {
|
|
44932
44986
|
door_name: string;
|
|
44933
|
-
door_category: "
|
|
44987
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
44934
44988
|
profiles?: {
|
|
44935
44989
|
visionline_door_profile_id: string;
|
|
44936
44990
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -44953,6 +45007,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
44953
45007
|
accessibility_type: string;
|
|
44954
45008
|
} | undefined;
|
|
44955
45009
|
hotek_metadata?: {
|
|
45010
|
+
display_name: string;
|
|
45011
|
+
door_type: "common_area" | "guest";
|
|
44956
45012
|
room_number: string;
|
|
44957
45013
|
} | undefined;
|
|
44958
45014
|
dormakaba_community_metadata?: {
|
|
@@ -45406,7 +45462,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45406
45462
|
user_identity_id?: string | undefined;
|
|
45407
45463
|
issued_at?: string | null | undefined;
|
|
45408
45464
|
is_issued?: boolean | undefined;
|
|
45409
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
45465
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
45410
45466
|
external_type_display_name?: string | undefined;
|
|
45411
45467
|
acs_user_id?: string | undefined;
|
|
45412
45468
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45479,7 +45535,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45479
45535
|
user_identity_id?: string | undefined;
|
|
45480
45536
|
issued_at?: string | null | undefined;
|
|
45481
45537
|
is_issued?: boolean | undefined;
|
|
45482
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
45538
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
45483
45539
|
external_type_display_name?: string | undefined;
|
|
45484
45540
|
acs_user_id?: string | undefined;
|
|
45485
45541
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45738,7 +45794,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45738
45794
|
user_identity_id?: string | undefined;
|
|
45739
45795
|
issued_at?: string | null | undefined;
|
|
45740
45796
|
is_issued?: boolean | undefined;
|
|
45741
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
45797
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
45742
45798
|
external_type_display_name?: string | undefined;
|
|
45743
45799
|
acs_user_id?: string | undefined;
|
|
45744
45800
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -45810,7 +45866,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
45810
45866
|
user_identity_id?: string | undefined;
|
|
45811
45867
|
issued_at?: string | null | undefined;
|
|
45812
45868
|
is_issued?: boolean | undefined;
|
|
45813
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
45869
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
45814
45870
|
external_type_display_name?: string | undefined;
|
|
45815
45871
|
acs_user_id?: string | undefined;
|
|
45816
45872
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46004,7 +46060,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46004
46060
|
user_identity_id?: string | undefined;
|
|
46005
46061
|
issued_at?: string | null | undefined;
|
|
46006
46062
|
is_issued?: boolean | undefined;
|
|
46007
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
46063
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
46008
46064
|
external_type_display_name?: string | undefined;
|
|
46009
46065
|
acs_user_id?: string | undefined;
|
|
46010
46066
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -46076,7 +46132,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46076
46132
|
user_identity_id?: string | undefined;
|
|
46077
46133
|
issued_at?: string | null | undefined;
|
|
46078
46134
|
is_issued?: boolean | undefined;
|
|
46079
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
46135
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
46080
46136
|
external_type_display_name?: string | undefined;
|
|
46081
46137
|
acs_user_id?: string | undefined;
|
|
46082
46138
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -52441,9 +52497,15 @@ export declare const batch: z.ZodObject<{
|
|
|
52441
52497
|
}>>;
|
|
52442
52498
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
52443
52499
|
room_number: z.ZodString;
|
|
52500
|
+
display_name: z.ZodString;
|
|
52501
|
+
door_type: z.ZodEnum<["common_area", "guest"]>;
|
|
52444
52502
|
}, "strip", z.ZodTypeAny, {
|
|
52503
|
+
display_name: string;
|
|
52504
|
+
door_type: "common_area" | "guest";
|
|
52445
52505
|
room_number: string;
|
|
52446
52506
|
}, {
|
|
52507
|
+
display_name: string;
|
|
52508
|
+
door_type: "common_area" | "guest";
|
|
52447
52509
|
room_number: string;
|
|
52448
52510
|
}>>;
|
|
52449
52511
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -52461,14 +52523,14 @@ export declare const batch: z.ZodObject<{
|
|
|
52461
52523
|
}>, "many">>;
|
|
52462
52524
|
}, "strip", z.ZodTypeAny, {
|
|
52463
52525
|
door_name: string;
|
|
52464
|
-
door_category: "
|
|
52526
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
52465
52527
|
profiles?: {
|
|
52466
52528
|
visionline_door_profile_id: string;
|
|
52467
52529
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
52468
52530
|
}[] | undefined;
|
|
52469
52531
|
}, {
|
|
52470
52532
|
door_name: string;
|
|
52471
|
-
door_category: "
|
|
52533
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
52472
52534
|
profiles?: {
|
|
52473
52535
|
visionline_door_profile_id: string;
|
|
52474
52536
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -52586,7 +52648,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52586
52648
|
} | undefined;
|
|
52587
52649
|
visionline_metadata?: {
|
|
52588
52650
|
door_name: string;
|
|
52589
|
-
door_category: "
|
|
52651
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
52590
52652
|
profiles?: {
|
|
52591
52653
|
visionline_door_profile_id: string;
|
|
52592
52654
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -52609,6 +52671,8 @@ export declare const batch: z.ZodObject<{
|
|
|
52609
52671
|
accessibility_type: string;
|
|
52610
52672
|
} | undefined;
|
|
52611
52673
|
hotek_metadata?: {
|
|
52674
|
+
display_name: string;
|
|
52675
|
+
door_type: "common_area" | "guest";
|
|
52612
52676
|
room_number: string;
|
|
52613
52677
|
} | undefined;
|
|
52614
52678
|
dormakaba_community_metadata?: {
|
|
@@ -52648,7 +52712,7 @@ export declare const batch: z.ZodObject<{
|
|
|
52648
52712
|
} | undefined;
|
|
52649
52713
|
visionline_metadata?: {
|
|
52650
52714
|
door_name: string;
|
|
52651
|
-
door_category: "
|
|
52715
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
52652
52716
|
profiles?: {
|
|
52653
52717
|
visionline_door_profile_id: string;
|
|
52654
52718
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -52671,6 +52735,8 @@ export declare const batch: z.ZodObject<{
|
|
|
52671
52735
|
accessibility_type: string;
|
|
52672
52736
|
} | undefined;
|
|
52673
52737
|
hotek_metadata?: {
|
|
52738
|
+
display_name: string;
|
|
52739
|
+
door_type: "common_area" | "guest";
|
|
52674
52740
|
room_number: string;
|
|
52675
52741
|
} | undefined;
|
|
52676
52742
|
dormakaba_community_metadata?: {
|
|
@@ -53731,7 +53797,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53731
53797
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
53732
53798
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
53733
53799
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
53734
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
53800
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
53735
53801
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
53736
53802
|
created_at: z.ZodString;
|
|
53737
53803
|
workspace_id: z.ZodString;
|
|
@@ -53944,7 +54010,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53944
54010
|
user_identity_id?: string | undefined;
|
|
53945
54011
|
issued_at?: string | null | undefined;
|
|
53946
54012
|
is_issued?: boolean | undefined;
|
|
53947
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54013
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
53948
54014
|
external_type_display_name?: string | undefined;
|
|
53949
54015
|
acs_user_id?: string | undefined;
|
|
53950
54016
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54016,7 +54082,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54016
54082
|
user_identity_id?: string | undefined;
|
|
54017
54083
|
issued_at?: string | null | undefined;
|
|
54018
54084
|
is_issued?: boolean | undefined;
|
|
54019
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54085
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
54020
54086
|
external_type_display_name?: string | undefined;
|
|
54021
54087
|
acs_user_id?: string | undefined;
|
|
54022
54088
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54041,7 +54107,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54041
54107
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
54042
54108
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54043
54109
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
54044
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
54110
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
54045
54111
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
54046
54112
|
created_at: z.ZodString;
|
|
54047
54113
|
workspace_id: z.ZodString;
|
|
@@ -54254,7 +54320,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54254
54320
|
user_identity_id?: string | undefined;
|
|
54255
54321
|
issued_at?: string | null | undefined;
|
|
54256
54322
|
is_issued?: boolean | undefined;
|
|
54257
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54323
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
54258
54324
|
external_type_display_name?: string | undefined;
|
|
54259
54325
|
acs_user_id?: string | undefined;
|
|
54260
54326
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54326,7 +54392,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54326
54392
|
user_identity_id?: string | undefined;
|
|
54327
54393
|
issued_at?: string | null | undefined;
|
|
54328
54394
|
is_issued?: boolean | undefined;
|
|
54329
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54395
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
54330
54396
|
external_type_display_name?: string | undefined;
|
|
54331
54397
|
acs_user_id?: string | undefined;
|
|
54332
54398
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54616,7 +54682,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54616
54682
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
54617
54683
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54618
54684
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
54619
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
54685
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
54620
54686
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
54621
54687
|
created_at: z.ZodString;
|
|
54622
54688
|
workspace_id: z.ZodString;
|
|
@@ -54829,7 +54895,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54829
54895
|
user_identity_id?: string | undefined;
|
|
54830
54896
|
issued_at?: string | null | undefined;
|
|
54831
54897
|
is_issued?: boolean | undefined;
|
|
54832
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54898
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
54833
54899
|
external_type_display_name?: string | undefined;
|
|
54834
54900
|
acs_user_id?: string | undefined;
|
|
54835
54901
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54901,7 +54967,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54901
54967
|
user_identity_id?: string | undefined;
|
|
54902
54968
|
issued_at?: string | null | undefined;
|
|
54903
54969
|
is_issued?: boolean | undefined;
|
|
54904
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
54970
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
54905
54971
|
external_type_display_name?: string | undefined;
|
|
54906
54972
|
acs_user_id?: string | undefined;
|
|
54907
54973
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -54925,7 +54991,7 @@ export declare const batch: z.ZodObject<{
|
|
|
54925
54991
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
54926
54992
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
54927
54993
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
54928
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
54994
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
54929
54995
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
54930
54996
|
created_at: z.ZodString;
|
|
54931
54997
|
workspace_id: z.ZodString;
|
|
@@ -55138,7 +55204,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55138
55204
|
user_identity_id?: string | undefined;
|
|
55139
55205
|
issued_at?: string | null | undefined;
|
|
55140
55206
|
is_issued?: boolean | undefined;
|
|
55141
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55207
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55142
55208
|
external_type_display_name?: string | undefined;
|
|
55143
55209
|
acs_user_id?: string | undefined;
|
|
55144
55210
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55210,7 +55276,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55210
55276
|
user_identity_id?: string | undefined;
|
|
55211
55277
|
issued_at?: string | null | undefined;
|
|
55212
55278
|
is_issued?: boolean | undefined;
|
|
55213
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55279
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55214
55280
|
external_type_display_name?: string | undefined;
|
|
55215
55281
|
acs_user_id?: string | undefined;
|
|
55216
55282
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55319,7 +55385,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55319
55385
|
user_identity_id?: string | undefined;
|
|
55320
55386
|
issued_at?: string | null | undefined;
|
|
55321
55387
|
is_issued?: boolean | undefined;
|
|
55322
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55388
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55323
55389
|
external_type_display_name?: string | undefined;
|
|
55324
55390
|
acs_user_id?: string | undefined;
|
|
55325
55391
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55391,7 +55457,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55391
55457
|
user_identity_id?: string | undefined;
|
|
55392
55458
|
issued_at?: string | null | undefined;
|
|
55393
55459
|
is_issued?: boolean | undefined;
|
|
55394
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55460
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55395
55461
|
external_type_display_name?: string | undefined;
|
|
55396
55462
|
acs_user_id?: string | undefined;
|
|
55397
55463
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55490,7 +55556,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55490
55556
|
user_identity_id?: string | undefined;
|
|
55491
55557
|
issued_at?: string | null | undefined;
|
|
55492
55558
|
is_issued?: boolean | undefined;
|
|
55493
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55559
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55494
55560
|
external_type_display_name?: string | undefined;
|
|
55495
55561
|
acs_user_id?: string | undefined;
|
|
55496
55562
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55562,7 +55628,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55562
55628
|
user_identity_id?: string | undefined;
|
|
55563
55629
|
issued_at?: string | null | undefined;
|
|
55564
55630
|
is_issued?: boolean | undefined;
|
|
55565
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55631
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55566
55632
|
external_type_display_name?: string | undefined;
|
|
55567
55633
|
acs_user_id?: string | undefined;
|
|
55568
55634
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55666,7 +55732,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55666
55732
|
user_identity_id?: string | undefined;
|
|
55667
55733
|
issued_at?: string | null | undefined;
|
|
55668
55734
|
is_issued?: boolean | undefined;
|
|
55669
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55735
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55670
55736
|
external_type_display_name?: string | undefined;
|
|
55671
55737
|
acs_user_id?: string | undefined;
|
|
55672
55738
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55738,7 +55804,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55738
55804
|
user_identity_id?: string | undefined;
|
|
55739
55805
|
issued_at?: string | null | undefined;
|
|
55740
55806
|
is_issued?: boolean | undefined;
|
|
55741
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55807
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55742
55808
|
external_type_display_name?: string | undefined;
|
|
55743
55809
|
acs_user_id?: string | undefined;
|
|
55744
55810
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55843,7 +55909,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55843
55909
|
user_identity_id?: string | undefined;
|
|
55844
55910
|
issued_at?: string | null | undefined;
|
|
55845
55911
|
is_issued?: boolean | undefined;
|
|
55846
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55912
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55847
55913
|
external_type_display_name?: string | undefined;
|
|
55848
55914
|
acs_user_id?: string | undefined;
|
|
55849
55915
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -55915,7 +55981,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55915
55981
|
user_identity_id?: string | undefined;
|
|
55916
55982
|
issued_at?: string | null | undefined;
|
|
55917
55983
|
is_issued?: boolean | undefined;
|
|
55918
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
55984
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
55919
55985
|
external_type_display_name?: string | undefined;
|
|
55920
55986
|
acs_user_id?: string | undefined;
|
|
55921
55987
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56034,7 +56100,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56034
56100
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
56035
56101
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
56036
56102
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
56037
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
56103
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
56038
56104
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
56039
56105
|
created_at: z.ZodString;
|
|
56040
56106
|
workspace_id: z.ZodString;
|
|
@@ -56247,7 +56313,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56247
56313
|
user_identity_id?: string | undefined;
|
|
56248
56314
|
issued_at?: string | null | undefined;
|
|
56249
56315
|
is_issued?: boolean | undefined;
|
|
56250
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56316
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56251
56317
|
external_type_display_name?: string | undefined;
|
|
56252
56318
|
acs_user_id?: string | undefined;
|
|
56253
56319
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56319,7 +56385,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56319
56385
|
user_identity_id?: string | undefined;
|
|
56320
56386
|
issued_at?: string | null | undefined;
|
|
56321
56387
|
is_issued?: boolean | undefined;
|
|
56322
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56388
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56323
56389
|
external_type_display_name?: string | undefined;
|
|
56324
56390
|
acs_user_id?: string | undefined;
|
|
56325
56391
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56343,7 +56409,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56343
56409
|
is_issued: z.ZodOptional<z.ZodBoolean>;
|
|
56344
56410
|
issued_at: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
56345
56411
|
access_method: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
56346
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential"]>>;
|
|
56412
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_card", "brivo_credential", "hid_credential", "visionline_card", "salto_ks_credential", "assa_abloy_vostio_key", "salto_space_key", "latch_access", "dormakaba_ambiance_credential", "hotek_card"]>>;
|
|
56347
56413
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
56348
56414
|
created_at: z.ZodString;
|
|
56349
56415
|
workspace_id: z.ZodString;
|
|
@@ -56556,7 +56622,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56556
56622
|
user_identity_id?: string | undefined;
|
|
56557
56623
|
issued_at?: string | null | undefined;
|
|
56558
56624
|
is_issued?: boolean | undefined;
|
|
56559
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56625
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56560
56626
|
external_type_display_name?: string | undefined;
|
|
56561
56627
|
acs_user_id?: string | undefined;
|
|
56562
56628
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56628,7 +56694,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56628
56694
|
user_identity_id?: string | undefined;
|
|
56629
56695
|
issued_at?: string | null | undefined;
|
|
56630
56696
|
is_issued?: boolean | undefined;
|
|
56631
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56697
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56632
56698
|
external_type_display_name?: string | undefined;
|
|
56633
56699
|
acs_user_id?: string | undefined;
|
|
56634
56700
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56705,7 +56771,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56705
56771
|
user_identity_id?: string | undefined;
|
|
56706
56772
|
issued_at?: string | null | undefined;
|
|
56707
56773
|
is_issued?: boolean | undefined;
|
|
56708
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56774
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56709
56775
|
external_type_display_name?: string | undefined;
|
|
56710
56776
|
acs_user_id?: string | undefined;
|
|
56711
56777
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56777,7 +56843,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56777
56843
|
user_identity_id?: string | undefined;
|
|
56778
56844
|
issued_at?: string | null | undefined;
|
|
56779
56845
|
is_issued?: boolean | undefined;
|
|
56780
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56846
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56781
56847
|
external_type_display_name?: string | undefined;
|
|
56782
56848
|
acs_user_id?: string | undefined;
|
|
56783
56849
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56855,7 +56921,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56855
56921
|
user_identity_id?: string | undefined;
|
|
56856
56922
|
issued_at?: string | null | undefined;
|
|
56857
56923
|
is_issued?: boolean | undefined;
|
|
56858
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56924
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56859
56925
|
external_type_display_name?: string | undefined;
|
|
56860
56926
|
acs_user_id?: string | undefined;
|
|
56861
56927
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -56927,7 +56993,7 @@ export declare const batch: z.ZodObject<{
|
|
|
56927
56993
|
user_identity_id?: string | undefined;
|
|
56928
56994
|
issued_at?: string | null | undefined;
|
|
56929
56995
|
is_issued?: boolean | undefined;
|
|
56930
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
56996
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
56931
56997
|
external_type_display_name?: string | undefined;
|
|
56932
56998
|
acs_user_id?: string | undefined;
|
|
56933
56999
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69276,7 +69342,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69276
69342
|
} | undefined;
|
|
69277
69343
|
visionline_metadata?: {
|
|
69278
69344
|
door_name: string;
|
|
69279
|
-
door_category: "
|
|
69345
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
69280
69346
|
profiles?: {
|
|
69281
69347
|
visionline_door_profile_id: string;
|
|
69282
69348
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -69299,6 +69365,8 @@ export declare const batch: z.ZodObject<{
|
|
|
69299
69365
|
accessibility_type: string;
|
|
69300
69366
|
} | undefined;
|
|
69301
69367
|
hotek_metadata?: {
|
|
69368
|
+
display_name: string;
|
|
69369
|
+
door_type: "common_area" | "guest";
|
|
69302
69370
|
room_number: string;
|
|
69303
69371
|
} | undefined;
|
|
69304
69372
|
dormakaba_community_metadata?: {
|
|
@@ -69681,7 +69749,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69681
69749
|
user_identity_id?: string | undefined;
|
|
69682
69750
|
issued_at?: string | null | undefined;
|
|
69683
69751
|
is_issued?: boolean | undefined;
|
|
69684
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
69752
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
69685
69753
|
external_type_display_name?: string | undefined;
|
|
69686
69754
|
acs_user_id?: string | undefined;
|
|
69687
69755
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -69754,7 +69822,7 @@ export declare const batch: z.ZodObject<{
|
|
|
69754
69822
|
user_identity_id?: string | undefined;
|
|
69755
69823
|
issued_at?: string | null | undefined;
|
|
69756
69824
|
is_issued?: boolean | undefined;
|
|
69757
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
69825
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
69758
69826
|
external_type_display_name?: string | undefined;
|
|
69759
69827
|
acs_user_id?: string | undefined;
|
|
69760
69828
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70013,7 +70081,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70013
70081
|
user_identity_id?: string | undefined;
|
|
70014
70082
|
issued_at?: string | null | undefined;
|
|
70015
70083
|
is_issued?: boolean | undefined;
|
|
70016
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
70084
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
70017
70085
|
external_type_display_name?: string | undefined;
|
|
70018
70086
|
acs_user_id?: string | undefined;
|
|
70019
70087
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70085,7 +70153,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70085
70153
|
user_identity_id?: string | undefined;
|
|
70086
70154
|
issued_at?: string | null | undefined;
|
|
70087
70155
|
is_issued?: boolean | undefined;
|
|
70088
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
70156
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
70089
70157
|
external_type_display_name?: string | undefined;
|
|
70090
70158
|
acs_user_id?: string | undefined;
|
|
70091
70159
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70279,7 +70347,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70279
70347
|
user_identity_id?: string | undefined;
|
|
70280
70348
|
issued_at?: string | null | undefined;
|
|
70281
70349
|
is_issued?: boolean | undefined;
|
|
70282
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
70350
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
70283
70351
|
external_type_display_name?: string | undefined;
|
|
70284
70352
|
acs_user_id?: string | undefined;
|
|
70285
70353
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -70351,7 +70419,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70351
70419
|
user_identity_id?: string | undefined;
|
|
70352
70420
|
issued_at?: string | null | undefined;
|
|
70353
70421
|
is_issued?: boolean | undefined;
|
|
70354
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
70422
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
70355
70423
|
external_type_display_name?: string | undefined;
|
|
70356
70424
|
acs_user_id?: string | undefined;
|
|
70357
70425
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -73136,7 +73204,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73136
73204
|
} | undefined;
|
|
73137
73205
|
visionline_metadata?: {
|
|
73138
73206
|
door_name: string;
|
|
73139
|
-
door_category: "
|
|
73207
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
73140
73208
|
profiles?: {
|
|
73141
73209
|
visionline_door_profile_id: string;
|
|
73142
73210
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -73159,6 +73227,8 @@ export declare const batch: z.ZodObject<{
|
|
|
73159
73227
|
accessibility_type: string;
|
|
73160
73228
|
} | undefined;
|
|
73161
73229
|
hotek_metadata?: {
|
|
73230
|
+
display_name: string;
|
|
73231
|
+
door_type: "common_area" | "guest";
|
|
73162
73232
|
room_number: string;
|
|
73163
73233
|
} | undefined;
|
|
73164
73234
|
dormakaba_community_metadata?: {
|
|
@@ -73541,7 +73611,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73541
73611
|
user_identity_id?: string | undefined;
|
|
73542
73612
|
issued_at?: string | null | undefined;
|
|
73543
73613
|
is_issued?: boolean | undefined;
|
|
73544
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
73614
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
73545
73615
|
external_type_display_name?: string | undefined;
|
|
73546
73616
|
acs_user_id?: string | undefined;
|
|
73547
73617
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -73614,7 +73684,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73614
73684
|
user_identity_id?: string | undefined;
|
|
73615
73685
|
issued_at?: string | null | undefined;
|
|
73616
73686
|
is_issued?: boolean | undefined;
|
|
73617
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
73687
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
73618
73688
|
external_type_display_name?: string | undefined;
|
|
73619
73689
|
acs_user_id?: string | undefined;
|
|
73620
73690
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -73873,7 +73943,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73873
73943
|
user_identity_id?: string | undefined;
|
|
73874
73944
|
issued_at?: string | null | undefined;
|
|
73875
73945
|
is_issued?: boolean | undefined;
|
|
73876
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
73946
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
73877
73947
|
external_type_display_name?: string | undefined;
|
|
73878
73948
|
acs_user_id?: string | undefined;
|
|
73879
73949
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -73945,7 +74015,7 @@ export declare const batch: z.ZodObject<{
|
|
|
73945
74015
|
user_identity_id?: string | undefined;
|
|
73946
74016
|
issued_at?: string | null | undefined;
|
|
73947
74017
|
is_issued?: boolean | undefined;
|
|
73948
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
74018
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
73949
74019
|
external_type_display_name?: string | undefined;
|
|
73950
74020
|
acs_user_id?: string | undefined;
|
|
73951
74021
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -74139,7 +74209,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74139
74209
|
user_identity_id?: string | undefined;
|
|
74140
74210
|
issued_at?: string | null | undefined;
|
|
74141
74211
|
is_issued?: boolean | undefined;
|
|
74142
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
74212
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
74143
74213
|
external_type_display_name?: string | undefined;
|
|
74144
74214
|
acs_user_id?: string | undefined;
|
|
74145
74215
|
acs_credential_pool_id?: string | undefined;
|
|
@@ -74211,7 +74281,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74211
74281
|
user_identity_id?: string | undefined;
|
|
74212
74282
|
issued_at?: string | null | undefined;
|
|
74213
74283
|
is_issued?: boolean | undefined;
|
|
74214
|
-
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | undefined;
|
|
74284
|
+
external_type?: "pti_card" | "brivo_credential" | "hid_credential" | "visionline_card" | "salto_ks_credential" | "assa_abloy_vostio_key" | "salto_space_key" | "latch_access" | "dormakaba_ambiance_credential" | "hotek_card" | undefined;
|
|
74215
74285
|
external_type_display_name?: string | undefined;
|
|
74216
74286
|
acs_user_id?: string | undefined;
|
|
74217
74287
|
acs_credential_pool_id?: string | undefined;
|