@seamapi/types 1.106.0 → 1.107.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 +4 -9
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +3 -2
- package/lib/seam/connect/openapi.d.ts +1 -0
- package/lib/seam/connect/openapi.js +4 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -9
- package/src/lib/seam/connect/route-types.ts +2 -9
package/dist/connect.d.cts
CHANGED
|
@@ -5580,6 +5580,7 @@ declare const _default: {
|
|
|
5580
5580
|
type: string;
|
|
5581
5581
|
};
|
|
5582
5582
|
is_multi_phone_sync_credential: {
|
|
5583
|
+
default: boolean;
|
|
5583
5584
|
type: string;
|
|
5584
5585
|
};
|
|
5585
5586
|
starts_at: {
|
|
@@ -17287,8 +17288,8 @@ interface Routes {
|
|
|
17287
17288
|
acs_user_id: string;
|
|
17288
17289
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
17289
17290
|
code?: string | undefined;
|
|
17290
|
-
is_multi_phone_sync_credential?: boolean
|
|
17291
|
-
external_type?:
|
|
17291
|
+
is_multi_phone_sync_credential?: boolean;
|
|
17292
|
+
external_type?: 'visionline_card' | undefined;
|
|
17292
17293
|
visionline_metadata?: {
|
|
17293
17294
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
17294
17295
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
@@ -4004,16 +4004,11 @@ export default {
|
|
|
4004
4004
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4005
4005
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4006
4006
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4007
|
-
external_type: {
|
|
4008
|
-
|
|
4009
|
-
|
|
4010
|
-
|
|
4011
|
-
'hid_credential',
|
|
4012
|
-
'visionline_card',
|
|
4013
|
-
],
|
|
4014
|
-
type: 'string',
|
|
4007
|
+
external_type: { enum: ['visionline_card'], type: 'string' },
|
|
4008
|
+
is_multi_phone_sync_credential: {
|
|
4009
|
+
default: false,
|
|
4010
|
+
type: 'boolean',
|
|
4015
4011
|
},
|
|
4016
|
-
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
4017
4012
|
starts_at: { format: 'date-time', type: 'string' },
|
|
4018
4013
|
visionline_metadata: {
|
|
4019
4014
|
properties: {
|