@rbaileysr/zephyr-managed-api 1.2.8 → 1.3.0
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/README.md +102 -91
- package/dist/README.md +102 -91
- package/dist/error-strategy.d.ts.map +1 -1
- package/dist/groups/All.d.ts.map +1 -1
- package/dist/groups/Automation.d.ts.map +1 -1
- package/dist/groups/Folder.d.ts.map +1 -1
- package/dist/groups/IssueLink.d.ts.map +1 -1
- package/dist/groups/Private/PrivateAttachments.d.ts +8 -8
- package/dist/groups/Private/PrivateAttachments.d.ts.map +1 -1
- package/dist/groups/Private/PrivateAttachments.js +112 -75
- package/dist/groups/Private/PrivateBase.d.ts.map +1 -1
- package/dist/groups/Private/PrivateBase.js +1 -1
- package/dist/groups/Private/PrivateComments.d.ts.map +1 -1
- package/dist/groups/Private/PrivateComments.js +13 -13
- package/dist/groups/Private/PrivateCustomFields.d.ts.map +1 -1
- package/dist/groups/Private/PrivateCustomFields.js +5 -5
- package/dist/groups/Private/PrivateVersions.d.ts.map +1 -1
- package/dist/groups/Private/PrivateVersions.js +3 -3
- package/dist/groups/Private.d.ts +0 -184
- package/dist/groups/Private.d.ts.map +1 -1
- package/dist/groups/Private.js +0 -226
- package/dist/groups/TestCase.d.ts.map +1 -1
- package/dist/groups/TestCycle.d.ts.map +1 -1
- package/dist/groups/TestExecution.d.ts.map +1 -1
- package/dist/groups/TestPlan.d.ts.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/dist/types.d.ts +7 -7
- package/dist/types.d.ts.map +1 -1
- package/dist/utils.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright Adaptavist 2025 (c) All rights reserved
|
|
3
3
|
*/
|
|
4
4
|
import { PrivateBase } from './PrivateBase';
|
|
5
|
-
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError } from '../../utils';
|
|
5
|
+
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError, } from '../../utils';
|
|
6
6
|
export class PrivateComments extends PrivateBase {
|
|
7
7
|
constructor(apiConnection) {
|
|
8
8
|
super(apiConnection);
|
|
@@ -52,8 +52,8 @@ export class PrivateComments extends PrivateBase {
|
|
|
52
52
|
const contextJwt = await this.getContextJwt(credentials);
|
|
53
53
|
const url = `${this.privateApiBaseUrl}/testcase/${testCaseId}/comments`;
|
|
54
54
|
const headers = {
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
accept: 'application/json',
|
|
56
|
+
authorization: `JWT ${contextJwt}`,
|
|
57
57
|
'jira-project-id': String(request.projectId),
|
|
58
58
|
};
|
|
59
59
|
try {
|
|
@@ -114,8 +114,8 @@ export class PrivateComments extends PrivateBase {
|
|
|
114
114
|
const contextJwt = await this.getContextJwt(credentials);
|
|
115
115
|
const url = `${this.privateApiBaseUrl}/testrun/${request.testCycleId}/comments`;
|
|
116
116
|
const headers = {
|
|
117
|
-
|
|
118
|
-
|
|
117
|
+
accept: 'application/json',
|
|
118
|
+
authorization: `JWT ${contextJwt}`,
|
|
119
119
|
'jira-project-id': String(request.projectId),
|
|
120
120
|
};
|
|
121
121
|
try {
|
|
@@ -176,8 +176,8 @@ export class PrivateComments extends PrivateBase {
|
|
|
176
176
|
const contextJwt = await this.getContextJwt(credentials);
|
|
177
177
|
const url = `${this.privateApiBaseUrl}/testplan/${request.testPlanId}/comments`;
|
|
178
178
|
const headers = {
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
accept: 'application/json',
|
|
180
|
+
authorization: `JWT ${contextJwt}`,
|
|
181
181
|
'jira-project-id': String(request.projectId),
|
|
182
182
|
};
|
|
183
183
|
try {
|
|
@@ -263,7 +263,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
263
263
|
const url = `${this.privateApiBaseUrl}/testcase/${testCaseId}/comments`;
|
|
264
264
|
const headers = {
|
|
265
265
|
'Content-Type': 'application/json',
|
|
266
|
-
|
|
266
|
+
authorization: `JWT ${contextJwt}`,
|
|
267
267
|
'jira-project-id': String(request.projectId),
|
|
268
268
|
};
|
|
269
269
|
const payload = {
|
|
@@ -292,7 +292,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
292
292
|
}
|
|
293
293
|
throw new ServerError(`Failed to create test case comment. Status: ${response.status}`, response.status, response.statusText);
|
|
294
294
|
}
|
|
295
|
-
return await response.json();
|
|
295
|
+
return (await response.json());
|
|
296
296
|
}
|
|
297
297
|
catch (error) {
|
|
298
298
|
if (error instanceof BadRequestError ||
|
|
@@ -355,7 +355,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
355
355
|
const url = `${this.privateApiBaseUrl}/testrun/${testCycleId}/comments`;
|
|
356
356
|
const headers = {
|
|
357
357
|
'Content-Type': 'application/json',
|
|
358
|
-
|
|
358
|
+
authorization: `JWT ${contextJwt}`,
|
|
359
359
|
'jira-project-id': String(request.projectId),
|
|
360
360
|
};
|
|
361
361
|
const payload = {
|
|
@@ -384,7 +384,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
384
384
|
}
|
|
385
385
|
throw new ServerError(`Failed to create test cycle comment. Status: ${response.status}`, response.status, response.statusText);
|
|
386
386
|
}
|
|
387
|
-
return await response.json();
|
|
387
|
+
return (await response.json());
|
|
388
388
|
}
|
|
389
389
|
catch (error) {
|
|
390
390
|
if (error instanceof BadRequestError ||
|
|
@@ -447,7 +447,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
447
447
|
const url = `${this.privateApiBaseUrl}/testplan/${testPlanId}/comments`;
|
|
448
448
|
const headers = {
|
|
449
449
|
'Content-Type': 'application/json',
|
|
450
|
-
|
|
450
|
+
authorization: `JWT ${contextJwt}`,
|
|
451
451
|
'jira-project-id': String(request.projectId),
|
|
452
452
|
};
|
|
453
453
|
const payload = {
|
|
@@ -476,7 +476,7 @@ export class PrivateComments extends PrivateBase {
|
|
|
476
476
|
}
|
|
477
477
|
throw new ServerError(`Failed to create test plan comment. Status: ${response.status}`, response.status, response.statusText);
|
|
478
478
|
}
|
|
479
|
-
return await response.json();
|
|
479
|
+
return (await response.json());
|
|
480
480
|
}
|
|
481
481
|
catch (error) {
|
|
482
482
|
if (error instanceof BadRequestError ||
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PrivateCustomFields.d.ts","sourceRoot":"","sources":["../../../groups/Private/PrivateCustomFields.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;GAKG;AAEH,OAAO,KAAK,EACX,qBAAqB,EACrB,0BAA0B,EAC1B,+BAA+B,EAC/B,sBAAsB,EACtB,kBAAkB,EAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"PrivateCustomFields.d.ts","sourceRoot":"","sources":["../../../groups/Private/PrivateCustomFields.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;GAKG;AAEH,OAAO,KAAK,EACX,qBAAqB,EACrB,0BAA0B,EAC1B,+BAA+B,EAC/B,sBAAsB,EACtB,kBAAkB,EAClB,MAAM,aAAa,CAAC;AACrB,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,qBAAa,mBAAoB,SAAQ,WAAW;gBACvC,aAAa,CAAC,EAAE,mBAAmB;IAI/C;;;;;;;;;;;;;;;;OAgBG;IACG,iBAAiB,CACtB,WAAW,EAAE,qBAAqB,EAClC,QAAQ,EAAE,0BAA0B,EACpC,OAAO,EAAE,+BAA+B,GACtC,OAAO,CAAC,OAAO,CAAC;IA+DnB;;;;;;;;;;;;;;;;;;OAkBG;IACG,eAAe,CACpB,WAAW,EAAE,qBAAqB,EAClC,QAAQ,EAAE,0BAA0B,EACpC,OAAO,EAAE,sBAAsB,GAC7B,OAAO,CAAC,kBAAkB,EAAE,CAAC;CA8DhC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright Adaptavist 2025 (c) All rights reserved
|
|
3
3
|
*/
|
|
4
4
|
import { PrivateBase } from './PrivateBase';
|
|
5
|
-
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError } from '../../utils';
|
|
5
|
+
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError, } from '../../utils';
|
|
6
6
|
export class PrivateCustomFields extends PrivateBase {
|
|
7
7
|
constructor(apiConnection) {
|
|
8
8
|
super(apiConnection);
|
|
@@ -38,7 +38,7 @@ export class PrivateCustomFields extends PrivateBase {
|
|
|
38
38
|
const url = `${this.privateApiBaseUrl}/${endpointMap[category]}`;
|
|
39
39
|
const headers = {
|
|
40
40
|
'Content-Type': 'application/json',
|
|
41
|
-
|
|
41
|
+
authorization: `JWT ${contextJwt}`,
|
|
42
42
|
'jira-project-id': String(request.projectId),
|
|
43
43
|
};
|
|
44
44
|
try {
|
|
@@ -109,8 +109,8 @@ export class PrivateCustomFields extends PrivateBase {
|
|
|
109
109
|
};
|
|
110
110
|
const url = `${this.privateApiBaseUrl}/project/${request.projectId}/customfields/${endpointMap[category]}?projectId=${request.projectId}`;
|
|
111
111
|
const headers = {
|
|
112
|
-
|
|
113
|
-
|
|
112
|
+
accept: 'application/json',
|
|
113
|
+
authorization: `JWT ${contextJwt}`,
|
|
114
114
|
'jira-project-id': String(request.projectId),
|
|
115
115
|
};
|
|
116
116
|
try {
|
|
@@ -134,7 +134,7 @@ export class PrivateCustomFields extends PrivateBase {
|
|
|
134
134
|
}
|
|
135
135
|
throw new ServerError(`Failed to get custom fields. Status: ${response.status}`, response.status, response.statusText);
|
|
136
136
|
}
|
|
137
|
-
return await response.json();
|
|
137
|
+
return (await response.json());
|
|
138
138
|
}
|
|
139
139
|
catch (error) {
|
|
140
140
|
if (error instanceof BadRequestError ||
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PrivateVersions.d.ts","sourceRoot":"","sources":["../../../groups/Private/PrivateVersions.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;GAKG;AAEH,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"PrivateVersions.d.ts","sourceRoot":"","sources":["../../../groups/Private/PrivateVersions.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,qBAAqB,EAAE,4BAA4B,EAAE,6BAA6B,EAAE,MAAM,aAAa,CAAC;AACtH,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AAS5C,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEvD,qBAAa,eAAgB,SAAQ,WAAW;gBACnC,aAAa,CAAC,EAAE,mBAAmB;IAI/C;;;;;;;;;;;;;;;;;;;;OAoBG;IACG,qBAAqB,CAC1B,WAAW,EAAE,qBAAqB,EAClC,OAAO,EAAE,4BAA4B,GACnC,OAAO,CAAC,6BAA6B,CAAC;CAuFzC"}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright Adaptavist 2025 (c) All rights reserved
|
|
3
3
|
*/
|
|
4
4
|
import { PrivateBase } from './PrivateBase';
|
|
5
|
-
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError } from '../../utils';
|
|
5
|
+
import { BadRequestError, UnauthorizedError, ForbiddenError, NotFoundError, ServerError, UnexpectedError, } from '../../utils';
|
|
6
6
|
export class PrivateVersions extends PrivateBase {
|
|
7
7
|
constructor(apiConnection) {
|
|
8
8
|
super(apiConnection);
|
|
@@ -54,7 +54,7 @@ export class PrivateVersions extends PrivateBase {
|
|
|
54
54
|
const url = `${this.privateApiBaseUrl}/testcase/${testCaseId}/newversion`;
|
|
55
55
|
const headers = {
|
|
56
56
|
'Content-Type': 'application/json',
|
|
57
|
-
|
|
57
|
+
authorization: `JWT ${contextJwt}`,
|
|
58
58
|
'jira-project-id': String(request.projectId),
|
|
59
59
|
};
|
|
60
60
|
try {
|
|
@@ -82,7 +82,7 @@ export class PrivateVersions extends PrivateBase {
|
|
|
82
82
|
}
|
|
83
83
|
throw new ServerError(`Failed to create test case version. Status: ${response.status}`, response.status, response.statusText);
|
|
84
84
|
}
|
|
85
|
-
return await response.json();
|
|
85
|
+
return (await response.json());
|
|
86
86
|
}
|
|
87
87
|
catch (error) {
|
|
88
88
|
if (error instanceof BadRequestError ||
|
package/dist/groups/Private.d.ts
CHANGED
|
@@ -1,20 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* Copyright Adaptavist 2025 (c) All rights reserved
|
|
3
3
|
*/
|
|
4
|
-
/**
|
|
5
|
-
* Private API group
|
|
6
|
-
*
|
|
7
|
-
* ⚠️ WARNING: These functions use Zephyr's private/unofficial API endpoints.
|
|
8
|
-
*
|
|
9
|
-
* These endpoints are:
|
|
10
|
-
* - Not officially supported by SmartBear
|
|
11
|
-
* - Not part of the public API documentation
|
|
12
|
-
* - Subject to change at any time without notice
|
|
13
|
-
* - Not covered by Standard Support
|
|
14
|
-
*
|
|
15
|
-
* Use these functions at your own risk. They may break with future Zephyr updates.
|
|
16
|
-
*/
|
|
17
|
-
import type { CreatePrivateCustomFieldRequest, PrivateCustomFieldCategory, CreateTestCaseVersionRequest, CreateTestCaseVersionResponse, CreateAttachmentRequest, CreateTestCaseCommentRequest, CreateTestCaseCommentResponse, CreateTestCycleCommentRequest, CreateTestPlanCommentRequest, CreateCommentResponse, GetTestCaseAttachmentsRequest, GetTestCaseAttachmentsResponse, DownloadAttachmentRequest, GetTestCycleAttachmentsRequest, GetTestCycleAttachmentsResponse, DownloadTestCycleAttachmentRequest, CreateTestCycleAttachmentRequest, GetTestPlanAttachmentsRequest, GetTestPlanAttachmentsResponse, DownloadTestPlanAttachmentRequest, CreateTestPlanAttachmentRequest, GetTestStepAttachmentsRequest, GetTestStepAttachmentsResponse, DownloadTestStepAttachmentRequest, CreateTestStepAttachmentRequest, GetTestExecutionAttachmentsRequest, GetTestExecutionAttachmentsResponse, DownloadTestExecutionAttachmentRequest, CreateTestExecutionAttachmentRequest, GetTestExecutionStepAttachmentsRequest, GetTestExecutionStepAttachmentsResponse, DownloadTestExecutionStepAttachmentRequest, CreateTestExecutionStepAttachmentRequest, GetCustomFieldsRequest, PrivateCustomField, PrivateApiCredentials, PrivateComment, GetTestCaseCommentsRequest, GetTestCycleCommentsRequest, GetTestPlanCommentsRequest } from '../types';
|
|
18
4
|
import type { ZephyrApiConnection } from '../index';
|
|
19
5
|
import { PrivateBase } from './Private/PrivateBase';
|
|
20
6
|
import { PrivateComments } from './Private/PrivateComments';
|
|
@@ -50,175 +36,5 @@ export declare class PrivateGroup extends PrivateBase {
|
|
|
50
36
|
*/
|
|
51
37
|
readonly Attachments: PrivateAttachments;
|
|
52
38
|
constructor(apiConnection?: ZephyrApiConnection);
|
|
53
|
-
/**
|
|
54
|
-
* @deprecated Use Private.Authentication.getContextJwt() instead
|
|
55
|
-
*/
|
|
56
|
-
getContextJwt(credentials: PrivateApiCredentials): Promise<string>;
|
|
57
|
-
/**
|
|
58
|
-
* @deprecated Use Private.CustomFields.createCustomField() instead
|
|
59
|
-
*/
|
|
60
|
-
createCustomField(credentials: PrivateApiCredentials, category: PrivateCustomFieldCategory, request: CreatePrivateCustomFieldRequest): Promise<unknown>;
|
|
61
|
-
/**
|
|
62
|
-
* @deprecated Use Private.CustomFields.getCustomFields() instead
|
|
63
|
-
*/
|
|
64
|
-
getCustomFields(credentials: PrivateApiCredentials, category: PrivateCustomFieldCategory, request: GetCustomFieldsRequest): Promise<PrivateCustomField[]>;
|
|
65
|
-
/**
|
|
66
|
-
* @deprecated Use Private.Versions.createTestCaseVersion() instead
|
|
67
|
-
*/
|
|
68
|
-
createTestCaseVersion(credentials: PrivateApiCredentials, request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
|
|
69
|
-
/**
|
|
70
|
-
* Get comments for a test case using private API
|
|
71
|
-
*
|
|
72
|
-
* Retrieves all comments associated with a test case.
|
|
73
|
-
*
|
|
74
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
75
|
-
* The endpoint may change or be removed at any time without notice.
|
|
76
|
-
*
|
|
77
|
-
* @param credentials - Private API credentials
|
|
78
|
-
* @param request - Get comments request
|
|
79
|
-
* @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
|
|
80
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
81
|
-
* @returns Array of comments
|
|
82
|
-
* @throws {BadRequestError} If the request is invalid
|
|
83
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
84
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
85
|
-
* @throws {NotFoundError} If the test case is not found
|
|
86
|
-
* @throws {ServerError} If the server returns an error
|
|
87
|
-
* @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
|
|
88
|
-
*/
|
|
89
|
-
/**
|
|
90
|
-
* @deprecated Use Private.Comments.getTestCaseComments() instead
|
|
91
|
-
*/
|
|
92
|
-
getTestCaseComments(credentials: PrivateApiCredentials, request: GetTestCaseCommentsRequest): Promise<PrivateComment[]>;
|
|
93
|
-
/**
|
|
94
|
-
* Get comments for a test cycle using private API
|
|
95
|
-
*
|
|
96
|
-
* Retrieves all comments associated with a test cycle (test run).
|
|
97
|
-
*
|
|
98
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
99
|
-
* The endpoint may change or be removed at any time without notice.
|
|
100
|
-
*
|
|
101
|
-
* @param credentials - Private API credentials
|
|
102
|
-
* @param request - Get comments request
|
|
103
|
-
* @param request.testCycleId - Test cycle ID (numeric)
|
|
104
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
105
|
-
* @returns Array of comments
|
|
106
|
-
* @throws {BadRequestError} If the request is invalid
|
|
107
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
108
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
109
|
-
* @throws {NotFoundError} If the test cycle is not found
|
|
110
|
-
* @throws {ServerError} If the server returns an error
|
|
111
|
-
*/
|
|
112
|
-
/**
|
|
113
|
-
* @deprecated Use Private.Comments.getTestCycleComments() instead
|
|
114
|
-
*/
|
|
115
|
-
getTestCycleComments(credentials: PrivateApiCredentials, request: GetTestCycleCommentsRequest): Promise<PrivateComment[]>;
|
|
116
|
-
/**
|
|
117
|
-
* Get comments for a test plan using private API
|
|
118
|
-
*
|
|
119
|
-
* Retrieves all comments associated with a test plan.
|
|
120
|
-
*
|
|
121
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
122
|
-
* The endpoint may change or be removed at any time without notice.
|
|
123
|
-
*
|
|
124
|
-
* @param credentials - Private API credentials
|
|
125
|
-
* @param request - Get comments request
|
|
126
|
-
* @param request.testPlanId - Test plan ID (numeric)
|
|
127
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
128
|
-
* @returns Array of comments
|
|
129
|
-
* @throws {BadRequestError} If the request is invalid
|
|
130
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
131
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
132
|
-
* @throws {NotFoundError} If the test plan is not found
|
|
133
|
-
* @throws {ServerError} If the server returns an error
|
|
134
|
-
*/
|
|
135
|
-
/**
|
|
136
|
-
* @deprecated Use Private.Comments.getTestPlanComments() instead
|
|
137
|
-
*/
|
|
138
|
-
getTestPlanComments(credentials: PrivateApiCredentials, request: GetTestPlanCommentsRequest): Promise<PrivateComment[]>;
|
|
139
|
-
/**
|
|
140
|
-
* @deprecated Use Private.Comments.createTestCaseComment() instead
|
|
141
|
-
*/
|
|
142
|
-
createTestCaseComment(credentials: PrivateApiCredentials, request: CreateTestCaseCommentRequest): Promise<CreateTestCaseCommentResponse>;
|
|
143
|
-
/**
|
|
144
|
-
* @deprecated Use Private.Comments.createTestCycleComment() instead
|
|
145
|
-
*/
|
|
146
|
-
createTestCycleComment(credentials: PrivateApiCredentials, request: CreateTestCycleCommentRequest): Promise<CreateCommentResponse>;
|
|
147
|
-
/**
|
|
148
|
-
* @deprecated Use Private.Comments.createTestPlanComment() instead
|
|
149
|
-
*/
|
|
150
|
-
createTestPlanComment(credentials: PrivateApiCredentials, request: CreateTestPlanCommentRequest): Promise<CreateCommentResponse>;
|
|
151
|
-
/**
|
|
152
|
-
* @deprecated Use Private.Attachments.getTestCaseAttachments() instead
|
|
153
|
-
*/
|
|
154
|
-
getTestCaseAttachments(credentials: PrivateApiCredentials, request: GetTestCaseAttachmentsRequest): Promise<GetTestCaseAttachmentsResponse>;
|
|
155
|
-
/**
|
|
156
|
-
* @deprecated Use Private.Attachments.downloadAttachment() instead
|
|
157
|
-
*/
|
|
158
|
-
downloadAttachment(credentials: PrivateApiCredentials, request: DownloadAttachmentRequest): Promise<Blob>;
|
|
159
|
-
/**
|
|
160
|
-
* @deprecated Use Private.Attachments.createAttachment() instead
|
|
161
|
-
*/
|
|
162
|
-
createAttachment(credentials: PrivateApiCredentials, request: CreateAttachmentRequest): Promise<unknown>;
|
|
163
|
-
/**
|
|
164
|
-
* @deprecated Use Private.Attachments.getTestCycleAttachments() instead
|
|
165
|
-
*/
|
|
166
|
-
getTestCycleAttachments(credentials: PrivateApiCredentials, request: GetTestCycleAttachmentsRequest): Promise<GetTestCycleAttachmentsResponse>;
|
|
167
|
-
/**
|
|
168
|
-
* @deprecated Use Private.Attachments.downloadTestCycleAttachment() instead
|
|
169
|
-
*/
|
|
170
|
-
downloadTestCycleAttachment(credentials: PrivateApiCredentials, request: DownloadTestCycleAttachmentRequest): Promise<Blob>;
|
|
171
|
-
/**
|
|
172
|
-
* @deprecated Use Private.Attachments.createTestCycleAttachment() instead
|
|
173
|
-
*/
|
|
174
|
-
createTestCycleAttachment(credentials: PrivateApiCredentials, request: CreateTestCycleAttachmentRequest): Promise<unknown>;
|
|
175
|
-
/**
|
|
176
|
-
* @deprecated Use Private.Attachments.getTestPlanAttachments() instead
|
|
177
|
-
*/
|
|
178
|
-
getTestPlanAttachments(credentials: PrivateApiCredentials, request: GetTestPlanAttachmentsRequest): Promise<GetTestPlanAttachmentsResponse>;
|
|
179
|
-
/**
|
|
180
|
-
* @deprecated Use Private.Attachments.downloadTestPlanAttachment() instead
|
|
181
|
-
*/
|
|
182
|
-
downloadTestPlanAttachment(credentials: PrivateApiCredentials, request: DownloadTestPlanAttachmentRequest): Promise<Blob>;
|
|
183
|
-
/**
|
|
184
|
-
* @deprecated Use Private.Attachments.createTestPlanAttachment() instead
|
|
185
|
-
*/
|
|
186
|
-
createTestPlanAttachment(credentials: PrivateApiCredentials, request: CreateTestPlanAttachmentRequest): Promise<unknown>;
|
|
187
|
-
/**
|
|
188
|
-
* @deprecated Use Private.Attachments.getTestStepAttachments() instead
|
|
189
|
-
*/
|
|
190
|
-
getTestStepAttachments(credentials: PrivateApiCredentials, request: GetTestStepAttachmentsRequest): Promise<GetTestStepAttachmentsResponse>;
|
|
191
|
-
/**
|
|
192
|
-
* @deprecated Use Private.Attachments.downloadTestStepAttachment() instead
|
|
193
|
-
*/
|
|
194
|
-
downloadTestStepAttachment(credentials: PrivateApiCredentials, request: DownloadTestStepAttachmentRequest): Promise<Blob>;
|
|
195
|
-
/**
|
|
196
|
-
* @deprecated Use Private.Attachments.createTestStepAttachment() instead
|
|
197
|
-
*/
|
|
198
|
-
createTestStepAttachment(credentials: PrivateApiCredentials, request: CreateTestStepAttachmentRequest): Promise<unknown>;
|
|
199
|
-
/**
|
|
200
|
-
* @deprecated Use Private.Attachments.getTestExecutionAttachments() instead
|
|
201
|
-
*/
|
|
202
|
-
getTestExecutionAttachments(credentials: PrivateApiCredentials, request: GetTestExecutionAttachmentsRequest): Promise<GetTestExecutionAttachmentsResponse>;
|
|
203
|
-
/**
|
|
204
|
-
* @deprecated Use Private.Attachments.downloadTestExecutionAttachment() instead
|
|
205
|
-
*/
|
|
206
|
-
downloadTestExecutionAttachment(credentials: PrivateApiCredentials, request: DownloadTestExecutionAttachmentRequest): Promise<Blob>;
|
|
207
|
-
/**
|
|
208
|
-
* @deprecated Use Private.Attachments.createTestExecutionAttachment() instead
|
|
209
|
-
*/
|
|
210
|
-
createTestExecutionAttachment(credentials: PrivateApiCredentials, request: CreateTestExecutionAttachmentRequest): Promise<unknown>;
|
|
211
|
-
/**
|
|
212
|
-
* @deprecated Use Private.Attachments.getTestExecutionStepAttachments() instead
|
|
213
|
-
*/
|
|
214
|
-
getTestExecutionStepAttachments(credentials: PrivateApiCredentials, request: GetTestExecutionStepAttachmentsRequest): Promise<GetTestExecutionStepAttachmentsResponse>;
|
|
215
|
-
/**
|
|
216
|
-
* @deprecated Use Private.Attachments.downloadTestExecutionStepAttachment() instead
|
|
217
|
-
*/
|
|
218
|
-
downloadTestExecutionStepAttachment(credentials: PrivateApiCredentials, request: DownloadTestExecutionStepAttachmentRequest): Promise<Blob>;
|
|
219
|
-
/**
|
|
220
|
-
* @deprecated Use Private.Attachments.createTestExecutionStepAttachment() instead
|
|
221
|
-
*/
|
|
222
|
-
createTestExecutionStepAttachment(credentials: PrivateApiCredentials, request: CreateTestExecutionStepAttachmentRequest): Promise<unknown>;
|
|
223
39
|
}
|
|
224
40
|
//# sourceMappingURL=Private.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Private.d.ts","sourceRoot":"","sources":["../../groups/Private.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"Private.d.ts","sourceRoot":"","sources":["../../groups/Private.ts"],"names":[],"mappings":"AAAA;;GAEG;AA6DH,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AACpD,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,2BAA2B,CAAC;AAC5D,OAAO,EAAE,kBAAkB,EAAE,MAAM,8BAA8B,CAAC;AAClE,OAAO,EAAE,qBAAqB,EAAE,MAAM,iCAAiC,CAAC;AASxE;;;;;GAKG;AACH,qBAAa,YAAa,SAAQ,WAAW;IAC5C;;OAEG;IACH,SAAgB,cAAc,EAAE,qBAAqB,CAAC;IAEtD;;OAEG;IACH,SAAgB,QAAQ,EAAE,eAAe,CAAC;IAE1C;;OAEG;IACH,SAAgB,YAAY,EAAE,mBAAmB,CAAC;IAElD;;OAEG;IACH,SAAgB,QAAQ,EAAE,eAAe,CAAC;IAE1C;;OAEG;IACH,SAAgB,WAAW,EAAE,kBAAkB,CAAC;gBAEpC,aAAa,CAAC,EAAE,mBAAmB;CAS/C"}
|
package/dist/groups/Private.js
CHANGED
|
@@ -22,230 +22,4 @@ export class PrivateGroup extends PrivateBase {
|
|
|
22
22
|
this.Versions = new PrivateVersions(apiConnection);
|
|
23
23
|
this.Attachments = new PrivateAttachments(apiConnection);
|
|
24
24
|
}
|
|
25
|
-
/**
|
|
26
|
-
* @deprecated Use Private.Authentication.getContextJwt() instead
|
|
27
|
-
*/
|
|
28
|
-
async getContextJwt(credentials) {
|
|
29
|
-
return this.Authentication.getContextJwt(credentials);
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @deprecated Use Private.CustomFields.createCustomField() instead
|
|
33
|
-
*/
|
|
34
|
-
async createCustomField(credentials, category, request) {
|
|
35
|
-
return this.CustomFields.createCustomField(credentials, category, request);
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @deprecated Use Private.CustomFields.getCustomFields() instead
|
|
39
|
-
*/
|
|
40
|
-
async getCustomFields(credentials, category, request) {
|
|
41
|
-
return this.CustomFields.getCustomFields(credentials, category, request);
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* @deprecated Use Private.Versions.createTestCaseVersion() instead
|
|
45
|
-
*/
|
|
46
|
-
async createTestCaseVersion(credentials, request) {
|
|
47
|
-
return this.Versions.createTestCaseVersion(credentials, request);
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* Get comments for a test case using private API
|
|
51
|
-
*
|
|
52
|
-
* Retrieves all comments associated with a test case.
|
|
53
|
-
*
|
|
54
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
55
|
-
* The endpoint may change or be removed at any time without notice.
|
|
56
|
-
*
|
|
57
|
-
* @param credentials - Private API credentials
|
|
58
|
-
* @param request - Get comments request
|
|
59
|
-
* @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
|
|
60
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
61
|
-
* @returns Array of comments
|
|
62
|
-
* @throws {BadRequestError} If the request is invalid
|
|
63
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
64
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
65
|
-
* @throws {NotFoundError} If the test case is not found
|
|
66
|
-
* @throws {ServerError} If the server returns an error
|
|
67
|
-
* @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
|
|
68
|
-
*/
|
|
69
|
-
/**
|
|
70
|
-
* @deprecated Use Private.Comments.getTestCaseComments() instead
|
|
71
|
-
*/
|
|
72
|
-
async getTestCaseComments(credentials, request) {
|
|
73
|
-
return this.Comments.getTestCaseComments(credentials, request);
|
|
74
|
-
}
|
|
75
|
-
/**
|
|
76
|
-
* Get comments for a test cycle using private API
|
|
77
|
-
*
|
|
78
|
-
* Retrieves all comments associated with a test cycle (test run).
|
|
79
|
-
*
|
|
80
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
81
|
-
* The endpoint may change or be removed at any time without notice.
|
|
82
|
-
*
|
|
83
|
-
* @param credentials - Private API credentials
|
|
84
|
-
* @param request - Get comments request
|
|
85
|
-
* @param request.testCycleId - Test cycle ID (numeric)
|
|
86
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
87
|
-
* @returns Array of comments
|
|
88
|
-
* @throws {BadRequestError} If the request is invalid
|
|
89
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
90
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
91
|
-
* @throws {NotFoundError} If the test cycle is not found
|
|
92
|
-
* @throws {ServerError} If the server returns an error
|
|
93
|
-
*/
|
|
94
|
-
/**
|
|
95
|
-
* @deprecated Use Private.Comments.getTestCycleComments() instead
|
|
96
|
-
*/
|
|
97
|
-
async getTestCycleComments(credentials, request) {
|
|
98
|
-
return this.Comments.getTestCycleComments(credentials, request);
|
|
99
|
-
}
|
|
100
|
-
/**
|
|
101
|
-
* Get comments for a test plan using private API
|
|
102
|
-
*
|
|
103
|
-
* Retrieves all comments associated with a test plan.
|
|
104
|
-
*
|
|
105
|
-
* ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
|
|
106
|
-
* The endpoint may change or be removed at any time without notice.
|
|
107
|
-
*
|
|
108
|
-
* @param credentials - Private API credentials
|
|
109
|
-
* @param request - Get comments request
|
|
110
|
-
* @param request.testPlanId - Test plan ID (numeric)
|
|
111
|
-
* @param request.projectId - Jira project ID (numeric, not the project key)
|
|
112
|
-
* @returns Array of comments
|
|
113
|
-
* @throws {BadRequestError} If the request is invalid
|
|
114
|
-
* @throws {UnauthorizedError} If authentication fails
|
|
115
|
-
* @throws {ForbiddenError} If the user doesn't have permission
|
|
116
|
-
* @throws {NotFoundError} If the test plan is not found
|
|
117
|
-
* @throws {ServerError} If the server returns an error
|
|
118
|
-
*/
|
|
119
|
-
/**
|
|
120
|
-
* @deprecated Use Private.Comments.getTestPlanComments() instead
|
|
121
|
-
*/
|
|
122
|
-
async getTestPlanComments(credentials, request) {
|
|
123
|
-
return this.Comments.getTestPlanComments(credentials, request);
|
|
124
|
-
}
|
|
125
|
-
/**
|
|
126
|
-
* @deprecated Use Private.Comments.createTestCaseComment() instead
|
|
127
|
-
*/
|
|
128
|
-
async createTestCaseComment(credentials, request) {
|
|
129
|
-
return this.Comments.createTestCaseComment(credentials, request);
|
|
130
|
-
}
|
|
131
|
-
/**
|
|
132
|
-
* @deprecated Use Private.Comments.createTestCycleComment() instead
|
|
133
|
-
*/
|
|
134
|
-
async createTestCycleComment(credentials, request) {
|
|
135
|
-
return this.Comments.createTestCycleComment(credentials, request);
|
|
136
|
-
}
|
|
137
|
-
/**
|
|
138
|
-
* @deprecated Use Private.Comments.createTestPlanComment() instead
|
|
139
|
-
*/
|
|
140
|
-
async createTestPlanComment(credentials, request) {
|
|
141
|
-
return this.Comments.createTestPlanComment(credentials, request);
|
|
142
|
-
}
|
|
143
|
-
/**
|
|
144
|
-
* @deprecated Use Private.Attachments.getTestCaseAttachments() instead
|
|
145
|
-
*/
|
|
146
|
-
async getTestCaseAttachments(credentials, request) {
|
|
147
|
-
return this.Attachments.getTestCaseAttachments(credentials, request);
|
|
148
|
-
}
|
|
149
|
-
/**
|
|
150
|
-
* @deprecated Use Private.Attachments.downloadAttachment() instead
|
|
151
|
-
*/
|
|
152
|
-
async downloadAttachment(credentials, request) {
|
|
153
|
-
return this.Attachments.downloadAttachment(credentials, request);
|
|
154
|
-
}
|
|
155
|
-
/**
|
|
156
|
-
* @deprecated Use Private.Attachments.createAttachment() instead
|
|
157
|
-
*/
|
|
158
|
-
async createAttachment(credentials, request) {
|
|
159
|
-
return this.Attachments.createAttachment(credentials, request);
|
|
160
|
-
}
|
|
161
|
-
/**
|
|
162
|
-
* @deprecated Use Private.Attachments.getTestCycleAttachments() instead
|
|
163
|
-
*/
|
|
164
|
-
async getTestCycleAttachments(credentials, request) {
|
|
165
|
-
return this.Attachments.getTestCycleAttachments(credentials, request);
|
|
166
|
-
}
|
|
167
|
-
/**
|
|
168
|
-
* @deprecated Use Private.Attachments.downloadTestCycleAttachment() instead
|
|
169
|
-
*/
|
|
170
|
-
async downloadTestCycleAttachment(credentials, request) {
|
|
171
|
-
return this.Attachments.downloadTestCycleAttachment(credentials, request);
|
|
172
|
-
}
|
|
173
|
-
/**
|
|
174
|
-
* @deprecated Use Private.Attachments.createTestCycleAttachment() instead
|
|
175
|
-
*/
|
|
176
|
-
async createTestCycleAttachment(credentials, request) {
|
|
177
|
-
return this.Attachments.createTestCycleAttachment(credentials, request);
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* @deprecated Use Private.Attachments.getTestPlanAttachments() instead
|
|
181
|
-
*/
|
|
182
|
-
async getTestPlanAttachments(credentials, request) {
|
|
183
|
-
return this.Attachments.getTestPlanAttachments(credentials, request);
|
|
184
|
-
}
|
|
185
|
-
/**
|
|
186
|
-
* @deprecated Use Private.Attachments.downloadTestPlanAttachment() instead
|
|
187
|
-
*/
|
|
188
|
-
async downloadTestPlanAttachment(credentials, request) {
|
|
189
|
-
return this.Attachments.downloadTestPlanAttachment(credentials, request);
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* @deprecated Use Private.Attachments.createTestPlanAttachment() instead
|
|
193
|
-
*/
|
|
194
|
-
async createTestPlanAttachment(credentials, request) {
|
|
195
|
-
return this.Attachments.createTestPlanAttachment(credentials, request);
|
|
196
|
-
}
|
|
197
|
-
/**
|
|
198
|
-
* @deprecated Use Private.Attachments.getTestStepAttachments() instead
|
|
199
|
-
*/
|
|
200
|
-
async getTestStepAttachments(credentials, request) {
|
|
201
|
-
return this.Attachments.getTestStepAttachments(credentials, request);
|
|
202
|
-
}
|
|
203
|
-
/**
|
|
204
|
-
* @deprecated Use Private.Attachments.downloadTestStepAttachment() instead
|
|
205
|
-
*/
|
|
206
|
-
async downloadTestStepAttachment(credentials, request) {
|
|
207
|
-
return this.Attachments.downloadTestStepAttachment(credentials, request);
|
|
208
|
-
}
|
|
209
|
-
/**
|
|
210
|
-
* @deprecated Use Private.Attachments.createTestStepAttachment() instead
|
|
211
|
-
*/
|
|
212
|
-
async createTestStepAttachment(credentials, request) {
|
|
213
|
-
return this.Attachments.createTestStepAttachment(credentials, request);
|
|
214
|
-
}
|
|
215
|
-
/**
|
|
216
|
-
* @deprecated Use Private.Attachments.getTestExecutionAttachments() instead
|
|
217
|
-
*/
|
|
218
|
-
async getTestExecutionAttachments(credentials, request) {
|
|
219
|
-
return this.Attachments.getTestExecutionAttachments(credentials, request);
|
|
220
|
-
}
|
|
221
|
-
/**
|
|
222
|
-
* @deprecated Use Private.Attachments.downloadTestExecutionAttachment() instead
|
|
223
|
-
*/
|
|
224
|
-
async downloadTestExecutionAttachment(credentials, request) {
|
|
225
|
-
return this.Attachments.downloadTestExecutionAttachment(credentials, request);
|
|
226
|
-
}
|
|
227
|
-
/**
|
|
228
|
-
* @deprecated Use Private.Attachments.createTestExecutionAttachment() instead
|
|
229
|
-
*/
|
|
230
|
-
async createTestExecutionAttachment(credentials, request) {
|
|
231
|
-
return this.Attachments.createTestExecutionAttachment(credentials, request);
|
|
232
|
-
}
|
|
233
|
-
/**
|
|
234
|
-
* @deprecated Use Private.Attachments.getTestExecutionStepAttachments() instead
|
|
235
|
-
*/
|
|
236
|
-
async getTestExecutionStepAttachments(credentials, request) {
|
|
237
|
-
return this.Attachments.getTestExecutionStepAttachments(credentials, request);
|
|
238
|
-
}
|
|
239
|
-
/**
|
|
240
|
-
* @deprecated Use Private.Attachments.downloadTestExecutionStepAttachment() instead
|
|
241
|
-
*/
|
|
242
|
-
async downloadTestExecutionStepAttachment(credentials, request) {
|
|
243
|
-
return this.Attachments.downloadTestExecutionStepAttachment(credentials, request);
|
|
244
|
-
}
|
|
245
|
-
/**
|
|
246
|
-
* @deprecated Use Private.Attachments.createTestExecutionStepAttachment() instead
|
|
247
|
-
*/
|
|
248
|
-
async createTestExecutionStepAttachment(credentials, request) {
|
|
249
|
-
return this.Attachments.createTestExecutionStepAttachment(credentials, request);
|
|
250
|
-
}
|
|
251
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestCase.d.ts","sourceRoot":"","sources":["../../groups/TestCase.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,QAAQ,EACR,YAAY,EACZ,uBAAuB,EACvB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,qBAAqB,EACrB,gBAAgB,EAChB,8BAA8B,EAC9B,4BAA4B,EAC5B,uBAAuB,EACvB,2BAA2B,EAC3B,yBAAyB,EACzB,+BAA+B,EAC/B,UAAU,EACV,aAAa,EACb,8BAA8B,EAC9B,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/D,qBAAa,aAAa;IACb,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;OAcG;IACG,aAAa,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAK1E;;;;;;;;;;;;;;;OAeG;IACG,4BAA4B,
|
|
1
|
+
{"version":3,"file":"TestCase.d.ts","sourceRoot":"","sources":["../../groups/TestCase.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,QAAQ,EACR,YAAY,EACZ,uBAAuB,EACvB,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,qBAAqB,EACrB,gBAAgB,EAChB,8BAA8B,EAC9B,4BAA4B,EAC5B,uBAAuB,EACvB,2BAA2B,EAC3B,yBAAyB,EACzB,+BAA+B,EAC/B,UAAU,EACV,aAAa,EACb,8BAA8B,EAC9B,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACpD,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAC;AAE/D,qBAAa,aAAa;IACb,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;OAcG;IACG,aAAa,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAK1E;;;;;;;;;;;;;;;OAeG;IACG,4BAA4B,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAKpG;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACG,WAAW,CAChB,OAAO,EAAE,kBAAkB,EAC3B,aAAa,CAAC,EAAE,qBAAqB,CAAC,QAAQ,GAAG,IAAI,CAAC,GACpD,OAAO,CAAC,QAAQ,GAAG,IAAI,CAAC;IAQ3B;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACG,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IAUnF;;;;;;;;;;;;;;;;;;;;;;;OAuBG;IACG,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,IAAI,CAAC;IAqBnE;;;;;;;;;OASG;IACG,gBAAgB,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAKtE;;;;;;;;;;;;;OAaG;IACG,uBAAuB,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,eAAe,CAAC;IAShG;;;;;;;;;;;;;;OAcG;IACG,qBAAqB,CAAC,OAAO,EAAE,4BAA4B,GAAG,OAAO,CAAC,eAAe,CAAC;IAS5F;;;;;;;;;;;;;OAaG;IACG,oBAAoB,CAAC,OAAO,EAAE,2BAA2B,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAMlG;;;;;;;;;;;OAWG;IACG,kBAAkB,CAAC,OAAO,EAAE,yBAAyB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAK/E;;;;;;;;;OASG;IACG,qBAAqB,CAAC,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,CAAC;IAKrE;;;;;;;;;;;;;;;OAeG;IACG,wBAAwB,CAAC,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,eAAe,CAAC;IASlG;;;;;;;;;;;;;OAaG;IACG,oBAAoB,CACzB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE;QAAE,UAAU,CAAC,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,GACjD,OAAO,CAAC,aAAa,CAAC;IAMzB;;;;;;;;;;;;;;;;OAgBG;IACG,uBAAuB,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,eAAe,CAAC;CAQhG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestCycle.d.ts","sourceRoot":"","sources":["../../groups/TestCycle.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,SAAS,EACT,aAAa,EACb,qBAAqB,EACrB,mBAAmB,EACnB,sBAAsB,EACtB,sBAAsB,EACtB,iBAAiB,EACjB,+BAA+B,EAC/B,6BAA6B,EAC7B,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,cAAc;IACd,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;OAcG;IACG,cAAc,CAAC,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,aAAa,CAAC;IAM7E;;;;;;;;;;OAUG;IACG,YAAY,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAKpE;;;;;;;;;;;;;;;;;;;;;OAqBG;IACG,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IASrF;;;;;;;;;;;;;;;;;;;;;OAqBG;IACG,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC;IAWrE;;;;;;;;;OASG;IACG,iBAAiB,CAAC,gBAAgB,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAKtF;;;;;;;;;;;;;OAaG;IACG,wBAAwB,
|
|
1
|
+
{"version":3,"file":"TestCycle.d.ts","sourceRoot":"","sources":["../../groups/TestCycle.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,SAAS,EACT,aAAa,EACb,qBAAqB,EACrB,mBAAmB,EACnB,sBAAsB,EACtB,sBAAsB,EACtB,iBAAiB,EACjB,+BAA+B,EAC/B,6BAA6B,EAC7B,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,cAAc;IACd,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;OAcG;IACG,cAAc,CAAC,OAAO,CAAC,EAAE,qBAAqB,GAAG,OAAO,CAAC,aAAa,CAAC;IAM7E;;;;;;;;;;OAUG;IACG,YAAY,CAAC,OAAO,EAAE,mBAAmB,GAAG,OAAO,CAAC,SAAS,CAAC;IAKpE;;;;;;;;;;;;;;;;;;;;;OAqBG;IACG,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IASrF;;;;;;;;;;;;;;;;;;;;;OAqBG;IACG,eAAe,CAAC,OAAO,EAAE,sBAAsB,GAAG,OAAO,CAAC,IAAI,CAAC;IAWrE;;;;;;;;;OASG;IACG,iBAAiB,CAAC,gBAAgB,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAKtF;;;;;;;;;;;;;OAaG;IACG,wBAAwB,CAAC,OAAO,EAAE,+BAA+B,GAAG,OAAO,CAAC,eAAe,CAAC;IASlG;;;;;;;;;;;;;;OAcG;IACG,sBAAsB,CAAC,OAAO,EAAE,6BAA6B,GAAG,OAAO,CAAC,eAAe,CAAC;CAQ9F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestExecution.d.ts","sourceRoot":"","sources":["../../groups/TestExecution.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,aAAa,EACb,iBAAiB,EACjB,4BAA4B,EAC5B,yBAAyB,EACzB,gCAAgC,EAChC,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,gCAAgC,EAChC,gCAAgC,EAChC,8BAA8B,EAC9B,mCAAmC,EACnC,qBAAqB,EACrB,0BAA0B,EAC1B,IAAI,EACJ,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,kBAAkB;IAClB,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;;;;;OAkBG;IACG,kBAAkB,CAAC,OAAO,CAAC,EAAE,yBAAyB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAMzF;;;;;;;;;;;;;;;;;OAiBG;IACG,yBAAyB,
|
|
1
|
+
{"version":3,"file":"TestExecution.d.ts","sourceRoot":"","sources":["../../groups/TestExecution.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,aAAa,EACb,iBAAiB,EACjB,4BAA4B,EAC5B,yBAAyB,EACzB,gCAAgC,EAChC,uBAAuB,EACvB,0BAA0B,EAC1B,0BAA0B,EAC1B,gCAAgC,EAChC,gCAAgC,EAChC,8BAA8B,EAC9B,mCAAmC,EACnC,qBAAqB,EACrB,0BAA0B,EAC1B,IAAI,EACJ,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,kBAAkB;IAClB,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;;;;;;;OAkBG;IACG,kBAAkB,CAAC,OAAO,CAAC,EAAE,yBAAyB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAMzF;;;;;;;;;;;;;;;;;OAiBG;IACG,yBAAyB,CAAC,OAAO,CAAC,EAAE,gCAAgC,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAMlH;;;;;;;;;;;OAWG;IACG,gBAAgB,CAAC,OAAO,EAAE,uBAAuB,GAAG,OAAO,CAAC,aAAa,CAAC;IAUhF;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,mBAAmB,CAAC,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,eAAe,CAAC;IASxF;;;;;;;;;;;;;;;;;;OAkBG;IACG,mBAAmB,CAAC,OAAO,EAAE,0BAA0B,GAAG,OAAO,CAAC,IAAI,CAAC;IAW7E;;;;;;;;;;;;;OAaG;IACG,yBAAyB,CAAC,OAAO,EAAE,gCAAgC,GAAG,OAAO,CAAC,0BAA0B,CAAC;IAY/G;;;;;;;;;;;;;OAaG;IACG,yBAAyB,CAAC,OAAO,EAAE,gCAAgC,GAAG,OAAO,CAAC,IAAI,CAAC;IAWzF;;;;;;;;;;;OAWG;IACG,uBAAuB,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,IAAI,CAAC;IAOrF;;;;;;;;;OASG;IACG,sBAAsB,CAAC,oBAAoB,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAC,qBAAqB,CAAC;IAKnG;;;;;;;;;;;;;OAaG;IACG,4BAA4B,CAAC,OAAO,EAAE,mCAAmC,GAAG,OAAO,CAAC,eAAe,CAAC;CAQ1G"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TestPlan.d.ts","sourceRoot":"","sources":["../../groups/TestPlan.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,QAAQ,EACR,YAAY,EACZ,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,8BAA8B,EAC9B,4BAA4B,EAC5B,kCAAkC,EAClC,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,aAAa;IACb,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;OAYG;IACG,aAAa,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAM1E;;;;;;;;;;OAUG;IACG,WAAW,CAAC,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAKjE;;;;;;;;;;;;;;;;;;;OAmBG;IACG,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IASnF;;;;;;;;;;;;;OAaG;IACG,uBAAuB,
|
|
1
|
+
{"version":3,"file":"TestPlan.d.ts","sourceRoot":"","sources":["../../groups/TestPlan.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;GAGG;AAEH,OAAO,KAAK,EACX,QAAQ,EACR,YAAY,EACZ,oBAAoB,EACpB,kBAAkB,EAClB,qBAAqB,EACrB,8BAA8B,EAC9B,4BAA4B,EAC5B,kCAAkC,EAClC,oBAAoB,EACpB,eAAe,EACf,MAAM,UAAU,CAAC;AAElB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEpD,qBAAa,aAAa;IACb,OAAO,CAAC,GAAG;gBAAH,GAAG,EAAE,mBAAmB;IAE5C;;;;;;;;;;;;OAYG;IACG,aAAa,CAAC,OAAO,CAAC,EAAE,oBAAoB,GAAG,OAAO,CAAC,YAAY,CAAC;IAM1E;;;;;;;;;;OAUG;IACG,WAAW,CAAC,OAAO,EAAE,kBAAkB,GAAG,OAAO,CAAC,QAAQ,CAAC;IAKjE;;;;;;;;;;;;;;;;;;;OAmBG;IACG,cAAc,CAAC,OAAO,EAAE,qBAAqB,GAAG,OAAO,CAAC,oBAAoB,CAAC;IASnF;;;;;;;;;;;;;OAaG;IACG,uBAAuB,CAAC,OAAO,EAAE,8BAA8B,GAAG,OAAO,CAAC,eAAe,CAAC;IAShG;;;;;;;;;;;;;;OAcG;IACG,qBAAqB,CAAC,OAAO,EAAE,4BAA4B,GAAG,OAAO,CAAC,eAAe,CAAC;IAS5F;;;;;;;;;;;;OAYG;IACG,2BAA2B,CAAC,OAAO,EAAE,kCAAkC,GAAG,OAAO,CAAC,eAAe,CAAC;CAQxG"}
|