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,30 +3,30 @@ import { TestReport, WorkflowEvent } from "./report.pb";
|
|
|
3
3
|
export declare const protobufPackage = "weaveapi.report.v1";
|
|
4
4
|
export interface BuildReportSummaryRequest {
|
|
5
5
|
projectId: string;
|
|
6
|
-
workflowId: string;
|
|
7
6
|
testRunId: string;
|
|
8
7
|
storageConnectionId: string;
|
|
9
8
|
options: {
|
|
10
9
|
[key: string]: any;
|
|
11
10
|
} | undefined;
|
|
11
|
+
workflowId: string;
|
|
12
12
|
}
|
|
13
13
|
export interface BuildReportSummaryResponse {
|
|
14
14
|
testReport: TestReport | undefined;
|
|
15
15
|
}
|
|
16
16
|
export interface GetReportRequest {
|
|
17
17
|
projectId: string;
|
|
18
|
-
workflowId: string;
|
|
19
18
|
testReportId: string;
|
|
19
|
+
workflowId: string;
|
|
20
20
|
}
|
|
21
21
|
export interface GetReportResponse {
|
|
22
22
|
testReport: TestReport | undefined;
|
|
23
23
|
}
|
|
24
24
|
export interface ListReportsRequest {
|
|
25
25
|
projectId: string;
|
|
26
|
-
workflowId: string;
|
|
27
26
|
includeArchived: boolean;
|
|
28
27
|
pageSize: number;
|
|
29
28
|
pageToken: string;
|
|
29
|
+
workflowId: string;
|
|
30
30
|
}
|
|
31
31
|
export interface ListReportsResponse {
|
|
32
32
|
testReports: TestReport[];
|
|
@@ -34,24 +34,24 @@ export interface ListReportsResponse {
|
|
|
34
34
|
}
|
|
35
35
|
export interface ArchiveReportRequest {
|
|
36
36
|
projectId: string;
|
|
37
|
-
workflowId: string;
|
|
38
37
|
testReportId: string;
|
|
38
|
+
workflowId: string;
|
|
39
39
|
}
|
|
40
40
|
export interface ArchiveReportResponse {
|
|
41
41
|
testReport: TestReport | undefined;
|
|
42
42
|
}
|
|
43
43
|
export interface DeleteReportRequest {
|
|
44
44
|
projectId: string;
|
|
45
|
-
workflowId: string;
|
|
46
45
|
testReportId: string;
|
|
46
|
+
workflowId: string;
|
|
47
47
|
}
|
|
48
48
|
export interface DeleteReportResponse {
|
|
49
49
|
}
|
|
50
50
|
export interface ListWorkflowEventsRequest {
|
|
51
51
|
projectId: string;
|
|
52
|
-
workflowId: string;
|
|
53
52
|
pageSize: number;
|
|
54
53
|
pageToken: string;
|
|
54
|
+
workflowId: string;
|
|
55
55
|
}
|
|
56
56
|
export interface ListWorkflowEventsResponse {
|
|
57
57
|
workflowEvents: WorkflowEvent[];
|