@yaakapp/api 0.2.5 → 0.2.6
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/lib/helpers.d.ts +0 -1
- package/lib/index.d.ts +1 -2
- package/lib/index.js +1 -2
- package/lib/plugin-runtime-types/src/helpers.d.ts +2 -0
- package/lib/plugin-runtime-types/src/index.d.ts +4 -0
- package/lib/plugin-runtime-types/src/index.js +18 -0
- package/lib/plugin-runtime-types/src/plugins/Context.d.ts +17 -0
- package/lib/plugin-runtime-types/src/plugins/Context.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/FilterPlugin.d.ts +13 -0
- package/lib/plugin-runtime-types/src/plugins/FilterPlugin.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/HttpRequestActionPlugin.d.ts +5 -0
- package/lib/plugin-runtime-types/src/plugins/HttpRequestActionPlugin.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/ImporterPlugin.d.ts +16 -0
- package/lib/plugin-runtime-types/src/plugins/ImporterPlugin.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/TemplateFunctionPlugin.d.ts +5 -0
- package/lib/plugin-runtime-types/src/plugins/TemplateFunctionPlugin.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/ThemePlugin.d.ts +7 -0
- package/lib/plugin-runtime-types/src/plugins/ThemePlugin.js +2 -0
- package/lib/plugin-runtime-types/src/plugins/index.d.ts +16 -0
- package/lib/plugin-runtime-types/src/plugins/index.js +2 -0
- package/lib/plugin-runtime-types/src/themes/index.d.ts +39 -0
- package/lib/plugin-runtime-types/src/themes/index.js +2 -0
- package/lib/plugins/Context.d.ts +1 -1
- package/lib/plugins/HttpRequestActionPlugin.d.ts +1 -1
- package/lib/plugins/ImporterPlugin.d.ts +1 -1
- package/lib/plugins/TemplateFunctionPlugin.d.ts +1 -1
- package/lib/{gen → src-tauri/yaak_plugin_runtime/bindings}/events.d.ts +1 -4
- package/lib/src-tauri/yaak_plugin_runtime/bindings/events.js +1 -0
- package/lib/{gen → src-tauri/yaak_plugin_runtime/bindings}/models.d.ts +41 -91
- package/lib/{gen → src-tauri/yaak_plugin_runtime/bindings}/models.js +1 -2
- package/package.json +1 -1
- /package/lib/{gen/events.js → plugin-runtime-types/src/helpers.js} +0 -0
package/lib/helpers.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
package/lib/index.js
CHANGED
|
@@ -14,5 +14,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("
|
|
18
|
-
__exportStar(require("./gen/events"), exports);
|
|
17
|
+
__exportStar(require("@yaakapp-internal/plugin"), exports);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
+
};
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
__exportStar(require("../../src-tauri/yaak_plugin_runtime/bindings/models.ts"), exports);
|
|
18
|
+
__exportStar(require("../../src-tauri/yaak_plugin_runtime/bindings/events.ts"), exports);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { FindHttpResponsesRequest, FindHttpResponsesResponse, GetHttpRequestByIdRequest, GetHttpRequestByIdResponse, RenderHttpRequestRequest, RenderHttpRequestResponse, SendHttpRequestRequest, SendHttpRequestResponse, ShowToastRequest } from '../gen/events';
|
|
2
|
+
export type Context = {
|
|
3
|
+
clipboard: {
|
|
4
|
+
copyText(text: string): void;
|
|
5
|
+
};
|
|
6
|
+
toast: {
|
|
7
|
+
show(args: ShowToastRequest): void;
|
|
8
|
+
};
|
|
9
|
+
httpRequest: {
|
|
10
|
+
send(args: SendHttpRequestRequest): Promise<SendHttpRequestResponse['httpResponse']>;
|
|
11
|
+
getById(args: GetHttpRequestByIdRequest): Promise<GetHttpRequestByIdResponse['httpRequest']>;
|
|
12
|
+
render(args: RenderHttpRequestRequest): Promise<RenderHttpRequestResponse['httpRequest']>;
|
|
13
|
+
};
|
|
14
|
+
httpResponse: {
|
|
15
|
+
find(args: FindHttpResponsesRequest): Promise<FindHttpResponsesResponse['httpResponses']>;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Context } from './Context';
|
|
2
|
+
export type FilterPluginResponse = string[];
|
|
3
|
+
export type FilterPlugin = {
|
|
4
|
+
name: string;
|
|
5
|
+
description?: string;
|
|
6
|
+
canFilter(ctx: Context, args: {
|
|
7
|
+
mimeType: string;
|
|
8
|
+
}): Promise<boolean>;
|
|
9
|
+
onFilter(ctx: Context, args: {
|
|
10
|
+
payload: string;
|
|
11
|
+
mimeType: string;
|
|
12
|
+
}): Promise<FilterPluginResponse>;
|
|
13
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Environment, Folder, HttpRequest, Workspace } from '../gen/model_util';
|
|
2
|
+
import { AtLeast } from '../helpers';
|
|
3
|
+
import { Context } from './Context';
|
|
4
|
+
export type ImportPluginResponse = null | {
|
|
5
|
+
workspaces: AtLeast<Workspace, 'name' | 'id' | 'model'>[];
|
|
6
|
+
environments: AtLeast<Environment, 'name' | 'id' | 'model' | 'workspaceId'>[];
|
|
7
|
+
httpRequests: AtLeast<HttpRequest, 'name' | 'id' | 'model' | 'workspaceId'>[];
|
|
8
|
+
folders: AtLeast<Folder, 'name' | 'id' | 'model' | 'workspaceId'>[];
|
|
9
|
+
};
|
|
10
|
+
export type ImporterPlugin = {
|
|
11
|
+
name: string;
|
|
12
|
+
description?: string;
|
|
13
|
+
onImport(ctx: Context, args: {
|
|
14
|
+
text: string;
|
|
15
|
+
}): Promise<ImportPluginResponse>;
|
|
16
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { FilterPlugin } from './FilterPlugin';
|
|
2
|
+
import { HttpRequestActionPlugin } from './HttpRequestActionPlugin';
|
|
3
|
+
import { ImporterPlugin } from './ImporterPlugin';
|
|
4
|
+
import { TemplateFunctionPlugin } from './TemplateFunctionPlugin';
|
|
5
|
+
import { ThemePlugin } from './ThemePlugin';
|
|
6
|
+
export type { Context } from './Context';
|
|
7
|
+
/**
|
|
8
|
+
* The global structure of a Yaak plugin
|
|
9
|
+
*/
|
|
10
|
+
export type PluginDefinition = {
|
|
11
|
+
importer?: ImporterPlugin;
|
|
12
|
+
theme?: ThemePlugin;
|
|
13
|
+
filter?: FilterPlugin;
|
|
14
|
+
httpRequestActions?: HttpRequestActionPlugin[];
|
|
15
|
+
templateFunctions?: TemplateFunctionPlugin[];
|
|
16
|
+
};
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export type Colors = {
|
|
2
|
+
surface: string;
|
|
3
|
+
surfaceHighlight?: string;
|
|
4
|
+
surfaceActive?: string;
|
|
5
|
+
text: string;
|
|
6
|
+
textSubtle?: string;
|
|
7
|
+
textSubtlest?: string;
|
|
8
|
+
border?: string;
|
|
9
|
+
borderSubtle?: string;
|
|
10
|
+
borderFocus?: string;
|
|
11
|
+
shadow?: string;
|
|
12
|
+
backdrop?: string;
|
|
13
|
+
selection?: string;
|
|
14
|
+
primary?: string;
|
|
15
|
+
secondary?: string;
|
|
16
|
+
info?: string;
|
|
17
|
+
success?: string;
|
|
18
|
+
notice?: string;
|
|
19
|
+
warning?: string;
|
|
20
|
+
danger?: string;
|
|
21
|
+
};
|
|
22
|
+
export type Theme = Colors & {
|
|
23
|
+
id: string;
|
|
24
|
+
name: string;
|
|
25
|
+
components?: Partial<{
|
|
26
|
+
dialog: Partial<Colors>;
|
|
27
|
+
menu: Partial<Colors>;
|
|
28
|
+
toast: Partial<Colors>;
|
|
29
|
+
sidebar: Partial<Colors>;
|
|
30
|
+
responsePane: Partial<Colors>;
|
|
31
|
+
appHeader: Partial<Colors>;
|
|
32
|
+
button: Partial<Colors>;
|
|
33
|
+
banner: Partial<Colors>;
|
|
34
|
+
placeholder: Partial<Colors>;
|
|
35
|
+
urlBar: Partial<Colors>;
|
|
36
|
+
editor: Partial<Colors>;
|
|
37
|
+
input: Partial<Colors>;
|
|
38
|
+
}>;
|
|
39
|
+
};
|
package/lib/plugins/Context.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { FindHttpResponsesRequest, FindHttpResponsesResponse, GetHttpRequestByIdRequest, GetHttpRequestByIdResponse, RenderHttpRequestRequest, RenderHttpRequestResponse, SendHttpRequestRequest, SendHttpRequestResponse, ShowToastRequest } from '
|
|
1
|
+
import { FindHttpResponsesRequest, FindHttpResponsesResponse, GetHttpRequestByIdRequest, GetHttpRequestByIdResponse, RenderHttpRequestRequest, RenderHttpRequestResponse, SendHttpRequestRequest, SendHttpRequestResponse, ShowToastRequest } from '@yaakapp-internal/plugin';
|
|
2
2
|
export type Context = {
|
|
3
3
|
clipboard: {
|
|
4
4
|
copyText(text: string): void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CallHttpRequestActionArgs, HttpRequestAction } from '
|
|
1
|
+
import { CallHttpRequestActionArgs, HttpRequestAction } from '@yaakapp-internal/plugin';
|
|
2
2
|
import { Context } from './Context';
|
|
3
3
|
export type HttpRequestActionPlugin = HttpRequestAction & {
|
|
4
4
|
onSelect(ctx: Context, args: CallHttpRequestActionArgs): Promise<void> | void;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Environment, Folder, HttpRequest, Workspace } from '
|
|
1
|
+
import { Environment, Folder, HttpRequest, Workspace } from '@yaakapp-internal/models';
|
|
2
2
|
import { AtLeast } from '../helpers';
|
|
3
3
|
import { Context } from './Context';
|
|
4
4
|
export type ImportPluginResponse = null | {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CallTemplateFunctionArgs, TemplateFunction } from '
|
|
1
|
+
import { CallTemplateFunctionArgs, TemplateFunction } from '@yaakapp-internal/plugin';
|
|
2
2
|
import { Context } from './Context';
|
|
3
3
|
export type TemplateFunctionPlugin = TemplateFunction & {
|
|
4
4
|
onRender(ctx: Context, args: CallTemplateFunctionArgs): Promise<string | null>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { CookieJar } from "./models";
|
|
2
1
|
import type { Environment } from "./models";
|
|
3
2
|
import type { Folder } from "./models";
|
|
4
3
|
import type { GrpcConnection } from "./models";
|
|
@@ -7,8 +6,6 @@ import type { GrpcRequest } from "./models";
|
|
|
7
6
|
import type { HttpRequest } from "./models";
|
|
8
7
|
import type { HttpResponse } from "./models";
|
|
9
8
|
import type { KeyValue } from "./models";
|
|
10
|
-
import type { Plugin } from "./models";
|
|
11
|
-
import type { Settings } from "./models";
|
|
12
9
|
import type { Workspace } from "./models";
|
|
13
10
|
export type BootRequest = {
|
|
14
11
|
dir: string;
|
|
@@ -164,7 +161,7 @@ export type InternalEventPayload = {
|
|
|
164
161
|
} & FindHttpResponsesResponse | {
|
|
165
162
|
"type": "empty_response";
|
|
166
163
|
};
|
|
167
|
-
export type Model = Environment | Folder | GrpcConnection | GrpcEvent | GrpcRequest | HttpRequest | HttpResponse | KeyValue | Workspace
|
|
164
|
+
export type Model = Environment | Folder | GrpcConnection | GrpcEvent | GrpcRequest | HttpRequest | HttpResponse | KeyValue | Workspace;
|
|
168
165
|
export type RenderHttpRequestRequest = {
|
|
169
166
|
httpRequest: HttpRequest;
|
|
170
167
|
purpose: RenderPurpose;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,30 +1,7 @@
|
|
|
1
|
-
export type Cookie = {
|
|
2
|
-
raw_cookie: string;
|
|
3
|
-
domain: CookieDomain;
|
|
4
|
-
expires: CookieExpires;
|
|
5
|
-
path: [string, boolean];
|
|
6
|
-
};
|
|
7
|
-
export type CookieDomain = {
|
|
8
|
-
"HostOnly": string;
|
|
9
|
-
} | {
|
|
10
|
-
"Suffix": string;
|
|
11
|
-
} | "NotPresent" | "Empty";
|
|
12
|
-
export type CookieExpires = {
|
|
13
|
-
"AtUtc": string;
|
|
14
|
-
} | "SessionEnd";
|
|
15
|
-
export type CookieJar = {
|
|
16
|
-
id: string;
|
|
17
|
-
model: "cookie_jar";
|
|
18
|
-
createdAt: string;
|
|
19
|
-
updatedAt: string;
|
|
20
|
-
workspaceId: string;
|
|
21
|
-
name: string;
|
|
22
|
-
cookies: Array<Cookie>;
|
|
23
|
-
};
|
|
24
1
|
export type Environment = {
|
|
2
|
+
model: "environment";
|
|
25
3
|
id: string;
|
|
26
4
|
workspaceId: string;
|
|
27
|
-
model: "environment";
|
|
28
5
|
createdAt: string;
|
|
29
6
|
updatedAt: string;
|
|
30
7
|
name: string;
|
|
@@ -36,47 +13,47 @@ export type EnvironmentVariable = {
|
|
|
36
13
|
value: string;
|
|
37
14
|
};
|
|
38
15
|
export type Folder = {
|
|
16
|
+
model: "folder";
|
|
17
|
+
id: string;
|
|
39
18
|
createdAt: string;
|
|
40
19
|
updatedAt: string;
|
|
41
|
-
id: string;
|
|
42
20
|
workspaceId: string;
|
|
43
21
|
folderId: string | null;
|
|
44
|
-
model: "folder";
|
|
45
22
|
name: string;
|
|
46
23
|
sortPriority: number;
|
|
47
24
|
};
|
|
48
25
|
export type GrpcConnection = {
|
|
49
|
-
id: string;
|
|
50
26
|
model: "grpc_connection";
|
|
51
|
-
|
|
52
|
-
requestId: string;
|
|
27
|
+
id: string;
|
|
53
28
|
createdAt: string;
|
|
54
29
|
updatedAt: string;
|
|
55
|
-
|
|
56
|
-
|
|
30
|
+
workspaceId: string;
|
|
31
|
+
requestId: string;
|
|
57
32
|
elapsed: number;
|
|
58
|
-
status: number;
|
|
59
|
-
url: string;
|
|
60
33
|
error: string | null;
|
|
34
|
+
method: string;
|
|
35
|
+
service: string;
|
|
36
|
+
status: number;
|
|
61
37
|
trailers: {
|
|
62
38
|
[key in string]?: string;
|
|
63
39
|
};
|
|
40
|
+
url: string;
|
|
64
41
|
};
|
|
65
42
|
export type GrpcEvent = {
|
|
66
|
-
id: string;
|
|
67
43
|
model: "grpc_event";
|
|
44
|
+
id: string;
|
|
45
|
+
createdAt: string;
|
|
46
|
+
updatedAt: string;
|
|
68
47
|
workspaceId: string;
|
|
69
48
|
requestId: string;
|
|
70
49
|
connectionId: string;
|
|
71
|
-
createdAt: string;
|
|
72
|
-
updatedAt: string;
|
|
73
50
|
content: string;
|
|
51
|
+
error: string | null;
|
|
74
52
|
eventType: GrpcEventType;
|
|
75
53
|
metadata: {
|
|
76
54
|
[key in string]?: string;
|
|
77
55
|
};
|
|
78
56
|
status: number | null;
|
|
79
|
-
error: string | null;
|
|
80
57
|
};
|
|
81
58
|
export type GrpcEventType = "info" | "error" | "client_message" | "server_message" | "connection_start" | "connection_end";
|
|
82
59
|
export type GrpcMetadataEntry = {
|
|
@@ -85,39 +62,39 @@ export type GrpcMetadataEntry = {
|
|
|
85
62
|
value: string;
|
|
86
63
|
};
|
|
87
64
|
export type GrpcRequest = {
|
|
88
|
-
id: string;
|
|
89
65
|
model: "grpc_request";
|
|
90
|
-
|
|
66
|
+
id: string;
|
|
91
67
|
createdAt: string;
|
|
92
68
|
updatedAt: string;
|
|
69
|
+
workspaceId: string;
|
|
93
70
|
folderId: string | null;
|
|
94
|
-
name: string;
|
|
95
|
-
sortPriority: number;
|
|
96
|
-
url: string;
|
|
97
|
-
service: string | null;
|
|
98
|
-
method: string | null;
|
|
99
|
-
message: string;
|
|
100
71
|
authenticationType: string | null;
|
|
101
72
|
authentication: Record<string, any>;
|
|
73
|
+
message: string;
|
|
102
74
|
metadata: Array<GrpcMetadataEntry>;
|
|
75
|
+
method: string | null;
|
|
76
|
+
name: string;
|
|
77
|
+
service: string | null;
|
|
78
|
+
sortPriority: number;
|
|
79
|
+
url: string;
|
|
103
80
|
};
|
|
104
81
|
export type HttpRequest = {
|
|
82
|
+
model: "http_request";
|
|
83
|
+
id: string;
|
|
105
84
|
createdAt: string;
|
|
106
85
|
updatedAt: string;
|
|
107
|
-
id: string;
|
|
108
86
|
workspaceId: string;
|
|
109
87
|
folderId: string | null;
|
|
110
|
-
model: "http_request";
|
|
111
|
-
sortPriority: number;
|
|
112
|
-
name: string;
|
|
113
|
-
url: string;
|
|
114
|
-
urlParameters: Array<HttpUrlParameter>;
|
|
115
|
-
method: string;
|
|
116
|
-
body: Record<string, any>;
|
|
117
|
-
bodyType: string | null;
|
|
118
88
|
authentication: Record<string, any>;
|
|
119
89
|
authenticationType: string | null;
|
|
90
|
+
body: Record<string, any>;
|
|
91
|
+
bodyType: string | null;
|
|
120
92
|
headers: Array<HttpRequestHeader>;
|
|
93
|
+
method: string;
|
|
94
|
+
name: string;
|
|
95
|
+
sortPriority: number;
|
|
96
|
+
url: string;
|
|
97
|
+
urlParameters: Array<HttpUrlParameter>;
|
|
121
98
|
};
|
|
122
99
|
export type HttpRequestHeader = {
|
|
123
100
|
enabled?: boolean;
|
|
@@ -125,23 +102,23 @@ export type HttpRequestHeader = {
|
|
|
125
102
|
value: string;
|
|
126
103
|
};
|
|
127
104
|
export type HttpResponse = {
|
|
128
|
-
id: string;
|
|
129
105
|
model: "http_response";
|
|
130
|
-
|
|
131
|
-
requestId: string;
|
|
106
|
+
id: string;
|
|
132
107
|
createdAt: string;
|
|
133
108
|
updatedAt: string;
|
|
134
|
-
|
|
135
|
-
|
|
109
|
+
workspaceId: string;
|
|
110
|
+
requestId: string;
|
|
111
|
+
bodyPath: string | null;
|
|
136
112
|
contentLength: number | null;
|
|
137
|
-
version: string | null;
|
|
138
113
|
elapsed: number;
|
|
139
114
|
elapsedHeaders: number;
|
|
115
|
+
error: string | null;
|
|
116
|
+
headers: Array<HttpResponseHeader>;
|
|
140
117
|
remoteAddr: string | null;
|
|
141
118
|
status: number;
|
|
142
119
|
statusReason: string | null;
|
|
143
|
-
|
|
144
|
-
|
|
120
|
+
url: string;
|
|
121
|
+
version: string | null;
|
|
145
122
|
};
|
|
146
123
|
export type HttpResponseHeader = {
|
|
147
124
|
name: string;
|
|
@@ -156,40 +133,13 @@ export type KeyValue = {
|
|
|
156
133
|
model: "key_value";
|
|
157
134
|
createdAt: string;
|
|
158
135
|
updatedAt: string;
|
|
159
|
-
namespace: string;
|
|
160
136
|
key: string;
|
|
137
|
+
namespace: string;
|
|
161
138
|
value: string;
|
|
162
139
|
};
|
|
163
|
-
export type Plugin = {
|
|
164
|
-
id: string;
|
|
165
|
-
model: "plugin";
|
|
166
|
-
createdAt: string;
|
|
167
|
-
updatedAt: string;
|
|
168
|
-
checkedAt: string | null;
|
|
169
|
-
directory: string;
|
|
170
|
-
url: string | null;
|
|
171
|
-
enabled: boolean;
|
|
172
|
-
};
|
|
173
|
-
export type Settings = {
|
|
174
|
-
id: string;
|
|
175
|
-
model: "settings";
|
|
176
|
-
createdAt: string;
|
|
177
|
-
updatedAt: string;
|
|
178
|
-
theme: string;
|
|
179
|
-
appearance: string;
|
|
180
|
-
themeDark: string;
|
|
181
|
-
themeLight: string;
|
|
182
|
-
updateChannel: string;
|
|
183
|
-
interfaceFontSize: number;
|
|
184
|
-
interfaceScale: number;
|
|
185
|
-
editorFontSize: number;
|
|
186
|
-
editorSoftWrap: boolean;
|
|
187
|
-
telemetry: boolean;
|
|
188
|
-
openWorkspaceNewWindow: boolean | null;
|
|
189
|
-
};
|
|
190
140
|
export type Workspace = {
|
|
191
|
-
id: string;
|
|
192
141
|
model: "workspace";
|
|
142
|
+
id: string;
|
|
193
143
|
createdAt: string;
|
|
194
144
|
updatedAt: string;
|
|
195
145
|
name: string;
|
package/package.json
CHANGED
|
File without changes
|