@absolutejs/absolute 0.20.0-beta.81 → 0.20.0-beta.82

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.
@@ -11,6 +11,7 @@ export type AbsoluteMobileUpdateServerMetadata = {
11
11
  export type AbsoluteMobileUpdateServerModule = {
12
12
  metadata: AbsoluteMobileUpdateServerMetadata;
13
13
  registry: MobileUpdateRegistry;
14
+ verifyDurability?: () => Promise<void>;
14
15
  };
15
16
  export declare const loadAbsoluteMobileUpdateServerModule: (projectRoot: string, requestedModulePath?: string) => Promise<AbsoluteMobileUpdateServerModule>;
16
17
  export declare const createAbsoluteMobileUpdateServerPlugin: (config: NormalizedAbsoluteMobileConfig, projectRoot: string, options?: {
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "@absolutejs/auth": ">=0.75.0 <0.77.0",
11
11
  "@absolutejs/beacon": ">=0.7.0-beta.4 <0.8.0",
12
- "@absolutejs/deploy": "0.25.5",
12
+ "@absolutejs/deploy": "0.25.6",
13
13
  "@absolutejs/devices": "0.7.0",
14
14
  "@absolutejs/devices-capacitor": "0.8.0",
15
15
  "@absolutejs/devices-expo": "0.0.2",
@@ -51,6 +51,9 @@
51
51
  "@angular/platform-server": "21.2.6",
52
52
  "@angular/router": "21.2.6",
53
53
  "@angular/ssr": "21.2.5",
54
+ "@aws-sdk/client-s3": "3.1095.0",
55
+ "@aws-sdk/lib-storage": "3.1095.0",
56
+ "@aws-sdk/s3-request-presigner": "3.1095.0",
54
57
  "@babel/preset-typescript": "^7.28.5",
55
58
  "@capacitor-community/sqlite": "8.1.1",
56
59
  "@capacitor/android": "8.5.0",
@@ -456,6 +459,7 @@
456
459
  "test": "bun run test:unit && bun run test:integration",
457
460
  "test:hmr": "bun run scripts/shardedTests.ts tests/integration/hmr",
458
461
  "test:integration": "bun run scripts/shardedTests.ts tests/integration",
462
+ "test:mobile:update:durable": "ABSOLUTE_TEST_MOBILE_UPDATE_DURABLE=1 bun test tests/integration/mobile-update-durable-conformance.test.ts",
459
463
  "test:native:android": "bun run test:native:android:lifecycle && bun run test:native:android:hmr && bun run test:native:android:bundle",
460
464
  "test:native:android:bundle": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-embedded-bundle-conformance.test.ts",
461
465
  "test:native:android:hmr": "ABSOLUTE_TEST_NATIVE_ANDROID=1 bun test tests/native/android-hmr-conformance.test.ts",
@@ -519,7 +523,7 @@
519
523
  ]
520
524
  }
521
525
  },
522
- "version": "0.20.0-beta.81",
526
+ "version": "0.20.0-beta.82",
523
527
  "workspaces": [
524
528
  "tests/fixtures/*",
525
529
  "tests/fixtures/_packages/*"