expo-backend-types 0.5.0-EXPO-286-EB-Location.8 → 0.5.0-EXPO-283-EB-Respuesta-Enlatada.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/dist/src/cannedResponse/dto/cannedResponse.dto.d.ts +42 -0
  2. package/dist/src/cannedResponse/dto/cannedResponse.dto.js +23 -0
  3. package/dist/src/cannedResponse/dto/create-cannedResponse.dto.d.ts +66 -0
  4. package/dist/src/cannedResponse/dto/create-cannedResponse.dto.js +17 -0
  5. package/dist/src/cannedResponse/dto/delete-cannedResponse.dto.d.ts +41 -0
  6. package/dist/src/cannedResponse/dto/delete-cannedResponse.dto.js +10 -0
  7. package/dist/src/cannedResponse/dto/get-all-cannedResponse.dto.d.ts +78 -0
  8. package/dist/src/cannedResponse/dto/get-all-cannedResponse.dto.js +16 -0
  9. package/dist/src/cannedResponse/dto/update-cannedResponse.dto.d.ts +66 -0
  10. package/dist/src/cannedResponse/dto/update-cannedResponse.dto.js +17 -0
  11. package/dist/src/cannedResponse/exports.d.ts +5 -0
  12. package/dist/src/{location → cannedResponse}/exports.js +5 -7
  13. package/dist/src/comment/dto/comment.dto.d.ts +3 -3
  14. package/dist/src/comment/dto/create-comment.dto.d.ts +3 -3
  15. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +5 -5
  16. package/dist/src/comment/dto/toggle-solve-comment.dto.d.ts +3 -3
  17. package/dist/src/exports.d.ts +1 -1
  18. package/dist/src/exports.js +1 -1
  19. package/dist/src/i18n/es.d.ts +20 -19
  20. package/dist/src/i18n/es.js +20 -19
  21. package/dist/src/i18n/es.js.map +1 -1
  22. package/dist/src/profile/dto/profile.dto.d.ts +12 -6
  23. package/dist/src/profile/dto/profile.dto.js +4 -2
  24. package/dist/src/shared/dto-modification/zod-without-dates.d.ts +2 -2
  25. package/dist/src/shared/dto-modification/zod-without-dates.js.map +1 -1
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +50 -30
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +50 -30
  28. package/dist/types/prisma-schema/edge.js +7 -6
  29. package/dist/types/prisma-schema/index-browser.js +4 -3
  30. package/dist/types/prisma-schema/index.d.ts +242 -113
  31. package/dist/types/prisma-schema/index.js +7 -6
  32. package/dist/types/prisma-schema/package.json +1 -1
  33. package/dist/types/prisma-schema/schema.prisma +7 -5
  34. package/dist/types/prisma-schema/wasm.js +4 -3
  35. package/dist/types/schema.d.ts +80 -101
  36. package/package.json +1 -2
  37. package/dist/src/location/dto/arg-city.dto.d.ts +0 -130
  38. package/dist/src/location/dto/arg-city.dto.js +0 -33
  39. package/dist/src/location/dto/find-all-countries.dto.d.ts +0 -48
  40. package/dist/src/location/dto/find-all-countries.dto.js +0 -18
  41. package/dist/src/location/dto/find-all-location.dto.d.ts +0 -192
  42. package/dist/src/location/dto/find-all-location.dto.js +0 -32
  43. package/dist/src/location/dto/find-cities-by-province.dto.d.ts +0 -141
  44. package/dist/src/location/dto/find-cities-by-province.dto.js +0 -20
  45. package/dist/src/location/dto/find-provinces.dto.d.ts +0 -18
  46. package/dist/src/location/dto/find-provinces.dto.js +0 -15
  47. package/dist/src/location/dto/location.dto.d.ts +0 -29
  48. package/dist/src/location/dto/location.dto.js +0 -35
  49. package/dist/src/location/dto/states-by-country.dto.d.ts +0 -88
  50. package/dist/src/location/dto/states-by-country.dto.js +0 -22
  51. package/dist/src/location/exports.d.ts +0 -7
