@hot-updater/supabase 0.28.0 → 0.29.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/edge.cjs +4 -0
- package/dist/edge.d.cts +2 -0
- package/dist/edge.d.mts +2 -0
- package/dist/edge.mjs +2 -0
- package/dist/iac/index.cjs +457 -499
- package/dist/iac/index.d.cts +4 -1
- package/dist/iac/{index.d.ts → index.d.mts} +4 -1
- package/dist/iac/{index.js → index.mjs} +420 -451
- package/dist/index.cjs +15 -109
- package/dist/index.d.cts +5 -4
- package/dist/index.d.mts +23 -0
- package/dist/index.mjs +50 -0
- package/dist/supabaseEdgeFunctionStorage-B-gM2rZx.cjs +192 -0
- package/dist/supabaseEdgeFunctionStorage-ByPGforO.d.mts +19 -0
- package/dist/supabaseEdgeFunctionStorage-CSPi2UB8.d.cts +19 -0
- package/dist/supabaseEdgeFunctionStorage-CVEY5QJO.mjs +174 -0
- package/package.json +22 -10
- package/supabase/edge-functions/index.ts +29 -317
- package/supabase/edge-functions/runtime.docker.integration.spec.ts +779 -0
- package/supabase/migrations/20260401000000_hot-updater_0.29.0.sql +503 -0
- package/dist/index.d.ts +0 -22
- package/dist/index.js +0 -145
package/dist/iac/index.d.cts
CHANGED
|
@@ -16,6 +16,9 @@ interface SupabaseApi {
|
|
|
16
16
|
}
|
|
17
17
|
//#endregion
|
|
18
18
|
//#region iac/index.d.ts
|
|
19
|
+
declare const resolveEdgeFunctionDenoConfig: (targetDir: string) => Promise<{
|
|
20
|
+
imports: Record<string, string>;
|
|
21
|
+
}>;
|
|
19
22
|
declare const selectProject: () => Promise<{
|
|
20
23
|
id: string;
|
|
21
24
|
name: string;
|
|
@@ -31,4 +34,4 @@ declare const runInit: ({
|
|
|
31
34
|
build: BuildType;
|
|
32
35
|
}) => Promise<void>;
|
|
33
36
|
//#endregion
|
|
34
|
-
export { runInit, selectBucket, selectProject };
|
|
37
|
+
export { resolveEdgeFunctionDenoConfig, runInit, selectBucket, selectProject };
|
|
@@ -16,6 +16,9 @@ interface SupabaseApi {
|
|
|
16
16
|
}
|
|
17
17
|
//#endregion
|
|
18
18
|
//#region iac/index.d.ts
|
|
19
|
+
declare const resolveEdgeFunctionDenoConfig: (targetDir: string) => Promise<{
|
|
20
|
+
imports: Record<string, string>;
|
|
21
|
+
}>;
|
|
19
22
|
declare const selectProject: () => Promise<{
|
|
20
23
|
id: string;
|
|
21
24
|
name: string;
|
|
@@ -31,4 +34,4 @@ declare const runInit: ({
|
|
|
31
34
|
build: BuildType;
|
|
32
35
|
}) => Promise<void>;
|
|
33
36
|
//#endregion
|
|
34
|
-
export { runInit, selectBucket, selectProject };
|
|
37
|
+
export { resolveEdgeFunctionDenoConfig, runInit, selectBucket, selectProject };
|