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.
- package/dist/weaveapi/data/v1/data.pb.d.ts +1 -1
- package/dist/weaveapi/data/v1/data.pb.js +11 -11
- package/dist/weaveapi/data/v1/service.pb.d.ts +89 -6
- package/dist/weaveapi/data/v1/service.pb.js +1195 -364
- package/dist/weaveapi/input/v1/input.pb.d.ts +1 -1
- package/dist/weaveapi/input/v1/input.pb.js +11 -11
- package/dist/weaveapi/input/v1/service.pb.d.ts +89 -10
- package/dist/weaveapi/input/v1/service.pb.js +1253 -642
- package/dist/weaveapi/integration/v1/integration.pb.d.ts +1 -1
- package/dist/weaveapi/integration/v1/integration.pb.js +11 -11
- package/dist/weaveapi/integration/v1/service.pb.d.ts +89 -7
- package/dist/weaveapi/integration/v1/service.pb.js +1164 -390
- package/dist/weaveapi/project/v1/project.pb.d.ts +1 -0
- package/dist/weaveapi/project/v1/project.pb.js +17 -1
- package/dist/weaveapi/project/v1/service.pb.d.ts +25 -0
- package/dist/weaveapi/project/v1/service.pb.js +248 -5
- package/dist/weaveapi/report/v1/report.pb.d.ts +2 -0
- package/dist/weaveapi/report/v1/report.pb.js +42 -2
- package/dist/weaveapi/report/v1/service.pb.d.ts +6 -6
- package/dist/weaveapi/report/v1/service.pb.js +416 -121
- package/dist/weaveapi/requirement/v1/requirement.pb.d.ts +1 -1
- package/dist/weaveapi/requirement/v1/requirement.pb.js +11 -11
- package/dist/weaveapi/requirement/v1/service.pb.d.ts +90 -10
- package/dist/weaveapi/requirement/v1/service.pb.js +1261 -601
- package/dist/weaveapi/run/v1/run.pb.d.ts +1 -0
- package/dist/weaveapi/run/v1/run.pb.js +21 -1
- package/dist/weaveapi/run/v1/service.pb.d.ts +6 -6
- package/dist/weaveapi/run/v1/service.pb.js +448 -126
- package/dist/weaveapi/script/v1/script.pb.d.ts +1 -1
- package/dist/weaveapi/script/v1/script.pb.js +11 -11
- package/dist/weaveapi/script/v1/service.pb.d.ts +90 -14
- package/dist/weaveapi/script/v1/service.pb.js +1404 -930
- package/dist/weaveapi/suite/v1/service.pb.d.ts +178 -12
- package/dist/weaveapi/suite/v1/service.pb.js +2631 -979
- package/dist/weaveapi/suite/v1/suite.pb.d.ts +2 -2
- package/dist/weaveapi/suite/v1/suite.pb.js +22 -22
- package/dist/weaveapi/testcase/v1/service.pb.d.ts +90 -14
- package/dist/weaveapi/testcase/v1/service.pb.js +1332 -856
- package/dist/weaveapi/testcase/v1/testcase.pb.d.ts +1 -1
- package/dist/weaveapi/testcase/v1/testcase.pb.js +11 -11
- package/dist/weaveapi/workflow/v1/service.pb.d.ts +26 -0
- package/dist/weaveapi/workflow/v1/service.pb.js +293 -5
- package/dist/weaveapi/workflow/v1/workflow.pb.d.ts +1 -0
- package/dist/weaveapi/workflow/v1/workflow.pb.js +17 -1
- package/dist/weavesql/weavedb/data_asset_sql.d.ts +81 -16
- package/dist/weavesql/weavedb/data_asset_sql.js +142 -24
- package/dist/weavesql/weavedb/input_sql.d.ts +88 -25
- package/dist/weavesql/weavedb/input_sql.js +150 -34
- package/dist/weavesql/weavedb/integration_sql.d.ts +85 -19
- package/dist/weavesql/weavedb/integration_sql.js +147 -28
- package/dist/weavesql/weavedb/project_sql.d.ts +29 -5
- package/dist/weavesql/weavedb/project_sql.js +73 -37
- package/dist/weavesql/weavedb/report_sql.d.ts +61 -7
- package/dist/weavesql/weavedb/report_sql.js +157 -81
- package/dist/weavesql/weavedb/requirement_sql.d.ts +83 -20
- package/dist/weavesql/weavedb/requirement_sql.js +144 -28
- package/dist/weavesql/weavedb/run_sql.d.ts +44 -8
- package/dist/weavesql/weavedb/run_sql.js +140 -93
- package/dist/weavesql/weavedb/suite_sql.d.ts +156 -30
- package/dist/weavesql/weavedb/suite_sql.js +274 -42
- package/dist/weavesql/weavedb/test_case_sql.d.ts +91 -27
- package/dist/weavesql/weavedb/test_case_sql.js +153 -36
- package/dist/weavesql/weavedb/test_script_sql.d.ts +91 -27
- package/dist/weavesql/weavedb/test_script_sql.js +153 -36
- package/dist/weavesql/weavedb/traceability_sql.d.ts +62 -4
- package/dist/weavesql/weavedb/traceability_sql.js +245 -37
- package/dist/weavesql/weavedb/workflow_sql.d.ts +30 -5
- package/dist/weavesql/weavedb/workflow_sql.js +76 -38
- package/package.json +1 -1
|
@@ -3,7 +3,6 @@ import { DataBindingScope, DataBindingTemplate, SuiteStatus, TestSuite, TestSuit
|
|
|
3
3
|
export declare const protobufPackage = "weaveapi.suite.v1";
|
|
4
4
|
export interface CreateTestSuiteRequest {
|
|
5
5
|
projectId: string;
|
|
6
|
-
workflowId: string;
|
|
7
6
|
name: string;
|
|
8
7
|
description: string;
|
|
9
8
|
status: SuiteStatus;
|
|
@@ -20,7 +19,6 @@ export interface CreateTestSuiteResponse {
|
|
|
20
19
|
}
|
|
21
20
|
export interface GetTestSuiteRequest {
|
|
22
21
|
projectId: string;
|
|
23
|
-
workflowId: string;
|
|
24
22
|
testSuiteId: string;
|
|
25
23
|
}
|
|
26
24
|
export interface GetTestSuiteResponse {
|
|
@@ -28,10 +26,10 @@ export interface GetTestSuiteResponse {
|
|
|
28
26
|
}
|
|
29
27
|
export interface ListTestSuitesRequest {
|
|
30
28
|
projectId: string;
|
|
31
|
-
workflowId: string;
|
|
32
29
|
includeArchived: boolean;
|
|
33
30
|
pageSize: number;
|
|
34
31
|
pageToken: string;
|
|
32
|
+
workflowId: string;
|
|
35
33
|
}
|
|
36
34
|
export interface ListTestSuitesResponse {
|
|
37
35
|
testSuites: TestSuite[];
|
|
@@ -39,7 +37,6 @@ export interface ListTestSuitesResponse {
|
|
|
39
37
|
}
|
|
40
38
|
export interface UpdateTestSuiteRequest {
|
|
41
39
|
projectId: string;
|
|
42
|
-
workflowId: string;
|
|
43
40
|
testSuiteId: string;
|
|
44
41
|
name: string;
|
|
45
42
|
description: string;
|
|
@@ -58,7 +55,6 @@ export interface UpdateTestSuiteResponse {
|
|
|
58
55
|
}
|
|
59
56
|
export interface ArchiveTestSuiteRequest {
|
|
60
57
|
projectId: string;
|
|
61
|
-
workflowId: string;
|
|
62
58
|
testSuiteId: string;
|
|
63
59
|
}
|
|
64
60
|
export interface ArchiveTestSuiteResponse {
|
|
@@ -66,15 +62,52 @@ export interface ArchiveTestSuiteResponse {
|
|
|
66
62
|
}
|
|
67
63
|
export interface DeleteTestSuiteRequest {
|
|
68
64
|
projectId: string;
|
|
69
|
-
workflowId: string;
|
|
70
65
|
testSuiteId: string;
|
|
71
66
|
}
|
|
72
67
|
export interface DeleteTestSuiteResponse {
|
|
73
68
|
}
|
|
74
|
-
export interface
|
|
69
|
+
export interface AttachTestSuiteToWorkflowRequest {
|
|
75
70
|
projectId: string;
|
|
76
71
|
workflowId: string;
|
|
77
72
|
testSuiteId: string;
|
|
73
|
+
attachedBy: string;
|
|
74
|
+
metadata: {
|
|
75
|
+
[key: string]: any;
|
|
76
|
+
} | undefined;
|
|
77
|
+
}
|
|
78
|
+
export interface AttachTestSuiteToWorkflowResponse {
|
|
79
|
+
binding: WorkflowTestSuiteBinding | undefined;
|
|
80
|
+
}
|
|
81
|
+
export interface DetachTestSuiteFromWorkflowRequest {
|
|
82
|
+
projectId: string;
|
|
83
|
+
workflowId: string;
|
|
84
|
+
testSuiteId: string;
|
|
85
|
+
}
|
|
86
|
+
export interface DetachTestSuiteFromWorkflowResponse {
|
|
87
|
+
}
|
|
88
|
+
export interface ListWorkflowTestSuiteBindingsRequest {
|
|
89
|
+
projectId: string;
|
|
90
|
+
workflowId: string;
|
|
91
|
+
pageSize: number;
|
|
92
|
+
pageToken: string;
|
|
93
|
+
}
|
|
94
|
+
export interface ListWorkflowTestSuiteBindingsResponse {
|
|
95
|
+
bindings: WorkflowTestSuiteBinding[];
|
|
96
|
+
nextPageToken: string;
|
|
97
|
+
}
|
|
98
|
+
export interface WorkflowTestSuiteBinding {
|
|
99
|
+
projectId: string;
|
|
100
|
+
workflowId: string;
|
|
101
|
+
testSuiteId: string;
|
|
102
|
+
attachedBy: string;
|
|
103
|
+
metadata: {
|
|
104
|
+
[key: string]: any;
|
|
105
|
+
} | undefined;
|
|
106
|
+
attachedAt: Date | undefined;
|
|
107
|
+
}
|
|
108
|
+
export interface UpsertTestSuiteItemRequest {
|
|
109
|
+
projectId: string;
|
|
110
|
+
testSuiteId: string;
|
|
78
111
|
testSuiteItemId: string;
|
|
79
112
|
testCaseId: string;
|
|
80
113
|
testScriptId: string;
|
|
@@ -89,7 +122,6 @@ export interface UpsertTestSuiteItemResponse {
|
|
|
89
122
|
}
|
|
90
123
|
export interface ListTestSuiteItemsRequest {
|
|
91
124
|
projectId: string;
|
|
92
|
-
workflowId: string;
|
|
93
125
|
testSuiteId: string;
|
|
94
126
|
}
|
|
95
127
|
export interface ListTestSuiteItemsResponse {
|
|
@@ -97,7 +129,6 @@ export interface ListTestSuiteItemsResponse {
|
|
|
97
129
|
}
|
|
98
130
|
export interface DeleteTestSuiteItemRequest {
|
|
99
131
|
projectId: string;
|
|
100
|
-
workflowId: string;
|
|
101
132
|
testSuiteId: string;
|
|
102
133
|
testSuiteItemId: string;
|
|
103
134
|
}
|
|
@@ -105,7 +136,6 @@ export interface DeleteTestSuiteItemResponse {
|
|
|
105
136
|
}
|
|
106
137
|
export interface UpsertDataBindingTemplateRequest {
|
|
107
138
|
projectId: string;
|
|
108
|
-
workflowId: string;
|
|
109
139
|
dataBindingTemplateId: string;
|
|
110
140
|
name: string;
|
|
111
141
|
description: string;
|
|
@@ -124,10 +154,10 @@ export interface UpsertDataBindingTemplateResponse {
|
|
|
124
154
|
}
|
|
125
155
|
export interface ListDataBindingTemplatesRequest {
|
|
126
156
|
projectId: string;
|
|
127
|
-
workflowId: string;
|
|
128
157
|
includeArchived: boolean;
|
|
129
158
|
pageSize: number;
|
|
130
159
|
pageToken: string;
|
|
160
|
+
workflowId: string;
|
|
131
161
|
}
|
|
132
162
|
export interface ListDataBindingTemplatesResponse {
|
|
133
163
|
dataBindingTemplates: DataBindingTemplate[];
|
|
@@ -135,11 +165,49 @@ export interface ListDataBindingTemplatesResponse {
|
|
|
135
165
|
}
|
|
136
166
|
export interface DeleteDataBindingTemplateRequest {
|
|
137
167
|
projectId: string;
|
|
138
|
-
workflowId: string;
|
|
139
168
|
dataBindingTemplateId: string;
|
|
140
169
|
}
|
|
141
170
|
export interface DeleteDataBindingTemplateResponse {
|
|
142
171
|
}
|
|
172
|
+
export interface AttachDataBindingTemplateToWorkflowRequest {
|
|
173
|
+
projectId: string;
|
|
174
|
+
workflowId: string;
|
|
175
|
+
dataBindingTemplateId: string;
|
|
176
|
+
attachedBy: string;
|
|
177
|
+
metadata: {
|
|
178
|
+
[key: string]: any;
|
|
179
|
+
} | undefined;
|
|
180
|
+
}
|
|
181
|
+
export interface AttachDataBindingTemplateToWorkflowResponse {
|
|
182
|
+
binding: WorkflowDataBindingTemplateBinding | undefined;
|
|
183
|
+
}
|
|
184
|
+
export interface DetachDataBindingTemplateFromWorkflowRequest {
|
|
185
|
+
projectId: string;
|
|
186
|
+
workflowId: string;
|
|
187
|
+
dataBindingTemplateId: string;
|
|
188
|
+
}
|
|
189
|
+
export interface DetachDataBindingTemplateFromWorkflowResponse {
|
|
190
|
+
}
|
|
191
|
+
export interface ListWorkflowDataBindingTemplateBindingsRequest {
|
|
192
|
+
projectId: string;
|
|
193
|
+
workflowId: string;
|
|
194
|
+
pageSize: number;
|
|
195
|
+
pageToken: string;
|
|
196
|
+
}
|
|
197
|
+
export interface ListWorkflowDataBindingTemplateBindingsResponse {
|
|
198
|
+
bindings: WorkflowDataBindingTemplateBinding[];
|
|
199
|
+
nextPageToken: string;
|
|
200
|
+
}
|
|
201
|
+
export interface WorkflowDataBindingTemplateBinding {
|
|
202
|
+
projectId: string;
|
|
203
|
+
workflowId: string;
|
|
204
|
+
dataBindingTemplateId: string;
|
|
205
|
+
attachedBy: string;
|
|
206
|
+
metadata: {
|
|
207
|
+
[key: string]: any;
|
|
208
|
+
} | undefined;
|
|
209
|
+
attachedAt: Date | undefined;
|
|
210
|
+
}
|
|
143
211
|
export declare const CreateTestSuiteRequest: MessageFns<CreateTestSuiteRequest>;
|
|
144
212
|
export declare const CreateTestSuiteResponse: MessageFns<CreateTestSuiteResponse>;
|
|
145
213
|
export declare const GetTestSuiteRequest: MessageFns<GetTestSuiteRequest>;
|
|
@@ -152,6 +220,13 @@ export declare const ArchiveTestSuiteRequest: MessageFns<ArchiveTestSuiteRequest
|
|
|
152
220
|
export declare const ArchiveTestSuiteResponse: MessageFns<ArchiveTestSuiteResponse>;
|
|
153
221
|
export declare const DeleteTestSuiteRequest: MessageFns<DeleteTestSuiteRequest>;
|
|
154
222
|
export declare const DeleteTestSuiteResponse: MessageFns<DeleteTestSuiteResponse>;
|
|
223
|
+
export declare const AttachTestSuiteToWorkflowRequest: MessageFns<AttachTestSuiteToWorkflowRequest>;
|
|
224
|
+
export declare const AttachTestSuiteToWorkflowResponse: MessageFns<AttachTestSuiteToWorkflowResponse>;
|
|
225
|
+
export declare const DetachTestSuiteFromWorkflowRequest: MessageFns<DetachTestSuiteFromWorkflowRequest>;
|
|
226
|
+
export declare const DetachTestSuiteFromWorkflowResponse: MessageFns<DetachTestSuiteFromWorkflowResponse>;
|
|
227
|
+
export declare const ListWorkflowTestSuiteBindingsRequest: MessageFns<ListWorkflowTestSuiteBindingsRequest>;
|
|
228
|
+
export declare const ListWorkflowTestSuiteBindingsResponse: MessageFns<ListWorkflowTestSuiteBindingsResponse>;
|
|
229
|
+
export declare const WorkflowTestSuiteBinding: MessageFns<WorkflowTestSuiteBinding>;
|
|
155
230
|
export declare const UpsertTestSuiteItemRequest: MessageFns<UpsertTestSuiteItemRequest>;
|
|
156
231
|
export declare const UpsertTestSuiteItemResponse: MessageFns<UpsertTestSuiteItemResponse>;
|
|
157
232
|
export declare const ListTestSuiteItemsRequest: MessageFns<ListTestSuiteItemsRequest>;
|
|
@@ -164,6 +239,13 @@ export declare const ListDataBindingTemplatesRequest: MessageFns<ListDataBinding
|
|
|
164
239
|
export declare const ListDataBindingTemplatesResponse: MessageFns<ListDataBindingTemplatesResponse>;
|
|
165
240
|
export declare const DeleteDataBindingTemplateRequest: MessageFns<DeleteDataBindingTemplateRequest>;
|
|
166
241
|
export declare const DeleteDataBindingTemplateResponse: MessageFns<DeleteDataBindingTemplateResponse>;
|
|
242
|
+
export declare const AttachDataBindingTemplateToWorkflowRequest: MessageFns<AttachDataBindingTemplateToWorkflowRequest>;
|
|
243
|
+
export declare const AttachDataBindingTemplateToWorkflowResponse: MessageFns<AttachDataBindingTemplateToWorkflowResponse>;
|
|
244
|
+
export declare const DetachDataBindingTemplateFromWorkflowRequest: MessageFns<DetachDataBindingTemplateFromWorkflowRequest>;
|
|
245
|
+
export declare const DetachDataBindingTemplateFromWorkflowResponse: MessageFns<DetachDataBindingTemplateFromWorkflowResponse>;
|
|
246
|
+
export declare const ListWorkflowDataBindingTemplateBindingsRequest: MessageFns<ListWorkflowDataBindingTemplateBindingsRequest>;
|
|
247
|
+
export declare const ListWorkflowDataBindingTemplateBindingsResponse: MessageFns<ListWorkflowDataBindingTemplateBindingsResponse>;
|
|
248
|
+
export declare const WorkflowDataBindingTemplateBinding: MessageFns<WorkflowDataBindingTemplateBinding>;
|
|
167
249
|
export interface SuiteService {
|
|
168
250
|
CreateTestSuite(request: CreateTestSuiteRequest): Promise<CreateTestSuiteResponse>;
|
|
169
251
|
GetTestSuite(request: GetTestSuiteRequest): Promise<GetTestSuiteResponse>;
|
|
@@ -171,12 +253,18 @@ export interface SuiteService {
|
|
|
171
253
|
UpdateTestSuite(request: UpdateTestSuiteRequest): Promise<UpdateTestSuiteResponse>;
|
|
172
254
|
ArchiveTestSuite(request: ArchiveTestSuiteRequest): Promise<ArchiveTestSuiteResponse>;
|
|
173
255
|
DeleteTestSuite(request: DeleteTestSuiteRequest): Promise<DeleteTestSuiteResponse>;
|
|
256
|
+
AttachTestSuiteToWorkflow(request: AttachTestSuiteToWorkflowRequest): Promise<AttachTestSuiteToWorkflowResponse>;
|
|
257
|
+
DetachTestSuiteFromWorkflow(request: DetachTestSuiteFromWorkflowRequest): Promise<DetachTestSuiteFromWorkflowResponse>;
|
|
258
|
+
ListWorkflowTestSuiteBindings(request: ListWorkflowTestSuiteBindingsRequest): Promise<ListWorkflowTestSuiteBindingsResponse>;
|
|
174
259
|
UpsertTestSuiteItem(request: UpsertTestSuiteItemRequest): Promise<UpsertTestSuiteItemResponse>;
|
|
175
260
|
ListTestSuiteItems(request: ListTestSuiteItemsRequest): Promise<ListTestSuiteItemsResponse>;
|
|
176
261
|
DeleteTestSuiteItem(request: DeleteTestSuiteItemRequest): Promise<DeleteTestSuiteItemResponse>;
|
|
177
262
|
UpsertDataBindingTemplate(request: UpsertDataBindingTemplateRequest): Promise<UpsertDataBindingTemplateResponse>;
|
|
178
263
|
ListDataBindingTemplates(request: ListDataBindingTemplatesRequest): Promise<ListDataBindingTemplatesResponse>;
|
|
179
264
|
DeleteDataBindingTemplate(request: DeleteDataBindingTemplateRequest): Promise<DeleteDataBindingTemplateResponse>;
|
|
265
|
+
AttachDataBindingTemplateToWorkflow(request: AttachDataBindingTemplateToWorkflowRequest): Promise<AttachDataBindingTemplateToWorkflowResponse>;
|
|
266
|
+
DetachDataBindingTemplateFromWorkflow(request: DetachDataBindingTemplateFromWorkflowRequest): Promise<DetachDataBindingTemplateFromWorkflowResponse>;
|
|
267
|
+
ListWorkflowDataBindingTemplateBindings(request: ListWorkflowDataBindingTemplateBindingsRequest): Promise<ListWorkflowDataBindingTemplateBindingsResponse>;
|
|
180
268
|
}
|
|
181
269
|
export declare const SuiteServiceServiceName = "weaveapi.suite.v1.SuiteService";
|
|
182
270
|
export declare class SuiteServiceClientImpl implements SuiteService {
|
|
@@ -191,12 +279,18 @@ export declare class SuiteServiceClientImpl implements SuiteService {
|
|
|
191
279
|
UpdateTestSuite(request: UpdateTestSuiteRequest): Promise<UpdateTestSuiteResponse>;
|
|
192
280
|
ArchiveTestSuite(request: ArchiveTestSuiteRequest): Promise<ArchiveTestSuiteResponse>;
|
|
193
281
|
DeleteTestSuite(request: DeleteTestSuiteRequest): Promise<DeleteTestSuiteResponse>;
|
|
282
|
+
AttachTestSuiteToWorkflow(request: AttachTestSuiteToWorkflowRequest): Promise<AttachTestSuiteToWorkflowResponse>;
|
|
283
|
+
DetachTestSuiteFromWorkflow(request: DetachTestSuiteFromWorkflowRequest): Promise<DetachTestSuiteFromWorkflowResponse>;
|
|
284
|
+
ListWorkflowTestSuiteBindings(request: ListWorkflowTestSuiteBindingsRequest): Promise<ListWorkflowTestSuiteBindingsResponse>;
|
|
194
285
|
UpsertTestSuiteItem(request: UpsertTestSuiteItemRequest): Promise<UpsertTestSuiteItemResponse>;
|
|
195
286
|
ListTestSuiteItems(request: ListTestSuiteItemsRequest): Promise<ListTestSuiteItemsResponse>;
|
|
196
287
|
DeleteTestSuiteItem(request: DeleteTestSuiteItemRequest): Promise<DeleteTestSuiteItemResponse>;
|
|
197
288
|
UpsertDataBindingTemplate(request: UpsertDataBindingTemplateRequest): Promise<UpsertDataBindingTemplateResponse>;
|
|
198
289
|
ListDataBindingTemplates(request: ListDataBindingTemplatesRequest): Promise<ListDataBindingTemplatesResponse>;
|
|
199
290
|
DeleteDataBindingTemplate(request: DeleteDataBindingTemplateRequest): Promise<DeleteDataBindingTemplateResponse>;
|
|
291
|
+
AttachDataBindingTemplateToWorkflow(request: AttachDataBindingTemplateToWorkflowRequest): Promise<AttachDataBindingTemplateToWorkflowResponse>;
|
|
292
|
+
DetachDataBindingTemplateFromWorkflow(request: DetachDataBindingTemplateFromWorkflowRequest): Promise<DetachDataBindingTemplateFromWorkflowResponse>;
|
|
293
|
+
ListWorkflowDataBindingTemplateBindings(request: ListWorkflowDataBindingTemplateBindingsRequest): Promise<ListWorkflowDataBindingTemplateBindingsResponse>;
|
|
200
294
|
}
|
|
201
295
|
export type SuiteServiceDefinition = typeof SuiteServiceDefinition;
|
|
202
296
|
export declare const SuiteServiceDefinition: {
|
|
@@ -275,6 +369,42 @@ export declare const SuiteServiceDefinition: {
|
|
|
275
369
|
};
|
|
276
370
|
};
|
|
277
371
|
};
|
|
372
|
+
readonly attachTestSuiteToWorkflow: {
|
|
373
|
+
readonly name: "AttachTestSuiteToWorkflow";
|
|
374
|
+
readonly requestType: MessageFns<AttachTestSuiteToWorkflowRequest>;
|
|
375
|
+
readonly requestStream: false;
|
|
376
|
+
readonly responseType: MessageFns<AttachTestSuiteToWorkflowResponse>;
|
|
377
|
+
readonly responseStream: false;
|
|
378
|
+
readonly options: {
|
|
379
|
+
readonly _unknownFields: {
|
|
380
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
381
|
+
};
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
readonly detachTestSuiteFromWorkflow: {
|
|
385
|
+
readonly name: "DetachTestSuiteFromWorkflow";
|
|
386
|
+
readonly requestType: MessageFns<DetachTestSuiteFromWorkflowRequest>;
|
|
387
|
+
readonly requestStream: false;
|
|
388
|
+
readonly responseType: MessageFns<DetachTestSuiteFromWorkflowResponse>;
|
|
389
|
+
readonly responseStream: false;
|
|
390
|
+
readonly options: {
|
|
391
|
+
readonly _unknownFields: {
|
|
392
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
readonly listWorkflowTestSuiteBindings: {
|
|
397
|
+
readonly name: "ListWorkflowTestSuiteBindings";
|
|
398
|
+
readonly requestType: MessageFns<ListWorkflowTestSuiteBindingsRequest>;
|
|
399
|
+
readonly requestStream: false;
|
|
400
|
+
readonly responseType: MessageFns<ListWorkflowTestSuiteBindingsResponse>;
|
|
401
|
+
readonly responseStream: false;
|
|
402
|
+
readonly options: {
|
|
403
|
+
readonly _unknownFields: {
|
|
404
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
405
|
+
};
|
|
406
|
+
};
|
|
407
|
+
};
|
|
278
408
|
readonly upsertTestSuiteItem: {
|
|
279
409
|
readonly name: "UpsertTestSuiteItem";
|
|
280
410
|
readonly requestType: MessageFns<UpsertTestSuiteItemRequest>;
|
|
@@ -347,6 +477,42 @@ export declare const SuiteServiceDefinition: {
|
|
|
347
477
|
};
|
|
348
478
|
};
|
|
349
479
|
};
|
|
480
|
+
readonly attachDataBindingTemplateToWorkflow: {
|
|
481
|
+
readonly name: "AttachDataBindingTemplateToWorkflow";
|
|
482
|
+
readonly requestType: MessageFns<AttachDataBindingTemplateToWorkflowRequest>;
|
|
483
|
+
readonly requestStream: false;
|
|
484
|
+
readonly responseType: MessageFns<AttachDataBindingTemplateToWorkflowResponse>;
|
|
485
|
+
readonly responseStream: false;
|
|
486
|
+
readonly options: {
|
|
487
|
+
readonly _unknownFields: {
|
|
488
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
489
|
+
};
|
|
490
|
+
};
|
|
491
|
+
};
|
|
492
|
+
readonly detachDataBindingTemplateFromWorkflow: {
|
|
493
|
+
readonly name: "DetachDataBindingTemplateFromWorkflow";
|
|
494
|
+
readonly requestType: MessageFns<DetachDataBindingTemplateFromWorkflowRequest>;
|
|
495
|
+
readonly requestStream: false;
|
|
496
|
+
readonly responseType: MessageFns<DetachDataBindingTemplateFromWorkflowResponse>;
|
|
497
|
+
readonly responseStream: false;
|
|
498
|
+
readonly options: {
|
|
499
|
+
readonly _unknownFields: {
|
|
500
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
501
|
+
};
|
|
502
|
+
};
|
|
503
|
+
};
|
|
504
|
+
readonly listWorkflowDataBindingTemplateBindings: {
|
|
505
|
+
readonly name: "ListWorkflowDataBindingTemplateBindings";
|
|
506
|
+
readonly requestType: MessageFns<ListWorkflowDataBindingTemplateBindingsRequest>;
|
|
507
|
+
readonly requestStream: false;
|
|
508
|
+
readonly responseType: MessageFns<ListWorkflowDataBindingTemplateBindingsResponse>;
|
|
509
|
+
readonly responseStream: false;
|
|
510
|
+
readonly options: {
|
|
511
|
+
readonly _unknownFields: {
|
|
512
|
+
readonly 578365826: readonly [Uint8Array<ArrayBuffer>];
|
|
513
|
+
};
|
|
514
|
+
};
|
|
515
|
+
};
|
|
350
516
|
};
|
|
351
517
|
};
|
|
352
518
|
interface Rpc {
|