weave-typescript 0.11.15 → 0.11.17

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.
Files changed (69) hide show
  1. package/dist/weaveapi/data/v1/data.pb.d.ts +1 -1
  2. package/dist/weaveapi/data/v1/data.pb.js +11 -11
  3. package/dist/weaveapi/data/v1/service.pb.d.ts +89 -6
  4. package/dist/weaveapi/data/v1/service.pb.js +1195 -364
  5. package/dist/weaveapi/input/v1/input.pb.d.ts +1 -1
  6. package/dist/weaveapi/input/v1/input.pb.js +11 -11
  7. package/dist/weaveapi/input/v1/service.pb.d.ts +89 -10
  8. package/dist/weaveapi/input/v1/service.pb.js +1253 -642
  9. package/dist/weaveapi/integration/v1/integration.pb.d.ts +1 -1
  10. package/dist/weaveapi/integration/v1/integration.pb.js +11 -11
  11. package/dist/weaveapi/integration/v1/service.pb.d.ts +89 -7
  12. package/dist/weaveapi/integration/v1/service.pb.js +1164 -390
  13. package/dist/weaveapi/project/v1/project.pb.d.ts +1 -0
  14. package/dist/weaveapi/project/v1/project.pb.js +17 -1
  15. package/dist/weaveapi/project/v1/service.pb.d.ts +25 -0
  16. package/dist/weaveapi/project/v1/service.pb.js +248 -5
  17. package/dist/weaveapi/report/v1/report.pb.d.ts +2 -0
  18. package/dist/weaveapi/report/v1/report.pb.js +42 -2
  19. package/dist/weaveapi/report/v1/service.pb.d.ts +6 -6
  20. package/dist/weaveapi/report/v1/service.pb.js +416 -121
  21. package/dist/weaveapi/requirement/v1/requirement.pb.d.ts +1 -1
  22. package/dist/weaveapi/requirement/v1/requirement.pb.js +11 -11
  23. package/dist/weaveapi/requirement/v1/service.pb.d.ts +90 -10
  24. package/dist/weaveapi/requirement/v1/service.pb.js +1261 -601
  25. package/dist/weaveapi/run/v1/run.pb.d.ts +1 -0
  26. package/dist/weaveapi/run/v1/run.pb.js +21 -1
  27. package/dist/weaveapi/run/v1/service.pb.d.ts +6 -6
  28. package/dist/weaveapi/run/v1/service.pb.js +448 -126
  29. package/dist/weaveapi/script/v1/script.pb.d.ts +1 -1
  30. package/dist/weaveapi/script/v1/script.pb.js +11 -11
  31. package/dist/weaveapi/script/v1/service.pb.d.ts +90 -14
  32. package/dist/weaveapi/script/v1/service.pb.js +1404 -930
  33. package/dist/weaveapi/suite/v1/service.pb.d.ts +178 -12
  34. package/dist/weaveapi/suite/v1/service.pb.js +2631 -979
  35. package/dist/weaveapi/suite/v1/suite.pb.d.ts +2 -2
  36. package/dist/weaveapi/suite/v1/suite.pb.js +22 -22
  37. package/dist/weaveapi/testcase/v1/service.pb.d.ts +90 -14
  38. package/dist/weaveapi/testcase/v1/service.pb.js +1332 -856
  39. package/dist/weaveapi/testcase/v1/testcase.pb.d.ts +1 -1
  40. package/dist/weaveapi/testcase/v1/testcase.pb.js +11 -11
  41. package/dist/weaveapi/workflow/v1/service.pb.d.ts +26 -0
  42. package/dist/weaveapi/workflow/v1/service.pb.js +293 -5
  43. package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +1 -0
  44. package/dist/weaveapi/workflow/v1/workflow.pb.js +17 -1
  45. package/dist/weavesql/weavedb/data_asset_sql.d.ts +81 -16
  46. package/dist/weavesql/weavedb/data_asset_sql.js +142 -24
  47. package/dist/weavesql/weavedb/input_sql.d.ts +88 -25
  48. package/dist/weavesql/weavedb/input_sql.js +150 -34
  49. package/dist/weavesql/weavedb/integration_sql.d.ts +85 -19
  50. package/dist/weavesql/weavedb/integration_sql.js +147 -28
  51. package/dist/weavesql/weavedb/project_sql.d.ts +29 -5
  52. package/dist/weavesql/weavedb/project_sql.js +73 -37
  53. package/dist/weavesql/weavedb/report_sql.d.ts +61 -7
  54. package/dist/weavesql/weavedb/report_sql.js +157 -81
  55. package/dist/weavesql/weavedb/requirement_sql.d.ts +83 -20
  56. package/dist/weavesql/weavedb/requirement_sql.js +144 -28
  57. package/dist/weavesql/weavedb/run_sql.d.ts +44 -8
  58. package/dist/weavesql/weavedb/run_sql.js +140 -93
  59. package/dist/weavesql/weavedb/suite_sql.d.ts +156 -30
  60. package/dist/weavesql/weavedb/suite_sql.js +274 -42
  61. package/dist/weavesql/weavedb/test_case_sql.d.ts +91 -27
  62. package/dist/weavesql/weavedb/test_case_sql.js +153 -36
  63. package/dist/weavesql/weavedb/test_script_sql.d.ts +91 -27
  64. package/dist/weavesql/weavedb/test_script_sql.js +153 -36
  65. package/dist/weavesql/weavedb/traceability_sql.d.ts +62 -4
  66. package/dist/weavesql/weavedb/traceability_sql.js +245 -37
  67. package/dist/weavesql/weavedb/workflow_sql.d.ts +30 -5
  68. package/dist/weavesql/weavedb/workflow_sql.js +76 -38
  69. package/package.json +1 -1
