@seamapi/types 1.264.2 → 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.
- package/dist/connect.cjs +27 -13
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +94 -33
- package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -5
- package/lib/seam/connect/models/acs/acs-credential.js +3 -3
- package/lib/seam/connect/models/acs/acs-credential.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-system.js +3 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +18 -9
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +18 -9
- package/lib/seam/connect/openapi.d.ts +24 -4
- package/lib/seam/connect/openapi.js +19 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +49 -20
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +3 -3
- package/src/lib/seam/connect/models/acs/acs-system.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +23 -5
- package/src/lib/seam/connect/route-types.ts +49 -20
package/dist/connect.d.cts
CHANGED
|
@@ -852,6 +852,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
852
852
|
acs_system_id: z.ZodString;
|
|
853
853
|
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
854
|
external_type_display_name: z.ZodOptional<z.ZodString>;
|
|
855
|
+
is_credential_manager: z.ZodBoolean;
|
|
855
856
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
856
857
|
mobile_access_uuid: z.ZodString;
|
|
857
858
|
system_id: z.ZodString;
|
|
@@ -991,6 +992,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
991
992
|
image_alt_text: string;
|
|
992
993
|
workspace_id: string;
|
|
993
994
|
acs_system_id: string;
|
|
995
|
+
is_credential_manager: boolean;
|
|
994
996
|
connected_account_ids: string[];
|
|
995
997
|
visionline_metadata?: {
|
|
996
998
|
mobile_access_uuid: string;
|
|
@@ -1038,6 +1040,7 @@ declare const acs_system: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1038
1040
|
image_alt_text: string;
|
|
1039
1041
|
workspace_id: string;
|
|
1040
1042
|
acs_system_id: string;
|
|
1043
|
+
is_credential_manager: boolean;
|
|
1041
1044
|
connected_account_ids: string[];
|
|
1042
1045
|
visionline_metadata?: {
|
|
1043
1046
|
mobile_access_uuid: string;
|
|
@@ -1725,7 +1728,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1725
1728
|
card_number: z.ZodNullable<z.ZodString>;
|
|
1726
1729
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
1727
1730
|
card_id: z.ZodString;
|
|
1728
|
-
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
1729
1731
|
cancelled: z.ZodBoolean;
|
|
1730
1732
|
discarded: z.ZodBoolean;
|
|
1731
1733
|
expired: z.ZodBoolean;
|
|
@@ -1735,8 +1737,9 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1735
1737
|
card_format: z.ZodEnum<["TLCode", "rfid48"]>;
|
|
1736
1738
|
card_holder: z.ZodOptional<z.ZodString>;
|
|
1737
1739
|
number_of_issued_cards: z.ZodNumber;
|
|
1740
|
+
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1741
|
+
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1738
1742
|
}, "strip", z.ZodTypeAny, {
|
|
1739
|
-
card_function_type: "guest" | "staff";
|
|
1740
1743
|
card_id: string;
|
|
1741
1744
|
cancelled: boolean;
|
|
1742
1745
|
discarded: boolean;
|
|
@@ -1745,10 +1748,11 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1745
1748
|
pending_auto_update: boolean;
|
|
1746
1749
|
card_format: "TLCode" | "rfid48";
|
|
1747
1750
|
number_of_issued_cards: number;
|
|
1751
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
1752
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
1748
1753
|
overridden?: boolean | undefined;
|
|
1749
1754
|
card_holder?: string | undefined;
|
|
1750
1755
|
}, {
|
|
1751
|
-
card_function_type: "guest" | "staff";
|
|
1752
1756
|
card_id: string;
|
|
1753
1757
|
cancelled: boolean;
|
|
1754
1758
|
discarded: boolean;
|
|
@@ -1757,6 +1761,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1757
1761
|
pending_auto_update: boolean;
|
|
1758
1762
|
card_format: "TLCode" | "rfid48";
|
|
1759
1763
|
number_of_issued_cards: number;
|
|
1764
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
1765
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
1760
1766
|
overridden?: boolean | undefined;
|
|
1761
1767
|
card_holder?: string | undefined;
|
|
1762
1768
|
}>>;
|
|
@@ -1767,7 +1773,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1767
1773
|
card_number: string | null;
|
|
1768
1774
|
is_issued: boolean | null;
|
|
1769
1775
|
visionline_metadata?: {
|
|
1770
|
-
card_function_type: "guest" | "staff";
|
|
1771
1776
|
card_id: string;
|
|
1772
1777
|
cancelled: boolean;
|
|
1773
1778
|
discarded: boolean;
|
|
@@ -1776,6 +1781,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1776
1781
|
pending_auto_update: boolean;
|
|
1777
1782
|
card_format: "TLCode" | "rfid48";
|
|
1778
1783
|
number_of_issued_cards: number;
|
|
1784
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
1785
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
1779
1786
|
overridden?: boolean | undefined;
|
|
1780
1787
|
card_holder?: string | undefined;
|
|
1781
1788
|
} | undefined;
|
|
@@ -1786,7 +1793,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1786
1793
|
card_number: string | null;
|
|
1787
1794
|
is_issued: boolean | null;
|
|
1788
1795
|
visionline_metadata?: {
|
|
1789
|
-
card_function_type: "guest" | "staff";
|
|
1790
1796
|
card_id: string;
|
|
1791
1797
|
cancelled: boolean;
|
|
1792
1798
|
discarded: boolean;
|
|
@@ -1795,6 +1801,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1795
1801
|
pending_auto_update: boolean;
|
|
1796
1802
|
card_format: "TLCode" | "rfid48";
|
|
1797
1803
|
number_of_issued_cards: number;
|
|
1804
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
1805
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
1798
1806
|
overridden?: boolean | undefined;
|
|
1799
1807
|
card_holder?: string | undefined;
|
|
1800
1808
|
} | undefined;
|
|
@@ -2110,7 +2118,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2110
2118
|
card_number: string | null;
|
|
2111
2119
|
is_issued: boolean | null;
|
|
2112
2120
|
visionline_metadata?: {
|
|
2113
|
-
card_function_type: "guest" | "staff";
|
|
2114
2121
|
card_id: string;
|
|
2115
2122
|
cancelled: boolean;
|
|
2116
2123
|
discarded: boolean;
|
|
@@ -2119,6 +2126,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2119
2126
|
pending_auto_update: boolean;
|
|
2120
2127
|
card_format: "TLCode" | "rfid48";
|
|
2121
2128
|
number_of_issued_cards: number;
|
|
2129
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2130
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2122
2131
|
overridden?: boolean | undefined;
|
|
2123
2132
|
card_holder?: string | undefined;
|
|
2124
2133
|
} | undefined;
|
|
@@ -2212,7 +2221,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2212
2221
|
card_number: string | null;
|
|
2213
2222
|
is_issued: boolean | null;
|
|
2214
2223
|
visionline_metadata?: {
|
|
2215
|
-
card_function_type: "guest" | "staff";
|
|
2216
2224
|
card_id: string;
|
|
2217
2225
|
cancelled: boolean;
|
|
2218
2226
|
discarded: boolean;
|
|
@@ -2221,6 +2229,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2221
2229
|
pending_auto_update: boolean;
|
|
2222
2230
|
card_format: "TLCode" | "rfid48";
|
|
2223
2231
|
number_of_issued_cards: number;
|
|
2232
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2233
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2224
2234
|
overridden?: boolean | undefined;
|
|
2225
2235
|
card_holder?: string | undefined;
|
|
2226
2236
|
} | undefined;
|
|
@@ -2319,7 +2329,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2319
2329
|
card_number: string | null;
|
|
2320
2330
|
is_issued: boolean | null;
|
|
2321
2331
|
visionline_metadata?: {
|
|
2322
|
-
card_function_type: "guest" | "staff";
|
|
2323
2332
|
card_id: string;
|
|
2324
2333
|
cancelled: boolean;
|
|
2325
2334
|
discarded: boolean;
|
|
@@ -2328,6 +2337,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2328
2337
|
pending_auto_update: boolean;
|
|
2329
2338
|
card_format: "TLCode" | "rfid48";
|
|
2330
2339
|
number_of_issued_cards: number;
|
|
2340
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2341
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2331
2342
|
overridden?: boolean | undefined;
|
|
2332
2343
|
card_holder?: string | undefined;
|
|
2333
2344
|
} | undefined;
|
|
@@ -2427,7 +2438,6 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2427
2438
|
card_number: string | null;
|
|
2428
2439
|
is_issued: boolean | null;
|
|
2429
2440
|
visionline_metadata?: {
|
|
2430
|
-
card_function_type: "guest" | "staff";
|
|
2431
2441
|
card_id: string;
|
|
2432
2442
|
cancelled: boolean;
|
|
2433
2443
|
discarded: boolean;
|
|
@@ -2436,6 +2446,8 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2436
2446
|
pending_auto_update: boolean;
|
|
2437
2447
|
card_format: "TLCode" | "rfid48";
|
|
2438
2448
|
number_of_issued_cards: number;
|
|
2449
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
2450
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
2439
2451
|
overridden?: boolean | undefined;
|
|
2440
2452
|
card_holder?: string | undefined;
|
|
2441
2453
|
} | undefined;
|
|
@@ -11276,6 +11288,10 @@ declare const _default: {
|
|
|
11276
11288
|
description: string;
|
|
11277
11289
|
type: string;
|
|
11278
11290
|
};
|
|
11291
|
+
is_credential_manager: {
|
|
11292
|
+
description: string;
|
|
11293
|
+
type: string;
|
|
11294
|
+
};
|
|
11279
11295
|
name: {
|
|
11280
11296
|
description: string;
|
|
11281
11297
|
type: string;
|
|
@@ -11678,22 +11694,32 @@ declare const _default: {
|
|
|
11678
11694
|
enum: string[];
|
|
11679
11695
|
type: string;
|
|
11680
11696
|
};
|
|
11681
|
-
card_function_type: {
|
|
11682
|
-
enum: string[];
|
|
11683
|
-
type: string;
|
|
11684
|
-
};
|
|
11685
11697
|
card_holder: {
|
|
11686
11698
|
type: string;
|
|
11687
11699
|
};
|
|
11688
11700
|
card_id: {
|
|
11689
11701
|
type: string;
|
|
11690
11702
|
};
|
|
11703
|
+
common_acs_entrance_ids: {
|
|
11704
|
+
items: {
|
|
11705
|
+
format: string;
|
|
11706
|
+
type: string;
|
|
11707
|
+
};
|
|
11708
|
+
type: string;
|
|
11709
|
+
};
|
|
11691
11710
|
discarded: {
|
|
11692
11711
|
type: string;
|
|
11693
11712
|
};
|
|
11694
11713
|
expired: {
|
|
11695
11714
|
type: string;
|
|
11696
11715
|
};
|
|
11716
|
+
guest_acs_entrance_ids: {
|
|
11717
|
+
items: {
|
|
11718
|
+
format: string;
|
|
11719
|
+
type: string;
|
|
11720
|
+
};
|
|
11721
|
+
type: string;
|
|
11722
|
+
};
|
|
11697
11723
|
number_of_issued_cards: {
|
|
11698
11724
|
format: string;
|
|
11699
11725
|
type: string;
|
|
@@ -19404,6 +19430,7 @@ declare const _default: {
|
|
|
19404
19430
|
};
|
|
19405
19431
|
'/acs/entrances/get': {
|
|
19406
19432
|
post: {
|
|
19433
|
+
description: string;
|
|
19407
19434
|
operationId: string;
|
|
19408
19435
|
requestBody: {
|
|
19409
19436
|
content: {
|
|
@@ -19475,6 +19502,7 @@ declare const _default: {
|
|
|
19475
19502
|
'x-fern-sdk-method-name': string;
|
|
19476
19503
|
'x-fern-sdk-return-value': string;
|
|
19477
19504
|
'x-response-key': string;
|
|
19505
|
+
'x-title': string;
|
|
19478
19506
|
};
|
|
19479
19507
|
};
|
|
19480
19508
|
'/acs/entrances/grant_access': {
|
|
@@ -19546,6 +19574,7 @@ declare const _default: {
|
|
|
19546
19574
|
};
|
|
19547
19575
|
'/acs/entrances/list': {
|
|
19548
19576
|
post: {
|
|
19577
|
+
description: string;
|
|
19549
19578
|
operationId: string;
|
|
19550
19579
|
requestBody: {
|
|
19551
19580
|
content: {
|
|
@@ -19623,10 +19652,12 @@ declare const _default: {
|
|
|
19623
19652
|
'x-fern-sdk-method-name': string;
|
|
19624
19653
|
'x-fern-sdk-return-value': string;
|
|
19625
19654
|
'x-response-key': string;
|
|
19655
|
+
'x-title': string;
|
|
19626
19656
|
};
|
|
19627
19657
|
};
|
|
19628
19658
|
'/acs/entrances/list_credentials_with_access': {
|
|
19629
19659
|
post: {
|
|
19660
|
+
description: string;
|
|
19630
19661
|
operationId: string;
|
|
19631
19662
|
requestBody: {
|
|
19632
19663
|
content: {
|
|
@@ -19708,6 +19739,7 @@ declare const _default: {
|
|
|
19708
19739
|
'x-fern-sdk-method-name': string;
|
|
19709
19740
|
'x-fern-sdk-return-value': string;
|
|
19710
19741
|
'x-response-key': string;
|
|
19742
|
+
'x-title': string;
|
|
19711
19743
|
};
|
|
19712
19744
|
};
|
|
19713
19745
|
'/acs/systems/get': {
|
|
@@ -29920,7 +29952,6 @@ interface Routes {
|
|
|
29920
29952
|
card_number: string | null;
|
|
29921
29953
|
visionline_metadata?: {
|
|
29922
29954
|
card_id: string;
|
|
29923
|
-
card_function_type: 'guest' | 'staff';
|
|
29924
29955
|
cancelled: boolean;
|
|
29925
29956
|
discarded: boolean;
|
|
29926
29957
|
expired: boolean;
|
|
@@ -29930,6 +29961,8 @@ interface Routes {
|
|
|
29930
29961
|
card_format: 'TLCode' | 'rfid48';
|
|
29931
29962
|
card_holder?: string | undefined;
|
|
29932
29963
|
number_of_issued_cards: number;
|
|
29964
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
29965
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
29933
29966
|
} | undefined;
|
|
29934
29967
|
};
|
|
29935
29968
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -30632,7 +30665,6 @@ interface Routes {
|
|
|
30632
30665
|
card_number: string | null;
|
|
30633
30666
|
visionline_metadata?: {
|
|
30634
30667
|
card_id: string;
|
|
30635
|
-
card_function_type: 'guest' | 'staff';
|
|
30636
30668
|
cancelled: boolean;
|
|
30637
30669
|
discarded: boolean;
|
|
30638
30670
|
expired: boolean;
|
|
@@ -30642,6 +30674,8 @@ interface Routes {
|
|
|
30642
30674
|
card_format: 'TLCode' | 'rfid48';
|
|
30643
30675
|
card_holder?: string | undefined;
|
|
30644
30676
|
number_of_issued_cards: number;
|
|
30677
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
30678
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
30645
30679
|
} | undefined;
|
|
30646
30680
|
};
|
|
30647
30681
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -31501,7 +31535,6 @@ interface Routes {
|
|
|
31501
31535
|
card_number: string | null;
|
|
31502
31536
|
visionline_metadata?: {
|
|
31503
31537
|
card_id: string;
|
|
31504
|
-
card_function_type: 'guest' | 'staff';
|
|
31505
31538
|
cancelled: boolean;
|
|
31506
31539
|
discarded: boolean;
|
|
31507
31540
|
expired: boolean;
|
|
@@ -31511,6 +31544,8 @@ interface Routes {
|
|
|
31511
31544
|
card_format: 'TLCode' | 'rfid48';
|
|
31512
31545
|
card_holder?: string | undefined;
|
|
31513
31546
|
number_of_issued_cards: number;
|
|
31547
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
31548
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
31514
31549
|
} | undefined;
|
|
31515
31550
|
};
|
|
31516
31551
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -32200,7 +32235,6 @@ interface Routes {
|
|
|
32200
32235
|
card_number: string | null;
|
|
32201
32236
|
visionline_metadata?: {
|
|
32202
32237
|
card_id: string;
|
|
32203
|
-
card_function_type: 'guest' | 'staff';
|
|
32204
32238
|
cancelled: boolean;
|
|
32205
32239
|
discarded: boolean;
|
|
32206
32240
|
expired: boolean;
|
|
@@ -32210,6 +32244,8 @@ interface Routes {
|
|
|
32210
32244
|
card_format: 'TLCode' | 'rfid48';
|
|
32211
32245
|
card_holder?: string | undefined;
|
|
32212
32246
|
number_of_issued_cards: number;
|
|
32247
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
32248
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
32213
32249
|
} | undefined;
|
|
32214
32250
|
};
|
|
32215
32251
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -33643,7 +33679,6 @@ interface Routes {
|
|
|
33643
33679
|
card_number: string | null;
|
|
33644
33680
|
visionline_metadata?: {
|
|
33645
33681
|
card_id: string;
|
|
33646
|
-
card_function_type: 'guest' | 'staff';
|
|
33647
33682
|
cancelled: boolean;
|
|
33648
33683
|
discarded: boolean;
|
|
33649
33684
|
expired: boolean;
|
|
@@ -33653,6 +33688,8 @@ interface Routes {
|
|
|
33653
33688
|
card_format: 'TLCode' | 'rfid48';
|
|
33654
33689
|
card_holder?: string | undefined;
|
|
33655
33690
|
number_of_issued_cards: number;
|
|
33691
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
33692
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
33656
33693
|
} | undefined;
|
|
33657
33694
|
};
|
|
33658
33695
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -34668,7 +34705,6 @@ interface Routes {
|
|
|
34668
34705
|
card_number: string | null;
|
|
34669
34706
|
visionline_metadata?: {
|
|
34670
34707
|
card_id: string;
|
|
34671
|
-
card_function_type: 'guest' | 'staff';
|
|
34672
34708
|
cancelled: boolean;
|
|
34673
34709
|
discarded: boolean;
|
|
34674
34710
|
expired: boolean;
|
|
@@ -34678,6 +34714,8 @@ interface Routes {
|
|
|
34678
34714
|
card_format: 'TLCode' | 'rfid48';
|
|
34679
34715
|
card_holder?: string | undefined;
|
|
34680
34716
|
number_of_issued_cards: number;
|
|
34717
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
34718
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
34681
34719
|
} | undefined;
|
|
34682
34720
|
};
|
|
34683
34721
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -35330,6 +35368,8 @@ interface Routes {
|
|
|
35330
35368
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35331
35369
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35332
35370
|
external_type_display_name?: string | undefined;
|
|
35371
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35372
|
+
is_credential_manager: boolean;
|
|
35333
35373
|
visionline_metadata?: {
|
|
35334
35374
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35335
35375
|
mobile_access_uuid: string;
|
|
@@ -35431,6 +35471,8 @@ interface Routes {
|
|
|
35431
35471
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35432
35472
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35433
35473
|
external_type_display_name?: string | undefined;
|
|
35474
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35475
|
+
is_credential_manager: boolean;
|
|
35434
35476
|
visionline_metadata?: {
|
|
35435
35477
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35436
35478
|
mobile_access_uuid: string;
|
|
@@ -35532,6 +35574,8 @@ interface Routes {
|
|
|
35532
35574
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35533
35575
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35534
35576
|
external_type_display_name?: string | undefined;
|
|
35577
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35578
|
+
is_credential_manager: boolean;
|
|
35535
35579
|
visionline_metadata?: {
|
|
35536
35580
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35537
35581
|
mobile_access_uuid: string;
|
|
@@ -36387,7 +36431,6 @@ interface Routes {
|
|
|
36387
36431
|
card_number: string | null;
|
|
36388
36432
|
visionline_metadata?: {
|
|
36389
36433
|
card_id: string;
|
|
36390
|
-
card_function_type: 'guest' | 'staff';
|
|
36391
36434
|
cancelled: boolean;
|
|
36392
36435
|
discarded: boolean;
|
|
36393
36436
|
expired: boolean;
|
|
@@ -36397,6 +36440,8 @@ interface Routes {
|
|
|
36397
36440
|
card_format: 'TLCode' | 'rfid48';
|
|
36398
36441
|
card_holder?: string | undefined;
|
|
36399
36442
|
number_of_issued_cards: number;
|
|
36443
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
36444
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
36400
36445
|
} | undefined;
|
|
36401
36446
|
};
|
|
36402
36447
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -36948,7 +36993,6 @@ interface Routes {
|
|
|
36948
36993
|
card_number: string | null;
|
|
36949
36994
|
visionline_metadata?: {
|
|
36950
36995
|
card_id: string;
|
|
36951
|
-
card_function_type: 'guest' | 'staff';
|
|
36952
36996
|
cancelled: boolean;
|
|
36953
36997
|
discarded: boolean;
|
|
36954
36998
|
expired: boolean;
|
|
@@ -36958,6 +37002,8 @@ interface Routes {
|
|
|
36958
37002
|
card_format: 'TLCode' | 'rfid48';
|
|
36959
37003
|
card_holder?: string | undefined;
|
|
36960
37004
|
number_of_issued_cards: number;
|
|
37005
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
37006
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
36961
37007
|
} | undefined;
|
|
36962
37008
|
};
|
|
36963
37009
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -41061,7 +41107,6 @@ interface Routes {
|
|
|
41061
41107
|
card_number: string | null;
|
|
41062
41108
|
visionline_metadata?: {
|
|
41063
41109
|
card_id: string;
|
|
41064
|
-
card_function_type: 'guest' | 'staff';
|
|
41065
41110
|
cancelled: boolean;
|
|
41066
41111
|
discarded: boolean;
|
|
41067
41112
|
expired: boolean;
|
|
@@ -41071,6 +41116,8 @@ interface Routes {
|
|
|
41071
41116
|
card_format: 'TLCode' | 'rfid48';
|
|
41072
41117
|
card_holder?: string | undefined;
|
|
41073
41118
|
number_of_issued_cards: number;
|
|
41119
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
41120
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
41074
41121
|
} | undefined;
|
|
41075
41122
|
};
|
|
41076
41123
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -41623,7 +41670,6 @@ interface Routes {
|
|
|
41623
41670
|
card_number: string | null;
|
|
41624
41671
|
visionline_metadata?: {
|
|
41625
41672
|
card_id: string;
|
|
41626
|
-
card_function_type: 'guest' | 'staff';
|
|
41627
41673
|
cancelled: boolean;
|
|
41628
41674
|
discarded: boolean;
|
|
41629
41675
|
expired: boolean;
|
|
@@ -41633,6 +41679,8 @@ interface Routes {
|
|
|
41633
41679
|
card_format: 'TLCode' | 'rfid48';
|
|
41634
41680
|
card_holder?: string | undefined;
|
|
41635
41681
|
number_of_issued_cards: number;
|
|
41682
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
41683
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
41636
41684
|
} | undefined;
|
|
41637
41685
|
};
|
|
41638
41686
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -43129,7 +43177,6 @@ interface Routes {
|
|
|
43129
43177
|
card_number: string | null;
|
|
43130
43178
|
visionline_metadata?: {
|
|
43131
43179
|
card_id: string;
|
|
43132
|
-
card_function_type: 'guest' | 'staff';
|
|
43133
43180
|
cancelled: boolean;
|
|
43134
43181
|
discarded: boolean;
|
|
43135
43182
|
expired: boolean;
|
|
@@ -43139,6 +43186,8 @@ interface Routes {
|
|
|
43139
43186
|
card_format: 'TLCode' | 'rfid48';
|
|
43140
43187
|
card_holder?: string | undefined;
|
|
43141
43188
|
number_of_issued_cards: number;
|
|
43189
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
43190
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
43142
43191
|
} | undefined;
|
|
43143
43192
|
};
|
|
43144
43193
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -43701,7 +43750,6 @@ interface Routes {
|
|
|
43701
43750
|
card_number: string | null;
|
|
43702
43751
|
visionline_metadata?: {
|
|
43703
43752
|
card_id: string;
|
|
43704
|
-
card_function_type: 'guest' | 'staff';
|
|
43705
43753
|
cancelled: boolean;
|
|
43706
43754
|
discarded: boolean;
|
|
43707
43755
|
expired: boolean;
|
|
@@ -43711,6 +43759,8 @@ interface Routes {
|
|
|
43711
43759
|
card_format: 'TLCode' | 'rfid48';
|
|
43712
43760
|
card_holder?: string | undefined;
|
|
43713
43761
|
number_of_issued_cards: number;
|
|
43762
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
43763
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
43714
43764
|
} | undefined;
|
|
43715
43765
|
};
|
|
43716
43766
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -44312,7 +44362,6 @@ interface Routes {
|
|
|
44312
44362
|
card_number: string | null;
|
|
44313
44363
|
visionline_metadata?: {
|
|
44314
44364
|
card_id: string;
|
|
44315
|
-
card_function_type: 'guest' | 'staff';
|
|
44316
44365
|
cancelled: boolean;
|
|
44317
44366
|
discarded: boolean;
|
|
44318
44367
|
expired: boolean;
|
|
@@ -44322,6 +44371,8 @@ interface Routes {
|
|
|
44322
44371
|
card_format: 'TLCode' | 'rfid48';
|
|
44323
44372
|
card_holder?: string | undefined;
|
|
44324
44373
|
number_of_issued_cards: number;
|
|
44374
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
44375
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
44325
44376
|
} | undefined;
|
|
44326
44377
|
};
|
|
44327
44378
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -45056,7 +45107,6 @@ interface Routes {
|
|
|
45056
45107
|
card_number: string | null;
|
|
45057
45108
|
visionline_metadata?: {
|
|
45058
45109
|
card_id: string;
|
|
45059
|
-
card_function_type: 'guest' | 'staff';
|
|
45060
45110
|
cancelled: boolean;
|
|
45061
45111
|
discarded: boolean;
|
|
45062
45112
|
expired: boolean;
|
|
@@ -45066,6 +45116,8 @@ interface Routes {
|
|
|
45066
45116
|
card_format: 'TLCode' | 'rfid48';
|
|
45067
45117
|
card_holder?: string | undefined;
|
|
45068
45118
|
number_of_issued_cards: number;
|
|
45119
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
45120
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
45069
45121
|
} | undefined;
|
|
45070
45122
|
};
|
|
45071
45123
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -45620,7 +45672,6 @@ interface Routes {
|
|
|
45620
45672
|
card_number: string | null;
|
|
45621
45673
|
visionline_metadata?: {
|
|
45622
45674
|
card_id: string;
|
|
45623
|
-
card_function_type: 'guest' | 'staff';
|
|
45624
45675
|
cancelled: boolean;
|
|
45625
45676
|
discarded: boolean;
|
|
45626
45677
|
expired: boolean;
|
|
@@ -45630,6 +45681,8 @@ interface Routes {
|
|
|
45630
45681
|
card_format: 'TLCode' | 'rfid48';
|
|
45631
45682
|
card_holder?: string | undefined;
|
|
45632
45683
|
number_of_issued_cards: number;
|
|
45684
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
45685
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
45633
45686
|
} | undefined;
|
|
45634
45687
|
};
|
|
45635
45688
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -46669,7 +46722,6 @@ interface Routes {
|
|
|
46669
46722
|
card_number: string | null;
|
|
46670
46723
|
visionline_metadata?: {
|
|
46671
46724
|
card_id: string;
|
|
46672
|
-
card_function_type: 'guest' | 'staff';
|
|
46673
46725
|
cancelled: boolean;
|
|
46674
46726
|
discarded: boolean;
|
|
46675
46727
|
expired: boolean;
|
|
@@ -46679,6 +46731,8 @@ interface Routes {
|
|
|
46679
46731
|
card_format: 'TLCode' | 'rfid48';
|
|
46680
46732
|
card_holder?: string | undefined;
|
|
46681
46733
|
number_of_issued_cards: number;
|
|
46734
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
46735
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
46682
46736
|
} | undefined;
|
|
46683
46737
|
};
|
|
46684
46738
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -47235,7 +47289,6 @@ interface Routes {
|
|
|
47235
47289
|
card_number: string | null;
|
|
47236
47290
|
visionline_metadata?: {
|
|
47237
47291
|
card_id: string;
|
|
47238
|
-
card_function_type: 'guest' | 'staff';
|
|
47239
47292
|
cancelled: boolean;
|
|
47240
47293
|
discarded: boolean;
|
|
47241
47294
|
expired: boolean;
|
|
@@ -47245,6 +47298,8 @@ interface Routes {
|
|
|
47245
47298
|
card_format: 'TLCode' | 'rfid48';
|
|
47246
47299
|
card_holder?: string | undefined;
|
|
47247
47300
|
number_of_issued_cards: number;
|
|
47301
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
47302
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
47248
47303
|
} | undefined;
|
|
47249
47304
|
};
|
|
47250
47305
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -48470,6 +48525,7 @@ interface Routes {
|
|
|
48470
48525
|
akiles_metadata?: {
|
|
48471
48526
|
gadget_name: string;
|
|
48472
48527
|
gadget_id: string;
|
|
48528
|
+
_member_group_id?: string | undefined;
|
|
48473
48529
|
} | undefined;
|
|
48474
48530
|
}) & ({
|
|
48475
48531
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48701,7 +48757,6 @@ interface Routes {
|
|
|
48701
48757
|
card_number: string | null;
|
|
48702
48758
|
visionline_metadata?: {
|
|
48703
48759
|
card_id: string;
|
|
48704
|
-
card_function_type: 'guest' | 'staff';
|
|
48705
48760
|
cancelled: boolean;
|
|
48706
48761
|
discarded: boolean;
|
|
48707
48762
|
expired: boolean;
|
|
@@ -48711,6 +48766,8 @@ interface Routes {
|
|
|
48711
48766
|
card_format: 'TLCode' | 'rfid48';
|
|
48712
48767
|
card_holder?: string | undefined;
|
|
48713
48768
|
number_of_issued_cards: number;
|
|
48769
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
48770
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
48714
48771
|
} | undefined;
|
|
48715
48772
|
};
|
|
48716
48773
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -49384,7 +49441,6 @@ interface Routes {
|
|
|
49384
49441
|
card_number: string | null;
|
|
49385
49442
|
visionline_metadata?: {
|
|
49386
49443
|
card_id: string;
|
|
49387
|
-
card_function_type: 'guest' | 'staff';
|
|
49388
49444
|
cancelled: boolean;
|
|
49389
49445
|
discarded: boolean;
|
|
49390
49446
|
expired: boolean;
|
|
@@ -49394,6 +49450,8 @@ interface Routes {
|
|
|
49394
49450
|
card_format: 'TLCode' | 'rfid48';
|
|
49395
49451
|
card_holder?: string | undefined;
|
|
49396
49452
|
number_of_issued_cards: number;
|
|
49453
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
49454
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
49397
49455
|
} | undefined;
|
|
49398
49456
|
};
|
|
49399
49457
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -50970,6 +51028,8 @@ interface Routes {
|
|
|
50970
51028
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
50971
51029
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
50972
51030
|
external_type_display_name?: string | undefined;
|
|
51031
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
51032
|
+
is_credential_manager: boolean;
|
|
50973
51033
|
visionline_metadata?: {
|
|
50974
51034
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
50975
51035
|
mobile_access_uuid: string;
|
|
@@ -51417,7 +51477,6 @@ interface Routes {
|
|
|
51417
51477
|
card_number: string | null;
|
|
51418
51478
|
visionline_metadata?: {
|
|
51419
51479
|
card_id: string;
|
|
51420
|
-
card_function_type: 'guest' | 'staff';
|
|
51421
51480
|
cancelled: boolean;
|
|
51422
51481
|
discarded: boolean;
|
|
51423
51482
|
expired: boolean;
|
|
@@ -51427,6 +51486,8 @@ interface Routes {
|
|
|
51427
51486
|
card_format: 'TLCode' | 'rfid48';
|
|
51428
51487
|
card_holder?: string | undefined;
|
|
51429
51488
|
number_of_issued_cards: number;
|
|
51489
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
51490
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
51430
51491
|
} | undefined;
|
|
51431
51492
|
};
|
|
51432
51493
|
/** Matching acs_credential currently encoded on this card. */
|