@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
|
@@ -824,8 +824,8 @@ export interface Routes {
|
|
|
824
824
|
acs_user_id: string;
|
|
825
825
|
access_method: 'code' | 'card' | 'mobile_key';
|
|
826
826
|
code?: string | undefined;
|
|
827
|
-
is_multi_phone_sync_credential?: boolean
|
|
828
|
-
external_type?:
|
|
827
|
+
is_multi_phone_sync_credential?: boolean;
|
|
828
|
+
external_type?: 'visionline_card' | undefined;
|
|
829
829
|
visionline_metadata?: {
|
|
830
830
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
831
831
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
package/package.json
CHANGED
|
@@ -4073,16 +4073,11 @@ export default {
|
|
|
4073
4073
|
acs_user_id: { format: 'uuid', type: 'string' },
|
|
4074
4074
|
code: { pattern: '^\\d+$', type: 'string' },
|
|
4075
4075
|
ends_at: { format: 'date-time', type: 'string' },
|
|
4076
|
-
external_type: {
|
|
4077
|
-
|
|
4078
|
-
|
|
4079
|
-
|
|
4080
|
-
'hid_credential',
|
|
4081
|
-
'visionline_card',
|
|
4082
|
-
],
|
|
4083
|
-
type: 'string',
|
|
4076
|
+
external_type: { enum: ['visionline_card'], type: 'string' },
|
|
4077
|
+
is_multi_phone_sync_credential: {
|
|
4078
|
+
default: false,
|
|
4079
|
+
type: 'boolean',
|
|
4084
4080
|
},
|
|
4085
|
-
is_multi_phone_sync_credential: { type: 'boolean' },
|
|
4086
4081
|
starts_at: { format: 'date-time', type: 'string' },
|
|
4087
4082
|
visionline_metadata: {
|
|
4088
4083
|
properties: {
|
|
@@ -870,15 +870,8 @@ export interface Routes {
|
|
|
870
870
|
acs_user_id: string
|
|
871
871
|
access_method: 'code' | 'card' | 'mobile_key'
|
|
872
872
|
code?: string | undefined
|
|
873
|
-
is_multi_phone_sync_credential?: boolean
|
|
874
|
-
external_type?:
|
|
875
|
-
| (
|
|
876
|
-
| 'pti_card'
|
|
877
|
-
| 'brivo_credential'
|
|
878
|
-
| 'hid_credential'
|
|
879
|
-
| 'visionline_card'
|
|
880
|
-
)
|
|
881
|
-
| undefined
|
|
873
|
+
is_multi_phone_sync_credential?: boolean
|
|
874
|
+
external_type?: 'visionline_card' | undefined
|
|
882
875
|
visionline_metadata?:
|
|
883
876
|
| {
|
|
884
877
|
assa_abloy_credential_service_mobile_endpoint_id?:
|