@keystrokehq/sensibo 0.1.2 → 0.1.4
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/actions/get-all-devices.cjs +8 -8
- package/dist/actions/get-all-devices.cjs.map +1 -1
- package/dist/actions/get-all-devices.d.cts +8 -8
- package/dist/actions/get-all-devices.d.mts +8 -8
- package/dist/actions/get-all-devices.mjs +8 -8
- package/dist/actions/get-all-devices.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -6,38 +6,38 @@ const SensiboGetAllDevices_RoomSchema = zod.z.object({
|
|
|
6
6
|
id: zod.z.string().describe("Unique identifier of the room").nullable(),
|
|
7
7
|
uid: zod.z.string().describe("Unique uid of the room").nullable().optional(),
|
|
8
8
|
name: zod.z.string().describe("Name of the room").nullable().optional()
|
|
9
|
-
});
|
|
9
|
+
}).passthrough();
|
|
10
10
|
const SensiboGetAllDevices_AcStateSchema = zod.z.object({
|
|
11
11
|
on: zod.z.boolean().describe("AC power status").nullable(),
|
|
12
12
|
mode: zod.z.string().describe("AC operating mode, e.g., 'cool', 'heat'").nullable(),
|
|
13
13
|
swing: zod.z.string().describe("Swing setting").nullable().optional(),
|
|
14
14
|
fanLevel: zod.z.string().describe("Fan level setting").nullable(),
|
|
15
15
|
targetTemperature: zod.z.number().describe("Target temperature setpoint").nullable()
|
|
16
|
-
});
|
|
16
|
+
}).passthrough();
|
|
17
17
|
const SensiboGetAllDevices_FeaturesSchema = zod.z.object({
|
|
18
18
|
cooling: zod.z.boolean().describe("Whether cooling is supported").nullable(),
|
|
19
19
|
heating: zod.z.boolean().describe("Whether heating is supported").nullable(),
|
|
20
20
|
sensors: zod.z.array(zod.z.string()).describe("List of available sensors"),
|
|
21
21
|
scheduling: zod.z.boolean().describe("Whether scheduling is supported").nullable(),
|
|
22
22
|
humidityControl: zod.z.boolean().describe("Whether humidity control is supported").nullable()
|
|
23
|
-
});
|
|
23
|
+
}).passthrough();
|
|
24
24
|
const SensiboGetAllDevices_MeasurementsSchema = zod.z.object({
|
|
25
25
|
co2: zod.z.number().int().describe("CO2 level in ppm").nullable().optional(),
|
|
26
26
|
tvoc: zod.z.number().int().describe("Total volatile organic compounds level").nullable().optional(),
|
|
27
27
|
humidity: zod.z.number().describe("Current humidity percentage").nullable(),
|
|
28
28
|
temperature: zod.z.number().describe("Current temperature in Celsius").nullable()
|
|
29
|
-
});
|
|
29
|
+
}).passthrough();
|
|
30
30
|
const SensiboGetAllDevices_ConnectionStatusSchema = zod.z.object({
|
|
31
31
|
since: zod.z.string().describe("ISO timestamp when status last changed").nullable(),
|
|
32
32
|
status: zod.z.string().describe("Connection status, e.g., 'ONLINE' or 'OFFLINE'").nullable()
|
|
33
|
-
});
|
|
33
|
+
}).passthrough();
|
|
34
34
|
const SensiboGetAllDevices_PodSchema = zod.z.object({
|
|
35
35
|
id: zod.z.string().describe("Unique pod identifier").nullable(),
|
|
36
36
|
name: zod.z.string().describe("Name assigned to the pod").nullable().optional(),
|
|
37
37
|
room: SensiboGetAllDevices_RoomSchema.nullable(),
|
|
38
38
|
model: zod.z.string().describe("Model of the pod device").nullable().optional(),
|
|
39
39
|
acState: SensiboGetAllDevices_AcStateSchema.nullable(),
|
|
40
|
-
battery: zod.z.
|
|
40
|
+
battery: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Battery information if applicable, values may include battery level or type").nullable().optional(),
|
|
41
41
|
podType: zod.z.string().describe("Type of pod").nullable().optional(),
|
|
42
42
|
features: SensiboGetAllDevices_FeaturesSchema.nullable().optional(),
|
|
43
43
|
timezone: zod.z.string().describe("Timezone of the pod location").nullable().optional(),
|
|
@@ -47,12 +47,12 @@ const SensiboGetAllDevices_PodSchema = zod.z.object({
|
|
|
47
47
|
macAddress: zod.z.string().describe("MAC address of the pod").nullable(),
|
|
48
48
|
measurements: SensiboGetAllDevices_MeasurementsSchema.nullable(),
|
|
49
49
|
connectionStatus: SensiboGetAllDevices_ConnectionStatusSchema.nullable()
|
|
50
|
-
});
|
|
50
|
+
}).passthrough();
|
|
51
51
|
const SensiboGetAllDevicesOutput = zod.z.object({
|
|
52
52
|
result: zod.z.array(SensiboGetAllDevices_PodSchema).describe("List of pods associated with user"),
|
|
53
53
|
status: zod.z.string().describe("API result status, e.g., 'success'").nullable(),
|
|
54
54
|
message: zod.z.string().describe("Error message if the call failed").nullable().optional()
|
|
55
|
-
});
|
|
55
|
+
}).passthrough();
|
|
56
56
|
const sensiboGetAllDevices = require_action.action("SENSIBO_GET_ALL_DEVICES", {
|
|
57
57
|
slug: "sensibo-get-all-devices",
|
|
58
58
|
name: "Get All Sensibo Devices",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-all-devices.cjs","names":["z","action"],"sources":["../../src/actions/get-all-devices.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SensiboGetAllDevicesInput = z.object({\n fields: z.string().describe(\"Comma-separated list of fields to include in the response, defaults to '*'\").optional(),\n});\nconst SensiboGetAllDevices_RoomSchema = z.object({\n id: z.string().describe(\"Unique identifier of the room\").nullable(),\n uid: z.string().describe(\"Unique uid of the room\").nullable().optional(),\n name: z.string().describe(\"Name of the room\").nullable().optional(),\n});\nconst SensiboGetAllDevices_AcStateSchema = z.object({\n on: z.boolean().describe(\"AC power status\").nullable(),\n mode: z.string().describe(\"AC operating mode, e.g., 'cool', 'heat'\").nullable(),\n swing: z.string().describe(\"Swing setting\").nullable().optional(),\n fanLevel: z.string().describe(\"Fan level setting\").nullable(),\n targetTemperature: z.number().describe(\"Target temperature setpoint\").nullable(),\n});\nconst SensiboGetAllDevices_FeaturesSchema = z.object({\n cooling: z.boolean().describe(\"Whether cooling is supported\").nullable(),\n heating: z.boolean().describe(\"Whether heating is supported\").nullable(),\n sensors: z.array(z.string()).describe(\"List of available sensors\"),\n scheduling: z.boolean().describe(\"Whether scheduling is supported\").nullable(),\n humidityControl: z.boolean().describe(\"Whether humidity control is supported\").nullable(),\n});\nconst SensiboGetAllDevices_MeasurementsSchema = z.object({\n co2: z.number().int().describe(\"CO2 level in ppm\").nullable().optional(),\n tvoc: z.number().int().describe(\"Total volatile organic compounds level\").nullable().optional(),\n humidity: z.number().describe(\"Current humidity percentage\").nullable(),\n temperature: z.number().describe(\"Current temperature in Celsius\").nullable(),\n});\nconst SensiboGetAllDevices_ConnectionStatusSchema = z.object({\n since: z.string().describe(\"ISO timestamp when status last changed\").nullable(),\n status: z.string().describe(\"Connection status, e.g., 'ONLINE' or 'OFFLINE'\").nullable(),\n});\nconst SensiboGetAllDevices_PodSchema = z.object({\n id: z.string().describe(\"Unique pod identifier\").nullable(),\n name: z.string().describe(\"Name assigned to the pod\").nullable().optional(),\n room: SensiboGetAllDevices_RoomSchema.nullable(),\n model: z.string().describe(\"Model of the pod device\").nullable().optional(),\n acState: SensiboGetAllDevices_AcStateSchema.nullable(),\n battery: z.
|
|
1
|
+
{"version":3,"file":"get-all-devices.cjs","names":["z","action"],"sources":["../../src/actions/get-all-devices.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SensiboGetAllDevicesInput = z.object({\n fields: z.string().describe(\"Comma-separated list of fields to include in the response, defaults to '*'\").optional(),\n});\nconst SensiboGetAllDevices_RoomSchema = z.object({\n id: z.string().describe(\"Unique identifier of the room\").nullable(),\n uid: z.string().describe(\"Unique uid of the room\").nullable().optional(),\n name: z.string().describe(\"Name of the room\").nullable().optional(),\n}).passthrough();\nconst SensiboGetAllDevices_AcStateSchema = z.object({\n on: z.boolean().describe(\"AC power status\").nullable(),\n mode: z.string().describe(\"AC operating mode, e.g., 'cool', 'heat'\").nullable(),\n swing: z.string().describe(\"Swing setting\").nullable().optional(),\n fanLevel: z.string().describe(\"Fan level setting\").nullable(),\n targetTemperature: z.number().describe(\"Target temperature setpoint\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_FeaturesSchema = z.object({\n cooling: z.boolean().describe(\"Whether cooling is supported\").nullable(),\n heating: z.boolean().describe(\"Whether heating is supported\").nullable(),\n sensors: z.array(z.string()).describe(\"List of available sensors\"),\n scheduling: z.boolean().describe(\"Whether scheduling is supported\").nullable(),\n humidityControl: z.boolean().describe(\"Whether humidity control is supported\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_MeasurementsSchema = z.object({\n co2: z.number().int().describe(\"CO2 level in ppm\").nullable().optional(),\n tvoc: z.number().int().describe(\"Total volatile organic compounds level\").nullable().optional(),\n humidity: z.number().describe(\"Current humidity percentage\").nullable(),\n temperature: z.number().describe(\"Current temperature in Celsius\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_ConnectionStatusSchema = z.object({\n since: z.string().describe(\"ISO timestamp when status last changed\").nullable(),\n status: z.string().describe(\"Connection status, e.g., 'ONLINE' or 'OFFLINE'\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_PodSchema = z.object({\n id: z.string().describe(\"Unique pod identifier\").nullable(),\n name: z.string().describe(\"Name assigned to the pod\").nullable().optional(),\n room: SensiboGetAllDevices_RoomSchema.nullable(),\n model: z.string().describe(\"Model of the pod device\").nullable().optional(),\n acState: SensiboGetAllDevices_AcStateSchema.nullable(),\n battery: z.record(z.string(), z.unknown()).describe(\"Battery information if applicable, values may include battery level or type\").nullable().optional(),\n podType: z.string().describe(\"Type of pod\").nullable().optional(),\n features: SensiboGetAllDevices_FeaturesSchema.nullable().optional(),\n timezone: z.string().describe(\"Timezone of the pod location\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the pod was created\").nullable().optional(),\n osVersion: z.string().describe(\"Operating system version\").nullable().optional(),\n updatedAt: z.string().describe(\"Timestamp when the pod was last updated\").nullable().optional(),\n macAddress: z.string().describe(\"MAC address of the pod\").nullable(),\n measurements: SensiboGetAllDevices_MeasurementsSchema.nullable(),\n connectionStatus: SensiboGetAllDevices_ConnectionStatusSchema.nullable(),\n}).passthrough();\nexport const SensiboGetAllDevicesOutput = z.object({\n result: z.array(SensiboGetAllDevices_PodSchema).describe(\"List of pods associated with user\"),\n status: z.string().describe(\"API result status, e.g., 'success'\").nullable(),\n message: z.string().describe(\"Error message if the call failed\").nullable().optional(),\n}).passthrough();\n\nexport const sensiboGetAllDevices = action(\"SENSIBO_GET_ALL_DEVICES\", {\n slug: \"sensibo-get-all-devices\",\n name: \"Get All Sensibo Devices\",\n description: \"Tool to retrieve all Sensibo pods for the authenticated user. Use when you need an up-to-date list of all devices linked to your Sensibo account.\",\n input: SensiboGetAllDevicesInput,\n output: SensiboGetAllDevicesOutput,\n});\n"],"mappings":"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"}
|
|
@@ -12,7 +12,7 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
12
12
|
id: z.ZodNullable<z.ZodString>;
|
|
13
13
|
uid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
-
}, z.core.$
|
|
15
|
+
}, z.core.$loose>>;
|
|
16
16
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
acState: z.ZodNullable<z.ZodObject<{
|
|
18
18
|
on: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -20,8 +20,8 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
20
20
|
swing: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
21
|
fanLevel: z.ZodNullable<z.ZodString>;
|
|
22
22
|
targetTemperature: z.ZodNullable<z.ZodNumber>;
|
|
23
|
-
}, z.core.$
|
|
24
|
-
battery: z.ZodOptional<z.ZodNullable<z.
|
|
23
|
+
}, z.core.$loose>>;
|
|
24
|
+
battery: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25
25
|
podType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
features: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27
27
|
cooling: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -29,7 +29,7 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
29
29
|
sensors: z.ZodArray<z.ZodString>;
|
|
30
30
|
scheduling: z.ZodNullable<z.ZodBoolean>;
|
|
31
31
|
humidityControl: z.ZodNullable<z.ZodBoolean>;
|
|
32
|
-
}, z.core.$
|
|
32
|
+
}, z.core.$loose>>>;
|
|
33
33
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
35
|
osVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -40,15 +40,15 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
40
40
|
tvoc: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
41
41
|
humidity: z.ZodNullable<z.ZodNumber>;
|
|
42
42
|
temperature: z.ZodNullable<z.ZodNumber>;
|
|
43
|
-
}, z.core.$
|
|
43
|
+
}, z.core.$loose>>;
|
|
44
44
|
connectionStatus: z.ZodNullable<z.ZodObject<{
|
|
45
45
|
since: z.ZodNullable<z.ZodString>;
|
|
46
46
|
status: z.ZodNullable<z.ZodString>;
|
|
47
|
-
}, z.core.$
|
|
48
|
-
}, z.core.$
|
|
47
|
+
}, z.core.$loose>>;
|
|
48
|
+
}, z.core.$loose>>;
|
|
49
49
|
status: z.ZodNullable<z.ZodString>;
|
|
50
50
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
-
}, z.core.$
|
|
51
|
+
}, z.core.$loose>;
|
|
52
52
|
declare const sensiboGetAllDevices: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
53
53
|
fields?: string | undefined;
|
|
54
54
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -12,7 +12,7 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
12
12
|
id: z.ZodNullable<z.ZodString>;
|
|
13
13
|
uid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
|
-
}, z.core.$
|
|
15
|
+
}, z.core.$loose>>;
|
|
16
16
|
model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
acState: z.ZodNullable<z.ZodObject<{
|
|
18
18
|
on: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -20,8 +20,8 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
20
20
|
swing: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
21
|
fanLevel: z.ZodNullable<z.ZodString>;
|
|
22
22
|
targetTemperature: z.ZodNullable<z.ZodNumber>;
|
|
23
|
-
}, z.core.$
|
|
24
|
-
battery: z.ZodOptional<z.ZodNullable<z.
|
|
23
|
+
}, z.core.$loose>>;
|
|
24
|
+
battery: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
25
25
|
podType: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
features: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27
27
|
cooling: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -29,7 +29,7 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
29
29
|
sensors: z.ZodArray<z.ZodString>;
|
|
30
30
|
scheduling: z.ZodNullable<z.ZodBoolean>;
|
|
31
31
|
humidityControl: z.ZodNullable<z.ZodBoolean>;
|
|
32
|
-
}, z.core.$
|
|
32
|
+
}, z.core.$loose>>>;
|
|
33
33
|
timezone: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
createdAt: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
35
|
osVersion: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -40,15 +40,15 @@ declare const SensiboGetAllDevicesOutput: z.ZodObject<{
|
|
|
40
40
|
tvoc: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
41
41
|
humidity: z.ZodNullable<z.ZodNumber>;
|
|
42
42
|
temperature: z.ZodNullable<z.ZodNumber>;
|
|
43
|
-
}, z.core.$
|
|
43
|
+
}, z.core.$loose>>;
|
|
44
44
|
connectionStatus: z.ZodNullable<z.ZodObject<{
|
|
45
45
|
since: z.ZodNullable<z.ZodString>;
|
|
46
46
|
status: z.ZodNullable<z.ZodString>;
|
|
47
|
-
}, z.core.$
|
|
48
|
-
}, z.core.$
|
|
47
|
+
}, z.core.$loose>>;
|
|
48
|
+
}, z.core.$loose>>;
|
|
49
49
|
status: z.ZodNullable<z.ZodString>;
|
|
50
50
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
51
|
-
}, z.core.$
|
|
51
|
+
}, z.core.$loose>;
|
|
52
52
|
declare const sensiboGetAllDevices: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
53
53
|
fields?: string | undefined;
|
|
54
54
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -6,38 +6,38 @@ const SensiboGetAllDevices_RoomSchema = z.object({
|
|
|
6
6
|
id: z.string().describe("Unique identifier of the room").nullable(),
|
|
7
7
|
uid: z.string().describe("Unique uid of the room").nullable().optional(),
|
|
8
8
|
name: z.string().describe("Name of the room").nullable().optional()
|
|
9
|
-
});
|
|
9
|
+
}).passthrough();
|
|
10
10
|
const SensiboGetAllDevices_AcStateSchema = z.object({
|
|
11
11
|
on: z.boolean().describe("AC power status").nullable(),
|
|
12
12
|
mode: z.string().describe("AC operating mode, e.g., 'cool', 'heat'").nullable(),
|
|
13
13
|
swing: z.string().describe("Swing setting").nullable().optional(),
|
|
14
14
|
fanLevel: z.string().describe("Fan level setting").nullable(),
|
|
15
15
|
targetTemperature: z.number().describe("Target temperature setpoint").nullable()
|
|
16
|
-
});
|
|
16
|
+
}).passthrough();
|
|
17
17
|
const SensiboGetAllDevices_FeaturesSchema = z.object({
|
|
18
18
|
cooling: z.boolean().describe("Whether cooling is supported").nullable(),
|
|
19
19
|
heating: z.boolean().describe("Whether heating is supported").nullable(),
|
|
20
20
|
sensors: z.array(z.string()).describe("List of available sensors"),
|
|
21
21
|
scheduling: z.boolean().describe("Whether scheduling is supported").nullable(),
|
|
22
22
|
humidityControl: z.boolean().describe("Whether humidity control is supported").nullable()
|
|
23
|
-
});
|
|
23
|
+
}).passthrough();
|
|
24
24
|
const SensiboGetAllDevices_MeasurementsSchema = z.object({
|
|
25
25
|
co2: z.number().int().describe("CO2 level in ppm").nullable().optional(),
|
|
26
26
|
tvoc: z.number().int().describe("Total volatile organic compounds level").nullable().optional(),
|
|
27
27
|
humidity: z.number().describe("Current humidity percentage").nullable(),
|
|
28
28
|
temperature: z.number().describe("Current temperature in Celsius").nullable()
|
|
29
|
-
});
|
|
29
|
+
}).passthrough();
|
|
30
30
|
const SensiboGetAllDevices_ConnectionStatusSchema = z.object({
|
|
31
31
|
since: z.string().describe("ISO timestamp when status last changed").nullable(),
|
|
32
32
|
status: z.string().describe("Connection status, e.g., 'ONLINE' or 'OFFLINE'").nullable()
|
|
33
|
-
});
|
|
33
|
+
}).passthrough();
|
|
34
34
|
const SensiboGetAllDevices_PodSchema = z.object({
|
|
35
35
|
id: z.string().describe("Unique pod identifier").nullable(),
|
|
36
36
|
name: z.string().describe("Name assigned to the pod").nullable().optional(),
|
|
37
37
|
room: SensiboGetAllDevices_RoomSchema.nullable(),
|
|
38
38
|
model: z.string().describe("Model of the pod device").nullable().optional(),
|
|
39
39
|
acState: SensiboGetAllDevices_AcStateSchema.nullable(),
|
|
40
|
-
battery: z.
|
|
40
|
+
battery: z.record(z.string(), z.unknown()).describe("Battery information if applicable, values may include battery level or type").nullable().optional(),
|
|
41
41
|
podType: z.string().describe("Type of pod").nullable().optional(),
|
|
42
42
|
features: SensiboGetAllDevices_FeaturesSchema.nullable().optional(),
|
|
43
43
|
timezone: z.string().describe("Timezone of the pod location").nullable().optional(),
|
|
@@ -47,7 +47,7 @@ const SensiboGetAllDevices_PodSchema = z.object({
|
|
|
47
47
|
macAddress: z.string().describe("MAC address of the pod").nullable(),
|
|
48
48
|
measurements: SensiboGetAllDevices_MeasurementsSchema.nullable(),
|
|
49
49
|
connectionStatus: SensiboGetAllDevices_ConnectionStatusSchema.nullable()
|
|
50
|
-
});
|
|
50
|
+
}).passthrough();
|
|
51
51
|
const sensiboGetAllDevices = action("SENSIBO_GET_ALL_DEVICES", {
|
|
52
52
|
slug: "sensibo-get-all-devices",
|
|
53
53
|
name: "Get All Sensibo Devices",
|
|
@@ -57,7 +57,7 @@ const sensiboGetAllDevices = action("SENSIBO_GET_ALL_DEVICES", {
|
|
|
57
57
|
result: z.array(SensiboGetAllDevices_PodSchema).describe("List of pods associated with user"),
|
|
58
58
|
status: z.string().describe("API result status, e.g., 'success'").nullable(),
|
|
59
59
|
message: z.string().describe("Error message if the call failed").nullable().optional()
|
|
60
|
-
})
|
|
60
|
+
}).passthrough()
|
|
61
61
|
});
|
|
62
62
|
//#endregion
|
|
63
63
|
export { sensiboGetAllDevices };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-all-devices.mjs","names":[],"sources":["../../src/actions/get-all-devices.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SensiboGetAllDevicesInput = z.object({\n fields: z.string().describe(\"Comma-separated list of fields to include in the response, defaults to '*'\").optional(),\n});\nconst SensiboGetAllDevices_RoomSchema = z.object({\n id: z.string().describe(\"Unique identifier of the room\").nullable(),\n uid: z.string().describe(\"Unique uid of the room\").nullable().optional(),\n name: z.string().describe(\"Name of the room\").nullable().optional(),\n});\nconst SensiboGetAllDevices_AcStateSchema = z.object({\n on: z.boolean().describe(\"AC power status\").nullable(),\n mode: z.string().describe(\"AC operating mode, e.g., 'cool', 'heat'\").nullable(),\n swing: z.string().describe(\"Swing setting\").nullable().optional(),\n fanLevel: z.string().describe(\"Fan level setting\").nullable(),\n targetTemperature: z.number().describe(\"Target temperature setpoint\").nullable(),\n});\nconst SensiboGetAllDevices_FeaturesSchema = z.object({\n cooling: z.boolean().describe(\"Whether cooling is supported\").nullable(),\n heating: z.boolean().describe(\"Whether heating is supported\").nullable(),\n sensors: z.array(z.string()).describe(\"List of available sensors\"),\n scheduling: z.boolean().describe(\"Whether scheduling is supported\").nullable(),\n humidityControl: z.boolean().describe(\"Whether humidity control is supported\").nullable(),\n});\nconst SensiboGetAllDevices_MeasurementsSchema = z.object({\n co2: z.number().int().describe(\"CO2 level in ppm\").nullable().optional(),\n tvoc: z.number().int().describe(\"Total volatile organic compounds level\").nullable().optional(),\n humidity: z.number().describe(\"Current humidity percentage\").nullable(),\n temperature: z.number().describe(\"Current temperature in Celsius\").nullable(),\n});\nconst SensiboGetAllDevices_ConnectionStatusSchema = z.object({\n since: z.string().describe(\"ISO timestamp when status last changed\").nullable(),\n status: z.string().describe(\"Connection status, e.g., 'ONLINE' or 'OFFLINE'\").nullable(),\n});\nconst SensiboGetAllDevices_PodSchema = z.object({\n id: z.string().describe(\"Unique pod identifier\").nullable(),\n name: z.string().describe(\"Name assigned to the pod\").nullable().optional(),\n room: SensiboGetAllDevices_RoomSchema.nullable(),\n model: z.string().describe(\"Model of the pod device\").nullable().optional(),\n acState: SensiboGetAllDevices_AcStateSchema.nullable(),\n battery: z.
|
|
1
|
+
{"version":3,"file":"get-all-devices.mjs","names":[],"sources":["../../src/actions/get-all-devices.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SensiboGetAllDevicesInput = z.object({\n fields: z.string().describe(\"Comma-separated list of fields to include in the response, defaults to '*'\").optional(),\n});\nconst SensiboGetAllDevices_RoomSchema = z.object({\n id: z.string().describe(\"Unique identifier of the room\").nullable(),\n uid: z.string().describe(\"Unique uid of the room\").nullable().optional(),\n name: z.string().describe(\"Name of the room\").nullable().optional(),\n}).passthrough();\nconst SensiboGetAllDevices_AcStateSchema = z.object({\n on: z.boolean().describe(\"AC power status\").nullable(),\n mode: z.string().describe(\"AC operating mode, e.g., 'cool', 'heat'\").nullable(),\n swing: z.string().describe(\"Swing setting\").nullable().optional(),\n fanLevel: z.string().describe(\"Fan level setting\").nullable(),\n targetTemperature: z.number().describe(\"Target temperature setpoint\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_FeaturesSchema = z.object({\n cooling: z.boolean().describe(\"Whether cooling is supported\").nullable(),\n heating: z.boolean().describe(\"Whether heating is supported\").nullable(),\n sensors: z.array(z.string()).describe(\"List of available sensors\"),\n scheduling: z.boolean().describe(\"Whether scheduling is supported\").nullable(),\n humidityControl: z.boolean().describe(\"Whether humidity control is supported\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_MeasurementsSchema = z.object({\n co2: z.number().int().describe(\"CO2 level in ppm\").nullable().optional(),\n tvoc: z.number().int().describe(\"Total volatile organic compounds level\").nullable().optional(),\n humidity: z.number().describe(\"Current humidity percentage\").nullable(),\n temperature: z.number().describe(\"Current temperature in Celsius\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_ConnectionStatusSchema = z.object({\n since: z.string().describe(\"ISO timestamp when status last changed\").nullable(),\n status: z.string().describe(\"Connection status, e.g., 'ONLINE' or 'OFFLINE'\").nullable(),\n}).passthrough();\nconst SensiboGetAllDevices_PodSchema = z.object({\n id: z.string().describe(\"Unique pod identifier\").nullable(),\n name: z.string().describe(\"Name assigned to the pod\").nullable().optional(),\n room: SensiboGetAllDevices_RoomSchema.nullable(),\n model: z.string().describe(\"Model of the pod device\").nullable().optional(),\n acState: SensiboGetAllDevices_AcStateSchema.nullable(),\n battery: z.record(z.string(), z.unknown()).describe(\"Battery information if applicable, values may include battery level or type\").nullable().optional(),\n podType: z.string().describe(\"Type of pod\").nullable().optional(),\n features: SensiboGetAllDevices_FeaturesSchema.nullable().optional(),\n timezone: z.string().describe(\"Timezone of the pod location\").nullable().optional(),\n createdAt: z.string().describe(\"Timestamp when the pod was created\").nullable().optional(),\n osVersion: z.string().describe(\"Operating system version\").nullable().optional(),\n updatedAt: z.string().describe(\"Timestamp when the pod was last updated\").nullable().optional(),\n macAddress: z.string().describe(\"MAC address of the pod\").nullable(),\n measurements: SensiboGetAllDevices_MeasurementsSchema.nullable(),\n connectionStatus: SensiboGetAllDevices_ConnectionStatusSchema.nullable(),\n}).passthrough();\nexport const SensiboGetAllDevicesOutput = z.object({\n result: z.array(SensiboGetAllDevices_PodSchema).describe(\"List of pods associated with user\"),\n status: z.string().describe(\"API result status, e.g., 'success'\").nullable(),\n message: z.string().describe(\"Error message if the call failed\").nullable().optional(),\n}).passthrough();\n\nexport const sensiboGetAllDevices = action(\"SENSIBO_GET_ALL_DEVICES\", {\n slug: \"sensibo-get-all-devices\",\n name: \"Get All Sensibo Devices\",\n description: \"Tool to retrieve all Sensibo pods for the authenticated user. Use when you need an up-to-date list of all devices linked to your Sensibo account.\",\n input: SensiboGetAllDevicesInput,\n output: SensiboGetAllDevicesOutput,\n});\n"],"mappings":"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"}
|
package/dist/catalog.cjs
CHANGED
|
@@ -8,7 +8,7 @@ const sensiboCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/sensibo",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Sensibo API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key generated from your Sensibo account settings."
|
package/dist/catalog.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sensiboCatalog = {\n \"slug\": \"sensibo\",\n \"name\": \"Sensibo\",\n \"description\": \"Sensibo offers smart controllers that connect air conditioners and heat pumps to the internet, enabling remote control and automation.\",\n \"category\": \"Internet of Things\",\n \"logo\": \"https://logos.composio.dev/api/sensibo\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sensiboCatalog = {\n \"slug\": \"sensibo\",\n \"name\": \"Sensibo\",\n \"description\": \"Sensibo offers smart controllers that connect air conditioners and heat pumps to the internet, enabling remote control and automation.\",\n \"category\": \"Internet of Things\",\n \"logo\": \"https://logos.composio.dev/api/sensibo\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Sensibo API Key\",\n \"secret\": true,\n \"description\": \"The API key generated from your Sensibo account settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|
package/dist/catalog.d.cts
CHANGED
|
@@ -9,7 +9,7 @@ declare const sensiboCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Sensibo API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key generated from your Sensibo account settings.";
|
package/dist/catalog.d.mts
CHANGED
|
@@ -9,7 +9,7 @@ declare const sensiboCatalog: {
|
|
|
9
9
|
readonly authKind: "keystroke";
|
|
10
10
|
readonly oauthScopes: readonly [];
|
|
11
11
|
readonly credentialFields: {
|
|
12
|
-
readonly
|
|
12
|
+
readonly generic_api_key: {
|
|
13
13
|
readonly label: "Sensibo API Key";
|
|
14
14
|
readonly secret: true;
|
|
15
15
|
readonly description: "The API key generated from your Sensibo account settings.";
|
package/dist/catalog.mjs
CHANGED
|
@@ -8,7 +8,7 @@ const sensiboCatalog = {
|
|
|
8
8
|
"logo": "https://logos.composio.dev/api/sensibo",
|
|
9
9
|
"authKind": "keystroke",
|
|
10
10
|
"oauthScopes": [],
|
|
11
|
-
"credentialFields": { "
|
|
11
|
+
"credentialFields": { "generic_api_key": {
|
|
12
12
|
"label": "Sensibo API Key",
|
|
13
13
|
"secret": true,
|
|
14
14
|
"description": "The API key generated from your Sensibo account settings."
|
package/dist/catalog.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sensiboCatalog = {\n \"slug\": \"sensibo\",\n \"name\": \"Sensibo\",\n \"description\": \"Sensibo offers smart controllers that connect air conditioners and heat pumps to the internet, enabling remote control and automation.\",\n \"category\": \"Internet of Things\",\n \"logo\": \"https://logos.composio.dev/api/sensibo\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const sensiboCatalog = {\n \"slug\": \"sensibo\",\n \"name\": \"Sensibo\",\n \"description\": \"Sensibo offers smart controllers that connect air conditioners and heat pumps to the internet, enabling remote control and automation.\",\n \"category\": \"Internet of Things\",\n \"logo\": \"https://logos.composio.dev/api/sensibo\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"Sensibo API Key\",\n \"secret\": true,\n \"description\": \"The API key generated from your Sensibo account settings.\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,iBAAiB;CAC5B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
|