@rbaileysr/zephyr-managed-api 1.2.1 → 1.2.8

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.
@@ -14,152 +14,71 @@
14
14
  *
15
15
  * Use these functions at your own risk. They may break with future Zephyr updates.
16
16
  */
17
- import type { CreatePrivateCustomFieldRequest, PrivateCustomFieldCategory, CreateTestCaseVersionRequest, CreateTestCaseVersionResponse, CreateAttachmentRequest, CreateTestCaseCommentRequest, CreateTestCaseCommentResponse, GetTestCaseAttachmentsRequest, GetTestCaseAttachmentsResponse, DownloadAttachmentRequest } from '../types';
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
18
  import type { ZephyrApiConnection } from '../index';
19
+ import { PrivateBase } from './Private/PrivateBase';
20
+ import { PrivateComments } from './Private/PrivateComments';
21
+ import { PrivateCustomFields } from './Private/PrivateCustomFields';
22
+ import { PrivateVersions } from './Private/PrivateVersions';
23
+ import { PrivateAttachments } from './Private/PrivateAttachments';
24
+ import { PrivateAuthentication } from './Private/PrivateAuthentication';
19
25
  /**
20
26
  * Private API group for accessing Zephyr's private/unofficial endpoints
21
27
  *
22
28
  * ⚠️ WARNING: These methods use private APIs that are not officially supported.
23
29
  * They may change or break at any time without notice.
24
30
  */
