@camstack/types 1.1.9 → 1.1.10

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.
@@ -188,6 +188,10 @@ export declare const integrationsCapability: {
188
188
  error: z.ZodOptional<z.ZodString>;
189
189
  }, z.core.$strip>, "mutation">;
190
190
  };
191
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
192
+ readonly mount: {
193
+ readonly kind: "service-backed";
194
+ };
191
195
  };
192
196
  export type IIntegrationsProvider = InferProvider<typeof integrationsCapability>;
193
197
  export { IntegrationWithStateSchema, IntegrationLiteSchema, AvailableIntegrationTypeSchema, TestConnectionResultSchema, CreateIntegrationInputSchema, UpdateIntegrationInputSchema, DeleteIntegrationResultSchema, };
@@ -208,6 +208,10 @@ export declare const localNetworkCapability: {
208
208
  addresses: z.ZodReadonly<z.ZodArray<z.ZodString>>;
209
209
  }, z.core.$strip>, "mutation">;
210
210
  };
211
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
212
+ readonly mount: {
213
+ readonly kind: "hub-only";
214
+ };
211
215
  };
212
216
  export type ILocalNetworkProvider = InferProvider<typeof localNetworkCapability>;
213
217
  export type LocalInterface = z.infer<typeof LocalInterfaceSchema>;
@@ -64,6 +64,10 @@ export declare const logDestinationCapability: {
64
64
  tags: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
65
65
  }, z.core.$strip>>>, import("./capability-definition.js").CapabilityMethodKind>;
66
66
  };
67
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
68
+ readonly mount: {
69
+ readonly kind: "skip";
70
+ };
67
71
  };
68
72
  export type ILogDestinationProvider = InferProvider<typeof logDestinationCapability>;
69
73
  export { LogEntrySchema, LogLevelSchema };
@@ -94,6 +94,10 @@ export declare const networkQualityCapability: {
94
94
  packetLossPercent: z.ZodNumber;
95
95
  }, z.core.$strip>, z.ZodVoid, "mutation">;
96
96
  };
97
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
98
+ readonly mount: {
99
+ readonly kind: "service-backed";
100
+ };
97
101
  };
98
102
  export type INetworkQualityProvider = InferProvider<typeof networkQualityCapability>;
99
103
  export { StreamNetworkStatsSchema, ClientNetworkStatsSchema, DeviceNetworkStatsSchema };
@@ -260,6 +260,10 @@ export declare const nodesCapability: {
260
260
  params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
261
261
  }, z.core.$strip>, z.ZodUnknown, "mutation">;
262
262
  };
263
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
264
+ readonly mount: {
265
+ readonly kind: "service-backed";
266
+ };
263
267
  };
264
268
  export type INodesProvider = InferProvider<typeof nodesCapability>;
265
269
  export { TopologyNodeSchema, TopologyProcessSchema, TopologyServiceSchema, ClusterAddonStatusEntrySchema, ClusterAddonNodeDeploymentSchema, NodeAddonEntrySchema, };
@@ -45,6 +45,10 @@ export declare const restreamerCapability: {
45
45
  value: z.ZodString;
46
46
  }, z.core.$strip>>>, import("./capability-definition.js").CapabilityMethodKind>;
47
47
  };
48
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
49
+ readonly mount: {
50
+ readonly kind: "skip";
51
+ };
48
52
  };
49
53
  export type IRestreamerProvider = InferProvider<typeof restreamerCapability>;
50
54
  export { RegisteredStreamSchema, ExposedResourceSchema };
@@ -32,6 +32,10 @@ export declare const snapshotProviderCapability: {
32
32
  contentType: z.ZodString;
33
33
  }, z.core.$strip>>, import("./capability-definition.js").CapabilityMethodKind>;
34
34
  };
35
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
36
+ readonly mount: {
37
+ readonly kind: "custom";
38
+ };
35
39
  };
36
40
  export type ISnapshotProvider = InferProvider<typeof snapshotProviderCapability> & {
37
41
  readonly id: string;
@@ -52,6 +52,10 @@ export declare const streamingEngineCapability: {
52
52
  active: z.ZodBoolean;
53
53
  }, z.core.$strip>>, import("./capability-definition.js").CapabilityMethodKind>;
54
54
  };
55
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
56
+ readonly mount: {
57
+ readonly kind: "skip";
58
+ };
55
59
  };
56
60
  export type IStreamingEngineProvider = InferProvider<typeof streamingEngineCapability>;
