@camstack/addon-auth 1.2.0 → 1.2.2

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.
@@ -11142,7 +11142,8 @@ var PipelineStepInputSchema = lazy(() => object({
11142
11142
  modelId: string().optional(),
11143
11143
  enabled: boolean().default(true),
11144
11144
  children: array(PipelineStepInputSchema).optional(),
11145
- settings: record(string(), unknown()).optional()
11145
+ settings: record(string(), unknown()).optional(),
11146
+ jumpDeviceKey: string().optional()
11146
11147
  }));
11147
11148
  var ModelSubstitutionSchema = object({
11148
11149
  addonId: string(),
@@ -11448,10 +11449,40 @@ var NativeCropBboxSchema = object({
11448
11449
  });
11449
11450
  /** Result of a best-effort native-resolution crop (`getNativeCrop`). */
11450
11451
  var NativeCropResultSchema = object({
11451
- /** Packed rgb (24-bit) pixels of the crop. */
11452
- bytes: _instanceof(Uint8Array),
11452
+ /**
11453
+ * Packed rgb (24-bit) pixels of the crop. Present on the DEFAULT (raw) path —
11454
+ * same-node (in-process / UDS) callers get zero-copy RGB and encode locally.
11455
+ * OMITTED when the caller requested `encodeJpeg` (the cross-node compressed
11456
+ * path below), where shipping raw RGB is both an invariant violation and, for
11457
+ * a native full frame (~26 MB at 4K), larger than Moleculer's 10 MB
11458
+ * `maxPacketSize` → the packet is dropped and the call 60s-times-out. That is
11459
+ * the cross-node native-media miss: `bytes` is replaced by `jpeg`.
11460
+ */
11461
+ bytes: _instanceof(Uint8Array).optional(),
11462
+ /**
11463
+ * Base64 JPEG of the crop — the COMPRESSED cross-node payload. The OWNING node
11464
+ * (which holds the native surface) encodes it in-process, so a native 4K frame
11465
+ * ships as ~0.5–2 MB (well under `maxPacketSize`) and NO raw pixels ever cross
11466
+ * a process boundary (CLAUDE.md invariant #21). Present ONLY when the request
11467
+ * set `encodeJpeg: true`; `bytes` is then absent.
11468
+ */
11469
+ jpeg: string().optional(),
11453
11470
  width: number().int().positive(),
11454
- height: number().int().positive()
11471
+ height: number().int().positive(),
11472
+ /**
11473
+ * Which source served this crop, so a quality-sensitive consumer (the native
11474
+ * `keyFrame`) can reject a degraded fallback:
11475
+ * - `native` — cut from the decode worker's retained NATIVE surface (the
11476
+ * quality path).
11477
+ * - `ram-fullframe` — the native surface MISSED but the request was full-frame,
11478
+ * so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
11479
+ * the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
11480
+ *
11481
+ * OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
11482
+ * treated as `native` (accepted) by every consumer so mixed-version clusters
11483
+ * keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
11484
+ */
11485
+ tier: _enum(["native", "ram-fullframe"]).optional()
11455
11486
  });
11456
11487
  /** Parent detection context passed to `runDetailSubtree` — the crop's
11457
11488
  * originating detection, in FRAME-space coordinates. Reuses
@@ -11581,6 +11612,20 @@ var RunnerFrameSourceSchema = discriminatedUnion("kind", [object({ kind: literal
11581
11612
  hubHostnameOverride: string().optional()
11582
11613
  })]).describe("Per-camera frame-source mode for the runner (P2c)");
11583
11614
  /**
11615
+ * One ENABLED inference device on the runner's node, as the step-tree
11616
+ * device-jump resolver sees it (phase 1). The orchestrator populates this
11617
+ * roster on the attach payload whenever the camera is elected onto a specific
11618
+ * `deviceKey` and the node has ≥2 enabled devices — it is the candidate set the
11619
+ * runner auto-jumps an enrichment step to when the elected device's format
11620
+ * cannot run that step's model. `weight`/`maxSessions` mirror the balancer's
11621
+ * per-device knobs so the auto choice is weighted-least-loaded.
11622
+ */
11623
+ var RunnerInferenceDeviceSchema = object({
11624
+ deviceKey: string(),
11625
+ weight: number().positive().default(1),
11626
+ maxSessions: number().int().positive().nullable().default(null)
11627
+ });
11628
+ /**
11584
11629
  * Camera assignment payload sent by `addon-pipeline-orchestrator` to a
11585
11630
  * specific runner instance via `attachCamera`. Carries everything the
11586
11631
  * runner needs to subscribe to the local broker and execute inference.
@@ -11698,7 +11743,16 @@ var RunnerCameraConfigSchema = object({
11698
11743
  * omitted ⇒ the runner's default device. The engine itself stays node-local —
11699
11744
  * this only selects WHICH device pool of that node runs the session.
11700
11745
  */
11701
- deviceKey: string().optional()
11746
+ deviceKey: string().optional(),
11747
+ /**
11748
+ * Step-tree device-jump roster (phase 1): the node's ENABLED inference
11749
+ * devices, populated by the orchestrator ONLY when `deviceKey` is set and the
11750
+ * node has ≥2 enabled devices. The runner uses it to AUTO-jump an enrichment
11751
+ * step whose model has no build for the elected device's format onto another
11752
+ * enabled device of the SAME node (weighted-least-loaded). Absent/single-entry
11753
+ * ⇒ no jump possible; the step runs on `deviceKey`.
11754
+ */
11755
+ inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
11702
11756
  });