@@ -0,0 +1,42 @@
1
+ import { z } from 'zod';
2
+ export declare const cannedResponseSchema: z.ZodObject<{
3
+ id: z.ZodString;
4
+ name: z.ZodString;
5
+ content: z.ZodString;
6
+ created_at: z.ZodDate;
7
+ updated_at: z.ZodDate;
8
+ }, "strip", z.ZodTypeAny, {
9
+ id: string;
10
+ name: string;
11
+ content: string;
12
+ created_at: Date;
13
+ updated_at: Date;
14
+ }, {
15
+ id: string;
16
+ name: string;
17
+ content: string;
18
+ created_at: Date;
19
+ updated_at: Date;
20
+ }>;
21
+ declare const CannedResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
22
+ id: z.ZodString;
23
+ name: z.ZodString;
24
+ content: z.ZodString;
25
+ created_at: z.ZodString;
26
+ updated_at: z.ZodString;
27
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
28
+ id: string;
29
+ name: string;
30
+ content: string;
31
+ created_at: string;
32
+ updated_at: string;
33
+ }, {
34
+ id: string;
35
+ name: string;
36
+ content: string;
37
+ created_at: string;
38
+ updated_at: string;
39
+ }>>;
40
+ export declare class CannedResponseDto extends CannedResponseDto_base {
41
+ }
42
+ export {};
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CannedResponseDto = exports.cannedResponseSchema = void 0;
4
+ const translate_1 = require("../../i18n/translate");
5
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
6
+ const zod_1 = require("zod");
7
+ exports.cannedResponseSchema = zod_1.z.object({
8
+ id: zod_1.z.string().uuid({
9
+ message: (0, translate_1.translate)('model.cannedResponse.id.uuid'),
10
+ }),
11
+ name: zod_1.z.string().min(1, {
12
+ message: (0, translate_1.translate)('model.cannedResponse.name.min'),
13
+ }),
14
+ content: zod_1.z.string().min(1, {
15
+ message: (0, translate_1.translate)('model.cannedResponse.content.min'),
16
+ }),
17
+ created_at: zod_1.z.date(),
18
+ updated_at: zod_1.z.date(),
19
+ });
20
+ class CannedResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.cannedResponseSchema) {
21
+ }
22
+ exports.CannedResponseDto = CannedResponseDto;
23
+ //# sourceMappingURL=cannedResponse.dto.js.map
@@ -0,0 +1,66 @@
1
+ export declare const createCannedResponseSchema: import("zod").ZodObject<Pick<{
2
+ id: import("zod").ZodString;
3
+ name: import("zod").ZodString;
4
+ content: import("zod").ZodString;
5
+ created_at: import("zod").ZodDate;
6
+ updated_at: import("zod").ZodDate;
7
+ }, "name" | "content">, "strip", import("zod").ZodTypeAny, {
8
+ name: string;
9
+ content: string;
10
+ }, {
11
+ name: string;
12
+ content: string;
13
+ }>;
14
+ declare const CreateCannedResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
15
+ name: import("zod").ZodString;
16
+ content: import("zod").ZodString;
17
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
18
+ name: string;
19
+ content: string;
20
+ }, {
21
+ name: string;
22
+ content: string;
23
+ }>>;
24
+ export declare class CreateCannedResponseDto extends CreateCannedResponseDto_base {
25
+ }
26
+ export declare const createCannedResponseResponseSchema: import("zod").ZodObject<{
27
+ id: import("zod").ZodString;
28
+ name: import("zod").ZodString;
29
+ content: import("zod").ZodString;
30
+ created_at: import("zod").ZodDate;
31
+ updated_at: import("zod").ZodDate;
32
+ }, "strip", import("zod").ZodTypeAny, {
33
+ id: string;
34
+ name: string;
35
+ content: string;
36
+ created_at: Date;
37
+ updated_at: Date;
38
+ }, {
39
+ id: string;
40
+ name: string;
41
+ content: string;
42
+ created_at: Date;
43
+ updated_at: Date;
44
+ }>;
45
+ declare const CreateCannedResponseResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
46
+ id: import("zod").ZodString;
47
+ name: import("zod").ZodString;
48
+ content: import("zod").ZodString;
49
+ created_at: import("zod").ZodString;
50
+ updated_at: import("zod").ZodString;
51
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
52
+ id: string;
53
+ name: string;
54
+ content: string;
55
+ created_at: string;
56
+ updated_at: string;
57
+ }, {
58
+ id: string;
59
+ name: string;
60
+ content: string;
61
+ created_at: string;
62
+ updated_at: string;
63
+ }>>;
64
+ export declare class CreateCannedResponseResponseDto extends CreateCannedResponseResponseDto_base {
65
+ }
66
+ export {};
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.CreateCannedResponseResponseDto = exports.createCannedResponseResponseSchema = exports.CreateCannedResponseDto = exports.createCannedResponseSchema = void 0;
4
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
5
+ const cannedResponse_dto_1 = require("./cannedResponse.dto");
6
+ exports.createCannedResponseSchema = cannedResponse_dto_1.cannedResponseSchema.pick({
7
+ name: true,
8
+ content: true,
9
+ });
10
+ class CreateCannedResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createCannedResponseSchema) {
11
+ }
12
+ exports.CreateCannedResponseDto = CreateCannedResponseDto;
13
+ exports.createCannedResponseResponseSchema = cannedResponse_dto_1.cannedResponseSchema;
14
+ class CreateCannedResponseResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.createCannedResponseResponseSchema) {
15
+ }
16
+ exports.CreateCannedResponseResponseDto = CreateCannedResponseResponseDto;
17
+ //# sourceMappingURL=create-cannedResponse.dto.js.map
@@ -0,0 +1,41 @@
1
+ export declare const deleteCannedResponseResponseSchema: import("zod").ZodObject<{
2
+ id: import("zod").ZodString;
3
+ name: import("zod").ZodString;
4
+ content: import("zod").ZodString;
5
+ created_at: import("zod").ZodDate;
6
+ updated_at: import("zod").ZodDate;
7
+ }, "strip", import("zod").ZodTypeAny, {
8
+ id: string;
9
+ name: string;
10
+ content: string;
11
+ created_at: Date;
12
+ updated_at: Date;
13
+ }, {
14
+ id: string;
15
+ name: string;
16
+ content: string;
17
+ created_at: Date;
18
+ updated_at: Date;
19
+ }>;
20
+ declare const DeleteCannedResponseResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
21
+ id: import("zod").ZodString;
22
+ name: import("zod").ZodString;
23
+ content: import("zod").ZodString;
24
+ created_at: import("zod").ZodString;
25
+ updated_at: import("zod").ZodString;
26
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
27
+ id: string;
28
+ name: string;
29
+ content: string;
30
+ created_at: string;
31
+ updated_at: string;
32
+ }, {
33
+ id: string;
34
+ name: string;
35
+ content: string;
36
+ created_at: string;
37
+ updated_at: string;
38
+ }>>;
39
+ export declare class DeleteCannedResponseResponseDto extends DeleteCannedResponseResponseDto_base {
40
+ }
41
+ export {};
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DeleteCannedResponseResponseDto = exports.deleteCannedResponseResponseSchema = void 0;
4
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
5
+ const cannedResponse_dto_1 = require("./cannedResponse.dto");
6
+ exports.deleteCannedResponseResponseSchema = cannedResponse_dto_1.cannedResponseSchema;
7
+ class DeleteCannedResponseResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.deleteCannedResponseResponseSchema) {
8
+ }
9
+ exports.DeleteCannedResponseResponseDto = DeleteCannedResponseResponseDto;
10
+ //# sourceMappingURL=delete-cannedResponse.dto.js.map
@@ -0,0 +1,78 @@
1
+ import z from 'zod';
2
+ export declare const getAllCannedResponseSchema: z.ZodObject<{
3
+ cannedResponses: z.ZodArray<z.ZodObject<{
4
+ id: z.ZodString;
5
+ name: z.ZodString;
6
+ content: z.ZodString;
7
+ created_at: z.ZodDate;
8
+ updated_at: z.ZodDate;
9
+ }, "strip", z.ZodTypeAny, {
10
+ id: string;
11
+ name: string;
12
+ content: string;
13
+ created_at: Date;
14
+ updated_at: Date;
15
+ }, {
16
+ id: string;
17
+ name: string;
18
+ content: string;
19
+ created_at: Date;
20
+ updated_at: Date;
21
+ }>, "many">;
22
+ }, "strip", z.ZodTypeAny, {
23
+ cannedResponses: {
24
+ id: string;
25
+ name: string;
26
+ content: string;
27
+ created_at: Date;
28
+ updated_at: Date;
29
+ }[];
30
+ }, {
31
+ cannedResponses: {
32
+ id: string;
33
+ name: string;
34
+ content: string;
35
+ created_at: Date;
36
+ updated_at: Date;
37
+ }[];
38
+ }>;
39
+ declare const GetAllCannedResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
40
+ cannedResponses: z.ZodArray<z.ZodObject<{
41
+ id: z.ZodString;
42
+ name: z.ZodString;
43
+ content: z.ZodString;
44
+ created_at: z.ZodString;
45
+ updated_at: z.ZodString;
46
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
47
+ id: string;
48
+ name: string;
49
+ content: string;
50
+ created_at: string;
51
+ updated_at: string;
52
+ }, {
53
+ id: string;
54
+ name: string;
55
+ content: string;
56
+ created_at: string;
57
+ updated_at: string;
58
+ }>, "many">;
59
+ }, z.UnknownKeysParam, z.ZodTypeAny, {
60
+ cannedResponses: {
61
+ id: string;
62
+ name: string;
63
+ content: string;
64
+ created_at: string;
65
+ updated_at: string;
66
+ }[];
67
+ }, {
68
+ cannedResponses: {
69
+ id: string;
70
+ name: string;
71
+ content: string;
72
+ created_at: string;
73
+ updated_at: string;
74
+ }[];
75
+ }>>;
76
+ export declare class GetAllCannedResponseDto extends GetAllCannedResponseDto_base {
77
+ }
78
+ export {};
@@ -0,0 +1,16 @@
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.GetAllCannedResponseDto = exports.getAllCannedResponseSchema = void 0;
7
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
+ const zod_1 = __importDefault(require("zod"));
9
+ const cannedResponse_dto_1 = require("./cannedResponse.dto");
10
+ exports.getAllCannedResponseSchema = zod_1.default.object({
11
+ cannedResponses: zod_1.default.array(cannedResponse_dto_1.cannedResponseSchema),
12
+ });
13
+ class GetAllCannedResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.getAllCannedResponseSchema) {
14
+ }
15
+ exports.GetAllCannedResponseDto = GetAllCannedResponseDto;
16
+ //# sourceMappingURL=get-all-cannedResponse.dto.js.map
@@ -0,0 +1,66 @@
1
+ export declare const updateCannedResponseSchema: import("zod").ZodObject<Pick<{
2
+ id: import("zod").ZodString;
3
+ name: import("zod").ZodString;
4
+ content: import("zod").ZodString;
5
+ created_at: import("zod").ZodDate;
6
+ updated_at: import("zod").ZodDate;
7
+ }, "name" | "content">, "strip", import("zod").ZodTypeAny, {
8
+ name: string;
9
+ content: string;
10
+ }, {
11
+ name: string;
12
+ content: string;
13
+ }>;
14
+ declare const UpdateCannedResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
15
+ name: import("zod").ZodString;
16
+ content: import("zod").ZodString;
17
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
18
+ name: string;
19
+ content: string;
20
+ }, {
21
+ name: string;
22
+ content: string;
23
+ }>>;
24
+ export declare class UpdateCannedResponseDto extends UpdateCannedResponseDto_base {
25
+ }
26
+ export declare const updateCannedResponseResponseSchema: import("zod").ZodObject<{
27
+ id: import("zod").ZodString;
28
+ name: import("zod").ZodString;
29
+ content: import("zod").ZodString;
30
+ created_at: import("zod").ZodDate;
31
+ updated_at: import("zod").ZodDate;
32
+ }, "strip", import("zod").ZodTypeAny, {
33
+ id: string;
34
+ name: string;
35
+ content: string;
36
+ created_at: Date;
37
+ updated_at: Date;
38
+ }, {
39
+ id: string;
40
+ name: string;
41
+ content: string;
42
+ created_at: Date;
43
+ updated_at: Date;
44
+ }>;
45
+ declare const UpdateCannedResponseResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
46
+ id: import("zod").ZodString;
47
+ name: import("zod").ZodString;
48
+ content: import("zod").ZodString;
49
+ created_at: import("zod").ZodString;
50
+ updated_at: import("zod").ZodString;
51
+ }, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
52
+ id: string;
53
+ name: string;
54
+ content: string;
55
+ created_at: string;
56
+ updated_at: string;
57
+ }, {
58
+ id: string;
59
+ name: string;
60
+ content: string;
61
+ created_at: string;
62
+ updated_at: string;
63
+ }>>;
64
+ export declare class UpdateCannedResponseResponseDto extends UpdateCannedResponseResponseDto_base {
65
+ }
66
+ export {};
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.UpdateCannedResponseResponseDto = exports.updateCannedResponseResponseSchema = exports.UpdateCannedResponseDto = exports.updateCannedResponseSchema = void 0;
4
+ const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
5
+ const cannedResponse_dto_1 = require("./cannedResponse.dto");
6
+ exports.updateCannedResponseSchema = cannedResponse_dto_1.cannedResponseSchema.pick({
7
+ name: true,
8
+ content: true,
9
+ });
10
+ class UpdateCannedResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateCannedResponseSchema) {
11
+ }
12
+ exports.UpdateCannedResponseDto = UpdateCannedResponseDto;
13
+ exports.updateCannedResponseResponseSchema = cannedResponse_dto_1.cannedResponseSchema;
14
+ class UpdateCannedResponseResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateCannedResponseResponseSchema) {
15
+ }
16
+ exports.UpdateCannedResponseResponseDto = UpdateCannedResponseResponseDto;
17
+ //# sourceMappingURL=update-cannedResponse.dto.js.map
@@ -0,0 +1,5 @@
1
+ export * from './dto/cannedResponse.dto';
2
+ export * from './dto/create-cannedResponse.dto';
3
+ export * from './dto/delete-cannedResponse.dto';
4
+ export * from './dto/get-all-cannedResponse.dto';
5
+ export * from './dto/update-cannedResponse.dto';
@@ -14,11 +14,9 @@ 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/arg-city.dto"), exports);
18
- __exportStar(require("./dto/find-all-countries.dto"), exports);
19
- __exportStar(require("./dto/find-all-location.dto"), exports);
20
- __exportStar(require("./dto/find-cities-by-province.dto"), exports);
21
- __exportStar(require("./dto/find-provinces.dto"), exports);
22
- __exportStar(require("./dto/location.dto"), exports);
23
- __exportStar(require("./dto/states-by-country.dto"), exports);
17
+ __exportStar(require("./dto/cannedResponse.dto"), exports);
18
+ __exportStar(require("./dto/create-cannedResponse.dto"), exports);
19
+ __exportStar(require("./dto/delete-cannedResponse.dto"), exports);
20
+ __exportStar(require("./dto/get-all-cannedResponse.dto"), exports);
21
+ __exportStar(require("./dto/update-cannedResponse.dto"), exports);
24
22
  //# sourceMappingURL=exports.js.map
