@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
package/dist/connect.d.cts
CHANGED
|
@@ -5748,6 +5748,14 @@ declare const _default: {
|
|
|
5748
5748
|
format: string;
|
|
5749
5749
|
type: string;
|
|
5750
5750
|
};
|
|
5751
|
+
allowed_acs_entrance_ids: {
|
|
5752
|
+
default: never[];
|
|
5753
|
+
items: {
|
|
5754
|
+
format: string;
|
|
5755
|
+
type: string;
|
|
5756
|
+
};
|
|
5757
|
+
type: string;
|
|
5758
|
+
};
|
|
5751
5759
|
code: {
|
|
5752
5760
|
pattern: string;
|
|
5753
5761
|
type: string;
|
|
@@ -18177,6 +18185,7 @@ interface Routes {
|
|
|
18177
18185
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
18178
18186
|
code?: string | undefined;
|
|
18179
18187
|
is_multi_phone_sync_credential?: boolean;
|
|
18188
|
+
allowed_acs_entrance_ids?: string[];
|
|
18180
18189
|
visionline_metadata?: {
|
|
18181
18190
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
18182
18191
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
@@ -5674,6 +5674,14 @@ declare const _default: {
|
|
|
5674
5674
|
format: string;
|
|
5675
5675
|
type: string;
|
|
5676
5676
|
};
|
|
5677
|
+
allowed_acs_entrance_ids: {
|
|
5678
|
+
default: never[];
|
|
5679
|
+
items: {
|
|
5680
|
+
format: string;
|
|
5681
|
+
type: string;
|
|
5682
|
+
};
|
|
5683
|
+
type: string;
|
|
5684
|
+
};
|
|
5677
5685
|
code: {
|
|
5678
5686
|
pattern: string;
|
|
5679
5687
|
type: string;
|
|
@@ -4197,6 +4197,11 @@ export default {
|
|
|
4197
4197
|
type: 'string',
|
|
4198
4198
|
},
|
|
4199
4199
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4200
|
+
allowed_acs_entrance_ids: {
|
|
4201
|
+
default: [],
|
|
4202
|
+
items: { format: 'uuid', type: 'string' },
|
|
4203
|
+
type: 'array',
|
|
4204
|
+
},
|
|
4200
4205
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4201
4206
|
credential_manager_acs_system_id: {
|
|
4202
4207
|
format: 'uuid',
|