@camstack/addon-remote-storage 1.2.84 → 1.2.86

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/s3.addon.js CHANGED
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_shared = require("./shared-GkmTwSS1.js");
5
+ const require_shared = require("./shared-4AFxH3Ch.js");
6
6
  let node_stream = require("node:stream");
7
7
  let _aws_sdk_client_s3 = require("@aws-sdk/client-s3");
8
8
  let _aws_sdk_lib_storage = require("@aws-sdk/lib-storage");
package/dist/s3.addon.mjs CHANGED
@@ -1,4 +1,4 @@
1
- import { c as BaseAddon, i as rearmIdleAbort, n as getOptionalBasePath, o as scheduleIdleAbort, s as storageProviderCapability, t as createSessionId } from "./shared-Dd6Ix8wk.mjs";
1
+ import { c as BaseAddon, i as rearmIdleAbort, n as getOptionalBasePath, o as scheduleIdleAbort, s as storageProviderCapability, t as createSessionId } from "./shared-C1Q2-FHB.mjs";
2
2
  import { PassThrough } from "node:stream";
3
3
  import { DeleteObjectCommand, GetObjectCommand, HeadBucketCommand, HeadObjectCommand, ListObjectsV2Command, PutObjectCommand, S3Client } from "@aws-sdk/client-s3";
4
4
  import { Upload } from "@aws-sdk/lib-storage";
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_shared = require("./shared-GkmTwSS1.js");
5
+ const require_shared = require("./shared-4AFxH3Ch.js");
6
6
  let ssh2 = require("ssh2");
7
7
  let node_path = require("node:path");
8
8
  node_path = require_shared.__toESM(node_path);
@@ -1,4 +1,4 @@
1
- import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-Dd6Ix8wk.mjs";
1
+ import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-C1Q2-FHB.mjs";
2
2
  import { Client } from "ssh2";
3
3
  import * as path from "node:path";
4
4
  //#region src/providers/sftp/sftp-config-schema.ts
@@ -7635,6 +7635,35 @@ var CameraSwitchGroupSchema = object({
7635
7635
  /** Unix ms when the group was composed server-side. */
7636
7636
  fetchedAt: number()
7637
7637
  });
7638
+ /** One archived note — the operator's words plus enough context to find what
7639
+ * they were looking at, after the track itself is gone. */
7640
+ var ArchivedDebugNoteSchema = object({
7641
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7642
+ * same sentence about the same track lands on the row already there. */
7643
+ id: string(),
7644
+ /** The operator's own words, verbatim. */
7645
+ note: string(),
7646
+ /** The camera. Required — every question here is asked per-camera. */
7647
+ deviceId: number().int(),
7648
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7649
+ * is expected to be gone, and this row is not a reference to it. */
7650
+ sourceTrackId: string(),
7651
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7652
+ archivedAt: number().int(),
7653
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7654
+ trackStartedAt: number().int().nullable(),
7655
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7656
+ trackClass: string().nullable(),
7657
+ /** The track's display label at review time; `null` when it had none. */
7658
+ trackLabel: string().nullable()
7659
+ });
7660
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7661
+ var ArchivedDebugNoteQueryInputSchema = object({
7662
+ /** Restrict to a single camera; omit for every row. */
7663
+ deviceId: number().int().optional(),
7664
+ /** Max rows returned, newest-first. */
7665
+ limit: number().int().min(1).max(1e3).optional()
7666
+ });
7638
7667
  /**
7639
7668
  * Ops-log — the durable, append-only operations audit shared by the
7640
7669
  * recordings and events management surfaces.
@@ -15819,16 +15848,16 @@ DeviceType.AlarmPanel, method(object({
15819
15848
  code: string().min(1).optional()
15820
15849
  }), _void(), {
15821
15850
  kind: "mutation",
15822
- auth: "admin"
15851
+ auth: "protected"
15823
15852
  }), method(object({
15824
15853
  deviceId: number().int().nonnegative(),
15825
15854
  code: string().min(1).optional()
15826
15855
  }), _void(), {
15827
15856
  kind: "mutation",
15828
- auth: "admin"
15857
+ auth: "protected"
15829
15858
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
15830
15859
  kind: "mutation",
15831
- auth: "admin"
15860
+ auth: "protected"
15832
15861
  });
15833
15862
  /**
15834
15863
  * Shared geometry vocabulary for on-frame shape caps — privacy-mask,
@@ -19730,7 +19759,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
19730
19759
  deviceId: number(),
19731
19760
  trackId: string(),
19732
19761
  flags: TrackFlagsPatchSchema
19733
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
19762
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
19734
19763
  kind: "query",
19735
19764
  auth: "admin"
19736
19765
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -23543,7 +23572,7 @@ DeviceType.Light, method(object({
23543
23572
  percentage: number().min(0).max(100)
23544
23573
  }), _void(), {
23545
23574
  kind: "mutation",
23546
- auth: "admin"
23575
+ auth: "protected"
23547
23576
  }), object({
23548
23577
  deviceId: number(),
23549
23578
  percentage: number().min(0).max(100),
@@ -23551,7 +23580,7 @@ DeviceType.Light, method(object({
23551
23580
  });
23552
23581
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
23553
23582
  kind: "mutation",
23554
- auth: "admin"
23583
+ auth: "protected"
23555
23584
  });
23556
23585
  /**
23557
23586
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -23710,50 +23739,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
23710
23739
  mode: HvacModeSchema
23711
23740
  }), _void(), {
23712
23741
  kind: "mutation",
23713
- auth: "admin"
23742
+ auth: "protected"
23714
23743
  }), method(object({
23715
23744
  deviceId: number().int().nonnegative(),
23716
23745
  fanMode: string().min(1)
23717
23746
  }), _void(), {
23718
23747
  kind: "mutation",
23719
- auth: "admin"
23748
+ auth: "protected"
23720
23749
  }), method(object({
23721
23750
  deviceId: number().int().nonnegative(),
23722
23751
  preset: string().min(1)
23723
23752
  }), _void(), {
23724
23753
  kind: "mutation",
23725
- auth: "admin"
23754
+ auth: "protected"
23726
23755
  }), method(object({
23727
23756
  deviceId: number().int().nonnegative(),
23728
23757
  target: number()
23729
23758
  }), _void(), {
23730
23759
  kind: "mutation",
23731
- auth: "admin"
23760
+ auth: "protected"
23732
23761
  }), method(object({
23733
23762
  deviceId: number().int().nonnegative(),
23734
23763
  targetLow: number(),
23735
23764
  targetHigh: number()
23736
23765
  }), _void(), {
23737
23766
  kind: "mutation",
23738
- auth: "admin"
23767
+ auth: "protected"
23739
23768
  }), method(object({
23740
23769
  deviceId: number().int().nonnegative(),
23741
23770
  targetHumidity: number().min(0).max(100)
23742
23771
  }), _void(), {
23743
23772
  kind: "mutation",
23744
- auth: "admin"
23773
+ auth: "protected"
23745
23774
  }), method(object({
23746
23775
  deviceId: number().int().nonnegative(),
23747
23776
  on: boolean()
23748
23777
  }), _void(), {
23749
23778
  kind: "mutation",
23750
- auth: "admin"
23779
+ auth: "protected"
23751
23780
  }), method(object({
23752
23781
  deviceId: number().int().nonnegative(),
23753
23782
  on: boolean()
23754
23783
  }), _void(), {
23755
23784
  kind: "mutation",
23756
- auth: "admin"
23785
+ auth: "protected"
23757
23786
  });
23758
23787
  /**
23759
23788
  * Color-light cap. Coexists with `switch` (on/off) and `brightness`
@@ -23828,7 +23857,7 @@ DeviceType.Light, method(object({
23828
23857
  color: ColorInputSchema
23829
23858
  }), _void(), {
23830
23859
  kind: "mutation",
23831
- auth: "admin"
23860
+ auth: "protected"
23832
23861
  }), object({
23833
23862
  deviceId: number(),
23834
23863
  mode: _enum([
@@ -23977,7 +24006,7 @@ DeviceType.Control, method(object({
23977
24006
  control: ControlSetValueInputSchema
23978
24007
  }), _void(), {
23979
24008
  kind: "mutation",
23980
- auth: "admin"
24009
+ auth: "protected"
23981
24010
  });
23982
24011
  object({
23983
24012
  /** Lifecycle state of the cover. */
