@sortipei/api-contracts 0.1.16 → 0.1.17
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/V1/api/event.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { z } from 'zod';
|
|
|
2
2
|
export declare const EventDTOSchema: z.ZodObject<{
|
|
3
3
|
adress: z.ZodString;
|
|
4
4
|
capacity: z.ZodNullable<z.ZodNumber>;
|
|
5
|
-
category: z.ZodNativeEnum<typeof import(
|
|
5
|
+
category: z.ZodNativeEnum<typeof import("../../shared").Category>;
|
|
6
6
|
description: z.ZodString;
|
|
7
7
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
8
8
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -13,9 +13,10 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
13
13
|
isPromoted: z.ZodBoolean;
|
|
14
14
|
link: z.ZodNullable<z.ZodString>;
|
|
15
15
|
price: z.ZodNullable<z.ZodNumber>;
|
|
16
|
-
region: z.ZodNativeEnum<typeof import(
|
|
16
|
+
region: z.ZodNativeEnum<typeof import("../../shared").Region>;
|
|
17
17
|
startTime: z.ZodString;
|
|
18
18
|
title: z.ZodString;
|
|
19
|
+
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
19
20
|
organizers: z.ZodArray<z.ZodObject<{
|
|
20
21
|
id: z.ZodBranded<z.ZodString, "OrganizerId">;
|
|
21
22
|
name: z.ZodString;
|
|
@@ -32,7 +33,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
32
33
|
}, "strip", z.ZodTypeAny, {
|
|
33
34
|
adress: string;
|
|
34
35
|
capacity: number | null;
|
|
35
|
-
category: import(
|
|
36
|
+
category: import("../../shared").Category;
|
|
36
37
|
description: string;
|
|
37
38
|
finishTime: string | null;
|
|
38
39
|
hasHandicapAccess: boolean | null;
|
|
@@ -43,9 +44,10 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
43
44
|
isPromoted: boolean;
|
|
44
45
|
link: string | null;
|
|
45
46
|
price: number | null;
|
|
46
|
-
region: import(
|
|
47
|
+
region: import("../../shared").Region;
|
|
47
48
|
startTime: string;
|
|
48
49
|
title: string;
|
|
50
|
+
thumbnailUrl: string | null;
|
|
49
51
|
organizers: {
|
|
50
52
|
id: string & z.BRAND<"OrganizerId">;
|
|
51
53
|
name: string;
|
|
@@ -54,7 +56,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
54
56
|
}, {
|
|
55
57
|
adress: string;
|
|
56
58
|
capacity: number | null;
|
|
57
|
-
category: import(
|
|
59
|
+
category: import("../../shared").Category;
|
|
58
60
|
description: string;
|
|
59
61
|
finishTime: string | null;
|
|
60
62
|
hasHandicapAccess: boolean | null;
|
|
@@ -65,9 +67,10 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
65
67
|
isPromoted: boolean;
|
|
66
68
|
link: string | null;
|
|
67
69
|
price: number | null;
|
|
68
|
-
region: import(
|
|
70
|
+
region: import("../../shared").Region;
|
|
69
71
|
startTime: string;
|
|
70
72
|
title: string;
|
|
73
|
+
thumbnailUrl: string | null;
|
|
71
74
|
organizers: {
|
|
72
75
|
id: string;
|
|
73
76
|
name: string;
|
|
@@ -77,7 +80,7 @@ export declare const EventDTOSchema: z.ZodObject<{
|
|
|
77
80
|
export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
78
81
|
adress: z.ZodString;
|
|
79
82
|
capacity: z.ZodNullable<z.ZodNumber>;
|
|
80
|
-
category: z.ZodNativeEnum<typeof import(
|
|
83
|
+
category: z.ZodNativeEnum<typeof import("../../shared").Category>;
|
|
81
84
|
description: z.ZodString;
|
|
82
85
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
83
86
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -88,13 +91,14 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
88
91
|
link: z.ZodNullable<z.ZodString>;
|
|
89
92
|
organizersIds: z.ZodArray<z.ZodBranded<z.ZodString, "OrganizerId">, "many">;
|
|
90
93
|
price: z.ZodNullable<z.ZodNumber>;
|
|
91
|
-
region: z.ZodNativeEnum<typeof import(
|
|
94
|
+
region: z.ZodNativeEnum<typeof import("../../shared").Region>;
|
|
92
95
|
startTime: z.ZodString;
|
|
93
96
|
title: z.ZodString;
|
|
97
|
+
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
94
98
|
}, "strip", z.ZodTypeAny, {
|
|
95
99
|
adress: string;
|
|
96
100
|
capacity: number | null;
|
|
97
|
-
category: import(
|
|
101
|
+
category: import("../../shared").Category;
|
|
98
102
|
description: string;
|
|
99
103
|
finishTime: string | null;
|
|
100
104
|
hasHandicapAccess: boolean | null;
|
|
@@ -104,14 +108,15 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
104
108
|
isDisplayed: boolean;
|
|
105
109
|
link: string | null;
|
|
106
110
|
price: number | null;
|
|
107
|
-
region: import(
|
|
111
|
+
region: import("../../shared").Region;
|
|
108
112
|
startTime: string;
|
|
109
113
|
title: string;
|
|
114
|
+
thumbnailUrl: string | null;
|
|
110
115
|
organizersIds: (string & z.BRAND<"OrganizerId">)[];
|
|
111
116
|
}, {
|
|
112
117
|
adress: string;
|
|
113
118
|
capacity: number | null;
|
|
114
|
-
category: import(
|
|
119
|
+
category: import("../../shared").Category;
|
|
115
120
|
description: string;
|
|
116
121
|
finishTime: string | null;
|
|
117
122
|
hasHandicapAccess: boolean | null;
|
|
@@ -121,15 +126,16 @@ export declare const CreateEventDTOSchema: z.ZodObject<{
|
|
|
121
126
|
isDisplayed: boolean;
|
|
122
127
|
link: string | null;
|
|
123
128
|
price: number | null;
|
|
124
|
-
region: import(
|
|
129
|
+
region: import("../../shared").Region;
|
|
125
130
|
startTime: string;
|
|
126
131
|
title: string;
|
|
132
|
+
thumbnailUrl: string | null;
|
|
127
133
|
organizersIds: string[];
|
|
128
134
|
}>;
|
|
129
135
|
export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
130
136
|
adress: z.ZodString;
|
|
131
137
|
capacity: z.ZodNullable<z.ZodNumber>;
|
|
132
|
-
category: z.ZodNativeEnum<typeof import(
|
|
138
|
+
category: z.ZodNativeEnum<typeof import("../../shared").Category>;
|
|
133
139
|
description: z.ZodString;
|
|
134
140
|
finishTime: z.ZodNullable<z.ZodString>;
|
|
135
141
|
hasHandicapAccess: z.ZodNullable<z.ZodBoolean>;
|
|
@@ -140,13 +146,14 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
140
146
|
link: z.ZodNullable<z.ZodString>;
|
|
141
147
|
organizersIds: z.ZodArray<z.ZodBranded<z.ZodString, "OrganizerId">, "many">;
|
|
142
148
|
price: z.ZodNullable<z.ZodNumber>;
|
|
143
|
-
region: z.ZodNativeEnum<typeof import(
|
|
149
|
+
region: z.ZodNativeEnum<typeof import("../../shared").Region>;
|
|
144
150
|
startTime: z.ZodString;
|
|
145
151
|
title: z.ZodString;
|
|
152
|
+
thumbnailUrl: z.ZodNullable<z.ZodString>;
|
|
146
153
|
}, "id">, "strip", z.ZodTypeAny, {
|
|
147
154
|
adress: string;
|
|
148
155
|
capacity: number | null;
|
|
149
|
-
category: import(
|
|
156
|
+
category: import("../../shared").Category;
|
|
150
157
|
description: string;
|
|
151
158
|
finishTime: string | null;
|
|
152
159
|
hasHandicapAccess: boolean | null;
|
|
@@ -155,14 +162,15 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
155
162
|
isDisplayed: boolean;
|
|
156
163
|
link: string | null;
|
|
157
164
|
price: number | null;
|
|
158
|
-
region: import(
|
|
165
|
+
region: import("../../shared").Region;
|
|
159
166
|
startTime: string;
|
|
160
167
|
title: string;
|
|
168
|
+
thumbnailUrl: string | null;
|
|
161
169
|
organizersIds: (string & z.BRAND<"OrganizerId">)[];
|
|
162
170
|
}, {
|
|
163
171
|
adress: string;
|
|
164
172
|
capacity: number | null;
|
|
165
|
-
category: import(
|
|
173
|
+
category: import("../../shared").Category;
|
|
166
174
|
description: string;
|
|
167
175
|
finishTime: string | null;
|
|
168
176
|
hasHandicapAccess: boolean | null;
|
|
@@ -171,9 +179,10 @@ export declare const UpdateEventDTOSchema: z.ZodObject<Omit<{
|
|
|
171
179
|
isDisplayed: boolean;
|
|
172
180
|
link: string | null;
|
|
173
181
|
price: number | null;
|
|
174
|
-
region: import(
|
|
182
|
+
region: import("../../shared").Region;
|
|
175
183
|
startTime: string;
|
|
176
184
|
title: string;
|
|
185
|
+
thumbnailUrl: string | null;
|
|
177
186
|
organizersIds: string[];
|
|
178
187
|
}>;
|
|
179
188
|
export declare const DisplayEventDTOSchema: z.ZodObject<{
|
|
@@ -216,7 +225,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
216
225
|
partialEventState: z.ZodObject<{
|
|
217
226
|
adress: z.ZodOptional<z.ZodString>;
|
|
218
227
|
capacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
219
|
-
category: z.ZodOptional<z.ZodNativeEnum<typeof import(
|
|
228
|
+
category: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Category>>;
|
|
220
229
|
description: z.ZodOptional<z.ZodString>;
|
|
221
230
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
222
231
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -227,9 +236,10 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
227
236
|
isPromoted: z.ZodOptional<z.ZodBoolean>;
|
|
228
237
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
229
238
|
price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
230
|
-
region: z.ZodOptional<z.ZodNativeEnum<typeof import(
|
|
239
|
+
region: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Region>>;
|
|
231
240
|
startTime: z.ZodOptional<z.ZodString>;
|
|
232
241
|
title: z.ZodOptional<z.ZodString>;
|
|
242
|
+
thumbnailUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
233
243
|
organizers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
234
244
|
id: z.ZodBranded<z.ZodString, "OrganizerId">;
|
|
235
245
|
name: z.ZodString;
|
|
@@ -246,7 +256,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
246
256
|
}, "strip", z.ZodTypeAny, {
|
|
247
257
|
adress?: string | undefined;
|
|
248
258
|
capacity?: number | null | undefined;
|
|
249
|
-
category?: import(
|
|
259
|
+
category?: import("../../shared").Category | undefined;
|
|
250
260
|
description?: string | undefined;
|
|
251
261
|
finishTime?: string | null | undefined;
|
|
252
262
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -257,9 +267,10 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
257
267
|
isPromoted?: boolean | undefined;
|
|
258
268
|
link?: string | null | undefined;
|
|
259
269
|
price?: number | null | undefined;
|
|
260
|
-
region?: import(
|
|
270
|
+
region?: import("../../shared").Region | undefined;
|
|
261
271
|
startTime?: string | undefined;
|
|
262
272
|
title?: string | undefined;
|
|
273
|
+
thumbnailUrl?: string | null | undefined;
|
|
263
274
|
organizers?: {
|
|
264
275
|
id: string & z.BRAND<"OrganizerId">;
|
|
265
276
|
name: string;
|
|
@@ -268,7 +279,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
268
279
|
}, {
|
|
269
280
|
adress?: string | undefined;
|
|
270
281
|
capacity?: number | null | undefined;
|
|
271
|
-
category?: import(
|
|
282
|
+
category?: import("../../shared").Category | undefined;
|
|
272
283
|
description?: string | undefined;
|
|
273
284
|
finishTime?: string | null | undefined;
|
|
274
285
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -279,9 +290,10 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
279
290
|
isPromoted?: boolean | undefined;
|
|
280
291
|
link?: string | null | undefined;
|
|
281
292
|
price?: number | null | undefined;
|
|
282
|
-
region?: import(
|
|
293
|
+
region?: import("../../shared").Region | undefined;
|
|
283
294
|
startTime?: string | undefined;
|
|
284
295
|
title?: string | undefined;
|
|
296
|
+
thumbnailUrl?: string | null | undefined;
|
|
285
297
|
organizers?: {
|
|
286
298
|
id: string;
|
|
287
299
|
name: string;
|
|
@@ -297,7 +309,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
297
309
|
partialEventState: {
|
|
298
310
|
adress?: string | undefined;
|
|
299
311
|
capacity?: number | null | undefined;
|
|
300
|
-
category?: import(
|
|
312
|
+
category?: import("../../shared").Category | undefined;
|
|
301
313
|
description?: string | undefined;
|
|
302
314
|
finishTime?: string | null | undefined;
|
|
303
315
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -308,9 +320,10 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
308
320
|
isPromoted?: boolean | undefined;
|
|
309
321
|
link?: string | null | undefined;
|
|
310
322
|
price?: number | null | undefined;
|
|
311
|
-
region?: import(
|
|
323
|
+
region?: import("../../shared").Region | undefined;
|
|
312
324
|
startTime?: string | undefined;
|
|
313
325
|
title?: string | undefined;
|
|
326
|
+
thumbnailUrl?: string | null | undefined;
|
|
314
327
|
organizers?: {
|
|
315
328
|
id: string & z.BRAND<"OrganizerId">;
|
|
316
329
|
name: string;
|
|
@@ -326,7 +339,7 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
326
339
|
partialEventState: {
|
|
327
340
|
adress?: string | undefined;
|
|
328
341
|
capacity?: number | null | undefined;
|
|
329
|
-
category?: import(
|
|
342
|
+
category?: import("../../shared").Category | undefined;
|
|
330
343
|
description?: string | undefined;
|
|
331
344
|
finishTime?: string | null | undefined;
|
|
332
345
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -337,9 +350,10 @@ export declare const ImportDTOSchema: z.ZodObject<{
|
|
|
337
350
|
isPromoted?: boolean | undefined;
|
|
338
351
|
link?: string | null | undefined;
|
|
339
352
|
price?: number | null | undefined;
|
|
340
|
-
region?: import(
|
|
353
|
+
region?: import("../../shared").Region | undefined;
|
|
341
354
|
startTime?: string | undefined;
|
|
342
355
|
title?: string | undefined;
|
|
356
|
+
thumbnailUrl?: string | null | undefined;
|
|
343
357
|
organizers?: {
|
|
344
358
|
id: string;
|
|
345
359
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../src/V1/api/event.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../src/V1/api/event.ts"],"names":[],"mappings":"AASA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BzB,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB/B,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE/B,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;EAEhC,CAAC;AAEH,eAAO,MAAM,qBAAqB;;;;;;EAEhC,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AACpE,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAEtD,eAAO,MAAM,WAAW;;;;;;;;;;;;;CAavB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO1B,CAAC;AAEH,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC"}
|
|
@@ -3,7 +3,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
3
3
|
partialEventState: z.ZodObject<{
|
|
4
4
|
adress: z.ZodOptional<z.ZodString>;
|
|
5
5
|
capacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6
|
-
category: z.ZodOptional<z.ZodNativeEnum<typeof import(
|
|
6
|
+
category: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Category>>;
|
|
7
7
|
description: z.ZodOptional<z.ZodString>;
|
|
8
8
|
finishTime: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9
9
|
hasHandicapAccess: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
@@ -14,9 +14,10 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
14
14
|
isPromoted: z.ZodOptional<z.ZodBoolean>;
|
|
15
15
|
link: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
16
|
price: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
|
-
region: z.ZodOptional<z.ZodNativeEnum<typeof import(
|
|
17
|
+
region: z.ZodOptional<z.ZodNativeEnum<typeof import("../../shared").Region>>;
|
|
18
18
|
startTime: z.ZodOptional<z.ZodString>;
|
|
19
19
|
title: z.ZodOptional<z.ZodString>;
|
|
20
|
+
thumbnailUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
21
|
organizers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21
22
|
id: z.ZodBranded<z.ZodString, "OrganizerId">;
|
|
22
23
|
name: z.ZodString;
|
|
@@ -33,7 +34,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
33
34
|
}, "strip", z.ZodTypeAny, {
|
|
34
35
|
adress?: string | undefined;
|
|
35
36
|
capacity?: number | null | undefined;
|
|
36
|
-
category?: import(
|
|
37
|
+
category?: import("../../shared").Category | undefined;
|
|
37
38
|
description?: string | undefined;
|
|
38
39
|
finishTime?: string | null | undefined;
|
|
39
40
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -44,9 +45,10 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
44
45
|
isPromoted?: boolean | undefined;
|
|
45
46
|
link?: string | null | undefined;
|
|
46
47
|
price?: number | null | undefined;
|
|
47
|
-
region?: import(
|
|
48
|
+
region?: import("../../shared").Region | undefined;
|
|
48
49
|
startTime?: string | undefined;
|
|
49
50
|
title?: string | undefined;
|
|
51
|
+
thumbnailUrl?: string | null | undefined;
|
|
50
52
|
organizers?: {
|
|
51
53
|
id: string & z.BRAND<"OrganizerId">;
|
|
52
54
|
name: string;
|
|
@@ -55,7 +57,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
55
57
|
}, {
|
|
56
58
|
adress?: string | undefined;
|
|
57
59
|
capacity?: number | null | undefined;
|
|
58
|
-
category?: import(
|
|
60
|
+
category?: import("../../shared").Category | undefined;
|
|
59
61
|
description?: string | undefined;
|
|
60
62
|
finishTime?: string | null | undefined;
|
|
61
63
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -66,9 +68,10 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
66
68
|
isPromoted?: boolean | undefined;
|
|
67
69
|
link?: string | null | undefined;
|
|
68
70
|
price?: number | null | undefined;
|
|
69
|
-
region?: import(
|
|
71
|
+
region?: import("../../shared").Region | undefined;
|
|
70
72
|
startTime?: string | undefined;
|
|
71
73
|
title?: string | undefined;
|
|
74
|
+
thumbnailUrl?: string | null | undefined;
|
|
72
75
|
organizers?: {
|
|
73
76
|
id: string;
|
|
74
77
|
name: string;
|
|
@@ -84,7 +87,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
84
87
|
partialEventState: {
|
|
85
88
|
adress?: string | undefined;
|
|
86
89
|
capacity?: number | null | undefined;
|
|
87
|
-
category?: import(
|
|
90
|
+
category?: import("../../shared").Category | undefined;
|
|
88
91
|
description?: string | undefined;
|
|
89
92
|
finishTime?: string | null | undefined;
|
|
90
93
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -95,9 +98,10 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
95
98
|
isPromoted?: boolean | undefined;
|
|
96
99
|
link?: string | null | undefined;
|
|
97
100
|
price?: number | null | undefined;
|
|
98
|
-
region?: import(
|
|
101
|
+
region?: import("../../shared").Region | undefined;
|
|
99
102
|
startTime?: string | undefined;
|
|
100
103
|
title?: string | undefined;
|
|
104
|
+
thumbnailUrl?: string | null | undefined;
|
|
101
105
|
organizers?: {
|
|
102
106
|
id: string & z.BRAND<"OrganizerId">;
|
|
103
107
|
name: string;
|
|
@@ -112,7 +116,7 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
112
116
|
partialEventState: {
|
|
113
117
|
adress?: string | undefined;
|
|
114
118
|
capacity?: number | null | undefined;
|
|
115
|
-
category?: import(
|
|
119
|
+
category?: import("../../shared").Category | undefined;
|
|
116
120
|
description?: string | undefined;
|
|
117
121
|
finishTime?: string | null | undefined;
|
|
118
122
|
hasHandicapAccess?: boolean | null | undefined;
|
|
@@ -123,9 +127,10 @@ export declare const CreatePartialImportedEventDTOSchema: z.ZodObject<{
|
|
|
123
127
|
isPromoted?: boolean | undefined;
|
|
124
128
|
link?: string | null | undefined;
|
|
125
129
|
price?: number | null | undefined;
|
|
126
|
-
region?: import(
|
|
130
|
+
region?: import("../../shared").Region | undefined;
|
|
127
131
|
startTime?: string | undefined;
|
|
128
132
|
title?: string | undefined;
|
|
133
|
+
thumbnailUrl?: string | null | undefined;
|
|
129
134
|
organizers?: {
|
|
130
135
|
id: string;
|
|
131
136
|
name: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"partial-imported-event.d.ts","sourceRoot":"","sources":["../../../src/V1/external/partial-imported-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,mCAAmC
|
|
1
|
+
{"version":3,"file":"partial-imported-event.d.ts","sourceRoot":"","sources":["../../../src/V1/external/partial-imported-event.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM9C,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mCAAmC,CAAC,CAAC"}
|