@eqproject/eqp-dynamic-module 2.10.87 → 2.10.89

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;
@@ -172,6 +179,8 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
172
179
  formGraphicSuggestHint: string;
173
180
  showFormGraphicSuggestInput: boolean;
174
181
  formGraphicScope: string;
182
+ generateBackground: boolean;
183
+ aiGenerateBackground: boolean;
175
184
  presentFieldTypeOptions: {
176
185
  value: string;
177
186
  label: string;
@@ -437,6 +446,10 @@ export declare class EqpDynamicModuleConfiguratorComponent implements OnInit, Af
437
446
  deleteActionButton(element: ActionButton): void;
438
447
  openAiEditDialog(): void;
439
448
  closeAiEditDialog(): void;
449
+ openAiHistoryDialog(): void;
450
+ private _stopAiCountdown;
451
+ private _startAiCountdown;
452
+ cancelAiEdit(): void;
440
453
  onAiEditForField(fieldCode: string): void;
441
454
  onAiGraphicSuggest(data: {
442
455
  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.87",
7
+ "version": "2.10.89",
8
8
  "peerDependencies": {
9
9
  "@angular-material-components/datetime-picker": "^15.0.0",
10
10
  "@angular-material-components/moment-adapter": "^15.0.0",