@tinywork/glass 0.0.49 → 0.0.50
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/index.d.ts +11 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export type DocFullSchema = DocSchema & {
|
|
|
48
48
|
};
|
|
49
49
|
export type GroupSchema = {
|
|
50
50
|
id: string;
|
|
51
|
+
orgId?: string | null;
|
|
51
52
|
parentId: string | null;
|
|
52
53
|
name: string;
|
|
53
54
|
desc?: string;
|
|
@@ -58,6 +59,7 @@ export type GroupSchema = {
|
|
|
58
59
|
};
|
|
59
60
|
export type Project = {
|
|
60
61
|
id: string;
|
|
62
|
+
orgId?: string | null;
|
|
61
63
|
name: string;
|
|
62
64
|
desc?: string;
|
|
63
65
|
status: boolean;
|
|
@@ -104,10 +106,15 @@ export type CaseData = Omit<Case, "params" | "headers" | "body"> & {
|
|
|
104
106
|
headers?: string;
|
|
105
107
|
body?: string;
|
|
106
108
|
};
|
|
109
|
+
export type Association = {
|
|
110
|
+
versionId: string;
|
|
111
|
+
apiId: string;
|
|
112
|
+
tags?: string[];
|
|
113
|
+
};
|
|
107
114
|
export type MockMode = "None" | "Local" | "Advance";
|
|
108
115
|
export type ActionMode = "Modify" | "Add" | "Remove";
|
|
109
116
|
export type ActionTarget = "Origin";
|
|
110
|
-
export type ContextMenuType = "log" | "group" | "doc" | "rule" | "project" | "version" | "plan" | "case";
|
|
117
|
+
export type ContextMenuType = "log" | "group" | "doc" | "rule" | "project" | "version" | "plan" | "case" | "association";
|
|
111
118
|
export type ContextMenuParams = {
|
|
112
119
|
type: "log";
|
|
113
120
|
data: NetLog;
|
|
@@ -132,6 +139,9 @@ export type ContextMenuParams = {
|
|
|
132
139
|
} | {
|
|
133
140
|
type: "case";
|
|
134
141
|
data: Case;
|
|
142
|
+
} | {
|
|
143
|
+
type: "association";
|
|
144
|
+
data: Association;
|
|
135
145
|
};
|
|
136
146
|
export type SyncDataType = "group" | "doc" | "rule" | "project" | "version" | "plan" | "case";
|
|
137
147
|
export type SyncDataParams = {
|