@seamapi/types 1.161.0 → 1.163.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 +15 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +40 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.d.ts +6 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js +2 -0
- package/lib/seam/connect/models/acs/acs_system_capability_flags.js.map +1 -1
- package/lib/seam/connect/models/acs/credential.d.ts +8 -0
- package/lib/seam/connect/models/acs/credential.js +1 -0
- package/lib/seam/connect/models/acs/credential.js.map +1 -1
- package/lib/seam/connect/models/acs/entrance.d.ts +4 -4
- package/lib/seam/connect/models/acs/system.d.ts +6 -0
- package/lib/seam/connect/openapi.d.ts +20 -0
- package/lib/seam/connect/openapi.js +14 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs_system_capability_flags.ts +2 -0
- package/src/lib/seam/connect/models/acs/credential.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +15 -1
- package/src/lib/seam/connect/route-types.ts +20 -0
package/dist/connect.d.cts
CHANGED
|
@@ -292,6 +292,10 @@ declare const _default: {
|
|
|
292
292
|
};
|
|
293
293
|
visionline_metadata: {
|
|
294
294
|
properties: {
|
|
295
|
+
card_function_type: {
|
|
296
|
+
enum: string[];
|
|
297
|
+
type: string;
|
|
298
|
+
};
|
|
295
299
|
common_acs_entrance_ids: {
|
|
296
300
|
items: {
|
|
297
301
|
format: string;
|
|
@@ -314,6 +318,7 @@ declare const _default: {
|
|
|
314
318
|
type: string;
|
|
315
319
|
};
|
|
316
320
|
};
|
|
321
|
+
required: string[];
|
|
317
322
|
type: string;
|
|
318
323
|
};
|
|
319
324
|
warnings: {
|
|
@@ -474,12 +479,18 @@ declare const _default: {
|
|
|
474
479
|
format: string;
|
|
475
480
|
type: string;
|
|
476
481
|
};
|
|
482
|
+
can_add_acs_users_to_acs_access_groups: {
|
|
483
|
+
type: string;
|
|
484
|
+
};
|
|
477
485
|
can_automate_enrollment: {
|
|
478
486
|
type: string;
|
|
479
487
|
};
|
|
480
488
|
can_create_acs_access_groups: {
|
|
481
489
|
type: string;
|
|
482
490
|
};
|
|
491
|
+
can_remove_acs_users_from_acs_access_groups: {
|
|
492
|
+
type: string;
|
|
493
|
+
};
|
|
483
494
|
connected_account_ids: {
|
|
484
495
|
items: {
|
|
485
496
|
type: string;
|
|
@@ -5839,7 +5850,13 @@ declare const _default: {
|
|
|
5839
5850
|
enum: string[];
|
|
5840
5851
|
type: string;
|
|
5841
5852
|
};
|
|
5853
|
+
card_function_type: {
|
|
5854
|
+
default: string;
|
|
5855
|
+
enum: string[];
|
|
5856
|
+
type: string;
|
|
5857
|
+
};
|
|
5842
5858
|
is_override_key: {
|
|
5859
|
+
description: string;
|
|
5843
5860
|
type: string;
|
|
5844
5861
|
};
|
|
5845
5862
|
joiner_acs_credential_ids: {
|
|
@@ -5849,6 +5866,9 @@ declare const _default: {
|
|
|
5849
5866
|
};
|
|
5850
5867
|
type: string;
|
|
5851
5868
|
};
|
|
5869
|
+
override: {
|
|
5870
|
+
type: string;
|
|
5871
|
+
};
|
|
5852
5872
|
};
|
|
5853
5873
|
type: string;
|
|
5854
5874
|
};
|
|
@@ -16593,6 +16613,7 @@ interface Routes {
|
|
|
16593
16613
|
}>;
|
|
16594
16614
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16595
16615
|
visionline_metadata?: {
|
|
16616
|
+
card_function_type: 'guest' | 'staff';
|
|
16596
16617
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16597
16618
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16598
16619
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16615,7 +16636,14 @@ interface Routes {
|
|
|
16615
16636
|
visionline_metadata?: {
|
|
16616
16637
|
assa_abloy_credential_service_mobile_endpoint_id?: string | undefined;
|
|
16617
16638
|
card_format?: ('TLCode' | 'rfid48') | undefined;
|
|
16639
|
+
card_function_type?: 'guest' | 'staff';
|
|
16640
|
+
/**
|
|
16641
|
+
---
|
|
16642
|
+
deprecated: use override.
|
|
16643
|
+
---
|
|
16644
|
+
*/
|
|
16618
16645
|
is_override_key?: boolean | undefined;
|
|
16646
|
+
override?: boolean | undefined;
|
|
16619
16647
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16620
16648
|
} | undefined;
|
|
16621
16649
|
starts_at?: string | undefined;
|
|
@@ -16648,6 +16676,7 @@ interface Routes {
|
|
|
16648
16676
|
}>;
|
|
16649
16677
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16650
16678
|
visionline_metadata?: {
|
|
16679
|
+
card_function_type: 'guest' | 'staff';
|
|
16651
16680
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16652
16681
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16653
16682
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16701,6 +16730,7 @@ interface Routes {
|
|
|
16701
16730
|
}>;
|
|
16702
16731
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16703
16732
|
visionline_metadata?: {
|
|
16733
|
+
card_function_type: 'guest' | 'staff';
|
|
16704
16734
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16705
16735
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16706
16736
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16752,6 +16782,7 @@ interface Routes {
|
|
|
16752
16782
|
}>;
|
|
16753
16783
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16754
16784
|
visionline_metadata?: {
|
|
16785
|
+
card_function_type: 'guest' | 'staff';
|
|
16755
16786
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16756
16787
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16757
16788
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16795,6 +16826,7 @@ interface Routes {
|
|
|
16795
16826
|
}>;
|
|
16796
16827
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16797
16828
|
visionline_metadata?: {
|
|
16829
|
+
card_function_type: 'guest' | 'staff';
|
|
16798
16830
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16799
16831
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16800
16832
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16838,6 +16870,7 @@ interface Routes {
|
|
|
16838
16870
|
}>;
|
|
16839
16871
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16840
16872
|
visionline_metadata?: {
|
|
16873
|
+
card_function_type: 'guest' | 'staff';
|
|
16841
16874
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16842
16875
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16843
16876
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16958,6 +16991,7 @@ interface Routes {
|
|
|
16958
16991
|
}>;
|
|
16959
16992
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
16960
16993
|
visionline_metadata?: {
|
|
16994
|
+
card_function_type: 'guest' | 'staff';
|
|
16961
16995
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
16962
16996
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16963
16997
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -16999,6 +17033,8 @@ interface Routes {
|
|
|
16999
17033
|
image_alt_text: string;
|
|
17000
17034
|
can_automate_enrollment?: boolean | undefined;
|
|
17001
17035
|
can_create_acs_access_groups?: boolean | undefined;
|
|
17036
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
17037
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
17002
17038
|
};
|
|
17003
17039
|
};
|
|
17004
17040
|
};
|
|
@@ -17036,6 +17072,8 @@ interface Routes {
|
|
|
17036
17072
|
image_alt_text: string;
|
|
17037
17073
|
can_automate_enrollment?: boolean | undefined;
|
|
17038
17074
|
can_create_acs_access_groups?: boolean | undefined;
|
|
17075
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
17076
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
17039
17077
|
}>;
|
|
17040
17078
|
};
|
|
17041
17079
|
};
|
|
@@ -24367,6 +24405,8 @@ interface Routes {
|
|
|
24367
24405
|
image_alt_text: string;
|
|
24368
24406
|
can_automate_enrollment?: boolean | undefined;
|
|
24369
24407
|
can_create_acs_access_groups?: boolean | undefined;
|
|
24408
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
24409
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
24370
24410
|
}>;
|
|
24371
24411
|
};
|
|
24372
24412
|
};
|
|
@@ -2,10 +2,16 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const acs_system_capability_flags: z.ZodObject<{
|
|
3
3
|
can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
4
4
|
can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
5
|
+
can_remove_acs_users_from_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
6
|
+
can_add_acs_users_to_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
5
7
|
}, "strip", z.ZodTypeAny, {
|
|
6
8
|
can_automate_enrollment?: boolean | undefined;
|
|
7
9
|
can_create_acs_access_groups?: boolean | undefined;
|
|
10
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
11
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
8
12
|
}, {
|
|
9
13
|
can_automate_enrollment?: boolean | undefined;
|
|
10
14
|
can_create_acs_access_groups?: boolean | undefined;
|
|
15
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
16
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
11
17
|
}>;
|
|
@@ -2,5 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export const acs_system_capability_flags = z.object({
|
|
3
3
|
can_automate_enrollment: z.boolean().optional(),
|
|
4
4
|
can_create_acs_access_groups: z.boolean().optional(),
|
|
5
|
+
can_remove_acs_users_from_acs_access_groups: z.boolean().optional(),
|
|
6
|
+
can_add_acs_users_to_acs_access_groups: z.boolean().optional(),
|
|
5
7
|
});
|
|
6
8
|
//# sourceMappingURL=acs_system_capability_flags.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs_system_capability_flags.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs_system_capability_flags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/C,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"acs_system_capability_flags.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs_system_capability_flags.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAClD,uBAAuB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC/C,4BAA4B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACpD,2CAA2C,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACnE,sCAAsC,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA"}
|
|
@@ -3,14 +3,17 @@ export declare const acs_credential_external_type: z.ZodEnum<["pti_card", "brivo
|
|
|
3
3
|
export declare const acs_credential_access_method_type: z.ZodEnum<["code", "card", "mobile_key"]>;
|
|
4
4
|
export type AcsCredentialExternalType = z.infer<typeof acs_credential_external_type>;
|
|
5
5
|
export declare const acs_credential_visionline_metadata: z.ZodObject<{
|
|
6
|
+
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
6
7
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7
8
|
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8
9
|
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
card_function_type: "guest" | "staff";
|
|
10
12
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
11
13
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
12
14
|
common_acs_entrance_ids?: string[] | undefined;
|
|
13
15
|
}, {
|
|
16
|
+
card_function_type: "guest" | "staff";
|
|
14
17
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
15
18
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
16
19
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -53,14 +56,17 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
53
56
|
}>, "many">;
|
|
54
57
|
is_multi_phone_sync_credential: z.ZodOptional<z.ZodBoolean>;
|
|
55
58
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
59
|
+
card_function_type: z.ZodEnum<["guest", "staff"]>;
|
|
56
60
|
joiner_acs_credential_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
57
61
|
guest_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
58
62
|
common_acs_entrance_ids: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
59
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
|
+
card_function_type: "guest" | "staff";
|
|
60
65
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
61
66
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
62
67
|
common_acs_entrance_ids?: string[] | undefined;
|
|
63
68
|
}, {
|
|
69
|
+
card_function_type: "guest" | "staff";
|
|
64
70
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
65
71
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
66
72
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -90,6 +96,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
90
96
|
ends_at?: string | undefined;
|
|
91
97
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
92
98
|
visionline_metadata?: {
|
|
99
|
+
card_function_type: "guest" | "staff";
|
|
93
100
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
94
101
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
95
102
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -119,6 +126,7 @@ export declare const acs_credential: z.ZodObject<{
|
|
|
119
126
|
ends_at?: string | undefined;
|
|
120
127
|
is_multi_phone_sync_credential?: boolean | undefined;
|
|
121
128
|
visionline_metadata?: {
|
|
129
|
+
card_function_type: "guest" | "staff";
|
|
122
130
|
joiner_acs_credential_ids?: string[] | undefined;
|
|
123
131
|
guest_acs_entrance_ids?: string[] | undefined;
|
|
124
132
|
common_acs_entrance_ids?: string[] | undefined;
|
|
@@ -12,6 +12,7 @@ export const acs_credential_access_method_type = z.enum([
|
|
|
12
12
|
'mobile_key',
|
|
13
13
|
]);
|
|
14
14
|
export const acs_credential_visionline_metadata = z.object({
|
|
15
|
+
card_function_type: z.enum(['guest', 'staff']),
|
|
15
16
|
joiner_acs_credential_ids: z.array(z.string().uuid()).optional(),
|
|
16
17
|
guest_acs_entrance_ids: z.array(z.string().uuid()).optional(),
|
|
17
18
|
common_acs_entrance_ids: z.array(z.string().uuid()).optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IACzD,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;IAChE,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC7D,uBAAuB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,QAAQ,EAAE,CAAC,CAAC,KAAK,CACf,CAAC,CAAC,MAAM,CAAC;QACP,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,8BAA8B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,kCAAkC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"credential.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/credential.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,wEAAwE;AACxE,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,IAAI,CAAC;IACjD,UAAU;IACV,kBAAkB;IAClB,gBAAgB;IAChB,iBAAiB;CAClB,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,CAAC,CAAC,IAAI,CAAC;IACtD,MAAM;IACN,MAAM;IACN,YAAY;CACb,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,kCAAkC,GAAG,CAAC,CAAC,MAAM,CAAC;IACzD,kBAAkB,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IAC9C,yBAAyB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;IAChE,sBAAsB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;IAC7D,uBAAuB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,CAAC,QAAQ,EAAE;CAC/D,CAAC,CAAA;AAMF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IACpC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACzC,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACpD,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,wBAAwB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IACtD,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC;IAC/B,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtC,aAAa,EAAE,iCAAiC;IAChD,aAAa,EAAE,4BAA4B,CAAC,QAAQ,EAAE;IACtD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC9B,MAAM,EAAE,CAAC,CAAC,KAAK,CACb,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;QACtB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,QAAQ,EAAE,CAAC,CAAC,KAAK,CACf,CAAC,CAAC,MAAM,CAAC;QACP,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;QACxB,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;KACpB,CAAC,CACH;IACD,8BAA8B,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACtD,mBAAmB,EAAE,kCAAkC,CAAC,QAAQ,EAAE;CACnE,CAAC,CAAA"}
|
|
@@ -51,14 +51,14 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
51
51
|
}>, "many">>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
53
|
door_name: string;
|
|
54
|
-
door_category: "
|
|
54
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
55
55
|
profiles?: {
|
|
56
56
|
visionline_door_profile_id: string;
|
|
57
57
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
58
58
|
}[] | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
door_name: string;
|
|
61
|
-
door_category: "
|
|
61
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
62
62
|
profiles?: {
|
|
63
63
|
visionline_door_profile_id: string;
|
|
64
64
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -70,7 +70,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
70
70
|
display_name: string;
|
|
71
71
|
visionline_metadata: {
|
|
72
72
|
door_name: string;
|
|
73
|
-
door_category: "
|
|
73
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
74
74
|
profiles?: {
|
|
75
75
|
visionline_door_profile_id: string;
|
|
76
76
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -89,7 +89,7 @@ export declare const acs_entrance: z.ZodObject<{
|
|
|
89
89
|
display_name: string;
|
|
90
90
|
visionline_metadata: {
|
|
91
91
|
door_name: string;
|
|
92
|
-
door_category: "
|
|
92
|
+
door_category: "guest" | "entrance" | "elevator reader" | "common" | "common (PMS)";
|
|
93
93
|
profiles?: {
|
|
94
94
|
visionline_door_profile_id: string;
|
|
95
95
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -16,6 +16,8 @@ export declare const acs_system: z.ZodObject<{
|
|
|
16
16
|
image_alt_text: z.ZodString;
|
|
17
17
|
can_automate_enrollment: z.ZodOptional<z.ZodBoolean>;
|
|
18
18
|
can_create_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
19
|
+
can_remove_acs_users_from_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
20
|
+
can_add_acs_users_to_acs_access_groups: z.ZodOptional<z.ZodBoolean>;
|
|
19
21
|
}, "strip", z.ZodTypeAny, {
|
|
20
22
|
name: string;
|
|
21
23
|
created_at: string;
|
|
@@ -30,6 +32,8 @@ export declare const acs_system: z.ZodObject<{
|
|
|
30
32
|
system_type_display_name?: string | undefined;
|
|
31
33
|
can_automate_enrollment?: boolean | undefined;
|
|
32
34
|
can_create_acs_access_groups?: boolean | undefined;
|
|
35
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
36
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
33
37
|
}, {
|
|
34
38
|
name: string;
|
|
35
39
|
created_at: string;
|
|
@@ -44,5 +48,7 @@ export declare const acs_system: z.ZodObject<{
|
|
|
44
48
|
system_type_display_name?: string | undefined;
|
|
45
49
|
can_automate_enrollment?: boolean | undefined;
|
|
46
50
|
can_create_acs_access_groups?: boolean | undefined;
|
|
51
|
+
can_remove_acs_users_from_acs_access_groups?: boolean | undefined;
|
|
52
|
+
can_add_acs_users_to_acs_access_groups?: boolean | undefined;
|
|
47
53
|
}>;
|
|
48
54
|
export type AcsSystem = z.output<typeof acs_system>;
|
|
@@ -218,6 +218,10 @@ declare const _default: {
|
|
|
218
218
|
};
|
|
219
219
|
visionline_metadata: {
|
|
220
220
|
properties: {
|
|
221
|
+
card_function_type: {
|
|
222
|
+
enum: string[];
|
|
223
|
+
type: string;
|
|
224
|
+
};
|
|
221
225
|
common_acs_entrance_ids: {
|
|
222
226
|
items: {
|
|
223
227
|
format: string;
|
|
@@ -240,6 +244,7 @@ declare const _default: {
|
|
|
240
244
|
type: string;
|
|
241
245
|
};
|
|
242
246
|
};
|
|
247
|
+
required: string[];
|
|
243
248
|
type: string;
|
|
244
249
|
};
|
|
245
250
|
warnings: {
|
|
@@ -400,12 +405,18 @@ declare const _default: {
|
|
|
400
405
|
format: string;
|
|
401
406
|
type: string;
|
|
402
407
|
};
|
|
408
|
+
can_add_acs_users_to_acs_access_groups: {
|
|
409
|
+
type: string;
|
|
410
|
+
};
|
|
403
411
|
can_automate_enrollment: {
|
|
404
412
|
type: string;
|
|
405
413
|
};
|
|
406
414
|
can_create_acs_access_groups: {
|
|
407
415
|
type: string;
|
|
408
416
|
};
|
|
417
|
+
can_remove_acs_users_from_acs_access_groups: {
|
|
418
|
+
type: string;
|
|
419
|
+
};
|
|
409
420
|
connected_account_ids: {
|
|
410
421
|
items: {
|
|
411
422
|
type: string;
|
|
@@ -5765,7 +5776,13 @@ declare const _default: {
|
|
|
5765
5776
|
enum: string[];
|
|
5766
5777
|
type: string;
|
|
5767
5778
|
};
|
|
5779
|
+
card_function_type: {
|
|
5780
|
+
default: string;
|
|
5781
|
+
enum: string[];
|
|
5782
|
+
type: string;
|
|
5783
|
+
};
|
|
5768
5784
|
is_override_key: {
|
|
5785
|
+
description: string;
|
|
5769
5786
|
type: string;
|
|
5770
5787
|
};
|
|
5771
5788
|
joiner_acs_credential_ids: {
|
|
@@ -5775,6 +5792,9 @@ declare const _default: {
|
|
|
5775
5792
|
};
|
|
5776
5793
|
type: string;
|
|
5777
5794
|
};
|
|
5795
|
+
override: {
|
|
5796
|
+
type: string;
|
|
5797
|
+
};
|
|
5778
5798
|
};
|
|
5779
5799
|
type: string;
|
|
5780
5800
|
};
|
|
@@ -205,6 +205,7 @@ export default {
|
|
|
205
205
|
starts_at: { type: 'string' },
|
|
206
206
|
visionline_metadata: {
|
|
207
207
|
properties: {
|
|
208
|
+
card_function_type: { enum: ['guest', 'staff'], type: 'string' },
|
|
208
209
|
common_acs_entrance_ids: {
|
|
209
210
|
items: { format: 'uuid', type: 'string' },
|
|
210
211
|
type: 'array',
|
|
@@ -218,6 +219,7 @@ export default {
|
|
|
218
219
|
type: 'array',
|
|
219
220
|
},
|
|
220
221
|
},
|
|
222
|
+
required: ['card_function_type'],
|
|
221
223
|
type: 'object',
|
|
222
224
|
},
|
|
223
225
|
warnings: {
|
|
@@ -357,8 +359,10 @@ export default {
|
|
|
357
359
|
acs_system: {
|
|
358
360
|
properties: {
|
|
359
361
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
362
|
+
can_add_acs_users_to_acs_access_groups: { type: 'boolean' },
|
|
360
363
|
can_automate_enrollment: { type: 'boolean' },
|
|
361
364
|
can_create_acs_access_groups: { type: 'boolean' },
|
|
365
|
+
can_remove_acs_users_from_acs_access_groups: { type: 'boolean' },
|
|
362
366
|
connected_account_ids: { items: { type: 'string' }, type: 'array' },
|
|
363
367
|
created_at: { format: 'date-time', type: 'string' },
|
|
364
368
|
external_type: {
|
|
@@ -4276,11 +4280,20 @@ export default {
|
|
|
4276
4280
|
enum: ['TLCode', 'rfid48'],
|
|
4277
4281
|
type: 'string',
|
|
4278
4282
|
},
|
|
4279
|
-
|
|
4283
|
+
card_function_type: {
|
|
4284
|
+
default: 'guest',
|
|
4285
|
+
enum: ['guest', 'staff'],
|
|
4286
|
+
type: 'string',
|
|
4287
|
+
},
|
|
4288
|
+
is_override_key: {
|
|
4289
|
+
description: '\n ---\n deprecated: use override.\n ---\n ',
|
|
4290
|
+
type: 'boolean',
|
|
4291
|
+
},
|
|
4280
4292
|
joiner_acs_credential_ids: {
|
|
4281
4293
|
items: { format: 'uuid', type: 'string' },
|
|
4282
4294
|
type: 'array',
|
|
4283
4295
|
},
|
|
4296
|
+
override: { type: 'boolean' },
|
|
4284
4297
|
},
|
|
4285
4298
|
type: 'object',
|
|
4286
4299
|
},
|