@seamapi/types 1.604.0 → 1.606.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 +424 -17
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +626 -95
- package/dist/index.cjs +424 -17
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +19 -19
- package/lib/seam/connect/models/acs/metadata/hotek.d.ts +9 -9
- package/lib/seam/connect/models/acs/metadata/hotek.js +3 -2
- package/lib/seam/connect/models/acs/metadata/hotek.js.map +1 -1
- package/lib/seam/connect/models/acs/metadata/visionline.d.ts +2 -2
- package/lib/seam/connect/models/batch.d.ts +135 -135
- package/lib/seam/connect/models/customer/customer-data.d.ts +34 -0
- package/lib/seam/connect/models/customer/customer-data.js +5 -1
- package/lib/seam/connect/models/customer/customer-data.js.map +1 -1
- package/lib/seam/connect/models/customer/user-identity-resources.d.ts +39 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js +15 -0
- package/lib/seam/connect/models/customer/user-identity-resources.js.map +1 -1
- package/lib/seam/connect/models/phones/phone-session.d.ts +78 -78
- package/lib/seam/connect/openapi.d.ts +415 -8
- package/lib/seam/connect/openapi.js +374 -14
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +142 -40
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/models/acs/metadata/hotek.ts +3 -2
- package/src/lib/seam/connect/models/customer/customer-data.ts +5 -0
- package/src/lib/seam/connect/models/customer/user-identity-resources.ts +18 -0
- package/src/lib/seam/connect/openapi.ts +396 -14
- package/src/lib/seam/connect/route-types.ts +150 -40
- package/src/lib/seam/connect/schemas.ts +1 -0
|
@@ -205,6 +205,26 @@ export declare const customer_data: z.ZodObject<{
|
|
|
205
205
|
email_address?: string | undefined;
|
|
206
206
|
phone_number?: string | undefined;
|
|
207
207
|
}>, "many">>;
|
|
208
|
+
staff_members: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
209
|
+
name: z.ZodString;
|
|
210
|
+
email_address: z.ZodOptional<z.ZodString>;
|
|
211
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
212
|
+
} & {
|
|
213
|
+
staff_member_key: z.ZodString;
|
|
214
|
+
site_keys: z.ZodArray<z.ZodString, "many">;
|
|
215
|
+
}, "strip", z.ZodTypeAny, {
|
|
216
|
+
name: string;
|
|
217
|
+
staff_member_key: string;
|
|
218
|
+
site_keys: string[];
|
|
219
|
+
email_address?: string | undefined;
|
|
220
|
+
phone_number?: string | undefined;
|
|
221
|
+
}, {
|
|
222
|
+
name: string;
|
|
223
|
+
staff_member_key: string;
|
|
224
|
+
site_keys: string[];
|
|
225
|
+
email_address?: string | undefined;
|
|
226
|
+
phone_number?: string | undefined;
|
|
227
|
+
}>, "many">>;
|
|
208
228
|
reservations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
209
229
|
name: z.ZodOptional<z.ZodString>;
|
|
210
230
|
starts_at: z.ZodOptional<z.ZodString>;
|
|
@@ -483,6 +503,13 @@ export declare const customer_data: z.ZodObject<{
|
|
|
483
503
|
email_address?: string | undefined;
|
|
484
504
|
phone_number?: string | undefined;
|
|
485
505
|
}[] | undefined;
|
|
506
|
+
staff_members?: {
|
|
507
|
+
name: string;
|
|
508
|
+
staff_member_key: string;
|
|
509
|
+
site_keys: string[];
|
|
510
|
+
email_address?: string | undefined;
|
|
511
|
+
phone_number?: string | undefined;
|
|
512
|
+
}[] | undefined;
|
|
486
513
|
reservations?: {
|
|
487
514
|
reservation_key: string;
|
|
488
515
|
name?: string | undefined;
|
|
@@ -618,6 +645,13 @@ export declare const customer_data: z.ZodObject<{
|
|
|
618
645
|
email_address?: string | undefined;
|
|
619
646
|
phone_number?: string | undefined;
|
|
620
647
|
}[] | undefined;
|
|
648
|
+
staff_members?: {
|
|
649
|
+
name: string;
|
|
650
|
+
staff_member_key: string;
|
|
651
|
+
site_keys: string[];
|
|
652
|
+
email_address?: string | undefined;
|
|
653
|
+
phone_number?: string | undefined;
|
|
654
|
+
}[] | undefined;
|
|
621
655
|
reservations?: {
|
|
622
656
|
reservation_key: string;
|
|
623
657
|
name?: string | undefined;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { access_grant_resource, booking_resource, reservation_resource, } from './access-grant-resources.js';
|
|
3
3
|
import { building_resource, common_area_resource, facility_resource, listing_resource, neutral_resource, property_listing_resource, property_resource, room_resource, site_resource, unit_resource, } from './location-resources.js';
|
|
4
|
-
import { guest_resource, resident_resource, tenant_resource, user_identity_resource, user_resource, } from './user-identity-resources.js';
|
|
4
|
+
import { guest_resource, resident_resource, staff_member_resource, tenant_resource, user_identity_resource, user_resource, } from './user-identity-resources.js';
|
|
5
5
|
export const customer_data = z.object({
|
|
6
6
|
customer_key: z.string().describe('Your unique identifier for the customer.'),
|
|
7
7
|
// Location resources
|
|
@@ -57,6 +57,10 @@ export const customer_data = z.object({
|
|
|
57
57
|
.array(user_identity_resource)
|
|
58
58
|
.optional()
|
|
59
59
|
.describe('List of user identities.'),
|
|
60
|
+
staff_members: z
|
|
61
|
+
.array(staff_member_resource)
|
|
62
|
+
.optional()
|
|
63
|
+
.describe('List of staff members.'),
|
|
60
64
|
// Access grant resources
|
|
61
65
|
reservations: z
|
|
62
66
|
.array(reservation_resource)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-data.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,qBAAqB,EACrB,gBAAgB,EAChB,oBAAoB,GACrB,MAAM,6BAA6B,CAAA;AACpC,OAAO,EACL,iBAAiB,EACjB,oBAAoB,EACpB,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,yBAAyB,EACzB,iBAAiB,EACjB,aAAa,EACb,aAAa,EACb,aAAa,GACd,MAAM,yBAAyB,CAAA;AAChC,OAAO,EACL,cAAc,EACd,iBAAiB,EACjB,eAAe,EACf,sBAAsB,EACtB,aAAa,GACd,MAAM,8BAA8B,CAAA;AAErC,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;IAE7E,qBAAqB;IACrB,MAAM,EAAE,CAAC;SACN,KAAK,CAAC,gBAAgB,CAAC;SACvB,QAAQ,EAAE;SACV,QAAQ,CAAC,kCAAkC,CAAC;IAC/C,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,aAAa,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,CAAC,iCAAiC,CAAC;IAC9C,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,uCAAuC,CAAC;IACpD,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,aAAa,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,CAAC,qCAAqC,CAAC;IAClD,YAAY,EAAE,CAAC;SACZ,KAAK,CAAC,oBAAoB,CAAC;SAC3B,QAAQ,EAAE;SACV,QAAQ,CAAC,8BAA8B,CAAC;IAC3C,KAAK,EAAE,CAAC;SACL,KAAK,CAAC,aAAa,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,CAAC,yCAAyC,CAAC;IACtD,UAAU,EAAE,CAAC;SACV,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oCAAoC,CAAC;IACjD,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oBAAoB,CAAC;IACjC,QAAQ,EAAE,CAAC;SACR,KAAK,CAAC,gBAAgB,CAAC;SACvB,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IACzC,iBAAiB,EAAE,CAAC;SACjB,KAAK,CAAC,yBAAyB,CAAC;SAChC,QAAQ,EAAE;SACV,QAAQ,CAAC,4BAA4B,CAAC;IAEzC,0BAA0B;IAC1B,MAAM,EAAE,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,iBAAiB,CAAC;IACtE,OAAO,EAAE,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;IACzE,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,iBAAiB,CAAC;SACxB,QAAQ,EAAE;SACV,QAAQ,CAAC,oBAAoB,CAAC;IACjC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,gBAAgB,CAAC;IACnE,eAAe,EAAE,CAAC;SACf,KAAK,CAAC,sBAAsB,CAAC;SAC7B,QAAQ,EAAE;SACV,QAAQ,CAAC,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"customer-data.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/customer-data.ts"],"names":[],"mappings":"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"}
|
|
@@ -67,6 +67,26 @@ export declare const user_resource: z.ZodObject<{
|
|
|
67
67
|
email_address?: string | undefined;
|
|
68
68
|
phone_number?: string | undefined;
|
|
69
69
|
}>;
|
|
70
|
+
export declare const staff_member_resource: z.ZodObject<{
|
|
71
|
+
name: z.ZodString;
|
|
72
|
+
email_address: z.ZodOptional<z.ZodString>;
|
|
73
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
74
|
+
} & {
|
|
75
|
+
staff_member_key: z.ZodString;
|
|
76
|
+
site_keys: z.ZodArray<z.ZodString, "many">;
|
|
77
|
+
}, "strip", z.ZodTypeAny, {
|
|
78
|
+
name: string;
|
|
79
|
+
staff_member_key: string;
|
|
80
|
+
site_keys: string[];
|
|
81
|
+
email_address?: string | undefined;
|
|
82
|
+
phone_number?: string | undefined;
|
|
83
|
+
}, {
|
|
84
|
+
name: string;
|
|
85
|
+
staff_member_key: string;
|
|
86
|
+
site_keys: string[];
|
|
87
|
+
email_address?: string | undefined;
|
|
88
|
+
phone_number?: string | undefined;
|
|
89
|
+
}>;
|
|
70
90
|
export declare const user_identity_resource: z.ZodObject<{
|
|
71
91
|
name: z.ZodString;
|
|
72
92
|
email_address: z.ZodOptional<z.ZodString>;
|
|
@@ -164,6 +184,25 @@ export declare const user_identity_resource_union: z.ZodUnion<[z.ZodObject<{
|
|
|
164
184
|
user_identity_key: string;
|
|
165
185
|
email_address?: string | undefined;
|
|
166
186
|
phone_number?: string | undefined;
|
|
187
|
+
}>, z.ZodObject<{
|
|
188
|
+
name: z.ZodString;
|
|
189
|
+
email_address: z.ZodOptional<z.ZodString>;
|
|
190
|
+
phone_number: z.ZodOptional<z.ZodString>;
|
|
191
|
+
} & {
|
|
192
|
+
staff_member_key: z.ZodString;
|
|
193
|
+
site_keys: z.ZodArray<z.ZodString, "many">;
|
|
194
|
+
}, "strip", z.ZodTypeAny, {
|
|
195
|
+
name: string;
|
|
196
|
+
staff_member_key: string;
|
|
197
|
+
site_keys: string[];
|
|
198
|
+
email_address?: string | undefined;
|
|
199
|
+
phone_number?: string | undefined;
|
|
200
|
+
}, {
|
|
201
|
+
name: string;
|
|
202
|
+
staff_member_key: string;
|
|
203
|
+
site_keys: string[];
|
|
204
|
+
email_address?: string | undefined;
|
|
205
|
+
phone_number?: string | undefined;
|
|
167
206
|
}>]>;
|
|
168
207
|
export declare const user_identity_key_aliases: z.ZodUnion<[z.ZodObject<{
|
|
169
208
|
guest_key: z.ZodString;
|
|
@@ -26,6 +26,20 @@ export const resident_resource = base_user_identity_resource.extend({
|
|
|
26
26
|
export const user_resource = base_user_identity_resource.extend({
|
|
27
27
|
user_key: z.string().describe('Your unique identifier for the user.'),
|
|
28
28
|
});
|
|
29
|
+
// staff resource
|
|
30
|
+
export const staff_member_resource = base_user_identity_resource.extend({
|
|
31
|
+
staff_member_key: z
|
|
32
|
+
.string()
|
|
33
|
+
.describe('Your unique identifier for the staff.'),
|
|
34
|
+
site_keys: z
|
|
35
|
+
.array(z.string())
|
|
36
|
+
.describe('List of unique identifiers for the sites the staff member is associated with.'),
|
|
37
|
+
}).describe(`
|
|
38
|
+
---
|
|
39
|
+
route_path: /seam/customer/v1/staff_members
|
|
40
|
+
---
|
|
41
|
+
Represents a staff member for a specific customer.
|
|
42
|
+
`);
|
|
29
43
|
export const user_identity_resource = base_user_identity_resource.extend({
|
|
30
44
|
user_identity_key: z
|
|
31
45
|
.string()
|
|
@@ -38,6 +52,7 @@ export const user_identity_resource_union = z.union([
|
|
|
38
52
|
resident_resource,
|
|
39
53
|
user_resource,
|
|
40
54
|
user_identity_resource,
|
|
55
|
+
staff_member_resource,
|
|
41
56
|
]);
|
|
42
57
|
// All user identity key aliases for use in references
|
|
43
58
|
export const user_identity_key_aliases = z.union([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user-identity-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/user-identity-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,iDAAiD;AACjD,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;CAC/D,CAAC,CAAA;AAEF,sDAAsD;AACtD,MAAM,CAAC,MAAM,cAAc,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAC/D,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACxE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAChE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC;CAC1E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAClE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;CAC9E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAC9D,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;CACtE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,2BAA2B,CAAC,MAAM,CAAC;IACvE,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,QAAQ,CAAC,+CAA+C,CAAC;CAC7D,CAAC,CAAA;AAEF,4CAA4C;AAC5C,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC;IAClD,cAAc;IACd,eAAe;IACf,iBAAiB;IACjB,aAAa;IACb,sBAAsB;
|
|
1
|
+
{"version":3,"file":"user-identity-resources.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/customer/user-identity-resources.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,iDAAiD;AACjD,MAAM,2BAA2B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3C,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,CAAC,oDAAoD,CAAC;IACjE,aAAa,EAAE,CAAC;SACb,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,YAAY,EAAE,CAAC;SACZ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,iDAAiD,CAAC;CAC/D,CAAC,CAAA;AAEF,sDAAsD;AACtD,MAAM,CAAC,MAAM,cAAc,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAC/D,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,uCAAuC,CAAC;CACxE,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,eAAe,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAChE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,wCAAwC,CAAC;CAC1E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAClE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,0CAA0C,CAAC;CAC9E,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,aAAa,GAAG,2BAA2B,CAAC,MAAM,CAAC;IAC9D,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;CACtE,CAAC,CAAA;AAEF,iBAAiB;AACjB,MAAM,CAAC,MAAM,qBAAqB,GAAG,2BAA2B,CAAC,MAAM,CAAC;IACtE,gBAAgB,EAAE,CAAC;SAChB,MAAM,EAAE;SACR,QAAQ,CAAC,uCAAuC,CAAC;IACpD,SAAS,EAAE,CAAC;SACT,KAAK,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SACjB,QAAQ,CACP,+EAA+E,CAChF;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,sBAAsB,GAAG,2BAA2B,CAAC,MAAM,CAAC;IACvE,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,QAAQ,CAAC,+CAA+C,CAAC;CAC7D,CAAC,CAAA;AAEF,4CAA4C;AAC5C,MAAM,CAAC,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAAC;IAClD,cAAc;IACd,eAAe;IACf,iBAAiB;IACjB,aAAa;IACb,sBAAsB;IACtB,qBAAqB;CACtB,CAAC,CAAA;AAEF,sDAAsD;AACtD,MAAM,CAAC,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAAC;IAC/C,CAAC,CAAC,MAAM,CAAC,EAAE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IACnC,CAAC,CAAC,MAAM,CAAC,EAAE,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IACpC,CAAC,CAAC,MAAM,CAAC,EAAE,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IACtC,CAAC,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;IAClC,CAAC,CAAC,MAAM,CAAC,EAAE,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC;CAC5C,CAAC,CAAA"}
|
|
@@ -217,17 +217,17 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
217
217
|
accessibility_type: string;
|
|
218
218
|
}>>;
|
|
219
219
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
220
|
-
room_number: z.ZodString
|
|
221
|
-
|
|
222
|
-
|
|
220
|
+
room_number: z.ZodOptional<z.ZodString>;
|
|
221
|
+
common_area_number: z.ZodOptional<z.ZodString>;
|
|
222
|
+
common_area_name: z.ZodOptional<z.ZodString>;
|
|
223
223
|
}, "strip", z.ZodTypeAny, {
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
224
|
+
room_number?: string | undefined;
|
|
225
|
+
common_area_number?: string | undefined;
|
|
226
|
+
common_area_name?: string | undefined;
|
|
227
227
|
}, {
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
228
|
+
room_number?: string | undefined;
|
|
229
|
+
common_area_number?: string | undefined;
|
|
230
|
+
common_area_name?: string | undefined;
|
|
231
231
|
}>>;
|
|
232
232
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
233
233
|
door_name: z.ZodString;
|
|
@@ -244,14 +244,14 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
244
244
|
}>, "many">>;
|
|
245
245
|
}, "strip", z.ZodTypeAny, {
|
|
246
246
|
door_name: string;
|
|
247
|
-
door_category: "
|
|
247
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
248
248
|
profiles?: {
|
|
249
249
|
visionline_door_profile_id: string;
|
|
250
250
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
251
251
|
}[] | undefined;
|
|
252
252
|
}, {
|
|
253
253
|
door_name: string;
|
|
254
|
-
door_category: "
|
|
254
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
255
255
|
profiles?: {
|
|
256
256
|
visionline_door_profile_id: string;
|
|
257
257
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -367,7 +367,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
367
367
|
} | undefined;
|
|
368
368
|
visionline_metadata?: {
|
|
369
369
|
door_name: string;
|
|
370
|
-
door_category: "
|
|
370
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
371
371
|
profiles?: {
|
|
372
372
|
visionline_door_profile_id: string;
|
|
373
373
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -390,9 +390,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
390
390
|
accessibility_type: string;
|
|
391
391
|
} | undefined;
|
|
392
392
|
hotek_metadata?: {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
393
|
+
room_number?: string | undefined;
|
|
394
|
+
common_area_number?: string | undefined;
|
|
395
|
+
common_area_name?: string | undefined;
|
|
396
396
|
} | undefined;
|
|
397
397
|
dormakaba_community_metadata?: {
|
|
398
398
|
access_point_profile: string;
|
|
@@ -431,7 +431,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
431
431
|
} | undefined;
|
|
432
432
|
visionline_metadata?: {
|
|
433
433
|
door_name: string;
|
|
434
|
-
door_category: "
|
|
434
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
435
435
|
profiles?: {
|
|
436
436
|
visionline_door_profile_id: string;
|
|
437
437
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -454,9 +454,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
454
454
|
accessibility_type: string;
|
|
455
455
|
} | undefined;
|
|
456
456
|
hotek_metadata?: {
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
457
|
+
room_number?: string | undefined;
|
|
458
|
+
common_area_number?: string | undefined;
|
|
459
|
+
common_area_name?: string | undefined;
|
|
460
460
|
} | undefined;
|
|
461
461
|
dormakaba_community_metadata?: {
|
|
462
462
|
access_point_profile: string;
|
|
@@ -534,7 +534,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
534
534
|
} | undefined;
|
|
535
535
|
visionline_metadata?: {
|
|
536
536
|
door_name: string;
|
|
537
|
-
door_category: "
|
|
537
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
538
538
|
profiles?: {
|
|
539
539
|
visionline_door_profile_id: string;
|
|
540
540
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -557,9 +557,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
557
557
|
accessibility_type: string;
|
|
558
558
|
} | undefined;
|
|
559
559
|
hotek_metadata?: {
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
560
|
+
room_number?: string | undefined;
|
|
561
|
+
common_area_number?: string | undefined;
|
|
562
|
+
common_area_name?: string | undefined;
|
|
563
563
|
} | undefined;
|
|
564
564
|
dormakaba_community_metadata?: {
|
|
565
565
|
access_point_profile: string;
|
|
@@ -671,7 +671,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
671
671
|
} | undefined;
|
|
672
672
|
visionline_metadata?: {
|
|
673
673
|
door_name: string;
|
|
674
|
-
door_category: "
|
|
674
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
675
675
|
profiles?: {
|
|
676
676
|
visionline_door_profile_id: string;
|
|
677
677
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -694,9 +694,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
694
694
|
accessibility_type: string;
|
|
695
695
|
} | undefined;
|
|
696
696
|
hotek_metadata?: {
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
697
|
+
room_number?: string | undefined;
|
|
698
|
+
common_area_number?: string | undefined;
|
|
699
|
+
common_area_name?: string | undefined;
|
|
700
700
|
} | undefined;
|
|
701
701
|
dormakaba_community_metadata?: {
|
|
702
702
|
access_point_profile: string;
|
|
@@ -810,7 +810,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
810
810
|
} | undefined;
|
|
811
811
|
visionline_metadata?: {
|
|
812
812
|
door_name: string;
|
|
813
|
-
door_category: "
|
|
813
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
814
814
|
profiles?: {
|
|
815
815
|
visionline_door_profile_id: string;
|
|
816
816
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -833,9 +833,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
833
833
|
accessibility_type: string;
|
|
834
834
|
} | undefined;
|
|
835
835
|
hotek_metadata?: {
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
836
|
+
room_number?: string | undefined;
|
|
837
|
+
common_area_number?: string | undefined;
|
|
838
|
+
common_area_name?: string | undefined;
|
|
839
839
|
} | undefined;
|
|
840
840
|
dormakaba_community_metadata?: {
|
|
841
841
|
access_point_profile: string;
|
|
@@ -955,7 +955,7 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
955
955
|
} | undefined;
|
|
956
956
|
visionline_metadata?: {
|
|
957
957
|
door_name: string;
|
|
958
|
-
door_category: "
|
|
958
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
959
959
|
profiles?: {
|
|
960
960
|
visionline_door_profile_id: string;
|
|
961
961
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -978,9 +978,9 @@ declare const phone_provider_session: z.ZodObject<{
|
|
|
978
978
|
accessibility_type: string;
|
|
979
979
|
} | undefined;
|
|
980
980
|
hotek_metadata?: {
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
981
|
+
room_number?: string | undefined;
|
|
982
|
+
common_area_number?: string | undefined;
|
|
983
|
+
common_area_name?: string | undefined;
|
|
984
984
|
} | undefined;
|
|
985
985
|
dormakaba_community_metadata?: {
|
|
986
986
|
access_point_profile: string;
|
|
@@ -1258,17 +1258,17 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1258
1258
|
accessibility_type: string;
|
|
1259
1259
|
}>>;
|
|
1260
1260
|
hotek_metadata: z.ZodOptional<z.ZodObject<{
|
|
1261
|
-
room_number: z.ZodString
|
|
1262
|
-
|
|
1263
|
-
|
|
1261
|
+
room_number: z.ZodOptional<z.ZodString>;
|
|
1262
|
+
common_area_number: z.ZodOptional<z.ZodString>;
|
|
1263
|
+
common_area_name: z.ZodOptional<z.ZodString>;
|
|
1264
1264
|
}, "strip", z.ZodTypeAny, {
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1265
|
+
room_number?: string | undefined;
|
|
1266
|
+
common_area_number?: string | undefined;
|
|
1267
|
+
common_area_name?: string | undefined;
|
|
1268
1268
|
}, {
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1269
|
+
room_number?: string | undefined;
|
|
1270
|
+
common_area_number?: string | undefined;
|
|
1271
|
+
common_area_name?: string | undefined;
|
|
1272
1272
|
}>>;
|
|
1273
1273
|
visionline_metadata: z.ZodOptional<z.ZodObject<{
|
|
1274
1274
|
door_name: z.ZodString;
|
|
@@ -1285,14 +1285,14 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1285
1285
|
}>, "many">>;
|
|
1286
1286
|
}, "strip", z.ZodTypeAny, {
|
|
1287
1287
|
door_name: string;
|
|
1288
|
-
door_category: "
|
|
1288
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1289
1289
|
profiles?: {
|
|
1290
1290
|
visionline_door_profile_id: string;
|
|
1291
1291
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
1292
1292
|
}[] | undefined;
|
|
1293
1293
|
}, {
|
|
1294
1294
|
door_name: string;
|
|
1295
|
-
door_category: "
|
|
1295
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1296
1296
|
profiles?: {
|
|
1297
1297
|
visionline_door_profile_id: string;
|
|
1298
1298
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1408,7 +1408,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1408
1408
|
} | undefined;
|
|
1409
1409
|
visionline_metadata?: {
|
|
1410
1410
|
door_name: string;
|
|
1411
|
-
door_category: "
|
|
1411
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1412
1412
|
profiles?: {
|
|
1413
1413
|
visionline_door_profile_id: string;
|
|
1414
1414
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1431,9 +1431,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1431
1431
|
accessibility_type: string;
|
|
1432
1432
|
} | undefined;
|
|
1433
1433
|
hotek_metadata?: {
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1434
|
+
room_number?: string | undefined;
|
|
1435
|
+
common_area_number?: string | undefined;
|
|
1436
|
+
common_area_name?: string | undefined;
|
|
1437
1437
|
} | undefined;
|
|
1438
1438
|
dormakaba_community_metadata?: {
|
|
1439
1439
|
access_point_profile: string;
|
|
@@ -1472,7 +1472,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1472
1472
|
} | undefined;
|
|
1473
1473
|
visionline_metadata?: {
|
|
1474
1474
|
door_name: string;
|
|
1475
|
-
door_category: "
|
|
1475
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1476
1476
|
profiles?: {
|
|
1477
1477
|
visionline_door_profile_id: string;
|
|
1478
1478
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1495,9 +1495,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1495
1495
|
accessibility_type: string;
|
|
1496
1496
|
} | undefined;
|
|
1497
1497
|
hotek_metadata?: {
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1498
|
+
room_number?: string | undefined;
|
|
1499
|
+
common_area_number?: string | undefined;
|
|
1500
|
+
common_area_name?: string | undefined;
|
|
1501
1501
|
} | undefined;
|
|
1502
1502
|
dormakaba_community_metadata?: {
|
|
1503
1503
|
access_point_profile: string;
|
|
@@ -1575,7 +1575,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1575
1575
|
} | undefined;
|
|
1576
1576
|
visionline_metadata?: {
|
|
1577
1577
|
door_name: string;
|
|
1578
|
-
door_category: "
|
|
1578
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1579
1579
|
profiles?: {
|
|
1580
1580
|
visionline_door_profile_id: string;
|
|
1581
1581
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1598,9 +1598,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1598
1598
|
accessibility_type: string;
|
|
1599
1599
|
} | undefined;
|
|
1600
1600
|
hotek_metadata?: {
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1601
|
+
room_number?: string | undefined;
|
|
1602
|
+
common_area_number?: string | undefined;
|
|
1603
|
+
common_area_name?: string | undefined;
|
|
1604
1604
|
} | undefined;
|
|
1605
1605
|
dormakaba_community_metadata?: {
|
|
1606
1606
|
access_point_profile: string;
|
|
@@ -1712,7 +1712,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1712
1712
|
} | undefined;
|
|
1713
1713
|
visionline_metadata?: {
|
|
1714
1714
|
door_name: string;
|
|
1715
|
-
door_category: "
|
|
1715
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1716
1716
|
profiles?: {
|
|
1717
1717
|
visionline_door_profile_id: string;
|
|
1718
1718
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1735,9 +1735,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1735
1735
|
accessibility_type: string;
|
|
1736
1736
|
} | undefined;
|
|
1737
1737
|
hotek_metadata?: {
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1738
|
+
room_number?: string | undefined;
|
|
1739
|
+
common_area_number?: string | undefined;
|
|
1740
|
+
common_area_name?: string | undefined;
|
|
1741
1741
|
} | undefined;
|
|
1742
1742
|
dormakaba_community_metadata?: {
|
|
1743
1743
|
access_point_profile: string;
|
|
@@ -1851,7 +1851,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1851
1851
|
} | undefined;
|
|
1852
1852
|
visionline_metadata?: {
|
|
1853
1853
|
door_name: string;
|
|
1854
|
-
door_category: "
|
|
1854
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
1855
1855
|
profiles?: {
|
|
1856
1856
|
visionline_door_profile_id: string;
|
|
1857
1857
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -1874,9 +1874,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1874
1874
|
accessibility_type: string;
|
|
1875
1875
|
} | undefined;
|
|
1876
1876
|
hotek_metadata?: {
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1877
|
+
room_number?: string | undefined;
|
|
1878
|
+
common_area_number?: string | undefined;
|
|
1879
|
+
common_area_name?: string | undefined;
|
|
1880
1880
|
} | undefined;
|
|
1881
1881
|
dormakaba_community_metadata?: {
|
|
1882
1882
|
access_point_profile: string;
|
|
@@ -1996,7 +1996,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
1996
1996
|
} | undefined;
|
|
1997
1997
|
visionline_metadata?: {
|
|
1998
1998
|
door_name: string;
|
|
1999
|
-
door_category: "
|
|
1999
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
2000
2000
|
profiles?: {
|
|
2001
2001
|
visionline_door_profile_id: string;
|
|
2002
2002
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -2019,9 +2019,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2019
2019
|
accessibility_type: string;
|
|
2020
2020
|
} | undefined;
|
|
2021
2021
|
hotek_metadata?: {
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2022
|
+
room_number?: string | undefined;
|
|
2023
|
+
common_area_number?: string | undefined;
|
|
2024
|
+
common_area_name?: string | undefined;
|
|
2025
2025
|
} | undefined;
|
|
2026
2026
|
dormakaba_community_metadata?: {
|
|
2027
2027
|
access_point_profile: string;
|
|
@@ -2255,7 +2255,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2255
2255
|
} | undefined;
|
|
2256
2256
|
visionline_metadata?: {
|
|
2257
2257
|
door_name: string;
|
|
2258
|
-
door_category: "
|
|
2258
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
2259
2259
|
profiles?: {
|
|
2260
2260
|
visionline_door_profile_id: string;
|
|
2261
2261
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -2278,9 +2278,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2278
2278
|
accessibility_type: string;
|
|
2279
2279
|
} | undefined;
|
|
2280
2280
|
hotek_metadata?: {
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2281
|
+
room_number?: string | undefined;
|
|
2282
|
+
common_area_number?: string | undefined;
|
|
2283
|
+
common_area_name?: string | undefined;
|
|
2284
2284
|
} | undefined;
|
|
2285
2285
|
dormakaba_community_metadata?: {
|
|
2286
2286
|
access_point_profile: string;
|
|
@@ -2430,7 +2430,7 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2430
2430
|
} | undefined;
|
|
2431
2431
|
visionline_metadata?: {
|
|
2432
2432
|
door_name: string;
|
|
2433
|
-
door_category: "
|
|
2433
|
+
door_category: "entrance" | "guest" | "elevator reader" | "common" | "common (PMS)";
|
|
2434
2434
|
profiles?: {
|
|
2435
2435
|
visionline_door_profile_id: string;
|
|
2436
2436
|
visionline_door_profile_type: "BLE" | "commonDoor" | "touch";
|
|
@@ -2453,9 +2453,9 @@ export declare const phone_session: z.ZodObject<{
|
|
|
2453
2453
|
accessibility_type: string;
|
|
2454
2454
|
} | undefined;
|
|
2455
2455
|
hotek_metadata?: {
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2456
|
+
room_number?: string | undefined;
|
|
2457
|
+
common_area_number?: string | undefined;
|
|
2458
|
+
common_area_name?: string | undefined;
|
|
2459
2459
|
} | undefined;
|
|
2460
2460
|
dormakaba_community_metadata?: {
|
|
2461
2461
|
access_point_profile: string;
|