expo-backend-types 0.17.0-EXPO-288-EB-Imagenes.2 → 0.17.0-EXPO-244-EB-CSV.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/csv/dto/csv.dto.d.ts +18 -0
- package/dist/src/csv/dto/csv.dto.js +17 -0
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +23 -0
- package/dist/src/csv/dto/download-all-tables.dto.js +19 -0
- package/dist/src/csv/dto/download-profiles.dto.d.ts +18 -0
- package/dist/src/csv/dto/download-profiles.dto.js +15 -0
- package/dist/src/csv/exports.d.ts +3 -0
- package/dist/src/{image → csv}/exports.js +3 -3
- package/dist/src/i18n/es.d.ts +18 -17
- package/dist/src/i18n/es.js +18 -17
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/create-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/delete-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +4 -4
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +8 -8
- package/dist/src/profile/dto/profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/profile.dto.js +1 -6
- package/dist/src/profile/dto/update-profile.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +8 -8
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +8 -8
- package/dist/types/schema.d.ts +37 -35
- package/package.json +5 -2
- package/dist/src/image/dto/delete-image.dto.d.ts +0 -34
- package/dist/src/image/dto/delete-image.dto.js +0 -14
- package/dist/src/image/dto/image.dto.d.ts +0 -36
- package/dist/src/image/dto/image.dto.js +0 -23
- package/dist/src/image/dto/update-image.dto.d.ts +0 -64
- package/dist/src/image/dto/update-image.dto.js +0 -18
- package/dist/src/image/exports.d.ts +0 -3
@@ -1,36 +0,0 @@
|
|
1
|
-
import { z } from 'zod';
|
2
|
-
export declare const imageSchema: z.ZodObject<{
|
3
|
-
id: z.ZodString;
|
4
|
-
url: z.ZodOptional<z.ZodString>;
|
5
|
-
title: z.ZodOptional<z.ZodString>;
|
6
|
-
description: z.ZodOptional<z.ZodString>;
|
7
|
-
}, "strip", z.ZodTypeAny, {
|
8
|
-
id: string;
|
9
|
-
description?: string | undefined;
|
10
|
-
url?: string | undefined;
|
11
|
-
title?: string | undefined;
|
12
|
-
}, {
|
13
|
-
id: string;
|
14
|
-
description?: string | undefined;
|
15
|
-
url?: string | undefined;
|
16
|
-
title?: string | undefined;
|
17
|
-
}>;
|
18
|
-
declare const ImageDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
19
|
-
id: z.ZodString;
|
20
|
-
url: z.ZodOptional<z.ZodString>;
|
21
|
-
title: z.ZodOptional<z.ZodString>;
|
22
|
-
description: z.ZodOptional<z.ZodString>;
|
23
|
-
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
24
|
-
id: string;
|
25
|
-
description?: string | undefined;
|
26
|
-
url?: string | undefined;
|
27
|
-
title?: string | undefined;
|
28
|
-
}, {
|
29
|
-
id: string;
|
30
|
-
description?: string | undefined;
|
31
|
-
url?: string | undefined;
|
32
|
-
title?: string | undefined;
|
33
|
-
}>>;
|
34
|
-
export declare class ImageDto extends ImageDto_base {
|
35
|
-
}
|
36
|
-
export {};
|
@@ -1,23 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.ImageDto = exports.imageSchema = 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.imageSchema = zod_1.z.object({
|
8
|
-
id: zod_1.z.string().uuid({
|
9
|
-
message: (0, translate_1.translate)('model.image.id.uuid'),
|
10
|
-
}),
|
11
|
-
url: zod_1.z
|
12
|
-
.string()
|
13
|
-
.url({
|
14
|
-
message: (0, translate_1.translate)('model.image.url.url'),
|
15
|
-
})
|
16
|
-
.optional(),
|
17
|
-
title: zod_1.z.string().optional(),
|
18
|
-
description: zod_1.z.string().optional(),
|
19
|
-
});
|
20
|
-
class ImageDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.imageSchema) {
|
21
|
-
}
|
22
|
-
exports.ImageDto = ImageDto;
|
23
|
-
//# sourceMappingURL=image.dto.js.map
|
@@ -1,64 +0,0 @@
|
|
1
|
-
export declare const updateImageSchema: import("zod").ZodObject<Pick<{
|
2
|
-
id: import("zod").ZodString;
|
3
|
-
url: import("zod").ZodOptional<import("zod").ZodString>;
|
4
|
-
title: import("zod").ZodOptional<import("zod").ZodString>;
|
5
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
6
|
-
}, "description" | "url" | "title">, "strip", import("zod").ZodTypeAny, {
|
7
|
-
description?: string | undefined;
|
8
|
-
url?: string | undefined;
|
9
|
-
title?: string | undefined;
|
10
|
-
}, {
|
11
|
-
description?: string | undefined;
|
12
|
-
url?: string | undefined;
|
13
|
-
title?: string | undefined;
|
14
|
-
}>;
|
15
|
-
declare const UpdateImageDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
16
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
17
|
-
url: import("zod").ZodOptional<import("zod").ZodString>;
|
18
|
-
title: import("zod").ZodOptional<import("zod").ZodString>;
|
19
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
20
|
-
description?: string | undefined;
|
21
|
-
url?: string | undefined;
|
22
|
-
title?: string | undefined;
|
23
|
-
}, {
|
24
|
-
description?: string | undefined;
|
25
|
-
url?: string | undefined;
|
26
|
-
title?: string | undefined;
|
27
|
-
}>>;
|
28
|
-
export declare class UpdateImageDto extends UpdateImageDto_base {
|
29
|
-
}
|
30
|
-
export declare const updateImageResponseSchema: import("zod").ZodObject<{
|
31
|
-
id: import("zod").ZodString;
|
32
|
-
url: import("zod").ZodOptional<import("zod").ZodString>;
|
33
|
-
title: import("zod").ZodOptional<import("zod").ZodString>;
|
34
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
35
|
-
}, "strip", import("zod").ZodTypeAny, {
|
36
|
-
id: string;
|
37
|
-
description?: string | undefined;
|
38
|
-
url?: string | undefined;
|
39
|
-
title?: string | undefined;
|
40
|
-
}, {
|
41
|
-
id: string;
|
42
|
-
description?: string | undefined;
|
43
|
-
url?: string | undefined;
|
44
|
-
title?: string | undefined;
|
45
|
-
}>;
|
46
|
-
declare const UpdateImageResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
47
|
-
id: import("zod").ZodString;
|
48
|
-
url: import("zod").ZodOptional<import("zod").ZodString>;
|
49
|
-
title: import("zod").ZodOptional<import("zod").ZodString>;
|
50
|
-
description: import("zod").ZodOptional<import("zod").ZodString>;
|
51
|
-
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
52
|
-
id: string;
|
53
|
-
description?: string | undefined;
|
54
|
-
url?: string | undefined;
|
55
|
-
title?: string | undefined;
|
56
|
-
}, {
|
57
|
-
id: string;
|
58
|
-
description?: string | undefined;
|
59
|
-
url?: string | undefined;
|
60
|
-
title?: string | undefined;
|
61
|
-
}>>;
|
62
|
-
export declare class UpdateImageResponseDto extends UpdateImageResponseDto_base {
|
63
|
-
}
|
64
|
-
export {};
|
@@ -1,18 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.UpdateImageResponseDto = exports.updateImageResponseSchema = exports.UpdateImageDto = exports.updateImageSchema = void 0;
|
4
|
-
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
5
|
-
const image_dto_1 = require("./image.dto");
|
6
|
-
exports.updateImageSchema = image_dto_1.imageSchema.pick({
|
7
|
-
url: true,
|
8
|
-
title: true,
|
9
|
-
description: true,
|
10
|
-
});
|
11
|
-
class UpdateImageDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateImageSchema) {
|
12
|
-
}
|
13
|
-
exports.UpdateImageDto = UpdateImageDto;
|
14
|
-
exports.updateImageResponseSchema = image_dto_1.imageSchema;
|
15
|
-
class UpdateImageResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateImageResponseSchema) {
|
16
|
-
}
|
17
|
-
exports.UpdateImageResponseDto = UpdateImageResponseDto;
|
18
|
-
//# sourceMappingURL=update-image.dto.js.map
|