@@ -40,7 +40,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
40
40
  profileId: z.ZodString;
41
41
  isSolvable: z.ZodDefault<z.ZodBoolean>;
42
42
  isSolved: z.ZodDefault<z.ZodBoolean>;
43
- solvedAt: z.ZodNullable<z.ZodDate>;
43
+ solvedAt: z.ZodNullable<z.ZodString>;
44
44
  solvedBy: z.ZodOptional<z.ZodString>;
45
45
  created_at: z.ZodString;
46
46
  updated_at: z.ZodString;
@@ -53,7 +53,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
53
53
  createdBy: string;
54
54
  profileId: string;
55
55
  isSolved: boolean;
56
- solvedAt: Date | null;
56
+ solvedAt: string | null;
57
57
  solvedBy?: string | undefined;
58
58
  }, {
59
59
  id: string;
@@ -62,7 +62,7 @@ declare const CommentDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodO
62
62
  updated_at: string;
63
63
  createdBy: string;
64
64
  profileId: string;
65
- solvedAt: Date | null;
65
+ solvedAt: string | null;
66
66
  isSolvable?: boolean | undefined;
67
67
  isSolved?: boolean | undefined;
68
68
  solvedBy?: string | undefined;
@@ -74,7 +74,7 @@ declare const CreateCommentResponseDto_base: import("@anatine/zod-nestjs").ZodDt
74
74
  profileId: import("zod").ZodString;
75
75
  isSolvable: import("zod").ZodDefault<import("zod").ZodBoolean>;
76
76
  isSolved: import("zod").ZodDefault<import("zod").ZodBoolean>;
77
- solvedAt: import("zod").ZodNullable<import("zod").ZodDate>;
77
+ solvedAt: import("zod").ZodNullable<import("zod").ZodString>;
78
78
  solvedBy: import("zod").ZodOptional<import("zod").ZodString>;
79
79
  created_at: import("zod").ZodString;
80
80
  updated_at: import("zod").ZodString;
@@ -87,7 +87,7 @@ declare const CreateCommentResponseDto_base: import("@anatine/zod-nestjs").ZodDt
87
87
  createdBy: string;
88
88
  profileId: string;
89
89
  isSolved: boolean;
90
- solvedAt: Date | null;
90
+ solvedAt: string | null;
91
91
  solvedBy?: string | undefined;
92
92
  }, {
93
93
  id: string;
@@ -96,7 +96,7 @@ declare const CreateCommentResponseDto_base: import("@anatine/zod-nestjs").ZodDt
96
96
  updated_at: string;
97
97
  createdBy: string;
98
98
  profileId: string;
99
- solvedAt: Date | null;
99
+ solvedAt: string | null;
100
100
  isSolvable?: boolean | undefined;
101
101
  isSolved?: boolean | undefined;
102
102
  solvedBy?: string | undefined;
@@ -99,7 +99,7 @@ declare const GetByProfileCommentResponseDto_base: import("@anatine/zod-nestjs")
99
99
  profileId: z.ZodString;
100
100
  isSolvable: z.ZodDefault<z.ZodBoolean>;
101
101
  isSolved: z.ZodDefault<z.ZodBoolean>;
102
- solvedAt: z.ZodNullable<z.ZodDate>;
102
+ solvedAt: z.ZodNullable<z.ZodString>;
103
103
  solvedBy: z.ZodOptional<z.ZodString>;
104
104
  created_at: z.ZodString;
105
105
  updated_at: z.ZodString;
@@ -122,7 +122,7 @@ declare const GetByProfileCommentResponseDto_base: import("@anatine/zod-nestjs")
122
122
  createdBy: string;
123
123
  profileId: string;
124
124
  isSolved: boolean;
125
- solvedAt: Date | null;
125
+ solvedAt: string | null;
126
126
  solvedBy?: string | undefined;
127
127
  }, {
128
128
  account: {
@@ -134,7 +134,7 @@ declare const GetByProfileCommentResponseDto_base: import("@anatine/zod-nestjs")
134
134
  updated_at: string;
135
135
  createdBy: string;
136
136
  profileId: string;
137
- solvedAt: Date | null;
137
+ solvedAt: string | null;
138
138
  isSolvable?: boolean | undefined;
139
139
  isSolved?: boolean | undefined;
140
140
  solvedBy?: string | undefined;
@@ -152,7 +152,7 @@ declare const GetByProfileCommentResponseDto_base: import("@anatine/zod-nestjs")
152
152
  createdBy: string;
153
153
  profileId: string;
154
154
  isSolved: boolean;
155
- solvedAt: Date | null;
155
+ solvedAt: string | null;
156
156
  solvedBy?: string | undefined;
157
157
  }[];
158
158
  }, {
@@ -166,7 +166,7 @@ declare const GetByProfileCommentResponseDto_base: import("@anatine/zod-nestjs")
166
166
  updated_at: string;
167
167
  createdBy: string;
168
168
  profileId: string;
169
- solvedAt: Date | null;
169
+ solvedAt: string | null;
170
170
  isSolvable?: boolean | undefined;
171
171
  isSolved?: boolean | undefined;
172
172
  solvedBy?: string | undefined;
@@ -39,7 +39,7 @@ declare const ToggleSolveCommentResponseDto_base: import("@anatine/zod-nestjs").
39
39
  profileId: import("zod").ZodString;
40
40
  isSolvable: import("zod").ZodDefault<import("zod").ZodBoolean>;
41
41
  isSolved: import("zod").ZodDefault<import("zod").ZodBoolean>;
42
- solvedAt: import("zod").ZodNullable<import("zod").ZodDate>;
42
+ solvedAt: import("zod").ZodNullable<import("zod").ZodString>;
43
43
  solvedBy: import("zod").ZodOptional<import("zod").ZodString>;
44
44
  created_at: import("zod").ZodString;
45
45
  updated_at: import("zod").ZodString;
@@ -52,7 +52,7 @@ declare const ToggleSolveCommentResponseDto_base: import("@anatine/zod-nestjs").
52
52
  createdBy: string;
53
53
  profileId: string;
54
54
  isSolved: boolean;
55
- solvedAt: Date | null;
55
+ solvedAt: string | null;
56
56
  solvedBy?: string | undefined;
57
57
  }, {
58
58
  id: string;
@@ -61,7 +61,7 @@ declare const ToggleSolveCommentResponseDto_base: import("@anatine/zod-nestjs").
61
61
  updated_at: string;
62
62
  createdBy: string;
63
63
  profileId: string;
64
- solvedAt: Date | null;
64
+ solvedAt: string | null;
65
65
  isSolvable?: boolean | undefined;
66
66
  isSolved?: boolean | undefined;
67
67
  solvedBy?: string | undefined;
@@ -1,9 +1,9 @@
1
1
  export * from './account/exports';
2
2
  export * from './auth/exports';
3
+ export * from './cannedResponse/exports';
3
4
  export * from './comment/exports';
4
5
  export * from './event-folder/exports';
5
6
  export * from './event/exports';
6
- export * from './location/exports';
7
7
  export * from './profile/exports';
8
8
  export * from './tag-group/exports';
9
9
  export * from './tag/exports';
@@ -16,10 +16,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./account/exports"), exports);
18
18
  __exportStar(require("./auth/exports"), exports);
19
+ __exportStar(require("./cannedResponse/exports"), exports);
19
20
  __exportStar(require("./comment/exports"), exports);
20
21
  __exportStar(require("./event-folder/exports"), exports);
21
22
  __exportStar(require("./event/exports"), exports);
22
- __exportStar(require("./location/exports"), exports);
23
23
  __exportStar(require("./profile/exports"), exports);
24
24
  __exportStar(require("./tag-group/exports"), exports);
25
25
  __exportStar(require("./tag/exports"), exports);
@@ -112,15 +112,17 @@ declare const _default: {
112
112
  readonly invalid: "La URL de la imagen de perfil no es válida";
113
113
  };
114
114
  };
