dmencu 3.1.1 → 3.1.2
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.
|
@@ -638,6 +638,7 @@ export declare function emergeAppDmEncu<T extends procesamiento.Constructor<proc
|
|
|
638
638
|
}>);
|
|
639
639
|
specialSqlDefaultExpressions: Record<string, string>;
|
|
640
640
|
activeSkinFiles: Set<string>;
|
|
641
|
+
transformInput: <T_1>(fieldDefinition: procesamiento.FieldDefinitionInternal, value: T_1) => T_1;
|
|
641
642
|
};
|
|
642
643
|
} & T;
|
|
643
644
|
export declare var AppDmEncu: {
|
|
@@ -1272,6 +1273,7 @@ export declare var AppDmEncu: {
|
|
|
1272
1273
|
}>);
|
|
1273
1274
|
specialSqlDefaultExpressions: Record<string, string>;
|
|
1274
1275
|
activeSkinFiles: Set<string>;
|
|
1276
|
+
transformInput: <T>(fieldDefinition: procesamiento.FieldDefinitionInternal, value: T) => T;
|
|
1275
1277
|
};
|
|
1276
1278
|
} & (new (...args: any[]) => {
|
|
1277
1279
|
getProcedures(): Promise<import("backend-plus").ProcedureDef<any>[]>;
|
|
@@ -1853,6 +1855,7 @@ export declare var AppDmEncu: {
|
|
|
1853
1855
|
specialValueWhenInsert: {
|
|
1854
1856
|
[k: string]: (context: import("backend-plus").ProcedureContext, defField: import("backend-plus").FieldDefinition, parameters: object) => any;
|
|
1855
1857
|
};
|
|
1858
|
+
specialSqlDefaultExpressions: Record<string, string>;
|
|
1856
1859
|
clearCaches(): void;
|
|
1857
1860
|
start(opts?: import("backend-plus").StartOptions): Promise<void>;
|
|
1858
1861
|
getTables(): import("backend-plus").TableItemDef[];
|
|
@@ -1892,7 +1895,10 @@ export declare var AppDmEncu: {
|
|
|
1892
1895
|
message: string;
|
|
1893
1896
|
fun: () => Promise<void>;
|
|
1894
1897
|
}): void;
|
|
1895
|
-
shutdownBackend(
|
|
1898
|
+
shutdownBackend(opts?: {
|
|
1899
|
+
skipTurnOff?: boolean;
|
|
1900
|
+
onlyTurnOff?: boolean;
|
|
1901
|
+
}): Promise<void>;
|
|
1896
1902
|
setLog(opts: {
|
|
1897
1903
|
until: string;
|
|
1898
1904
|
results?: boolean;
|
|
@@ -1902,6 +1908,8 @@ export declare var AppDmEncu: {
|
|
|
1902
1908
|
prepareTransformationSql: string[];
|
|
1903
1909
|
endTransformationSql: string[];
|
|
1904
1910
|
}>;
|
|
1911
|
+
activeSkinFiles: Set<string>;
|
|
1912
|
+
transformInput: <T_1>(fieldDefinition: import("backend-plus").FieldDefinitionInternal, value: T_1) => T_1;
|
|
1905
1913
|
};
|
|
1906
1914
|
prefixTableName(tableName: string, prefix: string): string;
|
|
1907
1915
|
} & typeof procesamiento.AppBackend;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dmencu",
|
|
3
3
|
"description": "DM Encu - Encuestas en dispositivo móvil",
|
|
4
|
-
"version": "3.1.
|
|
4
|
+
"version": "3.1.2",
|
|
5
5
|
"author": "Codenautas <codenautas@googlegroups.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/server/server/app-dmencu.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"backend-plus": "^2.7.0-beta.13",
|
|
16
16
|
"cast-error": "^0.1.3",
|
|
17
17
|
"like-ar": "^0.3.9",
|
|
18
|
-
"meta-enc": "^1.4.
|
|
18
|
+
"meta-enc": "^1.4.18",
|
|
19
19
|
"procesamiento": "^2.0.10",
|
|
20
20
|
"qrcode": "^1.5.3",
|
|
21
21
|
"react": "~17.0.2",
|