expo-backend-types 0.58.0-EXPO-405-EB-Rutas-necesarias.1 → 0.58.0-EXPO-405-EB-Rutas-necesarias.2
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/account.dto.d.ts +4 -4
- package/dist/src/account/dto/create-account.dto.d.ts +13 -13
- package/dist/src/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +26 -22
- package/dist/src/account/dto/update-global-filter.dto.d.ts +14 -12
- package/dist/src/auth/dto/login.dto.d.ts +10 -10
- package/dist/src/dynamic-form/dto/find-all-dynamic-form.dto.d.ts +18 -16
- package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.d.ts +14 -12
- package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.d.ts +4 -4
- package/dist/src/event/dto/get-all-event.dto.d.ts +32 -28
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -40
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/i18n/es.d.ts +3 -0
- package/dist/src/i18n/es.js +3 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +4 -4
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +6 -6
- package/dist/src/mi-expo/dto/login.dto.d.ts +6 -6
- package/dist/src/mi-expo/dto/update-me-first-time.dto.d.ts +4 -4
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +4 -4
- package/dist/src/otp/dto/verify-otp.dto.d.ts +4 -4
- package/dist/src/production/dto/create-role.dto.d.ts +7 -4
- package/dist/src/production/dto/get-all-production.dto.d.ts +6 -6
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +6 -6
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +4 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +18 -16
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +30 -26
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +2 -2
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +18 -16
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +18 -16
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +18 -16
- package/dist/src/profile/dto/profile.dto.d.ts +1 -1
- package/dist/src/profile/dto/update-profile.dto.d.ts +2 -2
- package/dist/src/role/dto/create-role.dto.d.ts +92 -0
- package/dist/src/role/dto/create-role.dto.js +16 -0
- package/dist/src/schema/profile.schema.d.ts +1 -1
- package/dist/src/tag/dto/create-tag.dto.d.ts +13 -8
- 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/massive-allocation.dto.d.ts +4 -4
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +4 -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/src/ticket/dto/find-by-event-ticket.dto.d.ts +6 -6
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +6 -6
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +6 -6
- package/dist/types/prisma-schema/edge.js +5 -4
- package/dist/types/prisma-schema/index-browser.js +2 -1
- package/dist/types/prisma-schema/index.d.ts +2 -1
- package/dist/types/prisma-schema/index.js +5 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -0
- package/dist/types/prisma-schema/wasm.js +2 -1
- package/dist/types/schema.d.ts +100 -27
- package/package.json +1 -1
@@ -62,9 +62,9 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
62
62
|
updated_at: z.ZodDate;
|
63
63
|
referralCode: z.ZodString;
|
64
64
|
}, "password">, "strip", z.ZodTypeAny, {
|
65
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
65
66
|
id: string;
|
66
67
|
username: string | null;
|
67
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
68
68
|
phoneNumber: string;
|
69
69
|
secondaryPhoneNumber: string | null;
|
70
70
|
fullName: string;
|
@@ -114,9 +114,9 @@ export declare const loginWithPhoneResponseSchema: z.ZodObject<{
|
|
114
114
|
}>;
|
115
115
|
}, "strip", z.ZodTypeAny, {
|
116
116
|
profile: {
|
117
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
117
118
|
id: string;
|
118
119
|
username: string | null;
|
119
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
120
120
|
phoneNumber: string;
|
121
121
|
secondaryPhoneNumber: string | null;
|
122
122
|
fullName: string;
|
@@ -192,8 +192,6 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
192
192
|
expiresIn: number;
|
193
193
|
}>;
|
194
194
|
profile: z.ZodObject<{
|
195
|
-
id: z.ZodString;
|
196
|
-
username: z.ZodNullable<z.ZodString>;
|
197
195
|
role: z.ZodDefault<z.ZodNativeEnum<{
|
198
196
|
USER: "USER";
|
199
197
|
ADMIN: "ADMIN";
|
@@ -201,6 +199,8 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
201
199
|
TICKETS: "TICKETS";
|
202
200
|
MI_EXPO: "MI_EXPO";
|
203
201
|
}>>;
|
202
|
+
id: z.ZodString;
|
203
|
+
username: z.ZodNullable<z.ZodString>;
|
204
204
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
205
205
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
206
206
|
fullName: z.ZodString;
|
@@ -223,9 +223,9 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
223
223
|
isInTrash: z.ZodBoolean;
|
224
224
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
225
225
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
226
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
226
227
|
id: string;
|
227
228
|
username: string | null;
|
228
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
229
229
|
phoneNumber: string;
|
230
230
|
secondaryPhoneNumber: string | null;
|
231
231
|
fullName: string;
|
@@ -275,9 +275,9 @@ declare const LoginWithPhoneResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
275
275
|
}>;
|
276
276
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
277
277
|
profile: {
|
278
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
278
279
|
id: string;
|
279
280
|
username: string | null;
|
280
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
281
281
|
phoneNumber: string;
|
282
282
|
secondaryPhoneNumber: string | null;
|
283
283
|
fullName: string;
|
@@ -67,9 +67,9 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
67
67
|
updated_at: z.ZodDate;
|
68
68
|
referralCode: z.ZodString;
|
69
69
|
}, "password">, "strip", z.ZodTypeAny, {
|
70
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
70
71
|
id: string;
|
71
72
|
username: string | null;
|
72
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
73
73
|
phoneNumber: string;
|
74
74
|
secondaryPhoneNumber: string | null;
|
75
75
|
fullName: string;
|
@@ -132,9 +132,9 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
132
132
|
}>;
|
133
133
|
}, "strip", z.ZodTypeAny, {
|
134
134
|
user: {
|
135
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
135
136
|
id: string;
|
136
137
|
username: string | null;
|
137
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
138
138
|
phoneNumber: string;
|
139
139
|
secondaryPhoneNumber: string | null;
|
140
140
|
fullName: string;
|
@@ -197,8 +197,6 @@ export declare const loginMiExpoResponseSchema: z.ZodObject<{
|
|
197
197
|
}>;
|
198
198
|
declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
199
199
|
user: z.ZodObject<{
|
200
|
-
id: z.ZodString;
|
201
|
-
username: z.ZodNullable<z.ZodString>;
|
202
200
|
role: z.ZodDefault<z.ZodNativeEnum<{
|
203
201
|
USER: "USER";
|
204
202
|
ADMIN: "ADMIN";
|
@@ -206,6 +204,8 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
206
204
|
TICKETS: "TICKETS";
|
207
205
|
MI_EXPO: "MI_EXPO";
|
208
206
|
}>>;
|
207
|
+
id: z.ZodString;
|
208
|
+
username: z.ZodNullable<z.ZodString>;
|
209
209
|
phoneNumber: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
210
210
|
secondaryPhoneNumber: z.ZodNullable<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>>;
|
211
211
|
fullName: z.ZodString;
|
@@ -228,9 +228,9 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
228
228
|
isInTrash: z.ZodBoolean;
|
229
229
|
movedToTrashDate: z.ZodNullable<z.ZodString>;
|
230
230
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
231
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
231
232
|
id: string;
|
232
233
|
username: string | null;
|
233
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
234
234
|
phoneNumber: string;
|
235
235
|
secondaryPhoneNumber: string | null;
|
236
236
|
fullName: string;
|
@@ -293,9 +293,9 @@ declare const LoginMiExpoResponseDto_base: import("@anatine/zod-nestjs").ZodDtoS
|
|
293
293
|
}>;
|
294
294
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
295
295
|
user: {
|
296
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
296
297
|
id: string;
|
297
298
|
username: string | null;
|
298
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
299
299
|
phoneNumber: string;
|
300
300
|
secondaryPhoneNumber: string | null;
|
301
301
|
fullName: string;
|
@@ -245,9 +245,9 @@ export declare const updateMiExpoMeFirstTimeResponseSchema: import("zod").ZodObj
|
|
245
245
|
updated_at: import("zod").ZodDate;
|
246
246
|
referralCode: import("zod").ZodString;
|
247
247
|
}, "password">, "strip", import("zod").ZodTypeAny, {
|
248
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
248
249
|
id: string;
|
249
250
|
username: string | null;
|
250
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
251
251
|
phoneNumber: string;
|
252
252
|
secondaryPhoneNumber: string | null;
|
253
253
|
fullName: string;
|
@@ -296,8 +296,6 @@ export declare const updateMiExpoMeFirstTimeResponseSchema: import("zod").ZodObj
|
|
296
296
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
297
297
|
}>;
|
298
298
|
declare const UpdateMiExpoMeFirstTimeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
299
|
-
id: import("zod").ZodString;
|
300
|
-
username: import("zod").ZodNullable<import("zod").ZodString>;
|
301
299
|
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
302
300
|
USER: "USER";
|
303
301
|
ADMIN: "ADMIN";
|
@@ -305,6 +303,8 @@ declare const UpdateMiExpoMeFirstTimeResponseDto_base: import("@anatine/zod-nest
|
|
305
303
|
TICKETS: "TICKETS";
|
306
304
|
MI_EXPO: "MI_EXPO";
|
307
305
|
}>>;
|
306
|
+
id: import("zod").ZodString;
|
307
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
308
308
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
309
309
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
310
310
|
fullName: import("zod").ZodString;
|
@@ -327,9 +327,9 @@ declare const UpdateMiExpoMeFirstTimeResponseDto_base: import("@anatine/zod-nest
|
|
327
327
|
isInTrash: import("zod").ZodBoolean;
|
328
328
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
329
329
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
330
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
330
331
|
id: string;
|
331
332
|
username: string | null;
|
332
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
333
333
|
phoneNumber: string;
|
334
334
|
secondaryPhoneNumber: string | null;
|
335
335
|
fullName: string;
|
@@ -239,9 +239,9 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
239
239
|
updated_at: import("zod").ZodDate;
|
240
240
|
referralCode: import("zod").ZodString;
|
241
241
|
}, "password">, "strip", import("zod").ZodTypeAny, {
|
242
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
242
243
|
id: string;
|
243
244
|
username: string | null;
|
244
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
245
245
|
phoneNumber: string;
|
246
246
|
secondaryPhoneNumber: string | null;
|
247
247
|
fullName: string;
|
@@ -290,8 +290,6 @@ export declare const updateMiExpoMeResponseSchema: import("zod").ZodObject<Omit<
|
|
290
290
|
role?: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO" | undefined;
|
291
291
|
}>;
|
292
292
|
declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<import("zod").ZodObject<{
|
293
|
-
id: import("zod").ZodString;
|
294
|
-
username: import("zod").ZodNullable<import("zod").ZodString>;
|
295
293
|
role: import("zod").ZodDefault<import("zod").ZodNativeEnum<{
|
296
294
|
USER: "USER";
|
297
295
|
ADMIN: "ADMIN";
|
@@ -299,6 +297,8 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
299
297
|
TICKETS: "TICKETS";
|
300
298
|
MI_EXPO: "MI_EXPO";
|
301
299
|
}>>;
|
300
|
+
id: import("zod").ZodString;
|
301
|
+
username: import("zod").ZodNullable<import("zod").ZodString>;
|
302
302
|
phoneNumber: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>;
|
303
303
|
secondaryPhoneNumber: import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodString, string, string>, string, string>>;
|
304
304
|
fullName: import("zod").ZodString;
|
@@ -321,9 +321,9 @@ declare const UpdateMiExpoMeResponseDto_base: import("@anatine/zod-nestjs").ZodD
|
|
321
321
|
isInTrash: import("zod").ZodBoolean;
|
322
322
|
movedToTrashDate: import("zod").ZodNullable<import("zod").ZodString>;
|
323
323
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
324
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
324
325
|
id: string;
|
325
326
|
username: string | null;
|
326
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
327
327
|
phoneNumber: string;
|
328
328
|
secondaryPhoneNumber: string | null;
|
329
329
|
fullName: string;
|
@@ -97,10 +97,10 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
97
97
|
city: string;
|
98
98
|
}>>;
|
99
99
|
}>, "strip", z.ZodTypeAny, {
|
100
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
100
101
|
id: string;
|
101
102
|
username: string | null;
|
102
103
|
password: string | null;
|
103
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
104
104
|
phoneNumber: string;
|
105
105
|
secondaryPhoneNumber: string | null;
|
106
106
|
fullName: string;
|
@@ -175,10 +175,10 @@ export declare const verifyOtpResponseSchema: z.ZodObject<{
|
|
175
175
|
}>;
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
177
177
|
profile: {
|
178
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
178
179
|
id: string;
|
179
180
|
username: string | null;
|
180
181
|
password: string | null;
|
181
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
182
182
|
phoneNumber: string;
|
183
183
|
secondaryPhoneNumber: string | null;
|
184
184
|
fullName: string;
|
@@ -323,10 +323,10 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
323
323
|
city: string;
|
324
324
|
}>>;
|
325
325
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
326
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
326
327
|
id: string;
|
327
328
|
username: string | null;
|
328
329
|
password: string | null;
|
329
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
330
330
|
phoneNumber: string;
|
331
331
|
secondaryPhoneNumber: string | null;
|
332
332
|
fullName: string;
|
@@ -401,10 +401,10 @@ declare const VerifyOtpResponseDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
401
401
|
}>;
|
402
402
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
403
403
|
profile: {
|
404
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
404
405
|
id: string;
|
405
406
|
username: string | null;
|
406
407
|
password: string | null;
|
407
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
408
408
|
phoneNumber: string;
|
409
409
|
secondaryPhoneNumber: string | null;
|
410
410
|
fullName: string;
|
@@ -9,6 +9,7 @@ export declare const createProductionRoleSchema: import("zod").ZodObject<Pick<{
|
|
9
9
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
10
10
|
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
11
11
|
FORM_OPTION: "FORM_OPTION";
|
12
|
+
PARTICIPANT_ROLE: "PARTICIPANT_ROLE";
|
12
13
|
}>;
|
13
14
|
created_at: import("zod").ZodDate;
|
14
15
|
updated_at: import("zod").ZodDate;
|
@@ -37,20 +38,21 @@ export declare const createProductionRoleResponseSchema: import("zod").ZodObject
|
|
37
38
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
38
39
|
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
39
40
|
FORM_OPTION: "FORM_OPTION";
|
41
|
+
PARTICIPANT_ROLE: "PARTICIPANT_ROLE";
|
40
42
|
}>;
|
41
43
|
created_at: import("zod").ZodDate;
|
42
44
|
updated_at: import("zod").ZodDate;
|
43
45
|
}, "strip", import("zod").ZodTypeAny, {
|
44
46
|
id: string;
|
45
47
|
name: string;
|
46
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
|
48
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION" | "PARTICIPANT_ROLE";
|
47
49
|
created_at: Date;
|
48
50
|
updated_at: Date;
|
49
51
|
groupId: string;
|
50
52
|
}, {
|
51
53
|
id: string;
|
52
54
|
name: string;
|
53
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
|
55
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION" | "PARTICIPANT_ROLE";
|
54
56
|
created_at: Date;
|
55
57
|
updated_at: Date;
|
56
58
|
groupId: string;
|
@@ -66,20 +68,21 @@ declare const CreateProductionRoleResponseDto_base: import("@anatine/zod-nestjs"
|
|
66
68
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
67
69
|
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
68
70
|
FORM_OPTION: "FORM_OPTION";
|
71
|
+
PARTICIPANT_ROLE: "PARTICIPANT_ROLE";
|
69
72
|
}>;
|
70
73
|
created_at: import("zod").ZodString;
|
71
74
|
updated_at: import("zod").ZodString;
|
72
75
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
73
76
|
id: string;
|
74
77
|
name: string;
|
75
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
|
78
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION" | "PARTICIPANT_ROLE";
|
76
79
|
created_at: string;
|
77
80
|
updated_at: string;
|
78
81
|
groupId: string;
|
79
82
|
}, {
|
80
83
|
id: string;
|
81
84
|
name: string;
|
82
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
|
85
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION" | "PARTICIPANT_ROLE";
|
83
86
|
created_at: string;
|
84
87
|
updated_at: string;
|
85
88
|
groupId: string;
|
@@ -41,10 +41,10 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
41
41
|
updated_at: z.ZodDate;
|
42
42
|
referralCode: z.ZodString;
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
44
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
44
45
|
id: string;
|
45
46
|
username: string | null;
|
46
47
|
password: string | null;
|
47
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
48
48
|
phoneNumber: string;
|
49
49
|
secondaryPhoneNumber: string | null;
|
50
50
|
fullName: string;
|
@@ -101,10 +101,10 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
101
101
|
updated_at: Date;
|
102
102
|
administratorId: string | null;
|
103
103
|
administrator: {
|
104
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
104
105
|
id: string;
|
105
106
|
username: string | null;
|
106
107
|
password: string | null;
|
107
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
108
108
|
phoneNumber: string;
|
109
109
|
secondaryPhoneNumber: string | null;
|
110
110
|
fullName: string;
|
@@ -171,10 +171,10 @@ export declare const getAllProductionResponseSchema: z.ZodObject<{
|
|
171
171
|
updated_at: Date;
|
172
172
|
administratorId: string | null;
|
173
173
|
administrator: {
|
174
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
174
175
|
id: string;
|
175
176
|
username: string | null;
|
176
177
|
password: string | null;
|
177
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
178
178
|
phoneNumber: string;
|
179
179
|
secondaryPhoneNumber: string | null;
|
180
180
|
fullName: string;
|
@@ -276,10 +276,10 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
276
276
|
updated_at: z.ZodString;
|
277
277
|
referralCode: z.ZodString;
|
278
278
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
279
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
279
280
|
id: string;
|
280
281
|
username: string | null;
|
281
282
|
password: string | null;
|
282
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
283
283
|
phoneNumber: string;
|
284
284
|
secondaryPhoneNumber: string | null;
|
285
285
|
fullName: string;
|
@@ -336,10 +336,10 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
336
336
|
updated_at: string;
|
337
337
|
administratorId: string | null;
|
338
338
|
administrator: {
|
339
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
339
340
|
id: string;
|
340
341
|
username: string | null;
|
341
342
|
password: string | null;
|
342
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
343
343
|
phoneNumber: string;
|
344
344
|
secondaryPhoneNumber: string | null;
|
345
345
|
fullName: string;
|
@@ -406,10 +406,10 @@ declare const GetAllProductionResponseDto_base: import("@anatine/zod-nestjs").Zo
|
|
406
406
|
updated_at: string;
|
407
407
|
administratorId: string | null;
|
408
408
|
administrator: {
|
409
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
409
410
|
id: string;
|
410
411
|
username: string | null;
|
411
412
|
password: string | null;
|
412
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
413
413
|
phoneNumber: string;
|
414
414
|
secondaryPhoneNumber: string | null;
|
415
415
|
fullName: string;
|
package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts
CHANGED
@@ -67,10 +67,10 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
67
67
|
updated_at: z.ZodDate;
|
68
68
|
referralCode: z.ZodString;
|
69
69
|
}, "strip", z.ZodTypeAny, {
|
70
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
70
71
|
id: string;
|
71
72
|
username: string | null;
|
72
73
|
password: string | null;
|
73
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
74
74
|
phoneNumber: string;
|
75
75
|
secondaryPhoneNumber: string | null;
|
76
76
|
fullName: string;
|
@@ -121,10 +121,10 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
121
121
|
}>;
|
122
122
|
}>, "strip", z.ZodTypeAny, {
|
123
123
|
profile: {
|
124
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
124
125
|
id: string;
|
125
126
|
username: string | null;
|
126
127
|
password: string | null;
|
127
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
128
128
|
phoneNumber: string;
|
129
129
|
secondaryPhoneNumber: string | null;
|
130
130
|
fullName: string;
|
@@ -207,10 +207,10 @@ export declare const findByProductionAffiliationRequestResponseSchema: z.ZodObje
|
|
207
207
|
}, "strip", z.ZodTypeAny, {
|
208
208
|
productions: {
|
209
209
|
profile: {
|
210
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
210
211
|
id: string;
|
211
212
|
username: string | null;
|
212
213
|
password: string | null;
|
213
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
214
214
|
phoneNumber: string;
|
215
215
|
secondaryPhoneNumber: string | null;
|
216
216
|
fullName: string;
|
@@ -360,10 +360,10 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
360
360
|
updated_at: z.ZodString;
|
361
361
|
referralCode: z.ZodString;
|
362
362
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
363
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
363
364
|
id: string;
|
364
365
|
username: string | null;
|
365
366
|
password: string | null;
|
366
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
367
367
|
phoneNumber: string;
|
368
368
|
secondaryPhoneNumber: string | null;
|
369
369
|
fullName: string;
|
@@ -414,10 +414,10 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
414
414
|
}>;
|
415
415
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
416
416
|
profile: {
|
417
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
417
418
|
id: string;
|
418
419
|
username: string | null;
|
419
420
|
password: string | null;
|
420
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
421
421
|
phoneNumber: string;
|
422
422
|
secondaryPhoneNumber: string | null;
|
423
423
|
fullName: string;
|
@@ -500,10 +500,10 @@ declare const FindByProductionAffiliationRequestResponseDto_base: import("@anati
|
|
500
500
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
501
501
|
productions: {
|
502
502
|
profile: {
|
503
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
503
504
|
id: string;
|
504
505
|
username: string | null;
|
505
506
|
password: string | null;
|
506
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
507
507
|
phoneNumber: string;
|
508
508
|
secondaryPhoneNumber: string | null;
|
509
509
|
fullName: string;
|
package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts
CHANGED
@@ -65,10 +65,10 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
65
65
|
updated_at: import("zod").ZodDate;
|
66
66
|
referralCode: import("zod").ZodString;
|
67
67
|
}, "strip", import("zod").ZodTypeAny, {
|
68
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
68
69
|
id: string;
|
69
70
|
username: string | null;
|
70
71
|
password: string | null;
|
71
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
72
72
|
phoneNumber: string;
|
73
73
|
secondaryPhoneNumber: string | null;
|
74
74
|
fullName: string;
|
@@ -119,10 +119,10 @@ export declare const updateProductionAffiliationRequestResponseSchema: import("z
|
|
119
119
|
}>;
|
120
120
|
}>, "strip", import("zod").ZodTypeAny, {
|
121
121
|
profile: {
|
122
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
122
123
|
id: string;
|
123
124
|
username: string | null;
|
124
125
|
password: string | null;
|
125
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
126
126
|
phoneNumber: string;
|
127
127
|
secondaryPhoneNumber: string | null;
|
128
128
|
fullName: string;
|
@@ -268,10 +268,10 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
268
268
|
updated_at: import("zod").ZodString;
|
269
269
|
referralCode: import("zod").ZodString;
|
270
270
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
271
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
271
272
|
id: string;
|
272
273
|
username: string | null;
|
273
274
|
password: string | null;
|
274
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
275
275
|
phoneNumber: string;
|
276
276
|
secondaryPhoneNumber: string | null;
|
277
277
|
fullName: string;
|
@@ -322,10 +322,10 @@ declare const UpdateProductionAffiliationRequestResponseDto_base: import("@anati
|
|
322
322
|
}>;
|
323
323
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
324
324
|
profile: {
|
325
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
325
326
|
id: string;
|
326
327
|
username: string | null;
|
327
328
|
password: string | null;
|
328
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
329
329
|
phoneNumber: string;
|
330
330
|
secondaryPhoneNumber: string | null;
|
331
331
|
fullName: string;
|
@@ -31,10 +31,10 @@ export declare const deleteProfileResponseSchema: import("zod").ZodObject<{
|
|
31
31
|
updated_at: import("zod").ZodDate;
|
32
32
|
referralCode: import("zod").ZodString;
|
33
33
|
}, "strip", import("zod").ZodTypeAny, {
|
34
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
34
35
|
id: string;
|
35
36
|
username: string | null;
|
36
37
|
password: string | null;
|
37
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
38
38
|
phoneNumber: string;
|
39
39
|
secondaryPhoneNumber: string | null;
|
40
40
|
fullName: string;
|
@@ -116,10 +116,10 @@ declare const DeleteProfileResponseDto_base: import("@anatine/zod-nestjs").ZodDt
|
|
116
116
|
updated_at: import("zod").ZodString;
|
117
117
|
referralCode: import("zod").ZodString;
|
118
118
|
}, import("zod").UnknownKeysParam, import("zod").ZodTypeAny, {
|
119
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
119
120
|
id: string;
|
120
121
|
username: string | null;
|
121
122
|
password: string | null;
|
122
|
-
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
123
123
|
phoneNumber: string;
|
124
124
|
secondaryPhoneNumber: string | null;
|
125
125
|
fullName: string;
|