@win2win/shared 1.0.214 → 1.0.216

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.
@@ -401,12 +401,6 @@ export declare const COUNTRIES: {
401
401
  flag: string;
402
402
  flagLg: string;
403
403
  };
404
- ik: {
405
- name: string;
406
- nativeName: string;
407
- flag: string;
408
- flagLg: string;
409
- };
410
404
  io: {
411
405
  name: string;
412
406
  nativeName: string;
@@ -629,6 +623,12 @@ export declare const COUNTRIES: {
629
623
  flag: string;
630
624
  flagLg: string;
631
625
  };
626
+ mx: {
627
+ name: string;
628
+ nativeName: string;
629
+ flag: string;
630
+ flagLg: string;
631
+ };
632
632
  mh: {
633
633
  name: string;
634
634
  nativeName: string;
@@ -404,12 +404,6 @@ exports.COUNTRIES = {
404
404
  flag: "https://flagsapi.com/NG/flat/32.png",
405
405
  flagLg: "https://flagsapi.com/NG/flat/64.png",
406
406
  },
407
- ik: {
408
- name: "United States",
409
- nativeName: "United States",
410
- flag: "https://flagsapi.com/US/flat/32.png",
411
- flagLg: "https://flagsapi.com/US/flat/64.png",
412
- },
413
407
  io: {
414
408
  name: "United Nations",
415
409
  nativeName: "United Nations",
@@ -632,6 +626,12 @@ exports.COUNTRIES = {
632
626
  flag: "https://flagsapi.com/IN/flat/32.png",
633
627
  flagLg: "https://flagsapi.com/IN/flat/64.png",
634
628
  },
629
+ mx: {
630
+ name: "Mexico",
631
+ nativeName: "México",
632
+ flag: "https://flagsapi.com/MX/flat/32.png",
633
+ flagLg: "https://flagsapi.com/MX/flat/64.png",
634
+ },
635
635
  mh: {
636
636
  name: "Marshall Islands",
637
637
  nativeName: "M̧ajeļ",
@@ -155,6 +155,7 @@ export interface LandingPageRaw {
155
155
  FECHA_UPD: Date | string;
156
156
  SECCIONES: LandingSectionRaw[];
157
157
  }
158
+ export type Spacing = [string, string, string, string];
158
159
  export interface LandingSectionRaw {
159
160
  ID_LANDING_SECTIONS: Id;
160
161
  ID_LANDING: Id;
@@ -164,6 +165,9 @@ export interface LandingSectionRaw {
164
165
  POSICION: number;
165
166
  TEMPLATE: string;
166
167
  ESTADO: number;
168
+ MARGINS: Spacing | null;
169
+ PADDINGS: Spacing | null;
170
+ CUSTOM: JsonObject | null;
167
171
  FECHA_UPD: Date;
168
172
  }
169
173
  export interface MailRaw {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.214",
3
+ "version": "1.0.216",
4
4
  "description": "Tipos, interfaces, funciones, constantes, clases y enums compartidos por todos los proyectos de Win2Win",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",