@eqproject/eqp-dynamic-module 2.10.52 → 2.10.53
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/components/exported/eqp-dynamic-module-configurator/eqp-dynamic-module-configurator.component.mjs +5 -2
- package/esm2020/lib/services/eqp-dynamic-module-dialog.service.mjs +2 -2
- package/esm2020/lib/services/utilityHelper.services.mjs +1 -1
- package/fesm2015/eqproject-eqp-dynamic-module.mjs +5 -2
- package/fesm2015/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/fesm2020/eqproject-eqp-dynamic-module.mjs +5 -2
- package/fesm2020/eqproject-eqp-dynamic-module.mjs.map +1 -1
- package/lib/services/utilityHelper.services.d.ts +6 -1
- package/package.json +1 -1
|
@@ -96,7 +96,12 @@ export declare class UtilityHelperService {
|
|
|
96
96
|
* @param errorCallBack Metodo da eseguire in caso di errore dopo la chiamata http.
|
|
97
97
|
* NOTA: in input viene passato l'errore generato della chiamata stessa.
|
|
98
98
|
*/
|
|
99
|
-
RunEndPointCall(endPointData: EndPointData, dynamicModuleParams?: Array<EndPointDataParams>, callback?: (e: Form | Array<Form> | Record | Array<Record> | DynAttachment | Array<DynAttachment> | string
|
|
99
|
+
RunEndPointCall(endPointData: EndPointData, dynamicModuleParams?: Array<EndPointDataParams>, callback?: (e: Form | Array<Form> | Record | Array<Record> | DynAttachment | Array<DynAttachment> | string | {
|
|
100
|
+
Form: Form;
|
|
101
|
+
Warnings: string[];
|
|
102
|
+
CostCents: number;
|
|
103
|
+
ElapsedMs: number;
|
|
104
|
+
}) => void, errorCallBack?: (err: unknown) => void): void;
|
|
100
105
|
static base64ToBlob(b64Data: any, contentType?: string, sliceSize?: number): Blob;
|
|
101
106
|
static parseValueString(field: any, record: any): any;
|
|
102
107
|
static ɵfac: i0.ɵɵFactoryDeclaration<UtilityHelperService, never>;
|