@win2win/shared 1.0.46 → 1.0.48
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/dist/interfaces/liquidaciones/item-liquidable.d.ts +3 -2
- package/dist/interfaces/screem_home/aws-config-interface.d.ts +5 -0
- package/dist/interfaces/screem_home/aws-config-interface.js +6 -0
- package/dist/interfaces/screem_home/config-home-interface.d.ts +15 -0
- package/dist/interfaces/screem_home/config-home-interface.js +6 -0
- package/dist/interfaces/screem_home/datasource-option-interface.d.ts +12 -0
- package/dist/interfaces/screem_home/datasource-option-interface.js +6 -0
- package/dist/interfaces/screem_home/footer-config-interface.d.ts +7 -0
- package/dist/interfaces/screem_home/footer-config-interface.js +6 -0
- package/dist/interfaces/screem_home/footer-variant-config-interface.d.ts +8 -0
- package/dist/interfaces/screem_home/footer-variant-config-interface.js +6 -0
- package/dist/interfaces/screem_home/google-config-interface.d.ts +3 -0
- package/dist/interfaces/screem_home/google-config-interface.js +6 -0
- package/dist/interfaces/screem_home/layout-home-config-interface.d.ts +4 -0
- package/dist/interfaces/screem_home/layout-home-config-interface.js +6 -0
- package/dist/interfaces/screem_home/layouts-config-interface.d.ts +14 -0
- package/dist/interfaces/screem_home/layouts-config-interface.js +6 -0
- package/dist/interfaces/screem_home/logo-config-interface.d.ts +3 -0
- package/dist/interfaces/screem_home/logo-config-interface.js +6 -0
- package/dist/interfaces/screem_home/mobile-config-interface.d.ts +3 -0
- package/dist/interfaces/screem_home/mobile-config-interface.js +6 -0
- package/dist/interfaces/screem_home/role-config-interface.d.ts +10 -0
- package/dist/interfaces/screem_home/role-config-interface.js +6 -0
- package/dist/interfaces/screem_home/sca-config-interface.d.ts +10 -0
- package/dist/interfaces/screem_home/sca-config-interface.js +6 -0
- package/dist/interfaces/screem_home/toolbar-config-interface.d.ts +8 -0
- package/dist/interfaces/screem_home/toolbar-config-interface.js +6 -0
- package/package.json +1 -1
- package/readme.md +11 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Id } from "../shared";
|
|
2
|
-
import { TipoComision } from "./comision";
|
|
2
|
+
import { ComisionSource, TipoComision } from "./comision";
|
|
3
3
|
interface ItemLiquidable {
|
|
4
4
|
ID_CAPTACION: Id;
|
|
5
5
|
TIPO: string;
|
|
@@ -35,6 +35,7 @@ interface ItemLiquidableUsuarioLite {
|
|
|
35
35
|
interface ItemLiquidableComision {
|
|
36
36
|
ID_COMISION_DET: Id;
|
|
37
37
|
TIPO: TipoComision;
|
|
38
|
+
SOURCE: ComisionSource | null;
|
|
38
39
|
ORGANIZADOR: number;
|
|
39
40
|
GERENTE: number;
|
|
40
41
|
SUPERVISOR: number;
|
|
@@ -54,7 +55,7 @@ interface ItemLiquidablePedido {
|
|
|
54
55
|
FECHA_CREADO: Date;
|
|
55
56
|
R_PRODUCTOS_PEDIDO: {
|
|
56
57
|
ID_PRODUCTO_PEDIDO: number;
|
|
57
|
-
|
|
58
|
+
CODIGO_EXTERNO: string;
|
|
58
59
|
R_PRODUCTO: {
|
|
59
60
|
ID_PRODUCTO: number;
|
|
60
61
|
NOMBRE: string;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AwsConfig } from "./aws-config-interface";
|
|
2
|
+
import { DataSourceOptions } from "./datasource-option-interface";
|
|
3
|
+
import { GoogleConfig } from "./google-config-interface";
|
|
4
|
+
import { ScaConfig } from "./sca-config-interface";
|
|
5
|
+
export declare class ConfigHome {
|
|
6
|
+
PUBLIC_PATH?: string;
|
|
7
|
+
URL_PUBLIC_ADMINERP?: string;
|
|
8
|
+
URL_PUBLIC_LANDING?: string;
|
|
9
|
+
dataSourceOptions?: DataSourceOptions;
|
|
10
|
+
aws?: AwsConfig;
|
|
11
|
+
google?: GoogleConfig;
|
|
12
|
+
FREE_CURRENCY_API_KEY?: string;
|
|
13
|
+
idioma?: Record<string, any>;
|
|
14
|
+
sca?: ScaConfig;
|
|
15
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare class DataSourceOptions {
|
|
2
|
+
type?: string;
|
|
3
|
+
host?: string;
|
|
4
|
+
username?: string;
|
|
5
|
+
password?: string;
|
|
6
|
+
synchronize?: boolean;
|
|
7
|
+
logging?: boolean;
|
|
8
|
+
entities?: string[];
|
|
9
|
+
migrations?: string[];
|
|
10
|
+
migrationsTableName?: string;
|
|
11
|
+
database?: string;
|
|
12
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { FooterConfig } from "./footer-config-interface";
|
|
2
|
+
import { LayoutHomeConfig } from "./layout-home-config-interface";
|
|
3
|
+
import { RoleConfig } from "./role-config-interface";
|
|
4
|
+
import { ToolbarConfig } from "./toolbar-config-interface";
|
|
5
|
+
export declare class LayoutsConfig {
|
|
6
|
+
home?: Record<string, LayoutHomeConfig>;
|
|
7
|
+
menu?: {
|
|
8
|
+
ca?: number[];
|
|
9
|
+
menu_header?: RoleConfig[];
|
|
10
|
+
menu_footer?: RoleConfig[];
|
|
11
|
+
}[];
|
|
12
|
+
toolbar?: ToolbarConfig;
|
|
13
|
+
footer?: FooterConfig;
|
|
14
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { LayoutsConfig } from "./layouts-config-interface";
|
|
2
|
+
export declare class ScaConfig {
|
|
3
|
+
soy_banco?: boolean;
|
|
4
|
+
cliente?: string;
|
|
5
|
+
bloqueados?: Record<string, any>;
|
|
6
|
+
habilitados?: Record<string, any>;
|
|
7
|
+
roles?: Record<string, string>;
|
|
8
|
+
roles_bloqueados?: Record<string, any>;
|
|
9
|
+
layouts?: LayoutsConfig;
|
|
10
|
+
}
|
package/package.json
CHANGED