@@ -23998,25 +24027,25 @@ object({
23998
24027
  });
23999
24028
  DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
24000
24029
  kind: "mutation",
24001
- auth: "admin"
24030
+ auth: "protected"
24002
24031
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24003
24032
  kind: "mutation",
24004
- auth: "admin"
24033
+ auth: "protected"
24005
24034
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
24006
24035
  kind: "mutation",
24007
- auth: "admin"
24036
+ auth: "protected"
24008
24037
  }), method(object({
24009
24038
  deviceId: number().int().nonnegative(),
24010
24039
  position: number().min(0).max(100)
24011
24040
  }), _void(), {
24012
24041
  kind: "mutation",
24013
- auth: "admin"
24042
+ auth: "protected"
24014
24043
  }), method(object({
24015
24044
  deviceId: number().int().nonnegative(),
24016
24045
  tiltPosition: number().min(0).max(100)
24017
24046
  }), _void(), {
24018
24047
  kind: "mutation",
24019
- auth: "admin"
24048
+ auth: "protected"
24020
24049
  });
24021
24050
  /**
24022
24051
  * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
@@ -24611,25 +24640,25 @@ DeviceType.Fan, method(object({
24611
24640
  percentage: number().min(0).max(100)
24612
24641
  }), _void(), {
24613
24642
  kind: "mutation",
24614
- auth: "admin"
24643
+ auth: "protected"
24615
24644
  }), method(object({
24616
24645
  deviceId: number().int().nonnegative(),
24617
24646
  preset: string().min(1)
24618
24647
  }), _void(), {
24619
24648
  kind: "mutation",
24620
- auth: "admin"
24649
+ auth: "protected"
24621
24650
  }), method(object({
24622
24651
  deviceId: number().int().nonnegative(),
24623
24652
  direction: FanDirectionSchema
24624
24653
  }), _void(), {
24625
24654
  kind: "mutation",
24626
- auth: "admin"
24655
+ auth: "protected"
24627
24656
  }), method(object({
24628
24657
  deviceId: number().int().nonnegative(),
24629
24658
  oscillating: boolean()
24630
24659
  }), _void(), {
24631
24660
  kind: "mutation",
24632
- auth: "admin"
24661
+ auth: "protected"
24633
24662
  });
24634
24663
  /**
24635
24664
  * Per-device feature/identity probe slice. Holds the runtime-resolved
@@ -24732,19 +24761,19 @@ DeviceType.Humidifier, method(object({
24732
24761
  on: boolean()
24733
24762
  }), _void(), {
24734
24763
  kind: "mutation",
24735
- auth: "admin"
24764
+ auth: "protected"
24736
24765
  }), method(object({
24737
24766
  deviceId: number().int().nonnegative(),
24738
24767
  humidity: number().min(0).max(100)
24739
24768
  }), _void(), {
24740
24769
  kind: "mutation",
24741
- auth: "admin"
24770
+ auth: "protected"
24742
24771
  }), method(object({
24743
24772
  deviceId: number().int().nonnegative(),
24744
24773
  mode: string().min(1)
24745
24774
  }), _void(), {
24746
24775
  kind: "mutation",
24747
- auth: "admin"
24776
+ auth: "protected"
24748
24777
  });
24749
24778
  object({
24750
24779
  /** Current relative humidity, 0..100. */
