Skip to content

Commit

Permalink
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -4,6 +4,7 @@ export const acs_entrance_dormakaba_community_metadata = z.object({
access_point_name: z.string(),
common_area_number: z.number().optional(),
inner_access_points_names: z.array(z.string()).optional(),
lease_ids: z.array(z.string()).optional(),
})

export type AcsEntranceDormakabaCommunityMetadata = z.infer<
1 change: 1 addition & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
@@ -641,6 +641,7 @@ export default {
items: { type: 'string' },
type: 'array',
},
lease_ids: { items: { type: 'string' }, type: 'array' },
},
required: ['access_point_name'],
type: 'object',
5 changes: 5 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
@@ -4689,6 +4689,7 @@ export interface Routes {
access_point_name: string
common_area_number?: number | undefined
inner_access_points_names?: string[] | undefined
lease_ids?: string[] | undefined
}
| undefined
assa_abloy_vostio_metadata?:
@@ -5765,6 +5766,7 @@ export interface Routes {
access_point_name: string
common_area_number?: number | undefined
inner_access_points_names?: string[] | undefined
lease_ids?: string[] | undefined
}
| undefined
assa_abloy_vostio_metadata?:
@@ -8390,6 +8392,7 @@ export interface Routes {
access_point_name: string
common_area_number?: number | undefined
inner_access_points_names?: string[] | undefined
lease_ids?: string[] | undefined
}
| undefined
assa_abloy_vostio_metadata?:
@@ -8493,6 +8496,7 @@ export interface Routes {
access_point_name: string
common_area_number?: number | undefined
inner_access_points_names?: string[] | undefined
lease_ids?: string[] | undefined
}
| undefined
assa_abloy_vostio_metadata?:
@@ -9649,6 +9653,7 @@ export interface Routes {
access_point_name: string
common_area_number?: number | undefined
inner_access_points_names?: string[] | undefined
lease_ids?: string[] | undefined
}
| undefined
assa_abloy_vostio_metadata?:

0 comments on commit adc420e

Please sign in to comment.