@eqproject/eqp-dynamic-module 2.10.86 → 2.10.88

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.
@@ -140,6 +140,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
140
140
  selectedFields: Array<BaseField>;
141
141
  dialogAiEditRef: MatDialogRef<TemplateRef<any>>;
142
142
  dialogAiEdit: TemplateRef<any>;
143
+ dialogAiHistoryRef: MatDialogRef<TemplateRef<any>>;
144
+ dialogAiHistory: TemplateRef<any>;
143
145
  dialogContestualizationRef: MatDialogRef<TemplateRef<any>>;
144
146
  dialogContestualization: TemplateRef<any>;
145
147
  dialogVeTooltip: TemplateRef<any>;
@@ -163,6 +165,11 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
163
165
  }>;
164
166
  aiEditAutosave: boolean;
165
167
  aiEditLoading: boolean;
168
+ aiEditCountdown: number;
169
+ aiEditEstimatedSec: number;
170
+ private _aiCountdownRef;
171
+ private _aiEditCancelled;
172
+ aiEditIsOvertime: boolean;
166
173
  showAiPromptHistory: boolean;
167
174
  aiEditFieldContext: {
168
175
  code: string;
@@ -437,6 +444,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
437
444
  deleteActionButton(element: ActionButton): void;
438
445
  openAiEditDialog(): void;
439
446
  closeAiEditDialog(): void;
447
+ openAiHistoryDialog(): void;
448
+ private _stopAiCountdown;
449
+ private _startAiCountdown;
450
+ cancelAiEdit(): void;
440
451
  onAiEditForField(fieldCode: string): void;
441
452
  onAiGraphicSuggest(data: {
442
453
  code: string;
@@ -108,6 +108,11 @@ export declare class UtilityHelperService {
108
108
  CostCents: number;
109
109
  ElapsedMs: number;
110
110
  }) => void, errorCallBack?: (err: unknown) => void): void;
111
+ /**
112
+ * Variante SSE di RunEndPointCall: legge la risposta come stream text/event-stream.
113
+ * Emette tre callback: onEstimate (stima pre-call SKILLFORK), onResult (payload completo), onError.
114
+ */
115
+ RunSseEndPointCall(endPointData: EndPointData, dynamicModuleParams: Array<EndPointDataParams>, onEstimate: (estimatedSeconds: number) => void, onResult: (res: any) => void, onError: (err: any) => void, skipSpinner?: boolean): void;
111
116
  static base64ToBlob(b64Data: any, contentType?: string, sliceSize?: number): Blob;
112
117
  static parseValueString(field: any, record: any): any;
113
118
  static ɵfac: i0.ɵɵFactoryDeclaration<UtilityHelperService, never>;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": {
5
5
  "name": "EqProject"
6
6
  },
7
- "version": "2.10.86",
7
+ "version": "2.10.88",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",