@absolutejs/absolute 0.20.0-beta.7 → 0.20.0-beta.9
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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +209 -75
- package/dist/mobile/index.js +10 -2
- package/dist/mobile/index.js.map +4 -4
- package/dist/mobile/shellAuth.js +2 -0
- package/dist/mobile/shellBootstrap.js +1 -1
- package/dist/mobile/shellSync.js +25 -2
- package/dist/src/mobile/capacitorBundle.d.ts +4 -0
- package/dist/src/mobile/nativeBackgroundSync.d.ts +4 -0
- package/dist/src/mobile/shellAuth.d.ts +2 -0
- package/dist/src/mobile/shellBootstrap.d.ts +3 -1
- package/dist/src/mobile/shellSync.d.ts +8 -3
- package/dist/src/mobile/transport.d.ts +4 -0
- package/package.json +13 -13
package/dist/mobile/index.js
CHANGED
|
@@ -4319,7 +4319,15 @@ var materializeAbsoluteCapacitorWebBundle = async (options) => {
|
|
|
4319
4319
|
productionOrigin: options.config.productionOrigin,
|
|
4320
4320
|
routes: options.artifact.routes,
|
|
4321
4321
|
runtime: options.artifact.runtime,
|
|
4322
|
-
...options.sync ? {
|
|
4322
|
+
...options.sync ? {
|
|
4323
|
+
sync: {
|
|
4324
|
+
background: {
|
|
4325
|
+
endpoint: new URL("/__absolute/sync/background", options.config.productionOrigin).href,
|
|
4326
|
+
intervalMinutes: 15
|
|
4327
|
+
},
|
|
4328
|
+
socketTickets: true
|
|
4329
|
+
}
|
|
4330
|
+
} : {}
|
|
4323
4331
|
};
|
|
4324
4332
|
await Promise.all([
|
|
4325
4333
|
writeFile10(join9(staging, MANIFEST_FILE), `${JSON.stringify(manifest, null, "\t")}
|
|
@@ -5702,5 +5710,5 @@ export {
|
|
|
5702
5710
|
ABSOLUTE_ANDROID_RELEASE_FORMAT
|
|
5703
5711
|
};
|
|
5704
5712
|
|
|
5705
|
-
//# debugId=
|
|
5713
|
+
//# debugId=712D22B2B8D89AC264756E2164756E21
|
|
5706
5714
|
//# sourceMappingURL=index.js.map
|