weave-typescript 0.11.13 → 0.11.15
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/weaveapi/data/v1/data.pb.d.ts +54 -0
- package/dist/weaveapi/data/v1/data.pb.js +411 -0
- package/dist/weaveapi/data/v1/service.pb.d.ts +213 -0
- package/dist/weaveapi/data/v1/service.pb.js +1948 -0
- package/dist/weaveapi/input/v1/input.pb.d.ts +77 -0
- package/dist/weaveapi/input/v1/input.pb.js +632 -0
- package/dist/weaveapi/input/v1/service.pb.d.ts +311 -0
- package/dist/weaveapi/input/v1/service.pb.js +3001 -0
- package/dist/weaveapi/integration/v1/integration.pb.d.ts +67 -0
- package/dist/weaveapi/integration/v1/integration.pb.js +486 -0
- package/dist/weaveapi/integration/v1/service.pb.d.ts +236 -0
- package/dist/weaveapi/integration/v1/service.pb.js +2220 -0
- package/dist/weaveapi/report/v1/report.pb.d.ts +79 -0
- package/dist/weaveapi/report/v1/report.pb.js +638 -0
- package/dist/weaveapi/report/v1/service.pb.d.ts +194 -0
- package/dist/weaveapi/report/v1/service.pb.js +1630 -0
- package/dist/weaveapi/requirement/v1/requirement.pb.d.ts +70 -0
- package/dist/weaveapi/requirement/v1/requirement.pb.js +570 -0
- package/dist/weaveapi/requirement/v1/service.pb.d.ts +310 -0
- package/dist/weaveapi/requirement/v1/service.pb.js +2978 -0
- package/dist/weaveapi/run/v1/run.pb.d.ts +116 -0
- package/dist/weaveapi/run/v1/run.pb.js +1135 -0
- package/dist/weaveapi/run/v1/service.pb.d.ts +229 -0
- package/dist/weaveapi/run/v1/service.pb.js +2106 -0
- package/dist/weaveapi/script/v1/script.pb.d.ts +102 -0
- package/dist/weaveapi/script/v1/script.pb.js +1025 -0
- package/dist/weaveapi/script/v1/service.pb.d.ts +426 -0
- package/dist/weaveapi/script/v1/service.pb.js +4399 -0
- package/dist/weaveapi/storage/v1/service.pb.d.ts +4 -0
- package/dist/weaveapi/storage/v1/service.pb.js +50 -7
- package/dist/weaveapi/storage/v1/storage.pb.d.ts +2 -0
- package/dist/weaveapi/storage/v1/storage.pb.js +23 -0
- package/dist/weaveapi/storage/v1/vcs.pb.d.ts +75 -0
- package/dist/weaveapi/storage/v1/vcs.pb.js +864 -0
- package/dist/weaveapi/suite/v1/service.pb.d.ts +373 -0
- package/dist/weaveapi/suite/v1/service.pb.js +3629 -0
- package/dist/weaveapi/suite/v1/suite.pb.d.ts +92 -0
- package/dist/weaveapi/suite/v1/suite.pb.js +876 -0
- package/dist/weaveapi/testcase/v1/service.pb.d.ts +422 -0
- package/dist/weaveapi/testcase/v1/service.pb.js +4254 -0
- package/dist/weaveapi/testcase/v1/testcase.pb.d.ts +91 -0
- package/dist/weaveapi/testcase/v1/testcase.pb.js +794 -0
- package/dist/weavesql/weavedb/data_asset_sql.d.ts +141 -0
- package/dist/weavesql/weavedb/data_asset_sql.js +217 -0
- package/dist/weavesql/weavedb/input_sql.d.ts +230 -0
- package/dist/weavesql/weavedb/input_sql.js +384 -0
- package/dist/weavesql/weavedb/integration_sql.d.ts +170 -0
- package/dist/weavesql/weavedb/integration_sql.js +258 -0
- package/dist/weavesql/weavedb/report_sql.d.ts +138 -0
- package/dist/weavesql/weavedb/report_sql.js +232 -0
- package/dist/weavesql/weavedb/requirement_sql.d.ts +168 -0
- package/dist/weavesql/weavedb/requirement_sql.js +283 -0
- package/dist/weavesql/weavedb/run_sql.d.ts +247 -0
- package/dist/weavesql/weavedb/run_sql.js +415 -0
- package/dist/weavesql/weavedb/suite_sql.d.ts +228 -0
- package/dist/weavesql/weavedb/suite_sql.js +399 -0
- package/dist/weavesql/weavedb/test_case_sql.d.ts +261 -0
- package/dist/weavesql/weavedb/test_case_sql.js +446 -0
- package/dist/weavesql/weavedb/test_script_sql.d.ts +290 -0
- package/dist/weavesql/weavedb/test_script_sql.js +488 -0
- package/dist/weavesql/weavedb/traceability_sql.d.ts +59 -0
- package/dist/weavesql/weavedb/traceability_sql.js +155 -0
- package/package.json +1 -1
|
@@ -0,0 +1,422 @@
|
|
|
1
|
+
import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire";
|
|
2
|
+
import { TestCase, TestCaseRequirementLink, TestCaseStatus, TestCaseType, TestCaseVersion } from "./testcase.pb";
|
|
3
|
+
export declare const protobufPackage = "weaveapi.testcase.v1";
|
|
4
|
+
export interface CreateTestCaseRequest {
|
|
5
|
+
projectId: string;
|
|
6
|
+
workflowId: string;
|
|
7
|
+
caseKey: string;
|
|
8
|
+
title: string;
|
|
9
|
+
description: string;
|
|
10
|
+
caseType: TestCaseType;
|
|
11
|
+
status: TestCaseStatus;
|
|
12
|
+
priority: number;
|
|
13
|
+
metadata: {
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
} | undefined;
|
|
16
|
+
}
|
|
17
|
+
export interface CreateTestCaseResponse {
|
|
18
|
+
testCase: TestCase | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface GetTestCaseRequest {
|
|
21
|
+
projectId: string;
|
|
22
|
+
workflowId: string;
|
|
23
|
+
testCaseId: string;
|
|
24
|
+
}
|
|
25
|
+
export interface GetTestCaseResponse {
|
|
26
|
+
testCase: TestCase | undefined;
|
|
27
|
+
}
|
|
28
|
+
export interface ListTestCasesRequest {
|
|
29
|
+
projectId: string;
|
|
30
|
+
workflowId: string;
|
|
31
|
+
includeArchived: boolean;
|
|
32
|
+
pageSize: number;
|
|
33
|
+
pageToken: string;
|
|
34
|
+
}
|
|
35
|
+
export interface ListTestCasesResponse {
|
|
36
|
+
testCases: TestCase[];
|
|
37
|
+
nextPageToken: string;
|
|
38
|
+
}
|
|
39
|
+
export interface UpdateTestCaseRequest {
|
|
40
|
+
projectId: string;
|
|
41
|
+
workflowId: string;
|
|
42
|
+
testCaseId: string;
|
|
43
|
+
caseKey: string;
|
|
44
|
+
title: string;
|
|
45
|
+
description: string;
|
|
46
|
+
caseType: TestCaseType;
|
|
47
|
+
status: TestCaseStatus;
|
|
48
|
+
priority: number;
|
|
49
|
+
metadata: {
|
|
50
|
+
[key: string]: any;
|
|
51
|
+
} | undefined;
|
|
52
|
+
}
|
|
53
|
+
export interface UpdateTestCaseResponse {
|
|
54
|
+
testCase: TestCase | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface ArchiveTestCaseRequest {
|
|
57
|
+
projectId: string;
|
|
58
|
+
workflowId: string;
|
|
59
|
+
testCaseId: string;
|
|
60
|
+
}
|
|
61
|
+
export interface ArchiveTestCaseResponse {
|
|
62
|
+
testCase: TestCase | undefined;
|
|
63
|
+
}
|
|
64
|
+
export interface DeleteTestCaseRequest {
|
|
65
|
+
projectId: string;
|
|
66
|
+
workflowId: string;
|
|
67
|
+
testCaseId: string;
|
|
68
|
+
}
|
|
69
|
+
export interface DeleteTestCaseResponse {
|
|
70
|
+
}
|
|
71
|
+
export interface CreateTestCaseVersionRequest {
|
|
72
|
+
projectId: string;
|
|
73
|
+
workflowId: string;
|
|
74
|
+
testCaseId: string;
|
|
75
|
+
objective: string;
|
|
76
|
+
preconditions: {
|
|
77
|
+
[key: string]: any;
|
|
78
|
+
} | undefined;
|
|
79
|
+
steps: {
|
|
80
|
+
[key: string]: any;
|
|
81
|
+
} | undefined;
|
|
82
|
+
expectedResults: {
|
|
83
|
+
[key: string]: any;
|
|
84
|
+
} | undefined;
|
|
85
|
+
metadata: {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
} | undefined;
|
|
88
|
+
promptVersion: string;
|
|
89
|
+
}
|
|
90
|
+
export interface CreateTestCaseVersionResponse {
|
|
91
|
+
testCaseVersion: TestCaseVersion | undefined;
|
|
92
|
+
}
|
|
93
|
+
export interface GetTestCaseVersionRequest {
|
|
94
|
+
projectId: string;
|
|
95
|
+
workflowId: string;
|
|
96
|
+
testCaseId: string;
|
|
97
|
+
testCaseVersionId: string;
|
|
98
|
+
}
|
|
99
|
+
export interface GetTestCaseVersionResponse {
|
|
100
|
+
testCaseVersion: TestCaseVersion | undefined;
|
|
101
|
+
}
|
|
102
|
+
export interface ListTestCaseVersionsRequest {
|
|
103
|
+
projectId: string;
|
|
104
|
+
workflowId: string;
|
|
105
|
+
testCaseId: string;
|
|
106
|
+
pageSize: number;
|
|
107
|
+
pageToken: string;
|
|
108
|
+
}
|
|
109
|
+
export interface ListTestCaseVersionsResponse {
|
|
110
|
+
testCaseVersions: TestCaseVersion[];
|
|
111
|
+
nextPageToken: string;
|
|
112
|
+
}
|
|
113
|
+
export interface SetCurrentTestCaseVersionRequest {
|
|
114
|
+
projectId: string;
|
|
115
|
+
workflowId: string;
|
|
116
|
+
testCaseId: string;
|
|
117
|
+
testCaseVersionId: string;
|
|
118
|
+
}
|
|
119
|
+
export interface SetCurrentTestCaseVersionResponse {
|
|
120
|
+
testCase: TestCase | undefined;
|
|
121
|
+
}
|
|
122
|
+
export interface LinkTestCaseRequirementRequest {
|
|
123
|
+
projectId: string;
|
|
124
|
+
workflowId: string;
|
|
125
|
+
testCaseId: string;
|
|
126
|
+
requirementId: string;
|
|
127
|
+
coverageType: string;
|
|
128
|
+
confidence: number;
|
|
129
|
+
}
|
|
130
|
+
export interface LinkTestCaseRequirementResponse {
|
|
131
|
+
link: TestCaseRequirementLink | undefined;
|
|
132
|
+
}
|
|
133
|
+
export interface UnlinkTestCaseRequirementRequest {
|
|
134
|
+
projectId: string;
|
|
135
|
+
workflowId: string;
|
|
136
|
+
testCaseId: string;
|
|
137
|
+
requirementId: string;
|
|
138
|
+
}
|
|
139
|
+
export interface UnlinkTestCaseRequirementResponse {
|
|
140
|
+
}
|
|
141
|
+
export interface ListTestCaseRequirementsRequest {
|
|
142
|
+
projectId: string;
|
|
143
|
+
workflowId: string;
|
|
144
|
+
testCaseId: string;
|
|
145
|
+
}
|
|
146
|
+
export interface ListTestCaseRequirementsResponse {
|
|
147
|
+
links: TestCaseRequirementLink[];
|
|
148
|
+
}
|
|
149
|
+
export interface GenerateTestCasesRequest {
|
|
150
|
+
projectId: string;
|
|
151
|
+
workflowId: string;
|
|
152
|
+
requirementIds: string[];
|
|
153
|
+
options: {
|
|
154
|
+
[key: string]: any;
|
|
155
|
+
} | undefined;
|
|
156
|
+
}
|
|
157
|
+
export interface GenerateTestCasesResponse {
|
|
158
|
+
testCases: TestCase[];
|
|
159
|
+
}
|
|
160
|
+
export declare const CreateTestCaseRequest: MessageFns<CreateTestCaseRequest>;
|
|
161
|
+
export declare const CreateTestCaseResponse: MessageFns<CreateTestCaseResponse>;
|
|
162
|
+
export declare const GetTestCaseRequest: MessageFns<GetTestCaseRequest>;
|
|
163
|
+
export declare const GetTestCaseResponse: MessageFns<GetTestCaseResponse>;
|
|
164
|
+
export declare const ListTestCasesRequest: MessageFns<ListTestCasesRequest>;
|
|
165
|
+
export declare const ListTestCasesResponse: MessageFns<ListTestCasesResponse>;
|
|
166
|
+
export declare const UpdateTestCaseRequest: MessageFns<UpdateTestCaseRequest>;
|
|
167
|
+
export declare const UpdateTestCaseResponse: MessageFns<UpdateTestCaseResponse>;
|
|
168
|
+
export declare const ArchiveTestCaseRequest: MessageFns<ArchiveTestCaseRequest>;
|
|
169
|
+
export declare const ArchiveTestCaseResponse: MessageFns<ArchiveTestCaseResponse>;
|
|
170
|
+
export declare const DeleteTestCaseRequest: MessageFns<DeleteTestCaseRequest>;
|
|
171
|
+
export declare const DeleteTestCaseResponse: MessageFns<DeleteTestCaseResponse>;
|
|
172
|
+
export declare const CreateTestCaseVersionRequest: MessageFns<CreateTestCaseVersionRequest>;
|
|
173
|
+
export declare const CreateTestCaseVersionResponse: MessageFns<CreateTestCaseVersionResponse>;
|
|
174
|
+
export declare const GetTestCaseVersionRequest: MessageFns<GetTestCaseVersionRequest>;
|
|
175
|
+
export declare const GetTestCaseVersionResponse: MessageFns<GetTestCaseVersionResponse>;
|
|
176
|
+
export declare const ListTestCaseVersionsRequest: MessageFns<ListTestCaseVersionsRequest>;
|
|
177
|
+
export declare const ListTestCaseVersionsResponse: MessageFns<ListTestCaseVersionsResponse>;
|
|
178
|
+
export declare const SetCurrentTestCaseVersionRequest: MessageFns<SetCurrentTestCaseVersionRequest>;
|
|
179
|
+
export declare const SetCurrentTestCaseVersionResponse: MessageFns<SetCurrentTestCaseVersionResponse>;
|
|
180
|
+
export declare const LinkTestCaseRequirementRequest: MessageFns<LinkTestCaseRequirementRequest>;
|
|
181
|
+
export declare const LinkTestCaseRequirementResponse: MessageFns<LinkTestCaseRequirementResponse>;
|
|
182
|
+
export declare const UnlinkTestCaseRequirementRequest: MessageFns<UnlinkTestCaseRequirementRequest>;
|
|
183
|
+
export declare const UnlinkTestCaseRequirementResponse: MessageFns<UnlinkTestCaseRequirementResponse>;
|
|
184
|
+
export declare const ListTestCaseRequirementsRequest: MessageFns<ListTestCaseRequirementsRequest>;
|
|
185
|
+
export declare const ListTestCaseRequirementsResponse: MessageFns<ListTestCaseRequirementsResponse>;
|
|
186
|
+
export declare const GenerateTestCasesRequest: MessageFns<GenerateTestCasesRequest>;
|
|
187
|
+
export declare const GenerateTestCasesResponse: MessageFns<GenerateTestCasesResponse>;
|
|
188
|
+
export interface TestCaseService {
|
|
189
|
+
CreateTestCase(request: CreateTestCaseRequest): Promise<CreateTestCaseResponse>;
|
|
190
|
+
GetTestCase(request: GetTestCaseRequest): Promise<GetTestCaseResponse>;
|
|
191
|
+
ListTestCases(request: ListTestCasesRequest): Promise<ListTestCasesResponse>;
|
|
192
|
+
UpdateTestCase(request: UpdateTestCaseRequest): Promise<UpdateTestCaseResponse>;
|
|
193
|
+
ArchiveTestCase(request: ArchiveTestCaseRequest): Promise<ArchiveTestCaseResponse>;
|
|
194
|
+
DeleteTestCase(request: DeleteTestCaseRequest): Promise<DeleteTestCaseResponse>;
|
|
195
|
+
CreateTestCaseVersion(request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
|
|
196
|
+
GetTestCaseVersion(request: GetTestCaseVersionRequest): Promise<GetTestCaseVersionResponse>;
|
|
197
|
+
ListTestCaseVersions(request: ListTestCaseVersionsRequest): Promise<ListTestCaseVersionsResponse>;
|
|
198
|
+
SetCurrentTestCaseVersion(request: SetCurrentTestCaseVersionRequest): Promise<SetCurrentTestCaseVersionResponse>;
|
|
199
|
+
LinkTestCaseRequirement(request: LinkTestCaseRequirementRequest): Promise<LinkTestCaseRequirementResponse>;
|
|
200
|
+
UnlinkTestCaseRequirement(request: UnlinkTestCaseRequirementRequest): Promise<UnlinkTestCaseRequirementResponse>;
|
|
201
|
+
ListTestCaseRequirements(request: ListTestCaseRequirementsRequest): Promise<ListTestCaseRequirementsResponse>;
|
|
202
|
+
GenerateTestCases(request: GenerateTestCasesRequest): Promise<GenerateTestCasesResponse>;
|
|
203
|
+
}
|
|
204
|
+
export declare const TestCaseServiceServiceName = "weaveapi.testcase.v1.TestCaseService";
|
|
205
|
+
export declare class TestCaseServiceClientImpl implements TestCaseService {
|
|
206
|
+
private readonly rpc;
|
|
207
|
+
private readonly service;
|
|
208
|
+
constructor(rpc: Rpc, opts?: {
|
|
209
|
+
service?: string;
|
|
210
|
+
});
|
|
211
|
+
CreateTestCase(request: CreateTestCaseRequest): Promise<CreateTestCaseResponse>;
|
|
212
|
+
GetTestCase(request: GetTestCaseRequest): Promise<GetTestCaseResponse>;
|
|
213
|
+
ListTestCases(request: ListTestCasesRequest): Promise<ListTestCasesResponse>;
|
|
214
|
+
UpdateTestCase(request: UpdateTestCaseRequest): Promise<UpdateTestCaseResponse>;
|
|
215
|
+
ArchiveTestCase(request: ArchiveTestCaseRequest): Promise<ArchiveTestCaseResponse>;
|
|
216
|
+
DeleteTestCase(request: DeleteTestCaseRequest): Promise<DeleteTestCaseResponse>;
|
|
217
|
+
CreateTestCaseVersion(request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
|
|
218
|
+
GetTestCaseVersion(request: GetTestCaseVersionRequest): Promise<GetTestCaseVersionResponse>;
|
|
219
|
+
ListTestCaseVersions(request: ListTestCaseVersionsRequest): Promise<ListTestCaseVersionsResponse>;
|
|
220
|
+
SetCurrentTestCaseVersion(request: SetCurrentTestCaseVersionRequest): Promise<SetCurrentTestCaseVersionResponse>;
|
|
221
|
+
LinkTestCaseRequirement(request: LinkTestCaseRequirementRequest): Promise<LinkTestCaseRequirementResponse>;
|
|
222
|
+
UnlinkTestCaseRequirement(request: UnlinkTestCaseRequirementRequest): Promise<UnlinkTestCaseRequirementResponse>;
|
|
223
|
+
ListTestCaseRequirements(request: ListTestCaseRequirementsRequest): Promise<ListTestCaseRequirementsResponse>;
|
|
224
|
+
GenerateTestCases(request: GenerateTestCasesRequest): Promise<GenerateTestCasesResponse>;
|
|
225
|
+
}
|
|
226
|
+
export type TestCaseServiceDefinition = typeof TestCaseServiceDefinition;
|
|
227
|
+
export declare const TestCaseServiceDefinition: {
|
|
228
|
+
readonly name: "TestCaseService";
|
|
229
|
+
readonly fullName: "weaveapi.testcase.v1.TestCaseService";
|
|
230
|
+
readonly methods: {
|
|
231
|
+
readonly createTestCase: {
|
|
232
|
+
readonly name: "CreateTestCase";
|
|
233
|
+
readonly requestType: MessageFns<CreateTestCaseRequest>;
|
|
234
|
+
readonly requestStream: false;
|
|
235
|
+
readonly responseType: MessageFns<CreateTestCaseResponse>;
|
|
236
|
+
readonly responseStream: false;
|
|
237
|
+
readonly options: {
|
|
238
|
+
readonly _unknownFields: {
|
|
239
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
240
|
+
};
|
|
241
|
+
};
|
|
242
|
+
};
|
|
243
|
+
readonly getTestCase: {
|
|
244
|
+
readonly name: "GetTestCase";
|
|
245
|
+
readonly requestType: MessageFns<GetTestCaseRequest>;
|
|
246
|
+
readonly requestStream: false;
|
|
247
|
+
readonly responseType: MessageFns<GetTestCaseResponse>;
|
|
248
|
+
readonly responseStream: false;
|
|
249
|
+
readonly options: {
|
|
250
|
+
readonly _unknownFields: {
|
|
251
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
readonly listTestCases: {
|
|
256
|
+
readonly name: "ListTestCases";
|
|
257
|
+
readonly requestType: MessageFns<ListTestCasesRequest>;
|
|
258
|
+
readonly requestStream: false;
|
|
259
|
+
readonly responseType: MessageFns<ListTestCasesResponse>;
|
|
260
|
+
readonly responseStream: false;
|
|
261
|
+
readonly options: {
|
|
262
|
+
readonly _unknownFields: {
|
|
263
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
readonly updateTestCase: {
|
|
268
|
+
readonly name: "UpdateTestCase";
|
|
269
|
+
readonly requestType: MessageFns<UpdateTestCaseRequest>;
|
|
270
|
+
readonly requestStream: false;
|
|
271
|
+
readonly responseType: MessageFns<UpdateTestCaseResponse>;
|
|
272
|
+
readonly responseStream: false;
|
|
273
|
+
readonly options: {
|
|
274
|
+
readonly _unknownFields: {
|
|
275
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
};
|
|
279
|
+
readonly archiveTestCase: {
|
|
280
|
+
readonly name: "ArchiveTestCase";
|
|
281
|
+
readonly requestType: MessageFns<ArchiveTestCaseRequest>;
|
|
282
|
+
readonly requestStream: false;
|
|
283
|
+
readonly responseType: MessageFns<ArchiveTestCaseResponse>;
|
|
284
|
+
readonly responseStream: false;
|
|
285
|
+
readonly options: {
|
|
286
|
+
readonly _unknownFields: {
|
|
287
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
readonly deleteTestCase: {
|
|
292
|
+
readonly name: "DeleteTestCase";
|
|
293
|
+
readonly requestType: MessageFns<DeleteTestCaseRequest>;
|
|
294
|
+
readonly requestStream: false;
|
|
295
|
+
readonly responseType: MessageFns<DeleteTestCaseResponse>;
|
|
296
|
+
readonly responseStream: false;
|
|
297
|
+
readonly options: {
|
|
298
|
+
readonly _unknownFields: {
|
|
299
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
300
|
+
};
|
|
301
|
+
};
|
|
302
|
+
};
|
|
303
|
+
readonly createTestCaseVersion: {
|
|
304
|
+
readonly name: "CreateTestCaseVersion";
|
|
305
|
+
readonly requestType: MessageFns<CreateTestCaseVersionRequest>;
|
|
306
|
+
readonly requestStream: false;
|
|
307
|
+
readonly responseType: MessageFns<CreateTestCaseVersionResponse>;
|
|
308
|
+
readonly responseStream: false;
|
|
309
|
+
readonly options: {
|
|
310
|
+
readonly _unknownFields: {
|
|
311
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
312
|
+
};
|
|
313
|
+
};
|
|
314
|
+
};
|
|
315
|
+
readonly getTestCaseVersion: {
|
|
316
|
+
readonly name: "GetTestCaseVersion";
|
|
317
|
+
readonly requestType: MessageFns<GetTestCaseVersionRequest>;
|
|
318
|
+
readonly requestStream: false;
|
|
319
|
+
readonly responseType: MessageFns<GetTestCaseVersionResponse>;
|
|
320
|
+
readonly responseStream: false;
|
|
321
|
+
readonly options: {
|
|
322
|
+
readonly _unknownFields: {
|
|
323
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
readonly listTestCaseVersions: {
|
|
328
|
+
readonly name: "ListTestCaseVersions";
|
|
329
|
+
readonly requestType: MessageFns<ListTestCaseVersionsRequest>;
|
|
330
|
+
readonly requestStream: false;
|
|
331
|
+
readonly responseType: MessageFns<ListTestCaseVersionsResponse>;
|
|
332
|
+
readonly responseStream: false;
|
|
333
|
+
readonly options: {
|
|
334
|
+
readonly _unknownFields: {
|
|
335
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
readonly setCurrentTestCaseVersion: {
|
|
340
|
+
readonly name: "SetCurrentTestCaseVersion";
|
|
341
|
+
readonly requestType: MessageFns<SetCurrentTestCaseVersionRequest>;
|
|
342
|
+
readonly requestStream: false;
|
|
343
|
+
readonly responseType: MessageFns<SetCurrentTestCaseVersionResponse>;
|
|
344
|
+
readonly responseStream: false;
|
|
345
|
+
readonly options: {
|
|
346
|
+
readonly _unknownFields: {
|
|
347
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
348
|
+
};
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
readonly linkTestCaseRequirement: {
|
|
352
|
+
readonly name: "LinkTestCaseRequirement";
|
|
353
|
+
readonly requestType: MessageFns<LinkTestCaseRequirementRequest>;
|
|
354
|
+
readonly requestStream: false;
|
|
355
|
+
readonly responseType: MessageFns<LinkTestCaseRequirementResponse>;
|
|
356
|
+
readonly responseStream: false;
|
|
357
|
+
readonly options: {
|
|
358
|
+
readonly _unknownFields: {
|
|
359
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
360
|
+
};
|
|
361
|
+
};
|
|
362
|
+
};
|
|
363
|
+
readonly unlinkTestCaseRequirement: {
|
|
364
|
+
readonly name: "UnlinkTestCaseRequirement";
|
|
365
|
+
readonly requestType: MessageFns<UnlinkTestCaseRequirementRequest>;
|
|
366
|
+
readonly requestStream: false;
|
|
367
|
+
readonly responseType: MessageFns<UnlinkTestCaseRequirementResponse>;
|
|
368
|
+
readonly responseStream: false;
|
|
369
|
+
readonly options: {
|
|
370
|
+
readonly _unknownFields: {
|
|
371
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
372
|
+
};
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
readonly listTestCaseRequirements: {
|
|
376
|
+
readonly name: "ListTestCaseRequirements";
|
|
377
|
+
readonly requestType: MessageFns<ListTestCaseRequirementsRequest>;
|
|
378
|
+
readonly requestStream: false;
|
|
379
|
+
readonly responseType: MessageFns<ListTestCaseRequirementsResponse>;
|
|
380
|
+
readonly responseStream: false;
|
|
381
|
+
readonly options: {
|
|
382
|
+
readonly _unknownFields: {
|
|
383
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
readonly generateTestCases: {
|
|
388
|
+
readonly name: "GenerateTestCases";
|
|
389
|
+
readonly requestType: MessageFns<GenerateTestCasesRequest>;
|
|
390
|
+
readonly requestStream: false;
|
|
391
|
+
readonly responseType: MessageFns<GenerateTestCasesResponse>;
|
|
392
|
+
readonly responseStream: false;
|
|
393
|
+
readonly options: {
|
|
394
|
+
readonly _unknownFields: {
|
|
395
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
396
|
+
};
|
|
397
|
+
};
|
|
398
|
+
};
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
interface Rpc {
|
|
402
|
+
request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
|
|
403
|
+
}
|
|
404
|
+
type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
|
|
405
|
+
export type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
|
|
406
|
+
[K in keyof T]?: DeepPartial<T[K]>;
|
|
407
|
+
} : Partial<T>;
|
|
408
|
+
type KeysOfUnion<T> = T extends T ? keyof T : never;
|
|
409
|
+
export type Exact<P, I extends P> = P extends Builtin ? P : P & {
|
|
410
|
+
[K in keyof P]: Exact<P[K], I[K]>;
|
|
411
|
+
} & {
|
|
412
|
+
[K in Exclude<keyof I, KeysOfUnion<P>>]: never;
|
|
413
|
+
};
|
|
414
|
+
export interface MessageFns<T> {
|
|
415
|
+
encode(message: T, writer?: BinaryWriter): BinaryWriter;
|
|
416
|
+
decode(input: BinaryReader | Uint8Array, length?: number): T;
|
|
417
|
+
fromJSON(object: any): T;
|
|
418
|
+
toJSON(message: T): unknown;
|
|
419
|
+
create<I extends Exact<DeepPartial<T>, I>>(base?: I): T;
|
|
420
|
+
fromPartial<I extends Exact<DeepPartial<T>, I>>(object: I): T;
|
|
421
|
+
}
|
|
422
|
+
export {};
|