@@ -25206,13 +25235,13 @@ object({
25206
25235
  });
25207
25236
  DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25208
25237
  kind: "mutation",
25209
- auth: "admin"
25238
+ auth: "protected"
25210
25239
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25211
25240
  kind: "mutation",
25212
- auth: "admin"
25241
+ auth: "protected"
25213
25242
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25214
25243
  kind: "mutation",
25215
- auth: "admin"
25244
+ auth: "protected"
25216
25245
  });
25217
25246
  /**
25218
25247
  * local-network — hub-only singleton.
@@ -25472,16 +25501,16 @@ DeviceType.Lock, method(object({
25472
25501
  code: string().min(1).optional()
25473
25502
  }), _void(), {
25474
25503
  kind: "mutation",
25475
- auth: "admin"
25504
+ auth: "protected"
25476
25505
  }), method(object({
25477
25506
  deviceId: number().int().nonnegative(),
25478
25507
  code: string().min(1).optional()
25479
25508
  }), _void(), {
25480
25509
  kind: "mutation",
25481
- auth: "admin"
25510
+ auth: "protected"
25482
25511
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25483
25512
  kind: "mutation",
25484
- auth: "admin"
25513
+ auth: "protected"
25485
25514
  });
25486
25515
  /**
25487
25516
  * Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
@@ -25555,55 +25584,55 @@ object({
25555
25584
  });
25556
25585
  DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25557
25586
  kind: "mutation",
25558
- auth: "admin"
25587
+ auth: "protected"
25559
25588
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25560
25589
  kind: "mutation",
25561
- auth: "admin"
25590
+ auth: "protected"
25562
25591
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25563
25592
  kind: "mutation",
25564
- auth: "admin"
25593
+ auth: "protected"
25565
25594
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25566
25595
  kind: "mutation",
25567
- auth: "admin"
25596
+ auth: "protected"
25568
25597
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25569
25598
  kind: "mutation",
25570
- auth: "admin"
25599
+ auth: "protected"
25571
25600
  }), method(object({
25572
25601
  deviceId: number().int().nonnegative(),
25573
25602
  positionMs: number().int().nonnegative()
25574
25603
  }), _void(), {
25575
25604
  kind: "mutation",
25576
- auth: "admin"
25605
+ auth: "protected"
25577
25606
  }), method(object({
25578
25607
  deviceId: number().int().nonnegative(),
25579
25608
  volumeLevel: number().min(0).max(100)
25580
25609
  }), _void(), {
25581
25610
  kind: "mutation",
25582
- auth: "admin"
25611
+ auth: "protected"
25583
25612
  }), method(object({
25584
25613
  deviceId: number().int().nonnegative(),
25585
25614
  muted: boolean()
25586
25615
  }), _void(), {
25587
25616
  kind: "mutation",
25588
- auth: "admin"
25617
+ auth: "protected"
25589
25618
  }), method(object({
25590
25619
  deviceId: number().int().nonnegative(),
25591
25620
  shuffle: boolean()
25592
25621
  }), _void(), {
25593
25622
  kind: "mutation",
25594
- auth: "admin"
25623
+ auth: "protected"
25595
25624
  }), method(object({
25596
25625
  deviceId: number().int().nonnegative(),
25597
25626
  repeat: MediaPlayerRepeatSchema
25598
25627
  }), _void(), {
25599
25628
  kind: "mutation",
25600
- auth: "admin"
25629
+ auth: "protected"
25601
25630
  }), method(object({
25602
25631
  deviceId: number().int().nonnegative(),
25603
25632
  source: string().min(1)
25604
25633
  }), _void(), {
25605
25634
  kind: "mutation",
25606
- auth: "admin"
25635
+ auth: "protected"
25607
25636
  }), method(object({
25608
25637
  deviceId: number().int().nonnegative(),
25609
25638
  /** Media identifier / URL. */
@@ -25613,7 +25642,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
25613
25642
  mediaType: string().min(1)
25614
25643
  }), _void(), {
25615
25644
  kind: "mutation",
25616
- auth: "admin"
25645
+ auth: "protected"
25617
25646
  });