115
- readonly location: {
115
+ readonly cannedResponse: {
116
116
  readonly id: {
117
117
  readonly uuid: "El ID debe ser un UUID";
118
118
  };
119
- readonly latitude: {
120
- readonly minmax: "La latitud debe estar entre -90 y 90";
119
+ readonly name: {
120
+ readonly required: "El nombre es requerido";
121
+ readonly min: "El nombre debe tener al menos 1 caracter";
121
122
  };
122
- readonly longitude: {
123
- readonly minmax: "La longitud debe estar entre -180 y 180";
123
+ readonly content: {
124
+ readonly required: "El contenido es requerido";
125
+ readonly min: "El contenido debe tener al menos 1 caracter";
124
126
  };
125
127
  };
126
128
  };
@@ -216,23 +218,22 @@ declare const _default: {
216
218
  readonly conflict: "El comentario no es resoluble";
217
219
  };
218
220
  };
219
- readonly location: {
220
- readonly 'find-all': {
221
- readonly success: "Ubicaciones obtenidas";
222
- };
223
- readonly 'find-cities-by-province': {
224
- readonly success: "Localidades de Argentina obtenidas";
221
+ readonly cannedResponse: {
222
+ readonly create: {
223
+ readonly success: "Respuesta enlatada creada con éxito";
224
+ readonly conflict: "Error en la creacion de la respuesta";
225
225
  };
226
- readonly provinces: {
227
- readonly success: "Provincias de Argentina obtenidas";
226
+ readonly 'get-all': {
227
+ readonly success: "Respuestas enlatadas obtenidas con éxito";
228
+ readonly 'not-found': "No se encontraron respuestas enlatadas";
228
229
  };
229
- readonly 'all-countries': {
230
- readonly success: "Países obtenidos";
230
+ readonly update: {
231
+ readonly success: "Respuesta enlatada actualizada con éxito";
232
+ readonly 'not-found': "Respuesta enlatada no encontrada";
231
233
  };
232
- readonly 'states-by-country': {
233
- readonly success: "Estados obtenidos";
234
- readonly 'not-found-error': "No se encontraron estados para el país {{countryCode}}";
235
- readonly 'not-found': "País no encontrado";
234
+ readonly delete: {
235
+ readonly success: "Respuesta enlatada eliminada con éxito";
236
+ readonly 'not-found': "Respuesta enlatada no encontrada";
236
237
  };
237
238
  };
238
239
  };