From 674a39fdca3e33880e88444518386f03688ed34c Mon Sep 17 00:00:00 2001 From: Rizky Date: Mon, 16 Oct 2023 20:52:51 +0700 Subject: [PATCH] kebalik --- app/srv/exports.d.ts | 116 +++++++++++++++++++++---------------------- app/srv/exports.ts | 70 +++++++++++++------------- package.json | 4 +- 3 files changed, 95 insertions(+), 95 deletions(-) diff --git a/app/srv/exports.d.ts b/app/srv/exports.d.ts index 1bb28505..9ccc2273 100644 --- a/app/srv/exports.d.ts +++ b/app/srv/exports.d.ts @@ -6,18 +6,26 @@ declare module "app/srv/api/npm-size" { api(mode: "site" | "page", id: string): Promise; }; } -declare module "app/srv/api/auth/session" { +declare module "app/srv/api/auth/login" { + export const _: { + url: string; + api(username: string, password: string): Promise<{ + status: string; + session: any; + reason?: undefined; + } | { + status: string; + reason: string; + session?: undefined; + }>; + }; +} +declare module "app/srv/api/session" { export const _: { url: string; api(): Promise; }; } -declare module "app/srv/api/site-dts" { - export const _: { - url: string; - api(site_id: string): Promise; - }; -} declare module "app/srv/global" { import { site, user } from "dbgen"; import { ExecaChildProcess } from "execa"; @@ -44,6 +52,18 @@ declare module "app/srv/global" { }; }; } +declare module "app/srv/api/npm" { + export const _: { + url: string; + api(mode: "site" | "page", id: string): Promise; + }; +} +declare module "app/srv/api/local-ip" { + export const _: { + url: string; + api(): Promise; + }; +} declare module "app/web/src/utils/types/ws" { export type WS_MSG = WS_MSG_GET_COMP | WS_MSG_SET_COMP | WS_MSG_GET_PAGE | WS_MSG_SET_PAGE | WS_MSG_SV_LOCAL | WS_MSG_SVDIFF_REMOTE | WS_MSG_DIFF_LOCAL | WS_MSG_UNDO | WS_MSG_REDO | WS_MSG_NEW_COMP | WS_SITE_JS | { type: "ping"; @@ -586,30 +606,10 @@ declare module "app/srv/api/npm-bundle" { api(mode: "site" | "page", id: string): Promise; }; } -declare module "app/srv/api/npm" { +declare module "app/srv/api/site-dts" { export const _: { url: string; - api(mode: "site" | "page", id: string): Promise; - }; -} -declare module "app/srv/api/auth/login" { - export const _: { - url: string; - api(username: string, password: string): Promise<{ - status: string; - session: any; - reason?: undefined; - } | { - status: string; - reason: string; - session?: undefined; - }>; - }; -} -declare module "app/srv/api/local-ip" { - export const _: { - url: string; - api(): Promise; + api(site_id: string): Promise; }; } declare module "app/srv/exports" { @@ -620,26 +620,19 @@ declare module "app/srv/exports" { args: string[]; handler: Promise; }; + export const login: { + name: string; + url: string; + path: string; + args: string[]; + handler: Promise; + }; export const session: { name: string; url: string; path: string; args: any[]; - handler: Promise; - }; - export const site_dts: { - name: string; - url: string; - path: string; - args: string[]; - handler: Promise; - }; - export const npm_bundle: { - name: string; - url: string; - path: string; - args: string[]; - handler: Promise; + handler: Promise; }; export const npm: { name: string; @@ -648,13 +641,6 @@ declare module "app/srv/exports" { args: string[]; handler: Promise; }; - export const login: { - name: string; - url: string; - path: string; - args: string[]; - handler: Promise; - }; export const local_ip: { name: string; url: string; @@ -662,6 +648,20 @@ declare module "app/srv/exports" { args: any[]; handler: Promise; }; + export const npm_bundle: { + name: string; + url: string; + path: string; + args: string[]; + handler: Promise; + }; + export const site_dts: { + name: string; + url: string; + path: string; + args: string[]; + handler: Promise; + }; export const _upload: { name: string; url: string; @@ -676,6 +676,13 @@ declare module "app/srv/exports" { args: any[]; handler: Promise; }; + export const _file: { + name: string; + url: string; + path: string; + args: any[]; + handler: Promise; + }; export const _api_frm: { name: string; url: string; @@ -690,11 +697,4 @@ declare module "app/srv/exports" { args: string[]; handler: Promise; }; - export const _file: { - name: string; - url: string; - path: string; - args: any[]; - handler: Promise; - }; } diff --git a/app/srv/exports.ts b/app/srv/exports.ts index 93feaace..547cdadc 100644 --- a/app/srv/exports.ts +++ b/app/srv/exports.ts @@ -5,34 +5,6 @@ export const npm_size = { args: ["mode","id"], handler: import("./api/npm-size") } -export const session = { - name: "session", - url: "/_session", - path: "app/srv/api/auth/session.ts", - args: [], - handler: import("./api/auth/session") -} -export const site_dts = { - name: "site_dts", - url: "/site-dts/:site_id", - path: "app/srv/api/site-dts.ts", - args: ["site_id"], - handler: import("./api/site-dts") -} -export const npm_bundle = { - name: "npm_bundle", - url: "/npm-bundle/:mode/:id", - path: "app/srv/api/npm-bundle.ts", - args: ["mode","id"], - handler: import("./api/npm-bundle") -} -export const npm = { - name: "npm", - url: "/npm/:mode/:id/*", - path: "app/srv/api/npm.ts", - args: ["mode","id"], - handler: import("./api/npm") -} export const login = { name: "login", url: "/_login", @@ -40,6 +12,20 @@ export const login = { args: ["username","password"], handler: import("./api/auth/login") } +export const session = { + name: "session", + url: "/session", + path: "app/srv/api/session.ts", + args: [], + handler: import("./api/session") +} +export const npm = { + name: "npm", + url: "/npm/:mode/:id/*", + path: "app/srv/api/npm.ts", + args: ["mode","id"], + handler: import("./api/npm") +} export const local_ip = { name: "local_ip", url: "/local-ip", @@ -47,6 +33,20 @@ export const local_ip = { args: [], handler: import("./api/local-ip") } +export const npm_bundle = { + name: "npm_bundle", + url: "/npm-bundle/:mode/:id", + path: "app/srv/api/npm-bundle.ts", + args: ["mode","id"], + handler: import("./api/npm-bundle") +} +export const site_dts = { + name: "site_dts", + url: "/site-dts/:site_id", + path: "app/srv/api/site-dts.ts", + args: ["site_id"], + handler: import("./api/site-dts") +} export const _upload = { name: "_upload", url: "/_upload", @@ -61,6 +61,13 @@ export const _prasi = { args: [], handler: import("./api/_prasi") } +export const _file = { + name: "_file", + url: "/_file/*", + path: "app/srv/api/_file.ts", + args: [], + handler: import("./api/_file") +} export const _api_frm = { name: "_api_frm", url: "/_api_frm", @@ -74,11 +81,4 @@ export const _dbs = { path: "app/srv/api/_dbs.ts", args: ["dbName","action"], handler: import("./api/_dbs") -} -export const _file = { - name: "_file", - url: "/_file/*", - path: "app/srv/api/_file.ts", - args: [], - handler: import("./api/_file") } \ No newline at end of file diff --git a/package.json b/package.json index 4273c3c6..59982ecb 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "clean": "rm -rf app/static && rm -rf app/web/.parcel-cache", "build": "bun run --silent ./pkgs/core/build.ts", "db-pull": "bun run --silent ./pkgs/core/db-pull.ts", - "local-prod": "bun run --silent ./pkgs/core/index.ts", - "prod": "bun run build && bun run deploy && bun run ./pkgs/core/index.ts", + "prod": "bun run --silent ./pkgs/core/index.ts", + "local-prod": "bun run build && bun run deploy && bun run ./pkgs/core/index.ts", "pull": "cd app/db && bun prisma db pull && bun prisma generate", "pkgs-upgrade": "bun run --silent ./pkgs/core/upgrade.ts" },