@hot-updater/supabase 0.20.5 → 0.20.7
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 -2
- package/dist/iac/index.js +3 -2
- package/dist/index.cjs +8 -5
- package/dist/index.js +8 -5
- package/package.json +6 -6
package/dist/iac/index.cjs
CHANGED
|
@@ -1832,6 +1832,7 @@ const fallbackSymbols = {
|
|
|
1832
1832
|
};
|
|
1833
1833
|
const shouldUseMain = isUnicodeSupported();
|
|
1834
1834
|
const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
1835
|
+
var figures_default = figures;
|
|
1835
1836
|
const replacements = Object.entries(specialMainSymbols);
|
|
1836
1837
|
|
|
1837
1838
|
//#endregion
|
|
@@ -1913,8 +1914,8 @@ const defaultVerboseFunction = ({ type, message, timestamp, piped, commandId, re
|
|
|
1913
1914
|
const serializeTimestamp = (timestamp) => `${padField(timestamp.getHours(), 2)}:${padField(timestamp.getMinutes(), 2)}:${padField(timestamp.getSeconds(), 2)}.${padField(timestamp.getMilliseconds(), 3)}`;
|
|
1914
1915
|
const padField = (field, padding) => String(field).padStart(padding, "0");
|
|
1915
1916
|
const getFinalIcon = ({ failed, reject }) => {
|
|
1916
|
-
if (!failed) return
|
|
1917
|
-
return reject ?
|
|
1917
|
+
if (!failed) return figures_default.tick;
|
|
1918
|
+
return reject ? figures_default.cross : figures_default.warning;
|
|
1918
1919
|
};
|
|
1919
1920
|
const ICONS = {
|
|
1920
1921
|
command: ({ piped }) => piped ? "|" : "$",
|
package/dist/iac/index.js
CHANGED
|
@@ -1835,6 +1835,7 @@ const fallbackSymbols = {
|
|
|
1835
1835
|
};
|
|
1836
1836
|
const shouldUseMain = isUnicodeSupported();
|
|
1837
1837
|
const figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
1838
|
+
var figures_default = figures;
|
|
1838
1839
|
const replacements = Object.entries(specialMainSymbols);
|
|
1839
1840
|
|
|
1840
1841
|
//#endregion
|
|
@@ -1916,8 +1917,8 @@ const defaultVerboseFunction = ({ type, message, timestamp, piped, commandId, re
|
|
|
1916
1917
|
const serializeTimestamp = (timestamp) => `${padField(timestamp.getHours(), 2)}:${padField(timestamp.getMinutes(), 2)}:${padField(timestamp.getSeconds(), 2)}.${padField(timestamp.getMilliseconds(), 3)}`;
|
|
1917
1918
|
const padField = (field, padding) => String(field).padStart(padding, "0");
|
|
1918
1919
|
const getFinalIcon = ({ failed, reject }) => {
|
|
1919
|
-
if (!failed) return
|
|
1920
|
-
return reject ?
|
|
1920
|
+
if (!failed) return figures_default.tick;
|
|
1921
|
+
return reject ? figures_default.cross : figures_default.warning;
|
|
1921
1922
|
};
|
|
1922
1923
|
const ICONS = {
|
|
1923
1924
|
command: ({ piped }) => piped ? "|" : "$",
|
package/dist/index.cjs
CHANGED
|
@@ -119,7 +119,7 @@ const supabaseDatabase = (config, hooks) => (0, __hot_updater_plugin_core.create
|
|
|
119
119
|
|
|
120
120
|
//#endregion
|
|
121
121
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/types/other.js
|
|
122
|
-
const types = {
|
|
122
|
+
const types$1 = {
|
|
123
123
|
"application/prs.cww": ["cww"],
|
|
124
124
|
"application/prs.xsf+xml": ["xsf"],
|
|
125
125
|
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
|
@@ -930,11 +930,12 @@ const types = {
|
|
|
930
930
|
"video/x-smv": ["smv"],
|
|
931
931
|
"x-conference/x-cooltalk": ["ice"]
|
|
932
932
|
};
|
|
933
|
-
Object.freeze(types);
|
|
933
|
+
Object.freeze(types$1);
|
|
934
|
+
var other_default = types$1;
|
|
934
935
|
|
|
935
936
|
//#endregion
|
|
936
937
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/types/standard.js
|
|
937
|
-
const types
|
|
938
|
+
const types = {
|
|
938
939
|
"application/andrew-inset": ["ez"],
|
|
939
940
|
"application/appinstaller": ["appinstaller"],
|
|
940
941
|
"application/applixware": ["aw"],
|
|
@@ -1376,7 +1377,8 @@ const types$1 = {
|
|
|
1376
1377
|
"video/quicktime": ["qt", "mov"],
|
|
1377
1378
|
"video/webm": ["webm"]
|
|
1378
1379
|
};
|
|
1379
|
-
Object.freeze(types
|
|
1380
|
+
Object.freeze(types);
|
|
1381
|
+
var standard_default = types;
|
|
1380
1382
|
|
|
1381
1383
|
//#endregion
|
|
1382
1384
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/src/Mime.js
|
|
@@ -1448,10 +1450,11 @@ var Mime = class {
|
|
|
1448
1450
|
}
|
|
1449
1451
|
};
|
|
1450
1452
|
_Mime_extensionToType = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtension = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtensions = /* @__PURE__ */ new WeakMap();
|
|
1453
|
+
var Mime_default = Mime;
|
|
1451
1454
|
|
|
1452
1455
|
//#endregion
|
|
1453
1456
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/src/index.js
|
|
1454
|
-
var src_default = new
|
|
1457
|
+
var src_default = new Mime_default(standard_default, other_default)._freeze();
|
|
1455
1458
|
|
|
1456
1459
|
//#endregion
|
|
1457
1460
|
//#region src/supabaseStorage.ts
|
package/dist/index.js
CHANGED
|
@@ -96,7 +96,7 @@ const supabaseDatabase = (config, hooks) => createDatabasePlugin("supabaseDataba
|
|
|
96
96
|
|
|
97
97
|
//#endregion
|
|
98
98
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/types/other.js
|
|
99
|
-
const types = {
|
|
99
|
+
const types$1 = {
|
|
100
100
|
"application/prs.cww": ["cww"],
|
|
101
101
|
"application/prs.xsf+xml": ["xsf"],
|
|
102
102
|
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
|
@@ -907,11 +907,12 @@ const types = {
|
|
|
907
907
|
"video/x-smv": ["smv"],
|
|
908
908
|
"x-conference/x-cooltalk": ["ice"]
|
|
909
909
|
};
|
|
910
|
-
Object.freeze(types);
|
|
910
|
+
Object.freeze(types$1);
|
|
911
|
+
var other_default = types$1;
|
|
911
912
|
|
|
912
913
|
//#endregion
|
|
913
914
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/types/standard.js
|
|
914
|
-
const types
|
|
915
|
+
const types = {
|
|
915
916
|
"application/andrew-inset": ["ez"],
|
|
916
917
|
"application/appinstaller": ["appinstaller"],
|
|
917
918
|
"application/applixware": ["aw"],
|
|
@@ -1353,7 +1354,8 @@ const types$1 = {
|
|
|
1353
1354
|
"video/quicktime": ["qt", "mov"],
|
|
1354
1355
|
"video/webm": ["webm"]
|
|
1355
1356
|
};
|
|
1356
|
-
Object.freeze(types
|
|
1357
|
+
Object.freeze(types);
|
|
1358
|
+
var standard_default = types;
|
|
1357
1359
|
|
|
1358
1360
|
//#endregion
|
|
1359
1361
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/src/Mime.js
|
|
@@ -1425,10 +1427,11 @@ var Mime = class {
|
|
|
1425
1427
|
}
|
|
1426
1428
|
};
|
|
1427
1429
|
_Mime_extensionToType = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtension = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtensions = /* @__PURE__ */ new WeakMap();
|
|
1430
|
+
var Mime_default = Mime;
|
|
1428
1431
|
|
|
1429
1432
|
//#endregion
|
|
1430
1433
|
//#region ../../node_modules/.pnpm/mime@4.0.4/node_modules/mime/dist/src/index.js
|
|
1431
|
-
var src_default = new
|
|
1434
|
+
var src_default = new Mime_default(standard_default, other_default)._freeze();
|
|
1432
1435
|
|
|
1433
1436
|
//#endregion
|
|
1434
1437
|
//#region src/supabaseStorage.ts
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hot-updater/supabase",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.20.
|
|
4
|
+
"version": "0.20.7",
|
|
5
5
|
"description": "React Native OTA solution for self-hosted",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -40,17 +40,17 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@supabase/supabase-js": "^2.47.10",
|
|
43
|
-
"@hot-updater/core": "0.20.
|
|
44
|
-
"@hot-updater/plugin-core": "0.20.
|
|
43
|
+
"@hot-updater/core": "0.20.7",
|
|
44
|
+
"@hot-updater/plugin-core": "0.20.7"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@clack/prompts": "0.10.0",
|
|
48
48
|
"dayjs": "^1.11.13",
|
|
49
49
|
"es-toolkit": "^1.32.0",
|
|
50
|
-
"execa": "
|
|
50
|
+
"execa": "9.5.2",
|
|
51
51
|
"mime": "^4.0.4",
|
|
52
|
-
"picocolors": "
|
|
53
|
-
"@hot-updater/postgres": "0.20.
|
|
52
|
+
"picocolors": "1.1.1",
|
|
53
|
+
"@hot-updater/postgres": "0.20.7"
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"build": "tsdown",
|