@hot-updater/supabase 0.18.5 → 0.19.0
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/iac/index.cjs +3 -1
- package/dist/iac/index.js +3 -1
- package/package.json +4 -4
package/dist/iac/index.cjs
CHANGED
|
@@ -7710,7 +7710,9 @@ function App() {
|
|
|
7710
7710
|
}
|
|
7711
7711
|
|
|
7712
7712
|
export default HotUpdater.wrap({
|
|
7713
|
-
source: getUpdateSource("%%source%%"
|
|
7713
|
+
source: getUpdateSource("%%source%%", {
|
|
7714
|
+
updateStrategy: "fingerprint", // or "appVersion"
|
|
7715
|
+
}),
|
|
7714
7716
|
})(App);`;
|
|
7715
7717
|
const SUPABASE_CONFIG_TEMPLATE = `
|
|
7716
7718
|
project_id = "%%projectId%%"
|
package/dist/iac/index.js
CHANGED
|
@@ -7713,7 +7713,9 @@ function App() {
|
|
|
7713
7713
|
}
|
|
7714
7714
|
|
|
7715
7715
|
export default HotUpdater.wrap({
|
|
7716
|
-
source: getUpdateSource("%%source%%"
|
|
7716
|
+
source: getUpdateSource("%%source%%", {
|
|
7717
|
+
updateStrategy: "fingerprint", // or "appVersion"
|
|
7718
|
+
}),
|
|
7717
7719
|
})(App);`;
|
|
7718
7720
|
const SUPABASE_CONFIG_TEMPLATE = `
|
|
7719
7721
|
project_id = "%%projectId%%"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/supabase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.19.0",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@supabase/supabase-js": "^2.47.10",
|
|
43
|
-
"@hot-updater/core": "0.
|
|
44
|
-
"@hot-updater/plugin-core": "0.
|
|
43
|
+
"@hot-updater/core": "0.19.0",
|
|
44
|
+
"@hot-updater/plugin-core": "0.19.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@clack/prompts": "0.10.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"execa": "^9.5.2",
|
|
51
51
|
"mime": "^4.0.4",
|
|
52
52
|
"picocolors": "^1.0.0",
|
|
53
|
-
"@hot-updater/postgres": "0.
|
|
53
|
+
"@hot-updater/postgres": "0.19.0"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|