@mc-hogar/crosslib 1.0.61 → 1.0.63

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.
@@ -15,5 +15,4 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./EtiquetasGenerales/types"), exports);
18
- __exportStar(require("./EtiquetasPlanes/types"), exports);
19
18
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA0C;AAC1C,0DAAuC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6DAA0C"}
@@ -1,3 +1,2 @@
1
1
  export * from './EtiquetasGenerales/types';
2
- export * from './EtiquetasPlanes/types';
3
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA"}
@@ -1,3 +1,2 @@
1
1
  export * from './EtiquetasGenerales/types';
2
- export * from './EtiquetasPlanes/types';
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA;AAC1C,cAAc,yBAAyB,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/modules/Etiquetas/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mc-hogar/crosslib",
3
- "version": "1.0.61",
3
+ "version": "1.0.63",
4
4
  "description": "Cross-platform TypeScript library",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -1,3 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=EtiquetaPlanes.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"EtiquetaPlanes.types.js","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/EtiquetaPlanes.types.ts"],"names":[],"mappings":""}
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./EtiquetaPlanes.types"), exports);
18
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yDAAsC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=EtiquetaPlanes.types.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"EtiquetaPlanes.types.js","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/EtiquetaPlanes.types.ts"],"names":[],"mappings":""}
@@ -1,2 +0,0 @@
1
- export * from './EtiquetaPlanes.types';
2
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA"}
@@ -1,16 +0,0 @@
1
- export interface EtiquetaPlan {
2
- id: number;
3
- nombre: string;
4
- nombreWeb: string;
5
- slug: string;
6
- comentarios: string | null;
7
- imagen_url: string | null;
8
- activo: boolean;
9
- fecha_desde_valido: string | null;
10
- fecha_hasta_valido: string | null;
11
- created_at: string;
12
- updated_at: string;
13
- }
14
- export type EtiquetaPlanCrearDto = Pick<EtiquetaPlan, 'nombre' | 'nombreWeb' | 'slug' | 'comentarios' | 'fecha_desde_valido' | 'fecha_hasta_valido'>;
15
- export type EtiquetaPlanActualizarDto = Pick<EtiquetaPlan, 'nombre' | 'nombreWeb' | 'slug' | 'comentarios' | 'activo' | 'fecha_desde_valido' | 'fecha_hasta_valido'>;
16
- //# sourceMappingURL=EtiquetaPlanes.types.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"EtiquetaPlanes.types.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/EtiquetaPlanes.types.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,YAAY;IACzB,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,MAAM,EAAE,OAAO,CAAC;IAChB,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,kBAAkB,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,MAAM,oBAAoB,GAAG,IAAI,CAAC,YAAY,EAAE,QAAQ,GAAG,WAAW,GAAG,MAAM,GAAG,aAAa,GAAG,oBAAoB,GAAG,oBAAoB,CAAC,CAAA;AAEpJ,MAAM,MAAM,yBAAyB,GAAG,IAAI,CAAC,YAAY,EAAE,QAAQ,GAAG,WAAW,GAAG,MAAM,GAAG,aAAa,GAAG,QAAQ,GAAG,oBAAoB,GAAG,oBAAoB,CAAC,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from './EtiquetaPlanes.types';
2
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/modules/Etiquetas/EtiquetasPlanes/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,wBAAwB,CAAA"}