@seamapi/types 1.276.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 +28 -8
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +67 -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 +9 -0
- package/lib/seam/connect/openapi.js +12 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +32 -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 +12 -0
- package/src/lib/seam/connect/route-types.ts +42 -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: {
|
|
@@ -34408,6 +34431,9 @@ interface Routes {
|
|
|
34408
34431
|
intrusion_alarm: boolean;
|
|
34409
34432
|
privacy_mode: boolean;
|
|
34410
34433
|
} | undefined;
|
|
34434
|
+
dormakaba_community_metadata?: {
|
|
34435
|
+
access_point_name: string;
|
|
34436
|
+
} | undefined;
|
|
34411
34437
|
}>;
|
|
34412
34438
|
};
|
|
34413
34439
|
};
|
|
@@ -34435,7 +34461,7 @@ interface Routes {
|
|
|
34435
34461
|
/** Display name for the `acs_user`. */
|
|
34436
34462
|
display_name: string;
|
|
34437
34463
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
34438
|
-
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;
|
|
34439
34465
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
34440
34466
|
external_type_display_name?: string | undefined;
|
|
34441
34467
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -34946,6 +34972,9 @@ interface Routes {
|
|
|
34946
34972
|
intrusion_alarm: boolean;
|
|
34947
34973
|
privacy_mode: boolean;
|
|
34948
34974
|
} | undefined;
|
|
34975
|
+
dormakaba_community_metadata?: {
|
|
34976
|
+
access_point_name: string;
|
|
34977
|
+
} | undefined;
|
|
34949
34978
|
}>;
|
|
34950
34979
|
};
|
|
34951
34980
|
};
|
|
@@ -36983,6 +37012,9 @@ interface Routes {
|
|
|
36983
37012
|
intrusion_alarm: boolean;
|
|
36984
37013
|
privacy_mode: boolean;
|
|
36985
37014
|
} | undefined;
|
|
37015
|
+
dormakaba_community_metadata?: {
|
|
37016
|
+
access_point_name: string;
|
|
37017
|
+
} | undefined;
|
|
36986
37018
|
};
|
|
36987
37019
|
};
|
|
36988
37020
|
};
|
|
@@ -37046,6 +37078,9 @@ interface Routes {
|
|
|
37046
37078
|
intrusion_alarm: boolean;
|
|
37047
37079
|
privacy_mode: boolean;
|
|
37048
37080
|
} | undefined;
|
|
37081
|
+
dormakaba_community_metadata?: {
|
|
37082
|
+
access_point_name: string;
|
|
37083
|
+
} | undefined;
|
|
37049
37084
|
}>;
|
|
37050
37085
|
};
|
|
37051
37086
|
};
|
|
@@ -37121,7 +37156,7 @@ interface Routes {
|
|
|
37121
37156
|
/** ID of the `acs_system`. */
|
|
37122
37157
|
acs_system_id: string;
|
|
37123
37158
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37124
|
-
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;
|
|
37125
37160
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37126
37161
|
external_type_display_name?: string | undefined;
|
|
37127
37162
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37136,7 +37171,7 @@ interface Routes {
|
|
|
37136
37171
|
} | undefined;
|
|
37137
37172
|
/**
|
|
37138
37173
|
* @deprecated Use `external_type`. */
|
|
37139
|
-
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;
|
|
37140
37175
|
/**
|
|
37141
37176
|
* @deprecated Use `external_type_display_name`. */
|
|
37142
37177
|
system_type_display_name?: string | undefined;
|
|
@@ -37226,7 +37261,7 @@ interface Routes {
|
|
|
37226
37261
|
/** ID of the `acs_system`. */
|
|
37227
37262
|
acs_system_id: string;
|
|
37228
37263
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37229
|
-
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;
|
|
37230
37265
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37231
37266
|
external_type_display_name?: string | undefined;
|
|
37232
37267
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37241,7 +37276,7 @@ interface Routes {
|
|
|
37241
37276
|
} | undefined;
|
|
37242
37277
|
/**
|
|
37243
37278
|
* @deprecated Use `external_type`. */
|
|
37244
|
-
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;
|
|
37245
37280
|
/**
|
|
37246
37281
|
* @deprecated Use `external_type_display_name`. */
|
|
37247
37282
|
system_type_display_name?: string | undefined;
|
|
@@ -37331,7 +37366,7 @@ interface Routes {
|
|
|
37331
37366
|
/** ID of the `acs_system`. */
|
|
37332
37367
|
acs_system_id: string;
|
|
37333
37368
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
37334
|
-
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;
|
|
37335
37370
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
37336
37371
|
external_type_display_name?: string | undefined;
|
|
37337
37372
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -37346,7 +37381,7 @@ interface Routes {
|
|
|
37346
37381
|
} | undefined;
|
|
37347
37382
|
/**
|
|
37348
37383
|
* @deprecated Use `external_type`. */
|
|
37349
|
-
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;
|
|
37350
37385
|
/**
|
|
37351
37386
|
* @deprecated Use `external_type_display_name`. */
|
|
37352
37387
|
system_type_display_name?: string | undefined;
|
|
@@ -37475,7 +37510,7 @@ interface Routes {
|
|
|
37475
37510
|
/** Display name for the `acs_user`. */
|
|
37476
37511
|
display_name: string;
|
|
37477
37512
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37478
|
-
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;
|
|
37479
37514
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37480
37515
|
external_type_display_name?: string | undefined;
|
|
37481
37516
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37588,7 +37623,7 @@ interface Routes {
|
|
|
37588
37623
|
/** Display name for the `acs_user`. */
|
|
37589
37624
|
display_name: string;
|
|
37590
37625
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37591
|
-
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;
|
|
37592
37627
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37593
37628
|
external_type_display_name?: string | undefined;
|
|
37594
37629
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37697,7 +37732,7 @@ interface Routes {
|
|
|
37697
37732
|
/** Display name for the `acs_user`. */
|
|
37698
37733
|
display_name: string;
|
|
37699
37734
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37700
|
-
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;
|
|
37701
37736
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37702
37737
|
external_type_display_name?: string | undefined;
|
|
37703
37738
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37822,6 +37857,9 @@ interface Routes {
|
|
|
37822
37857
|
intrusion_alarm: boolean;
|
|
37823
37858
|
privacy_mode: boolean;
|
|
37824
37859
|
} | undefined;
|
|
37860
|
+
dormakaba_community_metadata?: {
|
|
37861
|
+
access_point_name: string;
|
|
37862
|
+
} | undefined;
|
|
37825
37863
|
}>;
|
|
37826
37864
|
};
|
|
37827
37865
|
};
|
|
@@ -37886,7 +37924,7 @@ interface Routes {
|
|
|
37886
37924
|
/** Display name for the `acs_user`. */
|
|
37887
37925
|
display_name: string;
|
|
37888
37926
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37889
|
-
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;
|
|
37890
37928
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37891
37929
|
external_type_display_name?: string | undefined;
|
|
37892
37930
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -37990,7 +38028,7 @@ interface Routes {
|
|
|
37990
38028
|
/** Display name for the `acs_user`. */
|
|
37991
38029
|
display_name: string;
|
|
37992
38030
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
37993
|
-
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;
|
|
37994
38032
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
37995
38033
|
external_type_display_name?: string | undefined;
|
|
37996
38034
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -39552,7 +39590,7 @@ interface Routes {
|
|
|
39552
39590
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
39553
39591
|
custom_redirect_url?: string | undefined;
|
|
39554
39592
|
custom_redirect_failure_url?: string | undefined;
|
|
39555
|
-
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;
|
|
39556
39594
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
39557
39595
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
39558
39596
|
automatically_manage_new_devices?: boolean;
|
|
@@ -40782,7 +40820,7 @@ interface Routes {
|
|
|
40782
40820
|
formData: {};
|
|
40783
40821
|
jsonResponse: {
|
|
40784
40822
|
device_providers: Array<{
|
|
40785
|
-
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';
|
|
40786
40824
|
display_name: string;
|
|
40787
40825
|
image_url: string;
|
|
40788
40826
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -54092,7 +54130,7 @@ interface Routes {
|
|
|
54092
54130
|
/** ID of the `acs_system`. */
|
|
54093
54131
|
acs_system_id: string;
|
|
54094
54132
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
54095
|
-
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;
|
|
54096
54134
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
54097
54135
|
external_type_display_name?: string | undefined;
|
|
54098
54136
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -54107,7 +54145,7 @@ interface Routes {
|
|
|
54107
54145
|
} | undefined;
|
|
54108
54146
|
/**
|
|
54109
54147
|
* @deprecated Use `external_type`. */
|
|
54110
|
-
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;
|
|
54111
54149
|
/**
|
|
54112
54150
|
* @deprecated Use `external_type_display_name`. */
|
|
54113
54151
|
system_type_display_name?: string | undefined;
|
|
@@ -54203,7 +54241,7 @@ interface Routes {
|
|
|
54203
54241
|
/** Display name for the `acs_user`. */
|
|
54204
54242
|
display_name: string;
|
|
54205
54243
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
54206
|
-
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;
|
|
54207
54245
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
54208
54246
|
external_type_display_name?: string | undefined;
|
|
54209
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;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;IACjB,YAAY;
|
|
1
|
+
{"version":3,"file":"acs-user.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-user.ts"],"names":[],"mappings":"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"}
|