@absolutejs/absolute 0.20.0-beta.10 → 0.20.0-beta.12

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/README.md CHANGED
@@ -150,6 +150,18 @@ browser offers it, while online/focus/visibility resume remains the correctness
150
150
  path. Native Capacitor clients continue to use their Bearer and SQLite
151
151
  transport; no web cookie or token is copied into the worker.
152
152
 
153
+ `@absolutejs/pwa/client` also exposes `onPwaSyncResult()` and
154
+ `getLastPwaSyncResult()` (plus the `absolute:pwa-sync-result` DOM event) for
155
+ application-owned diagnostics. Results contain only success, duration, trigger,
156
+ and aggregate counts—never credentials, namespaces, endpoints, arguments, or
157
+ rows. Account changes are re-resolved before focus/online/visible Sync and the
158
+ old worker run is aborted and cleared before the new namespace can run.
159
+
160
+ App updates are consent-driven: `onUpdateAvailable()` latches a waiting worker
161
+ for late UI subscribers, `checkForUpdate()` performs a passive check, and
162
+ `applyUpdate()` activates and reloads only after the user accepts. AbsoluteJS
163
+ does not silently replace a running application session.
164
+
153
165
  ### Immutable production images
154
166
 
155
167
  Build production assets and the server bundle while constructing the image,
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-kHyqnr/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  var __require = import.meta.require;
3
3
 
4
- // .angular-partial-tmp-kHyqnr/src/core/streamingSlotRegistrar.ts
4
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistrar.ts
5
5
  var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
6
6
  var STREAMING_SLOT_WARNING_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotWarningController");
7
7
  var STREAMING_SLOT_COLLECTION_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotCollectionController");
@@ -48,7 +48,7 @@ var warnMissingStreamingSlotCollector = (primitiveName) => {
48
48
  getWarningController()?.maybeWarn(primitiveName);
49
49
  };
50
50
 
51
- // .angular-partial-tmp-kHyqnr/src/core/streamingSlotRegistry.ts
51
+ // .angular-partial-tmp-ZTSdzu/src/core/streamingSlotRegistry.ts
52
52
  var STREAMING_SLOT_STORAGE_KEY = Symbol.for("absolutejs.streamingSlotAsyncLocalStorage");
53
53
  var isObjectRecord2 = (value) => Boolean(value) && typeof value === "object";
54
54
  var isAsyncLocalStorage = (value) => isObjectRecord2(value) && ("getStore" in value) && typeof value.getStore === "function" && ("run" in value) && typeof value.run === "function";
package/package.json CHANGED
@@ -10,7 +10,7 @@
10
10
  "@absolutejs/auth": "0.72.0",
11
11
  "@absolutejs/devices": "0.0.3",
12
12
  "@absolutejs/devices-capacitor": "0.1.3",
13
- "@absolutejs/pwa": "0.9.1",
13
+ "@absolutejs/pwa": "0.9.2",
14
14
  "@capacitor/browser": "8.0.4",
15
15
  "@capacitor/network": "8.0.1",
16
16
  "@capacitor/preferences": "8.0.1",
@@ -275,12 +275,12 @@
275
275
  "main": "./dist/index.js",
276
276
  "name": "@absolutejs/absolute",
277
277
  "optionalDependencies": {
278
- "@absolutejs/native-darwin-arm64": "0.20.0-beta.10",
279
- "@absolutejs/native-darwin-x64": "0.20.0-beta.10",
280
- "@absolutejs/native-linux-arm64": "0.20.0-beta.10",
281
- "@absolutejs/native-linux-x64": "0.20.0-beta.10",
282
- "@absolutejs/native-windows-arm64": "0.20.0-beta.10",
283
- "@absolutejs/native-windows-x64": "0.20.0-beta.10"
278
+ "@absolutejs/native-darwin-arm64": "0.20.0-beta.12",
279
+ "@absolutejs/native-darwin-x64": "0.20.0-beta.12",
280
+ "@absolutejs/native-linux-arm64": "0.20.0-beta.12",
281
+ "@absolutejs/native-linux-x64": "0.20.0-beta.12",
282
+ "@absolutejs/native-windows-arm64": "0.20.0-beta.12",
283
+ "@absolutejs/native-windows-x64": "0.20.0-beta.12"
284
284
  },
285
285
  "overrides": {
286
286
  "@sinclair/typebox": "0.34.52",
@@ -491,7 +491,7 @@
491
491
  ]
492
492
  }
493
493
  },
494
- "version": "0.20.0-beta.10",
494
+ "version": "0.20.0-beta.12",
495
495
  "workspaces": [
496
496
  "tests/fixtures/*",
497
497
  "tests/fixtures/_packages/*"