@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
|
@@ -3341,6 +3341,9 @@ export interface Routes {
|
|
|
3341
3341
|
intrusion_alarm: boolean;
|
|
3342
3342
|
privacy_mode: boolean;
|
|
3343
3343
|
} | undefined;
|
|
3344
|
+
dormakaba_community_metadata?: {
|
|
3345
|
+
access_point_name: string;
|
|
3346
|
+
} | undefined;
|
|
3344
3347
|
}>;
|
|
3345
3348
|
};
|
|
3346
3349
|
};
|
|
@@ -3368,7 +3371,7 @@ export interface Routes {
|
|
|
3368
3371
|
/** Display name for the `acs_user`. */
|
|
3369
3372
|
display_name: string;
|
|
3370
3373
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
3371
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
3374
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
3372
3375
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
3373
3376
|
external_type_display_name?: string | undefined;
|
|
3374
3377
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -3879,6 +3882,9 @@ export interface Routes {
|
|
|
3879
3882
|
intrusion_alarm: boolean;
|
|
3880
3883
|
privacy_mode: boolean;
|
|
3881
3884
|
} | undefined;
|
|
3885
|
+
dormakaba_community_metadata?: {
|
|
3886
|
+
access_point_name: string;
|
|
3887
|
+
} | undefined;
|
|
3882
3888
|
}>;
|
|
3883
3889
|
};
|
|
3884
3890
|
};
|
|
@@ -5916,6 +5922,9 @@ export interface Routes {
|
|
|
5916
5922
|
intrusion_alarm: boolean;
|
|
5917
5923
|
privacy_mode: boolean;
|
|
5918
5924
|
} | undefined;
|
|
5925
|
+
dormakaba_community_metadata?: {
|
|
5926
|
+
access_point_name: string;
|
|
5927
|
+
} | undefined;
|
|
5919
5928
|
};
|
|
5920
5929
|
};
|
|
5921
5930
|
};
|
|
@@ -5979,6 +5988,9 @@ export interface Routes {
|
|
|
5979
5988
|
intrusion_alarm: boolean;
|
|
5980
5989
|
privacy_mode: boolean;
|
|
5981
5990
|
} | undefined;
|
|
5991
|
+
dormakaba_community_metadata?: {
|
|
5992
|
+
access_point_name: string;
|
|
5993
|
+
} | undefined;
|
|
5982
5994
|
}>;
|
|
5983
5995
|
};
|
|
5984
5996
|
};
|
|
@@ -6054,7 +6066,7 @@ export interface Routes {
|
|
|
6054
6066
|
/** ID of the `acs_system`. */
|
|
6055
6067
|
acs_system_id: string;
|
|
6056
6068
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6057
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6069
|
+
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;
|
|
6058
6070
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6059
6071
|
external_type_display_name?: string | undefined;
|
|
6060
6072
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6069,7 +6081,7 @@ export interface Routes {
|
|
|
6069
6081
|
} | undefined;
|
|
6070
6082
|
/**
|
|
6071
6083
|
* @deprecated Use `external_type`. */
|
|
6072
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6084
|
+
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;
|
|
6073
6085
|
/**
|
|
6074
6086
|
* @deprecated Use `external_type_display_name`. */
|
|
6075
6087
|
system_type_display_name?: string | undefined;
|
|
@@ -6159,7 +6171,7 @@ export interface Routes {
|
|
|
6159
6171
|
/** ID of the `acs_system`. */
|
|
6160
6172
|
acs_system_id: string;
|
|
6161
6173
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6162
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6174
|
+
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;
|
|
6163
6175
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6164
6176
|
external_type_display_name?: string | undefined;
|
|
6165
6177
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6174,7 +6186,7 @@ export interface Routes {
|
|
|
6174
6186
|
} | undefined;
|
|
6175
6187
|
/**
|
|
6176
6188
|
* @deprecated Use `external_type`. */
|
|
6177
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6189
|
+
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;
|
|
6178
6190
|
/**
|
|
6179
6191
|
* @deprecated Use `external_type_display_name`. */
|
|
6180
6192
|
system_type_display_name?: string | undefined;
|
|
@@ -6264,7 +6276,7 @@ export interface Routes {
|
|
|
6264
6276
|
/** ID of the `acs_system`. */
|
|
6265
6277
|
acs_system_id: string;
|
|
6266
6278
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
6267
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6279
|
+
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;
|
|
6268
6280
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
6269
6281
|
external_type_display_name?: string | undefined;
|
|
6270
6282
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -6279,7 +6291,7 @@ export interface Routes {
|
|
|
6279
6291
|
} | undefined;
|
|
6280
6292
|
/**
|
|
6281
6293
|
* @deprecated Use `external_type`. */
|
|
6282
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
6294
|
+
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;
|
|
6283
6295
|
/**
|
|
6284
6296
|
* @deprecated Use `external_type_display_name`. */
|
|
6285
6297
|
system_type_display_name?: string | undefined;
|
|
@@ -6408,7 +6420,7 @@ export interface Routes {
|
|
|
6408
6420
|
/** Display name for the `acs_user`. */
|
|
6409
6421
|
display_name: string;
|
|
6410
6422
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
6411
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
6423
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
6412
6424
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
6413
6425
|
external_type_display_name?: string | undefined;
|
|
6414
6426
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -6521,7 +6533,7 @@ export interface Routes {
|
|
|
6521
6533
|
/** Display name for the `acs_user`. */
|
|
6522
6534
|
display_name: string;
|
|
6523
6535
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
6524
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
6536
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
6525
6537
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
6526
6538
|
external_type_display_name?: string | undefined;
|
|
6527
6539
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -6630,7 +6642,7 @@ export interface Routes {
|
|
|
6630
6642
|
/** Display name for the `acs_user`. */
|
|
6631
6643
|
display_name: string;
|
|
6632
6644
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
6633
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
6645
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
6634
6646
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
6635
6647
|
external_type_display_name?: string | undefined;
|
|
6636
6648
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -6755,6 +6767,9 @@ export interface Routes {
|
|
|
6755
6767
|
intrusion_alarm: boolean;
|
|
6756
6768
|
privacy_mode: boolean;
|
|
6757
6769
|
} | undefined;
|
|
6770
|
+
dormakaba_community_metadata?: {
|
|
6771
|
+
access_point_name: string;
|
|
6772
|
+
} | undefined;
|
|
6758
6773
|
}>;
|
|
6759
6774
|
};
|
|
6760
6775
|
};
|
|
@@ -6819,7 +6834,7 @@ export interface Routes {
|
|
|
6819
6834
|
/** Display name for the `acs_user`. */
|
|
6820
6835
|
display_name: string;
|
|
6821
6836
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
6822
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
6837
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
6823
6838
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
6824
6839
|
external_type_display_name?: string | undefined;
|
|
6825
6840
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -6923,7 +6938,7 @@ export interface Routes {
|
|
|
6923
6938
|
/** Display name for the `acs_user`. */
|
|
6924
6939
|
display_name: string;
|
|
6925
6940
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
6926
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
6941
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
6927
6942
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
6928
6943
|
external_type_display_name?: string | undefined;
|
|
6929
6944
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
|
@@ -8485,7 +8500,7 @@ export interface Routes {
|
|
|
8485
8500
|
device_selection_mode?: ('none' | 'single' | 'multiple') | undefined;
|
|
8486
8501
|
custom_redirect_url?: string | undefined;
|
|
8487
8502
|
custom_redirect_failure_url?: string | undefined;
|
|
8488
|
-
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;
|
|
8503
|
+
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;
|
|
8489
8504
|
provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
|
|
8490
8505
|
custom_metadata?: Record<string, string | boolean | null> | undefined;
|
|
8491
8506
|
automatically_manage_new_devices?: boolean;
|
|
@@ -9715,7 +9730,7 @@ export interface Routes {
|
|
|
9715
9730
|
formData: {};
|
|
9716
9731
|
jsonResponse: {
|
|
9717
9732
|
device_providers: Array<{
|
|
9718
|
-
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';
|
|
9733
|
+
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';
|
|
9719
9734
|
display_name: string;
|
|
9720
9735
|
image_url: string;
|
|
9721
9736
|
provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
|
|
@@ -10075,6 +10090,7 @@ export interface Routes {
|
|
|
10075
10090
|
queryParams: {};
|
|
10076
10091
|
jsonBody: {};
|
|
10077
10092
|
commonParams: {
|
|
10093
|
+
unstable_offset?: number | undefined;
|
|
10078
10094
|
since?: string | undefined;
|
|
10079
10095
|
between?: Array<string | Date> | undefined;
|
|
10080
10096
|
device_id?: string | undefined;
|
|
@@ -23024,7 +23040,7 @@ export interface Routes {
|
|
|
23024
23040
|
/** ID of the `acs_system`. */
|
|
23025
23041
|
acs_system_id: string;
|
|
23026
23042
|
/** Brand-specific terminology for the `acs_system` type. */
|
|
23027
|
-
external_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
23043
|
+
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;
|
|
23028
23044
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
23029
23045
|
external_type_display_name?: string | undefined;
|
|
23030
23046
|
/** Indicates if the `acs_system` is a credential manager. */
|
|
@@ -23039,7 +23055,7 @@ export interface Routes {
|
|
|
23039
23055
|
} | undefined;
|
|
23040
23056
|
/**
|
|
23041
23057
|
* @deprecated Use `external_type`. */
|
|
23042
|
-
system_type?: ('pti_site' | 'alta_org' | 'salto_ks_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
23058
|
+
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;
|
|
23043
23059
|
/**
|
|
23044
23060
|
* @deprecated Use `external_type_display_name`. */
|
|
23045
23061
|
system_type_display_name?: string | undefined;
|
|
@@ -23135,7 +23151,7 @@ export interface Routes {
|
|
|
23135
23151
|
/** Display name for the `acs_user`. */
|
|
23136
23152
|
display_name: string;
|
|
23137
23153
|
/** Brand-specific terminology for the `acs_user` type. */
|
|
23138
|
-
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user') | undefined;
|
|
23154
|
+
external_type?: ('pti_user' | 'brivo_user' | 'hid_credential_manager_user' | 'salto_site_user' | 'latch_user' | 'dormakaba_community_user') | undefined;
|
|
23139
23155
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
23140
23156
|
external_type_display_name?: string | undefined;
|
|
23141
23157
|
/** Indicates whether the `acs_user` is currently [suspended](https://docs.seam.co/latest/capability-guides/access-systems/user-management/suspending-and-unsuspending-users). */
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod'
|
|
2
2
|
|
|
3
3
|
import {
|
|
4
|
+
acs_entrance_dormakaba_community_metadata,
|
|
4
5
|
acs_entrance_latch_metadata,
|
|
5
6
|
acs_entrance_salto_ks_metadata,
|
|
6
7
|
acs_entrance_visionline_metadata,
|
|
@@ -26,6 +27,8 @@ export const acs_entrance = z.object({
|
|
|
26
27
|
latch_metadata: acs_entrance_latch_metadata.optional(),
|
|
27
28
|
visionline_metadata: acs_entrance_visionline_metadata.optional(),
|
|
28
29
|
salto_ks_metadata: acs_entrance_salto_ks_metadata.optional(),
|
|
30
|
+
dormakaba_community_metadata:
|
|
31
|
+
acs_entrance_dormakaba_community_metadata.optional(),
|
|
29
32
|
})
|
|
30
33
|
|
|
31
34
|
export type AcsEntrance = z.infer<typeof acs_entrance>
|
|
@@ -3,6 +3,7 @@ import { z } from 'zod'
|
|
|
3
3
|
import { device_capability_flags } from './device.js'
|
|
4
4
|
|
|
5
5
|
export const DEVICE_PROVIDERS = {
|
|
6
|
+
DORMAKABA_COMMUNITY: 'dormakaba_community',
|
|
6
7
|
AKUVOX: 'akuvox',
|
|
7
8
|
AUGUST: 'august',
|
|
8
9
|
AVIGILON_ALTA: 'avigilon_alta',
|
|
@@ -104,6 +105,7 @@ export const PROVIDER_CATEGORY_MAP = {
|
|
|
104
105
|
'pti',
|
|
105
106
|
'visionline',
|
|
106
107
|
'assa_abloy_credential_service',
|
|
108
|
+
'dormakaba_community',
|
|
107
109
|
'latch',
|
|
108
110
|
'salto',
|
|
109
111
|
],
|
|
@@ -422,6 +422,11 @@ export default {
|
|
|
422
422
|
description: 'Display name for the entrance.',
|
|
423
423
|
type: 'string',
|
|
424
424
|
},
|
|
425
|
+
dormakaba_community_metadata: {
|
|
426
|
+
properties: { access_point_name: { type: 'string' } },
|
|
427
|
+
required: ['access_point_name'],
|
|
428
|
+
type: 'object',
|
|
429
|
+
},
|
|
425
430
|
errors: {
|
|
426
431
|
items: {
|
|
427
432
|
properties: {
|
|
@@ -703,6 +708,7 @@ export default {
|
|
|
703
708
|
'visionline_system',
|
|
704
709
|
'assa_abloy_credential_service',
|
|
705
710
|
'latch_building',
|
|
711
|
+
'dormakaba_community',
|
|
706
712
|
],
|
|
707
713
|
type: 'string',
|
|
708
714
|
},
|
|
@@ -736,6 +742,7 @@ export default {
|
|
|
736
742
|
'visionline_system',
|
|
737
743
|
'assa_abloy_credential_service',
|
|
738
744
|
'latch_building',
|
|
745
|
+
'dormakaba_community',
|
|
739
746
|
],
|
|
740
747
|
type: 'string',
|
|
741
748
|
'x-deprecated': 'Use `external_type`.',
|
|
@@ -990,6 +997,7 @@ export default {
|
|
|
990
997
|
'hid_credential_manager_user',
|
|
991
998
|
'salto_site_user',
|
|
992
999
|
'latch_user',
|
|
1000
|
+
'dormakaba_community_user',
|
|
993
1001
|
],
|
|
994
1002
|
type: 'string',
|
|
995
1003
|
},
|
|
@@ -4494,6 +4502,7 @@ export default {
|
|
|
4494
4502
|
can_turn_off_hvac: { type: 'boolean' },
|
|
4495
4503
|
device_provider_name: {
|
|
4496
4504
|
enum: [
|
|
4505
|
+
'dormakaba_community',
|
|
4497
4506
|
'akuvox',
|
|
4498
4507
|
'august',
|
|
4499
4508
|
'avigilon_alta',
|
|
@@ -9824,6 +9833,7 @@ export default {
|
|
|
9824
9833
|
'hid_credential_manager_user',
|
|
9825
9834
|
'salto_site_user',
|
|
9826
9835
|
'latch_user',
|
|
9836
|
+
'dormakaba_community_user',
|
|
9827
9837
|
],
|
|
9828
9838
|
type: 'string',
|
|
9829
9839
|
},
|
|
@@ -10209,6 +10219,7 @@ export default {
|
|
|
10209
10219
|
'hid_credential_manager_user',
|
|
10210
10220
|
'salto_site_user',
|
|
10211
10221
|
'latch_user',
|
|
10222
|
+
'dormakaba_community_user',
|
|
10212
10223
|
],
|
|
10213
10224
|
type: 'string',
|
|
10214
10225
|
},
|
|
@@ -11228,6 +11239,7 @@ export default {
|
|
|
11228
11239
|
accepted_providers: {
|
|
11229
11240
|
items: {
|
|
11230
11241
|
enum: [
|
|
11242
|
+
'dormakaba_community',
|
|
11231
11243
|
'akuvox',
|
|
11232
11244
|
'august',
|
|
11233
11245
|
'avigilon_alta',
|
|
@@ -13012,6 +13024,7 @@ export default {
|
|
|
13012
13024
|
},
|
|
13013
13025
|
limit: { default: 500, format: 'float', type: 'number' },
|
|
13014
13026
|
since: { type: 'string' },
|
|
13027
|
+
unstable_offset: { format: 'float', type: 'number' },
|
|
13015
13028
|
},
|
|
13016
13029
|
type: 'object',
|
|
13017
13030
|
},
|
|
@@ -3878,6 +3878,11 @@ export interface Routes {
|
|
|
3878
3878
|
privacy_mode: boolean
|
|
3879
3879
|
}
|
|
3880
3880
|
| undefined
|
|
3881
|
+
dormakaba_community_metadata?:
|
|
3882
|
+
| {
|
|
3883
|
+
access_point_name: string
|
|
3884
|
+
}
|
|
3885
|
+
| undefined
|
|
3881
3886
|
}>
|
|
3882
3887
|
}
|
|
3883
3888
|
}
|
|
@@ -3912,6 +3917,7 @@ export interface Routes {
|
|
|
3912
3917
|
| 'hid_credential_manager_user'
|
|
3913
3918
|
| 'salto_site_user'
|
|
3914
3919
|
| 'latch_user'
|
|
3920
|
+
| 'dormakaba_community_user'
|
|
3915
3921
|
)
|
|
3916
3922
|
| undefined
|
|
3917
3923
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -4513,6 +4519,11 @@ export interface Routes {
|
|
|
4513
4519
|
privacy_mode: boolean
|
|
4514
4520
|
}
|
|
4515
4521
|
| undefined
|
|
4522
|
+
dormakaba_community_metadata?:
|
|
4523
|
+
| {
|
|
4524
|
+
access_point_name: string
|
|
4525
|
+
}
|
|
4526
|
+
| undefined
|
|
4516
4527
|
}>
|
|
4517
4528
|
}
|
|
4518
4529
|
}
|
|
@@ -7029,6 +7040,11 @@ export interface Routes {
|
|
|
7029
7040
|
privacy_mode: boolean
|
|
7030
7041
|
}
|
|
7031
7042
|
| undefined
|
|
7043
|
+
dormakaba_community_metadata?:
|
|
7044
|
+
| {
|
|
7045
|
+
access_point_name: string
|
|
7046
|
+
}
|
|
7047
|
+
| undefined
|
|
7032
7048
|
}
|
|
7033
7049
|
}
|
|
7034
7050
|
}
|
|
@@ -7105,6 +7121,11 @@ export interface Routes {
|
|
|
7105
7121
|
privacy_mode: boolean
|
|
7106
7122
|
}
|
|
7107
7123
|
| undefined
|
|
7124
|
+
dormakaba_community_metadata?:
|
|
7125
|
+
| {
|
|
7126
|
+
access_point_name: string
|
|
7127
|
+
}
|
|
7128
|
+
| undefined
|
|
7108
7129
|
}>
|
|
7109
7130
|
}
|
|
7110
7131
|
}
|
|
@@ -7200,6 +7221,7 @@ export interface Routes {
|
|
|
7200
7221
|
| 'visionline_system'
|
|
7201
7222
|
| 'assa_abloy_credential_service'
|
|
7202
7223
|
| 'latch_building'
|
|
7224
|
+
| 'dormakaba_community'
|
|
7203
7225
|
)
|
|
7204
7226
|
| undefined
|
|
7205
7227
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
@@ -7228,6 +7250,7 @@ export interface Routes {
|
|
|
7228
7250
|
| 'visionline_system'
|
|
7229
7251
|
| 'assa_abloy_credential_service'
|
|
7230
7252
|
| 'latch_building'
|
|
7253
|
+
| 'dormakaba_community'
|
|
7231
7254
|
)
|
|
7232
7255
|
| undefined
|
|
7233
7256
|
/**
|
|
@@ -7335,6 +7358,7 @@ export interface Routes {
|
|
|
7335
7358
|
| 'visionline_system'
|
|
7336
7359
|
| 'assa_abloy_credential_service'
|
|
7337
7360
|
| 'latch_building'
|
|
7361
|
+
| 'dormakaba_community'
|
|
7338
7362
|
)
|
|
7339
7363
|
| undefined
|
|
7340
7364
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
@@ -7363,6 +7387,7 @@ export interface Routes {
|
|
|
7363
7387
|
| 'visionline_system'
|
|
7364
7388
|
| 'assa_abloy_credential_service'
|
|
7365
7389
|
| 'latch_building'
|
|
7390
|
+
| 'dormakaba_community'
|
|
7366
7391
|
)
|
|
7367
7392
|
| undefined
|
|
7368
7393
|
/**
|
|
@@ -7470,6 +7495,7 @@ export interface Routes {
|
|
|
7470
7495
|
| 'visionline_system'
|
|
7471
7496
|
| 'assa_abloy_credential_service'
|
|
7472
7497
|
| 'latch_building'
|
|
7498
|
+
| 'dormakaba_community'
|
|
7473
7499
|
)
|
|
7474
7500
|
| undefined
|
|
7475
7501
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
@@ -7498,6 +7524,7 @@ export interface Routes {
|
|
|
7498
7524
|
| 'visionline_system'
|
|
7499
7525
|
| 'assa_abloy_credential_service'
|
|
7500
7526
|
| 'latch_building'
|
|
7527
|
+
| 'dormakaba_community'
|
|
7501
7528
|
)
|
|
7502
7529
|
| undefined
|
|
7503
7530
|
/**
|
|
@@ -7643,6 +7670,7 @@ export interface Routes {
|
|
|
7643
7670
|
| 'hid_credential_manager_user'
|
|
7644
7671
|
| 'salto_site_user'
|
|
7645
7672
|
| 'latch_user'
|
|
7673
|
+
| 'dormakaba_community_user'
|
|
7646
7674
|
)
|
|
7647
7675
|
| undefined
|
|
7648
7676
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -7775,6 +7803,7 @@ export interface Routes {
|
|
|
7775
7803
|
| 'hid_credential_manager_user'
|
|
7776
7804
|
| 'salto_site_user'
|
|
7777
7805
|
| 'latch_user'
|
|
7806
|
+
| 'dormakaba_community_user'
|
|
7778
7807
|
)
|
|
7779
7808
|
| undefined
|
|
7780
7809
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -7903,6 +7932,7 @@ export interface Routes {
|
|
|
7903
7932
|
| 'hid_credential_manager_user'
|
|
7904
7933
|
| 'salto_site_user'
|
|
7905
7934
|
| 'latch_user'
|
|
7935
|
+
| 'dormakaba_community_user'
|
|
7906
7936
|
)
|
|
7907
7937
|
| undefined
|
|
7908
7938
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -8053,6 +8083,11 @@ export interface Routes {
|
|
|
8053
8083
|
privacy_mode: boolean
|
|
8054
8084
|
}
|
|
8055
8085
|
| undefined
|
|
8086
|
+
dormakaba_community_metadata?:
|
|
8087
|
+
| {
|
|
8088
|
+
access_point_name: string
|
|
8089
|
+
}
|
|
8090
|
+
| undefined
|
|
8056
8091
|
}>
|
|
8057
8092
|
}
|
|
8058
8093
|
}
|
|
@@ -8124,6 +8159,7 @@ export interface Routes {
|
|
|
8124
8159
|
| 'hid_credential_manager_user'
|
|
8125
8160
|
| 'salto_site_user'
|
|
8126
8161
|
| 'latch_user'
|
|
8162
|
+
| 'dormakaba_community_user'
|
|
8127
8163
|
)
|
|
8128
8164
|
| undefined
|
|
8129
8165
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -8247,6 +8283,7 @@ export interface Routes {
|
|
|
8247
8283
|
| 'hid_credential_manager_user'
|
|
8248
8284
|
| 'salto_site_user'
|
|
8249
8285
|
| 'latch_user'
|
|
8286
|
+
| 'dormakaba_community_user'
|
|
8250
8287
|
)
|
|
8251
8288
|
| undefined
|
|
8252
8289
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|
|
@@ -10064,6 +10101,7 @@ export interface Routes {
|
|
|
10064
10101
|
custom_redirect_failure_url?: string | undefined
|
|
10065
10102
|
accepted_providers?:
|
|
10066
10103
|
| Array<
|
|
10104
|
+
| 'dormakaba_community'
|
|
10067
10105
|
| 'akuvox'
|
|
10068
10106
|
| 'august'
|
|
10069
10107
|
| 'avigilon_alta'
|
|
@@ -11871,6 +11909,7 @@ export interface Routes {
|
|
|
11871
11909
|
jsonResponse: {
|
|
11872
11910
|
device_providers: Array<{
|
|
11873
11911
|
device_provider_name:
|
|
11912
|
+
| 'dormakaba_community'
|
|
11874
11913
|
| 'akuvox'
|
|
11875
11914
|
| 'august'
|
|
11876
11915
|
| 'avigilon_alta'
|
|
@@ -12531,6 +12570,7 @@ export interface Routes {
|
|
|
12531
12570
|
queryParams: {}
|
|
12532
12571
|
jsonBody: {}
|
|
12533
12572
|
commonParams: {
|
|
12573
|
+
unstable_offset?: number | undefined
|
|
12534
12574
|
since?: string | undefined
|
|
12535
12575
|
between?: Array<string | Date> | undefined
|
|
12536
12576
|
device_id?: string | undefined
|
|
@@ -29396,6 +29436,7 @@ export interface Routes {
|
|
|
29396
29436
|
| 'visionline_system'
|
|
29397
29437
|
| 'assa_abloy_credential_service'
|
|
29398
29438
|
| 'latch_building'
|
|
29439
|
+
| 'dormakaba_community'
|
|
29399
29440
|
)
|
|
29400
29441
|
| undefined
|
|
29401
29442
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
@@ -29424,6 +29465,7 @@ export interface Routes {
|
|
|
29424
29465
|
| 'visionline_system'
|
|
29425
29466
|
| 'assa_abloy_credential_service'
|
|
29426
29467
|
| 'latch_building'
|
|
29468
|
+
| 'dormakaba_community'
|
|
29427
29469
|
)
|
|
29428
29470
|
| undefined
|
|
29429
29471
|
/**
|
|
@@ -29534,6 +29576,7 @@ export interface Routes {
|
|
|
29534
29576
|
| 'hid_credential_manager_user'
|
|
29535
29577
|
| 'salto_site_user'
|
|
29536
29578
|
| 'latch_user'
|
|
29579
|
+
| 'dormakaba_community_user'
|
|
29537
29580
|
)
|
|
29538
29581
|
| undefined
|
|
29539
29582
|
/** Display name that corresponds to the brand-specific terminology for the `acs_user` type. */
|