@seamapi/types 1.105.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.
@@ -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: {
@@ -6813,6 +6814,10 @@ declare const _default: {
6813
6814
  visionline_metadata: {
6814
6815
  nullable: boolean;
6815
6816
  properties: {
6817
+ door_category: {
6818
+ enum: string[];
6819
+ type: string;
6820
+ };
6816
6821
  door_name: {
6817
6822
  type: string;
6818
6823
  };
@@ -7008,6 +7013,10 @@ declare const _default: {
7008
7013
  visionline_metadata: {
7009
7014
  nullable: boolean;
7010
7015
  properties: {
7016
+ door_category: {
7017
+ enum: string[];
7018
+ type: string;
7019
+ };
7011
7020
  door_name: {
7012
7021
  type: string;
7013
7022
  };
@@ -7859,6 +7868,10 @@ declare const _default: {
7859
7868
  visionline_metadata: {
7860
7869
  nullable: boolean;
7861
7870
  properties: {
7871
+ door_category: {
7872
+ enum: string[];
7873
+ type: string;
7874
+ };
7862
7875
  door_name: {
7863
7876
  type: string;
7864
7877
  };
@@ -17275,8 +17288,8 @@ interface Routes {
17275
17288
  acs_user_id: string;
17276
17289
  access_method: 'code' | 'card' | 'mobile_key';
17277
17290
  code?: string | undefined;
17278
- is_multi_phone_sync_credential?: boolean | undefined;
17279
- external_type?: ('pti_card' | 'brivo_credential' | 'hid_credential' | 'visionline_card') | undefined;
17291
+ is_multi_phone_sync_credential?: boolean;
17292
+ external_type?: 'visionline_card' | undefined;
17280
17293
  visionline_metadata?: {
17281
17294
  assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
17282
17295
  card_format?: ('TLCode' | 'rfid48') | undefined;
@@ -17485,6 +17498,7 @@ interface Routes {
17485
17498
  created_at: string;
17486
17499
  visionline_metadata: {
17487
17500
  door_name: string;
17501
+ door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
17488
17502
  profiles?: Array<{
17489
17503
  visionline_door_profile_id: string;
17490
17504
  visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
@@ -17523,6 +17537,7 @@ interface Routes {
17523
17537
  created_at: string;
17524
17538
  visionline_metadata: {
17525
17539
  door_name: string;
17540
+ door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
17526
17541
  profiles?: Array<{
17527
17542
  visionline_door_profile_id: string;
17528
17543
  visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
@@ -17775,6 +17790,7 @@ interface Routes {
17775
17790
  created_at: string;
17776
17791
  visionline_metadata: {
17777
17792
  door_name: string;
17793
+ door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
17778
17794
  profiles?: Array<{
17779
17795
  visionline_door_profile_id: string;
17780
17796
  visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
@@ -5506,6 +5506,7 @@ declare const _default: {
5506
5506
  type: string;
5507
5507
  };
5508
5508
  is_multi_phone_sync_credential: {
5509
+ default: boolean;
5509
5510
  type: string;
5510
5511
  };
5511
5512
  starts_at: {
@@ -6739,6 +6740,10 @@ declare const _default: {
6739
6740
  visionline_metadata: {
6740
6741
  nullable: boolean;
6741
6742
  properties: {
6743
+ door_category: {
6744
+ enum: string[];
6745
+ type: string;
6746
+ };
6742
6747
  door_name: {
6743
6748
  type: string;
6744
6749
  };
@@ -6934,6 +6939,10 @@ declare const _default: {
6934
6939
  visionline_metadata: {
6935
6940
  nullable: boolean;
6936
6941
  properties: {
6942
+ door_category: {
6943
+ enum: string[];
6944
+ type: string;
6945
+ };
6937
6946
  door_name: {
6938
6947
  type: string;
6939
6948
  };
@@ -7785,6 +7794,10 @@ declare const _default: {
7785
7794
  visionline_metadata: {
7786
7795
  nullable: boolean;
7787
7796
  properties: {
7797
+ door_category: {
7798
+ enum: string[];
7799
+ type: string;
7800
+ };
7788
7801
  door_name: {
7789
7802
  type: string;
7790
7803
  };
@@ -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
- enum: [
4009
- 'pti_card',
4010
- 'brivo_credential',
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: {
@@ -4875,6 +4870,16 @@ export default {
4875
4870
  visionline_metadata: {
4876
4871
  nullable: true,
4877
4872
  properties: {
4873
+ door_category: {
4874
+ enum: [
4875
+ 'entrance',
4876
+ 'guest',
4877
+ 'elevator reader',
4878
+ 'common',
4879
+ 'common (PMS)',
4880
+ ],
4881
+ type: 'string',
4882
+ },
4878
4883
  door_name: { type: 'string' },
4879
4884
  profiles: {
4880
4885
  items: {
@@ -4896,7 +4901,7 @@ export default {
4896
4901
  type: 'array',
4897
4902
  },
4898
4903
  },
4899
- required: ['door_name'],
4904
+ required: ['door_name', 'door_category'],
4900
4905
  type: 'object',
4901
4906
  },
4902
4907
  },
@@ -5010,6 +5015,16 @@ export default {
5010
5015
  visionline_metadata: {
5011
5016
  nullable: true,
5012
5017
  properties: {
5018
+ door_category: {
5019
+ enum: [
5020
+ 'entrance',
5021
+ 'guest',
5022
+ 'elevator reader',
5023
+ 'common',
5024
+ 'common (PMS)',
5025
+ ],
5026
+ type: 'string',
5027
+ },
5013
5028
  door_name: { type: 'string' },
5014
5029
  profiles: {
5015
5030
  items: {
@@ -5031,7 +5046,7 @@ export default {
5031
5046
  type: 'array',
5032
5047
  },
5033
5048
  },
5034
- required: ['door_name'],
5049
+ required: ['door_name', 'door_category'],
5035
5050
  type: 'object',
5036
5051
  },
5037
5052
  },
@@ -5584,6 +5599,16 @@ export default {
5584
5599
  visionline_metadata: {
5585
5600
  nullable: true,
5586
5601
  properties: {
5602
+ door_category: {
5603
+ enum: [
5604
+ 'entrance',
5605
+ 'guest',
5606
+ 'elevator reader',
5607
+ 'common',
5608
+ 'common (PMS)',
5609
+ ],
5610
+ type: 'string',
5611
+ },
5587
5612
  door_name: { type: 'string' },
5588
5613
  profiles: {
5589
5614
  items: {
@@ -5605,7 +5630,7 @@ export default {
5605
5630
  type: 'array',
5606
5631
  },
5607
5632
  },
5608
- required: ['door_name'],
5633
+ required: ['door_name', 'door_category'],
5609
5634
  type: 'object',
5610
5635
  },
5611
5636
  },