25
- export declare class PrivateGroup {
31
+ export declare class PrivateGroup extends PrivateBase {
26
32
  /**
27
- * Base URL for Zephyr private API endpoints
33
+ * Authentication sub-group - Get Jira Context JWT token
28
34
  */
29
- private readonly privateApiBaseUrl;
35
+ readonly Authentication: PrivateAuthentication;
30
36
  /**
31
- * Optional API connection for accessing public API (e.g., to look up test case IDs from keys)
37
+ * Comments sub-group - Get and create comments for test cases, test cycles, and test plans
32
38
  */
33
- private readonly apiConnection?;
34
- private readonly testCaseGroup?;
35
- constructor(apiConnection?: ZephyrApiConnection);
39
+ readonly Comments: PrivateComments;
36
40
  /**
37
- * Get Jira Context JWT token
38
- *
39
- * Retrieves a short-lived JWT token (15 minutes) from Jira that is required
40
- * for private Zephyr API endpoints. This token may need to be refreshed
41
- * during long operations.
42
- *
43
- * ⚠️ WARNING: This uses a private Jira endpoint and may change without notice.
44
- *
45
- * @param userEmail - Jira user email address
46
- * @param apiToken - Jira API token
47
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
48
- * @returns The Context JWT token string
49
- * @throws {UnauthorizedError} If authentication fails
50
- * @throws {UnexpectedError} If the JWT cannot be extracted from the response
41
+ * CustomFields sub-group - Create and get custom fields
51
42
  */
52
- getContextJwt(userEmail: string, apiToken: string, jiraInstanceUrl: string): Promise<string>;
43
+ readonly CustomFields: PrivateCustomFields;
53
44
  /**
54
- * Create a custom field using private API
55
- *
56
- * Creates a custom field for the specified entity type (test case, test plan, test run, or test step).
57
- *
58
- * ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
59
- * The endpoint may change or be removed at any time without notice.
60
- *
61
- * @param userEmail - Jira user email address
62
- * @param apiToken - Jira API token
63
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
64
- * @param category - Entity type for the custom field (TEST_CASE, TEST_PLAN, TEST_RUN, or TEST_STEP)
65
- * @param request - Custom field creation request
66
- * @returns The created custom field response
67
- * @throws {BadRequestError} If the request is invalid
68
- * @throws {UnauthorizedError} If authentication fails
69
- * @throws {ForbiddenError} If the user doesn't have permission
70
- * @throws {ServerError} If the server returns an error
45
+ * Versions sub-group - Create test case versions
71
46
  */
72
- createCustomField(userEmail: string, apiToken: string, jiraInstanceUrl: string, category: PrivateCustomFieldCategory, request: CreatePrivateCustomFieldRequest): Promise<unknown>;
47
+ readonly Versions: PrivateVersions;
73
48
  /**
74
- * Create a new test case version using private API
75
- *
76
- * Creates a new version of an existing test case. Note that when a new version
77
- * is created, the testCaseId changes for that test case.
78
- *
79
- * ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
80
- * The endpoint may change or be removed at any time without notice.
81
- *
82
- * @param userEmail - Jira user email address
83
- * @param apiToken - Jira API token
84
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
85
- * @param request - Test case version creation request
86
- * @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
87
- * @param request.projectId - Jira project ID (numeric, not the project key)
88
- * @returns The created version response with id and key
89
- * @throws {BadRequestError} If the request is invalid
90
- * @throws {UnauthorizedError} If authentication fails
91
- * @throws {ForbiddenError} If the user doesn't have permission
92
- * @throws {NotFoundError} If the test case is not found
93
- * @throws {ServerError} If the server returns an error (including 409 Conflict if version already exists)
94
- * @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
49
+ * Attachments sub-group - Get, download, and create attachments
95
50
  */
96
- createTestCaseVersion(userEmail: string, apiToken: string, jiraInstanceUrl: string, request: CreateTestCaseVersionRequest): Promise<CreateTestCaseVersionResponse>;
51
+ readonly Attachments: PrivateAttachments;
52
+ constructor(apiConnection?: ZephyrApiConnection);
97
53
  /**
98
- * Get upload details for attachment upload
99
- *
100
- * Retrieves S3 upload credentials and configuration needed to upload an attachment.
101
- *
102
- * ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
103
- * The endpoint may change or be removed at any time without notice.
104
- *
105
- * @param contextJwt - Jira Context JWT token
106
- * @returns Upload details including S3 bucket URL, credentials, and policy
107
- * @throws {UnauthorizedError} If authentication fails
108
- * @throws {ServerError} If the server returns an error
54
+ * @deprecated Use Private.Authentication.getContextJwt() instead
109
55
  */
110
- private getUploadDetails;
56
+ getContextJwt(credentials: PrivateApiCredentials): Promise<string>;
111
57
  /**
112
- * Upload file to S3
113
- *
114
- * Uploads a file to S3 using the credentials from upload details.
115
- *
116
- * @param upload - Upload details from getUploadDetails
117
- * @param projectId - Jira project ID
118
- * @param testCaseId - Numeric test case ID
119
- * @param userAccountId - Atlassian account ID
120
- * @param file - File to upload (Blob or ArrayBuffer)
121
- * @param fileName - Name of the file
122
- * @returns S3 upload information
123
- * @throws {UnexpectedError} If upload fails
124
- */
125
- private uploadToS3;
126
- /**
127
- * Save attachment metadata
128
- *
129
- * Saves metadata for an uploaded attachment.
130
- *
131
- * @param contextJwt - Jira Context JWT token
132
- * @param projectId - Jira project ID
133
- * @param testCaseId - Numeric test case ID
134
- * @param userAccountId - Atlassian account ID
135
- * @param s3Key - S3 key from upload
136
- * @param fileName - File name
137
- * @param mimeType - MIME type
138
- * @param fileSize - File size in bytes
139
- * @returns Attachment metadata response
140
- * @throws {BadRequestError} If the request is invalid
141
- * @throws {UnauthorizedError} If authentication fails
142
- * @throws {ServerError} If the server returns an error
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
143
63
  */
144
- private saveAttachmentMetadata;
64
+ getCustomFields(credentials: PrivateApiCredentials, category: PrivateCustomFieldCategory, request: GetCustomFieldsRequest): Promise<PrivateCustomField[]>;
145
65
  /**
146
- * Create a comment on a test case using private API
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
147
71
  *
148
- * Adds a comment to an existing test case. The comment will be associated with
149
- * the specified user account ID.
72
+ * Retrieves all comments associated with a test case.
150
73
  *
151
74
  * ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
152
75
  * The endpoint may change or be removed at any time without notice.
153
76
  *
154
- * @param userEmail - Jira user email address
155
- * @param apiToken - Jira API token
156
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
157
- * @param request - Comment creation request
77
+ * @param credentials - Private API credentials
78
+ * @param request - Get comments request
158
79
  * @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
159
80
  * @param request.projectId - Jira project ID (numeric, not the project key)
160
- * @param request.body - Comment text/body
161
- * @param request.createdBy - Atlassian account ID of the user creating the comment (e.g., '5d6fdc98dc6e480dbc021aae')
162
- * @returns Comment creation response
81
+ * @returns Array of comments
163
82
  * @throws {BadRequestError} If the request is invalid
164
83
  * @throws {UnauthorizedError} If authentication fails
165
84
  * @throws {ForbiddenError} If the user doesn't have permission
@@ -167,96 +86,139 @@ export declare class PrivateGroup {
167
86
  * @throws {ServerError} If the server returns an error
168
87
  * @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
169
88
  */
170
- createTestCaseComment(userEmail: string, apiToken: string, jiraInstanceUrl: string, request: CreateTestCaseCommentRequest): Promise<CreateTestCaseCommentResponse>;
171
89
  /**
172
- * Get attachments for a test case using private API
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
173
95
  *
174
- * Retrieves all attachment details for a test case, including signed S3 URLs
175
- * for downloading the attachments.
96
+ * Retrieves all comments associated with a test cycle (test run).
176
97
  *
177
98
  * ⚠️ WARNING: This uses a private Zephyr API endpoint that is not officially supported.
178
99
  * The endpoint may change or be removed at any time without notice.
179
100
  *
180
- * @param userEmail - Jira user email address
181
- * @param apiToken - Jira API token
182
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
183
- * @param request - Get attachments request
184
- * @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
101
+ * @param credentials - Private API credentials
102
+ * @param request - Get comments request
103
+ * @param request.testCycleId - Test cycle ID (numeric)
185
104
  * @param request.projectId - Jira project ID (numeric, not the project key)
186
- * @returns Test case attachments response with array of attachment details
105
+ * @returns Array of comments
187
106
  * @throws {BadRequestError} If the request is invalid
188
107
  * @throws {UnauthorizedError} If authentication fails
189
108
  * @throws {ForbiddenError} If the user doesn't have permission
190
- * @throws {NotFoundError} If the test case is not found
109
+ * @throws {NotFoundError} If the test cycle is not found
191
110
  * @throws {ServerError} If the server returns an error
192
- * @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
193
111
  */
194
- getTestCaseAttachments(userEmail: string, apiToken: string, jiraInstanceUrl: string, request: GetTestCaseAttachmentsRequest): Promise<GetTestCaseAttachmentsResponse>;
195
112
  /**
196
- * Download an attachment from a test case using private API
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
197
118
  *
198
- * Downloads an attachment file into memory. This method:
199
- * 1. Gets fresh attachment details (including a fresh signed S3 URL)
200
- * 2. Downloads the file from the signed URL
201
- * 3. Returns the file as a Blob
119
+ * Retrieves all comments associated with a test plan.
202
120
  *
203
- * ⚠️ WARNING: This uses private Zephyr API endpoints that are not officially supported.
204
- * The endpoints may change or be removed at any time without notice.
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.
205
123
  *
206
- * @param userEmail - Jira user email address
207
- * @param apiToken - Jira API token
208
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
209
- * @param request - Download attachment request
210
- * @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
124
+ * @param credentials - Private API credentials
125
+ * @param request - Get comments request
126
+ * @param request.testPlanId - Test plan ID (numeric)
211
127
  * @param request.projectId - Jira project ID (numeric, not the project key)
212
- * @param request.attachmentId - Attachment ID (UUID string, e.g., 'c3f14125-638f-47f9-9211-12a9777c09e7')
213
- * @returns Blob containing the attachment file data
128
+ * @returns Array of comments
214
129
  * @throws {BadRequestError} If the request is invalid
215
130
  * @throws {UnauthorizedError} If authentication fails
216
131
  * @throws {ForbiddenError} If the user doesn't have permission
217
- * @throws {NotFoundError} If the test case or attachment is not found
132
+ * @throws {NotFoundError} If the test plan is not found
218
133
  * @throws {ServerError} If the server returns an error
219
- * @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available, or if download fails
220
134
  */
221
- downloadAttachment(userEmail: string, apiToken: string, jiraInstanceUrl: string, request: DownloadAttachmentRequest): Promise<Blob>;
222
135
  /**
223
- * Generate a UUID v4 (compatible with ScriptRunner Connect runtime)
224
- *
225
- * Uses crypto.getRandomValues() which is available in web standards
136
+ * @deprecated Use Private.Comments.getTestPlanComments() instead
226
137
  */
227
- private generateUUID;
138
+ getTestPlanComments(credentials: PrivateApiCredentials, request: GetTestPlanCommentsRequest): Promise<PrivateComment[]>;
228
139
  /**
229
- * Get MIME type from file name
140
+ * @deprecated Use Private.Comments.createTestCaseComment() instead
230
141
  */
231
- private getMimeType;
142
+ createTestCaseComment(credentials: PrivateApiCredentials, request: CreateTestCaseCommentRequest): Promise<CreateTestCaseCommentResponse>;
232
143
  /**
233
- * Create an attachment for a test case using private API
234
- *
235
- * Uploads a file attachment to a test case. This involves:
236
- * 1. Getting upload details (S3 credentials)
237
- * 2. Uploading the file to S3
238
- * 3. Saving attachment metadata
239
- *
240
- * ⚠️ WARNING: This uses private Zephyr API endpoints that are not officially supported.
241
- * The endpoints may change or be removed at any time without notice.
242
- *
243
- * @param userEmail - Jira user email address
244
- * @param apiToken - Jira API token
245
- * @param jiraInstanceUrl - Full Jira instance URL (e.g., 'https://your-instance.atlassian.net')
246
- * @param request - Attachment creation request
247
- * @param request.testCaseKey - Test case key (e.g., 'PROJ-T1'). The numeric ID will be looked up automatically if Zephyr Connector is available.
248
- * @param request.projectId - Jira project ID (numeric, not the project key)
249
- * @param request.file - File to upload (Blob or ArrayBuffer)
250
- * @param request.fileName - Name of the file
251
- * @param request.userAccountId - Atlassian account ID (e.g., '5d6fdc98dc6e480dbc021aae')
252
- * @returns Attachment metadata response
253
- * @throws {BadRequestError} If the request is invalid
254
- * @throws {UnauthorizedError} If authentication fails
255
- * @throws {ForbiddenError} If the user doesn't have permission
256
- * @throws {NotFoundError} If the test case is not found
257
- * @throws {ServerError} If the server returns an error
258
- * @throws {UnexpectedError} If test case ID cannot be looked up from key and Zephyr Connector is not available
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
259
221
  */
260
- createAttachment(userEmail: string, apiToken: string, jiraInstanceUrl: string, request: CreateAttachmentRequest): Promise<unknown>;
222
+ createTestExecutionStepAttachment(credentials: PrivateApiCredentials, request: CreateTestExecutionStepAttachmentRequest): Promise<unknown>;
261
223
  }
262
224
  //# sourceMappingURL=Private.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"Private.d.ts","sourceRoot":"","sources":["../../groups/Private.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;;;;;;;;GAYG;AAEH,OAAO,KAAK,EACX,+BAA+B,EAC/B,0BAA0B,EAC1B,4BAA4B,EAC5B,6BAA6B,EAG7B,uBAAuB,EACvB,4BAA4B,EAC5B,6BAA6B,EAC7B,6BAA6B,EAC7B,8BAA8B,EAE9B,yBAAyB,EACzB,MAAM,UAAU,CAAC;AAClB,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAWpD;;;;;GAKG;AACH,qBAAa,YAAY;IACxB;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,iBAAiB,CAA2D;IAE7F;;OAEG;IACH,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAsB;IACrD,OAAO,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAgB;gBAEnC,aAAa,CAAC,EAAE,mBAAmB;IAO/C;;;;;;;;;;;;;;;OAeG;IACG,aAAa,CAClB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,GACrB,OAAO,CAAC,MAAM,CAAC;IAuElB;;;;;;;;;;;;;;;;;;OAkBG;IACG,iBAAiB,CACtB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,QAAQ,EAAE,0BAA0B,EACpC,OAAO,EAAE,+BAA+B,GACtC,OAAO,CAAC,OAAO,CAAC;IA8DnB;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,qBAAqB,CAC1B,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,4BAA4B,GACnC,OAAO,CAAC,6BAA6B,CAAC;IAsFzC;;;;;;;;;;;;OAYG;YACW,gBAAgB;IAiC9B;;;;;;;;;;;;;OAaG;YACW,UAAU;IAsExB;;;;;;;;;;;;;;;;;OAiBG;YACW,sBAAsB;IAgEpC;;;;;;;;;;;;;;;;;;;;;;;;OAwBG;IACG,qBAAqB,CAC1B,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,4BAA4B,GACnC,OAAO,CAAC,6BAA6B,CAAC;IAoFzC;;;;;;;;;;;;;;;;;;;;;;OAsBG;IACG,sBAAsB,CAC3B,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,6BAA6B,GACpC,OAAO,CAAC,8BAA8B,CAAC;IA8E1C;;;;;;;;;;;;;;;;;;;;;;;;;OAyBG;IACG,kBAAkB,CACvB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,yBAAyB,GAChC,OAAO,CAAC,IAAI,CAAC;IAwDhB;;;;OAIG;IACH,OAAO,CAAC,YAAY;IAwBpB;;OAEG;IACH,OAAO,CAAC,WAAW;IAkBnB;;;;;;;;;;;;;;;;;;;;;;;;;;;OA2BG;IACG,gBAAgB,CACrB,SAAS,EAAE,MAAM,EACjB,QAAQ,EAAE,MAAM,EAChB,eAAe,EAAE,MAAM,EACvB,OAAO,EAAE,uBAAuB,GAC9B,OAAO,CAAC,OAAO,CAAC;CAqDnB"}
1
+ {"version":3,"file":"Private.d.ts","sourceRoot":"","sources":["../../groups/Private.ts"],"names":[],"mappings":"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"}