@camstack/addon-osd-manager 0.1.74 → 0.1.75

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/_stub.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./virtualExposes-BgZ5Cn7S.mjs";
2
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-oBAgNGM4.mjs";
2
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BsrrBUK-.mjs";
3
3
  import { _ as e, c as t, d as n, h as r, i, l as a, m as o, n as s, p as c, r as l, t as u, u as d, y as f } from "./_virtual_mf___mfe_internal__addon_osd_manager_page__loadShare__react__loadShare__.js-Bs1t18EM.mjs";
4
4
  import { i as p, o as m, r as h, s as g } from "./responsive-DbTv1Tw_.mjs";
5
5
  import { d as _, l as v, u as y } from "./use-device-snapshot-C6nbTUeb.mjs";
@@ -1,9 +1,9 @@
1
- import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-oBAgNGM4.mjs";
1
+ import "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BsrrBUK-.mjs";
2
2
  //#region \0virtual:mf-localSharedImportMap:__mfe_internal__addon_osd_manager_page
3
3
  var e = {
4
4
  "@camstack/sdk": {
5
5
  name: "@camstack/sdk",
6
- version: "1.2.80",
6
+ version: "1.2.81",
7
7
  scope: ["default"],
8
8
  loaded: !1,
9
9
  from: "addon_osd_manager_page",
@@ -18,7 +18,7 @@ var e = {
18
18
  },
19
19
  "@camstack/types": {
20
20
  name: "@camstack/types",
21
- version: "1.2.160",
21
+ version: "1.2.161",
22
22
  scope: ["default"],
23
23
  loaded: !1,
24
24
  from: "addon_osd_manager_page",
@@ -33,7 +33,7 @@ var e = {
33
33
  },
34
34
  "@camstack/ui-library": {
35
35
  name: "@camstack/ui-library",
36
- version: "1.2.128",
36
+ version: "1.2.129",
37
37
  scope: ["default"],
38
38
  loaded: !1,
39
39
  from: "addon_osd_manager_page",
@@ -36,7 +36,7 @@ async function r() {
36
36
  }
37
37
  },
38
38
  "@camstack/types": {
39
- version: "1.2.160",
39
+ version: "1.2.161",
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.80",
48
+ version: "1.2.81",
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.128",
84
+ version: "1.2.129",
85
85
  scope: "default",
86
86
  shareConfig: {
87
87
  singleton: !0,
package/dist/index.js CHANGED
@@ -10865,12 +10865,30 @@ var BackupDestinationInfoSchema = object({
10865
10865
  lastSuccessAt: number().optional(),
10866
10866
  /** Newest-archive size from `manifests.json`, or undefined. */
10867
10867
  lastSuccessSizeBytes: number().optional(),
10868
- /** Per-destination cron expression. Empty = manual-only (no schedule). */
10868
+ /**
10869
+ * Cron cadence(s) of the ENABLED schedules that fan out to this
10870
+ * destination, comma-joined. Absent when no enabled schedule targets it
10871
+ * — a destination nothing is scheduled to write to must not advertise a
10872
+ * cadence (D384). This is never the `backup_destination_policies.cron`
10873
+ * column: that per-location cron has scheduled nothing since 2026-07-28
10874
+ * and reading it made a destination with a DISABLED schedule claim a
10875
+ * nightly run.
10876
+ */
10869
10877
  cron: string().optional(),
10870
- /** ms-epoch of next computed firing for this destination's cron, if any. */
10878
+ /** ms-epoch of the next firing across those schedules (earliest), if any. */
10871
10879
  nextRunAt: number().optional(),
10872
- /** ms-epoch of last successful scheduled run (mirrors policy.lastRunAt). */
10873
- lastRunAt: number().optional()
10880
+ /**
10881
+ * ms-epoch of the last time a run ATTEMPTED to write here — success or
10882
+ * failure. Never a success stamp: pair it with `lastSuccessAt` (the
10883
+ * newest archive that actually landed) and `lastError`.
10884
+ */
10885
+ lastAttemptAt: number().optional(),
10886
+ /**
10887
+ * Why the last attempt failed, verbatim. Absent when the last attempt
10888
+ * landed the archive. A destination that has never been written to has
10889
+ * neither this nor `lastAttemptAt`.
10890
+ */
10891
+ lastError: string().optional()
10874
10892
  });
10875
10893
  /**
10876
10894
  * Per-archive entry returned by `backup.listArchives({ destinationId })`.
@@ -11033,8 +11051,16 @@ var BackupScheduleSchema = object({
11033
11051
  retentionCount: number().int().min(1).max(1e3),
11034
11052
  /** Optional subset of source locations to include; omitted = all. */
11035
11053
  dataSources: array(string()).readonly().optional(),
11036
- /** ms-epoch of last successful run. */
11037
- lastRunAt: number().optional(),
11054
+ /**
11055
+ * ms-epoch of the last tick that FIRED this schedule. Stamped before the
11056
+ * archive runs (it is the dedupe anchor), so it says "attempted", never
11057
+ * "succeeded" — a run refused by every destination stamps it too.
11058
+ */
11059
+ lastAttemptAt: number().optional(),
11060
+ /** ms-epoch of the last run of this schedule that landed at ≥1 destination. */
11061
+ lastSuccessAt: number().optional(),
11062
+ /** Why the last fired run failed, verbatim. Absent when it succeeded. */
11063
+ lastError: string().optional(),
11038
11064
  /** ms-epoch of next computed firing (read-only, filled on list). */
11039
11065
  nextRunAt: number().optional()
11040
11066
  });
@@ -11163,14 +11189,7 @@ var backupCapability = {
11163
11189
  locationId: string(),
11164
11190
  enabled: boolean(),
11165
11191
  retentionCount: number().int().min(1).max(1e3),
11166
- label: string().optional(),
11167
- /**
11168
- * Per-destination cron expression. Empty string clears the
11169
- * schedule (manual-only). Validated server-side via croner;
11170
- * malformed expressions reject the upsert with an actionable
11171
- * message.
11172
- */
11173
- cron: string().optional()
11192
+ label: string().optional()
11174
11193
  }), _void(), {
11175
11194
  kind: "mutation",
11176
11195
  auth: "admin"
package/dist/index.mjs CHANGED
@@ -10861,12 +10861,30 @@ var BackupDestinationInfoSchema = object({
10861
10861
  lastSuccessAt: number().optional(),
10862
10862
  /** Newest-archive size from `manifests.json`, or undefined. */
10863
10863
  lastSuccessSizeBytes: number().optional(),
10864
- /** Per-destination cron expression. Empty = manual-only (no schedule). */
10864
+ /**
10865
+ * Cron cadence(s) of the ENABLED schedules that fan out to this
10866
+ * destination, comma-joined. Absent when no enabled schedule targets it
10867
+ * — a destination nothing is scheduled to write to must not advertise a
10868
+ * cadence (D384). This is never the `backup_destination_policies.cron`
10869
+ * column: that per-location cron has scheduled nothing since 2026-07-28
10870
+ * and reading it made a destination with a DISABLED schedule claim a
10871
+ * nightly run.
10872
+ */
10865
10873
  cron: string().optional(),
10866
- /** ms-epoch of next computed firing for this destination's cron, if any. */
10874
+ /** ms-epoch of the next firing across those schedules (earliest), if any. */
10867
10875
  nextRunAt: number().optional(),
10868
- /** ms-epoch of last successful scheduled run (mirrors policy.lastRunAt). */
10869
- lastRunAt: number().optional()
10876
+ /**
10877
+ * ms-epoch of the last time a run ATTEMPTED to write here — success or
10878
+ * failure. Never a success stamp: pair it with `lastSuccessAt` (the
10879
+ * newest archive that actually landed) and `lastError`.
10880
+ */
10881
+ lastAttemptAt: number().optional(),
10882
+ /**
10883
+ * Why the last attempt failed, verbatim. Absent when the last attempt
10884
+ * landed the archive. A destination that has never been written to has
10885
+ * neither this nor `lastAttemptAt`.
10886
+ */
10887
+ lastError: string().optional()
10870
10888
  });
10871
10889
  /**
10872
10890
  * Per-archive entry returned by `backup.listArchives({ destinationId })`.
@@ -11029,8 +11047,16 @@ var BackupScheduleSchema = object({
11029
11047
  retentionCount: number().int().min(1).max(1e3),
11030
11048
  /** Optional subset of source locations to include; omitted = all. */
11031
11049
  dataSources: array(string()).readonly().optional(),
11032
- /** ms-epoch of last successful run. */
11033
- lastRunAt: number().optional(),
11050
+ /**
11051
+ * ms-epoch of the last tick that FIRED this schedule. Stamped before the
11052
+ * archive runs (it is the dedupe anchor), so it says "attempted", never
11053
+ * "succeeded" — a run refused by every destination stamps it too.
11054
+ */
11055
+ lastAttemptAt: number().optional(),
11056
+ /** ms-epoch of the last run of this schedule that landed at ≥1 destination. */
11057
+ lastSuccessAt: number().optional(),
11058
+ /** Why the last fired run failed, verbatim. Absent when it succeeded. */
11059
+ lastError: string().optional(),
11034
11060
  /** ms-epoch of next computed firing (read-only, filled on list). */
11035
11061
  nextRunAt: number().optional()
11036
11062
  });
@@ -11159,14 +11185,7 @@ var backupCapability = {
11159
11185
  locationId: string(),
11160
11186
  enabled: boolean(),
11161
11187
  retentionCount: number().int().min(1).max(1e3),
11162
- label: string().optional(),
11163
- /**
11164
- * Per-destination cron expression. Empty string clears the
11165
- * schedule (manual-only). Validated server-side via croner;
11166
- * malformed expressions reject the upsert with an actionable
11167
- * message.
11168
- */
11169
- cron: string().optional()
11188
+ label: string().optional()
11170
11189
  }), _void(), {
11171
11190
  kind: "mutation",
11172
11191
  auth: "admin"
@@ -1,2 +1,2 @@
1
- import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-oBAgNGM4.mjs";
1
+ import { n as e, t } from "./virtual_mf-REMOTE_ENTRY_ID___mfe_internal__addon_osd_manager_page__remoteEntry_js-BsrrBUK-.mjs";
2
2
  export { t as get, e as init };
@@ -2753,7 +2753,7 @@ async function rr(e) {
2753
2753
  }
2754
2754
  }
2755
2755
  async function ir() {
2756
- return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-CmPl5hdU.mjs")).catch((e) => {
2756
+ return tr ||= rr(() => import("./_virtual_mf-localSharedImportMap___mfe_internal__addon_osd_manager_page-Dzr3iybL.mjs")).catch((e) => {
2757
2757
  throw tr = void 0, e;
2758
2758
  }), tr;
2759
2759
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camstack/addon-osd-manager",
3
- "version": "0.1.74",
3
+ "version": "0.1.75",
4
4
  "description": "Binds camera on-screen-display slots to live state and recognitions",
5
5
  "keywords": [
6
6
  "camstack",