@seamapi/types 1.82.0 → 1.83.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 +9 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +33 -0
- package/lib/seam/connect/openapi.d.ts +16 -0
- package/lib/seam/connect/openapi.js +8 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +17 -0
- package/lib/seam/connect/unstable/models/acs/user.d.ts +9 -0
- package/lib/seam/connect/unstable/models/acs/user.js +3 -0
- package/lib/seam/connect/unstable/models/acs/user.js.map +1 -1
- package/lib/seam/connect/unstable/models/index.d.ts +1 -0
- package/lib/seam/connect/unstable/models/index.js +1 -0
- package/lib/seam/connect/unstable/models/index.js.map +1 -1
- package/lib/seam/connect/unstable/schemas.d.ts +1 -1
- package/lib/seam/connect/unstable/schemas.js +1 -1
- package/lib/seam/connect/unstable/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +8 -0
- package/src/lib/seam/connect/route-types.ts +17 -0
- package/src/lib/seam/connect/unstable/models/acs/user.ts +3 -0
- package/src/lib/seam/connect/unstable/models/index.ts +1 -0
- package/src/lib/seam/connect/unstable/schemas.ts +1 -0
|
@@ -712,6 +712,9 @@ export interface Routes {
|
|
|
712
712
|
starts_at: string;
|
|
713
713
|
ends_at: string;
|
|
714
714
|
} | undefined;
|
|
715
|
+
user_identity_id?: string | undefined;
|
|
716
|
+
user_identity_email_address?: string | undefined;
|
|
717
|
+
user_identity_phone_number?: string | undefined;
|
|
715
718
|
full_name?: string | undefined;
|
|
716
719
|
/** Deprecated: use email_address. */
|
|
717
720
|
email?: string | undefined;
|
|
@@ -1114,6 +1117,9 @@ export interface Routes {
|
|
|
1114
1117
|
starts_at: string;
|
|
1115
1118
|
ends_at: string;
|
|
1116
1119
|
} | undefined;
|
|
1120
|
+
user_identity_id?: string | undefined;
|
|
1121
|
+
user_identity_email_address?: string | undefined;
|
|
1122
|
+
user_identity_phone_number?: string | undefined;
|
|
1117
1123
|
full_name?: string | undefined;
|
|
1118
1124
|
/** Deprecated: use email_address. */
|
|
1119
1125
|
email?: string | undefined;
|
|
@@ -1157,6 +1163,9 @@ export interface Routes {
|
|
|
1157
1163
|
starts_at: string;
|
|
1158
1164
|
ends_at: string;
|
|
1159
1165
|
} | undefined;
|
|
1166
|
+
user_identity_id?: string | undefined;
|
|
1167
|
+
user_identity_email_address?: string | undefined;
|
|
1168
|
+
user_identity_phone_number?: string | undefined;
|
|
1160
1169
|
full_name?: string | undefined;
|
|
1161
1170
|
/** Deprecated: use email_address. */
|
|
1162
1171
|
email?: string | undefined;
|
|
@@ -1172,6 +1181,8 @@ export interface Routes {
|
|
|
1172
1181
|
jsonBody: {};
|
|
1173
1182
|
commonParams: {
|
|
1174
1183
|
user_identity_id?: string | undefined;
|
|
1184
|
+
user_identity_phone_number?: string | undefined;
|
|
1185
|
+
user_identity_email_address?: string | undefined;
|
|
1175
1186
|
acs_system_id?: string | undefined;
|
|
1176
1187
|
};
|
|
1177
1188
|
formData: {};
|
|
@@ -1190,6 +1201,9 @@ export interface Routes {
|
|
|
1190
1201
|
starts_at: string;
|
|
1191
1202
|
ends_at: string;
|
|
1192
1203
|
} | undefined;
|
|
1204
|
+
user_identity_id?: string | undefined;
|
|
1205
|
+
user_identity_email_address?: string | undefined;
|
|
1206
|
+
user_identity_phone_number?: string | undefined;
|
|
1193
1207
|
full_name?: string | undefined;
|
|
1194
1208
|
/** Deprecated: use email_address. */
|
|
1195
1209
|
email?: string | undefined;
|
|
@@ -7916,6 +7930,9 @@ export interface Routes {
|
|
|
7916
7930
|
starts_at: string;
|
|
7917
7931
|
ends_at: string;
|
|
7918
7932
|
} | undefined;
|
|
7933
|
+
user_identity_id?: string | undefined;
|
|
7934
|
+
user_identity_email_address?: string | undefined;
|
|
7935
|
+
user_identity_phone_number?: string | undefined;
|
|
7919
7936
|
full_name?: string | undefined;
|
|
7920
7937
|
/** Deprecated: use email_address. */
|
|
7921
7938
|
email?: string | undefined;
|
|
@@ -10,6 +10,7 @@ export declare const acs_user: z.ZodObject<{
|
|
|
10
10
|
acs_user_id: z.ZodString;
|
|
11
11
|
display_name: z.ZodString;
|
|
12
12
|
is_suspended: z.ZodBoolean;
|
|
13
|
+
user_identity_id: z.ZodOptional<z.ZodString>;
|
|
13
14
|
hid_acs_system_id: z.ZodOptional<z.ZodString>;
|
|
14
15
|
access_schedule: z.ZodOptional<z.ZodObject<{
|
|
15
16
|
starts_at: z.ZodString;
|
|
@@ -21,6 +22,8 @@ export declare const acs_user: z.ZodObject<{
|
|
|
21
22
|
starts_at: string;
|
|
22
23
|
ends_at: string;
|
|
23
24
|
}>>;
|
|
25
|
+
user_identity_email_address: z.ZodOptional<z.ZodString>;
|
|
26
|
+
user_identity_phone_number: z.ZodOptional<z.ZodString>;
|
|
24
27
|
full_name: z.ZodOptional<z.ZodString>;
|
|
25
28
|
email: z.ZodOptional<z.ZodString>;
|
|
26
29
|
email_address: z.ZodOptional<z.ZodString>;
|
|
@@ -34,11 +37,14 @@ export declare const acs_user: z.ZodObject<{
|
|
|
34
37
|
is_suspended: boolean;
|
|
35
38
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | undefined;
|
|
36
39
|
external_type_display_name?: string | undefined;
|
|
40
|
+
user_identity_id?: string | undefined;
|
|
37
41
|
hid_acs_system_id?: string | undefined;
|
|
38
42
|
access_schedule?: {
|
|
39
43
|
starts_at: string;
|
|
40
44
|
ends_at: string;
|
|
41
45
|
} | undefined;
|
|
46
|
+
user_identity_email_address?: string | undefined;
|
|
47
|
+
user_identity_phone_number?: string | undefined;
|
|
42
48
|
full_name?: string | undefined;
|
|
43
49
|
email?: string | undefined;
|
|
44
50
|
email_address?: string | undefined;
|
|
@@ -52,11 +58,14 @@ export declare const acs_user: z.ZodObject<{
|
|
|
52
58
|
is_suspended: boolean;
|
|
53
59
|
external_type?: "pti_user" | "brivo_user" | "hid_credential_manager_user" | "salto_site_user" | undefined;
|
|
54
60
|
external_type_display_name?: string | undefined;
|
|
61
|
+
user_identity_id?: string | undefined;
|
|
55
62
|
hid_acs_system_id?: string | undefined;
|
|
56
63
|
access_schedule?: {
|
|
57
64
|
starts_at: string;
|
|
58
65
|
ends_at: string;
|
|
59
66
|
} | undefined;
|
|
67
|
+
user_identity_email_address?: string | undefined;
|
|
68
|
+
user_identity_phone_number?: string | undefined;
|
|
60
69
|
full_name?: string | undefined;
|
|
61
70
|
email?: string | undefined;
|
|
62
71
|
email_address?: string | undefined;
|
|
@@ -29,6 +29,9 @@ export const acs_user = z
|
|
|
29
29
|
external_type_display_name: z.string().optional(),
|
|
30
30
|
is_suspended: z.boolean(),
|
|
31
31
|
access_schedule: schedule.optional(),
|
|
32
|
+
user_identity_id: z.string().optional(),
|
|
33
|
+
user_identity_email_address: z.string().optional(),
|
|
34
|
+
user_identity_phone_number: z.string().optional(),
|
|
32
35
|
})
|
|
33
36
|
.merge(user_fields);
|
|
34
37
|
//# sourceMappingURL=user.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;CAClB,CAAC,CAAA;AAIF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/unstable/models/acs/user.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAA;AACjD,OAAO,EAAE,QAAQ,EAAE,MAAM,gBAAgB,CAAA;AAEzC,MAAM,CAAC,MAAM,sBAAsB,GAAG,CAAC,CAAC,IAAI,CAAC;IAC3C,UAAU;IACV,YAAY;IACZ,6BAA6B;IAC7B,iBAAiB;CAClB,CAAC,CAAA;AAIF,MAAM,WAAW,GAAG,CAAC,CAAC,MAAM,CAAC;IAC3B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,KAAK,EAAE,CAAC;SACL,MAAM,EAAE;SACR,KAAK,EAAE;SACP,QAAQ,EAAE;SACV,QAAQ,CAAC,gCAAgC,CAAC;IAC7C,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,CAAC,QAAQ,EAAE;IAC5C,YAAY,EAAE,YAAY,CAAC,QAAQ,EAAE;CACtC,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,QAAQ,GAAG,CAAC;KACtB,MAAM,CAAC;IACN,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC9B,aAAa,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAChC,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE;IAC/C,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE;IAC/B,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,YAAY,EAAE,CAAC,CAAC,MAAM,EAAE;IACxB,aAAa,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAChD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjD,YAAY,EAAE,CAAC,CAAC,OAAO,EAAE;IACzB,eAAe,EAAE,QAAQ,CAAC,QAAQ,EAAE;IACpC,gBAAgB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACvC,2BAA2B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClD,0BAA0B,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClD,CAAC;KACD,KAAK,CAAC,WAAW,CAAC,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kCAAkC,CAAA;AAChD,cAAc,oBAAoB,CAAA;AAClC,cAAc,cAAc,CAAA;AAC5B,cAAc,oBAAoB,CAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/unstable/models/index.ts"],"names":[],"mappings":"AAAA,cAAc,yBAAyB,CAAA;AACvC,cAAc,gBAAgB,CAAA;AAC9B,cAAc,kCAAkC,CAAA;AAChD,cAAc,oBAAoB,CAAA;AAClC,cAAc,cAAc,CAAA;AAC5B,cAAc,mBAAmB,CAAA;AACjC,cAAc,oBAAoB,CAAA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, enrollment_automation, fan_mode_setting, lock_device_type, managed_access_code, managed_device, network, noise_sensor_device_type, phone, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
1
|
+
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, enrollment_automation, fan_mode_setting, lock_device_type, managed_access_code, managed_device, network, noise_sensor_device_type, phone, phone_number, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, enrollment_automation, fan_mode_setting, lock_device_type, managed_access_code, managed_device, network, noise_sensor_device_type, phone, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
1
|
+
export { access_code_code_constraint, acs_access_group, acs_access_group_external_type, acs_credential, acs_credential_external_type, acs_credential_pool, acs_credential_pool_external_type, acs_credential_provisioning_automation, acs_entrance, acs_system, acs_system_external_type, acs_user, acs_user_external_type, any_device_type, battery_status, capabilities, climate_setting, climate_setting_schedule, common_device_properties, enrollment_automation, fan_mode_setting, lock_device_type, managed_access_code, managed_device, network, noise_sensor_device_type, phone, phone_number, thermostat_capability_properties, thermostat_device_type, unmanaged_access_code, unmanaged_device, user_identity, } from './models/index.js';
|
|
2
2
|
//# sourceMappingURL=schemas.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/unstable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,sCAAsC,EACtC,YAAY,EACZ,UAAU,EACV,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,OAAO,EACP,wBAAwB,EACxB,KAAK,EACL,gCAAgC,EAChC,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,GACd,MAAM,mBAAmB,CAAA"}
|
|
1
|
+
{"version":3,"file":"schemas.js","sourceRoot":"","sources":["../../../../src/lib/seam/connect/unstable/schemas.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,2BAA2B,EAC3B,gBAAgB,EAChB,8BAA8B,EAC9B,cAAc,EACd,4BAA4B,EAC5B,mBAAmB,EACnB,iCAAiC,EACjC,sCAAsC,EACtC,YAAY,EACZ,UAAU,EACV,wBAAwB,EACxB,QAAQ,EACR,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,YAAY,EACZ,eAAe,EACf,wBAAwB,EACxB,wBAAwB,EACxB,qBAAqB,EACrB,gBAAgB,EAChB,gBAAgB,EAChB,mBAAmB,EACnB,cAAc,EACd,OAAO,EACP,wBAAwB,EACxB,KAAK,EACL,YAAY,EACZ,gCAAgC,EAChC,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,aAAa,GACd,MAAM,mBAAmB,CAAA"}
|
package/package.json
CHANGED
|
@@ -267,6 +267,9 @@ export default {
|
|
|
267
267
|
hid_acs_system_id: { format: 'uuid', type: 'string' },
|
|
268
268
|
is_suspended: { type: 'boolean' },
|
|
269
269
|
phone_number: { nullable: true, type: 'string' },
|
|
270
|
+
user_identity_email_address: { type: 'string' },
|
|
271
|
+
user_identity_id: { type: 'string' },
|
|
272
|
+
user_identity_phone_number: { type: 'string' },
|
|
270
273
|
workspace_id: { format: 'uuid', type: 'string' },
|
|
271
274
|
},
|
|
272
275
|
required: [
|
|
@@ -6330,7 +6333,12 @@ export default {
|
|
|
6330
6333
|
schema: {
|
|
6331
6334
|
properties: {
|
|
6332
6335
|
acs_system_id: { format: 'uuid', type: 'string' },
|
|
6336
|
+
user_identity_email_address: { type: 'string' },
|
|
6333
6337
|
user_identity_id: { format: 'uuid', type: 'string' },
|
|
6338
|
+
user_identity_phone_number: {
|
|
6339
|
+
nullable: true,
|
|
6340
|
+
type: 'string',
|
|
6341
|
+
},
|
|
6334
6342
|
},
|
|
6335
6343
|
type: 'object',
|
|
6336
6344
|
},
|
|
@@ -749,6 +749,9 @@ export interface Routes {
|
|
|
749
749
|
ends_at: string
|
|
750
750
|
}
|
|
751
751
|
| undefined
|
|
752
|
+
user_identity_id?: string | undefined
|
|
753
|
+
user_identity_email_address?: string | undefined
|
|
754
|
+
user_identity_phone_number?: string | undefined
|
|
752
755
|
full_name?: string | undefined
|
|
753
756
|
/** Deprecated: use email_address. */
|
|
754
757
|
email?: string | undefined
|
|
@@ -1243,6 +1246,9 @@ export interface Routes {
|
|
|
1243
1246
|
ends_at: string
|
|
1244
1247
|
}
|
|
1245
1248
|
| undefined
|
|
1249
|
+
user_identity_id?: string | undefined
|
|
1250
|
+
user_identity_email_address?: string | undefined
|
|
1251
|
+
user_identity_phone_number?: string | undefined
|
|
1246
1252
|
full_name?: string | undefined
|
|
1247
1253
|
/** Deprecated: use email_address. */
|
|
1248
1254
|
email?: string | undefined
|
|
@@ -1295,6 +1301,9 @@ export interface Routes {
|
|
|
1295
1301
|
ends_at: string
|
|
1296
1302
|
}
|
|
1297
1303
|
| undefined
|
|
1304
|
+
user_identity_id?: string | undefined
|
|
1305
|
+
user_identity_email_address?: string | undefined
|
|
1306
|
+
user_identity_phone_number?: string | undefined
|
|
1298
1307
|
full_name?: string | undefined
|
|
1299
1308
|
/** Deprecated: use email_address. */
|
|
1300
1309
|
email?: string | undefined
|
|
@@ -1310,6 +1319,8 @@ export interface Routes {
|
|
|
1310
1319
|
jsonBody: {}
|
|
1311
1320
|
commonParams: {
|
|
1312
1321
|
user_identity_id?: string | undefined
|
|
1322
|
+
user_identity_phone_number?: string | undefined
|
|
1323
|
+
user_identity_email_address?: string | undefined
|
|
1313
1324
|
acs_system_id?: string | undefined
|
|
1314
1325
|
}
|
|
1315
1326
|
formData: {}
|
|
@@ -1337,6 +1348,9 @@ export interface Routes {
|
|
|
1337
1348
|
ends_at: string
|
|
1338
1349
|
}
|
|
1339
1350
|
| undefined
|
|
1351
|
+
user_identity_id?: string | undefined
|
|
1352
|
+
user_identity_email_address?: string | undefined
|
|
1353
|
+
user_identity_phone_number?: string | undefined
|
|
1340
1354
|
full_name?: string | undefined
|
|
1341
1355
|
/** Deprecated: use email_address. */
|
|
1342
1356
|
email?: string | undefined
|
|
@@ -10909,6 +10923,9 @@ export interface Routes {
|
|
|
10909
10923
|
ends_at: string
|
|
10910
10924
|
}
|
|
10911
10925
|
| undefined
|
|
10926
|
+
user_identity_id?: string | undefined
|
|
10927
|
+
user_identity_email_address?: string | undefined
|
|
10928
|
+
user_identity_phone_number?: string | undefined
|
|
10912
10929
|
full_name?: string | undefined
|
|
10913
10930
|
/** Deprecated: use email_address. */
|
|
10914
10931
|
email?: string | undefined
|
|
@@ -35,6 +35,9 @@ export const acs_user = z
|
|
|
35
35
|
external_type_display_name: z.string().optional(),
|
|
36
36
|
is_suspended: z.boolean(),
|
|
37
37
|
access_schedule: schedule.optional(),
|
|
38
|
+
user_identity_id: z.string().optional(),
|
|
39
|
+
user_identity_email_address: z.string().optional(),
|
|
40
|
+
user_identity_phone_number: z.string().optional(),
|
|
38
41
|
})
|
|
39
42
|
.merge(user_fields)
|
|
40
43
|
|