@cqa-lib/cqa-ui 1.1.556 → 1.1.557-delta.10

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.
@@ -50,7 +50,7 @@ export declare class ModularTableTemplateComponent implements OnInit, OnChanges,
50
50
  modular: string;
51
51
  };
52
52
  viewModeChange: EventEmitter<"list" | "modular">;
53
- get viewModeSegments(): Array<{
53
+ viewModeSegments: Array<{
54
54
  label: string;
55
55
  value: string;
56
56
  icon?: string;
@@ -113,6 +113,8 @@ export interface ModularLabels {
113
113
  unorganizedRowLabel: string;
114
114
  /** Shown in the folder sidebar when the search input filters out every folder. */
115
115
  noFoldersFound: string;
116
+ /** Helper line shown under the empty-folder-list state, hinting at the create action. */
117
+ noFoldersEmptyDescription: string;
116
118
  /** Sidebar folder-row hover tooltip count line. `{n}` is the descendant total
117
119
  * (FolderNode.totalCount). The host swaps the noun for "step group" when in
118
120
  * step-group mode by overriding these two keys. The full tooltip is composed
@@ -47,7 +47,7 @@ export declare class TableTemplateComponent implements OnInit, OnChanges, OnDest
47
47
  modular: string;
48
48
  };
49
49
  viewModeChange: EventEmitter<"list" | "modular">;
50
- get viewModeSegments(): Array<{
50
+ viewModeSegments: Array<{
51
51
  label: string;
52
52
  value: string;
53
53
  icon?: string;
@@ -2,15 +2,26 @@ import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges,
2
2
  import { FormArray, FormBuilder, FormControl, FormGroup } from '@angular/forms';
3
3
  import { DynamicSelectFieldConfig, SelectOption } from '../../dynamic-select/dynamic-select-field.component';
4
4
  import { CqaAutocompleteOption } from '../../autocomplete/autocomplete.model';
5
+ import { GraphQLOperationOption, GraphQLSchemaSource } from './graphql-operation-picker/graphql-operation-picker.component';
6
+ import { DialogService } from '../../dialog/dialog.service';
5
7
  import * as i0 from "@angular/core";
6
8
  export declare const API_EDIT_STEP_LABELS: {
7
9
  readonly REQUEST_DETAILS: "Request Details";
8
10
  readonly STORE_RESPONSE: "Store Response";
9
11
  readonly VALIDATION: "Validation";
10
12
  };
11
- export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization';
12
- /** Which body content block is visible: headers (tabs) or import cURL textarea. */
13
- export declare type ApiEditBodyView = 'headers' | 'import-curl';
13
+ export declare type ApiEditPayloadTab = 'headers' | 'body' | 'params' | 'authorization' | 'graphql';
14
+ /** Top-level API type the step targets. New types beyond REST/GraphQL are intentionally a string union (not enum) so adding "soap"/"websocket"/"grpc" later is a one-line change. */
15
+ export declare type ApiEditApiType = 'rest' | 'graphql' | 'soap' | 'websocket' | 'grpc';
16
+ /** GraphQL request body emitted to the parent (variables already parsed when valid JSON; raw string otherwise). */
17
+ export interface ApiEditGraphQLPayload {
18
+ query: string;
19
+ /** Object when the user typed valid JSON, raw string otherwise. Engine accepts both. */
20
+ variables?: Record<string, unknown> | string;
21
+ operationName?: string;
22
+ }
23
+ /** Which body content block is visible: headers (tabs), import cURL textarea, or the GraphQL operation picker. */
24
+ export declare type ApiEditBodyView = 'headers' | 'import-curl' | 'graphql-schema';
14
25
  export interface ApiEditHeaderRow {
15
26
  name: string;
16
27
  type: string;
@@ -42,6 +53,10 @@ export interface ApiEditSendRequestPayload {
42
53
  key: string;
43
54
  value: string;
44
55
  }[];
56
+ /** API type (REST or GraphQL). Absent on legacy callers; consumer treats undefined as 'rest'. */
57
+ apiType?: ApiEditApiType;
58
+ /** GraphQL body when `apiType === 'graphql'`. */
59
+ graphQL?: ApiEditGraphQLPayload;
45
60
  }
46
61
  /** OAuth 2.0 auth fields (when auth type is OAuth 2.0). */
47
62
  export interface ApiEditOAuth2Payload {
@@ -82,6 +97,10 @@ export interface ApiEditStep1Payload {
82
97
  key: string;
83
98
  value: string;
84
99
  }[];
100
+ /** API type (REST or GraphQL). Defaults to 'rest' when absent. */
101
+ apiType?: ApiEditApiType;
102
+ /** GraphQL body when `apiType === 'graphql'`. Always emitted as a complete object so the engine's Object.assign merge doesn't lose unsent keys. */
103
+ graphQL?: ApiEditGraphQLPayload;
85
104
  }
86
105
  /** Step 2 store-response payload. */
87
106
  export interface ApiEditStep2Payload {
@@ -131,6 +150,7 @@ export interface ParsedCurl {
131
150
  export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterViewInit, OnDestroy {
132
151
  private readonly fb;
133
152
  private readonly cdr;
153
+ private readonly dialogService;
134
154
  initialMethod?: string;
135
155
  initialEnvironment?: string;
136
156
  initialStep?: number;
@@ -154,6 +174,16 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
154
174
  editMode?: boolean;
155
175
  /** True while parent is creating the step (API in progress); show loader on Create/Update button */
156
176
  isCreatingStep: boolean;
177
+ /** Initial API type ('rest' default, 'graphql' for GraphQL steps). Comes from `event.type` on the saved step. */
178
+ initialApiType?: ApiEditApiType;
179
+ /** Initial GraphQL body when editing a GraphQL step. `variables` may be an object (preferred) or a JSON string. */
180
+ initialGraphQL?: ApiEditGraphQLPayload;
181
+ /** Schema source for the GraphQL operation picker (URL + counts). Parent provides this after `loadSchema` resolves. */
182
+ graphQLSchemaSource?: GraphQLSchemaSource;
183
+ /** Operations list for the picker. Empty until parent loads/introspects the schema. */
184
+ graphQLOperations: GraphQLOperationOption[];
185
+ /** True while the parent is introspecting; the picker swaps its empty state for a spinner. */
186
+ isLoadingGraphQLSchema: boolean;
157
187
  /** Emits the cURL string when user clicks Import (value from the textarea control). */
158
188
  importCurl: EventEmitter<string>;
159
189
  /** Emits when user cancels the Import cURL panel (clicks Cancel). */
@@ -229,12 +259,20 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
229
259
  environmentSearch: EventEmitter<string>;
230
260
  /** Emit when user scrolls to load more environments. */
231
261
  environmentLoadMore: EventEmitter<void>;
262
+ /** Emit when user clicks "Load Schema" in GraphQL mode. Parent handles the schema fetch (or shows a "coming soon" toast for now). */
263
+ loadSchema: EventEmitter<{
264
+ url: string;
265
+ headers: ApiEditHeaderRow[];
266
+ environment?: string;
267
+ }>;
232
268
  /** Form for Auth Type select (Authorization tab) */
233
269
  authTypeForm: FormGroup;
234
270
  /** Auth type options: array of strings or objects with id, name, value, label (passed from parent). Falls back to built-in list when empty. */
235
271
  authTypeOptions: EnvironmentOptionInput[];
236
272
  /** Initial auth type (string or option object). When not set, first of authTypeOptions or default "No Auth" is used. */
237
273
  initialAuthType?: string | EnvironmentOptionInput;
274
+ /** Initial OAuth 2.0 field values when authType is 'oauth2' (camelCase keys). */
275
+ initialOAuth2?: ApiEditOAuth2Payload;
238
276
  /** Default options when authTypeOptions is empty (same shape as environment) */
239
277
  private static readonly DEFAULT_AUTH_TYPE_OPTIONS;
240
278
  /** Config for Auth Type dropdown (updated when authTypeOptions changes, like environment) */
@@ -290,11 +328,41 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
290
328
  private paramsSyncingFromUrl;
291
329
  /** Placeholder for the URL field: show "Enter URL or select Parameter *" when urlOptions are available (environment selected). */
292
330
  get urlPlaceholder(): string;
293
- readonly payloadTabs: {
331
+ /**
332
+ * The two tab arrangements. REST keeps the legacy four-tab layout. GraphQL drops Body & Params
333
+ * because the body is a single { query, variables, operationName } object (rendered in the new
334
+ * GraphQL tab below) and query params have no meaning for a GraphQL POST.
335
+ */
336
+ private static readonly REST_PAYLOAD_TABS;
337
+ private static readonly GRAPHQL_PAYLOAD_TABS;
338
+ /** Tabs visible under the request row, swapped based on `activeApiType`. */
339
+ get payloadTabs(): {
294
340
  value: ApiEditPayloadTab;
295
341
  label: string;
296
342
  }[];
297
343
  activePayloadTab: ApiEditPayloadTab;
344
+ /** Currently selected API type. REST is the default and matches today's behaviour exactly. */
345
+ activeApiType: ApiEditApiType;
346
+ /** Segments rendered above the Method/URL row. SOAP/WebSocket/gRPC are intentionally `disabled` for now. */
347
+ readonly apiTypeSegments: ({
348
+ label: string;
349
+ value: ApiEditApiType;
350
+ disabled?: undefined;
351
+ tooltip?: undefined;
352
+ } | {
353
+ label: string;
354
+ value: ApiEditApiType;
355
+ disabled: boolean;
356
+ tooltip: string;
357
+ })[];
358
+ /** GraphQL fields backing the new tab content. Variables are stored as a JSON string in the form for the textarea round-trip; parsed on emit. */
359
+ graphQLForm: FormGroup;
360
+ /** Inline error displayed under the Query textarea when empty/blank on Save. Cleared as the user types. */
361
+ graphQLQueryError: string;
362
+ /** Inline error displayed under the Variables textarea when JSON is malformed. */
363
+ graphQLVariablesError: string;
364
+ /** Non-blocking warning shown under the Operation Name field when the query declares 2+ operations. */
365
+ graphQLOperationWarning: string;
298
366
  /** Step 3: Response verification tabs */
299
367
  readonly responseVerificationTabs: {
300
368
  value: 'response-body' | 'status';
@@ -416,7 +484,7 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
416
484
  advancedExpanded: boolean;
417
485
  advancedSettingsVariables: any[];
418
486
  advancedVariablesForm: FormArray;
419
- constructor(fb: FormBuilder, cdr: ChangeDetectorRef);
487
+ constructor(fb: FormBuilder, cdr: ChangeDetectorRef, dialogService: DialogService);
420
488
  ngOnInit(): void;
421
489
  ngAfterViewInit(): void;
422
490
  ngOnDestroy(): void;
@@ -473,6 +541,13 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
473
541
  * Check if URL is valid (for button disabled state)
474
542
  */
475
543
  get isUrlValid(): boolean;
544
+ /**
545
+ * Aggregate disabled state for the Send Request button. URL validity is
546
+ * always required; in GraphQL mode the Query field must also be non-blank
547
+ * (without it the request body would be `{ query: "" }`, which the engine
548
+ * rejects up-front anyway).
549
+ */
550
+ get isSendRequestDisabled(): boolean;
476
551
  onSendRequest(): void;
477
552
  onVariableNameChange(): void;
478
553
  onBack(): void;
@@ -480,6 +555,58 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
480
555
  onCancel(): void;
481
556
  onNext(): void;
482
557
  setPayloadTab(value: ApiEditPayloadTab): void;
558
+ /**
559
+ * Handle API Type segment toggle (REST ↔ GraphQL). When switching to GraphQL we
560
+ * jump to the GraphQL tab so the Query / Variables / Operation Name fields are
561
+ * immediately visible. When switching back to REST we land on Headers (REST default).
562
+ * Disabled segments (SOAP/WebSocket/gRPC) cannot fire here — `cqa-segment-control`
563
+ * blocks the click — but we guard anyway in case a future caller bypasses that.
564
+ */
565
+ onApiTypeChange(value: string): void;
566
+ /** Per-API-type state snapshots. Populated when the user switches AWAY from a
567
+ * mode so a later switch back restores everything they typed. Undefined for a
568
+ * mode means "never visited" — the restore path resets to empty defaults. */
569
+ private snapshotByType;
570
+ /** Read every user-editable field for the currently-active API type into a
571
+ * plain snapshot. Mirrors {@link applyApiTypeSnapshot}; any field added there
572
+ * must also be captured here or it won't survive a mode round-trip. */
573
+ private captureCurrentApiTypeSnapshot;
574
+ /** Write a previously-captured snapshot back into the form. When `snap` is
575
+ * undefined the mode is reset to empty defaults so the user lands on a
576
+ * fresh state instead of inheriting whatever the other mode had. */
577
+ private applyApiTypeSnapshot;
578
+ /**
579
+ * Parse the Variables textarea as JSON. Empty string is valid (= no variables).
580
+ * Sets `graphQLVariablesError` for inline display; returns the parsed object or
581
+ * the raw string when the user typed something non-empty that didn't parse.
582
+ *
583
+ * @param strict When true (called from `onCreate`), an invalid JSON blocks save
584
+ * — we leave the error visible and return `null` to signal abort.
585
+ */
586
+ private validateGraphQLVariables;
587
+ /**
588
+ * Detect when the GraphQL query declares 2+ named operations. GraphQL requires the
589
+ * client to specify `operationName` in that case; absence is a runtime error, not a
590
+ * syntax one, so we surface it as a non-blocking warning.
591
+ */
592
+ private recomputeGraphQLOperationWarning;
593
+ /**
594
+ * Click handler for the "Load Schema" button (GraphQL mode only). Switches the body view
595
+ * to the operation picker AND emits `loadSchema` so the parent can fetch / refresh the
596
+ * schema in the background. The picker renders whatever `graphQLSchemaSource` /
597
+ * `graphQLOperations` the parent has supplied at any given time — empty state by default.
598
+ */
599
+ onLoadSchema(): void;
600
+ /** Picker → back: drop the picker view and return to the headers/tabs panel. */
601
+ onGraphQLPickerBack(): void;
602
+ /** Picker → re-introspect: forward to parent so it can refetch the schema. */
603
+ onGraphQLPickerReIntrospect(): void;
604
+ /**
605
+ * Picker → operation selected: patch the GraphQL form (query / variables / operationName)
606
+ * and pop back to the main view with the GraphQL tab active so the user can see the
607
+ * filled-in fields.
608
+ */
609
+ onGraphQLPickerOperationSelected(op: GraphQLOperationOption): void;
483
610
  setResponseVerificationTab(value: 'response-body' | 'status'): void;
484
611
  addHeader(): void;
485
612
  removeHeader(index: number): void;
@@ -523,6 +650,14 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
523
650
  onAdvancedVariableValueChange(variableName: string, value: any): void;
524
651
  /** Emit all entered details (environment, HTTP method, URL, headers, body, step2 variable, step3 verifications) when user clicks Create. */
525
652
  onCreate(): void;
653
+ /** Build and emit the Create payload. Extracted from {@link onCreate} so the
654
+ * cross-mode-discard confirmation flow can defer the emit behind a dialog. */
655
+ private emitCreatePayload;
656
+ /** True when the snapshot contains anything the user typed in that mode — URL,
657
+ * headers, body text, params, key/value rows, or GraphQL query/vars/op name.
658
+ * Returns false when the snapshot is missing (mode never visited) or holds
659
+ * only the empty defaults. */
660
+ private snapshotHasUserData;
526
661
  /** Minimal payload when getCreatePayload throws (so create always emits). */
527
662
  private getCreatePayloadFallback;
528
663
  /** Normalize form control value to string (handles object or string). */
@@ -538,5 +673,5 @@ export declare class ApiEditStepComponent implements OnChanges, OnInit, AfterVie
538
673
  */
539
674
  private scrollPreviewIntoView;
540
675
  static ɵfac: i0.ɵɵFactoryDeclaration<ApiEditStepComponent, never>;
541
- static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; }, never, never>;
676
+ static ɵcmp: i0.ɵɵComponentDeclaration<ApiEditStepComponent, "cqa-api-edit-step", never, { "initialMethod": "initialMethod"; "initialEnvironment": "initialEnvironment"; "initialStep": "initialStep"; "initialUrl": "initialUrl"; "initialPayloadTab": "initialPayloadTab"; "initialPayloadType": "initialPayloadType"; "initialPayloadText": "initialPayloadText"; "initialSummary": "initialSummary"; "initialHeaders": "initialHeaders"; "initialResponsePreview": "initialResponsePreview"; "initialVariableName": "initialVariableName"; "initialResponseBodyVerifications": "initialResponseBodyVerifications"; "initialStatusVerifications": "initialStatusVerifications"; "initialActiveResponseVerificationTab": "initialActiveResponseVerificationTab"; "editMode": "editMode"; "isCreatingStep": "isCreatingStep"; "initialApiType": "initialApiType"; "initialGraphQL": "initialGraphQL"; "graphQLSchemaSource": "graphQLSchemaSource"; "graphQLOperations": "graphQLOperations"; "isLoadingGraphQLSchema": "isLoadingGraphQLSchema"; "httpMethodOptions": "httpMethodOptions"; "environmentOptions": "environmentOptions"; "hasMoreEnvironments": "hasMoreEnvironments"; "isLoadingEnvironments": "isLoadingEnvironments"; "urlOptions": "urlOptions"; "authTypeOptions": "authTypeOptions"; "initialAuthType": "initialAuthType"; "initialOAuth2": "initialOAuth2"; "formatOptions": "formatOptions"; "initialFormat": "initialFormat"; "headerNameOptions": "headerNameOptions"; "verificationOptions": "verificationOptions"; "verificationDataTypeOptions": "verificationDataTypeOptions"; "statusVerificationOptions": "statusVerificationOptions"; "advancedSettingsVariables": "advancedSettingsVariables"; }, { "importCurl": "importCurl"; "importCurlCancel": "importCurlCancel"; "sendRequest": "sendRequest"; "back": "back"; "cancel": "cancel"; "next": "next"; "create": "create"; "headersChange": "headersChange"; "environmentChange": "environmentChange"; "environmentSearch": "environmentSearch"; "environmentLoadMore": "environmentLoadMore"; "loadSchema": "loadSchema"; }, never, never>;
542
677
  }
@@ -0,0 +1,83 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * Where the operations list came from. The header bar renders the URL plus
5
+ * type / query / mutation counts so the user can sanity-check the schema
6
+ * source before picking an operation.
7
+ */
8
+ export interface GraphQLSchemaSource {
9
+ url: string;
10
+ typeCount?: number;
11
+ queryCount?: number;
12
+ mutationCount?: number;
13
+ subscriptionCount?: number;
14
+ }
15
+ /**
16
+ * One row in the picker. The parent (api-edit-step) builds this list from
17
+ * the introspected schema and passes it via `[operations]`. On select, the
18
+ * picker emits the whole option object so the caller can patch the GraphQL
19
+ * editor with `query`, `variables`, and `operationName` in one shot.
20
+ */
21
+ export interface GraphQLOperationOption {
22
+ /** Stable identifier used as *ngFor trackBy and the radio's [value]. Typically the operation name. */
23
+ id: string;
24
+ /** Display name (e.g. 'getBooking'). */
25
+ name: string;
26
+ /** Section grouping + colour-coding of the return type pill. */
27
+ kind: 'query' | 'mutation' | 'subscription';
28
+ /** Inline argument list, e.g. `[{ name: 'id', type: 'ID!' }]`. Used for the signature line. */
29
+ args?: Array<{
30
+ name: string;
31
+ type: string;
32
+ }>;
33
+ /** Return type displayed after the arrow. Coloured by `kind`. */
34
+ returnType?: string;
35
+ /** Optional human description rendered below the signature line. */
36
+ description?: string;
37
+ /** Pre-built operation text the parent drops into the GraphQL Query editor. */
38
+ query: string;
39
+ /** Initial variables; parent JSON-stringifies into the Variables editor. */
40
+ variables?: Record<string, unknown>;
41
+ /** Operation name written into the Operation Name field (typically same as `name`). */
42
+ operationName: string;
43
+ }
44
+ export declare class GraphQLOperationPickerComponent {
45
+ /** Schema source descriptor (URL + counts). When omitted the header shows an empty placeholder. */
46
+ schemaSource?: GraphQLSchemaSource;
47
+ /** Flat operations list. Picker partitions by `kind` for the section headers. */
48
+ operations: GraphQLOperationOption[];
49
+ /** Display state for the "Introspected" / "Pending" badge in the title row. */
50
+ introspected: boolean;
51
+ /** True while the parent is fetching/introspecting a schema. Renders a spinner instead of the empty state. */
52
+ isLoading: boolean;
53
+ /** Emitted when the user clicks the back arrow above the title (returns to the main step 1 view). */
54
+ back: EventEmitter<void>;
55
+ /** Emitted when the user clicks an operation row. Parent patches graphQLForm and pops the picker. */
56
+ operationSelected: EventEmitter<GraphQLOperationOption>;
57
+ /** Emitted when the user clicks Re-introspect — parent re-fetches the schema. */
58
+ reIntrospect: EventEmitter<GraphQLSchemaSource>;
59
+ /** Emitted when the user clicks Change — parent shows a URL/auth picker (deferred for now). */
60
+ change: EventEmitter<void>;
61
+ /** Emitted when the user clicks Preview on a row — parent shows a preview popover (deferred). */
62
+ preview: EventEmitter<GraphQLOperationOption>;
63
+ /** Filter input value. Plain substring match across name / description / returnType. */
64
+ filterTerm: string;
65
+ /** Operations currently shown after applying `filterTerm`. */
66
+ get filteredOperations(): GraphQLOperationOption[];
67
+ get queryOperations(): GraphQLOperationOption[];
68
+ get mutationOperations(): GraphQLOperationOption[];
69
+ get subscriptionOperations(): GraphQLOperationOption[];
70
+ /** Convenience: total schema-source count line, e.g. "38 types · 4 queries · 3 mutations". */
71
+ get headerCounts(): string;
72
+ onBack(): void;
73
+ onSelect(op: GraphQLOperationOption): void;
74
+ onPreview(op: GraphQLOperationOption, event: Event): void;
75
+ onReIntrospect(): void;
76
+ onChange(): void;
77
+ onFilterChange(value: string): void;
78
+ trackByOperation(_index: number, op: GraphQLOperationOption): string;
79
+ /** Tailwind text colour for the return-type pill, keyed by operation kind. */
80
+ returnTypeColorClass(kind: GraphQLOperationOption['kind']): string;
81
+ static ɵfac: i0.ɵɵFactoryDeclaration<GraphQLOperationPickerComponent, never>;
82
+ static ɵcmp: i0.ɵɵComponentDeclaration<GraphQLOperationPickerComponent, "cqa-graphql-operation-picker", never, { "schemaSource": "schemaSource"; "operations": "operations"; "introspected": "introspected"; "isLoading": "isLoading"; }, { "back": "back"; "operationSelected": "operationSelected"; "reIntrospect": "reIntrospect"; "change": "change"; "preview": "preview"; }, never, never>;
83
+ }
@@ -137,67 +137,68 @@ import * as i134 from "./test-case-details/create-step-group/create-step-group.c
137
137
  import * as i135 from "./test-case-details/delete-steps/delete-steps.component";
138
138
  import * as i136 from "./test-case-details/run-execution-alert/run-execution-alert.component";
139
139
  import * as i137 from "./test-case-details/api-edit-step/api-edit-step.component";
140
- import * as i138 from "./live-conversation/live-conversation.component";
141
- import * as i139 from "./step-builder/step-builder-action/step-builder-action.component";
142
- import * as i140 from "./step-builder/step-builder-loop/step-builder-loop.component";
143
- import * as i141 from "./test-case-details/element-popup/element-popup.component";
144
- import * as i142 from "./test-case-details/element-popup/element-form/element-form.component";
145
- import * as i143 from "./step-builder/step-builder-condition/step-builder-condition.component";
146
- import * as i144 from "./step-builder/step-builder-database/step-builder-database.component";
147
- import * as i145 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
148
- import * as i146 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
149
- import * as i147 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
150
- import * as i148 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
151
- import * as i149 from "./test-case-details/element-list/element-list.component";
152
- import * as i150 from "./step-builder/step-builder-document/step-builder-document.component";
153
- import * as i151 from "./detail-side-panel/detail-side-panel.component";
154
- import * as i152 from "./detail-drawer/detail-drawer.component";
155
- import * as i153 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
156
- import * as i154 from "./detail-drawer/detail-drawer-tab-content.directive";
157
- import * as i155 from "./test-case-details/test-case-details.component";
158
- import * as i156 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
159
- import * as i157 from "./test-case-details/api-mocking-card/api-mocking-card.component";
160
- import * as i158 from "./step-builder/step-builder-group/step-builder-group.component";
161
- import * as i159 from "./test-case-details/step-details-drawer/step-details-drawer.component";
162
- import * as i160 from "./step-builder/template-variables-form/template-variables-form.component";
163
- import * as i161 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
164
- import * as i162 from "./test-case-details/step-details-modal/step-details-modal.component";
165
- import * as i163 from "./pipes/safe-html.pipe";
166
- import * as i164 from "./questionnaire-list/questionnaire-list.component";
167
- import * as i165 from "./change-history/change-history.component";
168
- import * as i166 from "./pipes/camel-to-title.pipe";
169
- import * as i167 from "./version-history/version-history-list/version-history-list.component";
170
- import * as i168 from "./version-history/version-history-compare/version-history-compare.component";
171
- import * as i169 from "./version-history/version-history-detail/version-history-detail.component";
172
- import * as i170 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
173
- import * as i171 from "./version-history/new-version-history-detail/new-version-history-detail.component";
174
- import * as i172 from "@angular/common";
175
- import * as i173 from "@angular/forms";
176
- import * as i174 from "@angular/platform-browser/animations";
177
- import * as i175 from "@angular/material/icon";
178
- import * as i176 from "@angular/material/menu";
179
- import * as i177 from "@angular/material/button";
180
- import * as i178 from "@angular/material/form-field";
181
- import * as i179 from "@angular/material/select";
182
- import * as i180 from "@angular/material/core";
183
- import * as i181 from "@angular/material/checkbox";
184
- import * as i182 from "@angular/material/radio";
185
- import * as i183 from "@angular/material/slide-toggle";
186
- import * as i184 from "@angular/material/datepicker";
187
- import * as i185 from "@angular/material/progress-spinner";
188
- import * as i186 from "@angular/material/tooltip";
189
- import * as i187 from "@angular/material/dialog";
190
- import * as i188 from "@angular/material/table";
191
- import * as i189 from "@angular/material/input";
192
- import * as i190 from "@angular/cdk/overlay";
193
- import * as i191 from "@angular/cdk/portal";
194
- import * as i192 from "@angular/cdk/scrolling";
195
- import * as i193 from "ngx-typed-js";
196
- import * as i194 from "ngx-drag-drop";
197
- import * as i195 from "ngx-monaco-editor";
140
+ import * as i138 from "./test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component";
141
+ import * as i139 from "./live-conversation/live-conversation.component";
142
+ import * as i140 from "./step-builder/step-builder-action/step-builder-action.component";
143
+ import * as i141 from "./step-builder/step-builder-loop/step-builder-loop.component";
144
+ import * as i142 from "./test-case-details/element-popup/element-popup.component";
145
+ import * as i143 from "./test-case-details/element-popup/element-form/element-form.component";
146
+ import * as i144 from "./step-builder/step-builder-condition/step-builder-condition.component";
147
+ import * as i145 from "./step-builder/step-builder-database/step-builder-database.component";
148
+ import * as i146 from "./step-builder/step-builder-ai-agent/step-builder-ai-agent.component";
149
+ import * as i147 from "./step-builder/step-builder-custom-code/step-builder-custom-code.component";
150
+ import * as i148 from "./step-builder/step-builder-record-step/step-builder-record-step.component";
151
+ import * as i149 from "./step-builder/step-builder-document-generation-template-step/step-builder-document-generation-template-step.component";
152
+ import * as i150 from "./test-case-details/element-list/element-list.component";
153
+ import * as i151 from "./step-builder/step-builder-document/step-builder-document.component";
154
+ import * as i152 from "./detail-side-panel/detail-side-panel.component";
155
+ import * as i153 from "./detail-drawer/detail-drawer.component";
156
+ import * as i154 from "./detail-drawer/detail-drawer-tab/detail-drawer-tab.component";
157
+ import * as i155 from "./detail-drawer/detail-drawer-tab-content.directive";
158
+ import * as i156 from "./test-case-details/test-case-details.component";
159
+ import * as i157 from "./test-case-details/test-case-details-edit/test-case-details-edit.component";
160
+ import * as i158 from "./test-case-details/api-mocking-card/api-mocking-card.component";
161
+ import * as i159 from "./step-builder/step-builder-group/step-builder-group.component";
162
+ import * as i160 from "./test-case-details/step-details-drawer/step-details-drawer.component";
163
+ import * as i161 from "./step-builder/template-variables-form/template-variables-form.component";
164
+ import * as i162 from "./step-builder/advanced-variables-form/advanced-variables-form.component";
165
+ import * as i163 from "./test-case-details/step-details-modal/step-details-modal.component";
166
+ import * as i164 from "./pipes/safe-html.pipe";
167
+ import * as i165 from "./questionnaire-list/questionnaire-list.component";
168
+ import * as i166 from "./change-history/change-history.component";
169
+ import * as i167 from "./pipes/camel-to-title.pipe";
170
+ import * as i168 from "./version-history/version-history-list/version-history-list.component";
171
+ import * as i169 from "./version-history/version-history-compare/version-history-compare.component";
172
+ import * as i170 from "./version-history/version-history-detail/version-history-detail.component";
173
+ import * as i171 from "./version-history/version-history-restore-confirm/version-history-restore-confirm.component";
174
+ import * as i172 from "./version-history/new-version-history-detail/new-version-history-detail.component";
175
+ import * as i173 from "@angular/common";
176
+ import * as i174 from "@angular/forms";
177
+ import * as i175 from "@angular/platform-browser/animations";
178
+ import * as i176 from "@angular/material/icon";
179
+ import * as i177 from "@angular/material/menu";
180
+ import * as i178 from "@angular/material/button";
181
+ import * as i179 from "@angular/material/form-field";
182
+ import * as i180 from "@angular/material/select";
183
+ import * as i181 from "@angular/material/core";
184
+ import * as i182 from "@angular/material/checkbox";
185
+ import * as i183 from "@angular/material/radio";
186
+ import * as i184 from "@angular/material/slide-toggle";
187
+ import * as i185 from "@angular/material/datepicker";
188
+ import * as i186 from "@angular/material/progress-spinner";
189
+ import * as i187 from "@angular/material/tooltip";
190
+ import * as i188 from "@angular/material/dialog";
191
+ import * as i189 from "@angular/material/table";
192
+ import * as i190 from "@angular/material/input";
193
+ import * as i191 from "@angular/cdk/overlay";
194
+ import * as i192 from "@angular/cdk/portal";
195
+ import * as i193 from "@angular/cdk/scrolling";
196
+ import * as i194 from "ngx-typed-js";
197
+ import * as i195 from "ngx-drag-drop";
198
+ import * as i196 from "ngx-monaco-editor";
198
199
  export declare class UiKitModule {
199
200
  constructor(iconRegistry: MatIconRegistry);
200
201
  static ɵfac: i0.ɵɵFactoryDeclaration<UiKitModule, never>;
201
- static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i124.TestCaseAiVerifyStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i162.StepDetailsModalComponent, typeof i163.SafeHtmlPipe, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i166.CamelToTitlePipe, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent], [typeof i172.CommonModule, typeof i173.FormsModule, typeof i173.ReactiveFormsModule, typeof i174.NoopAnimationsModule, typeof i175.MatIconModule, typeof i176.MatMenuModule, typeof i177.MatButtonModule, typeof i178.MatFormFieldModule, typeof i179.MatSelectModule, typeof i180.MatOptionModule, typeof i181.MatCheckboxModule, typeof i182.MatRadioModule, typeof i183.MatSlideToggleModule, typeof i184.MatDatepickerModule, typeof i180.MatNativeDateModule, typeof i185.MatProgressSpinnerModule, typeof i186.MatTooltipModule, typeof i187.MatDialogModule, typeof i188.MatTableModule, typeof i189.MatInputModule, typeof i190.OverlayModule, typeof i191.PortalModule, typeof i192.ScrollingModule, typeof i193.NgxTypedJsModule, typeof i194.DndModule, typeof i195.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i55.ConditionDebugStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.LiveConversationComponent, typeof i139.StepBuilderActionComponent, typeof i140.StepBuilderLoopComponent, typeof i141.ElementPopupComponent, typeof i142.ElementFormComponent, typeof i143.StepBuilderConditionComponent, typeof i144.StepBuilderDatabaseComponent, typeof i145.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i146.StepBuilderCustomCodeComponent, typeof i147.StepBuilderRecordStepComponent, typeof i148.StepBuilderDocumentGenerationTemplateStepComponent, typeof i149.ElementListComponent, typeof i150.StepBuilderDocumentComponent, typeof i151.DetailSidePanelComponent, typeof i152.DetailDrawerComponent, typeof i153.DetailDrawerTabComponent, typeof i154.DetailDrawerTabContentDirective, typeof i155.TestCaseDetailsComponent, typeof i156.TestCaseDetailsEditComponent, typeof i157.ApiMockingCardComponent, typeof i158.StepBuilderGroupComponent, typeof i159.StepDetailsDrawerComponent, typeof i160.TemplateVariablesFormComponent, typeof i161.AdvancedVariablesFormComponent, typeof i164.QuestionnaireListComponent, typeof i165.ChangeHistoryComponent, typeof i167.VersionHistoryListComponent, typeof i168.VersionHistoryCompareComponent, typeof i169.VersionHistoryDetailComponent, typeof i170.VersionHistoryRestoreConfirmComponent, typeof i171.NewVersionHistoryDetailComponent]>;
202
+ static ɵmod: i0.ɵɵNgModuleDeclaration<UiKitModule, [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i21.MetricsBlockComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i124.TestCaseAiVerifyStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.GraphQLOperationPickerComponent, typeof i139.LiveConversationComponent, typeof i140.StepBuilderActionComponent, typeof i141.StepBuilderLoopComponent, typeof i142.ElementPopupComponent, typeof i143.ElementFormComponent, typeof i144.StepBuilderConditionComponent, typeof i145.StepBuilderDatabaseComponent, typeof i146.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i147.StepBuilderCustomCodeComponent, typeof i148.StepBuilderRecordStepComponent, typeof i149.StepBuilderDocumentGenerationTemplateStepComponent, typeof i150.ElementListComponent, typeof i151.StepBuilderDocumentComponent, typeof i152.DetailSidePanelComponent, typeof i153.DetailDrawerComponent, typeof i154.DetailDrawerTabComponent, typeof i155.DetailDrawerTabContentDirective, typeof i156.TestCaseDetailsComponent, typeof i157.TestCaseDetailsEditComponent, typeof i158.ApiMockingCardComponent, typeof i159.StepBuilderGroupComponent, typeof i160.StepDetailsDrawerComponent, typeof i161.TemplateVariablesFormComponent, typeof i162.AdvancedVariablesFormComponent, typeof i163.StepDetailsModalComponent, typeof i164.SafeHtmlPipe, typeof i165.QuestionnaireListComponent, typeof i166.ChangeHistoryComponent, typeof i167.CamelToTitlePipe, typeof i168.VersionHistoryListComponent, typeof i169.VersionHistoryCompareComponent, typeof i170.VersionHistoryDetailComponent, typeof i171.VersionHistoryRestoreConfirmComponent, typeof i172.NewVersionHistoryDetailComponent], [typeof i173.CommonModule, typeof i174.FormsModule, typeof i174.ReactiveFormsModule, typeof i175.NoopAnimationsModule, typeof i176.MatIconModule, typeof i177.MatMenuModule, typeof i178.MatButtonModule, typeof i179.MatFormFieldModule, typeof i180.MatSelectModule, typeof i181.MatOptionModule, typeof i182.MatCheckboxModule, typeof i183.MatRadioModule, typeof i184.MatSlideToggleModule, typeof i185.MatDatepickerModule, typeof i181.MatNativeDateModule, typeof i186.MatProgressSpinnerModule, typeof i187.MatTooltipModule, typeof i188.MatDialogModule, typeof i189.MatTableModule, typeof i190.MatInputModule, typeof i191.OverlayModule, typeof i192.PortalModule, typeof i193.ScrollingModule, typeof i194.NgxTypedJsModule, typeof i195.DndModule, typeof i196.MonacoEditorModule], [typeof i1.ButtonComponent, typeof i2.SearchBarComponent, typeof i3.AutocompleteComponent, typeof i4.SegmentControlComponent, typeof i5.StepperComponent, typeof i6.RadioCardGroupComponent, typeof i7.ViewportSelectorComponent, typeof i8.DialogComponent, typeof i9.DynamicTableComponent, typeof i10.DynamicCellTemplateDirective, typeof i10.DynamicHeaderTemplateDirective, typeof i11.DynamicCellContainerDirective, typeof i12.PaginationComponent, typeof i13.ActionMenuButtonComponent, typeof i14.OtherButtonComponent, typeof i15.DynamicFilterComponent, typeof i16.DaterangepickerDirective, typeof i17.DaterangepickerComponent, typeof i18.ColumnVisibilityComponent, typeof i19.TableActionToolbarComponent, typeof i20.MetricsCardComponent, typeof i22.ChartCardComponent, typeof i23.ProgressTextCardComponent, typeof i24.DashboardHeaderComponent, typeof i25.WorkspaceSelectorComponent, typeof i26.CoverageModuleCardComponent, typeof i27.TestDistributionCardComponent, typeof i28.FailedTestCasesCardComponent, typeof i29.DynamicSelectFieldComponent, typeof i30.AddPrerequisiteCasesSectionComponent, typeof i31.SelectedFiltersComponent, typeof i32.InsightCardComponent, typeof i33.BadgeComponent, typeof i34.DropdownButtonComponent, typeof i35.HeatErrorMapCellComponent, typeof i36.EmptyStateComponent, typeof i37.TableTemplateComponent, typeof i38.ModularTableTemplateComponent, typeof i39.FolderSidebarComponent, typeof i42.NewFolderDialogComponent, typeof i43.DeleteFolderDialogComponent, typeof i40.MoveToFolderDialogComponent, typeof i41.MoveTestSuiteDialogComponent, typeof i44.RowDragDirective, typeof i45.FolderDropDirective, typeof i46.FolderDragDirective, typeof i47.NamePromptModalComponent, typeof i48.FullTableLoaderComponent, typeof i49.TableDataLoaderComponent, typeof i50.BasicStepComponent, typeof i51.StepRendererComponent, typeof i52.StepGroupComponent, typeof i53.LoopStepComponent, typeof i54.ConditionStepComponent, typeof i55.ConditionDebugStepComponent, typeof i56.ConditionBranchEditorComponent, typeof i57.FailedStepComponent, typeof i55.ConditionDebugStepComponent, typeof i58.UpdatedFailedStepComponent, typeof i59.ViewMoreFailedStepButtonComponent, typeof i60.SelfHealAnalysisComponent, typeof i61.AIAgentStepComponent, typeof i62.AIActionStepComponent, typeof i63.ApiStepComponent, typeof i64.FileDownloadStepComponent, typeof i65.DocumentVerificationStepComponent, typeof i66.LiveExecutionStepComponent, typeof i67.AiLogsWithReasoningComponent, typeof i68.JumpToStepModalComponent, typeof i69.BreakpointsModalComponent, typeof i70.RecordingBannerComponent, typeof i71.ReviewRecordedStepsModalComponent, typeof i72.MainStepCollapseComponent, typeof i73.VisualComparisonComponent, typeof i74.SimulatorComponent, typeof i75.ConsoleAlertComponent, typeof i76.AiDebugAlertComponent, typeof i77.NetworkRequestComponent, typeof i78.RunHistoryCardComponent, typeof i79.AiPromptCardComponent, typeof i80.VisualDifferenceModalComponent, typeof i81.ConfigurationCardComponent, typeof i82.CompareRunsComponent, typeof i83.ViewCompareButtonComponent, typeof i84.TestCaseLinkCellComponent, typeof i85.IterationsLoopComponent, typeof i86.FailedStepCardComponent, typeof i87.CustomInputComponent, typeof i88.MixedVariableInputComponent, typeof i89.CustomTextareaComponent, typeof i90.CodeEditorComponent, typeof i91.CustomToggleComponent, typeof i92.FileUploadComponent, typeof i93.AiReasoningComponent, typeof i94.ExecutionResultModalComponent, typeof i95.SessionChangesModalComponent, typeof i96.ErrorModalComponent, typeof i97.SessionRestorationDialogComponent, typeof i98.CaptureVideoDialogComponent, typeof i99.SubStepsConfirmationDialogComponent, typeof i100.NewGlobalVariableDialogComponent, typeof i101.NewEnvironmentDialogComponent, typeof i102.NewEnvironmentVariableDialogComponent, typeof i103.NewDbConfigDialogComponent, typeof i104.NewTestDataProfileDialogComponent, typeof i105.ManageColumnsDialogComponent, typeof i106.AuditLogDrawerComponent, typeof i107.AuditLogEntryCardComponent, typeof i108.AssignEnvironmentsDialogComponent, typeof i109.PermissionToggleComponent, typeof i110.ExportCodeModalComponent, typeof i111.ProgressIndicatorComponent, typeof i112.StepProgressCardComponent, typeof i113.StepStatusCardComponent, typeof i114.DbVerificationStepComponent, typeof i115.DbQueryExecutionItemComponent, typeof i116.TestCaseNormalStepComponent, typeof i117.TestCaseLoopStepComponent, typeof i118.TestCaseConditionStepComponent, typeof i119.TestCaseStepGroupComponent, typeof i120.TestCaseDetailsRendererComponent, typeof i121.TestCaseApiStepComponent, typeof i122.TestCaseDatabaseStepComponent, typeof i123.TestCaseAiAgentStepComponent, typeof i125.TestCaseUploadStepComponent, typeof i126.TestCaseScreenshotStepComponent, typeof i127.TestCaseScrollStepComponent, typeof i128.TestCaseVerifyUrlStepComponent, typeof i129.TestCaseRestoreSessionStepComponent, typeof i130.TestCaseCustomCodeStepComponent, typeof i131.CustomEditStepComponent, typeof i132.ItemListComponent, typeof i133.TestDataModalComponent, typeof i134.CreateStepGroupComponent, typeof i135.DeleteStepsComponent, typeof i136.RunExecutionAlertComponent, typeof i137.ApiEditStepComponent, typeof i138.GraphQLOperationPickerComponent, typeof i139.LiveConversationComponent, typeof i140.StepBuilderActionComponent, typeof i141.StepBuilderLoopComponent, typeof i142.ElementPopupComponent, typeof i143.ElementFormComponent, typeof i144.StepBuilderConditionComponent, typeof i145.StepBuilderDatabaseComponent, typeof i146.StepBuilderAiAgentComponent, typeof i90.CodeEditorComponent, typeof i147.StepBuilderCustomCodeComponent, typeof i148.StepBuilderRecordStepComponent, typeof i149.StepBuilderDocumentGenerationTemplateStepComponent, typeof i150.ElementListComponent, typeof i151.StepBuilderDocumentComponent, typeof i152.DetailSidePanelComponent, typeof i153.DetailDrawerComponent, typeof i154.DetailDrawerTabComponent, typeof i155.DetailDrawerTabContentDirective, typeof i156.TestCaseDetailsComponent, typeof i157.TestCaseDetailsEditComponent, typeof i158.ApiMockingCardComponent, typeof i159.StepBuilderGroupComponent, typeof i160.StepDetailsDrawerComponent, typeof i161.TemplateVariablesFormComponent, typeof i162.AdvancedVariablesFormComponent, typeof i165.QuestionnaireListComponent, typeof i166.ChangeHistoryComponent, typeof i168.VersionHistoryListComponent, typeof i169.VersionHistoryCompareComponent, typeof i170.VersionHistoryDetailComponent, typeof i171.VersionHistoryRestoreConfirmComponent, typeof i172.NewVersionHistoryDetailComponent]>;
202
203
  static ɵinj: i0.ɵɵInjectorDeclaration<UiKitModule>;
203
204
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cqa-lib/cqa-ui",
3
- "version": "1.1.556",
3
+ "version": "1.1.557-delta.10",
4
4
  "description": "UI Kit library for Angular 13.4",
5
5
  "keywords": [
6
6
  "angular",
package/public-api.d.ts CHANGED
@@ -168,6 +168,7 @@ export * from './lib/test-case-details/create-step-group/create-step-group.compo
168
168
  export * from './lib/test-case-details/delete-steps/delete-steps.component';
169
169
  export * from './lib/test-case-details/run-execution-alert/run-execution-alert.component';
170
170
  export * from './lib/test-case-details/api-edit-step/api-edit-step.component';
171
+ export * from './lib/test-case-details/api-edit-step/graphql-operation-picker/graphql-operation-picker.component';
171
172
  export * from './lib/test-case-details/test-case-step.models';
172
173
  export * from './lib/live-conversation/live-conversation.component';
173
174
  export * from './lib/step-builder/step-builder-action/step-builder-action.component';