@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.
- package/dist/connect.cjs +35 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +150 -60
- package/lib/seam/connect/models/acs/acs-credential.d.ts +13 -8
- package/lib/seam/connect/models/acs/acs-credential.js +4 -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 +25 -16
- package/lib/seam/connect/models/action-attempts/scan-card.d.ts +25 -16
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -0
- package/lib/seam/connect/models/devices/device-metadata.js +4 -0
- package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +7 -0
- package/lib/seam/connect/models/devices/phone.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
- package/lib/seam/connect/openapi.d.ts +28 -4
- package/lib/seam/connect/openapi.js +21 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +82 -40
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credential.ts +4 -3
- package/src/lib/seam/connect/models/acs/acs-system.ts +3 -0
- package/src/lib/seam/connect/models/devices/device-metadata.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +25 -5
- package/src/lib/seam/connect/route-types.ts +82 -40
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;
|
|
@@ -1718,14 +1721,13 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
1718
1721
|
action_type: z.ZodLiteral<"SCAN_CARD">;
|
|
1719
1722
|
result: z.ZodObject<{
|
|
1720
1723
|
acs_credential_on_encoder: z.ZodObject<{
|
|
1721
|
-
created_at: z.ZodString
|
|
1724
|
+
created_at: z.ZodNullable<z.ZodString>;
|
|
1722
1725
|
is_issued: z.ZodNullable<z.ZodBoolean>;
|
|
1723
1726
|
starts_at: z.ZodNullable<z.ZodString>;
|
|
1724
1727
|
ends_at: z.ZodNullable<z.ZodString>;
|
|
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,17 +1761,18 @@ 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
|
}>>;
|
|
1763
1769
|
}, "strip", z.ZodTypeAny, {
|
|
1764
|
-
created_at: string;
|
|
1770
|
+
created_at: string | null;
|
|
1765
1771
|
starts_at: string | null;
|
|
1766
1772
|
ends_at: string | null;
|
|
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,17 +1781,18 @@ 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;
|
|
1782
1789
|
}, {
|
|
1783
|
-
created_at: string;
|
|
1790
|
+
created_at: string | null;
|
|
1784
1791
|
starts_at: string | null;
|
|
1785
1792
|
ends_at: string | null;
|
|
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;
|
|
@@ -2104,13 +2112,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2104
2112
|
}>]>>;
|
|
2105
2113
|
}, "strip", z.ZodTypeAny, {
|
|
2106
2114
|
acs_credential_on_encoder: {
|
|
2107
|
-
created_at: string;
|
|
2115
|
+
created_at: string | null;
|
|
2108
2116
|
starts_at: string | null;
|
|
2109
2117
|
ends_at: string | null;
|
|
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;
|
|
@@ -2206,13 +2215,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2206
2215
|
} | null;
|
|
2207
2216
|
}, {
|
|
2208
2217
|
acs_credential_on_encoder: {
|
|
2209
|
-
created_at: string;
|
|
2218
|
+
created_at: string | null;
|
|
2210
2219
|
starts_at: string | null;
|
|
2211
2220
|
ends_at: string | null;
|
|
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;
|
|
@@ -2313,13 +2323,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2313
2323
|
error: null;
|
|
2314
2324
|
result: {
|
|
2315
2325
|
acs_credential_on_encoder: {
|
|
2316
|
-
created_at: string;
|
|
2326
|
+
created_at: string | null;
|
|
2317
2327
|
starts_at: string | null;
|
|
2318
2328
|
ends_at: string | null;
|
|
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;
|
|
@@ -2421,13 +2432,12 @@ declare const action_attempt: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<z
|
|
|
2421
2432
|
error: null;
|
|
2422
2433
|
result: {
|
|
2423
2434
|
acs_credential_on_encoder: {
|
|
2424
|
-
created_at: string;
|
|
2435
|
+
created_at: string | null;
|
|
2425
2436
|
starts_at: string | null;
|
|
2426
2437
|
ends_at: string | null;
|
|
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;
|
|
@@ -4947,12 +4959,15 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4947
4959
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
4948
4960
|
gadget_name: z.ZodString;
|
|
4949
4961
|
gadget_id: z.ZodString;
|
|
4962
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
4950
4963
|
}, "strip", z.ZodTypeAny, {
|
|
4951
4964
|
gadget_name: string;
|
|
4952
4965
|
gadget_id: string;
|
|
4966
|
+
_member_group_id?: string | undefined;
|
|
4953
4967
|
}, {
|
|
4954
4968
|
gadget_name: string;
|
|
4955
4969
|
gadget_id: string;
|
|
4970
|
+
_member_group_id?: string | undefined;
|
|
4956
4971
|
}>>;
|
|
4957
4972
|
}, "strip", z.ZodTypeAny, {
|
|
4958
4973
|
august_metadata?: {
|
|
@@ -5162,6 +5177,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5162
5177
|
akiles_metadata?: {
|
|
5163
5178
|
gadget_name: string;
|
|
5164
5179
|
gadget_id: string;
|
|
5180
|
+
_member_group_id?: string | undefined;
|
|
5165
5181
|
} | undefined;
|
|
5166
5182
|
}, {
|
|
5167
5183
|
august_metadata?: {
|
|
@@ -5371,6 +5387,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5371
5387
|
akiles_metadata?: {
|
|
5372
5388
|
gadget_name: string;
|
|
5373
5389
|
gadget_id: string;
|
|
5390
|
+
_member_group_id?: string | undefined;
|
|
5374
5391
|
} | undefined;
|
|
5375
5392
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
5376
5393
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -6107,6 +6124,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6107
6124
|
akiles_metadata?: {
|
|
6108
6125
|
gadget_name: string;
|
|
6109
6126
|
gadget_id: string;
|
|
6127
|
+
_member_group_id?: string | undefined;
|
|
6110
6128
|
} | undefined;
|
|
6111
6129
|
} & {
|
|
6112
6130
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -6494,6 +6512,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6494
6512
|
akiles_metadata?: {
|
|
6495
6513
|
gadget_name: string;
|
|
6496
6514
|
gadget_id: string;
|
|
6515
|
+
_member_group_id?: string | undefined;
|
|
6497
6516
|
} | undefined;
|
|
6498
6517
|
} & {
|
|
6499
6518
|
_experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
|
|
@@ -7577,12 +7596,15 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7577
7596
|
akiles_metadata: z.ZodOptional<z.ZodObject<{
|
|
7578
7597
|
gadget_name: z.ZodString;
|
|
7579
7598
|
gadget_id: z.ZodString;
|
|
7599
|
+
_member_group_id: z.ZodOptional<z.ZodString>;
|
|
7580
7600
|
}, "strip", z.ZodTypeAny, {
|
|
7581
7601
|
gadget_name: string;
|
|
7582
7602
|
gadget_id: string;
|
|
7603
|
+
_member_group_id?: string | undefined;
|
|
7583
7604
|
}, {
|
|
7584
7605
|
gadget_name: string;
|
|
7585
7606
|
gadget_id: string;
|
|
7607
|
+
_member_group_id?: string | undefined;
|
|
7586
7608
|
}>>;
|
|
7587
7609
|
}, "strip", z.ZodTypeAny, {
|
|
7588
7610
|
august_metadata?: {
|
|
@@ -7792,6 +7814,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
7792
7814
|
akiles_metadata?: {
|
|
7793
7815
|
gadget_name: string;
|
|
7794
7816
|
gadget_id: string;
|
|
7817
|
+
_member_group_id?: string | undefined;
|
|
7795
7818
|
} | undefined;
|
|
7796
7819
|
}, {
|
|
7797
7820
|
august_metadata?: {
|
|
@@ -8001,6 +8024,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
8001
8024
|
akiles_metadata?: {
|
|
8002
8025
|
gadget_name: string;
|
|
8003
8026
|
gadget_id: string;
|
|
8027
|
+
_member_group_id?: string | undefined;
|
|
8004
8028
|
} | undefined;
|
|
8005
8029
|
}>>, z.ZodIntersection<z.ZodObject<z.objectUtil.extendShape<{
|
|
8006
8030
|
_experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
@@ -11264,6 +11288,10 @@ declare const _default: {
|
|
|
11264
11288
|
description: string;
|
|
11265
11289
|
type: string;
|
|
11266
11290
|
};
|
|
11291
|
+
is_credential_manager: {
|
|
11292
|
+
description: string;
|
|
11293
|
+
type: string;
|
|
11294
|
+
};
|
|
11267
11295
|
name: {
|
|
11268
11296
|
description: string;
|
|
11269
11297
|
type: string;
|
|
@@ -11638,6 +11666,7 @@ declare const _default: {
|
|
|
11638
11666
|
created_at: {
|
|
11639
11667
|
description: string;
|
|
11640
11668
|
format: string;
|
|
11669
|
+
nullable: boolean;
|
|
11641
11670
|
type: string;
|
|
11642
11671
|
};
|
|
11643
11672
|
ends_at: {
|
|
@@ -11665,22 +11694,32 @@ declare const _default: {
|
|
|
11665
11694
|
enum: string[];
|
|
11666
11695
|
type: string;
|
|
11667
11696
|
};
|
|
11668
|
-
card_function_type: {
|
|
11669
|
-
enum: string[];
|
|
11670
|
-
type: string;
|
|
11671
|
-
};
|
|
11672
11697
|
card_holder: {
|
|
11673
11698
|
type: string;
|
|
11674
11699
|
};
|
|
11675
11700
|
card_id: {
|
|
11676
11701
|
type: string;
|
|
11677
11702
|
};
|
|
11703
|
+
common_acs_entrance_ids: {
|
|
11704
|
+
items: {
|
|
11705
|
+
format: string;
|
|
11706
|
+
type: string;
|
|
11707
|
+
};
|
|
11708
|
+
type: string;
|
|
11709
|
+
};
|
|
11678
11710
|
discarded: {
|
|
11679
11711
|
type: string;
|
|
11680
11712
|
};
|
|
11681
11713
|
expired: {
|
|
11682
11714
|
type: string;
|
|
11683
11715
|
};
|
|
11716
|
+
guest_acs_entrance_ids: {
|
|
11717
|
+
items: {
|
|
11718
|
+
format: string;
|
|
11719
|
+
type: string;
|
|
11720
|
+
};
|
|
11721
|
+
type: string;
|
|
11722
|
+
};
|
|
11684
11723
|
number_of_issued_cards: {
|
|
11685
11724
|
format: string;
|
|
11686
11725
|
type: string;
|
|
@@ -12688,6 +12727,9 @@ declare const _default: {
|
|
|
12688
12727
|
properties: {
|
|
12689
12728
|
akiles_metadata: {
|
|
12690
12729
|
properties: {
|
|
12730
|
+
_member_group_id: {
|
|
12731
|
+
type: string;
|
|
12732
|
+
};
|
|
12691
12733
|
gadget_id: {
|
|
12692
12734
|
type: string;
|
|
12693
12735
|
};
|
|
@@ -19388,6 +19430,7 @@ declare const _default: {
|
|
|
19388
19430
|
};
|
|
19389
19431
|
'/acs/entrances/get': {
|
|
19390
19432
|
post: {
|
|
19433
|
+
description: string;
|
|
19391
19434
|
operationId: string;
|
|
19392
19435
|
requestBody: {
|
|
19393
19436
|
content: {
|
|
@@ -19459,6 +19502,7 @@ declare const _default: {
|
|
|
19459
19502
|
'x-fern-sdk-method-name': string;
|
|
19460
19503
|
'x-fern-sdk-return-value': string;
|
|
19461
19504
|
'x-response-key': string;
|
|
19505
|
+
'x-title': string;
|
|
19462
19506
|
};
|
|
19463
19507
|
};
|
|
19464
19508
|
'/acs/entrances/grant_access': {
|
|
@@ -19530,6 +19574,7 @@ declare const _default: {
|
|
|
19530
19574
|
};
|
|
19531
19575
|
'/acs/entrances/list': {
|
|
19532
19576
|
post: {
|
|
19577
|
+
description: string;
|
|
19533
19578
|
operationId: string;
|
|
19534
19579
|
requestBody: {
|
|
19535
19580
|
content: {
|
|
@@ -19607,10 +19652,12 @@ declare const _default: {
|
|
|
19607
19652
|
'x-fern-sdk-method-name': string;
|
|
19608
19653
|
'x-fern-sdk-return-value': string;
|
|
19609
19654
|
'x-response-key': string;
|
|
19655
|
+
'x-title': string;
|
|
19610
19656
|
};
|
|
19611
19657
|
};
|
|
19612
19658
|
'/acs/entrances/list_credentials_with_access': {
|
|
19613
19659
|
post: {
|
|
19660
|
+
description: string;
|
|
19614
19661
|
operationId: string;
|
|
19615
19662
|
requestBody: {
|
|
19616
19663
|
content: {
|
|
@@ -19692,6 +19739,7 @@ declare const _default: {
|
|
|
19692
19739
|
'x-fern-sdk-method-name': string;
|
|
19693
19740
|
'x-fern-sdk-return-value': string;
|
|
19694
19741
|
'x-response-key': string;
|
|
19742
|
+
'x-title': string;
|
|
19695
19743
|
};
|
|
19696
19744
|
};
|
|
19697
19745
|
'/acs/systems/get': {
|
|
@@ -29894,7 +29942,7 @@ interface Routes {
|
|
|
29894
29942
|
/** Snapshot of the card data read from the physical encoder. */
|
|
29895
29943
|
acs_credential_on_encoder: {
|
|
29896
29944
|
/** Date and time the credential was created. */
|
|
29897
|
-
created_at: string;
|
|
29945
|
+
created_at: string | null;
|
|
29898
29946
|
is_issued: boolean | null;
|
|
29899
29947
|
/** Date and time the credential will become useable. */
|
|
29900
29948
|
starts_at: string | null;
|
|
@@ -29904,7 +29952,6 @@ interface Routes {
|
|
|
29904
29952
|
card_number: string | null;
|
|
29905
29953
|
visionline_metadata?: {
|
|
29906
29954
|
card_id: string;
|
|
29907
|
-
card_function_type: 'guest' | 'staff';
|
|
29908
29955
|
cancelled: boolean;
|
|
29909
29956
|
discarded: boolean;
|
|
29910
29957
|
expired: boolean;
|
|
@@ -29914,6 +29961,8 @@ interface Routes {
|
|
|
29914
29961
|
card_format: 'TLCode' | 'rfid48';
|
|
29915
29962
|
card_holder?: string | undefined;
|
|
29916
29963
|
number_of_issued_cards: number;
|
|
29964
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
29965
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
29917
29966
|
} | undefined;
|
|
29918
29967
|
};
|
|
29919
29968
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -30606,7 +30655,7 @@ interface Routes {
|
|
|
30606
30655
|
/** Snapshot of the card data read from the physical encoder. */
|
|
30607
30656
|
acs_credential_on_encoder: {
|
|
30608
30657
|
/** Date and time the credential was created. */
|
|
30609
|
-
created_at: string;
|
|
30658
|
+
created_at: string | null;
|
|
30610
30659
|
is_issued: boolean | null;
|
|
30611
30660
|
/** Date and time the credential will become useable. */
|
|
30612
30661
|
starts_at: string | null;
|
|
@@ -30616,7 +30665,6 @@ interface Routes {
|
|
|
30616
30665
|
card_number: string | null;
|
|
30617
30666
|
visionline_metadata?: {
|
|
30618
30667
|
card_id: string;
|
|
30619
|
-
card_function_type: 'guest' | 'staff';
|
|
30620
30668
|
cancelled: boolean;
|
|
30621
30669
|
discarded: boolean;
|
|
30622
30670
|
expired: boolean;
|
|
@@ -30626,6 +30674,8 @@ interface Routes {
|
|
|
30626
30674
|
card_format: 'TLCode' | 'rfid48';
|
|
30627
30675
|
card_holder?: string | undefined;
|
|
30628
30676
|
number_of_issued_cards: number;
|
|
30677
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
30678
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
30629
30679
|
} | undefined;
|
|
30630
30680
|
};
|
|
30631
30681
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -31475,7 +31525,7 @@ interface Routes {
|
|
|
31475
31525
|
/** Snapshot of the card data read from the physical encoder. */
|
|
31476
31526
|
acs_credential_on_encoder: {
|
|
31477
31527
|
/** Date and time the credential was created. */
|
|
31478
|
-
created_at: string;
|
|
31528
|
+
created_at: string | null;
|
|
31479
31529
|
is_issued: boolean | null;
|
|
31480
31530
|
/** Date and time the credential will become useable. */
|
|
31481
31531
|
starts_at: string | null;
|
|
@@ -31485,7 +31535,6 @@ interface Routes {
|
|
|
31485
31535
|
card_number: string | null;
|
|
31486
31536
|
visionline_metadata?: {
|
|
31487
31537
|
card_id: string;
|
|
31488
|
-
card_function_type: 'guest' | 'staff';
|
|
31489
31538
|
cancelled: boolean;
|
|
31490
31539
|
discarded: boolean;
|
|
31491
31540
|
expired: boolean;
|
|
@@ -31495,6 +31544,8 @@ interface Routes {
|
|
|
31495
31544
|
card_format: 'TLCode' | 'rfid48';
|
|
31496
31545
|
card_holder?: string | undefined;
|
|
31497
31546
|
number_of_issued_cards: number;
|
|
31547
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
31548
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
31498
31549
|
} | undefined;
|
|
31499
31550
|
};
|
|
31500
31551
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -32174,7 +32225,7 @@ interface Routes {
|
|
|
32174
32225
|
/** Snapshot of the card data read from the physical encoder. */
|
|
32175
32226
|
acs_credential_on_encoder: {
|
|
32176
32227
|
/** Date and time the credential was created. */
|
|
32177
|
-
created_at: string;
|
|
32228
|
+
created_at: string | null;
|
|
32178
32229
|
is_issued: boolean | null;
|
|
32179
32230
|
/** Date and time the credential will become useable. */
|
|
32180
32231
|
starts_at: string | null;
|
|
@@ -32184,7 +32235,6 @@ interface Routes {
|
|
|
32184
32235
|
card_number: string | null;
|
|
32185
32236
|
visionline_metadata?: {
|
|
32186
32237
|
card_id: string;
|
|
32187
|
-
card_function_type: 'guest' | 'staff';
|
|
32188
32238
|
cancelled: boolean;
|
|
32189
32239
|
discarded: boolean;
|
|
32190
32240
|
expired: boolean;
|
|
@@ -32194,6 +32244,8 @@ interface Routes {
|
|
|
32194
32244
|
card_format: 'TLCode' | 'rfid48';
|
|
32195
32245
|
card_holder?: string | undefined;
|
|
32196
32246
|
number_of_issued_cards: number;
|
|
32247
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
32248
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
32197
32249
|
} | undefined;
|
|
32198
32250
|
};
|
|
32199
32251
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -33617,7 +33669,7 @@ interface Routes {
|
|
|
33617
33669
|
/** Snapshot of the card data read from the physical encoder. */
|
|
33618
33670
|
acs_credential_on_encoder: {
|
|
33619
33671
|
/** Date and time the credential was created. */
|
|
33620
|
-
created_at: string;
|
|
33672
|
+
created_at: string | null;
|
|
33621
33673
|
is_issued: boolean | null;
|
|
33622
33674
|
/** Date and time the credential will become useable. */
|
|
33623
33675
|
starts_at: string | null;
|
|
@@ -33627,7 +33679,6 @@ interface Routes {
|
|
|
33627
33679
|
card_number: string | null;
|
|
33628
33680
|
visionline_metadata?: {
|
|
33629
33681
|
card_id: string;
|
|
33630
|
-
card_function_type: 'guest' | 'staff';
|
|
33631
33682
|
cancelled: boolean;
|
|
33632
33683
|
discarded: boolean;
|
|
33633
33684
|
expired: boolean;
|
|
@@ -33637,6 +33688,8 @@ interface Routes {
|
|
|
33637
33688
|
card_format: 'TLCode' | 'rfid48';
|
|
33638
33689
|
card_holder?: string | undefined;
|
|
33639
33690
|
number_of_issued_cards: number;
|
|
33691
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
33692
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
33640
33693
|
} | undefined;
|
|
33641
33694
|
};
|
|
33642
33695
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -34417,6 +34470,7 @@ interface Routes {
|
|
|
34417
34470
|
akiles_metadata?: {
|
|
34418
34471
|
gadget_name: string;
|
|
34419
34472
|
gadget_id: string;
|
|
34473
|
+
_member_group_id?: string | undefined;
|
|
34420
34474
|
} | undefined;
|
|
34421
34475
|
}) & ({
|
|
34422
34476
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -34641,7 +34695,7 @@ interface Routes {
|
|
|
34641
34695
|
/** Snapshot of the card data read from the physical encoder. */
|
|
34642
34696
|
acs_credential_on_encoder: {
|
|
34643
34697
|
/** Date and time the credential was created. */
|
|
34644
|
-
created_at: string;
|
|
34698
|
+
created_at: string | null;
|
|
34645
34699
|
is_issued: boolean | null;
|
|
34646
34700
|
/** Date and time the credential will become useable. */
|
|
34647
34701
|
starts_at: string | null;
|
|
@@ -34651,7 +34705,6 @@ interface Routes {
|
|
|
34651
34705
|
card_number: string | null;
|
|
34652
34706
|
visionline_metadata?: {
|
|
34653
34707
|
card_id: string;
|
|
34654
|
-
card_function_type: 'guest' | 'staff';
|
|
34655
34708
|
cancelled: boolean;
|
|
34656
34709
|
discarded: boolean;
|
|
34657
34710
|
expired: boolean;
|
|
@@ -34661,6 +34714,8 @@ interface Routes {
|
|
|
34661
34714
|
card_format: 'TLCode' | 'rfid48';
|
|
34662
34715
|
card_holder?: string | undefined;
|
|
34663
34716
|
number_of_issued_cards: number;
|
|
34717
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
34718
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
34664
34719
|
} | undefined;
|
|
34665
34720
|
};
|
|
34666
34721
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -35313,6 +35368,8 @@ interface Routes {
|
|
|
35313
35368
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35314
35369
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35315
35370
|
external_type_display_name?: string | undefined;
|
|
35371
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35372
|
+
is_credential_manager: boolean;
|
|
35316
35373
|
visionline_metadata?: {
|
|
35317
35374
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35318
35375
|
mobile_access_uuid: string;
|
|
@@ -35414,6 +35471,8 @@ interface Routes {
|
|
|
35414
35471
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35415
35472
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35416
35473
|
external_type_display_name?: string | undefined;
|
|
35474
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35475
|
+
is_credential_manager: boolean;
|
|
35417
35476
|
visionline_metadata?: {
|
|
35418
35477
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35419
35478
|
mobile_access_uuid: string;
|
|
@@ -35515,6 +35574,8 @@ interface Routes {
|
|
|
35515
35574
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
35516
35575
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
35517
35576
|
external_type_display_name?: string | undefined;
|
|
35577
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
35578
|
+
is_credential_manager: boolean;
|
|
35518
35579
|
visionline_metadata?: {
|
|
35519
35580
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
35520
35581
|
mobile_access_uuid: string;
|
|
@@ -36360,7 +36421,7 @@ interface Routes {
|
|
|
36360
36421
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36361
36422
|
acs_credential_on_encoder: {
|
|
36362
36423
|
/** Date and time the credential was created. */
|
|
36363
|
-
created_at: string;
|
|
36424
|
+
created_at: string | null;
|
|
36364
36425
|
is_issued: boolean | null;
|
|
36365
36426
|
/** Date and time the credential will become useable. */
|
|
36366
36427
|
starts_at: string | null;
|
|
@@ -36370,7 +36431,6 @@ interface Routes {
|
|
|
36370
36431
|
card_number: string | null;
|
|
36371
36432
|
visionline_metadata?: {
|
|
36372
36433
|
card_id: string;
|
|
36373
|
-
card_function_type: 'guest' | 'staff';
|
|
36374
36434
|
cancelled: boolean;
|
|
36375
36435
|
discarded: boolean;
|
|
36376
36436
|
expired: boolean;
|
|
@@ -36380,6 +36440,8 @@ interface Routes {
|
|
|
36380
36440
|
card_format: 'TLCode' | 'rfid48';
|
|
36381
36441
|
card_holder?: string | undefined;
|
|
36382
36442
|
number_of_issued_cards: number;
|
|
36443
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
36444
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
36383
36445
|
} | undefined;
|
|
36384
36446
|
};
|
|
36385
36447
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -36921,7 +36983,7 @@ interface Routes {
|
|
|
36921
36983
|
/** Snapshot of the card data read from the physical encoder. */
|
|
36922
36984
|
acs_credential_on_encoder: {
|
|
36923
36985
|
/** Date and time the credential was created. */
|
|
36924
|
-
created_at: string;
|
|
36986
|
+
created_at: string | null;
|
|
36925
36987
|
is_issued: boolean | null;
|
|
36926
36988
|
/** Date and time the credential will become useable. */
|
|
36927
36989
|
starts_at: string | null;
|
|
@@ -36931,7 +36993,6 @@ interface Routes {
|
|
|
36931
36993
|
card_number: string | null;
|
|
36932
36994
|
visionline_metadata?: {
|
|
36933
36995
|
card_id: string;
|
|
36934
|
-
card_function_type: 'guest' | 'staff';
|
|
36935
36996
|
cancelled: boolean;
|
|
36936
36997
|
discarded: boolean;
|
|
36937
36998
|
expired: boolean;
|
|
@@ -36941,6 +37002,8 @@ interface Routes {
|
|
|
36941
37002
|
card_format: 'TLCode' | 'rfid48';
|
|
36942
37003
|
card_holder?: string | undefined;
|
|
36943
37004
|
number_of_issued_cards: number;
|
|
37005
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
37006
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
36944
37007
|
} | undefined;
|
|
36945
37008
|
};
|
|
36946
37009
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -38139,6 +38202,7 @@ interface Routes {
|
|
|
38139
38202
|
akiles_metadata?: {
|
|
38140
38203
|
gadget_name: string;
|
|
38141
38204
|
gadget_id: string;
|
|
38205
|
+
_member_group_id?: string | undefined;
|
|
38142
38206
|
} | undefined;
|
|
38143
38207
|
}) & ({
|
|
38144
38208
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -38603,6 +38667,7 @@ interface Routes {
|
|
|
38603
38667
|
akiles_metadata?: {
|
|
38604
38668
|
gadget_name: string;
|
|
38605
38669
|
gadget_id: string;
|
|
38670
|
+
_member_group_id?: string | undefined;
|
|
38606
38671
|
} | undefined;
|
|
38607
38672
|
}) & ({
|
|
38608
38673
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39465,6 +39530,7 @@ interface Routes {
|
|
|
39465
39530
|
akiles_metadata?: {
|
|
39466
39531
|
gadget_name: string;
|
|
39467
39532
|
gadget_id: string;
|
|
39533
|
+
_member_group_id?: string | undefined;
|
|
39468
39534
|
} | undefined;
|
|
39469
39535
|
}) & ({
|
|
39470
39536
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -39904,6 +39970,7 @@ interface Routes {
|
|
|
39904
39970
|
akiles_metadata?: {
|
|
39905
39971
|
gadget_name: string;
|
|
39906
39972
|
gadget_id: string;
|
|
39973
|
+
_member_group_id?: string | undefined;
|
|
39907
39974
|
} | undefined;
|
|
39908
39975
|
}) & ({
|
|
39909
39976
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40368,6 +40435,7 @@ interface Routes {
|
|
|
40368
40435
|
akiles_metadata?: {
|
|
40369
40436
|
gadget_name: string;
|
|
40370
40437
|
gadget_id: string;
|
|
40438
|
+
_member_group_id?: string | undefined;
|
|
40371
40439
|
} | undefined;
|
|
40372
40440
|
}) & ({
|
|
40373
40441
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -40807,6 +40875,7 @@ interface Routes {
|
|
|
40807
40875
|
akiles_metadata?: {
|
|
40808
40876
|
gadget_name: string;
|
|
40809
40877
|
gadget_id: string;
|
|
40878
|
+
_member_group_id?: string | undefined;
|
|
40810
40879
|
} | undefined;
|
|
40811
40880
|
}) & ({
|
|
40812
40881
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -41028,7 +41097,7 @@ interface Routes {
|
|
|
41028
41097
|
/** Snapshot of the card data read from the physical encoder. */
|
|
41029
41098
|
acs_credential_on_encoder: {
|
|
41030
41099
|
/** Date and time the credential was created. */
|
|
41031
|
-
created_at: string;
|
|
41100
|
+
created_at: string | null;
|
|
41032
41101
|
is_issued: boolean | null;
|
|
41033
41102
|
/** Date and time the credential will become useable. */
|
|
41034
41103
|
starts_at: string | null;
|
|
@@ -41038,7 +41107,6 @@ interface Routes {
|
|
|
41038
41107
|
card_number: string | null;
|
|
41039
41108
|
visionline_metadata?: {
|
|
41040
41109
|
card_id: string;
|
|
41041
|
-
card_function_type: 'guest' | 'staff';
|
|
41042
41110
|
cancelled: boolean;
|
|
41043
41111
|
discarded: boolean;
|
|
41044
41112
|
expired: boolean;
|
|
@@ -41048,6 +41116,8 @@ interface Routes {
|
|
|
41048
41116
|
card_format: 'TLCode' | 'rfid48';
|
|
41049
41117
|
card_holder?: string | undefined;
|
|
41050
41118
|
number_of_issued_cards: number;
|
|
41119
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
41120
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
41051
41121
|
} | undefined;
|
|
41052
41122
|
};
|
|
41053
41123
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -41590,7 +41660,7 @@ interface Routes {
|
|
|
41590
41660
|
/** Snapshot of the card data read from the physical encoder. */
|
|
41591
41661
|
acs_credential_on_encoder: {
|
|
41592
41662
|
/** Date and time the credential was created. */
|
|
41593
|
-
created_at: string;
|
|
41663
|
+
created_at: string | null;
|
|
41594
41664
|
is_issued: boolean | null;
|
|
41595
41665
|
/** Date and time the credential will become useable. */
|
|
41596
41666
|
starts_at: string | null;
|
|
@@ -41600,7 +41670,6 @@ interface Routes {
|
|
|
41600
41670
|
card_number: string | null;
|
|
41601
41671
|
visionline_metadata?: {
|
|
41602
41672
|
card_id: string;
|
|
41603
|
-
card_function_type: 'guest' | 'staff';
|
|
41604
41673
|
cancelled: boolean;
|
|
41605
41674
|
discarded: boolean;
|
|
41606
41675
|
expired: boolean;
|
|
@@ -41610,6 +41679,8 @@ interface Routes {
|
|
|
41610
41679
|
card_format: 'TLCode' | 'rfid48';
|
|
41611
41680
|
card_holder?: string | undefined;
|
|
41612
41681
|
number_of_issued_cards: number;
|
|
41682
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
41683
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
41613
41684
|
} | undefined;
|
|
41614
41685
|
};
|
|
41615
41686
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -42429,6 +42500,7 @@ interface Routes {
|
|
|
42429
42500
|
akiles_metadata?: {
|
|
42430
42501
|
gadget_name: string;
|
|
42431
42502
|
gadget_id: string;
|
|
42503
|
+
_member_group_id?: string | undefined;
|
|
42432
42504
|
} | undefined;
|
|
42433
42505
|
}) & ({
|
|
42434
42506
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -42868,6 +42940,7 @@ interface Routes {
|
|
|
42868
42940
|
akiles_metadata?: {
|
|
42869
42941
|
gadget_name: string;
|
|
42870
42942
|
gadget_id: string;
|
|
42943
|
+
_member_group_id?: string | undefined;
|
|
42871
42944
|
} | undefined;
|
|
42872
42945
|
}) & ({
|
|
42873
42946
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -43094,7 +43167,7 @@ interface Routes {
|
|
|
43094
43167
|
/** Snapshot of the card data read from the physical encoder. */
|
|
43095
43168
|
acs_credential_on_encoder: {
|
|
43096
43169
|
/** Date and time the credential was created. */
|
|
43097
|
-
created_at: string;
|
|
43170
|
+
created_at: string | null;
|
|
43098
43171
|
is_issued: boolean | null;
|
|
43099
43172
|
/** Date and time the credential will become useable. */
|
|
43100
43173
|
starts_at: string | null;
|
|
@@ -43104,7 +43177,6 @@ interface Routes {
|
|
|
43104
43177
|
card_number: string | null;
|
|
43105
43178
|
visionline_metadata?: {
|
|
43106
43179
|
card_id: string;
|
|
43107
|
-
card_function_type: 'guest' | 'staff';
|
|
43108
43180
|
cancelled: boolean;
|
|
43109
43181
|
discarded: boolean;
|
|
43110
43182
|
expired: boolean;
|
|
@@ -43114,6 +43186,8 @@ interface Routes {
|
|
|
43114
43186
|
card_format: 'TLCode' | 'rfid48';
|
|
43115
43187
|
card_holder?: string | undefined;
|
|
43116
43188
|
number_of_issued_cards: number;
|
|
43189
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
43190
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
43117
43191
|
} | undefined;
|
|
43118
43192
|
};
|
|
43119
43193
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -43666,7 +43740,7 @@ interface Routes {
|
|
|
43666
43740
|
/** Snapshot of the card data read from the physical encoder. */
|
|
43667
43741
|
acs_credential_on_encoder: {
|
|
43668
43742
|
/** Date and time the credential was created. */
|
|
43669
|
-
created_at: string;
|
|
43743
|
+
created_at: string | null;
|
|
43670
43744
|
is_issued: boolean | null;
|
|
43671
43745
|
/** Date and time the credential will become useable. */
|
|
43672
43746
|
starts_at: string | null;
|
|
@@ -43676,7 +43750,6 @@ interface Routes {
|
|
|
43676
43750
|
card_number: string | null;
|
|
43677
43751
|
visionline_metadata?: {
|
|
43678
43752
|
card_id: string;
|
|
43679
|
-
card_function_type: 'guest' | 'staff';
|
|
43680
43753
|
cancelled: boolean;
|
|
43681
43754
|
discarded: boolean;
|
|
43682
43755
|
expired: boolean;
|
|
@@ -43686,6 +43759,8 @@ interface Routes {
|
|
|
43686
43759
|
card_format: 'TLCode' | 'rfid48';
|
|
43687
43760
|
card_holder?: string | undefined;
|
|
43688
43761
|
number_of_issued_cards: number;
|
|
43762
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
43763
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
43689
43764
|
} | undefined;
|
|
43690
43765
|
};
|
|
43691
43766
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -44277,7 +44352,7 @@ interface Routes {
|
|
|
44277
44352
|
/** Snapshot of the card data read from the physical encoder. */
|
|
44278
44353
|
acs_credential_on_encoder: {
|
|
44279
44354
|
/** Date and time the credential was created. */
|
|
44280
|
-
created_at: string;
|
|
44355
|
+
created_at: string | null;
|
|
44281
44356
|
is_issued: boolean | null;
|
|
44282
44357
|
/** Date and time the credential will become useable. */
|
|
44283
44358
|
starts_at: string | null;
|
|
@@ -44287,7 +44362,6 @@ interface Routes {
|
|
|
44287
44362
|
card_number: string | null;
|
|
44288
44363
|
visionline_metadata?: {
|
|
44289
44364
|
card_id: string;
|
|
44290
|
-
card_function_type: 'guest' | 'staff';
|
|
44291
44365
|
cancelled: boolean;
|
|
44292
44366
|
discarded: boolean;
|
|
44293
44367
|
expired: boolean;
|
|
@@ -44297,6 +44371,8 @@ interface Routes {
|
|
|
44297
44371
|
card_format: 'TLCode' | 'rfid48';
|
|
44298
44372
|
card_holder?: string | undefined;
|
|
44299
44373
|
number_of_issued_cards: number;
|
|
44374
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
44375
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
44300
44376
|
} | undefined;
|
|
44301
44377
|
};
|
|
44302
44378
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -45021,7 +45097,7 @@ interface Routes {
|
|
|
45021
45097
|
/** Snapshot of the card data read from the physical encoder. */
|
|
45022
45098
|
acs_credential_on_encoder: {
|
|
45023
45099
|
/** Date and time the credential was created. */
|
|
45024
|
-
created_at: string;
|
|
45100
|
+
created_at: string | null;
|
|
45025
45101
|
is_issued: boolean | null;
|
|
45026
45102
|
/** Date and time the credential will become useable. */
|
|
45027
45103
|
starts_at: string | null;
|
|
@@ -45031,7 +45107,6 @@ interface Routes {
|
|
|
45031
45107
|
card_number: string | null;
|
|
45032
45108
|
visionline_metadata?: {
|
|
45033
45109
|
card_id: string;
|
|
45034
|
-
card_function_type: 'guest' | 'staff';
|
|
45035
45110
|
cancelled: boolean;
|
|
45036
45111
|
discarded: boolean;
|
|
45037
45112
|
expired: boolean;
|
|
@@ -45041,6 +45116,8 @@ interface Routes {
|
|
|
45041
45116
|
card_format: 'TLCode' | 'rfid48';
|
|
45042
45117
|
card_holder?: string | undefined;
|
|
45043
45118
|
number_of_issued_cards: number;
|
|
45119
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
45120
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
45044
45121
|
} | undefined;
|
|
45045
45122
|
};
|
|
45046
45123
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -45585,7 +45662,7 @@ interface Routes {
|
|
|
45585
45662
|
/** Snapshot of the card data read from the physical encoder. */
|
|
45586
45663
|
acs_credential_on_encoder: {
|
|
45587
45664
|
/** Date and time the credential was created. */
|
|
45588
|
-
created_at: string;
|
|
45665
|
+
created_at: string | null;
|
|
45589
45666
|
is_issued: boolean | null;
|
|
45590
45667
|
/** Date and time the credential will become useable. */
|
|
45591
45668
|
starts_at: string | null;
|
|
@@ -45595,7 +45672,6 @@ interface Routes {
|
|
|
45595
45672
|
card_number: string | null;
|
|
45596
45673
|
visionline_metadata?: {
|
|
45597
45674
|
card_id: string;
|
|
45598
|
-
card_function_type: 'guest' | 'staff';
|
|
45599
45675
|
cancelled: boolean;
|
|
45600
45676
|
discarded: boolean;
|
|
45601
45677
|
expired: boolean;
|
|
@@ -45605,6 +45681,8 @@ interface Routes {
|
|
|
45605
45681
|
card_format: 'TLCode' | 'rfid48';
|
|
45606
45682
|
card_holder?: string | undefined;
|
|
45607
45683
|
number_of_issued_cards: number;
|
|
45684
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
45685
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
45608
45686
|
} | undefined;
|
|
45609
45687
|
};
|
|
45610
45688
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -46410,6 +46488,7 @@ interface Routes {
|
|
|
46410
46488
|
akiles_metadata?: {
|
|
46411
46489
|
gadget_name: string;
|
|
46412
46490
|
gadget_id: string;
|
|
46491
|
+
_member_group_id?: string | undefined;
|
|
46413
46492
|
} | undefined;
|
|
46414
46493
|
}) & ({
|
|
46415
46494
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -46633,7 +46712,7 @@ interface Routes {
|
|
|
46633
46712
|
/** Snapshot of the card data read from the physical encoder. */
|
|
46634
46713
|
acs_credential_on_encoder: {
|
|
46635
46714
|
/** Date and time the credential was created. */
|
|
46636
|
-
created_at: string;
|
|
46715
|
+
created_at: string | null;
|
|
46637
46716
|
is_issued: boolean | null;
|
|
46638
46717
|
/** Date and time the credential will become useable. */
|
|
46639
46718
|
starts_at: string | null;
|
|
@@ -46643,7 +46722,6 @@ interface Routes {
|
|
|
46643
46722
|
card_number: string | null;
|
|
46644
46723
|
visionline_metadata?: {
|
|
46645
46724
|
card_id: string;
|
|
46646
|
-
card_function_type: 'guest' | 'staff';
|
|
46647
46725
|
cancelled: boolean;
|
|
46648
46726
|
discarded: boolean;
|
|
46649
46727
|
expired: boolean;
|
|
@@ -46653,6 +46731,8 @@ interface Routes {
|
|
|
46653
46731
|
card_format: 'TLCode' | 'rfid48';
|
|
46654
46732
|
card_holder?: string | undefined;
|
|
46655
46733
|
number_of_issued_cards: number;
|
|
46734
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
46735
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
46656
46736
|
} | undefined;
|
|
46657
46737
|
};
|
|
46658
46738
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -47199,7 +47279,7 @@ interface Routes {
|
|
|
47199
47279
|
/** Snapshot of the card data read from the physical encoder. */
|
|
47200
47280
|
acs_credential_on_encoder: {
|
|
47201
47281
|
/** Date and time the credential was created. */
|
|
47202
|
-
created_at: string;
|
|
47282
|
+
created_at: string | null;
|
|
47203
47283
|
is_issued: boolean | null;
|
|
47204
47284
|
/** Date and time the credential will become useable. */
|
|
47205
47285
|
starts_at: string | null;
|
|
@@ -47209,7 +47289,6 @@ interface Routes {
|
|
|
47209
47289
|
card_number: string | null;
|
|
47210
47290
|
visionline_metadata?: {
|
|
47211
47291
|
card_id: string;
|
|
47212
|
-
card_function_type: 'guest' | 'staff';
|
|
47213
47292
|
cancelled: boolean;
|
|
47214
47293
|
discarded: boolean;
|
|
47215
47294
|
expired: boolean;
|
|
@@ -47219,6 +47298,8 @@ interface Routes {
|
|
|
47219
47298
|
card_format: 'TLCode' | 'rfid48';
|
|
47220
47299
|
card_holder?: string | undefined;
|
|
47221
47300
|
number_of_issued_cards: number;
|
|
47301
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
47302
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
47222
47303
|
} | undefined;
|
|
47223
47304
|
};
|
|
47224
47305
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -48004,6 +48085,7 @@ interface Routes {
|
|
|
48004
48085
|
akiles_metadata?: {
|
|
48005
48086
|
gadget_name: string;
|
|
48006
48087
|
gadget_id: string;
|
|
48088
|
+
_member_group_id?: string | undefined;
|
|
48007
48089
|
} | undefined;
|
|
48008
48090
|
}) & ({
|
|
48009
48091
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48443,6 +48525,7 @@ interface Routes {
|
|
|
48443
48525
|
akiles_metadata?: {
|
|
48444
48526
|
gadget_name: string;
|
|
48445
48527
|
gadget_id: string;
|
|
48528
|
+
_member_group_id?: string | undefined;
|
|
48446
48529
|
} | undefined;
|
|
48447
48530
|
}) & ({
|
|
48448
48531
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -48664,7 +48747,7 @@ interface Routes {
|
|
|
48664
48747
|
/** Snapshot of the card data read from the physical encoder. */
|
|
48665
48748
|
acs_credential_on_encoder: {
|
|
48666
48749
|
/** Date and time the credential was created. */
|
|
48667
|
-
created_at: string;
|
|
48750
|
+
created_at: string | null;
|
|
48668
48751
|
is_issued: boolean | null;
|
|
48669
48752
|
/** Date and time the credential will become useable. */
|
|
48670
48753
|
starts_at: string | null;
|
|
@@ -48674,7 +48757,6 @@ interface Routes {
|
|
|
48674
48757
|
card_number: string | null;
|
|
48675
48758
|
visionline_metadata?: {
|
|
48676
48759
|
card_id: string;
|
|
48677
|
-
card_function_type: 'guest' | 'staff';
|
|
48678
48760
|
cancelled: boolean;
|
|
48679
48761
|
discarded: boolean;
|
|
48680
48762
|
expired: boolean;
|
|
@@ -48684,6 +48766,8 @@ interface Routes {
|
|
|
48684
48766
|
card_format: 'TLCode' | 'rfid48';
|
|
48685
48767
|
card_holder?: string | undefined;
|
|
48686
48768
|
number_of_issued_cards: number;
|
|
48769
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
48770
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
48687
48771
|
} | undefined;
|
|
48688
48772
|
};
|
|
48689
48773
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -49347,7 +49431,7 @@ interface Routes {
|
|
|
49347
49431
|
/** Snapshot of the card data read from the physical encoder. */
|
|
49348
49432
|
acs_credential_on_encoder: {
|
|
49349
49433
|
/** Date and time the credential was created. */
|
|
49350
|
-
created_at: string;
|
|
49434
|
+
created_at: string | null;
|
|
49351
49435
|
is_issued: boolean | null;
|
|
49352
49436
|
/** Date and time the credential will become useable. */
|
|
49353
49437
|
starts_at: string | null;
|
|
@@ -49357,7 +49441,6 @@ interface Routes {
|
|
|
49357
49441
|
card_number: string | null;
|
|
49358
49442
|
visionline_metadata?: {
|
|
49359
49443
|
card_id: string;
|
|
49360
|
-
card_function_type: 'guest' | 'staff';
|
|
49361
49444
|
cancelled: boolean;
|
|
49362
49445
|
discarded: boolean;
|
|
49363
49446
|
expired: boolean;
|
|
@@ -49367,6 +49450,8 @@ interface Routes {
|
|
|
49367
49450
|
card_format: 'TLCode' | 'rfid48';
|
|
49368
49451
|
card_holder?: string | undefined;
|
|
49369
49452
|
number_of_issued_cards: number;
|
|
49453
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
49454
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
49370
49455
|
} | undefined;
|
|
49371
49456
|
};
|
|
49372
49457
|
/** Matching acs_credential currently encoded on this card. */
|
|
@@ -50338,6 +50423,7 @@ interface Routes {
|
|
|
50338
50423
|
akiles_metadata?: {
|
|
50339
50424
|
gadget_name: string;
|
|
50340
50425
|
gadget_id: string;
|
|
50426
|
+
_member_group_id?: string | undefined;
|
|
50341
50427
|
} | undefined;
|
|
50342
50428
|
}) & ({
|
|
50343
50429
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -50779,6 +50865,7 @@ interface Routes {
|
|
|
50779
50865
|
akiles_metadata?: {
|
|
50780
50866
|
gadget_name: string;
|
|
50781
50867
|
gadget_id: string;
|
|
50868
|
+
_member_group_id?: string | undefined;
|
|
50782
50869
|
} | undefined;
|
|
50783
50870
|
}) & ({
|
|
50784
50871
|
_experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
|
|
@@ -50941,6 +51028,8 @@ interface Routes {
|
|
|
50941
51028
|
external_type?: ('pti_site' | 'alta_org' | 'salto_site' | 'brivo_account' | 'hid_credential_manager_organization' | 'visionline_system' | 'assa_abloy_credential_service' | 'latch_building') | undefined;
|
|
50942
51029
|
/** Display name that corresponds to the brand-specific terminology for the `acs_system` type. */
|
|
50943
51030
|
external_type_display_name?: string | undefined;
|
|
51031
|
+
/** Indicates if the `acs_system` is a credential manager. */
|
|
51032
|
+
is_credential_manager: boolean;
|
|
50944
51033
|
visionline_metadata?: {
|
|
50945
51034
|
/** Keyset loaded into a reader. Mobile keys and reader administration tools securely authenticate only with readers programmed with a matching keyset. */
|
|
50946
51035
|
mobile_access_uuid: string;
|
|
@@ -51378,7 +51467,7 @@ interface Routes {
|
|
|
51378
51467
|
/** Snapshot of the card data read from the physical encoder. */
|
|
51379
51468
|
acs_credential_on_encoder: {
|
|
51380
51469
|
/** Date and time the credential was created. */
|
|
51381
|
-
created_at: string;
|
|
51470
|
+
created_at: string | null;
|
|
51382
51471
|
is_issued: boolean | null;
|
|
51383
51472
|
/** Date and time the credential will become useable. */
|
|
51384
51473
|
starts_at: string | null;
|
|
@@ -51388,7 +51477,6 @@ interface Routes {
|
|
|
51388
51477
|
card_number: string | null;
|
|
51389
51478
|
visionline_metadata?: {
|
|
51390
51479
|
card_id: string;
|
|
51391
|
-
card_function_type: 'guest' | 'staff';
|
|
51392
51480
|
cancelled: boolean;
|
|
51393
51481
|
discarded: boolean;
|
|
51394
51482
|
expired: boolean;
|
|
@@ -51398,6 +51486,8 @@ interface Routes {
|
|
|
51398
51486
|
card_format: 'TLCode' | 'rfid48';
|
|
51399
51487
|
card_holder?: string | undefined;
|
|
51400
51488
|
number_of_issued_cards: number;
|
|
51489
|
+
guest_acs_entrance_ids?: string[] | undefined;
|
|
51490
|
+
common_acs_entrance_ids?: string[] | undefined;
|
|
51401
51491
|
} | undefined;
|
|
51402
51492
|
};
|
|
51403
51493
|
/** Matching acs_credential currently encoded on this card. */
|