kunkun/packages/schema/scripts/upload-schema-to-supabase.ts
Huakun 48e2e47f96
Remove supabase (#263)
* remove supabase package

* upgrade valibot

* removed supabase package

Migration not complete yet

* update submodule

* fixed some supabase errors

* Add new fields to extension models

- Added `id` field to `ExtPublish`
- Expanded `DBExtension` with multiple new properties:
  - `api_version`, `author_id`, `created_at`,
  - `downloads`, `icon`, `identifier`,
  - `long_description`, `name`,
  - `readme`, `short_description`,
  - and `tarball_size`

* Refactor: clean up unused Supabase imports

- Removed commented-out Supabase imports from various files to streamline the codebase.
- Updated `created_at` type in `ExtPublish` model from `date` to `string` for consistency.

* update icon enum to union

* fix type errors after removing supabase

* format

* more types fixed

* feat: enhance command handling and update SDK version
2025-03-26 08:50:55 -04:00

28 lines
872 B
TypeScript

import { ExtPackageJson } from "@kksh/api/models"
import { createClient } from "@supabase/supabase-js"
import { parse, string } from "valibot"
import * as v from "valibot"
import { getJsonSchema } from "../src"
const supabase = createClient(
parse(string(), process.env.SUPABASE_URL),
parse(string(), process.env.SUPABASE_SERVICE_ROLE_KEY)
)
const schemaStr = getJsonSchema(ExtPackageJson)
const { data, error } = await supabase.storage.from("extensions").upload("schema.json", schemaStr, {
cacheControl: "3600",
upsert: true // overwrite existing file with same name
})
await supabase.storage.from("extensions").upload("nightly.schema.json", schemaStr, {
cacheControl: "3600",
upsert: true // overwrite existing file with same name
})
console.log("data", data)
if (error) {
console.error("Failed to upload schema.json")
console.error(error)
process.exit(1)
}