@@ -21,7 +21,7 @@ export declare function dataBindingScopeFromJSON(object: any): DataBindingScope;
21
21
  export declare function dataBindingScopeToJSON(object: DataBindingScope): string;
22
22
  export interface TestSuite {
23
23
  testSuiteId: string;
24
- workflowId: string;
24
+ projectId: string;
25
25
  name: string;
26
26
  description: string;
27
27
  status: SuiteStatus;
@@ -52,7 +52,7 @@ export interface TestSuiteItem {
52
52
  }
53
53
  export interface DataBindingTemplate {
54
54
  dataBindingTemplateId: string;
55
- workflowId: string;
55
+ projectId: string;
56
56
  name: string;
57
57
  description: string;
58
58
  targetScope: DataBindingScope;
@@ -110,7 +110,7 @@ function dataBindingScopeToJSON(object) {
110
110
  function createBaseTestSuite() {
111
111
  return {
112
112
  testSuiteId: "",
113
- workflowId: "",
113
+ projectId: "",
114
114
  name: "",
115
115
  description: "",
116
116
  status: 0,
@@ -128,8 +128,8 @@ exports.TestSuite = {
128
128
  if (message.testSuiteId !== "") {
129
129
  writer.uint32(10).string(message.testSuiteId);
130
130
  }
131
- if (message.workflowId !== "") {
132
- writer.uint32(18).string(message.workflowId);
131
+ if (message.projectId !== "") {
132
+ writer.uint32(18).string(message.projectId);
133
133
  }
134
134
  if (message.name !== "") {
135
135
  writer.uint32(26).string(message.name);
@@ -181,7 +181,7 @@ exports.TestSuite = {
181
181
  if (tag !== 18) {
182
182
  break;
183
183
  }
184
- message.workflowId = reader.string();
184
+ message.projectId = reader.string();
185
185
  continue;
186
186
  }
187
187
  case 3: {
@@ -269,10 +269,10 @@ exports.TestSuite = {
269
269
  : isSet(object.test_suite_id)
270
270
  ? globalThis.String(object.test_suite_id)
271
271
  : "",
272
- workflowId: isSet(object.workflowId)
273
- ? globalThis.String(object.workflowId)
274
- : isSet(object.workflow_id)
275
- ? globalThis.String(object.workflow_id)
272
+ projectId: isSet(object.projectId)
273
+ ? globalThis.String(object.projectId)
274
+ : isSet(object.project_id)
275
+ ? globalThis.String(object.project_id)
276
276
  : "",
277
277
  name: isSet(object.name) ? globalThis.String(object.name) : "",
278
278
  description: isSet(object.description) ? globalThis.String(object.description) : "",
@@ -311,8 +311,8 @@ exports.TestSuite = {
311
311
  if (message.testSuiteId !== "") {
312
312
  obj.testSuiteId = message.testSuiteId;
313
313
  }
314
- if (message.workflowId !== "") {
315
- obj.workflowId = message.workflowId;
314
+ if (message.projectId !== "") {
315
+ obj.projectId = message.projectId;
316
316
  }
317
317
  if (message.name !== "") {
318
318
  obj.name = message.name;
@@ -353,7 +353,7 @@ exports.TestSuite = {
353
353
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
354
354
  const message = createBaseTestSuite();
355
355
  message.testSuiteId = (_a = object.testSuiteId) !== null && _a !== void 0 ? _a : "";
356
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
356
+ message.projectId = (_b = object.projectId) !== null && _b !== void 0 ? _b : "";
357
357
  message.name = (_c = object.name) !== null && _c !== void 0 ? _c : "";
358
358
  message.description = (_d = object.description) !== null && _d !== void 0 ? _d : "";
359
359
  message.status = (_e = object.status) !== null && _e !== void 0 ? _e : 0;
@@ -582,7 +582,7 @@ exports.TestSuiteItem = {
582
582
  function createBaseDataBindingTemplate() {
583
583
  return {
584
584
  dataBindingTemplateId: "",
585
- workflowId: "",
585
+ projectId: "",
586
586
  name: "",
587
587
  description: "",
588
588
  targetScope: 0,
@@ -600,8 +600,8 @@ exports.DataBindingTemplate = {
600
600
  if (message.dataBindingTemplateId !== "") {
601
601
  writer.uint32(10).string(message.dataBindingTemplateId);
602
602
  }
603
- if (message.workflowId !== "") {
604
- writer.uint32(18).string(message.workflowId);
603
+ if (message.projectId !== "") {
604
+ writer.uint32(18).string(message.projectId);
605
605
  }
606
606
  if (message.name !== "") {
607
607
  writer.uint32(26).string(message.name);
@@ -653,7 +653,7 @@ exports.DataBindingTemplate = {
653
653
  if (tag !== 18) {
654
654
  break;
655
655
  }
656
- message.workflowId = reader.string();
656
+ message.projectId = reader.string();
657
657
  continue;
658
658
  }
659
659
  case 3: {
@@ -741,10 +741,10 @@ exports.DataBindingTemplate = {
741
741
  : isSet(object.data_binding_template_id)
742
742
  ? globalThis.String(object.data_binding_template_id)
743
743
  : "",
744
- workflowId: isSet(object.workflowId)
745
- ? globalThis.String(object.workflowId)
746
- : isSet(object.workflow_id)
747
- ? globalThis.String(object.workflow_id)
744
+ projectId: isSet(object.projectId)
745
+ ? globalThis.String(object.projectId)
746
+ : isSet(object.project_id)
747
+ ? globalThis.String(object.project_id)
748
748
  : "",
749
749
  name: isSet(object.name) ? globalThis.String(object.name) : "",
750
750
  description: isSet(object.description) ? globalThis.String(object.description) : "",
@@ -791,8 +791,8 @@ exports.DataBindingTemplate = {
791
791
  if (message.dataBindingTemplateId !== "") {
792
792
  obj.dataBindingTemplateId = message.dataBindingTemplateId;
793
793
  }
794
- if (message.workflowId !== "") {
795
- obj.workflowId = message.workflowId;
794
+ if (message.projectId !== "") {
795
+ obj.projectId = message.projectId;
796
796
  }
797
797
  if (message.name !== "") {
798
798
  obj.name = message.name;
@@ -833,7 +833,7 @@ exports.DataBindingTemplate = {
833
833
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
834
834
  const message = createBaseDataBindingTemplate();
835
835
  message.dataBindingTemplateId = (_a = object.dataBindingTemplateId) !== null && _a !== void 0 ? _a : "";
836
- message.workflowId = (_b = object.workflowId) !== null && _b !== void 0 ? _b : "";
836
+ message.projectId = (_b = object.projectId) !== null && _b !== void 0 ? _b : "";
837
837
  message.name = (_c = object.name) !== null && _c !== void 0 ? _c : "";
838
838
  message.description = (_d = object.description) !== null && _d !== void 0 ? _d : "";
839
839
  message.targetScope = (_e = object.targetScope) !== null && _e !== void 0 ? _e : 0;
@@ -3,7 +3,6 @@ import { TestCase, TestCaseRequirementLink, TestCaseStatus, TestCaseType, TestCa
3
3
  export declare const protobufPackage = "weaveapi.testcase.v1";
4
4
  export interface CreateTestCaseRequest {
5
5
  projectId: string;
6
- workflowId: string;
7
6
  caseKey: string;
8
7
  title: string;
9
8
  description: string;
@@ -19,7 +18,6 @@ export interface CreateTestCaseResponse {
19
18
  }
20
19
  export interface GetTestCaseRequest {
21
20
  projectId: string;
22
- workflowId: string;
23
21
  testCaseId: string;
24
22
  }
25
23
  export interface GetTestCaseResponse {
@@ -27,10 +25,10 @@ export interface GetTestCaseResponse {
27
25
  }
28
26
  export interface ListTestCasesRequest {
29
27
  projectId: string;
30
- workflowId: string;
31
28
  includeArchived: boolean;
32
29
  pageSize: number;
33
30
  pageToken: string;
31
+ workflowId: string;
34
32
  }
35
33
  export interface ListTestCasesResponse {
36
34
  testCases: TestCase[];
@@ -38,7 +36,6 @@ export interface ListTestCasesResponse {
38
36
  }
39
37
  export interface UpdateTestCaseRequest {
40
38
  projectId: string;
41
- workflowId: string;
42
39
  testCaseId: string;
43
40
  caseKey: string;
44
41
  title: string;
@@ -55,7 +52,6 @@ export interface UpdateTestCaseResponse {
55
52
  }
56
53
  export interface ArchiveTestCaseRequest {
57
54
  projectId: string;
58
- workflowId: string;
59
55
  testCaseId: string;
60
56
  }
61
57
  export interface ArchiveTestCaseResponse {
@@ -63,15 +59,52 @@ export interface ArchiveTestCaseResponse {
63
59
  }
64
60
  export interface DeleteTestCaseRequest {
65
61
  projectId: string;
66
- workflowId: string;
67
62
  testCaseId: string;
68
63
  }
69
64
  export interface DeleteTestCaseResponse {
70
65
  }
71
- export interface CreateTestCaseVersionRequest {
66
+ export interface AttachTestCaseToWorkflowRequest {
72
67
  projectId: string;
73
68
  workflowId: string;
74
69
  testCaseId: string;
70
+ attachedBy: string;
71
+ metadata: {
72
+ [key: string]: any;
73
+ } | undefined;
74
+ }
75
+ export interface AttachTestCaseToWorkflowResponse {
76
+ binding: WorkflowTestCaseBinding | undefined;
77
+ }
78
+ export interface DetachTestCaseFromWorkflowRequest {
79
+ projectId: string;
80
+ workflowId: string;
81
+ testCaseId: string;
82
+ }
83
+ export interface DetachTestCaseFromWorkflowResponse {
84
+ }
85
+ export interface ListWorkflowTestCaseBindingsRequest {
86
+ projectId: string;
87
+ workflowId: string;
88
+ pageSize: number;
89
+ pageToken: string;
90
+ }
91
+ export interface ListWorkflowTestCaseBindingsResponse {
92
+ bindings: WorkflowTestCaseBinding[];
93
+ nextPageToken: string;
94
+ }
95
+ export interface WorkflowTestCaseBinding {
96
+ projectId: string;
97
+ workflowId: string;
98
+ testCaseId: string;
99
+ attachedBy: string;
100
+ metadata: {
101
+ [key: string]: any;
102
+ } | undefined;
103
+ attachedAt: Date | undefined;
104
+ }
105
+ export interface CreateTestCaseVersionRequest {
106
+ projectId: string;
107
+ testCaseId: string;
75
108
  objective: string;
76
109
  preconditions: {
77
110
  [key: string]: any;
@@ -92,7 +125,6 @@ export interface CreateTestCaseVersionResponse {
92
125
  }
93
126
  export interface GetTestCaseVersionRequest {
94
127
  projectId: string;
95
- workflowId: string;
96
128
  testCaseId: string;
97
129
  testCaseVersionId: string;
98
130
  }
@@ -101,7 +133,6 @@ export interface GetTestCaseVersionResponse {
101
133
  }
102
134
  export interface ListTestCaseVersionsRequest {
103
135
  projectId: string;
104
- workflowId: string;
105
136
  testCaseId: string;
106
137
  pageSize: number;
107
138
  pageToken: string;
@@ -112,7 +143,6 @@ export interface ListTestCaseVersionsResponse {
112
143
  }
113
144
  export interface SetCurrentTestCaseVersionRequest {
114
145
  projectId: string;
115
- workflowId: string;
116
146
  testCaseId: string;
117
147
  testCaseVersionId: string;
118
148
  }
@@ -121,7 +151,6 @@ export interface SetCurrentTestCaseVersionResponse {
121
151
  }
122
152
  export interface LinkTestCaseRequirementRequest {
123
153
  projectId: string;
124
- workflowId: string;
125
154
  testCaseId: string;
126
155
  requirementId: string;
127
156
  coverageType: string;
@@ -132,7 +161,6 @@ export interface LinkTestCaseRequirementResponse {
132
161
  }
133
162
  export interface UnlinkTestCaseRequirementRequest {
134
163
  projectId: string;
135
- workflowId: string;
136
164
  testCaseId: string;
137
165
  requirementId: string;
138
166
  }
@@ -140,7 +168,6 @@ export interface UnlinkTestCaseRequirementResponse {
140
168
  }
141
169
  export interface ListTestCaseRequirementsRequest {
142
170
  projectId: string;
143
- workflowId: string;
144
171
  testCaseId: string;
145
172
  }
146
173
  export interface ListTestCaseRequirementsResponse {
@@ -148,11 +175,11 @@ export interface ListTestCaseRequirementsResponse {
148
175
  }
149
176
  export interface GenerateTestCasesRequest {
150
177
  projectId: string;
151
- workflowId: string;
152
178
  requirementIds: string[];
153
179
  options: {
154
180
  [key: string]: any;
155
181
  } | undefined;
182
+ targetWorkflowId: string;
156
183
  }
157
184
  export interface GenerateTestCasesResponse {
158
185
  testCases: TestCase[];
@@ -169,6 +196,13 @@ export declare const ArchiveTestCaseRequest: MessageFns<ArchiveTestCaseRequest>;
169
196
  export declare const ArchiveTestCaseResponse: MessageFns<ArchiveTestCaseResponse>;
170
197
  export declare const DeleteTestCaseRequest: MessageFns<DeleteTestCaseRequest>;
171
198
  export declare const DeleteTestCaseResponse: MessageFns<DeleteTestCaseResponse>;
199
+ export declare const AttachTestCaseToWorkflowRequest: MessageFns<AttachTestCaseToWorkflowRequest>;
200
+ export declare const AttachTestCaseToWorkflowResponse: MessageFns<AttachTestCaseToWorkflowResponse>;
201
+ export declare const DetachTestCaseFromWorkflowRequest: MessageFns<DetachTestCaseFromWorkflowRequest>;
202
+ export declare const DetachTestCaseFromWorkflowResponse: MessageFns<DetachTestCaseFromWorkflowResponse>;
203
+ export declare const ListWorkflowTestCaseBindingsRequest: MessageFns<ListWorkflowTestCaseBindingsRequest>;
204
+ export declare const ListWorkflowTestCaseBindingsResponse: MessageFns<ListWorkflowTestCaseBindingsResponse>;
205
+ export declare const WorkflowTestCaseBinding: MessageFns<WorkflowTestCaseBinding>;
172
206
  export declare const CreateTestCaseVersionRequest: MessageFns<CreateTestCaseVersionRequest>;
173
207
  export declare const CreateTestCaseVersionResponse: MessageFns<CreateTestCaseVersionResponse>;
174
208
  export declare const GetTestCaseVersionRequest: MessageFns<GetTestCaseVersionRequest>;
@@ -192,6 +226,9 @@ export interface TestCaseService {
192
226
  UpdateTestCase(request: UpdateTestCaseRequest): Promise<UpdateTestCaseResponse>;
193
227
  ArchiveTestCase(request: ArchiveTestCaseRequest): Promise<ArchiveTestCaseResponse>;
194
228
  DeleteTestCase(request: DeleteTestCaseRequest): Promise<DeleteTestCaseResponse>;
229
+ AttachTestCaseToWorkflow(request: AttachTestCaseToWorkflowRequest): Promise<AttachTestCaseToWorkflowResponse>;
230
+ DetachTestCaseFromWorkflow(request: DetachTestCaseFromWorkflowRequest): Promise<DetachTestCaseFromWorkflowResponse>;
231
+ ListWorkflowTestCaseBindings(request: ListWorkflowTestCaseBindingsRequest): Promise<ListWorkflowTestCaseBindingsResponse>;
195
232
  CreateTestCaseVersion(request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
196
233
  GetTestCaseVersion(request: GetTestCaseVersionRequest): Promise<GetTestCaseVersionResponse>;
197
234
  ListTestCaseVersions(request: ListTestCaseVersionsRequest): Promise<ListTestCaseVersionsResponse>;
@@ -214,6 +251,9 @@ export declare class TestCaseServiceClientImpl implements TestCaseService {
214
251
  UpdateTestCase(request: UpdateTestCaseRequest): Promise<UpdateTestCaseResponse>;
215
252
  ArchiveTestCase(request: ArchiveTestCaseRequest): Promise<ArchiveTestCaseResponse>;
216
253
  DeleteTestCase(request: DeleteTestCaseRequest): Promise<DeleteTestCaseResponse>;
254
+ AttachTestCaseToWorkflow(request: AttachTestCaseToWorkflowRequest): Promise<AttachTestCaseToWorkflowResponse>;
255
+ DetachTestCaseFromWorkflow(request: DetachTestCaseFromWorkflowRequest): Promise<DetachTestCaseFromWorkflowResponse>;
256
+ ListWorkflowTestCaseBindings(request: ListWorkflowTestCaseBindingsRequest): Promise<ListWorkflowTestCaseBindingsResponse>;
217
257
  CreateTestCaseVersion(request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
218
258
  GetTestCaseVersion(request: GetTestCaseVersionRequest): Promise<GetTestCaseVersionResponse>;
219
259
  ListTestCaseVersions(request: ListTestCaseVersionsRequest): Promise<ListTestCaseVersionsResponse>;
@@ -300,6 +340,42 @@ export declare const TestCaseServiceDefinition: {
300
340
  };
301
341
  };
302
342
  };
343
+ readonly attachTestCaseToWorkflow: {
344
+ readonly name: "AttachTestCaseToWorkflow";
345
+ readonly requestType: MessageFns<AttachTestCaseToWorkflowRequest>;
346
+ readonly requestStream: false;
347
+ readonly responseType: MessageFns<AttachTestCaseToWorkflowResponse>;
348
+ readonly responseStream: false;
349
+ readonly options: {
350
+ readonly _unknownFields: {
351
+ readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
352
+ };
353
+ };
354
+ };
355
+ readonly detachTestCaseFromWorkflow: {
356
+ readonly name: "DetachTestCaseFromWorkflow";
357
+ readonly requestType: MessageFns<DetachTestCaseFromWorkflowRequest>;
358
+ readonly requestStream: false;
359
+ readonly responseType: MessageFns<DetachTestCaseFromWorkflowResponse>;
360
+ readonly responseStream: false;
361
+ readonly options: {
362
+ readonly _unknownFields: {
363
+ readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
364
+ };
365
+ };
366
+ };
367
+ readonly listWorkflowTestCaseBindings: {
368
+ readonly name: "ListWorkflowTestCaseBindings";
369
+ readonly requestType: MessageFns<ListWorkflowTestCaseBindingsRequest>;
370
+ readonly requestStream: false;
371
+ readonly responseType: MessageFns<ListWorkflowTestCaseBindingsResponse>;
372
+ readonly responseStream: false;
373
+ readonly options: {
374
+ readonly _unknownFields: {
375
+ readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
376
+ };
377
+ };
378
+ };
303
379
  readonly createTestCaseVersion: {
304
380
  readonly name: "CreateTestCaseVersion";
305
381
  readonly requestType: MessageFns<CreateTestCaseVersionRequest>;