@camstack/addon-pipeline-orchestrator 1.2.202 → 1.2.203

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.
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.194",
21
+ version: "1.2.195",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_pipeline_orchestrator_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.159",
36
+ version: "1.2.160",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_pipeline_orchestrator_widgets",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.194",
39
+ version: "1.2.195",
40
40
  scope: "default",
41
41
  shareConfig: {
42
42
  singleton: !0,
@@ -99,7 +99,7 @@ async function r() {
99
99
  }
100
100
  },
101
101
  "@camstack/ui-library": {
102
- version: "1.2.159",
102
+ version: "1.2.160",
103
103
  scope: "default",
104
104
  shareConfig: {
105
105
  singleton: !0,
package/dist/index.js CHANGED
@@ -5391,7 +5391,7 @@ var ZodIssueCode = {
5391
5391
  var ZodFirstPartyTypeKind;
5392
5392
  ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5393
5393
  //#endregion
5394
- //#region ../types/dist/sleep-BEyvfshj.mjs
5394
+ //#region ../types/dist/sleep-B9qx0cEV.mjs
5395
5395
  /**
5396
5396
  * The audio chunk plane's byte format, and the ONE expansion from a coded
5397
5397
  * window to float samples (D455).
@@ -7785,6 +7785,28 @@ var DeviceRole = /* @__PURE__ */ function(DeviceRole) {
7785
7785
  DeviceRole["GenericNotifier"] = "generic-notifier";
7786
7786
  return DeviceRole;
7787
7787
  }({});
7788
+ /**
7789
+ * Identity — preserves literal types for downstream inference.
7790
+ *
7791
+ * The constraint is `Record<string, unknown>` (not `CustomActionsSpec`) so
7792
+ * TypeScript does not widen each entry's literal `kind`/`auth` fields to
7793
+ * the broader unions declared on `CustomActionSpec`'s default generics.
7794
+ * Shape validity is enforced separately by the `customAction(...)` helper
7795
+ * whose return type is already a `CustomActionSpec<...>`.
7796
+ */
7797
+ function defineCustomActions(spec) {
7798
+ return spec;
7799
+ }
7800
+ function customAction(input, output, options) {
7801
+ return {
7802
+ input,
7803
+ output,
7804
+ kind: options?.kind ?? "query",
7805
+ auth: options?.auth ?? "protected",
7806
+ scope: options?.scope ?? { kind: "system" },
7807
+ ...options?.caller ? { caller: "required" } : {}
7808
+ };
7809
+ }
7788
7810
  var StaticDirOutputSchema = object({ staticDir: string() });
7789
7811
  var VersionOutputSchema = object({ version: string() });
7790
7812
  /**
@@ -13353,28 +13375,6 @@ method(object({}), object({ blocks: array(CoreBlockSchema) }), { auth: "admin" }
13353
13375
  content: string()
13354
13376
  })) }), { auth: "admin" });
13355
13377
  /**
13356
- * Identity — preserves literal types for downstream inference.
13357
- *
13358
- * The constraint is `Record<string, unknown>` (not `CustomActionsSpec`) so
13359
- * TypeScript does not widen each entry's literal `kind`/`auth` fields to
13360
- * the broader unions declared on `CustomActionSpec`'s default generics.
13361
- * Shape validity is enforced separately by the `customAction(...)` helper
13362
- * whose return type is already a `CustomActionSpec<...>`.
13363
- */
13364
- function defineCustomActions(spec) {
13365
- return spec;
13366
- }
13367
- function customAction(input, output, options) {
13368
- return {
13369
- input,
13370
- output,
13371
- kind: options?.kind ?? "query",
13372
- auth: options?.auth ?? "protected",
13373
- scope: options?.scope ?? { kind: "system" },
13374
- ...options?.caller ? { caller: "required" } : {}
13375
- };
13376
- }
13377
- /**
13378
13378
  * `custom-model-registry` — collection cap exposing operator-registered
13379
13379
  * custom detection models. Each provider (today: `addon-model-studio`)
13380
13380
  * contributes a list of `CustomModelDescriptor`s; the hub auto-concatenates
package/dist/index.mjs CHANGED
@@ -5363,7 +5363,7 @@ var ZodIssueCode = {
5363
5363
  var ZodFirstPartyTypeKind;
5364
5364
  ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {});
5365
5365
  //#endregion
5366
- //#region ../types/dist/sleep-BEyvfshj.mjs
5366
+ //#region ../types/dist/sleep-B9qx0cEV.mjs
5367
5367
  /**
5368
5368
  * The audio chunk plane's byte format, and the ONE expansion from a coded
5369
5369
  * window to float samples (D455).
@@ -7757,6 +7757,28 @@ var DeviceRole = /* @__PURE__ */ function(DeviceRole) {
7757
7757
  DeviceRole["GenericNotifier"] = "generic-notifier";
7758
7758
  return DeviceRole;
7759
7759
  }({});
7760
+ /**
7761
+ * Identity — preserves literal types for downstream inference.
7762
+ *
7763
+ * The constraint is `Record<string, unknown>` (not `CustomActionsSpec`) so
7764
+ * TypeScript does not widen each entry's literal `kind`/`auth` fields to
7765
+ * the broader unions declared on `CustomActionSpec`'s default generics.
7766
+ * Shape validity is enforced separately by the `customAction(...)` helper
7767
+ * whose return type is already a `CustomActionSpec<...>`.
7768
+ */
7769
+ function defineCustomActions(spec) {
7770
+ return spec;
7771
+ }
7772
+ function customAction(input, output, options) {
7773
+ return {
7774
+ input,
7775
+ output,
7776
+ kind: options?.kind ?? "query",
7777
+ auth: options?.auth ?? "protected",
7778
+ scope: options?.scope ?? { kind: "system" },
7779
+ ...options?.caller ? { caller: "required" } : {}
7780
+ };
7781
+ }
7760
7782
  var StaticDirOutputSchema = object({ staticDir: string() });
7761
7783
  var VersionOutputSchema = object({ version: string() });
7762
7784
  /**
@@ -13325,28 +13347,6 @@ method(object({}), object({ blocks: array(CoreBlockSchema) }), { auth: "admin" }
13325
13347
  content: string()
13326
13348
  })) }), { auth: "admin" });
13327
13349
  /**
13328
- * Identity — preserves literal types for downstream inference.
13329
- *
13330
- * The constraint is `Record<string, unknown>` (not `CustomActionsSpec`) so
13331
- * TypeScript does not widen each entry's literal `kind`/`auth` fields to
13332
- * the broader unions declared on `CustomActionSpec`'s default generics.
13333
- * Shape validity is enforced separately by the `customAction(...)` helper
13334
- * whose return type is already a `CustomActionSpec<...>`.
13335
- */
13336
- function defineCustomActions(spec) {
13337
- return spec;
13338
- }
13339
- function customAction(input, output, options) {
13340
- return {
13341
- input,
13342
- output,
13343
- kind: options?.kind ?? "query",
13344
- auth: options?.auth ?? "protected",
13345
- scope: options?.scope ?? { kind: "system" },
13346
- ...options?.caller ? { caller: "required" } : {}
13347
- };
13348
- }
13349
- /**
13350
13350
  * `custom-model-registry` — collection cap exposing operator-registered
13351
13351
  * custom detection models. Each provider (today: `addon-model-studio`)
13352
13352
  * contributes a list of `CustomModelDescriptor`s; the hub auto-concatenates
@@ -30,7 +30,7 @@ async function d(e) {
30
30
  }
31
31
  }
32
32
  async function f() {
33
- return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-CDT9_W3e.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_pipeline_orchestrator_widgets-RgDO92PV.mjs")).catch((e) => {
34
34
  throw l = void 0, e;
35
35
  }), l;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-pipeline-orchestrator",
3
- "version": "1.2.202",
3
+ "version": "1.2.203",
4
4
  "description": "Hub-side camera-to-agent load balancer — tracks runner capacity and dispatches attachCamera calls to the optimal pipeline-runner instance",
5
5
  "keywords": [
6
6
  "camstack",