@cqa-lib/cqa-ui 1.1.400 → 1.1.402
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/esm2020/lib/test-case-details/api-edit-step/api-edit-step.component.mjs +32 -7
- package/esm2020/lib/test-case-details/loop-step/loop-step.component.mjs +3 -3
- package/fesm2015/cqa-lib-cqa-ui.mjs +34 -9
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +33 -8
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/test-case-details/api-edit-step/api-edit-step.component.d.ts +21 -1
- package/package.json +1 -1
|
@@ -16,12 +16,32 @@ export interface ApiEditHeaderRow {
|
|
|
16
16
|
type: string;
|
|
17
17
|
value: string;
|
|
18
18
|
}
|
|
19
|
-
/** Payload emitted when user clicks Send Request (environment, method, url, headers). */
|
|
19
|
+
/** Payload emitted when user clicks Send Request (environment, method, url, headers, body). */
|
|
20
20
|
export interface ApiEditSendRequestPayload {
|
|
21
21
|
environment: string;
|
|
22
22
|
method: string;
|
|
23
23
|
url: string;
|
|
24
24
|
headers: ApiEditHeaderRow[];
|
|
25
|
+
payload?: string;
|
|
26
|
+
authType?: string;
|
|
27
|
+
bearerToken?: string;
|
|
28
|
+
oauth2?: ApiEditOAuth2Payload;
|
|
29
|
+
payloadType?: 'raw' | 'x-www-form-urlencoded' | 'form-data';
|
|
30
|
+
payloadFormat?: string;
|
|
31
|
+
payloadText?: string;
|
|
32
|
+
keyValueRows?: {
|
|
33
|
+
key: string;
|
|
34
|
+
value: string;
|
|
35
|
+
}[];
|
|
36
|
+
keyTypeValueRows?: {
|
|
37
|
+
key: string;
|
|
38
|
+
type: string;
|
|
39
|
+
value: string;
|
|
40
|
+
}[];
|
|
41
|
+
paramsRows?: {
|
|
42
|
+
key: string;
|
|
43
|
+
value: string;
|
|
44
|
+
}[];
|
|
25
45
|
}
|
|
26
46
|
/** OAuth 2.0 auth fields (when auth type is OAuth 2.0). */
|
|
27
47
|
export interface ApiEditOAuth2Payload {
|