@camstack/addon-agent-ui 1.2.62 → 1.2.63
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 +13 -3
- package/package.json +1 -1
package/dist/addon.js
CHANGED
|
@@ -12597,7 +12597,10 @@ method(_void(), _void(), { kind: "mutation" }), method(_void(), _void(), { kind:
|
|
|
12597
12597
|
id: string(),
|
|
12598
12598
|
name: string(),
|
|
12599
12599
|
type: string()
|
|
12600
|
-
}))), method(object({
|
|
12600
|
+
}))), method(object({ stableId: string() }), object({ deviceId: number() }), {
|
|
12601
|
+
kind: "mutation",
|
|
12602
|
+
timeoutMs: 3 * 6e4
|
|
12603
|
+
}), method(object({}), boolean()), method(object({ params: record(string(), unknown()).optional() }), array(DiscoveryCandidateSchema), {
|
|
12601
12604
|
kind: "mutation",
|
|
12602
12605
|
auth: "admin"
|
|
12603
12606
|
}), method(object({}), CreationSchemaOutputSchema), method(object({}), object({ deviceType: _enum(DeviceType).nullable() })), method(object({ candidate: DiscoveryCandidateSchema }), DeviceSummarySchema, {
|
|
@@ -12878,7 +12881,8 @@ method(object({
|
|
|
12878
12881
|
targetId: number()
|
|
12879
12882
|
}), MigrateDeviceResultSchema, {
|
|
12880
12883
|
kind: "mutation",
|
|
12881
|
-
auth: "admin"
|
|
12884
|
+
auth: "admin",
|
|
12885
|
+
timeoutMs: 12 * 6e4
|
|
12882
12886
|
}), method(DeviceRegisterPayloadSchema, _void(), { kind: "mutation" }), method(DeviceRemovePayloadSchema, _void(), { kind: "mutation" }), method(DevicePersistConfigPayloadSchema, _void(), { kind: "mutation" }), method(object({ deviceId: number() }), record(string(), unknown())), method(object({ deviceId: number() }), record(string(), unknown())), method(object({ deviceId: number() }), DeviceMetaSchema.nullable()), method(object({
|
|
12883
12887
|
deviceId: number(),
|
|
12884
12888
|
name: string()
|
|
@@ -30737,6 +30741,12 @@ Object.freeze({
|
|
|
30737
30741
|
addonId: null,
|
|
30738
30742
|
access: "view"
|
|
30739
30743
|
},
|
|
30744
|
+
"deviceProvider.reloadDevice": {
|
|
30745
|
+
capName: "device-provider",
|
|
30746
|
+
capScope: "system",
|
|
30747
|
+
addonId: null,
|
|
30748
|
+
access: "create"
|
|
30749
|
+
},
|
|
30740
30750
|
"deviceProvider.start": {
|
|
30741
30751
|
capName: "device-provider",
|
|
30742
30752
|
capScope: "system",
|
|
@@ -37330,7 +37340,7 @@ var AgentUIAddon = class extends BaseAddon {
|
|
|
37330
37340
|
capability: adminUiCapability,
|
|
37331
37341
|
provider: {
|
|
37332
37342
|
getStaticDir: async () => ({ staticDir: path.resolve(__dirname) }),
|
|
37333
|
-
getVersion: async () => ({ version: "1.2.
|
|
37343
|
+
getVersion: async () => ({ version: "1.2.63" })
|
|
37334
37344
|
}
|
|
37335
37345
|
}];
|
|
37336
37346
|
}
|