expo-backend-types 0.49.0 → 0.50.0
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.
- package/dist/src/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +20 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
- package/dist/src/event/dto/get-all-event.dto.d.ts +236 -232
- package/dist/src/event/dto/get-all-event.dto.js +1 -1
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +136 -126
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +57 -0
- package/dist/src/i18n/es.js +57 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +41 -0
- package/dist/src/production/dto/create-production.dto.js +18 -0
- package/dist/src/production/dto/create-role.dto.d.ts +86 -0
- package/dist/src/production/dto/create-role.dto.js +16 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
- package/dist/src/production/dto/delete-production.dto.js +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +451 -0
- package/dist/src/production/dto/get-all-production.dto.js +21 -0
- package/dist/src/production/dto/production.dto.d.ts +20 -0
- package/dist/src/production/dto/production.dto.js +21 -0
- package/dist/src/production/dto/update-production.dto.d.ts +63 -0
- package/dist/src/production/dto/update-production.dto.js +19 -0
- package/dist/src/production/exports.d.ts +6 -0
- package/dist/src/production/exports.js +23 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
- package/dist/src/production-affiliation-request/exports.d.ts +4 -0
- package/dist/src/production-affiliation-request/exports.js +21 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
- package/dist/src/tag/dto/create-tag.dto.js +6 -5
- package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
- package/dist/types/prisma-schema/edge.js +32 -5
- package/dist/types/prisma-schema/index-browser.js +29 -2
- package/dist/types/prisma-schema/index.d.ts +4879 -290
- package/dist/types/prisma-schema/index.js +32 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +53 -3
- package/dist/types/prisma-schema/wasm.js +29 -2
- package/dist/types/schema.d.ts +607 -28
- package/package.json +1 -1
@@ -0,0 +1,27 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const productionAffiliationRequestSchema: z.ZodObject<{
|
3
|
+
id: z.ZodString;
|
4
|
+
productionId: z.ZodString;
|
5
|
+
profileId: z.ZodString;
|
6
|
+
status: z.ZodNativeEnum<{
|
7
|
+
APPROVED: "APPROVED";
|
8
|
+
PENDING: "PENDING";
|
9
|
+
REJECTED: "REJECTED";
|
10
|
+
}>;
|
11
|
+
created_at: z.ZodDate;
|
12
|
+
updated_at: z.ZodDate;
|
13
|
+
}, "strip", z.ZodTypeAny, {
|
14
|
+
id: string;
|
15
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
16
|
+
created_at: Date;
|
17
|
+
updated_at: Date;
|
18
|
+
profileId: string;
|
19
|
+
productionId: string;
|
20
|
+
}, {
|
21
|
+
id: string;
|
22
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
23
|
+
created_at: Date;
|
24
|
+
updated_at: Date;
|
25
|
+
profileId: string;
|
26
|
+
productionId: string;
|
27
|
+
}>;
|
@@ -0,0 +1,22 @@
|
|
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.productionAffiliationRequestSchema = void 0;
|
7
|
+
const translate_1 = require("../../i18n/translate");
|
8
|
+
const production_dto_1 = require("../../production/dto/production.dto");
|
9
|
+
const profile_schema_1 = require("../../schema/profile.schema");
|
10
|
+
const zod_1 = __importDefault(require("zod"));
|
11
|
+
const prisma_schema_1 = require("../../../types/prisma-schema/index.js");
|
12
|
+
exports.productionAffiliationRequestSchema = zod_1.default.object({
|
13
|
+
id: zod_1.default.string().uuid({
|
14
|
+
message: (0, translate_1.translate)('model.productionAffiliationRequest.id.uuid'),
|
15
|
+
}),
|
16
|
+
productionId: production_dto_1.productionSchema.shape.id,
|
17
|
+
profileId: profile_schema_1.profileSchema.shape.id,
|
18
|
+
status: zod_1.default.nativeEnum(prisma_schema_1.AffiliationStatus),
|
19
|
+
created_at: zod_1.default.date(),
|
20
|
+
updated_at: zod_1.default.date(),
|
21
|
+
});
|
22
|
+
//# sourceMappingURL=production-affiliation-request.dto.js.map
|
package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts
ADDED
@@ -0,0 +1,390 @@
|
|
1
|
+
export declare const updateProductionAffiliationRequestResponseSchema: import("zod").ZodObject<import("zod").objectUtil.extendShape<{
|
2
|
+
id: import("zod").ZodString;
|
3
|
+
productionId: import("zod").ZodString;
|
4
|
+
profileId: import("zod").ZodString;
|
5
|
+
status: import("zod").ZodNativeEnum<{
|
6
|
+
APPROVED: "APPROVED";
|
7
|
+
PENDING: "PENDING";
|
8
|
+
REJECTED: "REJECTED";
|
9
|
+
}>;
|
10
|
+
created_at: import("zod").ZodDate;
|
11
|
+
updated_at: import("zod").ZodDate;
|
12
|
+
}, {
|
13
|
+
production: import("zod").ZodObject<{
|
14
|
+
id: import("zod").ZodString;
|
15
|
+
name: import("zod").ZodString;
|
16
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
17
|
+
created_at: import("zod").ZodDate;
|
18
|
+
updated_at: import("zod").ZodDate;
|
19
|
+
}, "strip", import("zod").ZodTypeAny, {
|
20
|
+
id: string;
|
21
|
+
name: string;
|
22
|
+
created_at: Date;
|
23
|
+
updated_at: Date;
|
24
|
+
administratorId: string | null;
|
25
|
+
}, {
|
26
|
+
id: string;
|
27
|
+
name: string;
|
28
|
+
created_at: Date;
|
29
|
+
updated_at: Date;
|
30
|
+
administratorId: string | null;
|
31
|
+
}>;
|
32
|
+
profile: import("zod").ZodObject<{
|
33
|
+
id: import("zod").ZodString;
|
34
|
+
shortId: import("zod").ZodNumber;
|
35
|
+
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
36
|
+
USER: "USER";
|
37
|
+
ADMIN: "ADMIN";
|
38
|
+
FORM: "FORM";
|
39
|
+
TICKETS: "TICKETS";
|
40
|
+
MI_EXPO: "MI_EXPO";
|
41
|
+
}>>;
|
42
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
43
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
44
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
45
|
+
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
46
|
+
isPhoneVerified: import("zod").ZodBoolean;
|
47
|
+
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
48
|
+
fullName: import("zod").ZodString;
|
49
|
+
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
50
|
+
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
51
|
+
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodDate>>;
|
52
|
+
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
53
|
+
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
54
|
+
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
55
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
56
|
+
alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
|
57
|
+
birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
58
|
+
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
59
|
+
isInTrash: import("zod").ZodBoolean;
|
60
|
+
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodDate>;
|
61
|
+
created_at: import("zod").ZodDate;
|
62
|
+
updated_at: import("zod").ZodDate;
|
63
|
+
}, "strip", import("zod").ZodTypeAny, {
|
64
|
+
id: string;
|
65
|
+
username: string | null;
|
66
|
+
password: string | null;
|
67
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
68
|
+
phoneNumber: string;
|
69
|
+
secondaryPhoneNumber: string | null;
|
70
|
+
fullName: string;
|
71
|
+
profilePictureUrl: string | null;
|
72
|
+
mail: string | null;
|
73
|
+
dni: string | null;
|
74
|
+
created_at: Date;
|
75
|
+
updated_at: Date;
|
76
|
+
shortId: number;
|
77
|
+
firstTimeMiExpo: boolean;
|
78
|
+
isPhoneVerified: boolean;
|
79
|
+
firstName: string | null;
|
80
|
+
gender: string | null;
|
81
|
+
birthDate: Date | null;
|
82
|
+
instagram: string | null;
|
83
|
+
alternativeNames: string[];
|
84
|
+
birthLocationId: string | null;
|
85
|
+
residenceLocationId: string | null;
|
86
|
+
isInTrash: boolean;
|
87
|
+
movedToTrashDate: Date | null;
|
88
|
+
}, {
|
89
|
+
id: string;
|
90
|
+
username: string | null;
|
91
|
+
password: string | null;
|
92
|
+
phoneNumber: string;
|
93
|
+
secondaryPhoneNumber: string | null;
|
94
|
+
fullName: string;
|
95
|
+
profilePictureUrl: string | null;
|
96
|
+
mail: string | null;
|
97
|
+
dni: string | null;
|
98
|
+
created_at: Date;
|
99
|
+
updated_at: Date;
|
100
|
+
shortId: number;
|
101
|
+
firstTimeMiExpo: boolean;
|
102
|
+
isPhoneVerified: boolean;
|
103
|
+
firstName: string | null;
|
104
|
+
gender: string | null;
|
105
|
+
birthDate: string | null;
|
106
|
+
instagram: string | null;
|
107
|
+
alternativeNames: string[];
|
108
|
+
birthLocationId: string | null;
|
109
|
+
residenceLocationId: string | null;
|
110
|
+
isInTrash: boolean;
|
111
|
+
movedToTrashDate: Date | null;
|
112
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
113
|
+
}>;
|
114
|
+
}>, "strip", import("zod").ZodTypeAny, {
|
115
|
+
profile: {
|
116
|
+
id: string;
|
117
|
+
username: string | null;
|
118
|
+
password: string | null;
|
119
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
120
|
+
phoneNumber: string;
|
121
|
+
secondaryPhoneNumber: string | null;
|
122
|
+
fullName: string;
|
123
|
+
profilePictureUrl: string | null;
|
124
|
+
mail: string | null;
|
125
|
+
dni: string | null;
|
126
|
+
created_at: Date;
|
127
|
+
updated_at: Date;
|
128
|
+
shortId: number;
|
129
|
+
firstTimeMiExpo: boolean;
|
130
|
+
isPhoneVerified: boolean;
|
131
|
+
firstName: string | null;
|
132
|
+
gender: string | null;
|
133
|
+
birthDate: Date | null;
|
134
|
+
instagram: string | null;
|
135
|
+
alternativeNames: string[];
|
136
|
+
birthLocationId: string | null;
|
137
|
+
residenceLocationId: string | null;
|
138
|
+
isInTrash: boolean;
|
139
|
+
movedToTrashDate: Date | null;
|
140
|
+
};
|
141
|
+
production: {
|
142
|
+
id: string;
|
143
|
+
name: string;
|
144
|
+
created_at: Date;
|
145
|
+
updated_at: Date;
|
146
|
+
administratorId: string | null;
|
147
|
+
};
|
148
|
+
id: string;
|
149
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
150
|
+
created_at: Date;
|
151
|
+
updated_at: Date;
|
152
|
+
profileId: string;
|
153
|
+
productionId: string;
|
154
|
+
}, {
|
155
|
+
profile: {
|
156
|
+
id: string;
|
157
|
+
username: string | null;
|
158
|
+
password: string | null;
|
159
|
+
phoneNumber: string;
|
160
|
+
secondaryPhoneNumber: string | null;
|
161
|
+
fullName: string;
|
162
|
+
profilePictureUrl: string | null;
|
163
|
+
mail: string | null;
|
164
|
+
dni: string | null;
|
165
|
+
created_at: Date;
|
166
|
+
updated_at: Date;
|
167
|
+
shortId: number;
|
168
|
+
firstTimeMiExpo: boolean;
|
169
|
+
isPhoneVerified: boolean;
|
170
|
+
firstName: string | null;
|
171
|
+
gender: string | null;
|
172
|
+
birthDate: string | null;
|
173
|
+
instagram: string | null;
|
174
|
+
alternativeNames: string[];
|
175
|
+
birthLocationId: string | null;
|
176
|
+
residenceLocationId: string | null;
|
177
|
+
isInTrash: boolean;
|
178
|
+
movedToTrashDate: Date | null;
|
179
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
180
|
+
};
|
181
|
+
production: {
|
182
|
+
id: string;
|
183
|
+
name: string;
|
184
|
+
created_at: Date;
|
185
|
+
updated_at: Date;
|
186
|
+
administratorId: string | null;
|
187
|
+
};
|
188
|
+
id: string;
|
189
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
190
|
+
created_at: Date;
|
191
|
+
updated_at: Date;
|
192
|
+
profileId: string;
|
193
|
+
productionId: string;
|
194
|
+
}>;
|
195
|
+
declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
196
|
+
id: import("zod").ZodString;
|
197
|
+
productionId: import("zod").ZodString;
|
198
|
+
profileId: import("zod").ZodString;
|
199
|
+
status: import("zod").ZodNativeEnum<{
|
200
|
+
APPROVED: "APPROVED";
|
201
|
+
PENDING: "PENDING";
|
202
|
+
REJECTED: "REJECTED";
|
203
|
+
}>;
|
204
|
+
created_at: import("zod").ZodString;
|
205
|
+
updated_at: import("zod").ZodString;
|
206
|
+
production: import("zod").ZodObject<{
|
207
|
+
id: import("zod").ZodString;
|
208
|
+
name: import("zod").ZodString;
|
209
|
+
administratorId: import("zod").ZodNullable<import("zod").ZodString>;
|
210
|
+
created_at: import("zod").ZodString;
|
211
|
+
updated_at: import("zod").ZodString;
|
212
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
213
|
+
id: string;
|
214
|
+
name: string;
|
215
|
+
created_at: string;
|
216
|
+
updated_at: string;
|
217
|
+
administratorId: string | null;
|
218
|
+
}, {
|
219
|
+
id: string;
|
220
|
+
name: string;
|
221
|
+
created_at: string;
|
222
|
+
updated_at: string;
|
223
|
+
administratorId: string | null;
|
224
|
+
}>;
|
225
|
+
profile: import("zod").ZodObject<{
|
226
|
+
id: import("zod").ZodString;
|
227
|
+
shortId: import("zod").ZodNumber;
|
228
|
+
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
229
|
+
USER: "USER";
|
230
|
+
ADMIN: "ADMIN";
|
231
|
+
FORM: "FORM";
|
232
|
+
TICKETS: "TICKETS";
|
233
|
+
MI_EXPO: "MI_EXPO";
|
234
|
+
}>>;
|
235
|
+
firstTimeMiExpo: import("zod").ZodBoolean;
|
236
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
237
|
+
password: import("zod").ZodNullable<import("zod").ZodString>;
|
238
|
+
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
239
|
+
isPhoneVerified: import("zod").ZodBoolean;
|
240
|
+
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
241
|
+
fullName: import("zod").ZodString;
|
242
|
+
firstName: import("zod").ZodNullable<import("zod").ZodString>;
|
243
|
+
gender: import("zod").ZodNullable<import("zod").ZodString>;
|
244
|
+
birthDate: import("zod").ZodNullable<import("zod").ZodPipeline<import("zod").ZodString, import("zod").ZodString>>;
|
245
|
+
profilePictureUrl: import("zod").ZodNullable<import("zod").ZodString>;
|
246
|
+
instagram: import("zod").ZodNullable<import("zod").ZodString>;
|
247
|
+
mail: import("zod").ZodNullable<import("zod").ZodString>;
|
248
|
+
dni: import("zod").ZodNullable<import("zod").ZodString>;
|
249
|
+
alternativeNames: import("zod").ZodArray<import("zod").ZodString, "many">;
|
250
|
+
birthLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
251
|
+
residenceLocationId: import("zod").ZodNullable<import("zod").ZodString>;
|
252
|
+
isInTrash: import("zod").ZodBoolean;
|
253
|
+
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
254
|
+
created_at: import("zod").ZodString;
|
255
|
+
updated_at: import("zod").ZodString;
|
256
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
257
|
+
id: string;
|
258
|
+
username: string | null;
|
259
|
+
password: string | null;
|
260
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
261
|
+
phoneNumber: string;
|
262
|
+
secondaryPhoneNumber: string | null;
|
263
|
+
fullName: string;
|
264
|
+
profilePictureUrl: string | null;
|
265
|
+
mail: string | null;
|
266
|
+
dni: string | null;
|
267
|
+
created_at: string;
|
268
|
+
updated_at: string;
|
269
|
+
shortId: number;
|
270
|
+
firstTimeMiExpo: boolean;
|
271
|
+
isPhoneVerified: boolean;
|
272
|
+
firstName: string | null;
|
273
|
+
gender: string | null;
|
274
|
+
birthDate: string | null;
|
275
|
+
instagram: string | null;
|
276
|
+
alternativeNames: string[];
|
277
|
+
birthLocationId: string | null;
|
278
|
+
residenceLocationId: string | null;
|
279
|
+
isInTrash: boolean;
|
280
|
+
movedToTrashDate: string | null;
|
281
|
+
}, {
|
282
|
+
id: string;
|
283
|
+
username: string | null;
|
284
|
+
password: string | null;
|
285
|
+
phoneNumber: string;
|
286
|
+
secondaryPhoneNumber: string | null;
|
287
|
+
fullName: string;
|
288
|
+
profilePictureUrl: string | null;
|
289
|
+
mail: string | null;
|
290
|
+
dni: string | null;
|
291
|
+
created_at: string;
|
292
|
+
updated_at: string;
|
293
|
+
shortId: number;
|
294
|
+
firstTimeMiExpo: boolean;
|
295
|
+
isPhoneVerified: boolean;
|
296
|
+
firstName: string | null;
|
297
|
+
gender: string | null;
|
298
|
+
birthDate: string | null;
|
299
|
+
instagram: string | null;
|
300
|
+
alternativeNames: string[];
|
301
|
+
birthLocationId: string | null;
|
302
|
+
residenceLocationId: string | null;
|
303
|
+
isInTrash: boolean;
|
304
|
+
movedToTrashDate: string | null;
|
305
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
306
|
+
}>;
|
307
|
+
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
308
|
+
profile: {
|
309
|
+
id: string;
|
310
|
+
username: string | null;
|
311
|
+
password: string | null;
|
312
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
313
|
+
phoneNumber: string;
|
314
|
+
secondaryPhoneNumber: string | null;
|
315
|
+
fullName: string;
|
316
|
+
profilePictureUrl: string | null;
|
317
|
+
mail: string | null;
|
318
|
+
dni: string | null;
|
319
|
+
created_at: string;
|
320
|
+
updated_at: string;
|
321
|
+
shortId: number;
|
322
|
+
firstTimeMiExpo: boolean;
|
323
|
+
isPhoneVerified: boolean;
|
324
|
+
firstName: string | null;
|
325
|
+
gender: string | null;
|
326
|
+
birthDate: string | null;
|
327
|
+
instagram: string | null;
|
328
|
+
alternativeNames: string[];
|
329
|
+
birthLocationId: string | null;
|
330
|
+
residenceLocationId: string | null;
|
331
|
+
isInTrash: boolean;
|
332
|
+
movedToTrashDate: string | null;
|
333
|
+
};
|
334
|
+
production: {
|
335
|
+
id: string;
|
336
|
+
name: string;
|
337
|
+
created_at: string;
|
338
|
+
updated_at: string;
|
339
|
+
administratorId: string | null;
|
340
|
+
};
|
341
|
+
id: string;
|
342
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
343
|
+
created_at: string;
|
344
|
+
updated_at: string;
|
345
|
+
profileId: string;
|
346
|
+
productionId: string;
|
347
|
+
}, {
|
348
|
+
profile: {
|
349
|
+
id: string;
|
350
|
+
username: string | null;
|
351
|
+
password: string | null;
|
352
|
+
phoneNumber: string;
|
353
|
+
secondaryPhoneNumber: string | null;
|
354
|
+
fullName: string;
|
355
|
+
profilePictureUrl: string | null;
|
356
|
+
mail: string | null;
|
357
|
+
dni: string | null;
|
358
|
+
created_at: string;
|
359
|
+
updated_at: string;
|
360
|
+
shortId: number;
|
361
|
+
firstTimeMiExpo: boolean;
|
362
|
+
isPhoneVerified: boolean;
|
363
|
+
firstName: string | null;
|
364
|
+
gender: string | null;
|
365
|
+
birthDate: string | null;
|
366
|
+
instagram: string | null;
|
367
|
+
alternativeNames: string[];
|
368
|
+
birthLocationId: string | null;
|
369
|
+
residenceLocationId: string | null;
|
370
|
+
isInTrash: boolean;
|
371
|
+
movedToTrashDate: string | null;
|
372
|
+
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
373
|
+
};
|
374
|
+
production: {
|
375
|
+
id: string;
|
376
|
+
name: string;
|
377
|
+
created_at: string;
|
378
|
+
updated_at: string;
|
379
|
+
administratorId: string | null;
|
380
|
+
};
|
381
|
+
id: string;
|
382
|
+
status: "APPROVED" | "PENDING" | "REJECTED";
|
383
|
+
created_at: string;
|
384
|
+
updated_at: string;
|
385
|
+
profileId: string;
|
386
|
+
productionId: string;
|
387
|
+
}>>;
|
388
|
+
export declare class UpdateProductionAffiliationRequestResponseDto extends UpdateProductionAffiliationRequestResponseDto_base {
|
389
|
+
}
|
390
|
+
export {};
|
package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.UpdateProductionAffiliationRequestResponseDto = exports.updateProductionAffiliationRequestResponseSchema = void 0;
|
4
|
+
const production_affiliation_request_dto_1 = require("./production-affiliation-request.dto");
|
5
|
+
const production_dto_1 = require("../../production/dto/production.dto");
|
6
|
+
const profile_schema_1 = require("../../schema/profile.schema");
|
7
|
+
const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
|
8
|
+
exports.updateProductionAffiliationRequestResponseSchema = production_affiliation_request_dto_1.productionAffiliationRequestSchema.extend({
|
9
|
+
production: production_dto_1.productionSchema,
|
10
|
+
profile: profile_schema_1.profileSchema,
|
11
|
+
});
|
12
|
+
class UpdateProductionAffiliationRequestResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.updateProductionAffiliationRequestResponseSchema) {
|
13
|
+
}
|
14
|
+
exports.UpdateProductionAffiliationRequestResponseDto = UpdateProductionAffiliationRequestResponseDto;
|
15
|
+
//# sourceMappingURL=update-production-affiliation-request.dto.js.map
|
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
+
if (k2 === undefined) k2 = k;
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
+
}
|
8
|
+
Object.defineProperty(o, k2, desc);
|
9
|
+
}) : (function(o, m, k, k2) {
|
10
|
+
if (k2 === undefined) k2 = k;
|
11
|
+
o[k2] = m[k];
|
12
|
+
}));
|
13
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
+
};
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
+
__exportStar(require("./dto/create-production-affiliation-request.dto"), exports);
|
18
|
+
__exportStar(require("./dto/find-by-production-affiliation-request.dto"), exports);
|
19
|
+
__exportStar(require("./dto/production-affiliation-request.dto"), exports);
|
20
|
+
__exportStar(require("./dto/update-production-affiliation-request.dto"), exports);
|
21
|
+
//# sourceMappingURL=exports.js.map
|
@@ -41,6 +41,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
41
41
|
EVENT: "EVENT";
|
42
42
|
PARTICIPANT: "PARTICIPANT";
|
43
43
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
44
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
44
45
|
}>;
|
45
46
|
created_at: z.ZodDate;
|
46
47
|
updated_at: z.ZodDate;
|
@@ -62,7 +63,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
62
63
|
}>, "strip", z.ZodTypeAny, {
|
63
64
|
id: string;
|
64
65
|
name: string;
|
65
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
66
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
66
67
|
created_at: Date;
|
67
68
|
updated_at: Date;
|
68
69
|
groupId: string;
|
@@ -73,7 +74,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
73
74
|
}, {
|
74
75
|
id: string;
|
75
76
|
name: string;
|
76
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
77
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
77
78
|
created_at: Date;
|
78
79
|
updated_at: Date;
|
79
80
|
groupId: string;
|
@@ -110,7 +111,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
110
111
|
tags: {
|
111
112
|
id: string;
|
112
113
|
name: string;
|
113
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
114
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
114
115
|
created_at: Date;
|
115
116
|
updated_at: Date;
|
116
117
|
groupId: string;
|
@@ -146,7 +147,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
146
147
|
tags: {
|
147
148
|
id: string;
|
148
149
|
name: string;
|
149
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
150
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
150
151
|
created_at: Date;
|
151
152
|
updated_at: Date;
|
152
153
|
groupId: string;
|
@@ -186,7 +187,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
186
187
|
tags: {
|
187
188
|
id: string;
|
188
189
|
name: string;
|
189
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
190
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
190
191
|
created_at: Date;
|
191
192
|
updated_at: Date;
|
192
193
|
groupId: string;
|
@@ -224,7 +225,7 @@ export declare const findAllProfileResponseSchema: z.ZodObject<{
|
|
224
225
|
tags: {
|
225
226
|
id: string;
|
226
227
|
name: string;
|
227
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
228
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
228
229
|
created_at: Date;
|
229
230
|
updated_at: Date;
|
230
231
|
groupId: string;
|
@@ -277,6 +278,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
277
278
|
EVENT: "EVENT";
|
278
279
|
PARTICIPANT: "PARTICIPANT";
|
279
280
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
281
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
280
282
|
}>;
|
281
283
|
created_at: z.ZodString;
|
282
284
|
updated_at: z.ZodString;
|
@@ -293,7 +295,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
293
295
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
294
296
|
id: string;
|
295
297
|
name: string;
|
296
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
298
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
297
299
|
created_at: string;
|
298
300
|
updated_at: string;
|
299
301
|
groupId: string;
|
@@ -304,7 +306,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
304
306
|
}, {
|
305
307
|
id: string;
|
306
308
|
name: string;
|
307
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
309
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
308
310
|
created_at: string;
|
309
311
|
updated_at: string;
|
310
312
|
groupId: string;
|
@@ -341,7 +343,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
341
343
|
tags: {
|
342
344
|
id: string;
|
343
345
|
name: string;
|
344
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
346
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
345
347
|
created_at: string;
|
346
348
|
updated_at: string;
|
347
349
|
groupId: string;
|
@@ -377,7 +379,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
377
379
|
tags: {
|
378
380
|
id: string;
|
379
381
|
name: string;
|
380
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
382
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
381
383
|
created_at: string;
|
382
384
|
updated_at: string;
|
383
385
|
groupId: string;
|
@@ -417,7 +419,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
417
419
|
tags: {
|
418
420
|
id: string;
|
419
421
|
name: string;
|
420
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
422
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
421
423
|
created_at: string;
|
422
424
|
updated_at: string;
|
423
425
|
groupId: string;
|
@@ -455,7 +457,7 @@ declare const FindAllProfileResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
455
457
|
tags: {
|
456
458
|
id: string;
|
457
459
|
name: string;
|
458
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
460
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
459
461
|
created_at: string;
|
460
462
|
updated_at: string;
|
461
463
|
groupId: string;
|