@seamapi/types 1.275.0 → 1.277.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 +30 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +72 -29
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +13 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +2 -1
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-user.js +1 -0
- package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/dormakaba_community.d.ts +9 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba_community.js +5 -0
- package/lib/seam/connect/models/acs/metadata/dormakaba_community.js.map +1 -0
- package/lib/seam/connect/models/acs/metadata/index.d.ts +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js +1 -0
- package/lib/seam/connect/models/acs/metadata/index.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
- package/lib/seam/connect/models/devices/device-provider.js +2 -0
- package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +13 -0
- package/lib/seam/connect/openapi.js +13 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +33 -17
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +3 -0
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/models/acs/acs-user.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/dormakaba_community.ts +9 -0
- package/src/lib/seam/connect/models/acs/metadata/index.ts +1 -0
- package/src/lib/seam/connect/models/devices/device-provider.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +13 -0
- package/src/lib/seam/connect/route-types.ts +43 -0
package/dist/connect.d.cts
CHANGED
|
@@ -779,6 +779,13 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
779
779
|
intrusion_alarm: boolean;
|
|
780
780
|
privacy_mode: boolean;
|
|
781
781
|
}>>;
|
|
782
|
+
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
783
|
+
access_point_name: z.ZodString;
|
|
784
|
+
}, "strip", z.ZodTypeAny, {
|
|
785
|
+
access_point_name: string;
|
|
786
|
+
}, {
|
|
787
|
+
access_point_name: string;
|
|
788
|
+
}>>;
|
|
782
789
|
}, "strip", z.ZodTypeAny, {
|
|
783
790
|
created_at: string;
|
|
784
791
|
errors: {
|
|
@@ -812,6 +819,9 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
812
819
|
accessibility_type: string;
|
|
813
820
|
door_type: string;
|
|
814
821
|
} | undefined;
|
|
822
|
+
dormakaba_community_metadata?: {
|
|
823
|
+
access_point_name: string;
|
|
824
|
+
} | undefined;
|
|
815
825
|
}, {
|
|
816
826
|
created_at: string;
|
|
817
827
|
errors: {
|
|
@@ -845,13 +855,16 @@ declare const acs_entrance: z.ZodObject<{
|
|
|
845
855
|
accessibility_type: string;
|
|
846
856
|
door_type: string;
|
|
847
857
|
} | undefined;
|
|
858
|
+
dormakaba_community_metadata?: {
|
|
859
|
+
access_point_name: string;
|
|
860
|
+
} | undefined;
|
|
848
861
|
}>;
|
|
849
862
|
type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
850
863
|
|
|
851
864
|
declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
852
865
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
853
866
|
acs_system_id: z.ZodString;
|
|
854
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
867
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community"]>>;
|
|
855
868
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
856
869
|
is_credential_manager: z.ZodBoolean;
|
|
857
870
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -867,7 +880,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
867
880
|
system_id: string;
|
|
868
881
|
lan_address: string;
|
|
869
882
|
}>>;
|
|
870
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
883
|
+
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community"]>>;
|
|
871
884
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
872
885
|
name: z.ZodString;
|
|
873
886
|
created_at: z.ZodString;
|
|
@@ -1000,14 +1013,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1000
1013
|
system_id: string;
|
|
1001
1014
|
lan_address: string;
|
|
1002
1015
|
} | undefined;
|
|
1003
|
-
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1016
|
+
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1004
1017
|
external_type_display_name?: string | undefined;
|
|
1005
1018
|
can_automate_enrollment?: boolean | undefined;
|
|
1006
1019
|
can_create_acs_access_groups?: boolean | undefined;
|
|
1007
1020
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
1008
1021
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
1009
1022
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
1010
|
-
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1023
|
+
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1011
1024
|
system_type_display_name?: string | undefined;
|
|
1012
1025
|
}, {
|
|
1013
1026
|
created_at: string;
|
|
@@ -1049,14 +1062,14 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1049
1062
|
system_id: string;
|
|
1050
1063
|
lan_address: string;
|
|
1051
1064
|
} | undefined;
|
|
1052
|
-
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1065
|
+
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1053
1066
|
external_type_display_name?: string | undefined;
|
|
1054
1067
|
can_automate_enrollment?: boolean | undefined;
|
|
1055
1068
|
can_create_acs_access_groups?: boolean | undefined;
|
|
1056
1069
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
1057
1070
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
1058
1071
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
1059
|
-
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1072
|
+
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
1060
1073
|
system_type_display_name?: string | undefined;
|
|
1061
1074
|
}>;
|
|
1062
1075
|
type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -1068,7 +1081,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1068
1081
|
workspace_id: z.ZodString;
|
|
1069
1082
|
created_at: z.ZodString;
|
|
1070
1083
|
display_name: z.ZodString;
|
|
1071
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
1084
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
1072
1085
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1073
1086
|
is_suspended: z.ZodBoolean;
|
|
1074
1087
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -1226,7 +1239,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1226
1239
|
acs_user_id: string;
|
|
1227
1240
|
is_suspended: boolean;
|
|
1228
1241
|
email?: string | undefined;
|
|
1229
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1242
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1230
1243
|
external_type_display_name?: string | undefined;
|
|
1231
1244
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1232
1245
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -1281,7 +1294,7 @@ declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extend
|
|
|
1281
1294
|
acs_user_id: string;
|
|
1282
1295
|
is_suspended: boolean;
|
|
1283
1296
|
email?: string | undefined;
|
|
1284
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1297
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1285
1298
|
external_type_display_name?: string | undefined;
|
|
1286
1299
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1287
1300
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -1305,7 +1318,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1305
1318
|
workspace_id: z.ZodString;
|
|
1306
1319
|
created_at: z.ZodString;
|
|
1307
1320
|
display_name: z.ZodString;
|
|
1308
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
1321
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
1309
1322
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
1310
1323
|
is_suspended: z.ZodBoolean;
|
|
1311
1324
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -1463,7 +1476,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1463
1476
|
acs_user_id: string;
|
|
1464
1477
|
is_suspended: boolean;
|
|
1465
1478
|
email?: string | undefined;
|
|
1466
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1479
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1467
1480
|
external_type_display_name?: string | undefined;
|
|
1468
1481
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1469
1482
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -1518,7 +1531,7 @@ declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectU
|
|
|
1518
1531
|
acs_user_id: string;
|
|
1519
1532
|
is_suspended: boolean;
|
|
1520
1533
|
email?: string | undefined;
|
|
1521
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
1534
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
1522
1535
|
external_type_display_name?: string | undefined;
|
|
1523
1536
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
1524
1537
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -7196,6 +7209,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7196
7209
|
type Device = z.infer<typeof device>;
|
|
7197
7210
|
|
|
7198
7211
|
declare const DEVICE_PROVIDERS: {
|
|
7212
|
+
readonly DORMAKABA_COMMUNITY: "dormakaba_community";
|
|
7199
7213
|
readonly AKUVOX: "akuvox";
|
|
7200
7214
|
readonly AUGUST: "august";
|
|
7201
7215
|
readonly AVIGILON_ALTA: "avigilon_alta";
|
|
@@ -11853,6 +11867,15 @@ declare const _default: {
|
|
|
11853
11867
|
description: string;
|
|
11854
11868
|
type: string;
|
|
11855
11869
|
};
|
|
11870
|
+
dormakaba_community_metadata: {
|
|
11871
|
+
properties: {
|
|
11872
|
+
access_point_name: {
|
|
11873
|
+
type: string;
|
|
11874
|
+
};
|
|
11875
|
+
};
|
|
11876
|
+
required: string[];
|
|
11877
|
+
type: string;
|
|
11878
|
+
};
|
|
11856
11879
|
errors: {
|
|
11857
11880
|
items: {
|
|
11858
11881
|
properties: {
|
|
@@ -25321,6 +25344,10 @@ declare const _default: {
|
|
|
25321
25344
|
since: {
|
|
25322
25345
|
type: string;
|
|
25323
25346
|
};
|
|
25347
|
+
unstable_offset: {
|
|
25348
|
+
format: string;
|
|
25349
|
+
type: string;
|
|
25350
|
+
};
|
|
25324
25351
|
};
|
|
25325
25352
|
type: string;
|
|
25326
25353
|
};
|
|
@@ -34404,6 +34431,9 @@ interface Routes {
|
|
|
34404
34431
|
intrusion_alarm: boolean;
|
|
34405
34432
|
privacy_mode: boolean;
|
|
34406
34433
|
} | undefined;
|
|
34434
|
+
dormakaba_community_metadata?: {
|
|
34435
|
+
access_point_name: string;
|
|
34436
|
+
} | undefined;
|
|
34407
34437
|
}>;
|
|
34408
34438
|
};
|
|
34409
34439
|
};
|
|
@@ -34431,7 +34461,7 @@ interface Routes {
|
|
|
34431
34461
|
/** Display name for the `acs_user`. */
|
|
34432
34462
|
display_name: string;
|
|
34433
34463
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
34434
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
34464
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
34435
34465
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
34436
34466
|
external_type_display_name?: string | undefined;
|
|
34437
34467
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -34942,6 +34972,9 @@ interface Routes {
|
|
|
34942
34972
|
intrusion_alarm: boolean;
|
|
34943
34973
|
privacy_mode: boolean;
|
|
34944
34974
|
} | undefined;
|
|
34975
|
+
dormakaba_community_metadata?: {
|
|
34976
|
+
access_point_name: string;
|
|
34977
|
+
} | undefined;
|
|
34945
34978
|
}>;
|
|
34946
34979
|
};
|
|
34947
34980
|
};
|
|
@@ -36979,6 +37012,9 @@ interface Routes {
|
|
|
36979
37012
|
intrusion_alarm: boolean;
|
|
36980
37013
|
privacy_mode: boolean;
|
|
36981
37014
|
} | undefined;
|
|
37015
|
+
dormakaba_community_metadata?: {
|
|
37016
|
+
access_point_name: string;
|
|
37017
|
+
} | undefined;
|
|
36982
37018
|
};
|
|
36983
37019
|
};
|
|
36984
37020
|
};
|
|
@@ -37042,6 +37078,9 @@ interface Routes {
|
|
|
37042
37078
|
intrusion_alarm: boolean;
|
|
37043
37079
|
privacy_mode: boolean;
|
|
37044
37080
|
} | undefined;
|
|
37081
|
+
dormakaba_community_metadata?: {
|
|
37082
|
+
access_point_name: string;
|
|
37083
|
+
} | undefined;
|
|
37045
37084
|
}>;
|
|
37046
37085
|
};
|
|
37047
37086
|
};
|
|
@@ -37117,7 +37156,7 @@ interface Routes {
|
|
|
37117
37156
|
/** ID of the `acs_system`. */
|
|
37118
37157
|
acs_system_id: string;
|
|
37119
37158
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37120
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37159
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37121
37160
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37122
37161
|
external_type_display_name?: string | undefined;
|
|
37123
37162
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37132,7 +37171,7 @@ interface Routes {
|
|
|
37132
37171
|
} | undefined;
|
|
37133
37172
|
/**
|
|
37134
37173
|
* @deprecated Use `external_type`. */
|
|
37135
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37174
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37136
37175
|
/**
|
|
37137
37176
|
* @deprecated Use `external_type_display_name`. */
|
|
37138
37177
|
system_type_display_name?: string | undefined;
|
|
@@ -37222,7 +37261,7 @@ interface Routes {
|
|
|
37222
37261
|
/** ID of the `acs_system`. */
|
|
37223
37262
|
acs_system_id: string;
|
|
37224
37263
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37225
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37264
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37226
37265
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37227
37266
|
external_type_display_name?: string | undefined;
|
|
37228
37267
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37237,7 +37276,7 @@ interface Routes {
|
|
|
37237
37276
|
} | undefined;
|
|
37238
37277
|
/**
|
|
37239
37278
|
* @deprecated Use `external_type`. */
|
|
37240
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37279
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37241
37280
|
/**
|
|
37242
37281
|
* @deprecated Use `external_type_display_name`. */
|
|
37243
37282
|
system_type_display_name?: string | undefined;
|
|
@@ -37327,7 +37366,7 @@ interface Routes {
|
|
|
37327
37366
|
/** ID of the `acs_system`. */
|
|
37328
37367
|
acs_system_id: string;
|
|
37329
37368
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37330
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37369
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37331
37370
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37332
37371
|
external_type_display_name?: string | undefined;
|
|
37333
37372
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37342,7 +37381,7 @@ interface Routes {
|
|
|
37342
37381
|
} | undefined;
|
|
37343
37382
|
/**
|
|
37344
37383
|
* @deprecated Use `external_type`. */
|
|
37345
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
37384
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
37346
37385
|
/**
|
|
37347
37386
|
* @deprecated Use `external_type_display_name`. */
|
|
37348
37387
|
system_type_display_name?: string | undefined;
|
|
@@ -37471,7 +37510,7 @@ interface Routes {
|
|
|
37471
37510
|
/** Display name for the `acs_user`. */
|
|
37472
37511
|
display_name: string;
|
|
37473
37512
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37474
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
37513
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
37475
37514
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37476
37515
|
external_type_display_name?: string | undefined;
|
|
37477
37516
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37584,7 +37623,7 @@ interface Routes {
|
|
|
37584
37623
|
/** Display name for the `acs_user`. */
|
|
37585
37624
|
display_name: string;
|
|
37586
37625
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37587
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
37626
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
37588
37627
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37589
37628
|
external_type_display_name?: string | undefined;
|
|
37590
37629
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37693,7 +37732,7 @@ interface Routes {
|
|
|
37693
37732
|
/** Display name for the `acs_user`. */
|
|
37694
37733
|
display_name: string;
|
|
37695
37734
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37696
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
37735
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
37697
37736
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37698
37737
|
external_type_display_name?: string | undefined;
|
|
37699
37738
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37818,6 +37857,9 @@ interface Routes {
|
|
|
37818
37857
|
intrusion_alarm: boolean;
|
|
37819
37858
|
privacy_mode: boolean;
|
|
37820
37859
|
} | undefined;
|
|
37860
|
+
dormakaba_community_metadata?: {
|
|
37861
|
+
access_point_name: string;
|
|
37862
|
+
} | undefined;
|
|
37821
37863
|
}>;
|
|
37822
37864
|
};
|
|
37823
37865
|
};
|
|
@@ -37882,7 +37924,7 @@ interface Routes {
|
|
|
37882
37924
|
/** Display name for the `acs_user`. */
|
|
37883
37925
|
display_name: string;
|
|
37884
37926
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37885
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
37927
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
37886
37928
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37887
37929
|
external_type_display_name?: string | undefined;
|
|
37888
37930
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37986,7 +38028,7 @@ interface Routes {
|
|
|
37986
38028
|
/** Display name for the `acs_user`. */
|
|
37987
38029
|
display_name: string;
|
|
37988
38030
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37989
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
38031
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
37990
38032
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37991
38033
|
external_type_display_name?: string | undefined;
|
|
37992
38034
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -39548,7 +39590,7 @@ interface Routes {
|
|
|
39548
39590
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
39549
39591
|
custom_redirect_url?: string | undefined;
|
|
39550
39592
|
custom_redirect_failure_url?: string | undefined;
|
|
39551
|
-
accepted_providers?: Array<'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
39593
|
+
accepted_providers?: Array<'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
|
|
39552
39594
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
39553
39595
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
39554
39596
|
automatically_manage_new_devices?: boolean;
|
|
@@ -40778,7 +40820,7 @@ interface Routes {
|
|
|
40778
40820
|
formData: {};
|
|
40779
40821
|
jsonResponse: {
|
|
40780
40822
|
device_providers: Array<{
|
|
40781
|
-
device_provider_name: 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio';
|
|
40823
|
+
device_provider_name: 'dormakaba_community' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'seam_bridge' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'vostio';
|
|
40782
40824
|
display_name: string;
|
|
40783
40825
|
image_url: string;
|
|
40784
40826
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -41138,6 +41180,7 @@ interface Routes {
|
|
|
41138
41180
|
queryParams: {};
|
|
41139
41181
|
jsonBody: {};
|
|
41140
41182
|
commonParams: {
|
|
41183
|
+
unstable_offset?: number | undefined;
|
|
41141
41184
|
since?: string | undefined;
|
|
41142
41185
|
between?: Array<string | Date> | undefined;
|
|
41143
41186
|
device_id?: string | undefined;
|
|
@@ -54087,7 +54130,7 @@ interface Routes {
|
|
|
54087
54130
|
/** ID of the `acs_system`. */
|
|
54088
54131
|
acs_system_id: string;
|
|
54089
54132
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
54090
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
54133
|
+
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
54091
54134
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
54092
54135
|
external_type_display_name?: string | undefined;
|
|
54093
54136
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -54102,7 +54145,7 @@ interface Routes {
|
|
|
54102
54145
|
} | undefined;
|
|
54103
54146
|
/**
|
|
54104
54147
|
* @deprecated Use `external_type`. */
|
|
54105
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
54148
|
+
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building' | 'dormakaba_community') | undefined;
|
|
54106
54149
|
/**
|
|
54107
54150
|
* @deprecated Use `external_type_display_name`. */
|
|
54108
54151
|
system_type_display_name?: string | undefined;
|
|
@@ -54198,7 +54241,7 @@ interface Routes {
|
|
|
54198
54241
|
/** Display name for the `acs_user`. */
|
|
54199
54242
|
display_name: string;
|
|
54200
54243
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
54201
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
54244
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
54202
54245
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
54203
54246
|
external_type_display_name?: string | undefined;
|
|
54204
54247
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -86,6 +86,13 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
86
86
|
intrusion_alarm: boolean;
|
|
87
87
|
privacy_mode: boolean;
|
|
88
88
|
}>>;
|
|
89
|
+
dormakaba_community_metadata: z.ZodOptional<z.ZodObject<{
|
|
90
|
+
access_point_name: z.ZodString;
|
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
|
92
|
+
access_point_name: string;
|
|
93
|
+
}, {
|
|
94
|
+
access_point_name: string;
|
|
95
|
+
}>>;
|
|
89
96
|
}, "strip", z.ZodTypeAny, {
|
|
90
97
|
created_at: string;
|
|
91
98
|
errors: {
|
|
@@ -119,6 +126,9 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
119
126
|
accessibility_type: string;
|
|
120
127
|
door_type: string;
|
|
121
128
|
} | undefined;
|
|
129
|
+
dormakaba_community_metadata?: {
|
|
130
|
+
access_point_name: string;
|
|
131
|
+
} | undefined;
|
|
122
132
|
}, {
|
|
123
133
|
created_at: string;
|
|
124
134
|
errors: {
|
|
@@ -152,5 +162,8 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
152
162
|
accessibility_type: string;
|
|
153
163
|
door_type: string;
|
|
154
164
|
} | undefined;
|
|
165
|
+
dormakaba_community_metadata?: {
|
|
166
|
+
access_point_name: string;
|
|
167
|
+
} | undefined;
|
|
155
168
|
}>;
|
|
156
169
|
export type AcsEntrance = z.infer<typeof acs_entrance>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { acs_entrance_latch_metadata, acs_entrance_salto_ks_metadata, acs_entrance_visionline_metadata, } from './metadata/index.js';
|
|
2
|
+
import { acs_entrance_dormakaba_community_metadata, acs_entrance_latch_metadata, acs_entrance_salto_ks_metadata, acs_entrance_visionline_metadata, } from './metadata/index.js';
|
|
3
3
|
export const acs_entrance = z.object({
|
|
4
4
|
acs_system_id: z
|
|
5
5
|
.string()
|
|
@@ -18,5 +18,6 @@ export const acs_entrance = z.object({
|
|
|
18
18
|
latch_metadata: acs_entrance_latch_metadata.optional(),
|
|
19
19
|
visionline_metadata: acs_entrance_visionline_metadata.optional(),
|
|
20
20
|
salto_ks_metadata: acs_entrance_salto_ks_metadata.optional(),
|
|
21
|
+
dormakaba_community_metadata: acs_entrance_dormakaba_community_metadata.optional(),
|
|
21
22
|
});
|
|
22
23
|
//# sourceMappingURL=acs-entrance.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;AAE5B,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IAClE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC;IACnE,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,cAAc,EAAE,2BAA2B,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,gCAAgC,CAAC,QAAQ,EAAE;IAChE,iBAAiB,EAAE,8BAA8B,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"acs-entrance.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-entrance.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,yCAAyC,EACzC,2BAA2B,EAC3B,8BAA8B,EAC9B,gCAAgC,GACjC,MAAM,qBAAqB,CAAA;AAE5B,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,CAAC;IACnC,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CAAC,6DAA6D,CAAC;IAC1E,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,CAAC,qBAAqB,CAAC;IAClE,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gCAAgC,CAAC;IACnE,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,cAAc,EAAE,2BAA2B,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,gCAAgC,CAAC,QAAQ,EAAE;IAChE,iBAAiB,EAAE,8BAA8B,CAAC,QAAQ,EAAE;IAC5D,4BAA4B,EAC1B,yCAAyC,CAAC,QAAQ,EAAE;CACvD,CAAC,CAAA"}
|
|
@@ -15,7 +15,7 @@ export declare const acs_system_capability_flags: z.ZodObject<{
|
|
|
15
15
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
16
16
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
17
17
|
}>;
|
|
18
|
-
export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>;
|
|
18
|
+
export declare const acs_system_external_type: z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community"]>;
|
|
19
19
|
export type AcsSystemExternalType = z.infer<typeof acs_system_external_type>;
|
|
20
20
|
export declare const acs_system_error_map: z.ZodObject<{
|
|
21
21
|
seam_bridge_disconnected: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -174,7 +174,7 @@ export type AcsSystemWarningMap = z.infer<typeof acs_system_warning_map>;
|
|
|
174
174
|
export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
175
175
|
default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
176
176
|
acs_system_id: z.ZodString;
|
|
177
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
177
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community"]>>;
|
|
178
178
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
179
179
|
is_credential_manager: z.ZodBoolean;
|
|
180
180
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
@@ -190,7 +190,7 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
190
190
|
system_id: string;
|
|
191
191
|
lan_address: string;
|
|
192
192
|
}>>;
|
|
193
|
-
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
|
|
193
|
+
system_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_ks_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building", "dormakaba_community"]>>;
|
|
194
194
|
system_type_display_name: z.ZodOptional<z.ZodString>;
|
|
195
195
|
name: z.ZodString;
|
|
196
196
|
created_at: z.ZodString;
|
|
@@ -323,14 +323,14 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
323
323
|
system_id: string;
|
|
324
324
|
lan_address: string;
|
|
325
325
|
} | undefined;
|
|
326
|
-
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
326
|
+
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
327
327
|
external_type_display_name?: string | undefined;
|
|
328
328
|
can_automate_enrollment?: boolean | undefined;
|
|
329
329
|
can_create_acs_access_groups?: boolean | undefined;
|
|
330
330
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
331
331
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
332
332
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
333
|
-
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
333
|
+
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
334
334
|
system_type_display_name?: string | undefined;
|
|
335
335
|
}, {
|
|
336
336
|
name: string;
|
|
@@ -372,14 +372,14 @@ export declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
372
372
|
system_id: string;
|
|
373
373
|
lan_address: string;
|
|
374
374
|
} | undefined;
|
|
375
|
-
external_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
375
|
+
external_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
376
376
|
external_type_display_name?: string | undefined;
|
|
377
377
|
can_automate_enrollment?: boolean | undefined;
|
|
378
378
|
can_create_acs_access_groups?: boolean | undefined;
|
|
379
379
|
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
380
380
|
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
381
381
|
default_credential_manager_acs_system_id?: string | null | undefined;
|
|
382
|
-
system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
382
|
+
system_type?: "dormakaba_community" | "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_ks_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
|
|
383
383
|
system_type_display_name?: string | undefined;
|
|
384
384
|
}>;
|
|
385
385
|
export type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC;SACvB,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,qUAAqU,CACtU;IACH,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,oXAAoX,CACrX;IACH,2CAA2C,EAAE,CAAC;SAC3C,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,uaAAua,CACxa;IACH,sCAAsC,EAAE,CAAC;SACtC,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP,8ZAA8Z,CAC/Z;CACJ,CAAC,CAAA;AAEF,oEAAoE;AACpE,MAAM,CAAC,MAAM,wBAAwB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC7C,UAAU;IACV,UAAU;IACV,eAAe;IACf,eAAe;IACf,qCAAqC;IACrC,mBAAmB;IACnB,+BAA+B;IAC/B,gBAAgB;
|
|
1
|
+
{"version":3,"file":"acs-system.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-system.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>;
|
|
2
|
+
export declare const acs_user_external_type: z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>;
|
|
3
3
|
export type AcsUserExternalType = z.infer<typeof acs_user_external_type>;
|
|
4
4
|
export declare const acs_users_error_map: z.ZodObject<{
|
|
5
5
|
deleted_externally: z.ZodNullable<z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -213,7 +213,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
213
213
|
workspace_id: z.ZodString;
|
|
214
214
|
created_at: z.ZodString;
|
|
215
215
|
display_name: z.ZodString;
|
|
216
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
216
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
217
217
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
218
218
|
is_suspended: z.ZodBoolean;
|
|
219
219
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -371,7 +371,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
371
371
|
acs_user_id: string;
|
|
372
372
|
is_suspended: boolean;
|
|
373
373
|
email?: string | undefined;
|
|
374
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
374
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
375
375
|
external_type_display_name?: string | undefined;
|
|
376
376
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
377
377
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -426,7 +426,7 @@ export declare const acs_user: z.ZodObject<z.objectUtil.extendShape<z.objectUtil
|
|
|
426
426
|
acs_user_id: string;
|
|
427
427
|
is_suspended: boolean;
|
|
428
428
|
email?: string | undefined;
|
|
429
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
429
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
430
430
|
external_type_display_name?: string | undefined;
|
|
431
431
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
432
432
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -450,7 +450,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
450
450
|
workspace_id: z.ZodString;
|
|
451
451
|
created_at: z.ZodString;
|
|
452
452
|
display_name: z.ZodString;
|
|
453
|
-
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user"]>>;
|
|
453
|
+
external_type: z.ZodOptional<z.ZodEnum<["pti_user", "brivo_user", "hid_credential_manager_user", "salto_site_user", "latch_user", "dormakaba_community_user"]>>;
|
|
454
454
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
455
455
|
is_suspended: z.ZodBoolean;
|
|
456
456
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
@@ -608,7 +608,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
608
608
|
acs_user_id: string;
|
|
609
609
|
is_suspended: boolean;
|
|
610
610
|
email?: string | undefined;
|
|
611
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
611
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
612
612
|
external_type_display_name?: string | undefined;
|
|
613
613
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
614
614
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|
|
@@ -663,7 +663,7 @@ export declare const unmanaged_acs_user: z.ZodObject<z.objectUtil.extendShape<z.
|
|
|
663
663
|
acs_user_id: string;
|
|
664
664
|
is_suspended: boolean;
|
|
665
665
|
email?: string | undefined;
|
|
666
|
-
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | undefined;
|
|
666
|
+
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | "latch_user" | "dormakaba_community_user" | undefined;
|
|
667
667
|
external_type_display_name?: string | undefined;
|
|
668
668
|
is_latest_desired_state_synced_with_provider?: boolean | undefined;
|
|
669
669
|
latest_desired_state_synced_with_provider_at?: string | undefined;
|