57
61
  export { StreamFormatSchema, StreamInfoSchema };
@@ -80,6 +80,10 @@ export declare const systemCapability: {
80
80
  readonly setRetentionConfig: import("./capability-definition.js").CapabilityMethodSchema<z.ZodRecord<z.ZodString, z.ZodUnknown>, z.ZodNull, "mutation">;
81
81
  readonly forceRetentionCleanup: import("./capability-definition.js").CapabilityMethodSchema<z.ZodVoid, z.ZodVoid, "mutation">;
82
82
  };
83
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
84
+ readonly mount: {
85
+ readonly kind: "service-backed";
86
+ };
83
87
  };
84
88
  export type ISystemProvider = InferProvider<typeof systemCapability>;
85
89
  export { FeatureManifestSchema, HealthStatusSchema, NetworkAddressSchema };
@@ -50,6 +50,10 @@ export declare const toastCapability: {
50
50
  }, z.core.$strip>>;
51
51
  }, z.core.$strip>, "subscription">;
52
52
  };
53
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
54
+ readonly mount: {
55
+ readonly kind: "service-backed";
56
+ };
53
57
  };
54
58
  export type IToastProvider = InferProvider<typeof toastCapability>;
55
59
  export { ToastSchema };
@@ -340,5 +340,9 @@ export declare const webrtcSessionCapability: {
340
340
  }, z.core.$strip>>;
341
341
  }, z.core.$strip>, import("./capability-definition.js").CapabilityMethodKind>;
342
342
  };
343
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
344
+ readonly mount: {
345
+ readonly kind: "custom";
346
+ };
343
347
  };
344
348
  export type IWebrtcSessionProvider = InferProvider<typeof webrtcSessionCapability>;
@@ -67,5 +67,9 @@ export declare const webrtcCapability: {
67
67
  streamId: z.ZodString;
68
68
  }, z.core.$strip>, z.ZodBoolean, import("./capability-definition.js").CapabilityMethodKind>;
69
69
  };
70
+ /** BIG PLAN 2: declarative mount hint — read by `@camstack/system` `buildCapRouters`. */
71
+ readonly mount: {
72
+ readonly kind: "skip";
73
+ };
70
74
  };
71
75
  export type IWebrtcProvider = InferProvider<typeof webrtcCapability>;
@@ -127,6 +127,12 @@ export declare enum DeviceFeature {
127
127
  ClimateFanMode = "climate-fan-mode",
128
128
  /** Thermostat exposes preset modes (eco / away / sleep / vendor). */
129
129
  ClimatePreset = "climate-preset",
130
+ /** Thermostat exposes a vertical louver swing toggle. Gates the
131
+ * vertical-swing switch in the climate UI. Independent of horizontal. */
132
+ ClimateSwingVertical = "climate-swing-vertical",
133
+ /** Thermostat exposes a horizontal louver swing toggle. Gates the
134
+ * horizontal-swing switch in the climate UI. Independent of vertical. */
135
+ ClimateSwingHorizontal = "climate-swing-horizontal",
130
136
  /** Cover exposes intermediate position control (0..100). Gates the
131
137
  * position slider UI. */
132
138
  CoverPositionable = "cover-positionable",
@@ -191,7 +197,19 @@ export declare enum DeviceFeature {
191
197
  ScriptVariables = "script-variables",
192
198
  /** Automation `trigger` accepts a skipCondition flag — fires the
193
199
  * automation's actions while bypassing its condition block. */
194
- AutomationSkipCondition = "automation-skip-condition"
200
+ AutomationSkipCondition = "automation-skip-condition",
201
+ /** Robot vacuum exposes a live cleaning map (image child). Gates the
202
+ * map tile in the vacuum UI. */
203
+ VacuumHasMap = "vacuum-has-map",
204
+ /** Robot vacuum exposes AI obstacle-detection toggles. Gates the AI
205
+ * switches group. */
206
+ VacuumHasAi = "vacuum-has-ai",
207
+ /** Robot mower exposes a live mowing map (SVG image child). Gates the
208
+ * mower map tile. */
209
+ MowerHasMap = "mower-has-map",
210
+ /** Robot mower exposes targeted mowing (all-area / zones / edges /
211
+ * spots) — gates the Mow action + map selectors. */
212
+ MowerHasTargetedMowing = "mower-has-targeted-mowing"
195
213
  }
196
214
  export declare enum ChargingStatus {
197
215
  ChargingDC = "charging-dc",