25618
25647
  /**
25619
25648
  * mesh-network — collection cap for mesh-VPN providers.
@@ -26779,49 +26808,49 @@ DeviceType.PetFeeder, method(object({
26779
26808
  hopper2: gramsPortion.optional()
26780
26809
  }), _void(), {
26781
26810
  kind: "mutation",
26782
- auth: "admin"
26811
+ auth: "protected"
26783
26812
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26784
26813
  kind: "mutation",
26785
- auth: "admin"
26814
+ auth: "protected"
26786
26815
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26787
26816
  kind: "mutation",
26788
- auth: "admin"
26817
+ auth: "protected"
26789
26818
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26790
26819
  kind: "mutation",
26791
- auth: "admin"
26820
+ auth: "protected"
26792
26821
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26793
26822
  kind: "mutation",
26794
- auth: "admin"
26823
+ auth: "protected"
26795
26824
  }), method(object({
26796
26825
  deviceId: number().int().nonnegative(),
26797
26826
  soundId: number().int().nonnegative()
26798
26827
  }), _void(), {
26799
26828
  kind: "mutation",
26800
- auth: "admin"
26829
+ auth: "protected"
26801
26830
  }), method(object({
26802
26831
  deviceId: number().int().nonnegative(),
26803
26832
  on: boolean()
26804
26833
  }), _void(), {
26805
26834
  kind: "mutation",
26806
- auth: "admin"
26835
+ auth: "protected"
26807
26836
  }), method(object({
26808
26837
  deviceId: number().int().nonnegative(),
26809
26838
  on: boolean()
26810
26839
  }), _void(), {
26811
26840
  kind: "mutation",
26812
- auth: "admin"
26841
+ auth: "protected"
26813
26842
  }), method(object({
26814
26843
  deviceId: number().int().nonnegative(),
26815
26844
  on: boolean()
26816
26845
  }), _void(), {
26817
26846
  kind: "mutation",
26818
- auth: "admin"
26847
+ auth: "protected"
26819
26848
  }), method(object({
26820
26849
  deviceId: number().int().nonnegative(),
26821
26850
  level: number().int().nonnegative()
26822
26851
  }), _void(), {
26823
26852
  kind: "mutation",
26824
- auth: "admin"
26853
+ auth: "protected"
26825
26854
  });
26826
26855
  var VehicleSchema = object({
26827
26856
  id: string(),
@@ -28608,7 +28637,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
28608
28637
  on: boolean()
28609
28638
  }), _void(), {
28610
28639
  kind: "mutation",
28611
- auth: "admin"
28640
+ auth: "protected"
28612
28641
  }), object({
28613
28642
  deviceId: number(),
28614
28643
  on: boolean(),
@@ -29465,25 +29494,25 @@ object({
29465
29494
  });
29466
29495
  DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
29467
29496
  kind: "mutation",
29468
- auth: "admin"
29497
+ auth: "protected"
29469
29498
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29470
29499
  kind: "mutation",
29471
- auth: "admin"
29500
+ auth: "protected"
29472
29501
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29473
29502
  kind: "mutation",
29474
- auth: "admin"
29503
+ auth: "protected"
29475
29504
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29476
29505
  kind: "mutation",
29477
- auth: "admin"
29506
+ auth: "protected"
29478
29507
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29479
29508
  kind: "mutation",
29480
- auth: "admin"
29509
+ auth: "protected"
29481
29510
  }), method(object({
29482
29511
  deviceId: number().int().nonnegative(),
29483
29512
  speed: string().min(1)
29484
29513
  }), _void(), {
29485
29514
  kind: "mutation",
29486
- auth: "admin"
29515
+ auth: "protected"
29487
29516
  });
29488
29517
  object({
29489
29518
  /** Lifecycle state of the valve. */
@@ -29502,19 +29531,19 @@ object({
29502
29531
  });
29503
29532
  DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
29504
29533
  kind: "mutation",
29505
- auth: "admin"
29534
+ auth: "protected"
29506
29535
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29507
29536
  kind: "mutation",
29508
- auth: "admin"
29537
+ auth: "protected"
29509
29538
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29510
29539
  kind: "mutation",
29511
- auth: "admin"
29540
+ auth: "protected"
29512
29541
  }), method(object({
29513
29542
  deviceId: number().int().nonnegative(),
29514
29543
  position: number().min(0).max(100)
29515
29544
  }), _void(), {
29516
29545
  kind: "mutation",
29517
- auth: "admin"
29546
+ auth: "protected"
29518
29547
  });
