@camstack/addon-agent-ui 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.
- package/dist/addon.js +12 -1
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -15436,6 +15436,17 @@ var AvailableIntegrationTypeSchema = object({
|
|
|
15436
15436
|
iconUrl: string().nullable(),
|
|
15437
15437
|
color: string(),
|
|
15438
15438
|
instanceMode: string(),
|
|
15439
|
+
/**
|
|
15440
|
+
* Integration wizard `mode` (LOCKED MODEL): `standalone` (create
|
|
15441
|
+
* immediately then add devices, no config step/button), `account` (config
|
|
15442
|
+
* step), or `broker` (broker step). Derived server-side by
|
|
15443
|
+
* `getAvailableTypes` when the addon manifest omits an explicit `mode`.
|
|
15444
|
+
*/
|
|
15445
|
+
mode: _enum([
|
|
15446
|
+
"standalone",
|
|
15447
|
+
"account",
|
|
15448
|
+
"broker"
|
|
15449
|
+
]),
|
|
15439
15450
|
discoveryMode: string(),
|
|
15440
15451
|
/**
|
|
15441
15452
|
* Which integration-marker cap the addon declared, so the wizard can
|
|
@@ -21174,7 +21185,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
21174
21185
|
capability: adminUiCapability,
|
|
21175
21186
|
provider: {
|
|
21176
21187
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
21177
|
-
getVersion: async () => ({ version: "1.1.
|
|
21188
|
+
getVersion: async () => ({ version: "1.1.10" })
|
|
21178
21189
|
}
|
|
21179
21190
|
}];
|
|
21180
21191
|
}
|