@seamapi/types 1.145.0 → 1.146.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 +5 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +9 -0
- package/lib/seam/connect/openapi.d.ts +8 -0
- package/lib/seam/connect/openapi.js +5 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5 -0
- package/src/lib/seam/connect/route-types.ts +1 -0
|
@@ -854,6 +854,7 @@ export interface Routes {
|
|
|
854
854
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
855
855
|
code?: string | undefined;
|
|
856
856
|
is_multi_phone_sync_credential?: boolean;
|
|
857
|
+
allowed_acs_entrance_ids?: string[];
|
|
857
858
|
visionline_metadata?: {
|
|
858
859
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
859
860
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
package/package.json
CHANGED
|
@@ -4282,6 +4282,11 @@ export default {
|
|
|
4282
4282
|
type: 'string',
|
|
4283
4283
|
},
|
|
4284
4284
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4285
|
+
allowed_acs_entrance_ids: {
|
|
4286
|
+
default: [],
|
|
4287
|
+
items: { format: 'uuid', type: 'string' },
|
|
4288
|
+
type: 'array',
|
|
4289
|
+
},
|
|
4285
4290
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4286
4291
|
credential_manager_acs_system_id: {
|
|
4287
4292
|
format: 'uuid',
|
|
@@ -900,6 +900,7 @@ export interface Routes {
|
|
|
900
900
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
901
901
|
code?: string | undefined
|
|
902
902
|
is_multi_phone_sync_credential?: boolean
|
|
903
|
+
allowed_acs_entrance_ids?: string[]
|
|
903
904
|
visionline_metadata?:
|
|
904
905
|
| {
|
|
905
906
|
assa_abloy_credential_service_mobile_endpoint_id?:
|