@mc-hogar/crosslib 1.0.13 → 1.0.15

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.
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=PlanPago.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanPago.types.js","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/PlanPago.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=PlanPago.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanPago.types.js","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/PlanPago.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,31 @@
1
+ import { ServicioPago } from './ServicioPagos.types';
2
+ import { Tarjeta } from './Tarjetas.types';
3
+ import { Banco } from './Bancos.types';
4
+ export interface PlanPago {
5
+ id: number;
6
+ comentariosWeb: string | null;
7
+ comentarios: string | null;
8
+ cantidad_cuotas: number;
9
+ coeficiente_recargo_descuento: string;
10
+ porcentaje_reintegro: string | null;
11
+ activo: boolean;
12
+ badge_img_url: string | null;
13
+ fecha_desde_valido: string | null;
14
+ fecha_hasta_valido: string | null;
15
+ created_at: string;
16
+ updated_at: string;
17
+ servicio_pago_id: number;
18
+ tarjeta_id: number;
19
+ banco_id: number;
20
+ }
21
+ export type PlanPagoIncludingServicioPago = PlanPago & {
22
+ finan_servicio_pago: ServicioPago;
23
+ };
24
+ export type PlanPagoIncludingTarjeta = PlanPago & {
25
+ finan_tarjeta: Tarjeta;
26
+ };
27
+ export type PlanPagoIncludingBanco = PlanPago & {
28
+ finan_banco: Banco;
29
+ };
30
+ export type PlanPagoIncludingAll = PlanPagoIncludingServicioPago & PlanPagoIncludingTarjeta & PlanPagoIncludingBanco;
31
+ //# sourceMappingURL=PlanPago.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"PlanPago.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/PlanPago.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACpD,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAA;AAC1C,OAAO,EAAE,KAAK,EAAE,MAAM,gBAAgB,CAAA;AAEtC,MAAM,WAAW,QAAQ;IACrB,EAAE,EAAE,MAAM,CAAC;IACX,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,eAAe,EAAE,MAAM,CAAC;IACxB,6BAA6B,EAAE,MAAM,CAAC;IACtC,oBAAoB,EAAE,MAAM,GAAG,IAAI,CAAC;IACpC,MAAM,EAAE,OAAO,CAAC;IAChB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;IACnB,gBAAgB,EAAE,MAAM,CAAC;IACzB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,MAAM,6BAA6B,GAAG,QAAQ,GAAG;IAAE,mBAAmB,EAAE,YAAY,CAAA;CAAE,CAAA;AAE5F,MAAM,MAAM,wBAAwB,GAAG,QAAQ,GAAG;IAAE,aAAa,EAAE,OAAO,CAAA;CAAE,CAAA;AAE5E,MAAM,MAAM,sBAAsB,GAAG,QAAQ,GAAG;IAAE,WAAW,EAAE,KAAK,CAAA;CAAE,CAAA;AAEtE,MAAM,MAAM,oBAAoB,GAAG,6BAA6B,GAAG,wBAAwB,GAAG,sBAAsB,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-hogar/crosslib",
3
- "version": "1.0.13",
3
+ "version": "1.0.15",
4
4
  "description": "Cross-platform TypeScript library",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -1,12 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.TipoServicioPago = void 0;
4
- var TipoServicioPago;
5
- (function (TipoServicioPago) {
6
- TipoServicioPago["CREDITO_DEBITO_FISERV"] = "CREDITO_DEBITO_FISERV";
7
- TipoServicioPago["TRANSFERENCIA"] = "TRANSFERENCIA";
8
- TipoServicioPago["EFECTIVO"] = "EFECTIVO";
9
- TipoServicioPago["CREDITO_PERSONAL"] = "CREDITO_PERSONAL";
10
- TipoServicioPago["BILLETERA_MERCADO_PAGO"] = "BILLETERA_MERCADO_PAGO";
11
- })(TipoServicioPago || (exports.TipoServicioPago = TipoServicioPago = {}));
12
- //# sourceMappingURL=ServicioPago1.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ServicioPago1.types.js","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/ServicioPago1.types.ts"],"names":[],"mappings":";;;AAcA,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,mEAA+C,CAAA;IAC/C,mDAA+B,CAAA;IAC/B,yCAAqB,CAAA;IACrB,yDAAqC,CAAA;IACrC,qEAAiD,CAAA;AACnD,CAAC,EANW,gBAAgB,gCAAhB,gBAAgB,QAM3B"}
@@ -1,9 +0,0 @@
1
- export var TipoServicioPago;
2
- (function (TipoServicioPago) {
3
- TipoServicioPago["CREDITO_DEBITO_FISERV"] = "CREDITO_DEBITO_FISERV";
4
- TipoServicioPago["TRANSFERENCIA"] = "TRANSFERENCIA";
5
- TipoServicioPago["EFECTIVO"] = "EFECTIVO";
6
- TipoServicioPago["CREDITO_PERSONAL"] = "CREDITO_PERSONAL";
7
- TipoServicioPago["BILLETERA_MERCADO_PAGO"] = "BILLETERA_MERCADO_PAGO";
8
- })(TipoServicioPago || (TipoServicioPago = {}));
9
- //# sourceMappingURL=ServicioPago1.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ServicioPago1.types.js","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/ServicioPago1.types.ts"],"names":[],"mappings":"AAcA,MAAM,CAAN,IAAY,gBAMX;AAND,WAAY,gBAAgB;IAC1B,mEAA+C,CAAA;IAC/C,mDAA+B,CAAA;IAC/B,yCAAqB,CAAA;IACrB,yDAAqC,CAAA;IACrC,qEAAiD,CAAA;AACnD,CAAC,EANW,gBAAgB,KAAhB,gBAAgB,QAM3B"}
@@ -1,21 +0,0 @@
1
- export interface ServicioPago {
2
- id: number;
3
- tipo_medio: TipoServicioPago;
4
- nombre: string;
5
- nombreWeb: string;
6
- orden: number | null;
7
- logoUrl: string | null;
8
- comentarios: string | null;
9
- activo: boolean;
10
- mostrar_web: boolean;
11
- created_at: string;
12
- updated_at: string;
13
- }
14
- export declare enum TipoServicioPago {
15
- CREDITO_DEBITO_FISERV = "CREDITO_DEBITO_FISERV",
16
- TRANSFERENCIA = "TRANSFERENCIA",
17
- EFECTIVO = "EFECTIVO",
18
- CREDITO_PERSONAL = "CREDITO_PERSONAL",
19
- BILLETERA_MERCADO_PAGO = "BILLETERA_MERCADO_PAGO"
20
- }
21
- //# sourceMappingURL=ServicioPago1.types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"ServicioPago1.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Financiacion/types/ServicioPago1.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IACzB,EAAE,EAAE,MAAM,CAAA;IACV,UAAU,EAAE,gBAAgB,CAAA;IAC5B,MAAM,EAAE,MAAM,CAAA;IACd,SAAS,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,MAAM,GAAG,IAAI,CAAA;IACpB,OAAO,EAAE,MAAM,GAAG,IAAI,CAAA;IACtB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAA;IAC1B,MAAM,EAAE,OAAO,CAAA;IACf,WAAW,EAAE,OAAO,CAAA;IACpB,UAAU,EAAE,MAAM,CAAA;IAClB,UAAU,EAAE,MAAM,CAAA;CACrB;AAED,oBAAY,gBAAgB;IAC1B,qBAAqB,0BAA0B;IAC/C,aAAa,kBAAkB;IAC/B,QAAQ,aAAa;IACrB,gBAAgB,qBAAqB;IACrC,sBAAsB,2BAA2B;CAClD"}