expo-backend-types 0.9.0 → 0.10.0-EXPO-247-EB-Evento.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,26 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.GetAllEventsResponseDto = exports.getAllEventsResponseSchema = void 0;
7
+ const event_folder_dto_1 = require("../../event-folder/dto/event-folder.dto");
8
+ const event_dto_1 = require("./event.dto");
9
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
+ const zod_1 = __importDefault(require("zod"));
11
+ exports.getAllEventsResponseSchema = zod_1.default.object({
12
+ folders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
13
+ events: zod_1.default.array(event_dto_1.eventSchema.merge(zod_1.default.object({
14
+ supraEvent: event_dto_1.eventSchema.nullable(),
15
+ subEvents: zod_1.default.array(event_dto_1.eventSchema),
16
+ }))),
17
+ }))),
18
+ withoutFolder: zod_1.default.array(event_dto_1.eventSchema.merge(zod_1.default.object({
19
+ supraEvent: event_dto_1.eventSchema.nullable(),
20
+ subEvents: zod_1.default.array(event_dto_1.eventSchema),
21
+ }))),
22
+ });
23
+ class GetAllEventsResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getAllEventsResponseSchema) {
24
+ }
25
+ exports.GetAllEventsResponseDto = GetAllEventsResponseDto;
26
+ //# sourceMappingURL=get-all-event.dto.js.map
@@ -0,0 +1,139 @@
1
+ import z from 'zod';
2
+ export declare const getByIdEventResponseSchema: z.ZodObject<z.objectUtil.extendShape<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ date: z.ZodDate;
6
+ location: z.ZodString;
7
+ folderId: z.ZodNullable<z.ZodString>;
8
+ tagAssistedId: z.ZodString;
9
+ tagConfirmedId: z.ZodString;
10
+ supraEventId: z.ZodNullable<z.ZodString>;
11
+ created_at: z.ZodDate;
12
+ updated_at: z.ZodDate;
13
+ }, {
14
+ folder: z.ZodNullable<z.ZodObject<{
15
+ id: z.ZodString;
16
+ name: z.ZodString;
17
+ color: z.ZodString;
18
+ created_at: z.ZodDate;
19
+ updated_at: z.ZodDate;
20
+ }, "strip", z.ZodTypeAny, {
21
+ id: string;
22
+ name: string;
23
+ color: string;
24
+ created_at: Date;
25
+ updated_at: Date;
26
+ }, {
27
+ id: string;
28
+ name: string;
29
+ color: string;
30
+ created_at: Date;
31
+ updated_at: Date;
32
+ }>>;
33
+ }>, "strip", z.ZodTypeAny, {
34
+ location: string;
35
+ id: string;
36
+ name: string;
37
+ date: Date;
38
+ created_at: Date;
39
+ updated_at: Date;
40
+ folderId: string | null;
41
+ tagAssistedId: string;
42
+ tagConfirmedId: string;
43
+ supraEventId: string | null;
44
+ folder: {
45
+ id: string;
46
+ name: string;
47
+ color: string;
48
+ created_at: Date;
49
+ updated_at: Date;
50
+ } | null;
51
+ }, {
52
+ location: string;
53
+ id: string;
54
+ name: string;
55
+ date: Date;
56
+ created_at: Date;
57
+ updated_at: Date;
58
+ folderId: string | null;
59
+ tagAssistedId: string;
60
+ tagConfirmedId: string;
61
+ supraEventId: string | null;
62
+ folder: {
63
+ id: string;
64
+ name: string;
65
+ color: string;
66
+ created_at: Date;
67
+ updated_at: Date;
68
+ } | null;
69
+ }>;
70
+ declare const GetByIdEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
71
+ id: z.ZodString;
72
+ name: z.ZodString;
73
+ date: z.ZodString;
74
+ location: z.ZodString;
75
+ folderId: z.ZodNullable<z.ZodString>;
76
+ tagAssistedId: z.ZodString;
77
+ tagConfirmedId: z.ZodString;
78
+ supraEventId: z.ZodNullable<z.ZodString>;
79
+ created_at: z.ZodString;
80
+ updated_at: z.ZodString;
81
+ folder: z.ZodNullable<z.ZodObject<{
82
+ id: z.ZodString;
83
+ name: z.ZodString;
84
+ color: z.ZodString;
85
+ created_at: z.ZodString;
86
+ updated_at: z.ZodString;
87
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
88
+ id: string;
89
+ name: string;
90
+ color: string;
91
+ created_at: string;
92
+ updated_at: string;
93
+ }, {
94
+ id: string;
95
+ name: string;
96
+ color: string;
97
+ created_at: string;
98
+ updated_at: string;
99
+ }>>;
100
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
101
+ location: string;
102
+ id: string;
103
+ name: string;
104
+ date: string;
105
+ created_at: string;
106
+ updated_at: string;
107
+ folderId: string | null;
108
+ tagAssistedId: string;
109
+ tagConfirmedId: string;
110
+ supraEventId: string | null;
111
+ folder: {
112
+ id: string;
113
+ name: string;
114
+ color: string;
115
+ created_at: string;
116
+ updated_at: string;
117
+ } | null;
118
+ }, {
119
+ location: string;
120
+ id: string;
121
+ name: string;
122
+ date: string;
123
+ created_at: string;
124
+ updated_at: string;
125
+ folderId: string | null;
126
+ tagAssistedId: string;
127
+ tagConfirmedId: string;
128
+ supraEventId: string | null;
129
+ folder: {
130
+ id: string;
131
+ name: string;
132
+ color: string;
133
+ created_at: string;
134
+ updated_at: string;
135
+ } | null;
136
+ }>>;
137
+ export declare class GetByIdEventResponseDto extends GetByIdEventResponseDto_base {
138
+ }
139
+ export {};
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.GetByIdEventResponseDto = exports.getByIdEventResponseSchema = void 0;
7
+ const event_folder_dto_1 = require("../../event-folder/dto/event-folder.dto");
8
+ const event_dto_1 = require("./event.dto");
9
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
10
+ const zod_1 = __importDefault(require("zod"));
11
+ exports.getByIdEventResponseSchema = event_dto_1.eventSchema.merge(zod_1.default.object({
12
+ folder: event_folder_dto_1.eventFolderSchema.nullable(),
13
+ }));
14
+ class GetByIdEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getByIdEventResponseSchema) {
15
+ }
16
+ exports.GetByIdEventResponseDto = GetByIdEventResponseDto;
17
+ //# sourceMappingURL=get-by-id-event.dto.js.map
@@ -0,0 +1,126 @@
1
+ export declare const updateEventSchema: import("zod").ZodObject<Pick<{
2
+ id: import("zod").ZodString;
3
+ name: import("zod").ZodString;
4
+ date: import("zod").ZodDate;
5
+ location: import("zod").ZodString;
6
+ folderId: import("zod").ZodNullable<import("zod").ZodString>;
7
+ tagAssistedId: import("zod").ZodString;
8
+ tagConfirmedId: import("zod").ZodString;
9
+ supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
10
+ created_at: import("zod").ZodDate;
11
+ updated_at: import("zod").ZodDate;
12
+ }, "location" | "name" | "date" | "folderId" | "tagAssistedId" | "tagConfirmedId" | "supraEventId">, "strip", import("zod").ZodTypeAny, {
13
+ location: string;
14
+ name: string;
15
+ date: Date;
16
+ folderId: string | null;
17
+ tagAssistedId: string;
18
+ tagConfirmedId: string;
19
+ supraEventId: string | null;
20
+ }, {
21
+ location: string;
22
+ name: string;
23
+ date: Date;
24
+ folderId: string | null;
25
+ tagAssistedId: string;
26
+ tagConfirmedId: string;
27
+ supraEventId: string | null;
28
+ }>;
29
+ declare const UpdateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
30
+ location: import("zod").ZodString;
31
+ name: import("zod").ZodString;
32
+ date: import("zod").ZodString;
33
+ folderId: import("zod").ZodNullable<import("zod").ZodString>;
34
+ tagAssistedId: import("zod").ZodString;
35
+ tagConfirmedId: import("zod").ZodString;
36
+ supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
37
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
38
+ location: string;
39
+ name: string;
40
+ date: string;
41
+ folderId: string | null;
42
+ tagAssistedId: string;
43
+ tagConfirmedId: string;
44
+ supraEventId: string | null;
45
+ }, {
46
+ location: string;
47
+ name: string;
48
+ date: string;
49
+ folderId: string | null;
50
+ tagAssistedId: string;
51
+ tagConfirmedId: string;
52
+ supraEventId: string | null;
53
+ }>>;
54
+ export declare class UpdateEventDto extends UpdateEventDto_base {
55
+ }
56
+ export declare const updateEventResponseSchema: import("zod").ZodObject<{
57
+ id: import("zod").ZodString;
58
+ name: import("zod").ZodString;
59
+ date: import("zod").ZodDate;
60
+ location: import("zod").ZodString;
61
+ folderId: import("zod").ZodNullable<import("zod").ZodString>;
62
+ tagAssistedId: import("zod").ZodString;
63
+ tagConfirmedId: import("zod").ZodString;
64
+ supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
65
+ created_at: import("zod").ZodDate;
66
+ updated_at: import("zod").ZodDate;
67
+ }, "strip", import("zod").ZodTypeAny, {
68
+ location: string;
69
+ id: string;
70
+ name: string;
71
+ date: Date;
72
+ created_at: Date;
73
+ updated_at: Date;
74
+ folderId: string | null;
75
+ tagAssistedId: string;
76
+ tagConfirmedId: string;
77
+ supraEventId: string | null;
78
+ }, {
79
+ location: string;
80
+ id: string;
81
+ name: string;
82
+ date: Date;
83
+ created_at: Date;
84
+ updated_at: Date;
85
+ folderId: string | null;
86
+ tagAssistedId: string;
87
+ tagConfirmedId: string;
88
+ supraEventId: string | null;
89
+ }>;
90
+ declare const UpdateEventResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
91
+ id: import("zod").ZodString;
92
+ name: import("zod").ZodString;
93
+ date: import("zod").ZodString;
94
+ location: import("zod").ZodString;
95
+ folderId: import("zod").ZodNullable<import("zod").ZodString>;
96
+ tagAssistedId: import("zod").ZodString;
97
+ tagConfirmedId: import("zod").ZodString;
98
+ supraEventId: import("zod").ZodNullable<import("zod").ZodString>;
99
+ created_at: import("zod").ZodString;
100
+ updated_at: import("zod").ZodString;
101
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
102
+ location: string;
103
+ id: string;
104
+ name: string;
105
+ date: string;
106
+ created_at: string;
107
+ updated_at: string;
108
+ folderId: string | null;
109
+ tagAssistedId: string;
110
+ tagConfirmedId: string;
111
+ supraEventId: string | null;
112
+ }, {
113
+ location: string;
114
+ id: string;
115
+ name: string;
116
+ date: string;
117
+ created_at: string;
118
+ updated_at: string;
119
+ folderId: string | null;
120
+ tagAssistedId: string;
121
+ tagConfirmedId: string;
122
+ supraEventId: string | null;
123
+ }>>;
124
+ export declare class UpdateEventResponseDto extends UpdateEventResponseDto_base {
125
+ }
126
+ export {};
@@ -0,0 +1,22 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateEventResponseDto = exports.updateEventResponseSchema = exports.UpdateEventDto = exports.updateEventSchema = void 0;
4
+ const event_dto_1 = require("./event.dto");
5
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
+ exports.updateEventSchema = event_dto_1.eventSchema.pick({
7
+ name: true,
8
+ folderId: true,
9
+ date: true,
10
+ location: true,
11
+ supraEventId: true,
12
+ tagAssistedId: true,
13
+ tagConfirmedId: true,
14
+ });
15
+ class UpdateEventDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventSchema) {
16
+ }
17
+ exports.UpdateEventDto = UpdateEventDto;
18
+ exports.updateEventResponseSchema = event_dto_1.eventSchema;
19
+ class UpdateEventResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventResponseSchema) {
20
+ }
21
+ exports.UpdateEventResponseDto = UpdateEventResponseDto;
22
+ //# sourceMappingURL=update-event.dto.js.map
@@ -1 +1,6 @@
1
+ export * from './dto/create-event.dto';
2
+ export * from './dto/delete-event.dto';
1
3
  export * from './dto/event.dto';
