Skip to content

Commit

Permalink
feat: Add akiles_metadata.product_name (#1229)
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot authored Nov 1, 2024
1 parent 9016bbf commit 64b09f6
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/lib/seam/connect/models/devices/device-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ export const device_metadata = z
akiles_metadata: z.object({
gadget_name: z.string(),
gadget_id: z.string(),
product_name: z.string(),

/**
* Group ID to add users to for this device
Expand Down
3 changes: 2 additions & 1 deletion src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3995,8 +3995,9 @@ export default {
_member_group_id: { type: 'string' },
gadget_id: { type: 'string' },
gadget_name: { type: 'string' },
product_name: { type: 'string' },
},
required: ['gadget_name', 'gadget_id'],
required: ['gadget_name', 'gadget_id', 'product_name'],
type: 'object',
},
assa_abloy_vostio_metadata: {
Expand Down
14 changes: 14 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6707,6 +6707,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -11944,6 +11945,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -12760,6 +12762,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -14287,6 +14290,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -14932,6 +14936,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -15748,6 +15753,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -16393,6 +16399,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -18963,6 +18970,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -19608,6 +19616,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -24870,6 +24879,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -27412,6 +27422,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -28057,6 +28068,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -30771,6 +30783,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down Expand Up @@ -31418,6 +31431,7 @@ export interface Routes {
| {
gadget_name: string
gadget_id: string
product_name: string
_member_group_id?: string | undefined
}
| undefined
Expand Down

0 comments on commit 64b09f6

Please sign in to comment.