From c88240fc8d768090c2ec3bf193bac9685bfdc6e3 Mon Sep 17 00:00:00 2001 From: Seam Bot Date: Thu, 23 Nov 2023 17:32:13 +0000 Subject: [PATCH] Update via seamapi/seam-connect@bc0a99693622089530fc722c14458e7a23fb45cc --- src/lib/seam/connect/openapi.ts | 8 +++++++- src/lib/seam/connect/route-types.ts | 7 +++++++ src/lib/seam/connect/unstable/models/acs/user.ts | 1 + 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/src/lib/seam/connect/openapi.ts b/src/lib/seam/connect/openapi.ts index 9bda23ca..3a55c189 100644 --- a/src/lib/seam/connect/openapi.ts +++ b/src/lib/seam/connect/openapi.ts @@ -247,6 +247,7 @@ export default { }, external_type_display_name: { type: 'string' }, full_name: { type: 'string' }, + hid_acs_system_id: { format: 'uuid', type: 'string' }, is_suspended: { type: 'boolean' }, phone_number: { nullable: true, type: 'string' }, workspace_id: { format: 'uuid', type: 'string' }, @@ -4747,6 +4748,7 @@ export default { }, email_address: { format: 'email', type: 'string' }, full_name: { type: 'string' }, + hid_acs_system_id: { format: 'uuid', type: 'string' }, phone_number: { nullable: true, type: 'string' }, }, required: ['acs_user_id'], @@ -4795,6 +4797,7 @@ export default { }, email_address: { format: 'email', type: 'string' }, full_name: { type: 'string' }, + hid_acs_system_id: { format: 'uuid', type: 'string' }, phone_number: { nullable: true, type: 'string' }, }, required: ['acs_user_id'], @@ -7571,7 +7574,10 @@ export default { content: { 'application/json': { schema: { - properties: { device_id: { format: 'uuid', type: 'string' } }, + properties: { + device_id: { format: 'uuid', type: 'string' }, + is_programmed: { type: 'boolean' }, + }, required: ['device_id'], type: 'object', }, diff --git a/src/lib/seam/connect/route-types.ts b/src/lib/seam/connect/route-types.ts index 78e38e1f..42e18d44 100644 --- a/src/lib/seam/connect/route-types.ts +++ b/src/lib/seam/connect/route-types.ts @@ -729,6 +729,7 @@ export interface Routes { acs_users: Array<{ acs_user_id: string acs_system_id: string + hid_acs_system_id?: string | undefined workspace_id: string created_at: string display_name: string @@ -1103,6 +1104,7 @@ export interface Routes { acs_user: { acs_user_id: string acs_system_id: string + hid_acs_system_id?: string | undefined workspace_id: string created_at: string display_name: string @@ -1141,6 +1143,7 @@ export interface Routes { acs_user: { acs_user_id: string acs_system_id: string + hid_acs_system_id?: string | undefined workspace_id: string created_at: string display_name: string @@ -1168,6 +1171,7 @@ export interface Routes { acs_users: Array<{ acs_user_id: string acs_system_id: string + hid_acs_system_id?: string | undefined workspace_id: string created_at: string display_name: string @@ -1227,6 +1231,7 @@ export interface Routes { email?: string | undefined phone_number?: string | undefined email_address?: string | undefined + hid_acs_system_id?: string | undefined } commonParams: {} formData: {} @@ -6383,6 +6388,7 @@ export interface Routes { jsonBody: {} commonParams: { device_id: string + is_programmed?: boolean | undefined } formData: {} jsonResponse: { @@ -8786,6 +8792,7 @@ export interface Routes { acs_users: Array<{ acs_user_id: string acs_system_id: string + hid_acs_system_id?: string | undefined workspace_id: string created_at: string display_name: string diff --git a/src/lib/seam/connect/unstable/models/acs/user.ts b/src/lib/seam/connect/unstable/models/acs/user.ts index 04a6874f..2da9ef60 100644 --- a/src/lib/seam/connect/unstable/models/acs/user.ts +++ b/src/lib/seam/connect/unstable/models/acs/user.ts @@ -36,6 +36,7 @@ export const acs_user = z .object({ acs_user_id: z.string().uuid(), acs_system_id: z.string().uuid(), + hid_acs_system_id: z.string().uuid().optional(), workspace_id: z.string().uuid(), created_at: z.string().datetime(), display_name: z.string(),