@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.
@@ -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 | undefined;
828
- external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.106.0",
3
+ "version": "1.107.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -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
- enum: [
4078
- 'pti_card',
4079
- 'brivo_credential',
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 | undefined
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?: