@win2win/shared 1.0.269 → 1.0.271

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.
@@ -87,6 +87,10 @@ export declare const PERFILES: readonly [{
87
87
  readonly value: 22;
88
88
  readonly label: "Analista";
89
89
  readonly code: "analista";
90
+ }, {
91
+ readonly value: 23;
92
+ readonly label: "RRHH";
93
+ readonly code: "recursos_humanos";
90
94
  }];
91
95
  export type PerfilCode = (typeof PERFILES)[number]["code"];
92
96
  export type PerfilValue = (typeof PERFILES)[number]["value"];
@@ -33,5 +33,6 @@ exports.PERFILES = [
33
33
  { value: 20, label: "Cliente", code: "cliente" },
34
34
  { value: 21, label: "Candidato", code: "candidato" },
35
35
  { value: 22, label: "Analista", code: "analista" },
36
+ { value: 23, label: "RRHH", code: "recursos_humanos" },
36
37
  ];
37
38
  exports.PerfilesUsuario = (0, lodash_1.fromPairs)(exports.PERFILES.map((perfil) => [perfil.code, perfil.value]));
@@ -69,6 +69,7 @@ export interface LandingParams {
69
69
  aiAgent: LandingAiAgentConfig;
70
70
  contact: LandingContactData;
71
71
  legal: LandingLegalData;
72
+ legalUrl: string;
72
73
  ecommerce: LandingEcommerceConfig;
73
74
  }
74
75
  export interface LandingEcommerceConfig {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@win2win/shared",
3
- "version": "1.0.269",
3
+ "version": "1.0.271",
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",