dmencu 2.3.0 → 3.0.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.
Files changed (51) hide show
  1. package/dist/client/client/client.d.ts +4 -1
  2. package/dist/client/client/client.js +163 -270
  3. package/dist/client/unlogged/abrir-formulario.d.ts +1 -8
  4. package/dist/client/unlogged/abrir-formulario.js +7 -48
  5. package/dist/client/unlogged/bypass-formulario.d.ts +2 -1
  6. package/dist/client/unlogged/bypass-formulario.js +12 -9
  7. package/dist/client/unlogged/redux-formulario.d.ts +140 -89
  8. package/dist/client/unlogged/redux-formulario.js +18 -62
  9. package/dist/client/unlogged/render-config.d.ts +46 -8
  10. package/dist/client/unlogged/render-config.js +146 -10
  11. package/dist/client/unlogged/render-formulario.d.ts +139 -0
  12. package/dist/client/unlogged/render-formulario.js +2045 -0
  13. package/dist/client/unlogged/render-formulario.tsx +609 -233
  14. package/dist/client/unlogged/render-general.d.ts +147 -0
  15. package/dist/client/unlogged/render-general.js +254 -0
  16. package/dist/client/unlogged/render-general.tsx +9 -3
  17. package/dist/client/unlogged/render-init.d.ts +17 -1
  18. package/dist/client/unlogged/render-init.js +107 -29
  19. package/dist/client/unlogged/tipos.d.ts +6 -4
  20. package/dist/client/unlogged/tipos.js +1 -1
  21. package/dist/server/server/app-dmencu.d.ts +8 -2
  22. package/dist/server/server/app-dmencu.js +17 -10
  23. package/dist/server/server/procedures-dmencu.d.ts +1 -1
  24. package/dist/server/server/procedures-dmencu.js +24 -21
  25. package/dist/server/server/table-sincronizaciones.js +4 -3
  26. package/dist/server/unlogged/tipos.d.ts +6 -4
  27. package/dist/server/unlogged/tipos.js +1 -1
  28. package/dist/unlogged/unlogged/abrir-formulario.d.ts +1 -8
  29. package/dist/unlogged/unlogged/abrir-formulario.js +7 -48
  30. package/dist/unlogged/unlogged/bypass-formulario.d.ts +2 -1
  31. package/dist/unlogged/unlogged/bypass-formulario.js +12 -9
  32. package/dist/unlogged/unlogged/redux-formulario.d.ts +140 -89
  33. package/dist/unlogged/unlogged/redux-formulario.js +18 -62
  34. package/dist/unlogged/unlogged/render-config.d.ts +46 -8
  35. package/dist/unlogged/unlogged/render-config.js +146 -10
  36. package/dist/unlogged/unlogged/render-formulario.d.ts +57 -10
  37. package/dist/unlogged/unlogged/render-formulario.js +363 -170
  38. package/dist/unlogged/unlogged/render-formulario.tsx +609 -233
  39. package/dist/unlogged/unlogged/render-general.d.ts +10 -0
  40. package/dist/unlogged/unlogged/render-general.js +8 -4
  41. package/dist/unlogged/unlogged/render-general.tsx +9 -3
  42. package/dist/unlogged/unlogged/render-init.d.ts +17 -1
  43. package/dist/unlogged/unlogged/render-init.js +107 -29
  44. package/dist/unlogged/unlogged/tipos.d.ts +6 -4
  45. package/dist/unlogged/unlogged/tipos.js +1 -1
  46. package/dist/unlogged/unlogged/unlogged.js +254 -50
  47. package/package.json +2 -2
  48. package/dist/unlogged/unlogged/render-config copy.d.ts +0 -11
  49. package/dist/unlogged/unlogged/render-config copy.js +0 -22
  50. package/dist/unlogged/unlogged/tipos copy.d.ts +0 -0
  51. package/dist/unlogged/unlogged/tipos copy.js +0 -2
@@ -6,6 +6,6 @@ export type generarIdEncFun = (area: number, index: number) => IdEnc;
6
6
  export declare const setGenerarIdEncFun: (fun: generarIdEncFun) => generarIdEncFun;
7
7
  export declare const setMaxEncPorArea: (max: number) => number;
8
8
  export declare const getOperativoActual: (context: ProcedureContext) => Promise<any>;
9
- export declare var setHdrQuery: (myFun: (quotedCondViv: string, context: ProcedureContext, unidadAnalisisPrincipal: IdUnidadAnalisis, permiteGenerarMuestra: boolean) => string) => (quotedCondViv: string, context: ProcedureContext, unidadAnalisisPrincipal: IdUnidadAnalisis, permiteGenerarMuestra: boolean) => string;
9
+ export declare var setHdrQuery: (myFun: (quotedCondViv: string, context: ProcedureContext, unidadAnalisisPrincipal: IdUnidadAnalisis, permiteGenerarMuestra: boolean, idper: string) => string) => (quotedCondViv: string, context: ProcedureContext, unidadAnalisisPrincipal: IdUnidadAnalisis, permiteGenerarMuestra: boolean, idper: string) => string;
10
10
  export declare function pasarEncuestasAProie(client: Client): Promise<string>;
11
11
  export declare const ProceduresDmEncu: ProcedureDef[];