4
+ export * from './dto/get-all-event.dto';
5
+ export * from './dto/get-by-id-event.dto';
6
+ export * from './dto/update-event.dto';
@@ -14,5 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto/create-event.dto"), exports);
18
+ __exportStar(require("./dto/delete-event.dto"), exports);
17
19
  __exportStar(require("./dto/event.dto"), exports);
20
+ __exportStar(require("./dto/get-all-event.dto"), exports);
21
+ __exportStar(require("./dto/get-by-id-event.dto"), exports);
22
+ __exportStar(require("./dto/update-event.dto"), exports);
18
23
  //# sourceMappingURL=exports.js.map
@@ -1,6 +1,6 @@
1
1
  import z from 'zod';
2
2
  export declare const getAllEventFolderResponseSchema: z.ZodObject<{
3
- eventFolders: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
3
+ folders: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
4
4
  id: z.ZodString;
5
5
  name: z.ZodString;
6
6
  color: z.ZodString;
@@ -79,7 +79,7 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
79
79
  }[];
80
80
  }>, "many">;
81
81
  }, "strip", z.ZodTypeAny, {
82
- eventFolders: {
82
+ folders: {
83
83
  id: string;
84
84
  name: string;
85
85
  color: string;
@@ -99,7 +99,7 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
99
99
  }[];
100
100
  }[];
101
101
  }, {
102
- eventFolders: {
102
+ folders: {
103
103
  id: string;
104
104
  name: string;
105
105
  color: string;
@@ -120,7 +120,7 @@ export declare const getAllEventFolderResponseSchema: z.ZodObject<{
120
120
  }[];
121
121
  }>;
122
122
  declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
123
- eventFolders: z.ZodArray<z.ZodObject<{
123
+ folders: z.ZodArray<z.ZodObject<{
124
124
  id: z.ZodString;
125
125
  name: z.ZodString;
126
126
  color: z.ZodString;
@@ -198,7 +198,7 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
198
198
  }[];
199
199
  }>, "many">;
200
200
  }, z.UnknownKeysParam, z.ZodTypeAny, {
201
- eventFolders: {
201
+ folders: {
202
202
  id: string;
203
203
  name: string;
204
204
  color: string;
@@ -218,7 +218,7 @@ declare const GetAllEventFolderResponseDto_base: import("@anatine/zod-nestjs").Z
218
218
  }[];
219
219
  }[];
220
220
  }, {
221
- eventFolders: {
221
+ folders: {
222
222
  id: string;
223
223
  name: string;
224
224
  color: string;
@@ -9,7 +9,7 @@ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/cre
9
9
  const zod_1 = __importDefault(require("zod"));
10
10
  const event_folder_dto_1 = require("./event-folder.dto");
11
11
  exports.getAllEventFolderResponseSchema = zod_1.default.object({
12
- eventFolders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
12
+ folders: zod_1.default.array(event_folder_dto_1.eventFolderSchema.merge(zod_1.default.object({
13
13
  events: zod_1.default.array(event_dto_1.eventSchema),
14
14
  }))),
15
15
  });
@@ -1,25 +1,22 @@
1
- export declare const updateEventFolderSchema: import("zod").ZodObject<Pick<{
2
- id: import("zod").ZodString;
3
- name: import("zod").ZodString;
4
- color: import("zod").ZodString;
5
- created_at: import("zod").ZodDate;
6
- updated_at: import("zod").ZodDate;
7
- }, "name" | "color">, "strip", import("zod").ZodTypeAny, {
8
- name: string;
9
- color: string;
1
+ export declare const updateEventFolderSchema: import("zod").ZodObject<{
2
+ name: import("zod").ZodOptional<import("zod").ZodString>;
3
+ color: import("zod").ZodOptional<import("zod").ZodString>;
4
+ }, "strip", import("zod").ZodTypeAny, {
5
+ name?: string | undefined;
6
+ color?: string | undefined;
10
7
  }, {
11
- name: string;
12
- color: string;
8
+ name?: string | undefined;
9
+ color?: string | undefined;
13
10
  }>;
14
11
  declare const UpdateEventFolderDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
15
- name: import("zod").ZodString;
16
- color: import("zod").ZodString;
12
+ name: import("zod").ZodOptional<import("zod").ZodString>;
13
+ color: import("zod").ZodOptional<import("zod").ZodString>;
17
14
  }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
18
- name: string;
19
- color: string;
15
+ name?: string | undefined;
16
+ color?: string | undefined;
20
17
  }, {
21
- name: string;
22
- color: string;
18
+ name?: string | undefined;
19
+ color?: string | undefined;
23
20
  }>>;
24
21
  export declare class UpdateEventFolderDto extends UpdateEventFolderDto_base {
25
22
  }
@@ -3,10 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UpdateEventFolderResponseDto = exports.updateEventFolderResponseSchema = exports.UpdateEventFolderDto = exports.updateEventFolderSchema = void 0;
4
4
  const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
5
5
  const event_folder_dto_1 = require("./event-folder.dto");
6
- exports.updateEventFolderSchema = event_folder_dto_1.eventFolderSchema.pick({
6
+ exports.updateEventFolderSchema = event_folder_dto_1.eventFolderSchema
7
+ .pick({
7
8
  name: true,
8
9
  color: true,
9
- });
10
+ })
11
+ .partial();
10
12
  class UpdateEventFolderDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateEventFolderSchema) {
11
13
  }
12
14
  exports.UpdateEventFolderDto = UpdateEventFolderDto;
@@ -12,6 +12,10 @@ declare const _default: {
12
12
  readonly cannedResponse: "Respuesta enlatada";
13
13
  readonly message: "Mensaje";
14
14
  };
15
+ readonly tag: {
16
+ readonly assisted: "Asistió";
17
+ readonly confirmed: "Confirmó asistencia";
18
+ };
15
19
  readonly conflict: "Ya existe un registro con el campo {{field}} '{{value}}' en la tabla de {{model}}";
16
20
  readonly 'not-found': "No se encontró un registro con el campo {{field}} '{{value}}' en la tabla de {{model}}";
17
21
  };
@@ -289,6 +293,29 @@ declare const _default: {
289
293
  readonly 'not-found': "Carpeta de evento no encontrada";
290
294
  };
291
295
  };
