expo-backend-types 0.9.0-EXPO-249-EB-Modelo.6 → 0.9.0-EXPO-249-EB-Modelo.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/src/i18n/es.d.ts +13 -0
- package/dist/src/i18n/es.js +13 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/profile/dto/create-profile.dto.d.ts +13 -13
- package/dist/src/profile/dto/delete-profile.dto.d.ts +125 -0
- package/dist/src/profile/dto/delete-profile.dto.js +10 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +655 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.js +34 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/profile.dto.js +1 -1
- package/dist/src/profile/dto/update-profile.dto.d.ts +360 -0
- package/dist/src/profile/dto/update-profile.dto.js +55 -0
- package/dist/src/profile/exports.d.ts +3 -0
- package/dist/src/profile/exports.js +3 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
- package/dist/types/schema.d.ts +338 -147
- package/package.json +3 -1
@@ -15,9 +15,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
15
15
|
};
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
17
17
|
__exportStar(require("./dto/create-profile.dto"), exports);
|
18
|
+
__exportStar(require("./dto/delete-profile.dto"), exports);
|
18
19
|
__exportStar(require("./dto/find-all-profile.dto"), exports);
|
20
|
+
__exportStar(require("./dto/find-by-date-range-profile.dto"), exports);
|
19
21
|
__exportStar(require("./dto/find-by-id-profile.dto"), exports);
|
20
22
|
__exportStar(require("./dto/find-by-tag-groups-profile.dto"), exports);
|
21
23
|
__exportStar(require("./dto/find-by-tags-profile.dto"), exports);
|
22
24
|
__exportStar(require("./dto/profile.dto"), exports);
|
25
|
+
__exportStar(require("./dto/update-profile.dto"), exports);
|
23
26
|
//# sourceMappingURL=exports.js.map
|
@@ -35,7 +35,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
35
35
|
instagram: z.ZodNullable<z.ZodString>;
|
36
36
|
mail: z.ZodNullable<z.ZodString>;
|
37
37
|
dni: z.ZodNullable<z.ZodString>;
|
38
|
-
alternativeNames: z.
|
38
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
39
39
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
40
40
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
41
|
isInTrash: z.ZodBoolean;
|
@@ -57,7 +57,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
57
57
|
instagram: string | null;
|
58
58
|
mail: string | null;
|
59
59
|
dni: string | null;
|
60
|
-
alternativeNames: string[]
|
60
|
+
alternativeNames: string[];
|
61
61
|
birthLocationId: string | null;
|
62
62
|
residenceLocationId: string | null;
|
63
63
|
isInTrash: boolean;
|
@@ -77,7 +77,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
77
77
|
instagram: string | null;
|
78
78
|
mail: string | null;
|
79
79
|
dni: string | null;
|
80
|
-
alternativeNames: string[]
|
80
|
+
alternativeNames: string[];
|
81
81
|
birthLocationId: string | null;
|
82
82
|
residenceLocationId: string | null;
|
83
83
|
isInTrash: boolean;
|
@@ -99,7 +99,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
99
99
|
instagram: string | null;
|
100
100
|
mail: string | null;
|
101
101
|
dni: string | null;
|
102
|
-
alternativeNames: string[]
|
102
|
+
alternativeNames: string[];
|
103
103
|
birthLocationId: string | null;
|
104
104
|
residenceLocationId: string | null;
|
105
105
|
isInTrash: boolean;
|
@@ -121,7 +121,7 @@ export declare const massiveAllocationResponseSchema: z.ZodObject<{
|
|
121
121
|
instagram: string | null;
|
122
122
|
mail: string | null;
|
123
123
|
dni: string | null;
|
124
|
-
alternativeNames: string[]
|
124
|
+
alternativeNames: string[];
|
125
125
|
birthLocationId: string | null;
|
126
126
|
residenceLocationId: string | null;
|
127
127
|
isInTrash: boolean;
|
@@ -142,7 +142,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
142
142
|
instagram: z.ZodNullable<z.ZodString>;
|
143
143
|
mail: z.ZodNullable<z.ZodString>;
|
144
144
|
dni: z.ZodNullable<z.ZodString>;
|
145
|
-
alternativeNames: z.
|
145
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
146
146
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
147
147
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
148
|
isInTrash: z.ZodBoolean;
|
@@ -164,7 +164,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
164
164
|
instagram: string | null;
|
165
165
|
mail: string | null;
|
166
166
|
dni: string | null;
|
167
|
-
alternativeNames: string[]
|
167
|
+
alternativeNames: string[];
|
168
168
|
birthLocationId: string | null;
|
169
169
|
residenceLocationId: string | null;
|
170
170
|
isInTrash: boolean;
|
@@ -184,7 +184,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
184
184
|
instagram: string | null;
|
185
185
|
mail: string | null;
|
186
186
|
dni: string | null;
|
187
|
-
alternativeNames: string[]
|
187
|
+
alternativeNames: string[];
|
188
188
|
birthLocationId: string | null;
|
189
189
|
residenceLocationId: string | null;
|
190
190
|
isInTrash: boolean;
|
@@ -206,7 +206,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
206
206
|
instagram: string | null;
|
207
207
|
mail: string | null;
|
208
208
|
dni: string | null;
|
209
|
-
alternativeNames: string[]
|
209
|
+
alternativeNames: string[];
|
210
210
|
birthLocationId: string | null;
|
211
211
|
residenceLocationId: string | null;
|
212
212
|
isInTrash: boolean;
|
@@ -228,7 +228,7 @@ declare const MassiveAllocationResponseDto_base: import("@anatine/zod-nestjs").Z
|
|
228
228
|
instagram: string | null;
|
229
229
|
mail: string | null;
|
230
230
|
dni: string | null;
|
231
|
-
alternativeNames: string[]
|
231
|
+
alternativeNames: string[];
|
232
232
|
birthLocationId: string | null;
|
233
233
|
residenceLocationId: string | null;
|
234
234
|
isInTrash: boolean;
|
@@ -35,7 +35,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
35
35
|
instagram: z.ZodNullable<z.ZodString>;
|
36
36
|
mail: z.ZodNullable<z.ZodString>;
|
37
37
|
dni: z.ZodNullable<z.ZodString>;
|
38
|
-
alternativeNames: z.
|
38
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
39
39
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
40
40
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
41
41
|
isInTrash: z.ZodBoolean;
|
@@ -57,7 +57,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
57
57
|
instagram: string | null;
|
58
58
|
mail: string | null;
|
59
59
|
dni: string | null;
|
60
|
-
alternativeNames: string[]
|
60
|
+
alternativeNames: string[];
|
61
61
|
birthLocationId: string | null;
|
62
62
|
residenceLocationId: string | null;
|
63
63
|
isInTrash: boolean;
|
@@ -77,7 +77,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
77
77
|
instagram: string | null;
|
78
78
|
mail: string | null;
|
79
79
|
dni: string | null;
|
80
|
-
alternativeNames: string[]
|
80
|
+
alternativeNames: string[];
|
81
81
|
birthLocationId: string | null;
|
82
82
|
residenceLocationId: string | null;
|
83
83
|
isInTrash: boolean;
|
@@ -99,7 +99,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
99
99
|
instagram: string | null;
|
100
100
|
mail: string | null;
|
101
101
|
dni: string | null;
|
102
|
-
alternativeNames: string[]
|
102
|
+
alternativeNames: string[];
|
103
103
|
birthLocationId: string | null;
|
104
104
|
residenceLocationId: string | null;
|
105
105
|
isInTrash: boolean;
|
@@ -121,7 +121,7 @@ export declare const massiveDeallocationResponseSchema: z.ZodObject<{
|
|
121
121
|
instagram: string | null;
|
122
122
|
mail: string | null;
|
123
123
|
dni: string | null;
|
124
|
-
alternativeNames: string[]
|
124
|
+
alternativeNames: string[];
|
125
125
|
birthLocationId: string | null;
|
126
126
|
residenceLocationId: string | null;
|
127
127
|
isInTrash: boolean;
|
@@ -142,7 +142,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
142
142
|
instagram: z.ZodNullable<z.ZodString>;
|
143
143
|
mail: z.ZodNullable<z.ZodString>;
|
144
144
|
dni: z.ZodNullable<z.ZodString>;
|
145
|
-
alternativeNames: z.
|
145
|
+
alternativeNames: z.ZodArray<z.ZodString, "many">;
|
146
146
|
birthLocationId: z.ZodNullable<z.ZodString>;
|
147
147
|
residenceLocationId: z.ZodNullable<z.ZodString>;
|
148
148
|
isInTrash: z.ZodBoolean;
|
@@ -164,7 +164,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
164
164
|
instagram: string | null;
|
165
165
|
mail: string | null;
|
166
166
|
dni: string | null;
|
167
|
-
alternativeNames: string[]
|
167
|
+
alternativeNames: string[];
|
168
168
|
birthLocationId: string | null;
|
169
169
|
residenceLocationId: string | null;
|
170
170
|
isInTrash: boolean;
|
@@ -184,7 +184,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
184
184
|
instagram: string | null;
|
185
185
|
mail: string | null;
|
186
186
|
dni: string | null;
|
187
|
-
alternativeNames: string[]
|
187
|
+
alternativeNames: string[];
|
188
188
|
birthLocationId: string | null;
|
189
189
|
residenceLocationId: string | null;
|
190
190
|
isInTrash: boolean;
|
@@ -206,7 +206,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
206
206
|
instagram: string | null;
|
207
207
|
mail: string | null;
|
208
208
|
dni: string | null;
|
209
|
-
alternativeNames: string[]
|
209
|
+
alternativeNames: string[];
|
210
210
|
birthLocationId: string | null;
|
211
211
|
residenceLocationId: string | null;
|
212
212
|
isInTrash: boolean;
|
@@ -228,7 +228,7 @@ declare const MassiveDeallocationResponseDto_base: import("@anatine/zod-nestjs")
|
|
228
228
|
instagram: string | null;
|
229
229
|
mail: string | null;
|
230
230
|
dni: string | null;
|
231
|
-
alternativeNames: string[]
|
231
|
+
alternativeNames: string[];
|
232
232
|
birthLocationId: string | null;
|
233
233
|
residenceLocationId: string | null;
|
234
234
|
isInTrash: boolean;
|