29519
29548
  object({
29520
29549
  detected: boolean(),
@@ -29548,19 +29577,19 @@ DeviceType.WaterHeater, method(object({
29548
29577
  temp: number().finite()
29549
29578
  }), _void(), {
29550
29579
  kind: "mutation",
29551
- auth: "admin"
29580
+ auth: "protected"
29552
29581
  }), method(object({
29553
29582
  deviceId: number().int().nonnegative(),
29554
29583
  mode: string().min(1)
29555
29584
  }), _void(), {
29556
29585
  kind: "mutation",
29557
- auth: "admin"
29586
+ auth: "protected"
29558
29587
  }), method(object({
29559
29588
  deviceId: number().int().nonnegative(),
29560
29589
  on: boolean()
29561
29590
  }), _void(), {
29562
29591
  kind: "mutation",
29563
- auth: "admin"
29592
+ auth: "protected"
29564
29593
  });
29565
29594
  object({
29566
29595
  /** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
@@ -33188,6 +33217,12 @@ Object.freeze({
33188
33217
  addonId: null,
33189
33218
  access: "view"
33190
33219
  },
33220
+ "pipelineAnalytics.listArchivedDebugNotes": {
33221
+ capName: "pipeline-analytics",
33222
+ capScope: "device",
33223
+ addonId: null,
33224
+ access: "view"
33225
+ },
33191
33226
  "pipelineAnalytics.listEventKinds": {
33192
33227
  capName: "pipeline-analytics",
33193
33228
  capScope: "device",
@@ -36975,6 +37010,11 @@ Object.freeze({
36975
37010
  form: "array",
36976
37011
  optional: true
36977
37012
  }],
37013
+ "pipelineAnalytics.listArchivedDebugNotes": [{
37014
+ name: "deviceId",
37015
+ form: "single",
37016
+ optional: true
37017
+ }],
36978
37018
  "pipelineAnalytics.listEventKinds": [{
36979
37019
  name: "deviceId",
36980
37020
  form: "single",
@@ -7612,6 +7612,35 @@ var CameraSwitchGroupSchema = object({
7612
7612
  /** Unix ms when the group was composed server-side. */
7613
7613
  fetchedAt: number()
7614
7614
  });
7615
+ /** One archived note — the operator's words plus enough context to find what
7616
+ * they were looking at, after the track itself is gone. */
7617
+ var ArchivedDebugNoteSchema = object({
7618
+ /** Archive row id. Derived from `(sourceTrackId, note)`, so re-archiving the
7619
+ * same sentence about the same track lands on the row already there. */
7620
+ id: string(),
7621
+ /** The operator's own words, verbatim. */
7622
+ note: string(),
7623
+ /** The camera. Required — every question here is asked per-camera. */
7624
+ deviceId: number().int(),
7625
+ /** The track the note was written on. PROVENANCE, not ownership: the track
7626
+ * is expected to be gone, and this row is not a reference to it. */
7627
+ sourceTrackId: string(),
7628
+ /** Epoch ms the note was moved here, i.e. when the operator reviewed it. */
7629
+ archivedAt: number().int(),
7630
+ /** The track's `firstSeen`, when the row still knew it; `null` otherwise. */
7631
+ trackStartedAt: number().int().nullable(),
7632
+ /** The track's detector class (`person`, `car`, …); `null` when unknown. */
7633
+ trackClass: string().nullable(),
7634
+ /** The track's display label at review time; `null` when it had none. */
7635
+ trackLabel: string().nullable()
7636
+ });
7637
+ /** Query input for `listArchivedDebugNotes` — newest first, one camera or all. */
7638
+ var ArchivedDebugNoteQueryInputSchema = object({
7639
+ /** Restrict to a single camera; omit for every row. */
7640
+ deviceId: number().int().optional(),
7641
+ /** Max rows returned, newest-first. */
7642
+ limit: number().int().min(1).max(1e3).optional()
7643
+ });
7615
7644
  /**
7616
7645
  * Ops-log — the durable, append-only operations audit shared by the
7617
7646
  * recordings and events management surfaces.
@@ -15796,16 +15825,16 @@ DeviceType.AlarmPanel, method(object({
15796
15825
  code: string().min(1).optional()
15797
15826
  }), _void(), {
15798
15827
  kind: "mutation",
15799
- auth: "admin"
15828
+ auth: "protected"
15800
15829
  }), method(object({
15801
15830
  deviceId: number().int().nonnegative(),
15802
15831
  code: string().min(1).optional()
15803
15832
  }), _void(), {
15804
15833
  kind: "mutation",
15805
- auth: "admin"
15834
+ auth: "protected"
15806
15835
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
15807
15836
  kind: "mutation",
15808
- auth: "admin"
15837
+ auth: "protected"
15809
15838
  });
15810
15839
  /**
15811
15840
  * Shared geometry vocabulary for on-frame shape caps — privacy-mask,
@@ -19707,7 +19736,7 @@ DeviceType.Camera, method(object({ deviceId: number() }), array(TrackSchema).rea
19707
19736
  deviceId: number(),
19708
19737
  trackId: string(),
19709
19738
  flags: TrackFlagsPatchSchema
19710
- }), TrackFlagsSchema, { kind: "mutation" }), method(object({}), EventStoreFootprintSchema, {
19739
+ }), TrackFlagsSchema, { kind: "mutation" }), method(ArchivedDebugNoteQueryInputSchema, array(ArchivedDebugNoteSchema).readonly(), { kind: "query" }), method(object({}), EventStoreFootprintSchema, {
19711
19740
  kind: "query",
19712
19741
  auth: "admin"
19713
19742
  }), method(object({ deviceId: number().int().optional() }), EventMediaKindBreakdownSchema, {
@@ -23520,7 +23549,7 @@ DeviceType.Light, method(object({
23520
23549
  percentage: number().min(0).max(100)
23521
23550
  }), _void(), {
23522
23551
  kind: "mutation",
23523
- auth: "admin"
23552
+ auth: "protected"
23524
23553
  }), object({
23525
23554
  deviceId: number(),
23526
23555
  percentage: number().min(0).max(100),
@@ -23528,7 +23557,7 @@ DeviceType.Light, method(object({
23528
23557
  });
23529
23558
  DeviceType.Button, method(object({ deviceId: number().int().nonnegative() }), _void(), {
23530
23559
  kind: "mutation",
23531
- auth: "admin"
23560
+ auth: "protected"
23532
23561
  });
23533
23562
  /**
23534
23563
  * camera-credentials — device-scoped cap exposing the camera's network
@@ -23687,50 +23716,50 @@ DeviceType.Thermostat, DeviceType.Climate, method(object({
23687
23716
  mode: HvacModeSchema
23688
23717
  }), _void(), {
23689
23718
  kind: "mutation",
23690
- auth: "admin"
23719
+ auth: "protected"
23691
23720
  }), method(object({
23692
23721
  deviceId: number().int().nonnegative(),
23693
23722
  fanMode: string().min(1)
23694
23723
  }), _void(), {
23695
23724
  kind: "mutation",
23696
- auth: "admin"
23725
+ auth: "protected"
23697
23726
  }), method(object({
23698
23727
  deviceId: number().int().nonnegative(),
23699
23728
  preset: string().min(1)
23700
23729
  }), _void(), {
23701
23730
  kind: "mutation",
23702
- auth: "admin"
23731
+ auth: "protected"
23703
23732
  }), method(object({
23704
23733
  deviceId: number().int().nonnegative(),
23705
23734
  target: number()
23706
23735
  }), _void(), {
23707
23736
  kind: "mutation",
23708
- auth: "admin"
23737
+ auth: "protected"
23709
23738
  }), method(object({
23710
23739
  deviceId: number().int().nonnegative(),
23711
23740
  targetLow: number(),
23712
23741
  targetHigh: number()
23713
23742
  }), _void(), {
23714
23743
  kind: "mutation",
23715
- auth: "admin"
23744
+ auth: "protected"
23716
23745
  }), method(object({
23717
23746
  deviceId: number().int().nonnegative(),
23718
23747
  targetHumidity: number().min(0).max(100)
23719
23748
  }), _void(), {
23720
23749
  kind: "mutation",
23721
- auth: "admin"
23750
+ auth: "protected"
23722
23751
  }), method(object({
23723
23752
  deviceId: number().int().nonnegative(),
23724
23753
  on: boolean()
23725
23754
  }), _void(), {
23726
23755
  kind: "mutation",
23727
- auth: "admin"
23756
+ auth: "protected"
23728
23757
  }), method(object({
23729
23758
  deviceId: number().int().nonnegative(),
23730
23759
  on: boolean()
23731
23760
  }), _void(), {
23732
23761
  kind: "mutation",
23733
- auth: "admin"
23762
+ auth: "protected"
23734
23763
  });
23735
23764
  /**
23736
23765
  * Color-light cap. Coexists with `switch` (on/off) and `brightness`
@@ -23805,7 +23834,7 @@ DeviceType.Light, method(object({
23805
23834
  color: ColorInputSchema
23806
23835
  }), _void(), {
23807
23836
  kind: "mutation",
23808
- auth: "admin"
23837
+ auth: "protected"
23809
23838
  }), object({
23810
23839
  deviceId: number(),
23811
23840
  mode: _enum([
@@ -23954,7 +23983,7 @@ DeviceType.Control, method(object({
23954
23983
  control: ControlSetValueInputSchema
23955
23984
  }), _void(), {
23956
23985
  kind: "mutation",
23957
- auth: "admin"
23986
+ auth: "protected"
23958
23987
  });
23959
23988
  object({
23960
23989
  /** Lifecycle state of the cover. */
@@ -23975,25 +24004,25 @@ object({
23975
24004
  });
23976
24005
  DeviceType.Cover, method(object({ deviceId: number().int().nonnegative() }), _void(), {
23977
24006
  kind: "mutation",
23978
- auth: "admin"
24007
+ auth: "protected"
23979
24008
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
23980
24009
  kind: "mutation",
23981
- auth: "admin"
24010
+ auth: "protected"
23982
24011
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
23983
24012
  kind: "mutation",
23984
- auth: "admin"
24013
+ auth: "protected"
23985
24014
  }), method(object({
23986
24015
  deviceId: number().int().nonnegative(),
23987
24016
  position: number().min(0).max(100)
23988
24017
  }), _void(), {
23989
24018
  kind: "mutation",
23990
- auth: "admin"
24019
+ auth: "protected"
23991
24020
  }), method(object({
23992
24021
  deviceId: number().int().nonnegative(),
23993
24022
  tiltPosition: number().min(0).max(100)
23994
24023
  }), _void(), {
23995
24024
  kind: "mutation",
23996
- auth: "admin"
24025
+ auth: "protected"
23997
24026
  });
23998
24027
  /**
23999
24028
  * Vendor-neutral day/night (IR-cut) control — the per-camera config cap
@@ -24588,25 +24617,25 @@ DeviceType.Fan, method(object({
24588
24617
  percentage: number().min(0).max(100)
24589
24618
  }), _void(), {
24590
24619
  kind: "mutation",
24591
- auth: "admin"
24620
+ auth: "protected"
24592
24621
  }), method(object({
24593
24622
  deviceId: number().int().nonnegative(),
24594
24623
  preset: string().min(1)
24595
24624
  }), _void(), {
24596
24625
  kind: "mutation",
24597
- auth: "admin"
24626
+ auth: "protected"
24598
24627
  }), method(object({
24599
24628
  deviceId: number().int().nonnegative(),
24600
24629
  direction: FanDirectionSchema
24601
24630
  }), _void(), {
24602
24631
  kind: "mutation",
24603
- auth: "admin"
24632
+ auth: "protected"
24604
24633
  }), method(object({
24605
24634
  deviceId: number().int().nonnegative(),
24606
24635
  oscillating: boolean()
24607
24636
  }), _void(), {
24608
24637
  kind: "mutation",
24609
- auth: "admin"
24638
+ auth: "protected"
24610
24639
  });
24611
24640
  /**
24612
24641
  * Per-device feature/identity probe slice. Holds the runtime-resolved
@@ -24709,19 +24738,19 @@ DeviceType.Humidifier, method(object({
24709
24738
  on: boolean()
24710
24739
  }), _void(), {
24711
24740
  kind: "mutation",
24712
- auth: "admin"
24741
+ auth: "protected"
24713
24742
  }), method(object({
24714
24743
  deviceId: number().int().nonnegative(),
24715
24744
  humidity: number().min(0).max(100)
24716
24745
  }), _void(), {
24717
24746
  kind: "mutation",
24718
- auth: "admin"
24747
+ auth: "protected"
24719
24748
  }), method(object({
24720
24749
  deviceId: number().int().nonnegative(),
24721
24750
  mode: string().min(1)
24722
24751
  }), _void(), {
24723
24752
  kind: "mutation",
24724
- auth: "admin"
24753
+ auth: "protected"
24725
24754
  });
24726
24755
  object({
24727
24756
  /** Current relative humidity, 0..100. */
@@ -25183,13 +25212,13 @@ object({
25183
25212
  });
25184
25213
  DeviceType.LawnMower, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25185
25214
  kind: "mutation",
25186
- auth: "admin"
25215
+ auth: "protected"
25187
25216
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25188
25217
  kind: "mutation",
25189
- auth: "admin"
25218
+ auth: "protected"
25190
25219
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25191
25220
  kind: "mutation",
25192
- auth: "admin"
25221
+ auth: "protected"
25193
25222
  });