296
+ readonly event: {
297
+ readonly create: {
298
+ readonly success: "Evento creado con éxito";
299
+ readonly conflict: "Error en la creación del evento";
300
+ readonly 'folder-not-found': "Carpeta de evento no encontrada";
301
+ };
302
+ readonly 'get-all': {
303
+ readonly success: "Eventos obtenidos con éxito";
304
+ readonly 'not-found': "No se encontraron eventos";
305
+ };
306
+ readonly 'get-by-id': {
307
+ readonly success: "Evento obtenido con éxito";
308
+ readonly 'not-found': "Evento no encontrado";
309
+ };
310
+ readonly update: {
311
+ readonly success: "Evento actualizado con éxito";
312
+ readonly 'not-found': "Evento no encontrado";
313
+ };
314
+ readonly delete: {
315
+ readonly success: "Evento eliminado con éxito";
316
+ readonly 'not-found': "Evento no encontrado";
317
+ };
318
+ };
292
319
  };
293
320
  };
294
321
  export default _default;
@@ -14,6 +14,10 @@ exports.default = {
14
14
  cannedResponse: 'Respuesta enlatada',
15
15
  message: 'Mensaje',
16
16
  },
17
+ tag: {
18
+ assisted: 'Asistió',
19
+ confirmed: 'Confirmó asistencia',
20
+ },
17
21
  conflict: `Ya existe un registro con el campo \{\{field\}\} '\{\{value\}\}' en la tabla de \{\{model\}\}`,
