New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@seamapi/types

Package Overview
Dependencies
Maintainers
6
Versions
515
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@seamapi/types - npm Package Compare versions

Comparing version 1.2.0 to 1.3.0

9

lib/seam/connect/unstable/models/capability-properties/index.d.ts

@@ -111,2 +111,3 @@ import { z } from 'zod';

is_fan_running: z.ZodOptional<z.ZodBoolean>;
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;

@@ -223,2 +224,3 @@ current_climate_setting: z.ZodOptional<z.ZodObject<{

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -285,2 +287,3 @@ current_climate_setting?: {

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -366,2 +369,3 @@ current_climate_setting?: {

is_fan_running: z.ZodOptional<z.ZodBoolean>;
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;

@@ -472,2 +476,3 @@ current_climate_setting: z.ZodOptional<z.ZodObject<{

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -528,2 +533,3 @@ current_climate_setting?: {

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -602,2 +608,3 @@ current_climate_setting?: {

is_fan_running: z.ZodOptional<z.ZodBoolean>;
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;

@@ -708,2 +715,3 @@ current_climate_setting: z.ZodOptional<z.ZodObject<{

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -764,2 +772,3 @@ current_climate_setting?: {

is_fan_running?: boolean | undefined;
fan_mode_setting?: "auto" | "on" | undefined;
is_temporary_manual_override_active?: boolean | undefined;

@@ -766,0 +775,0 @@ current_climate_setting?: {

2

lib/seam/connect/unstable/models/capability-properties/thermostat.js
import { z } from 'zod';
export const hvac_mode_setting = z.enum(['off', 'heat', 'cool', 'heat_cool']);
export const fan_mode_setting = z.enum(['auto', 'on']);
export const climate_setting = z.object({

@@ -36,2 +37,3 @@ automatic_heating_enabled: z.boolean(),

is_fan_running: z.boolean(),
fan_mode_setting,
/**

@@ -38,0 +40,0 @@ * this is true if the current thermostat settings differ that what is on seam, and `current_climate_setting.manual_override_allowed: true`

2

package.json
{
"name": "@seamapi/types",
"version": "1.2.0",
"version": "1.3.0",
"description": "TypeScript types for the Seam API.",

@@ -5,0 +5,0 @@ "type": "module",

@@ -7,2 +7,6 @@ import { z } from 'zod'

export const fan_mode_setting = z.enum(['auto', 'on'])
export type FanModeSetting = z.infer<typeof fan_mode_setting>
export const climate_setting = z.object({

@@ -45,2 +49,3 @@ automatic_heating_enabled: z.boolean(),

is_fan_running: z.boolean(),
fan_mode_setting,

@@ -47,0 +52,0 @@ /**

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc