@seamapi/types 1.264.1 → 1.265.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.
Files changed (27) hide show
  1. package/dist/connect.cjs +35 -15
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +150 -60
  4. package/lib/seam/connect/models/acs/acs-credential.d.ts +13 -8
  5. package/lib/seam/connect/models/acs/acs-credential.js +4 -3
  6. package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
  7. package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
  8. package/lib/seam/connect/models/acs/acs-system.js +3 -0
  9. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +25 -16
  11. package/lib/seam/connect/models/action-attempts/scan-card.d.ts +25 -16
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +4 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device.d.ts +7 -0
  16. package/lib/seam/connect/models/devices/phone.d.ts +5 -0
  17. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
  18. package/lib/seam/connect/openapi.d.ts +28 -4
  19. package/lib/seam/connect/openapi.js +21 -5
  20. package/lib/seam/connect/openapi.js.map +1 -1
  21. package/lib/seam/connect/route-types.d.ts +82 -40
  22. package/package.json +1 -1
  23. package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -3
  24. package/src/lib/seam/connect/models/acs/acs-system.ts +3 -0
  25. package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
  26. package/src/lib/seam/connect/openapi.ts +25 -5
  27. package/src/lib/seam/connect/route-types.ts +82 -40
@@ -90,7 +90,7 @@ export interface Routes {
90
90
  /** Snapshot of the card data read from the physical encoder. */
91
91
  acs_credential_on_encoder: {
92
92
  /** Date and time the credential was created. */
93
- created_at: string;
93
+ created_at: string | null;
94
94
  is_issued: boolean | null;
95
95
  /** Date and time the credential will become useable. */
96
96
  starts_at: string | null;
@@ -100,7 +100,6 @@ export interface Routes {
100
100
  card_number: string | null;
101
101
  visionline_metadata?: {
102
102
  card_id: string;
103
- card_function_type: 'guest' | 'staff';
104
103
  cancelled: boolean;
105
104
  discarded: boolean;
106
105
  expired: boolean;
@@ -110,6 +109,8 @@ export interface Routes {
110
109
  card_format: 'TLCode' | 'rfid48';
111
110
  card_holder?: string | undefined;
112
111
  number_of_issued_cards: number;
112
+ guest_acs_entrance_ids?: string[] | undefined;
113
+ common_acs_entrance_ids?: string[] | undefined;
113
114
  } | undefined;
114
115
  };
115
116
  /** Matching acs_credential currently encoded on this card. */
@@ -802,7 +803,7 @@ export interface Routes {
802
803
  /** Snapshot of the card data read from the physical encoder. */
803
804
  acs_credential_on_encoder: {
804
805
  /** Date and time the credential was created. */
805
- created_at: string;
806
+ created_at: string | null;
806
807
  is_issued: boolean | null;
807
808
  /** Date and time the credential will become useable. */
808
809
  starts_at: string | null;
@@ -812,7 +813,6 @@ export interface Routes {
812
813
  card_number: string | null;
813
814
  visionline_metadata?: {
814
815
  card_id: string;
815
- card_function_type: 'guest' | 'staff';
816
816
  cancelled: boolean;
817
817
  discarded: boolean;
818
818
  expired: boolean;
@@ -822,6 +822,8 @@ export interface Routes {
822
822
  card_format: 'TLCode' | 'rfid48';
823
823
  card_holder?: string | undefined;
824
824
  number_of_issued_cards: number;
825
+ guest_acs_entrance_ids?: string[] | undefined;
826
+ common_acs_entrance_ids?: string[] | undefined;
825
827
  } | undefined;
826
828
  };
827
829
  /** Matching acs_credential currently encoded on this card. */
@@ -1671,7 +1673,7 @@ export interface Routes {
1671
1673
  /** Snapshot of the card data read from the physical encoder. */
1672
1674
  acs_credential_on_encoder: {
1673
1675
  /** Date and time the credential was created. */
1674
- created_at: string;
1676
+ created_at: string | null;
1675
1677
  is_issued: boolean | null;
1676
1678
  /** Date and time the credential will become useable. */
1677
1679
  starts_at: string | null;
@@ -1681,7 +1683,6 @@ export interface Routes {
1681
1683
  card_number: string | null;
1682
1684
  visionline_metadata?: {
1683
1685
  card_id: string;
1684
- card_function_type: 'guest' | 'staff';
1685
1686
  cancelled: boolean;
1686
1687
  discarded: boolean;
1687
1688
  expired: boolean;
@@ -1691,6 +1692,8 @@ export interface Routes {
1691
1692
  card_format: 'TLCode' | 'rfid48';
1692
1693
  card_holder?: string | undefined;
1693
1694
  number_of_issued_cards: number;
1695
+ guest_acs_entrance_ids?: string[] | undefined;
1696
+ common_acs_entrance_ids?: string[] | undefined;
1694
1697
  } | undefined;
1695
1698
  };
1696
1699
  /** Matching acs_credential currently encoded on this card. */
@@ -2370,7 +2373,7 @@ export interface Routes {
2370
2373
  /** Snapshot of the card data read from the physical encoder. */
2371
2374
  acs_credential_on_encoder: {
2372
2375
  /** Date and time the credential was created. */
2373
- created_at: string;
2376
+ created_at: string | null;
2374
2377
  is_issued: boolean | null;
2375
2378
  /** Date and time the credential will become useable. */
2376
2379
  starts_at: string | null;
@@ -2380,7 +2383,6 @@ export interface Routes {
2380
2383
  card_number: string | null;
2381
2384
  visionline_metadata?: {
2382
2385
  card_id: string;
2383
- card_function_type: 'guest' | 'staff';
2384
2386
  cancelled: boolean;
2385
2387
  discarded: boolean;
2386
2388
  expired: boolean;
@@ -2390,6 +2392,8 @@ export interface Routes {
2390
2392
  card_format: 'TLCode' | 'rfid48';
2391
2393
  card_holder?: string | undefined;
2392
2394
  number_of_issued_cards: number;
2395
+ guest_acs_entrance_ids?: string[] | undefined;
2396
+ common_acs_entrance_ids?: string[] | undefined;
2393
2397
  } | undefined;
2394
2398
  };
2395
2399
  /** Matching acs_credential currently encoded on this card. */
@@ -3813,7 +3817,7 @@ export interface Routes {
3813
3817
  /** Snapshot of the card data read from the physical encoder. */
3814
3818
  acs_credential_on_encoder: {
3815
3819
  /** Date and time the credential was created. */
3816
- created_at: string;
3820
+ created_at: string | null;
3817
3821
  is_issued: boolean | null;
3818
3822
  /** Date and time the credential will become useable. */
3819
3823
  starts_at: string | null;
@@ -3823,7 +3827,6 @@ export interface Routes {
3823
3827
  card_number: string | null;
3824
3828
  visionline_metadata?: {
3825
3829
  card_id: string;
3826
- card_function_type: 'guest' | 'staff';
3827
3830
  cancelled: boolean;
3828
3831
  discarded: boolean;
3829
3832
  expired: boolean;
@@ -3833,6 +3836,8 @@ export interface Routes {
3833
3836
  card_format: 'TLCode' | 'rfid48';
3834
3837
  card_holder?: string | undefined;
3835
3838
  number_of_issued_cards: number;
3839
+ guest_acs_entrance_ids?: string[] | undefined;
3840
+ common_acs_entrance_ids?: string[] | undefined;
3836
3841
  } | undefined;
3837
3842
  };
3838
3843
  /** Matching acs_credential currently encoded on this card. */
@@ -4613,6 +4618,7 @@ export interface Routes {
4613
4618
  akiles_metadata?: {
4614
4619
  gadget_name: string;
4615
4620
  gadget_id: string;
4621
+ _member_group_id?: string | undefined;
4616
4622
  } | undefined;
4617
4623
  }) & ({
4618
4624
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -4837,7 +4843,7 @@ export interface Routes {
4837
4843
  /** Snapshot of the card data read from the physical encoder. */
4838
4844
  acs_credential_on_encoder: {
4839
4845
  /** Date and time the credential was created. */
4840
- created_at: string;
4846
+ created_at: string | null;
4841
4847
  is_issued: boolean | null;
4842
4848
  /** Date and time the credential will become useable. */
4843
4849
  starts_at: string | null;
@@ -4847,7 +4853,6 @@ export interface Routes {
4847
4853
  card_number: string | null;
4848
4854
  visionline_metadata?: {
4849
4855
  card_id: string;
4850
- card_function_type: 'guest' | 'staff';
4851
4856
  cancelled: boolean;
4852
4857
  discarded: boolean;
4853
4858
  expired: boolean;
@@ -4857,6 +4862,8 @@ export interface Routes {
4857
4862
  card_format: 'TLCode' | 'rfid48';
4858
4863
  card_holder?: string | undefined;
4859
4864
  number_of_issued_cards: number;
4865
+ guest_acs_entrance_ids?: string[] | undefined;
4866
+ common_acs_entrance_ids?: string[] | undefined;
4860
4867
  } | undefined;
4861
4868
  };
4862
4869
  /** Matching acs_credential currently encoded on this card. */
@@ -5509,6 +5516,8 @@ export interface Routes {
5509
5516
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
5510
5517
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
5511
5518
  external_type_display_name?: string | undefined;
5519
+ /** Indicates if the `acs_system` is a credential manager. */
5520
+ is_credential_manager: boolean;
5512
5521
  visionline_metadata?: {
5513
5522
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
5514
5523
  mobile_access_uuid: string;
@@ -5610,6 +5619,8 @@ export interface Routes {
5610
5619
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
5611
5620
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
5612
5621
  external_type_display_name?: string | undefined;
5622
+ /** Indicates if the `acs_system` is a credential manager. */
5623
+ is_credential_manager: boolean;
5613
5624
  visionline_metadata?: {
5614
5625
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
5615
5626
  mobile_access_uuid: string;
@@ -5711,6 +5722,8 @@ export interface Routes {
5711
5722
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
5712
5723
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
5713
5724
  external_type_display_name?: string | undefined;
5725
+ /** Indicates if the `acs_system` is a credential manager. */
5726
+ is_credential_manager: boolean;
5714
5727
  visionline_metadata?: {
5715
5728
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
5716
5729
  mobile_access_uuid: string;
@@ -6556,7 +6569,7 @@ export interface Routes {
6556
6569
  /** Snapshot of the card data read from the physical encoder. */
6557
6570
  acs_credential_on_encoder: {
6558
6571
  /** Date and time the credential was created. */
6559
- created_at: string;
6572
+ created_at: string | null;
6560
6573
  is_issued: boolean | null;
6561
6574
  /** Date and time the credential will become useable. */
6562
6575
  starts_at: string | null;
@@ -6566,7 +6579,6 @@ export interface Routes {
6566
6579
  card_number: string | null;
6567
6580
  visionline_metadata?: {
6568
6581
  card_id: string;
6569
- card_function_type: 'guest' | 'staff';
6570
6582
  cancelled: boolean;
6571
6583
  discarded: boolean;
6572
6584
  expired: boolean;
@@ -6576,6 +6588,8 @@ export interface Routes {
6576
6588
  card_format: 'TLCode' | 'rfid48';
6577
6589
  card_holder?: string | undefined;
6578
6590
  number_of_issued_cards: number;
6591
+ guest_acs_entrance_ids?: string[] | undefined;
6592
+ common_acs_entrance_ids?: string[] | undefined;
6579
6593
  } | undefined;
6580
6594
  };
6581
6595
  /** Matching acs_credential currently encoded on this card. */
@@ -7117,7 +7131,7 @@ export interface Routes {
7117
7131
  /** Snapshot of the card data read from the physical encoder. */
7118
7132
  acs_credential_on_encoder: {
7119
7133
  /** Date and time the credential was created. */
7120
- created_at: string;
7134
+ created_at: string | null;
7121
7135
  is_issued: boolean | null;
7122
7136
  /** Date and time the credential will become useable. */
7123
7137
  starts_at: string | null;
@@ -7127,7 +7141,6 @@ export interface Routes {
7127
7141
  card_number: string | null;
7128
7142
  visionline_metadata?: {
7129
7143
  card_id: string;
7130
- card_function_type: 'guest' | 'staff';
7131
7144
  cancelled: boolean;
7132
7145
  discarded: boolean;
7133
7146
  expired: boolean;
@@ -7137,6 +7150,8 @@ export interface Routes {
7137
7150
  card_format: 'TLCode' | 'rfid48';
7138
7151
  card_holder?: string | undefined;
7139
7152
  number_of_issued_cards: number;
7153
+ guest_acs_entrance_ids?: string[] | undefined;
7154
+ common_acs_entrance_ids?: string[] | undefined;
7140
7155
  } | undefined;
7141
7156
  };
7142
7157
  /** Matching acs_credential currently encoded on this card. */
@@ -8335,6 +8350,7 @@ export interface Routes {
8335
8350
  akiles_metadata?: {
8336
8351
  gadget_name: string;
8337
8352
  gadget_id: string;
8353
+ _member_group_id?: string | undefined;
8338
8354
  } | undefined;
8339
8355
  }) & ({
8340
8356
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -8799,6 +8815,7 @@ export interface Routes {
8799
8815
  akiles_metadata?: {
8800
8816
  gadget_name: string;
8801
8817
  gadget_id: string;
8818
+ _member_group_id?: string | undefined;
8802
8819
  } | undefined;
8803
8820
  }) & ({
8804
8821
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -9661,6 +9678,7 @@ export interface Routes {
9661
9678
  akiles_metadata?: {
9662
9679
  gadget_name: string;
9663
9680
  gadget_id: string;
9681
+ _member_group_id?: string | undefined;
9664
9682
  } | undefined;
9665
9683
  }) & ({
9666
9684
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -10100,6 +10118,7 @@ export interface Routes {
10100
10118
  akiles_metadata?: {
10101
10119
  gadget_name: string;
10102
10120
  gadget_id: string;
10121
+ _member_group_id?: string | undefined;
10103
10122
  } | undefined;
10104
10123
  }) & ({
10105
10124
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -10564,6 +10583,7 @@ export interface Routes {
10564
10583
  akiles_metadata?: {
10565
10584
  gadget_name: string;
10566
10585
  gadget_id: string;
10586
+ _member_group_id?: string | undefined;
10567
10587
  } | undefined;
10568
10588
  }) & ({
10569
10589
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -11003,6 +11023,7 @@ export interface Routes {
11003
11023
  akiles_metadata?: {
11004
11024
  gadget_name: string;
11005
11025
  gadget_id: string;
11026
+ _member_group_id?: string | undefined;
11006
11027
  } | undefined;
11007
11028
  }) & ({
11008
11029
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -11224,7 +11245,7 @@ export interface Routes {
11224
11245
  /** Snapshot of the card data read from the physical encoder. */
11225
11246
  acs_credential_on_encoder: {
11226
11247
  /** Date and time the credential was created. */
11227
- created_at: string;
11248
+ created_at: string | null;
11228
11249
  is_issued: boolean | null;
11229
11250
  /** Date and time the credential will become useable. */
11230
11251
  starts_at: string | null;
@@ -11234,7 +11255,6 @@ export interface Routes {
11234
11255
  card_number: string | null;
11235
11256
  visionline_metadata?: {
11236
11257
  card_id: string;
11237
- card_function_type: 'guest' | 'staff';
11238
11258
  cancelled: boolean;
11239
11259
  discarded: boolean;
11240
11260
  expired: boolean;
@@ -11244,6 +11264,8 @@ export interface Routes {
11244
11264
  card_format: 'TLCode' | 'rfid48';
11245
11265
  card_holder?: string | undefined;
11246
11266
  number_of_issued_cards: number;
11267
+ guest_acs_entrance_ids?: string[] | undefined;
11268
+ common_acs_entrance_ids?: string[] | undefined;
11247
11269
  } | undefined;
11248
11270
  };
11249
11271
  /** Matching acs_credential currently encoded on this card. */
@@ -11786,7 +11808,7 @@ export interface Routes {
11786
11808
  /** Snapshot of the card data read from the physical encoder. */
11787
11809
  acs_credential_on_encoder: {
11788
11810
  /** Date and time the credential was created. */
11789
- created_at: string;
11811
+ created_at: string | null;
11790
11812
  is_issued: boolean | null;
11791
11813
  /** Date and time the credential will become useable. */
11792
11814
  starts_at: string | null;
@@ -11796,7 +11818,6 @@ export interface Routes {
11796
11818
  card_number: string | null;
11797
11819
  visionline_metadata?: {
11798
11820
  card_id: string;
11799
- card_function_type: 'guest' | 'staff';
11800
11821
  cancelled: boolean;
11801
11822
  discarded: boolean;
11802
11823
  expired: boolean;
@@ -11806,6 +11827,8 @@ export interface Routes {
11806
11827
  card_format: 'TLCode' | 'rfid48';
11807
11828
  card_holder?: string | undefined;
11808
11829
  number_of_issued_cards: number;
11830
+ guest_acs_entrance_ids?: string[] | undefined;
11831
+ common_acs_entrance_ids?: string[] | undefined;
11809
11832
  } | undefined;
11810
11833
  };
11811
11834
  /** Matching acs_credential currently encoded on this card. */
@@ -12625,6 +12648,7 @@ export interface Routes {
12625
12648
  akiles_metadata?: {
12626
12649
  gadget_name: string;
12627
12650
  gadget_id: string;
12651
+ _member_group_id?: string | undefined;
12628
12652
  } | undefined;
12629
12653
  }) & ({
12630
12654
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -13064,6 +13088,7 @@ export interface Routes {
13064
13088
  akiles_metadata?: {
13065
13089
  gadget_name: string;
13066
13090
  gadget_id: string;
13091
+ _member_group_id?: string | undefined;
13067
13092
  } | undefined;
13068
13093
  }) & ({
13069
13094
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -13290,7 +13315,7 @@ export interface Routes {
13290
13315
  /** Snapshot of the card data read from the physical encoder. */
13291
13316
  acs_credential_on_encoder: {
13292
13317
  /** Date and time the credential was created. */
13293
- created_at: string;
13318
+ created_at: string | null;
13294
13319
  is_issued: boolean | null;
13295
13320
  /** Date and time the credential will become useable. */
13296
13321
  starts_at: string | null;
@@ -13300,7 +13325,6 @@ export interface Routes {
13300
13325
  card_number: string | null;
13301
13326
  visionline_metadata?: {
13302
13327
  card_id: string;
13303
- card_function_type: 'guest' | 'staff';
13304
13328
  cancelled: boolean;
13305
13329
  discarded: boolean;
13306
13330
  expired: boolean;
@@ -13310,6 +13334,8 @@ export interface Routes {
13310
13334
  card_format: 'TLCode' | 'rfid48';
13311
13335
  card_holder?: string | undefined;
13312
13336
  number_of_issued_cards: number;
13337
+ guest_acs_entrance_ids?: string[] | undefined;
13338
+ common_acs_entrance_ids?: string[] | undefined;
13313
13339
  } | undefined;
13314
13340
  };
13315
13341
  /** Matching acs_credential currently encoded on this card. */
@@ -13862,7 +13888,7 @@ export interface Routes {
13862
13888
  /** Snapshot of the card data read from the physical encoder. */
13863
13889
  acs_credential_on_encoder: {
13864
13890
  /** Date and time the credential was created. */
13865
- created_at: string;
13891
+ created_at: string | null;
13866
13892
  is_issued: boolean | null;
13867
13893
  /** Date and time the credential will become useable. */
13868
13894
  starts_at: string | null;
@@ -13872,7 +13898,6 @@ export interface Routes {
13872
13898
  card_number: string | null;
13873
13899
  visionline_metadata?: {
13874
13900
  card_id: string;
13875
- card_function_type: 'guest' | 'staff';
13876
13901
  cancelled: boolean;
13877
13902
  discarded: boolean;
13878
13903
  expired: boolean;
@@ -13882,6 +13907,8 @@ export interface Routes {
13882
13907
  card_format: 'TLCode' | 'rfid48';
13883
13908
  card_holder?: string | undefined;
13884
13909
  number_of_issued_cards: number;
13910
+ guest_acs_entrance_ids?: string[] | undefined;
13911
+ common_acs_entrance_ids?: string[] | undefined;
13885
13912
  } | undefined;
13886
13913
  };
13887
13914
  /** Matching acs_credential currently encoded on this card. */
@@ -14473,7 +14500,7 @@ export interface Routes {
14473
14500
  /** Snapshot of the card data read from the physical encoder. */
14474
14501
  acs_credential_on_encoder: {
14475
14502
  /** Date and time the credential was created. */
14476
- created_at: string;
14503
+ created_at: string | null;
14477
14504
  is_issued: boolean | null;
14478
14505
  /** Date and time the credential will become useable. */
14479
14506
  starts_at: string | null;
@@ -14483,7 +14510,6 @@ export interface Routes {
14483
14510
  card_number: string | null;
14484
14511
  visionline_metadata?: {
14485
14512
  card_id: string;
14486
- card_function_type: 'guest' | 'staff';
14487
14513
  cancelled: boolean;
14488
14514
  discarded: boolean;
14489
14515
  expired: boolean;
@@ -14493,6 +14519,8 @@ export interface Routes {
14493
14519
  card_format: 'TLCode' | 'rfid48';
14494
14520
  card_holder?: string | undefined;
14495
14521
  number_of_issued_cards: number;
14522
+ guest_acs_entrance_ids?: string[] | undefined;
14523
+ common_acs_entrance_ids?: string[] | undefined;
14496
14524
  } | undefined;
14497
14525
  };
14498
14526
  /** Matching acs_credential currently encoded on this card. */
@@ -15217,7 +15245,7 @@ export interface Routes {
15217
15245
  /** Snapshot of the card data read from the physical encoder. */
15218
15246
  acs_credential_on_encoder: {
15219
15247
  /** Date and time the credential was created. */
15220
- created_at: string;
15248
+ created_at: string | null;
15221
15249
  is_issued: boolean | null;
15222
15250
  /** Date and time the credential will become useable. */
15223
15251
  starts_at: string | null;
@@ -15227,7 +15255,6 @@ export interface Routes {
15227
15255
  card_number: string | null;
15228
15256
  visionline_metadata?: {
15229
15257
  card_id: string;
15230
- card_function_type: 'guest' | 'staff';
15231
15258
  cancelled: boolean;
15232
15259
  discarded: boolean;
15233
15260
  expired: boolean;
@@ -15237,6 +15264,8 @@ export interface Routes {
15237
15264
  card_format: 'TLCode' | 'rfid48';
15238
15265
  card_holder?: string | undefined;
15239
15266
  number_of_issued_cards: number;
15267
+ guest_acs_entrance_ids?: string[] | undefined;
15268
+ common_acs_entrance_ids?: string[] | undefined;
15240
15269
  } | undefined;
15241
15270
  };
15242
15271
  /** Matching acs_credential currently encoded on this card. */
@@ -15781,7 +15810,7 @@ export interface Routes {
15781
15810
  /** Snapshot of the card data read from the physical encoder. */
15782
15811
  acs_credential_on_encoder: {
15783
15812
  /** Date and time the credential was created. */
15784
- created_at: string;
15813
+ created_at: string | null;
15785
15814
  is_issued: boolean | null;
15786
15815
  /** Date and time the credential will become useable. */
15787
15816
  starts_at: string | null;
@@ -15791,7 +15820,6 @@ export interface Routes {
15791
15820
  card_number: string | null;
15792
15821
  visionline_metadata?: {
15793
15822
  card_id: string;
15794
- card_function_type: 'guest' | 'staff';
15795
15823
  cancelled: boolean;
15796
15824
  discarded: boolean;
15797
15825
  expired: boolean;
@@ -15801,6 +15829,8 @@ export interface Routes {
15801
15829
  card_format: 'TLCode' | 'rfid48';
15802
15830
  card_holder?: string | undefined;
15803
15831
  number_of_issued_cards: number;
15832
+ guest_acs_entrance_ids?: string[] | undefined;
15833
+ common_acs_entrance_ids?: string[] | undefined;
15804
15834
  } | undefined;
15805
15835
  };
15806
15836
  /** Matching acs_credential currently encoded on this card. */
@@ -16606,6 +16636,7 @@ export interface Routes {
16606
16636
  akiles_metadata?: {
16607
16637
  gadget_name: string;
16608
16638
  gadget_id: string;
16639
+ _member_group_id?: string | undefined;
16609
16640
  } | undefined;
16610
16641
  }) & ({
16611
16642
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -16829,7 +16860,7 @@ export interface Routes {
16829
16860
  /** Snapshot of the card data read from the physical encoder. */
16830
16861
  acs_credential_on_encoder: {
16831
16862
  /** Date and time the credential was created. */
16832
- created_at: string;
16863
+ created_at: string | null;
16833
16864
  is_issued: boolean | null;
16834
16865
  /** Date and time the credential will become useable. */
16835
16866
  starts_at: string | null;
@@ -16839,7 +16870,6 @@ export interface Routes {
16839
16870
  card_number: string | null;
16840
16871
  visionline_metadata?: {
16841
16872
  card_id: string;
16842
- card_function_type: 'guest' | 'staff';
16843
16873
  cancelled: boolean;
16844
16874
  discarded: boolean;
16845
16875
  expired: boolean;
@@ -16849,6 +16879,8 @@ export interface Routes {
16849
16879
  card_format: 'TLCode' | 'rfid48';
16850
16880
  card_holder?: string | undefined;
16851
16881
  number_of_issued_cards: number;
16882
+ guest_acs_entrance_ids?: string[] | undefined;
16883
+ common_acs_entrance_ids?: string[] | undefined;
16852
16884
  } | undefined;
16853
16885
  };
16854
16886
  /** Matching acs_credential currently encoded on this card. */
@@ -17395,7 +17427,7 @@ export interface Routes {
17395
17427
  /** Snapshot of the card data read from the physical encoder. */
17396
17428
  acs_credential_on_encoder: {
17397
17429
  /** Date and time the credential was created. */
17398
- created_at: string;
17430
+ created_at: string | null;
17399
17431
  is_issued: boolean | null;
17400
17432
  /** Date and time the credential will become useable. */
17401
17433
  starts_at: string | null;
@@ -17405,7 +17437,6 @@ export interface Routes {
17405
17437
  card_number: string | null;
17406
17438
  visionline_metadata?: {
17407
17439
  card_id: string;
17408
- card_function_type: 'guest' | 'staff';
17409
17440
  cancelled: boolean;
17410
17441
  discarded: boolean;
17411
17442
  expired: boolean;
@@ -17415,6 +17446,8 @@ export interface Routes {
17415
17446
  card_format: 'TLCode' | 'rfid48';
17416
17447
  card_holder?: string | undefined;
17417
17448
  number_of_issued_cards: number;
17449
+ guest_acs_entrance_ids?: string[] | undefined;
17450
+ common_acs_entrance_ids?: string[] | undefined;
17418
17451
  } | undefined;
17419
17452
  };
17420
17453
  /** Matching acs_credential currently encoded on this card. */
@@ -18200,6 +18233,7 @@ export interface Routes {
18200
18233
  akiles_metadata?: {
18201
18234
  gadget_name: string;
18202
18235
  gadget_id: string;
18236
+ _member_group_id?: string | undefined;
18203
18237
  } | undefined;
18204
18238
  }) & ({
18205
18239
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -18639,6 +18673,7 @@ export interface Routes {
18639
18673
  akiles_metadata?: {
18640
18674
  gadget_name: string;
18641
18675
  gadget_id: string;
18676
+ _member_group_id?: string | undefined;
18642
18677
  } | undefined;
18643
18678
  }) & ({
18644
18679
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -18860,7 +18895,7 @@ export interface Routes {
18860
18895
  /** Snapshot of the card data read from the physical encoder. */
18861
18896
  acs_credential_on_encoder: {
18862
18897
  /** Date and time the credential was created. */
18863
- created_at: string;
18898
+ created_at: string | null;
18864
18899
  is_issued: boolean | null;
18865
18900
  /** Date and time the credential will become useable. */
18866
18901
  starts_at: string | null;
@@ -18870,7 +18905,6 @@ export interface Routes {
18870
18905
  card_number: string | null;
18871
18906
  visionline_metadata?: {
18872
18907
  card_id: string;
18873
- card_function_type: 'guest' | 'staff';
18874
18908
  cancelled: boolean;
18875
18909
  discarded: boolean;
18876
18910
  expired: boolean;
@@ -18880,6 +18914,8 @@ export interface Routes {
18880
18914
  card_format: 'TLCode' | 'rfid48';
18881
18915
  card_holder?: string | undefined;
18882
18916
  number_of_issued_cards: number;
18917
+ guest_acs_entrance_ids?: string[] | undefined;
18918
+ common_acs_entrance_ids?: string[] | undefined;
18883
18919
  } | undefined;
18884
18920
  };
18885
18921
  /** Matching acs_credential currently encoded on this card. */
@@ -19543,7 +19579,7 @@ export interface Routes {
19543
19579
  /** Snapshot of the card data read from the physical encoder. */
19544
19580
  acs_credential_on_encoder: {
19545
19581
  /** Date and time the credential was created. */
19546
- created_at: string;
19582
+ created_at: string | null;
19547
19583
  is_issued: boolean | null;
19548
19584
  /** Date and time the credential will become useable. */
19549
19585
  starts_at: string | null;
@@ -19553,7 +19589,6 @@ export interface Routes {
19553
19589
  card_number: string | null;
19554
19590
  visionline_metadata?: {
19555
19591
  card_id: string;
19556
- card_function_type: 'guest' | 'staff';
19557
19592
  cancelled: boolean;
19558
19593
  discarded: boolean;
19559
19594
  expired: boolean;
@@ -19563,6 +19598,8 @@ export interface Routes {
19563
19598
  card_format: 'TLCode' | 'rfid48';
19564
19599
  card_holder?: string | undefined;
19565
19600
  number_of_issued_cards: number;
19601
+ guest_acs_entrance_ids?: string[] | undefined;
19602
+ common_acs_entrance_ids?: string[] | undefined;
19566
19603
  } | undefined;
19567
19604
  };
19568
19605
  /** Matching acs_credential currently encoded on this card. */
@@ -20534,6 +20571,7 @@ export interface Routes {
20534
20571
  akiles_metadata?: {
20535
20572
  gadget_name: string;
20536
20573
  gadget_id: string;
20574
+ _member_group_id?: string | undefined;
20537
20575
  } | undefined;
20538
20576
  }) & ({
20539
20577
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -20975,6 +21013,7 @@ export interface Routes {
20975
21013
  akiles_metadata?: {
20976
21014
  gadget_name: string;
20977
21015
  gadget_id: string;
21016
+ _member_group_id?: string | undefined;
20978
21017
  } | undefined;
20979
21018
  }) & ({
20980
21019
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -21137,6 +21176,8 @@ export interface Routes {
21137
21176
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
21138
21177
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
21139
21178
  external_type_display_name?: string | undefined;
21179
+ /** Indicates if the `acs_system` is a credential manager. */
21180
+ is_credential_manager: boolean;
21140
21181
  visionline_metadata?: {
21141
21182
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
21142
21183
  mobile_access_uuid: string;
@@ -21574,7 +21615,7 @@ export interface Routes {
21574
21615
  /** Snapshot of the card data read from the physical encoder. */
21575
21616
  acs_credential_on_encoder: {
21576
21617
  /** Date and time the credential was created. */
21577
- created_at: string;
21618
+ created_at: string | null;
21578
21619
  is_issued: boolean | null;
21579
21620
  /** Date and time the credential will become useable. */
21580
21621
  starts_at: string | null;
@@ -21584,7 +21625,6 @@ export interface Routes {
21584
21625
  card_number: string | null;
21585
21626
  visionline_metadata?: {
21586
21627
  card_id: string;
21587
- card_function_type: 'guest' | 'staff';
21588
21628
  cancelled: boolean;
21589
21629
  discarded: boolean;
21590
21630
  expired: boolean;
@@ -21594,6 +21634,8 @@ export interface Routes {
21594
21634
  card_format: 'TLCode' | 'rfid48';
21595
21635
  card_holder?: string | undefined;
21596
21636
  number_of_issued_cards: number;
21637
+ guest_acs_entrance_ids?: string[] | undefined;
21638
+ common_acs_entrance_ids?: string[] | undefined;
21597
21639
  } | undefined;
21598
21640
  };
21599
21641
  /** Matching acs_credential currently encoded on this card. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.264.1",
3
+ "version": "1.265.0",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",