Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
seambot committed Oct 3, 2023
1 parent c8daf27 commit a69f94e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/lib/seam/connect/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -763,11 +763,13 @@ export default {
device_info_model: { type: 'string' },
device_name: { type: 'string' },
product_model: { type: 'string' },
product_name: { type: 'string' },
product_type: { type: 'string' },
},
required: [
'device_id',
'device_name',
'product_name',
'product_type',
'product_model',
'device_info_model',
Expand Down
4 changes: 4 additions & 0 deletions src/lib/seam/connect/route-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1572,6 +1572,7 @@ export interface Routes {
| {
device_id: string
device_name: string
product_name: string
product_type: string
product_model: string
device_info_model: string
Expand Down Expand Up @@ -2266,6 +2267,7 @@ export interface Routes {
| {
device_id: string
device_name: string
product_name: string
product_type: string
product_model: string
device_info_model: string
Expand Down Expand Up @@ -3932,6 +3934,7 @@ export interface Routes {
| {
device_id: string
device_name: string
product_name: string
product_type: string
product_model: string
device_info_model: string
Expand Down Expand Up @@ -4656,6 +4659,7 @@ export interface Routes {
| {
device_id: string
device_name: string
product_name: string
product_type: string
product_model: string
device_info_model: string
Expand Down
1 change: 1 addition & 0 deletions src/lib/seam/connect/unstable/models/device-metadata.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ export const device_metadata = z
wyze_metadata: z.object({
device_id: z.string(),
device_name: z.string(),
product_name: z.string(),
product_type: z.string(),
product_model: z.string(),
device_info_model: z.string(),
Expand Down

0 comments on commit a69f94e

Please sign in to comment.