@mc-hogar/crosslib 1.0.93 → 1.0.94

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,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Logistica/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=Sucursal.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sucursal.types.js","sourceRoot":"","sources":["../../../../../src/modules/Logistica/types/Sucursal.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Logistica/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=Sucursal.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sucursal.types.js","sourceRoot":"","sources":["../../../../../src/modules/Logistica/types/Sucursal.types.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/Logistica/index.ts"],"names":[],"mappings":""}
@@ -0,0 +1,30 @@
1
+ /**
2
+ * Tipos para la gestión de sucursales
3
+ */
4
+ export interface ISucursal {
5
+ id: number;
6
+ nombre: string;
7
+ email: string;
8
+ ciudad_id: number;
9
+ direccion_texto: string | null;
10
+ telefono: string | null;
11
+ activa: boolean;
12
+ retiro_habilitado: boolean;
13
+ created_at: string;
14
+ updated_at: string;
15
+ }
16
+ export interface SucursalFormData {
17
+ nombre: string;
18
+ email: string;
19
+ ciudad_id: number;
20
+ direccion_texto: string | null;
21
+ telefono: string | null;
22
+ activa: boolean;
23
+ retiro_habilitado: boolean;
24
+ }
25
+ export interface ListadoSucursalesResponse {
26
+ status: string;
27
+ message: string;
28
+ data: ISucursal[];
29
+ }
30
+ //# sourceMappingURL=Sucursal.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Sucursal.types.d.ts","sourceRoot":"","sources":["../../../../../src/modules/Logistica/types/Sucursal.types.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;IAChB,iBAAiB,EAAE,OAAO,CAAC;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,gBAAgB;IAC/B,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,MAAM,EAAE,OAAO,CAAC;IAChB,iBAAiB,EAAE,OAAO,CAAC;CAC5B;AAED,MAAM,WAAW,yBAAyB;IACxC,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,IAAI,EAAE,SAAS,EAAE,CAAC;CACnB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-hogar/crosslib",
3
- "version": "1.0.93",
3
+ "version": "1.0.94",
4
4
  "description": "Cross-platform TypeScript library",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",