25194
25223
  /**
25195
25224
  * local-network — hub-only singleton.
@@ -25449,16 +25478,16 @@ DeviceType.Lock, method(object({
25449
25478
  code: string().min(1).optional()
25450
25479
  }), _void(), {
25451
25480
  kind: "mutation",
25452
- auth: "admin"
25481
+ auth: "protected"
25453
25482
  }), method(object({
25454
25483
  deviceId: number().int().nonnegative(),
25455
25484
  code: string().min(1).optional()
25456
25485
  }), _void(), {
25457
25486
  kind: "mutation",
25458
- auth: "admin"
25487
+ auth: "protected"
25459
25488
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25460
25489
  kind: "mutation",
25461
- auth: "admin"
25490
+ auth: "protected"
25462
25491
  });
25463
25492
  /**
25464
25493
  * Media-player cap. Models HA `media_player.*` (Sonos, Chromecast,
@@ -25532,55 +25561,55 @@ object({
25532
25561
  });
25533
25562
  DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }), _void(), {
25534
25563
  kind: "mutation",
25535
- auth: "admin"
25564
+ auth: "protected"
25536
25565
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25537
25566
  kind: "mutation",
25538
- auth: "admin"
25567
+ auth: "protected"
25539
25568
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25540
25569
  kind: "mutation",
25541
- auth: "admin"
25570
+ auth: "protected"
25542
25571
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25543
25572
  kind: "mutation",
25544
- auth: "admin"
25573
+ auth: "protected"
25545
25574
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
25546
25575
  kind: "mutation",
25547
- auth: "admin"
25576
+ auth: "protected"
25548
25577
  }), method(object({
25549
25578
  deviceId: number().int().nonnegative(),
25550
25579
  positionMs: number().int().nonnegative()
25551
25580
  }), _void(), {
25552
25581
  kind: "mutation",
25553
- auth: "admin"
25582
+ auth: "protected"
25554
25583
  }), method(object({
25555
25584
  deviceId: number().int().nonnegative(),
25556
25585
  volumeLevel: number().min(0).max(100)
25557
25586
  }), _void(), {
25558
25587
  kind: "mutation",
25559
- auth: "admin"
25588
+ auth: "protected"
25560
25589
  }), method(object({
25561
25590
  deviceId: number().int().nonnegative(),
25562
25591
  muted: boolean()
25563
25592
  }), _void(), {
25564
25593
  kind: "mutation",
25565
- auth: "admin"
25594
+ auth: "protected"
25566
25595
  }), method(object({
25567
25596
  deviceId: number().int().nonnegative(),
25568
25597
  shuffle: boolean()
25569
25598
  }), _void(), {
25570
25599
  kind: "mutation",
25571
- auth: "admin"
25600
+ auth: "protected"
25572
25601
  }), method(object({
25573
25602
  deviceId: number().int().nonnegative(),
25574
25603
  repeat: MediaPlayerRepeatSchema
25575
25604
  }), _void(), {
25576
25605
  kind: "mutation",
25577
- auth: "admin"
25606
+ auth: "protected"
25578
25607
  }), method(object({
25579
25608
  deviceId: number().int().nonnegative(),
25580
25609
  source: string().min(1)
25581
25610
  }), _void(), {
25582
25611
  kind: "mutation",
25583
- auth: "admin"
25612
+ auth: "protected"
25584
25613
  }), method(object({
25585
25614
  deviceId: number().int().nonnegative(),
25586
25615
  /** Media identifier / URL. */
