@seamapi/types 1.209.1 → 1.211.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 +14 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2905 -1397
- package/dist/devicedb.d.cts +199 -795
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +18 -12
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +29 -13
- package/lib/seam/connect/models/acs/acs-credential-provisioning-automation.d.ts +6 -4
- package/lib/seam/connect/models/acs/acs-credential.d.ts +10 -10
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +12 -12
- package/lib/seam/connect/models/acs/acs-system.d.ts +55 -27
- package/lib/seam/connect/models/acs/acs-system.js +7 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-user.d.ts +40 -36
- package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +300 -165
- package/lib/seam/connect/models/action-attempts/common.d.ts +12 -6
- package/lib/seam/connect/models/action-attempts/deprecated.d.ts +140 -77
- package/lib/seam/connect/models/action-attempts/lock-door.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/reset-sandbox-workspace.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/set-cool.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/set-fan-mode.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/set-heat-cool.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/set-heat.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/set-thermostat-off.d.ts +20 -11
- package/lib/seam/connect/models/action-attempts/unlock-door.d.ts +20 -11
- package/lib/seam/connect/models/connected-accounts/connected-account.d.ts +20 -16
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +33 -29
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +213 -48
- package/lib/seam/connect/models/devices/device-provider.d.ts +7 -5
- package/lib/seam/connect/models/devices/device.d.ts +188 -1036
- package/lib/seam/connect/models/devices/phone.d.ts +2023 -15
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +2034 -16
- package/lib/seam/connect/models/events/access-codes.d.ts +306 -238
- package/lib/seam/connect/models/events/acs/common.d.ts +5 -4
- package/lib/seam/connect/models/events/acs/credentials.d.ts +18 -12
- package/lib/seam/connect/models/events/acs/index.d.ts +26 -18
- package/lib/seam/connect/models/events/acs/systems.d.ts +16 -12
- package/lib/seam/connect/models/events/acs/users.d.ts +18 -12
- package/lib/seam/connect/models/events/action-attempts.d.ts +16 -12
- package/lib/seam/connect/models/events/client-sessions.d.ts +14 -10
- package/lib/seam/connect/models/events/connected-accounts.d.ts +98 -70
- package/lib/seam/connect/models/events/devices.d.ts +412 -312
- package/lib/seam/connect/models/events/enrollment-automations.d.ts +14 -10
- package/lib/seam/connect/models/events/phones.d.ts +14 -10
- package/lib/seam/connect/models/events/seam-event.d.ts +456 -344
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +6 -5
- package/lib/seam/connect/models/webhooks/webhook.d.ts +2 -2
- package/lib/seam/connect/openapi.d.ts +15 -0
- package/lib/seam/connect/openapi.js +9 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +20 -0
- package/lib/seam/devicedb/models/device-model.d.ts +6 -4
- package/lib/seam/devicedb/models/manufacturer.d.ts +2 -2
- package/lib/seam/devicedb/route-specs.d.ts +132 -730
- package/package.json +5 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +7 -0
- package/src/lib/seam/connect/openapi.ts +9 -0
- package/src/lib/seam/connect/route-types.ts +28 -0
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const climate_setting_schedule: z.ZodObject<{
|
|
3
|
-
name: z.ZodOptional<z.ZodString>;
|
|
4
|
-
created_at: z.ZodString;
|
|
5
|
-
errors: z.ZodAny;
|
|
2
|
+
export declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendShape<{
|
|
6
3
|
climate_setting_schedule_id: z.ZodString;
|
|
7
4
|
schedule_type: z.ZodLiteral<"time_bound">;
|
|
8
5
|
device_id: z.ZodString;
|
|
6
|
+
name: z.ZodOptional<z.ZodString>;
|
|
9
7
|
schedule_starts_at: z.ZodString;
|
|
10
8
|
schedule_ends_at: z.ZodString;
|
|
9
|
+
created_at: z.ZodString;
|
|
10
|
+
errors: z.ZodAny;
|
|
11
|
+
}, {
|
|
11
12
|
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
12
13
|
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
@@ -16,7 +17,7 @@ export declare const climate_setting_schedule: z.ZodObject<{
|
|
|
16
17
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
17
18
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
18
19
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
19
|
-
}
|
|
20
|
+
}>, "strip", z.ZodTypeAny, {
|
|
20
21
|
created_at: string;
|
|
21
22
|
climate_setting_schedule_id: string;
|
|
22
23
|
schedule_type: "time_bound";
|
|
@@ -7,12 +7,12 @@ export declare const webhook: z.ZodObject<{
|
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
url: string;
|
|
9
9
|
webhook_id: string;
|
|
10
|
-
event_types?: string[] | undefined;
|
|
11
10
|
secret?: string | undefined;
|
|
11
|
+
event_types?: string[] | undefined;
|
|
12
12
|
}, {
|
|
13
13
|
url: string;
|
|
14
14
|
webhook_id: string;
|
|
15
|
-
event_types?: string[] | undefined;
|
|
16
15
|
secret?: string | undefined;
|
|
16
|
+
event_types?: string[] | undefined;
|
|
17
17
|
}>;
|
|
18
18
|
export type Webhook = z.infer<typeof webhook>;
|
|
@@ -587,6 +587,21 @@ declare const _default: {
|
|
|
587
587
|
type: string;
|
|
588
588
|
'x-deprecated': string;
|
|
589
589
|
};
|
|
590
|
+
visionline_metadata: {
|
|
591
|
+
properties: {
|
|
592
|
+
lan_address: {
|
|
593
|
+
type: string;
|
|
594
|
+
};
|
|
595
|
+
mobile_access_uuid: {
|
|
596
|
+
type: string;
|
|
597
|
+
};
|
|
598
|
+
system_id: {
|
|
599
|
+
type: string;
|
|
600
|
+
};
|
|
601
|
+
};
|
|
602
|
+
required: string[];
|
|
603
|
+
type: string;
|
|
604
|
+
};
|
|
590
605
|
warnings: {
|
|
591
606
|
items: {
|
|
592
607
|
properties: {};
|
|
@@ -553,6 +553,15 @@ export default {
|
|
|
553
553
|
type: 'string',
|
|
554
554
|
'x-deprecated': 'Use `external_type_display_name`.',
|
|
555
555
|
},
|
|
556
|
+
visionline_metadata: {
|
|
557
|
+
properties: {
|
|
558
|
+
lan_address: { type: 'string' },
|
|
559
|
+
mobile_access_uuid: { type: 'string' },
|
|
560
|
+
system_id: { type: 'string' },
|
|
561
|
+
},
|
|
562
|
+
required: ['mobile_access_uuid', 'system_id', 'lan_address'],
|
|
563
|
+
type: 'object',
|
|
564
|
+
},
|
|
556
565
|
warnings: {
|
|
557
566
|
items: { properties: {}, type: 'object' },
|
|
558
567
|
type: 'array',
|