mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 17:28:29 +02:00
Pre-publish stuff
This commit is contained in:
8
package-lock.json
generated
8
package-lock.json
generated
@@ -15700,7 +15700,7 @@
|
|||||||
"postcss-nesting": "^13.0.0",
|
"postcss-nesting": "^13.0.0",
|
||||||
"react-devtools": "^5.3.1",
|
"react-devtools": "^5.3.1",
|
||||||
"tailwindcss": "^3.4.10",
|
"tailwindcss": "^3.4.10",
|
||||||
"vite": "6.0.9",
|
"vite": "6.0.6",
|
||||||
"vite-plugin-static-copy": "^2.2.0",
|
"vite-plugin-static-copy": "^2.2.0",
|
||||||
"vite-plugin-svgr": "^4.3.0",
|
"vite-plugin-svgr": "^4.3.0",
|
||||||
"vite-plugin-top-level-await": "^1.4.4"
|
"vite-plugin-top-level-await": "^1.4.4"
|
||||||
@@ -16174,9 +16174,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"src-web/node_modules/vite": {
|
"src-web/node_modules/vite": {
|
||||||
"version": "6.0.9",
|
"version": "6.0.6",
|
||||||
"resolved": "https://registry.npmjs.org/vite/-/vite-6.0.9.tgz",
|
"resolved": "https://registry.npmjs.org/vite/-/vite-6.0.6.tgz",
|
||||||
"integrity": "sha512-MSgUxHcaXLtnBPktkbUSoQUANApKYuxZ6DrbVENlIorbhL2dZydTLaZ01tjUoE3szeFzlFk9ANOKk0xurh4MKA==",
|
"integrity": "sha512-NSjmUuckPmDU18bHz7QZ+bTYhRR0iA72cs2QAxCqDpafJ0S6qetco0LB3WW2OxlMHS0JmAv+yZ/R3uPmMyGTjQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@yaakapp/api",
|
"name": "@yaakapp/api",
|
||||||
"version": "0.4.0",
|
"version": "0.4.1",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"typings": "./lib/index.d.ts",
|
"typings": "./lib/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import type { GrpcRequest } from "./gen_models.js";
|
|||||||
import type { HttpRequest } from "./gen_models.js";
|
import type { HttpRequest } from "./gen_models.js";
|
||||||
import type { HttpResponse } from "./gen_models.js";
|
import type { HttpResponse } from "./gen_models.js";
|
||||||
import type { JsonValue } from "./serde_json/JsonValue.js";
|
import type { JsonValue } from "./serde_json/JsonValue.js";
|
||||||
|
import type { WebsocketRequest } from "./gen_models.js";
|
||||||
import type { Workspace } from "./gen_models.js";
|
import type { Workspace } from "./gen_models.js";
|
||||||
|
|
||||||
export type BootRequest = { dir: string, watch: boolean, };
|
export type BootRequest = { dir: string, watch: boolean, };
|
||||||
@@ -339,7 +340,7 @@ export type Icon = "alert_triangle" | "check" | "check_circle" | "chevron_down"
|
|||||||
|
|
||||||
export type ImportRequest = { content: string, };
|
export type ImportRequest = { content: string, };
|
||||||
|
|
||||||
export type ImportResources = { workspaces: Array<Workspace>, environments: Array<Environment>, folders: Array<Folder>, httpRequests: Array<HttpRequest>, grpcRequests: Array<GrpcRequest>, };
|
export type ImportResources = { workspaces: Array<Workspace>, environments: Array<Environment>, folders: Array<Folder>, httpRequests: Array<HttpRequest>, grpcRequests: Array<GrpcRequest>, websocketRequests: Array<WebsocketRequest>, };
|
||||||
|
|
||||||
export type ImportResponse = { resources: ImportResources, };
|
export type ImportResponse = { resources: ImportResources, };
|
||||||
|
|
||||||
|
|||||||
@@ -22,4 +22,6 @@ export type HttpResponseState = "initialized" | "connected" | "closed";
|
|||||||
|
|
||||||
export type HttpUrlParameter = { enabled?: boolean, name: string, value: string, id?: string, };
|
export type HttpUrlParameter = { enabled?: boolean, name: string, value: string, id?: string, };
|
||||||
|
|
||||||
|
export type WebsocketRequest = { model: "websocket_request", id: string, createdAt: string, updatedAt: string, workspaceId: string, folderId: string | null, authentication: Record<string, any>, authenticationType: string | null, description: string, headers: Array<HttpRequestHeader>, message: string, name: string, sortPriority: number, url: string, urlParameters: Array<HttpUrlParameter>, };
|
||||||
|
|
||||||
export type Workspace = { model: "workspace", id: string, createdAt: string, updatedAt: string, name: string, description: string, settingValidateCertificates: boolean, settingFollowRedirects: boolean, settingRequestTimeout: number, };
|
export type Workspace = { model: "workspace", id: string, createdAt: string, updatedAt: string, name: string, description: string, settingValidateCertificates: boolean, settingFollowRedirects: boolean, settingRequestTimeout: number, };
|
||||||
|
|||||||
@@ -92,7 +92,7 @@
|
|||||||
"postcss-nesting": "^13.0.0",
|
"postcss-nesting": "^13.0.0",
|
||||||
"react-devtools": "^5.3.1",
|
"react-devtools": "^5.3.1",
|
||||||
"tailwindcss": "^3.4.10",
|
"tailwindcss": "^3.4.10",
|
||||||
"vite": "6.0.9",
|
"vite": "6.0.6",
|
||||||
"vite-plugin-static-copy": "^2.2.0",
|
"vite-plugin-static-copy": "^2.2.0",
|
||||||
"vite-plugin-svgr": "^4.3.0",
|
"vite-plugin-svgr": "^4.3.0",
|
||||||
"vite-plugin-top-level-await": "^1.4.4"
|
"vite-plugin-top-level-await": "^1.4.4"
|
||||||
|
|||||||
Reference in New Issue
Block a user