@@ -25590,7 +25619,7 @@ DeviceType.MediaPlayer, method(object({ deviceId: number().int().nonnegative() }
25590
25619
  mediaType: string().min(1)
25591
25620
  }), _void(), {
25592
25621
  kind: "mutation",
25593
- auth: "admin"
25622
+ auth: "protected"
25594
25623
  });
25595
25624
  /**
25596
25625
  * mesh-network — collection cap for mesh-VPN providers.
@@ -26756,49 +26785,49 @@ DeviceType.PetFeeder, method(object({
26756
26785
  hopper2: gramsPortion.optional()
26757
26786
  }), _void(), {
26758
26787
  kind: "mutation",
26759
- auth: "admin"
26788
+ auth: "protected"
26760
26789
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26761
26790
  kind: "mutation",
26762
- auth: "admin"
26791
+ auth: "protected"
26763
26792
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26764
26793
  kind: "mutation",
26765
- auth: "admin"
26794
+ auth: "protected"
26766
26795
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26767
26796
  kind: "mutation",
26768
- auth: "admin"
26797
+ auth: "protected"
26769
26798
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
26770
26799
  kind: "mutation",
26771
- auth: "admin"
26800
+ auth: "protected"
26772
26801
  }), method(object({
26773
26802
  deviceId: number().int().nonnegative(),
26774
26803
  soundId: number().int().nonnegative()
26775
26804
  }), _void(), {
26776
26805
  kind: "mutation",
26777
- auth: "admin"
26806
+ auth: "protected"
26778
26807
  }), method(object({
26779
26808
  deviceId: number().int().nonnegative(),
26780
26809
  on: boolean()
26781
26810
  }), _void(), {
26782
26811
  kind: "mutation",
26783
- auth: "admin"
26812
+ auth: "protected"
26784
26813
  }), method(object({
26785
26814
  deviceId: number().int().nonnegative(),
26786
26815
  on: boolean()
26787
26816
  }), _void(), {
26788
26817
  kind: "mutation",
26789
- auth: "admin"
26818
+ auth: "protected"
26790
26819
  }), method(object({
26791
26820
  deviceId: number().int().nonnegative(),
26792
26821
  on: boolean()
26793
26822
  }), _void(), {
26794
26823
  kind: "mutation",
26795
- auth: "admin"
26824
+ auth: "protected"
26796
26825
  }), method(object({
26797
26826
  deviceId: number().int().nonnegative(),
26798
26827
  level: number().int().nonnegative()
26799
26828
  }), _void(), {
26800
26829
  kind: "mutation",
26801
- auth: "admin"
26830
+ auth: "protected"
26802
26831
  });
26803
26832
  var VehicleSchema = object({
26804
26833
  id: string(),
@@ -28585,7 +28614,7 @@ DeviceType.Switch, DeviceType.Siren, DeviceType.Light, method(object({
28585
28614
  on: boolean()
28586
28615
  }), _void(), {
28587
28616
  kind: "mutation",
28588
- auth: "admin"
28617
+ auth: "protected"
28589
28618
  }), object({
28590
28619
  deviceId: number(),
28591
28620
  on: boolean(),
@@ -29442,25 +29471,25 @@ object({
29442
29471
  });
29443
29472
  DeviceType.Vacuum, method(object({ deviceId: number().int().nonnegative() }), _void(), {
29444
29473
  kind: "mutation",
29445
- auth: "admin"
29474
+ auth: "protected"
29446
29475
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29447
29476
  kind: "mutation",
29448
- auth: "admin"
29477
+ auth: "protected"
29449
29478
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29450
29479
  kind: "mutation",
29451
- auth: "admin"
29480
+ auth: "protected"
29452
29481
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29453
29482
  kind: "mutation",
29454
- auth: "admin"
29483
+ auth: "protected"
29455
29484
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29456
29485
  kind: "mutation",
29457
- auth: "admin"
29486
+ auth: "protected"
29458
29487
  }), method(object({
29459
29488
  deviceId: number().int().nonnegative(),
29460
29489
  speed: string().min(1)
29461
29490
  }), _void(), {
29462
29491
  kind: "mutation",
29463
- auth: "admin"
29492
+ auth: "protected"
29464
29493
  });
29465
29494
  object({
29466
29495
  /** Lifecycle state of the valve. */