11703
11757
  motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
11704
11758
  /**
@@ -11754,7 +11808,18 @@ var RunnerLocalMetricsSchema = object({
11754
11808
  method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mutation" }), method(object({ deviceId: number() }), object({ success: literal(true) }), { kind: "mutation" }), method(ReportMotionInputSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), RunnerLocalLoadSchema), method(_void(), RunnerLocalMetricsSchema), method(object({ deviceId: number() }), CameraMetricsSchema.nullable()), method(_void(), array(CameraMetricsWithDeviceIdSchema).readonly()), method(_void(), array(number()).readonly()), method(object({
11755
11809
  handle: FrameHandleSchema,
11756
11810
  bbox: NativeCropBboxSchema,
11757
- maxWidth: number().int().positive().optional()
11811
+ maxWidth: number().int().positive().optional(),
11812
+ /**
11813
+ * When `true`, the runner encodes the resolved crop to JPEG ON THE
11814
+ * OWNING NODE and returns it in `jpeg` (base64) INSTEAD of raw `bytes`.
11815
+ * Callers set this for CROSS-NODE fetches (`handle.nodeId` is a remote
11816
+ * agent) so the compressed payload fits Moleculer's `maxPacketSize` and
11817
+ * no raw pixels cross the process boundary. Same-node callers omit it
11818
+ * and keep the zero-copy raw `bytes` path. Additive + optional: a
11819
+ * pre-encode runner (version skew) ignores it and returns `bytes`, so
11820
+ * the caller falls back to encoding locally.
11821
+ */
11822
+ encodeJpeg: boolean().optional()
11758
11823
  }), NativeCropResultSchema.nullable()), method(object({
11759
11824
  deviceId: number(),
11760
11825
  frameHandle: FrameHandleSchema.optional(),
@@ -14828,7 +14893,8 @@ var LinkedDeviceSchema = object({
14828
14893
  deviceId: number(),
14829
14894
  name: string(),
14830
14895
  location: string().nullable(),
14831
- features: array(string())
14896
+ features: array(string()),
14897
+ producesTrackedEvents: boolean().optional()
14832
14898
  });
14833
14899
  var SavedDeviceRowSchema = object({
14834
14900
  /** Numeric id reserved at allocateDeviceId time. */
@@ -16458,6 +16524,7 @@ var TrackSchema = object({
16458
16524
  deviceId: number(),
16459
16525
  className: string(),
16460
16526
  label: string().optional(),
16527
+ producingDeviceName: string().optional(),
16461
16528
  /** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
16462
16529
  source: TrackSourceSchema.optional(),
16463
16530
  firstSeen: number(),
@@ -16595,7 +16662,8 @@ var MediaFileKindEnum = _enum([
16595
16662
  "fullFrameBoxed",
16596
16663
  "faceCrop",
16597
16664
  "plateCrop",
16598
- "keyFrame"
16665
+ "keyFrame",
16666
+ "keyFrameSmall"
16599
16667
  ]);
16600
16668
  var MediaFileSchema = object({
16601
16669
  key: string(),
@@ -16926,7 +16994,16 @@ var PipelineTemplateSchema = object({
16926
16994
  });
16927
16995
  var DeviceStepConfigSchema = object({
16928
16996
  modelId: string().optional(),
16929
- settings: record(string(), unknown()).optional()
16997
+ settings: record(string(), unknown()).optional(),
16998
+ /**
16999
+ * Step-tree device jump (same-node, phase 1) — OPTIONAL manual override.
17000
+ * When set, this step runs on the named enabled device of the SAME node
17001
+ * (`<backend>:<device>`) instead of the camera's elected device, bypassing
17002
+ * the runtime AUTO-jump. The orchestrator rejects a `jumpDeviceKey` pointing
17003
+ * at a disabled/absent device on that node at save time. Absent ⇒ the runner
17004
+ * auto-jumps only when the effective device's format cannot run the step.
17005
+ */
17006
+ jumpDeviceKey: string().optional()
16930
17007
  });
16931
17008
  var AgentPipelineSettingsSchema = object({
16932
17009
  maxCameras: number().int().nonnegative().nullable().default(null),
@@ -11142,7 +11142,8 @@ var PipelineStepInputSchema = lazy(() => object({
11142
11142
  modelId: string().optional(),
11143
11143
  enabled: boolean().default(true),
11144
11144
  children: array(PipelineStepInputSchema).optional(),
11145
- settings: record(string(), unknown()).optional()
11145
+ settings: record(string(), unknown()).optional(),
11146
+ jumpDeviceKey: string().optional()
11146
11147
  }));
11147
11148
  var ModelSubstitutionSchema = object({
11148
11149
  addonId: string(),
@@ -11448,10 +11449,40 @@ var NativeCropBboxSchema = object({
11448
11449
  });
11449
11450
  /** Result of a best-effort native-resolution crop (`getNativeCrop`). */
11450
11451
  var NativeCropResultSchema = object({
11451
- /** Packed rgb (24-bit) pixels of the crop. */
11452
- bytes: _instanceof(Uint8Array),
11452
+ /**
11453
+ * Packed rgb (24-bit) pixels of the crop. Present on the DEFAULT (raw) path —
11454
+ * same-node (in-process / UDS) callers get zero-copy RGB and encode locally.
11455
+ * OMITTED when the caller requested `encodeJpeg` (the cross-node compressed
11456
+ * path below), where shipping raw RGB is both an invariant violation and, for
11457
+ * a native full frame (~26 MB at 4K), larger than Moleculer's 10 MB
11458
+ * `maxPacketSize` → the packet is dropped and the call 60s-times-out. That is
11459
+ * the cross-node native-media miss: `bytes` is replaced by `jpeg`.
11460
+ */
11461
+ bytes: _instanceof(Uint8Array).optional(),
11462
+ /**
11463
+ * Base64 JPEG of the crop — the COMPRESSED cross-node payload. The OWNING node
11464
+ * (which holds the native surface) encodes it in-process, so a native 4K frame
11465
+ * ships as ~0.5–2 MB (well under `maxPacketSize`) and NO raw pixels ever cross
11466
+ * a process boundary (CLAUDE.md invariant #21). Present ONLY when the request
11467
+ * set `encodeJpeg: true`; `bytes` is then absent.
11468
+ */
11469
+ jpeg: string().optional(),
11453
11470
  width: number().int().positive(),
11454
- height: number().int().positive()
11471
+ height: number().int().positive(),
11472
+ /**
11473
+ * Which source served this crop, so a quality-sensitive consumer (the native
11474
+ * `keyFrame`) can reject a degraded fallback:
11475
+ * - `native` — cut from the decode worker's retained NATIVE surface (the
11476
+ * quality path).
11477
+ * - `ram-fullframe` — the native surface MISSED but the request was full-frame,
11478
+ * so the ≤640 RAM `RetainedFrameStore` served it (honest lower-res; legit for
11479
+ * the blank-frame guard / 640-snapshot resolve, NOT for the clean keyFrame).
11480
+ *
11481
+ * OPTIONAL: a pre-tier runner (version skew) omits it — an ABSENT `tier` MUST be
11482
+ * treated as `native` (accepted) by every consumer so mixed-version clusters
11483
+ * keep the pre-tier behaviour. An ROI miss returns `null` (no tier at all).
11484
+ */
11485
+ tier: _enum(["native", "ram-fullframe"]).optional()
11455
11486
  });
11456
11487
  /** Parent detection context passed to `runDetailSubtree` — the crop's
11457
11488
  * originating detection, in FRAME-space coordinates. Reuses
@@ -11581,6 +11612,20 @@ var RunnerFrameSourceSchema = discriminatedUnion("kind", [object({ kind: literal
11581
11612
  hubHostnameOverride: string().optional()
11582
11613
  })]).describe("Per-camera frame-source mode for the runner (P2c)");
11583
11614
  /**
11615
+ * One ENABLED inference device on the runner's node, as the step-tree
11616
+ * device-jump resolver sees it (phase 1). The orchestrator populates this
11617
+ * roster on the attach payload whenever the camera is elected onto a specific
11618
+ * `deviceKey` and the node has ≥2 enabled devices — it is the candidate set the
11619
+ * runner auto-jumps an enrichment step to when the elected device's format
11620
+ * cannot run that step's model. `weight`/`maxSessions` mirror the balancer's
11621
+ * per-device knobs so the auto choice is weighted-least-loaded.
11622
+ */
11623
+ var RunnerInferenceDeviceSchema = object({
11624
+ deviceKey: string(),
11625
+ weight: number().positive().default(1),
11626
+ maxSessions: number().int().positive().nullable().default(null)
11627
+ });
11628
+ /**
11584
11629
  * Camera assignment payload sent by `addon-pipeline-orchestrator` to a
11585
11630
  * specific runner instance via `attachCamera`. Carries everything the
11586
11631
  * runner needs to subscribe to the local broker and execute inference.
@@ -11698,7 +11743,16 @@ var RunnerCameraConfigSchema = object({
11698
11743
  * omitted ⇒ the runner's default device. The engine itself stays node-local —
11699
11744
  * this only selects WHICH device pool of that node runs the session.
11700
11745
  */
11701
- deviceKey: string().optional()
11746
+ deviceKey: string().optional(),
11747
+ /**
11748
+ * Step-tree device-jump roster (phase 1): the node's ENABLED inference
11749
+ * devices, populated by the orchestrator ONLY when `deviceKey` is set and the
11750
+ * node has ≥2 enabled devices. The runner uses it to AUTO-jump an enrichment
11751
+ * step whose model has no build for the elected device's format onto another
11752
+ * enabled device of the SAME node (weighted-least-loaded). Absent/single-entry
11753
+ * ⇒ no jump possible; the step runs on `deviceKey`.
11754
+ */
11755
+ inferenceDevices: array(RunnerInferenceDeviceSchema).readonly().optional()
11702
11756
  });
11703
11757
  motionFpsField.min, motionFpsField.max, motionFpsField.step, motionFpsField.default, detectionFpsField.min, detectionFpsField.max, detectionFpsField.step, detectionFpsField.default, motionCooldownMsField.min, motionCooldownMsField.max, motionCooldownMsField.step, motionCooldownMsField.default, occupancyRecheckSecField.min, occupancyRecheckSecField.max, occupancyRecheckSecField.step, occupancyRecheckSecField.default, occupancyRecheckFramesField.min, occupancyRecheckFramesField.max, occupancyRecheckFramesField.step, occupancyRecheckFramesField.default;
11704
11758
  /**
@@ -11754,7 +11808,18 @@ var RunnerLocalMetricsSchema = object({
11754
11808
  method(RunnerCameraConfigSchema, object({ success: literal(true) }), { kind: "mutation" }), method(object({ deviceId: number() }), object({ success: literal(true) }), { kind: "mutation" }), method(ReportMotionInputSchema, object({ success: literal(true) }), { kind: "mutation" }), method(_void(), RunnerLocalLoadSchema), method(_void(), RunnerLocalMetricsSchema), method(object({ deviceId: number() }), CameraMetricsSchema.nullable()), method(_void(), array(CameraMetricsWithDeviceIdSchema).readonly()), method(_void(), array(number()).readonly()), method(object({
11755
11809
  handle: FrameHandleSchema,
11756
11810
  bbox: NativeCropBboxSchema,
11757
- maxWidth: number().int().positive().optional()
11811
+ maxWidth: number().int().positive().optional(),
11812
+ /**
11813
+ * When `true`, the runner encodes the resolved crop to JPEG ON THE
11814
+ * OWNING NODE and returns it in `jpeg` (base64) INSTEAD of raw `bytes`.
11815
+ * Callers set this for CROSS-NODE fetches (`handle.nodeId` is a remote
11816
+ * agent) so the compressed payload fits Moleculer's `maxPacketSize` and
11817
+ * no raw pixels cross the process boundary. Same-node callers omit it
11818
+ * and keep the zero-copy raw `bytes` path. Additive + optional: a
11819
+ * pre-encode runner (version skew) ignores it and returns `bytes`, so
11820
+ * the caller falls back to encoding locally.
11821
+ */
11822
+ encodeJpeg: boolean().optional()
11758
11823
  }), NativeCropResultSchema.nullable()), method(object({
11759
11824
  deviceId: number(),
11760
11825
  frameHandle: FrameHandleSchema.optional(),
@@ -14828,7 +14893,8 @@ var LinkedDeviceSchema = object({
14828
14893
  deviceId: number(),
14829
14894
  name: string(),
14830
14895
  location: string().nullable(),
14831
- features: array(string())
14896
+ features: array(string()),
14897
+ producesTrackedEvents: boolean().optional()
14832
14898
  });
14833
14899
  var SavedDeviceRowSchema = object({
14834
14900
  /** Numeric id reserved at allocateDeviceId time. */
@@ -16458,6 +16524,7 @@ var TrackSchema = object({
16458
16524
  deviceId: number(),
16459
16525
  className: string(),
16460
16526
  label: string().optional(),
16527
+ producingDeviceName: string().optional(),
16461
16528
  /** Track provenance. Absent ⇒ `pipeline` (legacy rows). */
16462
16529
  source: TrackSourceSchema.optional(),
16463
16530
  firstSeen: number(),
@@ -16595,7 +16662,8 @@ var MediaFileKindEnum = _enum([
16595
16662
  "fullFrameBoxed",
16596
16663
  "faceCrop",
16597
16664
  "plateCrop",
16598
- "keyFrame"
16665
+ "keyFrame",
16666
+ "keyFrameSmall"
16599
16667
  ]);
16600
16668
  var MediaFileSchema = object({
16601
16669
  key: string(),
@@ -16926,7 +16994,16 @@ var PipelineTemplateSchema = object({
16926
16994
  });
16927
16995
  var DeviceStepConfigSchema = object({
16928
16996
  modelId: string().optional(),
16929
- settings: record(string(), unknown()).optional()
16997
+ settings: record(string(), unknown()).optional(),
16998
+ /**
16999
+ * Step-tree device jump (same-node, phase 1) — OPTIONAL manual override.
17000
+ * When set, this step runs on the named enabled device of the SAME node
17001
+ * (`<backend>:<device>`) instead of the camera's elected device, bypassing
17002
+ * the runtime AUTO-jump. The orchestrator rejects a `jumpDeviceKey` pointing
17003
+ * at a disabled/absent device on that node at save time. Absent ⇒ the runner
17004
+ * auto-jumps only when the effective device's format cannot run the step.
17005
+ */
17006
+ jumpDeviceKey: string().optional()
16930
17007
  });
16931
17008
  var AgentPipelineSettingsSchema = object({
16932
17009
  maxCameras: number().int().nonnegative().nullable().default(null),
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
5
  require("../chunk-Cek0wNdY.js");
6
- const require_dist = require("../dist-DC161wqx.js");
6
+ const require_dist = require("../dist-BUeGJE5D.js");
7
7
  //#region src/magic-link/auth-magic-link.addon.ts
8
8
  /**
9
9
  * Magic-link authentication addon.
@@ -1,4 +1,4 @@
1
- import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-C34hxA4W.mjs";
1
+ import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-wW7ZaEuU.mjs";
2
2
  //#region src/magic-link/auth-magic-link.addon.ts
3
3
  /**
4
4
  * Magic-link authentication addon.
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
5
  const require_chunk = require("../chunk-Cek0wNdY.js");
6
- const require_dist = require("../dist-DC161wqx.js");
6
+ const require_dist = require("../dist-BUeGJE5D.js");
7
7
  let node_crypto = require("node:crypto");
8
8
  node_crypto = require_chunk.__toESM(node_crypto);
9
9
  //#region node_modules/jose/dist/webapi/lib/buffer_utils.js
@@ -1,4 +1,4 @@
1
- import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-C34hxA4W.mjs";
1
+ import { a as loginMethodCapability, c as BaseAddon, i as buildAddonRouteProvider, r as authProviderCapability, s as errMsg, t as addonRoutesCapability } from "../dist-wW7ZaEuU.mjs";
2
2
  import * as crypto$1 from "node:crypto";
3
3
  //#region node_modules/jose/dist/webapi/lib/buffer_utils.js
4
4
  var encoder = new TextEncoder();
@@ -3,7 +3,7 @@ import "./dist-CYZr2fwk.mjs";
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.0",
6
+ version: "1.2.2",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_auth_webauthn_widgets",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.0",
21
+ version: "1.2.2",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_auth_webauthn_widgets",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.0",
36
+ version: "1.2.2",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_auth_webauthn_widgets",
@@ -3,7 +3,7 @@ Object.defineProperties(exports, {
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
5
  const require_chunk = require("../chunk-Cek0wNdY.js");
6
- const require_dist = require("../dist-DC161wqx.js");
6
+ const require_dist = require("../dist-BUeGJE5D.js");
7
7
  let stream = require("stream");
8
8
  stream = require_chunk.__toESM(stream, 1);
9
9
  let http = require("http");
@@ -1,4 +1,4 @@
1
- import { a as loginMethodCapability, c as BaseAddon, d as number, f as object, l as array, n as addonWidgetsSourceCapability, o as userPasskeysCapability, p as string, u as boolean } from "../dist-C34hxA4W.mjs";
1
+ import { a as loginMethodCapability, c as BaseAddon, d as number, f as object, l as array, n as addonWidgetsSourceCapability, o as userPasskeysCapability, p as string, u as boolean } from "../dist-wW7ZaEuU.mjs";
2
2
  import { createRequire } from "node:module";
3
3
  import Stream from "stream";
4
4
  import http from "http";
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.0",
39
+ version: "1.2.2",
40
40
  scope: "default",
41
41
  shareConfig: {
42
42
  singleton: !0,
@@ -45,7 +45,7 @@ async function r() {
45
45
  }
46
46
  },
47
47
  "@camstack/sdk": {
48
- version: "1.2.0",
48
+ version: "1.2.2",
49
49
  scope: "default",
50
50
  shareConfig: {
51
51
  singleton: !0,
@@ -81,7 +81,7 @@ async function r() {
81
81
  }
82
82
  },
83
83
  "@camstack/ui-library": {
84
- version: "1.2.0",
84
+ version: "1.2.2",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
@@ -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_auth_webauthn_widgets-DBDombY4.mjs")).catch((e) => {
33
+ return l ||= d(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_auth_webauthn_widgets-DFVyWMD2.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-auth",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "CamStack authentication bundle — magic-link, OIDC, and WebAuthn/passkey. Multi-entry npm package shipping 3 addons under a single bundle; each addon keeps its own id, capabilities, and runner.",
5
5
  "keywords": [
6
6
  "camstack",