@seamapi/types 1.264.2 → 1.266.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.
@@ -849,9 +849,11 @@ declare const acs_entrance: z.ZodObject<{
849
849
  type AcsEntrance = z.infer<typeof acs_entrance>;
850
850
 
851
851
  declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
852
+ default_credential_manager_acs_system_id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
852
853
  acs_system_id: z.ZodString;
853
854
  external_type: z.ZodOptional<z.ZodEnum<["pti_site", "alta_org", "salto_site", "brivo_account", "hid_credential_manager_organization", "visionline_system", "assa_abloy_credential_service", "latch_building"]>>;
854
855
  external_type_display_name: z.ZodOptional<z.ZodString>;
856
+ is_credential_manager: z.ZodBoolean;
855
857
  visionline_metadata: z.ZodOptional<z.ZodObject<{
856
858
  mobile_access_uuid: z.ZodString;
857
859
  system_id: z.ZodString;
@@ -991,6 +993,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
991
993
  image_alt_text: string;
992
994
  workspace_id: string;
993
995
  acs_system_id: string;
996
+ is_credential_manager: boolean;
994
997
  connected_account_ids: string[];
995
998
  visionline_metadata?: {
996
999
  mobile_access_uuid: string;
@@ -1003,6 +1006,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1003
1006
  can_create_acs_access_groups?: boolean | undefined;
1004
1007
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1005
1008
  can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1009
+ default_credential_manager_acs_system_id?: string | null | undefined;
1006
1010
  system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1007
1011
  system_type_display_name?: string | undefined;
1008
1012
  }, {
@@ -1038,6 +1042,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1038
1042
  image_alt_text: string;
1039
1043
  workspace_id: string;
1040
1044
  acs_system_id: string;
1045
+ is_credential_manager: boolean;
1041
1046
  connected_account_ids: string[];
1042
1047
  visionline_metadata?: {
1043
1048
  mobile_access_uuid: string;
@@ -1050,6 +1055,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
1050
1055
  can_create_acs_access_groups?: boolean | undefined;
1051
1056
  can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
1052
1057
  can_add_acs_users_to_acs_access_groups?: boolean | undefined;
1058
+ default_credential_manager_acs_system_id?: string | null | undefined;
1053
1059
  system_type?: "assa_abloy_credential_service" | "pti_site" | "alta_org" | "salto_site" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | undefined;
1054
1060
  system_type_display_name?: string | undefined;
1055
1061
  }>;
@@ -1725,7 +1731,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1725
1731
  card_number: z.ZodNullable<z.ZodString>;
1726
1732
  visionline_metadata: z.ZodOptional<z.ZodObject<{
1727
1733
  card_id: z.ZodString;
1728
- card_function_type: z.ZodEnum<["guest", "staff"]>;
1729
1734
  cancelled: z.ZodBoolean;
1730
1735
  discarded: z.ZodBoolean;
1731
1736
  expired: z.ZodBoolean;
@@ -1735,8 +1740,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1735
1740
  card_format: z.ZodEnum<["TLCode", "rfid48"]>;
1736
1741
  card_holder: z.ZodOptional<z.ZodString>;
1737
1742
  number_of_issued_cards: z.ZodNumber;
1743
+ guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1744
+ common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
1738
1745
  }, "strip", z.ZodTypeAny, {
1739
- card_function_type: "guest" | "staff";
1740
1746
  card_id: string;
1741
1747
  cancelled: boolean;
1742
1748
  discarded: boolean;
@@ -1745,10 +1751,11 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1745
1751
  pending_auto_update: boolean;
1746
1752
  card_format: "TLCode" | "rfid48";
1747
1753
  number_of_issued_cards: number;
1754
+ guest_acs_entrance_ids?: string[] | undefined;
1755
+ common_acs_entrance_ids?: string[] | undefined;
1748
1756
  overridden?: boolean | undefined;
1749
1757
  card_holder?: string | undefined;
1750
1758
  }, {
1751
- card_function_type: "guest" | "staff";
1752
1759
  card_id: string;
1753
1760
  cancelled: boolean;
1754
1761
  discarded: boolean;
@@ -1757,6 +1764,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1757
1764
  pending_auto_update: boolean;
1758
1765
  card_format: "TLCode" | "rfid48";
1759
1766
  number_of_issued_cards: number;
1767
+ guest_acs_entrance_ids?: string[] | undefined;
1768
+ common_acs_entrance_ids?: string[] | undefined;
1760
1769
  overridden?: boolean | undefined;
1761
1770
  card_holder?: string | undefined;
1762
1771
  }>>;
@@ -1767,7 +1776,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1767
1776
  card_number: string | null;
1768
1777
  is_issued: boolean | null;
1769
1778
  visionline_metadata?: {
1770
- card_function_type: "guest" | "staff";
1771
1779
  card_id: string;
1772
1780
  cancelled: boolean;
1773
1781
  discarded: boolean;
@@ -1776,6 +1784,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1776
1784
  pending_auto_update: boolean;
1777
1785
  card_format: "TLCode" | "rfid48";
1778
1786
  number_of_issued_cards: number;
1787
+ guest_acs_entrance_ids?: string[] | undefined;
1788
+ common_acs_entrance_ids?: string[] | undefined;
1779
1789
  overridden?: boolean | undefined;
1780
1790
  card_holder?: string | undefined;
1781
1791
  } | undefined;
@@ -1786,7 +1796,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1786
1796
  card_number: string | null;
1787
1797
  is_issued: boolean | null;
1788
1798
  visionline_metadata?: {
1789
- card_function_type: "guest" | "staff";
1790
1799
  card_id: string;
1791
1800
  cancelled: boolean;
1792
1801
  discarded: boolean;
@@ -1795,6 +1804,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
1795
1804
  pending_auto_update: boolean;
1796
1805
  card_format: "TLCode" | "rfid48";
1797
1806
  number_of_issued_cards: number;
1807
+ guest_acs_entrance_ids?: string[] | undefined;
1808
+ common_acs_entrance_ids?: string[] | undefined;
1798
1809
  overridden?: boolean | undefined;
1799
1810
  card_holder?: string | undefined;
1800
1811
  } | undefined;
@@ -2110,7 +2121,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2110
2121
  card_number: string | null;
2111
2122
  is_issued: boolean | null;
2112
2123
  visionline_metadata?: {
2113
- card_function_type: "guest" | "staff";
2114
2124
  card_id: string;
2115
2125
  cancelled: boolean;
2116
2126
  discarded: boolean;
@@ -2119,6 +2129,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2119
2129
  pending_auto_update: boolean;
2120
2130
  card_format: "TLCode" | "rfid48";
2121
2131
  number_of_issued_cards: number;
2132
+ guest_acs_entrance_ids?: string[] | undefined;
2133
+ common_acs_entrance_ids?: string[] | undefined;
2122
2134
  overridden?: boolean | undefined;
2123
2135
  card_holder?: string | undefined;
2124
2136
  } | undefined;
@@ -2212,7 +2224,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2212
2224
  card_number: string | null;
2213
2225
  is_issued: boolean | null;
2214
2226
  visionline_metadata?: {
2215
- card_function_type: "guest" | "staff";
2216
2227
  card_id: string;
2217
2228
  cancelled: boolean;
2218
2229
  discarded: boolean;
@@ -2221,6 +2232,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2221
2232
  pending_auto_update: boolean;
2222
2233
  card_format: "TLCode" | "rfid48";
2223
2234
  number_of_issued_cards: number;
2235
+ guest_acs_entrance_ids?: string[] | undefined;
2236
+ common_acs_entrance_ids?: string[] | undefined;
2224
2237
  overridden?: boolean | undefined;
2225
2238
  card_holder?: string | undefined;
2226
2239
  } | undefined;
@@ -2319,7 +2332,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2319
2332
  card_number: string | null;
2320
2333
  is_issued: boolean | null;
2321
2334
  visionline_metadata?: {
2322
- card_function_type: "guest" | "staff";
2323
2335
  card_id: string;
2324
2336
  cancelled: boolean;
2325
2337
  discarded: boolean;
@@ -2328,6 +2340,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2328
2340
  pending_auto_update: boolean;
2329
2341
  card_format: "TLCode" | "rfid48";
2330
2342
  number_of_issued_cards: number;
2343
+ guest_acs_entrance_ids?: string[] | undefined;
2344
+ common_acs_entrance_ids?: string[] | undefined;
2331
2345
  overridden?: boolean | undefined;
2332
2346
  card_holder?: string | undefined;
2333
2347
  } | undefined;
@@ -2427,7 +2441,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2427
2441
  card_number: string | null;
2428
2442
  is_issued: boolean | null;
2429
2443
  visionline_metadata?: {
2430
- card_function_type: "guest" | "staff";
2431
2444
  card_id: string;
2432
2445
  cancelled: boolean;
2433
2446
  discarded: boolean;
@@ -2436,6 +2449,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
2436
2449
  pending_auto_update: boolean;
2437
2450
  card_format: "TLCode" | "rfid48";
2438
2451
  number_of_issued_cards: number;
2452
+ guest_acs_entrance_ids?: string[] | undefined;
2453
+ common_acs_entrance_ids?: string[] | undefined;
2439
2454
  overridden?: boolean | undefined;
2440
2455
  card_holder?: string | undefined;
2441
2456
  } | undefined;
@@ -11211,6 +11226,13 @@ declare const _default: {
11211
11226
  format: string;
11212
11227
  type: string;
11213
11228
  };
11229
+ default_credential_manager_acs_system_id: {
11230
+ description: string;
11231
+ format: string;
11232
+ nullable: boolean;
11233
+ type: string;
11234
+ 'x-draft': string;
11235
+ };
11214
11236
  errors: {
11215
11237
  description: string;
11216
11238
  items: {
@@ -11276,6 +11298,10 @@ declare const _default: {
11276
11298
  description: string;
11277
11299
  type: string;
11278
11300
  };
11301
+ is_credential_manager: {
11302
+ description: string;
11303
+ type: string;
11304
+ };
11279
11305
  name: {
11280
11306
  description: string;
11281
11307
  type: string;
@@ -11678,22 +11704,32 @@ declare const _default: {
11678
11704
  enum: string[];
11679
11705
  type: string;
11680
11706
  };
11681
- card_function_type: {
11682
- enum: string[];
11683
- type: string;
11684
- };
11685
11707
  card_holder: {
11686
11708
  type: string;
11687
11709
  };
11688
11710
  card_id: {
11689
11711
  type: string;
11690
11712
  };
11713
+ common_acs_entrance_ids: {
11714
+ items: {
11715
+ format: string;
11716
+ type: string;
11717
+ };
11718
+ type: string;
11719
+ };
11691
11720
  discarded: {
11692
11721
  type: string;
11693
11722
  };
11694
11723
  expired: {
11695
11724
  type: string;
11696
11725
  };
11726
+ guest_acs_entrance_ids: {
11727
+ items: {
11728
+ format: string;
11729
+ type: string;
11730
+ };
11731
+ type: string;
11732
+ };
11697
11733
  number_of_issued_cards: {
11698
11734
  format: string;
11699
11735
  type: string;
@@ -19404,6 +19440,7 @@ declare const _default: {
19404
19440
  };
19405
19441
  '/acs/entrances/get': {
19406
19442
  post: {
19443
+ description: string;
19407
19444
  operationId: string;
19408
19445
  requestBody: {
19409
19446
  content: {
@@ -19475,6 +19512,7 @@ declare const _default: {
19475
19512
  'x-fern-sdk-method-name': string;
19476
19513
  'x-fern-sdk-return-value': string;
19477
19514
  'x-response-key': string;
19515
+ 'x-title': string;
19478
19516
  };
19479
19517
  };
19480
19518
  '/acs/entrances/grant_access': {
@@ -19546,6 +19584,7 @@ declare const _default: {
19546
19584
  };
19547
19585
  '/acs/entrances/list': {
19548
19586
  post: {
19587
+ description: string;
19549
19588
  operationId: string;
19550
19589
  requestBody: {
19551
19590
  content: {
@@ -19623,10 +19662,12 @@ declare const _default: {
19623
19662
  'x-fern-sdk-method-name': string;
19624
19663
  'x-fern-sdk-return-value': string;
19625
19664
  'x-response-key': string;
19665
+ 'x-title': string;
19626
19666
  };
19627
19667
  };
19628
19668
  '/acs/entrances/list_credentials_with_access': {
19629
19669
  post: {
19670
+ description: string;
19630
19671
  operationId: string;
19631
19672
  requestBody: {
19632
19673
  content: {
@@ -19708,6 +19749,7 @@ declare const _default: {
19708
19749
  'x-fern-sdk-method-name': string;
19709
19750
  'x-fern-sdk-return-value': string;
19710
19751
  'x-response-key': string;
19752
+ 'x-title': string;
19711
19753
  };
19712
19754
  };
19713
19755
  '/acs/systems/get': {
@@ -29920,7 +29962,6 @@ interface Routes {
29920
29962
  card_number: string | null;
29921
29963
  visionline_metadata?: {
29922
29964
  card_id: string;
29923
- card_function_type: 'guest' | 'staff';
29924
29965
  cancelled: boolean;
29925
29966
  discarded: boolean;
29926
29967
  expired: boolean;
@@ -29930,6 +29971,8 @@ interface Routes {
29930
29971
  card_format: 'TLCode' | 'rfid48';
29931
29972
  card_holder?: string | undefined;
29932
29973
  number_of_issued_cards: number;
29974
+ guest_acs_entrance_ids?: string[] | undefined;
29975
+ common_acs_entrance_ids?: string[] | undefined;
29933
29976
  } | undefined;
29934
29977
  };
29935
29978
  /** Matching acs_credential currently encoded on this card. */
@@ -30632,7 +30675,6 @@ interface Routes {
30632
30675
  card_number: string | null;
30633
30676
  visionline_metadata?: {
30634
30677
  card_id: string;
30635
- card_function_type: 'guest' | 'staff';
30636
30678
  cancelled: boolean;
30637
30679
  discarded: boolean;
30638
30680
  expired: boolean;
@@ -30642,6 +30684,8 @@ interface Routes {
30642
30684
  card_format: 'TLCode' | 'rfid48';
30643
30685
  card_holder?: string | undefined;
30644
30686
  number_of_issued_cards: number;
30687
+ guest_acs_entrance_ids?: string[] | undefined;
30688
+ common_acs_entrance_ids?: string[] | undefined;
30645
30689
  } | undefined;
30646
30690
  };
30647
30691
  /** Matching acs_credential currently encoded on this card. */
@@ -31501,7 +31545,6 @@ interface Routes {
31501
31545
  card_number: string | null;
31502
31546
  visionline_metadata?: {
31503
31547
  card_id: string;
31504
- card_function_type: 'guest' | 'staff';
31505
31548
  cancelled: boolean;
31506
31549
  discarded: boolean;
31507
31550
  expired: boolean;
@@ -31511,6 +31554,8 @@ interface Routes {
31511
31554
  card_format: 'TLCode' | 'rfid48';
31512
31555
  card_holder?: string | undefined;
31513
31556
  number_of_issued_cards: number;
31557
+ guest_acs_entrance_ids?: string[] | undefined;
31558
+ common_acs_entrance_ids?: string[] | undefined;
31514
31559
  } | undefined;
31515
31560
  };
31516
31561
  /** Matching acs_credential currently encoded on this card. */
@@ -32200,7 +32245,6 @@ interface Routes {
32200
32245
  card_number: string | null;
32201
32246
  visionline_metadata?: {
32202
32247
  card_id: string;
32203
- card_function_type: 'guest' | 'staff';
32204
32248
  cancelled: boolean;
32205
32249
  discarded: boolean;
32206
32250
  expired: boolean;
@@ -32210,6 +32254,8 @@ interface Routes {
32210
32254
  card_format: 'TLCode' | 'rfid48';
32211
32255
  card_holder?: string | undefined;
32212
32256
  number_of_issued_cards: number;
32257
+ guest_acs_entrance_ids?: string[] | undefined;
32258
+ common_acs_entrance_ids?: string[] | undefined;
32213
32259
  } | undefined;
32214
32260
  };
32215
32261
  /** Matching acs_credential currently encoded on this card. */
@@ -33643,7 +33689,6 @@ interface Routes {
33643
33689
  card_number: string | null;
33644
33690
  visionline_metadata?: {
33645
33691
  card_id: string;
33646
- card_function_type: 'guest' | 'staff';
33647
33692
  cancelled: boolean;
33648
33693
  discarded: boolean;
33649
33694
  expired: boolean;
@@ -33653,6 +33698,8 @@ interface Routes {
33653
33698
  card_format: 'TLCode' | 'rfid48';
33654
33699
  card_holder?: string | undefined;
33655
33700
  number_of_issued_cards: number;
33701
+ guest_acs_entrance_ids?: string[] | undefined;
33702
+ common_acs_entrance_ids?: string[] | undefined;
33656
33703
  } | undefined;
33657
33704
  };
33658
33705
  /** Matching acs_credential currently encoded on this card. */
@@ -34668,7 +34715,6 @@ interface Routes {
34668
34715
  card_number: string | null;
34669
34716
  visionline_metadata?: {
34670
34717
  card_id: string;
34671
- card_function_type: 'guest' | 'staff';
34672
34718
  cancelled: boolean;
34673
34719
  discarded: boolean;
34674
34720
  expired: boolean;
@@ -34678,6 +34724,8 @@ interface Routes {
34678
34724
  card_format: 'TLCode' | 'rfid48';
34679
34725
  card_holder?: string | undefined;
34680
34726
  number_of_issued_cards: number;
34727
+ guest_acs_entrance_ids?: string[] | undefined;
34728
+ common_acs_entrance_ids?: string[] | undefined;
34681
34729
  } | undefined;
34682
34730
  };
34683
34731
  /** Matching acs_credential currently encoded on this card. */
@@ -35324,12 +35372,16 @@ interface Routes {
35324
35372
  jsonResponse: {
35325
35373
  /** Represents an [access control system](https://docs.seam.co/latest/capability-guides/access-systems). */
35326
35374
  acs_system: {
35375
+ /** ID of the default credential manager acs_system for this access control system. */
35376
+ default_credential_manager_acs_system_id?: (string | null) | undefined;
35327
35377
  /** ID of the `acs_system`. */
35328
35378
  acs_system_id: string;
35329
35379
  /** Brand-specific terminology for the `acs_system` type. */
35330
35380
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
35331
35381
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
35332
35382
  external_type_display_name?: string | undefined;
35383
+ /** Indicates if the `acs_system` is a credential manager. */
35384
+ is_credential_manager: boolean;
35333
35385
  visionline_metadata?: {
35334
35386
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
35335
35387
  mobile_access_uuid: string;
@@ -35425,12 +35477,16 @@ interface Routes {
35425
35477
  formData: {};
35426
35478
  jsonResponse: {
35427
35479
  acs_systems: Array<{
35480
+ /** ID of the default credential manager acs_system for this access control system. */
35481
+ default_credential_manager_acs_system_id?: (string | null) | undefined;
35428
35482
  /** ID of the `acs_system`. */
35429
35483
  acs_system_id: string;
35430
35484
  /** Brand-specific terminology for the `acs_system` type. */
35431
35485
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
35432
35486
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
35433
35487
  external_type_display_name?: string | undefined;
35488
+ /** Indicates if the `acs_system` is a credential manager. */
35489
+ is_credential_manager: boolean;
35434
35490
  visionline_metadata?: {
35435
35491
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
35436
35492
  mobile_access_uuid: string;
@@ -35526,12 +35582,16 @@ interface Routes {
35526
35582
  formData: {};
35527
35583
  jsonResponse: {
35528
35584
  acs_systems: Array<{
35585
+ /** ID of the default credential manager acs_system for this access control system. */
35586
+ default_credential_manager_acs_system_id?: (string | null) | undefined;
35529
35587
  /** ID of the `acs_system`. */
35530
35588
  acs_system_id: string;
35531
35589
  /** Brand-specific terminology for the `acs_system` type. */
35532
35590
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
35533
35591
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
35534
35592
  external_type_display_name?: string | undefined;
35593
+ /** Indicates if the `acs_system` is a credential manager. */
35594
+ is_credential_manager: boolean;
35535
35595
  visionline_metadata?: {
35536
35596
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
35537
35597
  mobile_access_uuid: string;
@@ -36387,7 +36447,6 @@ interface Routes {
36387
36447
  card_number: string | null;
36388
36448
  visionline_metadata?: {
36389
36449
  card_id: string;
36390
- card_function_type: 'guest' | 'staff';
36391
36450
  cancelled: boolean;
36392
36451
  discarded: boolean;
36393
36452
  expired: boolean;
@@ -36397,6 +36456,8 @@ interface Routes {
36397
36456
  card_format: 'TLCode' | 'rfid48';
36398
36457
  card_holder?: string | undefined;
36399
36458
  number_of_issued_cards: number;
36459
+ guest_acs_entrance_ids?: string[] | undefined;
36460
+ common_acs_entrance_ids?: string[] | undefined;
36400
36461
  } | undefined;
36401
36462
  };
36402
36463
  /** Matching acs_credential currently encoded on this card. */
@@ -36948,7 +37009,6 @@ interface Routes {
36948
37009
  card_number: string | null;
36949
37010
  visionline_metadata?: {
36950
37011
  card_id: string;
36951
- card_function_type: 'guest' | 'staff';
36952
37012
  cancelled: boolean;
36953
37013
  discarded: boolean;
36954
37014
  expired: boolean;
@@ -36958,6 +37018,8 @@ interface Routes {
36958
37018
  card_format: 'TLCode' | 'rfid48';
36959
37019
  card_holder?: string | undefined;
36960
37020
  number_of_issued_cards: number;
37021
+ guest_acs_entrance_ids?: string[] | undefined;
37022
+ common_acs_entrance_ids?: string[] | undefined;
36961
37023
  } | undefined;
36962
37024
  };
36963
37025
  /** Matching acs_credential currently encoded on this card. */
@@ -41061,7 +41123,6 @@ interface Routes {
41061
41123
  card_number: string | null;
41062
41124
  visionline_metadata?: {
41063
41125
  card_id: string;
41064
- card_function_type: 'guest' | 'staff';
41065
41126
  cancelled: boolean;
41066
41127
  discarded: boolean;
41067
41128
  expired: boolean;
@@ -41071,6 +41132,8 @@ interface Routes {
41071
41132
  card_format: 'TLCode' | 'rfid48';
41072
41133
  card_holder?: string | undefined;
41073
41134
  number_of_issued_cards: number;
41135
+ guest_acs_entrance_ids?: string[] | undefined;
41136
+ common_acs_entrance_ids?: string[] | undefined;
41074
41137
  } | undefined;
41075
41138
  };
41076
41139
  /** Matching acs_credential currently encoded on this card. */
@@ -41623,7 +41686,6 @@ interface Routes {
41623
41686
  card_number: string | null;
41624
41687
  visionline_metadata?: {
41625
41688
  card_id: string;
41626
- card_function_type: 'guest' | 'staff';
41627
41689
  cancelled: boolean;
41628
41690
  discarded: boolean;
41629
41691
  expired: boolean;
@@ -41633,6 +41695,8 @@ interface Routes {
41633
41695
  card_format: 'TLCode' | 'rfid48';
41634
41696
  card_holder?: string | undefined;
41635
41697
  number_of_issued_cards: number;
41698
+ guest_acs_entrance_ids?: string[] | undefined;
41699
+ common_acs_entrance_ids?: string[] | undefined;
41636
41700
  } | undefined;
41637
41701
  };
41638
41702
  /** Matching acs_credential currently encoded on this card. */
@@ -43129,7 +43193,6 @@ interface Routes {
43129
43193
  card_number: string | null;
43130
43194
  visionline_metadata?: {
43131
43195
  card_id: string;
43132
- card_function_type: 'guest' | 'staff';
43133
43196
  cancelled: boolean;
43134
43197
  discarded: boolean;
43135
43198
  expired: boolean;
@@ -43139,6 +43202,8 @@ interface Routes {
43139
43202
  card_format: 'TLCode' | 'rfid48';
43140
43203
  card_holder?: string | undefined;
43141
43204
  number_of_issued_cards: number;
43205
+ guest_acs_entrance_ids?: string[] | undefined;
43206
+ common_acs_entrance_ids?: string[] | undefined;
43142
43207
  } | undefined;
43143
43208
  };
43144
43209
  /** Matching acs_credential currently encoded on this card. */
@@ -43701,7 +43766,6 @@ interface Routes {
43701
43766
  card_number: string | null;
43702
43767
  visionline_metadata?: {
43703
43768
  card_id: string;
43704
- card_function_type: 'guest' | 'staff';
43705
43769
  cancelled: boolean;
43706
43770
  discarded: boolean;
43707
43771
  expired: boolean;
@@ -43711,6 +43775,8 @@ interface Routes {
43711
43775
  card_format: 'TLCode' | 'rfid48';
43712
43776
  card_holder?: string | undefined;
43713
43777
  number_of_issued_cards: number;
43778
+ guest_acs_entrance_ids?: string[] | undefined;
43779
+ common_acs_entrance_ids?: string[] | undefined;
43714
43780
  } | undefined;
43715
43781
  };
43716
43782
  /** Matching acs_credential currently encoded on this card. */
@@ -44312,7 +44378,6 @@ interface Routes {
44312
44378
  card_number: string | null;
44313
44379
  visionline_metadata?: {
44314
44380
  card_id: string;
44315
- card_function_type: 'guest' | 'staff';
44316
44381
  cancelled: boolean;
44317
44382
  discarded: boolean;
44318
44383
  expired: boolean;
@@ -44322,6 +44387,8 @@ interface Routes {
44322
44387
  card_format: 'TLCode' | 'rfid48';
44323
44388
  card_holder?: string | undefined;
44324
44389
  number_of_issued_cards: number;
44390
+ guest_acs_entrance_ids?: string[] | undefined;
44391
+ common_acs_entrance_ids?: string[] | undefined;
44325
44392
  } | undefined;
44326
44393
  };
44327
44394
  /** Matching acs_credential currently encoded on this card. */
@@ -45056,7 +45123,6 @@ interface Routes {
45056
45123
  card_number: string | null;
45057
45124
  visionline_metadata?: {
45058
45125
  card_id: string;
45059
- card_function_type: 'guest' | 'staff';
45060
45126
  cancelled: boolean;
45061
45127
  discarded: boolean;
45062
45128
  expired: boolean;
@@ -45066,6 +45132,8 @@ interface Routes {
45066
45132
  card_format: 'TLCode' | 'rfid48';
45067
45133
  card_holder?: string | undefined;
45068
45134
  number_of_issued_cards: number;
45135
+ guest_acs_entrance_ids?: string[] | undefined;
45136
+ common_acs_entrance_ids?: string[] | undefined;
45069
45137
  } | undefined;
45070
45138
  };
45071
45139
  /** Matching acs_credential currently encoded on this card. */
@@ -45620,7 +45688,6 @@ interface Routes {
45620
45688
  card_number: string | null;
45621
45689
  visionline_metadata?: {
45622
45690
  card_id: string;
45623
- card_function_type: 'guest' | 'staff';
45624
45691
  cancelled: boolean;
45625
45692
  discarded: boolean;
45626
45693
  expired: boolean;
@@ -45630,6 +45697,8 @@ interface Routes {
45630
45697
  card_format: 'TLCode' | 'rfid48';
45631
45698
  card_holder?: string | undefined;
45632
45699
  number_of_issued_cards: number;
45700
+ guest_acs_entrance_ids?: string[] | undefined;
45701
+ common_acs_entrance_ids?: string[] | undefined;
45633
45702
  } | undefined;
45634
45703
  };
45635
45704
  /** Matching acs_credential currently encoded on this card. */
@@ -46669,7 +46738,6 @@ interface Routes {
46669
46738
  card_number: string | null;
46670
46739
  visionline_metadata?: {
46671
46740
  card_id: string;
46672
- card_function_type: 'guest' | 'staff';
46673
46741
  cancelled: boolean;
46674
46742
  discarded: boolean;
46675
46743
  expired: boolean;
@@ -46679,6 +46747,8 @@ interface Routes {
46679
46747
  card_format: 'TLCode' | 'rfid48';
46680
46748
  card_holder?: string | undefined;
46681
46749
  number_of_issued_cards: number;
46750
+ guest_acs_entrance_ids?: string[] | undefined;
46751
+ common_acs_entrance_ids?: string[] | undefined;
46682
46752
  } | undefined;
46683
46753
  };
46684
46754
  /** Matching acs_credential currently encoded on this card. */
@@ -47235,7 +47305,6 @@ interface Routes {
47235
47305
  card_number: string | null;
47236
47306
  visionline_metadata?: {
47237
47307
  card_id: string;
47238
- card_function_type: 'guest' | 'staff';
47239
47308
  cancelled: boolean;
47240
47309
  discarded: boolean;
47241
47310
  expired: boolean;
@@ -47245,6 +47314,8 @@ interface Routes {
47245
47314
  card_format: 'TLCode' | 'rfid48';
47246
47315
  card_holder?: string | undefined;
47247
47316
  number_of_issued_cards: number;
47317
+ guest_acs_entrance_ids?: string[] | undefined;
47318
+ common_acs_entrance_ids?: string[] | undefined;
47248
47319
  } | undefined;
47249
47320
  };
47250
47321
  /** Matching acs_credential currently encoded on this card. */
@@ -48470,6 +48541,7 @@ interface Routes {
48470
48541
  akiles_metadata?: {
48471
48542
  gadget_name: string;
48472
48543
  gadget_id: string;
48544
+ _member_group_id?: string | undefined;
48473
48545
  } | undefined;
48474
48546
  }) & ({
48475
48547
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -48701,7 +48773,6 @@ interface Routes {
48701
48773
  card_number: string | null;
48702
48774
  visionline_metadata?: {
48703
48775
  card_id: string;
48704
- card_function_type: 'guest' | 'staff';
48705
48776
  cancelled: boolean;
48706
48777
  discarded: boolean;
48707
48778
  expired: boolean;
@@ -48711,6 +48782,8 @@ interface Routes {
48711
48782
  card_format: 'TLCode' | 'rfid48';
48712
48783
  card_holder?: string | undefined;
48713
48784
  number_of_issued_cards: number;
48785
+ guest_acs_entrance_ids?: string[] | undefined;
48786
+ common_acs_entrance_ids?: string[] | undefined;
48714
48787
  } | undefined;
48715
48788
  };
48716
48789
  /** Matching acs_credential currently encoded on this card. */
@@ -49384,7 +49457,6 @@ interface Routes {
49384
49457
  card_number: string | null;
49385
49458
  visionline_metadata?: {
49386
49459
  card_id: string;
49387
- card_function_type: 'guest' | 'staff';
49388
49460
  cancelled: boolean;
49389
49461
  discarded: boolean;
49390
49462
  expired: boolean;
@@ -49394,6 +49466,8 @@ interface Routes {
49394
49466
  card_format: 'TLCode' | 'rfid48';
49395
49467
  card_holder?: string | undefined;
49396
49468
  number_of_issued_cards: number;
49469
+ guest_acs_entrance_ids?: string[] | undefined;
49470
+ common_acs_entrance_ids?: string[] | undefined;
49397
49471
  } | undefined;
49398
49472
  };
49399
49473
  /** Matching acs_credential currently encoded on this card. */
@@ -50964,12 +51038,16 @@ interface Routes {
50964
51038
  formData: {};
50965
51039
  jsonResponse: {
50966
51040
  acs_systems: Array<{
51041
+ /** ID of the default credential manager acs_system for this access control system. */
51042
+ default_credential_manager_acs_system_id?: (string | null) | undefined;
50967
51043
  /** ID of the `acs_system`. */
50968
51044
  acs_system_id: string;
50969
51045
  /** Brand-specific terminology for the `acs_system` type. */
50970
51046
  external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
50971
51047
  /** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
50972
51048
  external_type_display_name?: string | undefined;
51049
+ /** Indicates if the `acs_system` is a credential manager. */
51050
+ is_credential_manager: boolean;
50973
51051
  visionline_metadata?: {
50974
51052
  /** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
50975
51053
  mobile_access_uuid: string;
@@ -51417,7 +51495,6 @@ interface Routes {
51417
51495
  card_number: string | null;
51418
51496
  visionline_metadata?: {
51419
51497
  card_id: string;
51420
- card_function_type: 'guest' | 'staff';
51421
51498
  cancelled: boolean;
51422
51499
  discarded: boolean;
51423
51500
  expired: boolean;
@@ -51427,6 +51504,8 @@ interface Routes {
51427
51504
  card_format: 'TLCode' | 'rfid48';
51428
51505
  card_holder?: string | undefined;
51429
51506
  number_of_issued_cards: number;
51507
+ guest_acs_entrance_ids?: string[] | undefined;
51508
+ common_acs_entrance_ids?: string[] | undefined;
51430
51509
  } | undefined;
51431
51510
  };
51432
51511
  /** Matching acs_credential currently encoded on this card. */