expo-backend-types 0.37.0-EXPO-327-EB-Escanear-entrada.3 → 0.37.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.5
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 +8 -8
- package/dist/src/account/dto/get-me.dto.d.ts +16 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +8 -8
- package/dist/src/csv/dto/download-all-tables.dto.d.ts +3 -2
- package/dist/src/event/dto/create-event.dto.d.ts +8 -8
- package/dist/src/event/dto/event-tickets.dto.d.ts +2 -2
- package/dist/src/event/dto/get-active-events.dto.d.ts +12 -12
- package/dist/src/event/dto/get-all-event.dto.d.ts +56 -56
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +50 -88
- package/dist/src/event/dto/update-event.dto.d.ts +24 -24
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +35 -28
- package/dist/src/i18n/es.js +201 -79
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/i18n/translate.js +2 -2
- package/dist/src/i18n/translate.js.map +1 -1
- package/dist/src/image/dto/update-image.dto.d.ts +1 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +20 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +8 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +12 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +12 -12
- package/dist/src/schema/profile.schema.js +7 -17
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js +2 -1
- package/dist/src/shared/dto-modification/create-zod-dto-without-date.js.map +1 -1
- package/dist/src/tag/dto/create-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/delete-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +8 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/tag.dto.d.ts +4 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +4 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +12 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +8 -8
- package/dist/src/ticket/constants.d.ts +14 -12
- package/dist/src/ticket/constants.js +248 -354
- package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +596 -0
- package/dist/src/ticket/dto/create-many-ticket.dto.js +50 -0
- package/dist/src/ticket/dto/create-ticket.dto.d.ts +21 -58
- package/dist/src/ticket/dto/create-ticket.dto.js +1 -1
- package/dist/src/ticket/dto/delete-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +18 -56
- package/dist/src/ticket/dto/find-ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/generate-pdf.dto.d.ts +3 -2
- package/dist/src/ticket/dto/ticket.dto.d.ts +10 -36
- package/dist/src/ticket/dto/ticket.dto.js +2 -6
- package/dist/src/ticket/dto/update-ticket.dto.d.ts +26 -54
- package/dist/src/ticket/dto/update-ticket.dto.js +2 -1
- package/dist/src/ticket/exports.d.ts +0 -1
- package/dist/src/ticket/exports.js +0 -1
- package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +356 -0
- package/dist/src/ticket-group/dto/create-ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.d.ts +55 -0
- package/dist/src/ticket-group/dto/delete-ticket-group.dto.js +10 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.d.ts +32 -0
- package/dist/src/ticket-group/dto/find-tickets-by-event.dto.js +20 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.d.ts +56 -0
- package/dist/src/ticket-group/dto/ticket-group.dto.js +27 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.d.ts +79 -0
- package/dist/src/ticket-group/dto/update-ticket-group.dto.js +18 -0
- package/dist/src/ticket-group/exports.d.ts +5 -0
- package/dist/src/ticket-group/exports.js +22 -0
- package/dist/types/prisma-schema/edge.js +21 -14
- package/dist/types/prisma-schema/index-browser.js +16 -9
- package/dist/types/prisma-schema/index.d.ts +2464 -653
- package/dist/types/prisma-schema/index.js +21 -14
- package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/dist/types/prisma-schema/package.json +2 -2
- package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
- package/dist/types/prisma-schema/runtime/edge.js +18 -18
- package/dist/types/prisma-schema/runtime/index-browser.d.ts +2 -2
- package/dist/types/prisma-schema/runtime/index-browser.js +1 -1
- package/dist/types/prisma-schema/runtime/library.d.ts +105 -123
- package/dist/types/prisma-schema/runtime/library.js +56 -56
- package/dist/types/prisma-schema/runtime/react-native.js +25 -25
- package/dist/types/prisma-schema/runtime/wasm.js +19 -19
- package/dist/types/prisma-schema/schema.prisma +23 -9
- package/dist/types/prisma-schema/wasm.js +16 -9
- package/dist/types/schema.d.ts +266 -59
- package/package.json +19 -18
- package/dist/src/ticket/dto/scan-ticket.dto.d.ts +0 -34
- package/dist/src/ticket/dto/scan-ticket.dto.js +0 -21
- package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
- package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -47,7 +47,7 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
47
47
|
}>, "strip", z.ZodTypeAny, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
group: {
|
52
52
|
id: string;
|
53
53
|
color: string;
|
@@ -56,7 +56,7 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
56
56
|
}, {
|
57
57
|
id: string;
|
58
58
|
name: string;
|
59
|
-
type: "
|
59
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
60
60
|
group: {
|
61
61
|
id: string;
|
62
62
|
color: string;
|
@@ -68,7 +68,7 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
68
68
|
globalFilter: {
|
69
69
|
id: string;
|
70
70
|
name: string;
|
71
|
-
type: "
|
71
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
72
72
|
group: {
|
73
73
|
id: string;
|
74
74
|
color: string;
|
@@ -79,7 +79,7 @@ export declare const getGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.ext
|
|
79
79
|
globalFilter: {
|
80
80
|
id: string;
|
81
81
|
name: string;
|
82
|
-
type: "
|
82
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
83
83
|
group: {
|
84
84
|
id: string;
|
85
85
|
color: string;
|
@@ -115,7 +115,7 @@ declare const GetGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
115
115
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
116
116
|
id: string;
|
117
117
|
name: string;
|
118
|
-
type: "
|
118
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
119
119
|
group: {
|
120
120
|
id: string;
|
121
121
|
color: string;
|
@@ -124,7 +124,7 @@ declare const GetGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
124
124
|
}, {
|
125
125
|
id: string;
|
126
126
|
name: string;
|
127
|
-
type: "
|
127
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
128
128
|
group: {
|
129
129
|
id: string;
|
130
130
|
color: string;
|
@@ -136,7 +136,7 @@ declare const GetGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
136
136
|
globalFilter: {
|
137
137
|
id: string;
|
138
138
|
name: string;
|
139
|
-
type: "
|
139
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
140
140
|
group: {
|
141
141
|
id: string;
|
142
142
|
color: string;
|
@@ -147,7 +147,7 @@ declare const GetGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
147
147
|
globalFilter: {
|
148
148
|
id: string;
|
149
149
|
name: string;
|
150
|
-
type: "
|
150
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
151
151
|
group: {
|
152
152
|
id: string;
|
153
153
|
color: string;
|
@@ -47,7 +47,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
47
47
|
}>, "strip", z.ZodTypeAny, {
|
48
48
|
id: string;
|
49
49
|
name: string;
|
50
|
-
type: "
|
50
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
51
51
|
group: {
|
52
52
|
id: string;
|
53
53
|
color: string;
|
@@ -56,7 +56,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
56
56
|
}, {
|
57
57
|
id: string;
|
58
58
|
name: string;
|
59
|
-
type: "
|
59
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
60
60
|
group: {
|
61
61
|
id: string;
|
62
62
|
color: string;
|
@@ -78,14 +78,14 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
78
78
|
}, "strip", z.ZodTypeAny, {
|
79
79
|
id: string;
|
80
80
|
name: string;
|
81
|
-
type: "
|
81
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
82
82
|
created_at: Date;
|
83
83
|
updated_at: Date;
|
84
84
|
groupId: string;
|
85
85
|
}, {
|
86
86
|
id: string;
|
87
87
|
name: string;
|
88
|
-
type: "
|
88
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
89
89
|
created_at: Date;
|
90
90
|
updated_at: Date;
|
91
91
|
groupId: string;
|
@@ -101,7 +101,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
101
101
|
globalFilter: {
|
102
102
|
id: string;
|
103
103
|
name: string;
|
104
|
-
type: "
|
104
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
105
105
|
group: {
|
106
106
|
id: string;
|
107
107
|
color: string;
|
@@ -111,7 +111,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
111
111
|
tags: {
|
112
112
|
id: string;
|
113
113
|
name: string;
|
114
|
-
type: "
|
114
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
115
115
|
created_at: Date;
|
116
116
|
updated_at: Date;
|
117
117
|
groupId: string;
|
@@ -125,7 +125,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
125
125
|
globalFilter: {
|
126
126
|
id: string;
|
127
127
|
name: string;
|
128
|
-
type: "
|
128
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
129
129
|
group: {
|
130
130
|
id: string;
|
131
131
|
color: string;
|
@@ -135,7 +135,7 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
|
|
135
135
|
tags: {
|
136
136
|
id: string;
|
137
137
|
name: string;
|
138
|
-
type: "
|
138
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
139
139
|
created_at: Date;
|
140
140
|
updated_at: Date;
|
141
141
|
groupId: string;
|
@@ -182,7 +182,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
182
182
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
183
183
|
id: string;
|
184
184
|
name: string;
|
185
|
-
type: "
|
185
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
186
186
|
group: {
|
187
187
|
id: string;
|
188
188
|
color: string;
|
@@ -191,7 +191,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
191
191
|
}, {
|
192
192
|
id: string;
|
193
193
|
name: string;
|
194
|
-
type: "
|
194
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
195
195
|
group: {
|
196
196
|
id: string;
|
197
197
|
color: string;
|
@@ -213,14 +213,14 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
213
213
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
214
214
|
id: string;
|
215
215
|
name: string;
|
216
|
-
type: "
|
216
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
217
217
|
created_at: string;
|
218
218
|
updated_at: string;
|
219
219
|
groupId: string;
|
220
220
|
}, {
|
221
221
|
id: string;
|
222
222
|
name: string;
|
223
|
-
type: "
|
223
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
224
224
|
created_at: string;
|
225
225
|
updated_at: string;
|
226
226
|
groupId: string;
|
@@ -236,7 +236,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
236
236
|
globalFilter: {
|
237
237
|
id: string;
|
238
238
|
name: string;
|
239
|
-
type: "
|
239
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
240
240
|
group: {
|
241
241
|
id: string;
|
242
242
|
color: string;
|
@@ -246,7 +246,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
246
246
|
tags: {
|
247
247
|
id: string;
|
248
248
|
name: string;
|
249
|
-
type: "
|
249
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
250
250
|
created_at: string;
|
251
251
|
updated_at: string;
|
252
252
|
groupId: string;
|
@@ -260,7 +260,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
260
260
|
globalFilter: {
|
261
261
|
id: string;
|
262
262
|
name: string;
|
263
|
-
type: "
|
263
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
264
264
|
group: {
|
265
265
|
id: string;
|
266
266
|
color: string;
|
@@ -270,7 +270,7 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
|
|
270
270
|
tags: {
|
271
271
|
id: string;
|
272
272
|
name: string;
|
273
|
-
type: "
|
273
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
274
274
|
created_at: string;
|
275
275
|
updated_at: string;
|
276
276
|
groupId: string;
|
@@ -52,14 +52,14 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
53
53
|
id: string;
|
54
54
|
name: string;
|
55
|
-
type: "
|
55
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
56
56
|
created_at: Date;
|
57
57
|
updated_at: Date;
|
58
58
|
groupId: string;
|
59
59
|
}, {
|
60
60
|
id: string;
|
61
61
|
name: string;
|
62
|
-
type: "
|
62
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
63
63
|
created_at: Date;
|
64
64
|
updated_at: Date;
|
65
65
|
groupId: string;
|
@@ -76,7 +76,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
76
76
|
globalFilter: {
|
77
77
|
id: string;
|
78
78
|
name: string;
|
79
|
-
type: "
|
79
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
80
80
|
created_at: Date;
|
81
81
|
updated_at: Date;
|
82
82
|
groupId: string;
|
@@ -91,7 +91,7 @@ export declare const updateGlobalFilterResponseSchema: z.ZodObject<z.objectUtil.
|
|
91
91
|
globalFilter: {
|
92
92
|
id: string;
|
93
93
|
name: string;
|
94
|
-
type: "
|
94
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
95
95
|
created_at: Date;
|
96
96
|
updated_at: Date;
|
97
97
|
groupId: string;
|
@@ -129,14 +129,14 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
129
129
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
130
130
|
id: string;
|
131
131
|
name: string;
|
132
|
-
type: "
|
132
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
133
133
|
created_at: string;
|
134
134
|
updated_at: string;
|
135
135
|
groupId: string;
|
136
136
|
}, {
|
137
137
|
id: string;
|
138
138
|
name: string;
|
139
|
-
type: "
|
139
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
140
140
|
created_at: string;
|
141
141
|
updated_at: string;
|
142
142
|
groupId: string;
|
@@ -153,7 +153,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
153
153
|
globalFilter: {
|
154
154
|
id: string;
|
155
155
|
name: string;
|
156
|
-
type: "
|
156
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
157
157
|
created_at: string;
|
158
158
|
updated_at: string;
|
159
159
|
groupId: string;
|
@@ -168,7 +168,7 @@ declare const UpdateGlobalFilterResponseDto_base: import("@anatine/zod-nestjs").
|
|
168
168
|
globalFilter: {
|
169
169
|
id: string;
|
170
170
|
name: string;
|
171
|
-
type: "
|
171
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
|
172
172
|
created_at: string;
|
173
173
|
updated_at: string;
|
174
174
|
groupId: string;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
/// <reference types="node" />
|
1
2
|
import { z } from 'zod';
|
2
3
|
export declare const downloadAllTablesSchema: z.ZodObject<{
|
3
4
|
password: z.ZodString;
|
@@ -15,8 +16,8 @@ declare const DownloadAllTablesDto_base: import("@anatine/zod-nestjs").ZodDtoSta
|
|
15
16
|
}>>;
|
16
17
|
export declare class DownloadAllTablesDto extends DownloadAllTablesDto_base {
|
17
18
|
}
|
18
|
-
export declare const downloadAllTablesResponseSchema: z.ZodType<Buffer
|
19
|
-
declare const DownloadAllTablesResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer
|
19
|
+
export declare const downloadAllTablesResponseSchema: z.ZodType<Buffer, z.ZodTypeDef, Buffer>;
|
20
|
+
declare const DownloadAllTablesResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodType<Buffer, z.ZodTypeDef, Buffer>>;
|
20
21
|
export declare class DownloadAllTablesResponseDto extends DownloadAllTablesResponseDto_base {
|
21
22
|
}
|
22
23
|
export {};
|
@@ -52,11 +52,11 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
52
52
|
}>;
|
53
53
|
price: z.ZodNullable<z.ZodNumber>;
|
54
54
|
}, "id">, "strip", z.ZodTypeAny, {
|
55
|
-
type: "
|
55
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
56
56
|
amount: number | null;
|
57
57
|
price: number | null;
|
58
58
|
}, {
|
59
|
-
type: "
|
59
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
60
60
|
amount: number | null;
|
61
61
|
price: number | null;
|
62
62
|
}>, "many">;
|
@@ -69,7 +69,7 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
69
69
|
folderId: string | null;
|
70
70
|
tagsId: string[];
|
71
71
|
eventTickets: {
|
72
|
-
type: "
|
72
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
73
73
|
amount: number | null;
|
74
74
|
price: number | null;
|
75
75
|
}[];
|
@@ -89,7 +89,7 @@ export declare const createEventSchema: z.ZodObject<z.objectUtil.extendShape<Pic
|
|
89
89
|
folderId: string | null;
|
90
90
|
tagsId: string[];
|
91
91
|
eventTickets: {
|
92
|
-
type: "
|
92
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
93
93
|
amount: number | null;
|
94
94
|
price: number | null;
|
95
95
|
}[];
|
@@ -137,11 +137,11 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
137
137
|
amount: z.ZodNullable<z.ZodNumber>;
|
138
138
|
price: z.ZodNullable<z.ZodNumber>;
|
139
139
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
140
|
-
type: "
|
140
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
141
141
|
amount: number | null;
|
142
142
|
price: number | null;
|
143
143
|
}, {
|
144
|
-
type: "
|
144
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
145
145
|
amount: number | null;
|
146
146
|
price: number | null;
|
147
147
|
}>, "many">;
|
@@ -154,7 +154,7 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
154
154
|
folderId: string | null;
|
155
155
|
tagsId: string[];
|
156
156
|
eventTickets: {
|
157
|
-
type: "
|
157
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
158
158
|
amount: number | null;
|
159
159
|
price: number | null;
|
160
160
|
}[];
|
@@ -174,7 +174,7 @@ declare const CreateEventDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.
|
|
174
174
|
folderId: string | null;
|
175
175
|
tagsId: string[];
|
176
176
|
eventTickets: {
|
177
|
-
type: "
|
177
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
178
178
|
amount: number | null;
|
179
179
|
price: number | null;
|
180
180
|
}[];
|
@@ -10,12 +10,12 @@ export declare const eventTicketsSchema: z.ZodObject<{
|
|
10
10
|
price: z.ZodNullable<z.ZodNumber>;
|
11
11
|
}, "strip", z.ZodTypeAny, {
|
12
12
|
id: string;
|
13
|
-
type: "
|
13
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
14
14
|
amount: number | null;
|
15
15
|
price: number | null;
|
16
16
|
}, {
|
17
17
|
id: string;
|
18
|
-
type: "
|
18
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
19
19
|
amount: number | null;
|
20
20
|
price: number | null;
|
21
21
|
}>;
|
@@ -26,12 +26,12 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
26
26
|
price: z.ZodNullable<z.ZodNumber>;
|
27
27
|
}, "strip", z.ZodTypeAny, {
|
28
28
|
id: string;
|
29
|
-
type: "
|
29
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
30
30
|
amount: number | null;
|
31
31
|
price: number | null;
|
32
32
|
}, {
|
33
33
|
id: string;
|
34
|
-
type: "
|
34
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
35
35
|
amount: number | null;
|
36
36
|
price: number | null;
|
37
37
|
}>, "many">;
|
@@ -51,7 +51,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
51
51
|
supraEventId: string | null;
|
52
52
|
eventTickets: {
|
53
53
|
id: string;
|
54
|
-
type: "
|
54
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
55
55
|
amount: number | null;
|
56
56
|
price: number | null;
|
57
57
|
}[];
|
@@ -71,7 +71,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
71
71
|
supraEventId: string | null;
|
72
72
|
eventTickets: {
|
73
73
|
id: string;
|
74
|
-
type: "
|
74
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
75
75
|
amount: number | null;
|
76
76
|
price: number | null;
|
77
77
|
}[];
|
@@ -93,7 +93,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
93
93
|
supraEventId: string | null;
|
94
94
|
eventTickets: {
|
95
95
|
id: string;
|
96
|
-
type: "
|
96
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
97
97
|
amount: number | null;
|
98
98
|
price: number | null;
|
99
99
|
}[];
|
@@ -115,7 +115,7 @@ export declare const getActiveEventsResponseSchema: z.ZodObject<{
|
|
115
115
|
supraEventId: string | null;
|
116
116
|
eventTickets: {
|
117
117
|
id: string;
|
118
|
-
type: "
|
118
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
119
119
|
amount: number | null;
|
120
120
|
price: number | null;
|
121
121
|
}[];
|
@@ -147,12 +147,12 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
147
147
|
price: z.ZodNullable<z.ZodNumber>;
|
148
148
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
149
149
|
id: string;
|
150
|
-
type: "
|
150
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
151
151
|
amount: number | null;
|
152
152
|
price: number | null;
|
153
153
|
}, {
|
154
154
|
id: string;
|
155
|
-
type: "
|
155
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
156
156
|
amount: number | null;
|
157
157
|
price: number | null;
|
158
158
|
}>, "many">;
|
@@ -172,7 +172,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
172
172
|
supraEventId: string | null;
|
173
173
|
eventTickets: {
|
174
174
|
id: string;
|
175
|
-
type: "
|
175
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
176
176
|
amount: number | null;
|
177
177
|
price: number | null;
|
178
178
|
}[];
|
@@ -192,7 +192,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
192
192
|
supraEventId: string | null;
|
193
193
|
eventTickets: {
|
194
194
|
id: string;
|
195
|
-
type: "
|
195
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
196
196
|
amount: number | null;
|
197
197
|
price: number | null;
|
198
198
|
}[];
|
@@ -214,7 +214,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
214
214
|
supraEventId: string | null;
|
215
215
|
eventTickets: {
|
216
216
|
id: string;
|
217
|
-
type: "
|
217
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
218
218
|
amount: number | null;
|
219
219
|
price: number | null;
|
220
220
|
}[];
|
@@ -236,7 +236,7 @@ declare const GetActiveEventsResponseDto_base: import("@anatine/zod-nestjs").Zod
|
|
236
236
|
supraEventId: string | null;
|
237
237
|
eventTickets: {
|
238
238
|
id: string;
|
239
|
-
type: "
|
239
|
+
type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
|
240
240
|
amount: number | null;
|
241
241
|
price: number | null;
|
242
242
|
}[];
|