@seamapi/types 0.18.0 → 0.20.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 +5772 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +7844 -1
- package/lib/seam/connect/openapi.d.ts +7844 -1
- package/lib/seam/connect/openapi.js +5772 -1
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +2 -0
- package/lib/seam/connect/unstable/models/capability-properties/index.d.ts +24 -24
- package/lib/seam/connect/unstable/models/capability-properties/thermostat.d.ts +34 -34
- package/lib/seam/connect/unstable/models/device-metadata.d.ts +4 -4
- package/lib/seam/connect/unstable/models/managed-device.d.ts +48 -48
- package/lib/seam/connect/unstable/models/unmanaged-device.d.ts +6 -6
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +5772 -1
- package/src/lib/seam/connect/route-types.ts +2 -0
|
@@ -581,6 +581,7 @@ export interface Routes {
|
|
|
581
581
|
commonParams: {
|
|
582
582
|
client_session_id?: string | undefined
|
|
583
583
|
user_identifier_key?: string | undefined
|
|
584
|
+
connect_webview_id?: string | undefined
|
|
584
585
|
without_user_identifier_key?: boolean | undefined
|
|
585
586
|
}
|
|
586
587
|
formData: {}
|
|
@@ -3582,6 +3583,7 @@ export interface Routes {
|
|
|
3582
3583
|
workspace_id: string
|
|
3583
3584
|
name: string
|
|
3584
3585
|
is_sandbox: boolean
|
|
3586
|
+
connect_partner_name: string | null
|
|
3585
3587
|
}>
|
|
3586
3588
|
}
|
|
3587
3589
|
}
|