18
22
  'not-found': `No se encontró un registro con el campo \{\{field\}\} '\{\{value\}\}' en la tabla de \{\{model\}\}`,
19
23
  },
@@ -291,6 +295,29 @@ exports.default = {
291
295
  'not-found': 'Carpeta de evento no encontrada',
292
296
  },
293
297
  },
298
+ event: {
299
+ create: {
300
+ success: 'Evento creado con éxito',
301
+ conflict: 'Error en la creación del evento',
302
+ 'folder-not-found': 'Carpeta de evento no encontrada',
303
+ },
304
+ 'get-all': {
305
+ success: 'Eventos obtenidos con éxito',
306
+ 'not-found': 'No se encontraron eventos',
307
+ },
308
+ 'get-by-id': {
309
+ success: 'Evento obtenido con éxito',
310
+ 'not-found': 'Evento no encontrado',
311
+ },
312
+ update: {
313
+ success: 'Evento actualizado con éxito',
314
+ 'not-found': 'Evento no encontrado',
315
+ },
316
+ delete: {
317
+ success: 'Evento eliminado con éxito',
318
+ 'not-found': 'Evento no encontrado',
319
+ },
320
+ },
294
321
  },
295
322
  };
296
323
  //# sourceMappingURL=es.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"es.js","sourceRoot":"","sources":["../../../src/i18n/es.ts"],"names":[],"mappings":"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"}