@@ -29479,19 +29508,19 @@ object({
29479
29508
  });
29480
29509
  DeviceType.Valve, method(object({ deviceId: number().int().nonnegative() }), _void(), {
29481
29510
  kind: "mutation",
29482
- auth: "admin"
29511
+ auth: "protected"
29483
29512
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29484
29513
  kind: "mutation",
29485
- auth: "admin"
29514
+ auth: "protected"
29486
29515
  }), method(object({ deviceId: number().int().nonnegative() }), _void(), {
29487
29516
  kind: "mutation",
29488
- auth: "admin"
29517
+ auth: "protected"
29489
29518
  }), method(object({
29490
29519
  deviceId: number().int().nonnegative(),
29491
29520
  position: number().min(0).max(100)
29492
29521
  }), _void(), {
29493
29522
  kind: "mutation",
29494
- auth: "admin"
29523
+ auth: "protected"
29495
29524
  });
29496
29525
  object({
29497
29526
  detected: boolean(),
@@ -29525,19 +29554,19 @@ DeviceType.WaterHeater, method(object({
29525
29554
  temp: number().finite()
29526
29555
  }), _void(), {
29527
29556
  kind: "mutation",
29528
- auth: "admin"
29557
+ auth: "protected"
29529
29558
  }), method(object({
29530
29559
  deviceId: number().int().nonnegative(),
29531
29560
  mode: string().min(1)
29532
29561
  }), _void(), {
29533
29562
  kind: "mutation",
29534
- auth: "admin"
29563
+ auth: "protected"
29535
29564
  }), method(object({
29536
29565
  deviceId: number().int().nonnegative(),
29537
29566
  on: boolean()
29538
29567
  }), _void(), {
29539
29568
  kind: "mutation",
29540
- auth: "admin"
29569
+ auth: "protected"
29541
29570
  });
29542
29571
  object({
29543
29572
  /** Verbatim HA condition state (`sunny`, `cloudy`, `rainy`, …). Null
@@ -33165,6 +33194,12 @@ Object.freeze({
33165
33194
  addonId: null,
33166
33195
  access: "view"
33167
33196
  },
33197
+ "pipelineAnalytics.listArchivedDebugNotes": {
33198
+ capName: "pipeline-analytics",
33199
+ capScope: "device",
33200
+ addonId: null,
33201
+ access: "view"
33202
+ },
33168
33203
  "pipelineAnalytics.listEventKinds": {
33169
33204
  capName: "pipeline-analytics",
33170
33205
  capScope: "device",
@@ -36952,6 +36987,11 @@ Object.freeze({
36952
36987
  form: "array",
36953
36988
  optional: true
36954
36989
  }],
36990
+ "pipelineAnalytics.listArchivedDebugNotes": [{
36991
+ name: "deviceId",
36992
+ form: "single",
36993
+ optional: true
36994
+ }],
36955
36995
  "pipelineAnalytics.listEventKinds": [{
36956
36996
  name: "deviceId",
36957
36997
  form: "single",
package/dist/smb.addon.js CHANGED
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_shared = require("./shared-GkmTwSS1.js");
5
+ const require_shared = require("./shared-4AFxH3Ch.js");
6
6
  let node_crypto = require("node:crypto");
7
7
  let node_path = require("node:path");
8
8
  node_path = require_shared.__toESM(node_path);
@@ -1,4 +1,4 @@
1
- import { c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, s as storageProviderCapability } from "./shared-Dd6Ix8wk.mjs";
1
+ import { c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, s as storageProviderCapability } from "./shared-C1Q2-FHB.mjs";
2
2
  import { randomUUID } from "node:crypto";
3
3
  import * as path from "node:path";
4
4
  import * as fsp from "node:fs/promises";
@@ -2,7 +2,7 @@ Object.defineProperties(exports, {
2
2
  __esModule: { value: true },
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
- const require_shared = require("./shared-GkmTwSS1.js");
5
+ const require_shared = require("./shared-4AFxH3Ch.js");
6
6
  let node_stream = require("node:stream");
7
7
  let webdav = require("webdav");
8
8
  //#region src/providers/webdav/webdav-config-schema.ts
@@ -1,4 +1,4 @@
1
- import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-Dd6Ix8wk.mjs";
1
+ import { a as safeJoinRemotePath, c as BaseAddon, i as rearmIdleAbort, o as scheduleIdleAbort, r as getRequiredBasePath, s as storageProviderCapability, t as createSessionId } from "./shared-C1Q2-FHB.mjs";
2
2
  import { PassThrough } from "node:stream";
3
3
  import { AuthType, createClient } from "webdav";
4
4
  //#region src/providers/webdav/webdav-config-schema.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-remote-storage",
3
- "version": "1.2.84",
3
+ "version": "1.2.86",
4
4
  "description": "Remote storage providers (SFTP, S3, WebDAV, SMB) — unifies remote backends behind the storage-provider cap",
5
5
  "keywords": [
6
6
  "camstack",