@zyacreatives/shared 2.5.55 → 2.5.56
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/schemas/project.d.ts +444 -349
- package/dist/schemas/project.js +144 -98
- package/dist/schemas/user.d.ts +14 -14
- package/package.json +1 -1
- package/src/schemas/project.ts +258 -137
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
import { z } from "@hono/zod-openapi";
|
|
2
2
|
import { CommentEntitySchema } from "./comment";
|
|
3
3
|
import { LikeEntitySchema } from "./like";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
/**
|
|
5
|
+
* --------------------------------
|
|
6
|
+
* SHAPE
|
|
7
|
+
* --------------------------------
|
|
8
|
+
*/
|
|
9
|
+
declare const ProjectShape: z.ZodObject<{
|
|
7
10
|
title: z.ZodString;
|
|
8
11
|
description: z.ZodOptional<z.ZodString>;
|
|
9
12
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -17,17 +20,83 @@ export declare const ProjectEntitySchema: z.ZodObject<{
|
|
|
17
20
|
readonly ADMIN: "ADMIN";
|
|
18
21
|
}>;
|
|
19
22
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
23
|
+
clientType: z.ZodOptional<z.ZodEnum<{
|
|
24
|
+
readonly CREATIVE: "CREATIVE";
|
|
25
|
+
readonly BRAND: "BRAND";
|
|
26
|
+
readonly NONE: "NONE";
|
|
27
|
+
}>>;
|
|
28
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
20
29
|
status: z.ZodEnum<{
|
|
21
30
|
readonly ACTIVE: "ACTIVE";
|
|
22
31
|
readonly DRAFT: "DRAFT";
|
|
23
32
|
readonly ARCHIVED: "ARCHIVED";
|
|
24
33
|
}>;
|
|
34
|
+
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
35
|
+
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
36
|
+
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
37
|
+
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
38
|
+
readonly IDEA: "Idea";
|
|
39
|
+
readonly PRE_SEED: "Pre Seed";
|
|
40
|
+
readonly MVP: "MVP";
|
|
41
|
+
readonly SEED: "Seed";
|
|
42
|
+
readonly SERIES_A: "Series A";
|
|
43
|
+
readonly SERIES_B: "Series B";
|
|
44
|
+
readonly SERIES_C: "Series C";
|
|
45
|
+
readonly GROWTH: "Growth";
|
|
46
|
+
readonly EXIT: "Exit";
|
|
47
|
+
}>>;
|
|
48
|
+
capitalLookingToRaise: z.ZodNumber;
|
|
49
|
+
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
50
|
+
readonly USD: "USD (United States Dollar)";
|
|
51
|
+
readonly EUR: "EUR (Euro)";
|
|
52
|
+
readonly GBP: "GBP (British Pound Sterling)";
|
|
53
|
+
readonly NGN: "NGN (Nigerian Naira)";
|
|
54
|
+
readonly CAD: "CAD (Canadian Dollar)";
|
|
55
|
+
readonly AUD: "AUD (Australian Dollar)";
|
|
56
|
+
readonly JPY: "JPY (Japanese Yen)";
|
|
57
|
+
readonly CHF: "CHF (Swiss Franc)";
|
|
58
|
+
readonly INR: "INR (Indian Rupee)";
|
|
59
|
+
readonly ZAR: "ZAR (South African Rand)";
|
|
60
|
+
}>>;
|
|
61
|
+
currentTraction: z.ZodString;
|
|
62
|
+
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
63
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
64
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
65
|
+
}, z.core.$strip>;
|
|
66
|
+
export type ProjectShapeType = z.infer<typeof ProjectShape>;
|
|
67
|
+
/**
|
|
68
|
+
* --------------------------------
|
|
69
|
+
* BASE ENTITY
|
|
70
|
+
* --------------------------------
|
|
71
|
+
*/
|
|
72
|
+
export declare const ProjectEntitySchema: z.ZodObject<{
|
|
73
|
+
createdAt: z.ZodISODateTime;
|
|
74
|
+
updatedAt: z.ZodISODateTime;
|
|
75
|
+
version: z.ZodInt;
|
|
76
|
+
title: z.ZodString;
|
|
77
|
+
description: z.ZodOptional<z.ZodString>;
|
|
78
|
+
overview: z.ZodOptional<z.ZodString>;
|
|
79
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
80
|
+
imagePlaceholderUrl: z.ZodURL;
|
|
81
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
82
|
+
projectCreatorType: z.ZodEnum<{
|
|
83
|
+
readonly CREATIVE: "CREATIVE";
|
|
84
|
+
readonly BRAND: "BRAND";
|
|
85
|
+
readonly INVESTOR: "INVESTOR";
|
|
86
|
+
readonly ADMIN: "ADMIN";
|
|
87
|
+
}>;
|
|
88
|
+
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
25
89
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
26
90
|
readonly CREATIVE: "CREATIVE";
|
|
27
91
|
readonly BRAND: "BRAND";
|
|
28
92
|
readonly NONE: "NONE";
|
|
29
93
|
}>>;
|
|
30
94
|
clientName: z.ZodOptional<z.ZodString>;
|
|
95
|
+
status: z.ZodEnum<{
|
|
96
|
+
readonly ACTIVE: "ACTIVE";
|
|
97
|
+
readonly DRAFT: "DRAFT";
|
|
98
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
99
|
+
}>;
|
|
31
100
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
32
101
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
33
102
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -57,16 +126,21 @@ export declare const ProjectEntitySchema: z.ZodObject<{
|
|
|
57
126
|
}>>;
|
|
58
127
|
currentTraction: z.ZodString;
|
|
59
128
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
60
|
-
startDate: z.ZodOptional<z.
|
|
61
|
-
endDate: z.ZodOptional<z.
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
version: z.ZodNumber;
|
|
129
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
130
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
131
|
+
id: z.ZodCUID2;
|
|
132
|
+
userId: z.ZodCUID2;
|
|
65
133
|
}, z.core.$strip>;
|
|
66
134
|
export type ProjectEntity = z.infer<typeof ProjectEntitySchema>;
|
|
135
|
+
/**
|
|
136
|
+
* --------------------------------
|
|
137
|
+
* DERIVED ENTITIES
|
|
138
|
+
* --------------------------------
|
|
139
|
+
*/
|
|
67
140
|
export declare const ProjectWithFilesEntitySchema: z.ZodObject<{
|
|
68
|
-
|
|
69
|
-
|
|
141
|
+
createdAt: z.ZodISODateTime;
|
|
142
|
+
updatedAt: z.ZodISODateTime;
|
|
143
|
+
version: z.ZodInt;
|
|
70
144
|
title: z.ZodString;
|
|
71
145
|
description: z.ZodOptional<z.ZodString>;
|
|
72
146
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -80,17 +154,17 @@ export declare const ProjectWithFilesEntitySchema: z.ZodObject<{
|
|
|
80
154
|
readonly ADMIN: "ADMIN";
|
|
81
155
|
}>;
|
|
82
156
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
83
|
-
status: z.ZodEnum<{
|
|
84
|
-
readonly ACTIVE: "ACTIVE";
|
|
85
|
-
readonly DRAFT: "DRAFT";
|
|
86
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
87
|
-
}>;
|
|
88
157
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
89
158
|
readonly CREATIVE: "CREATIVE";
|
|
90
159
|
readonly BRAND: "BRAND";
|
|
91
160
|
readonly NONE: "NONE";
|
|
92
161
|
}>>;
|
|
93
162
|
clientName: z.ZodOptional<z.ZodString>;
|
|
163
|
+
status: z.ZodEnum<{
|
|
164
|
+
readonly ACTIVE: "ACTIVE";
|
|
165
|
+
readonly DRAFT: "DRAFT";
|
|
166
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
167
|
+
}>;
|
|
94
168
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
95
169
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
96
170
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -120,11 +194,10 @@ export declare const ProjectWithFilesEntitySchema: z.ZodObject<{
|
|
|
120
194
|
}>>;
|
|
121
195
|
currentTraction: z.ZodString;
|
|
122
196
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
123
|
-
startDate: z.ZodOptional<z.
|
|
124
|
-
endDate: z.ZodOptional<z.
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
version: z.ZodNumber;
|
|
197
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
198
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
199
|
+
id: z.ZodCUID2;
|
|
200
|
+
userId: z.ZodCUID2;
|
|
128
201
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
129
202
|
createdAt: z.ZodISODateTime;
|
|
130
203
|
updatedAt: z.ZodISODateTime;
|
|
@@ -155,8 +228,8 @@ export declare const MinimalProjectSchema: z.ZodObject<{
|
|
|
155
228
|
id: z.ZodCUID2;
|
|
156
229
|
description: z.ZodOptional<z.ZodString>;
|
|
157
230
|
title: z.ZodString;
|
|
158
|
-
startDate: z.ZodOptional<z.
|
|
159
|
-
endDate: z.ZodOptional<z.
|
|
231
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
232
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
160
233
|
imagePlaceholderUrl: z.ZodURL;
|
|
161
234
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
162
235
|
}, z.core.$strip>;
|
|
@@ -169,6 +242,203 @@ export declare const ProjectSocialGraphEntitySchema: z.ZodObject<{
|
|
|
169
242
|
}, z.core.$strip>;
|
|
170
243
|
export type ProjectSocialGraphEntity = z.infer<typeof ProjectSocialGraphEntitySchema>;
|
|
171
244
|
export type PostSocialGraphEntity = z.infer<typeof ProjectSocialGraphEntitySchema>;
|
|
245
|
+
export declare const ProjectDetailsEntitySchema: z.ZodObject<{
|
|
246
|
+
createdAt: z.ZodISODateTime;
|
|
247
|
+
updatedAt: z.ZodISODateTime;
|
|
248
|
+
version: z.ZodInt;
|
|
249
|
+
title: z.ZodString;
|
|
250
|
+
description: z.ZodOptional<z.ZodString>;
|
|
251
|
+
overview: z.ZodOptional<z.ZodString>;
|
|
252
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
253
|
+
imagePlaceholderUrl: z.ZodURL;
|
|
254
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
255
|
+
projectCreatorType: z.ZodEnum<{
|
|
256
|
+
readonly CREATIVE: "CREATIVE";
|
|
257
|
+
readonly BRAND: "BRAND";
|
|
258
|
+
readonly INVESTOR: "INVESTOR";
|
|
259
|
+
readonly ADMIN: "ADMIN";
|
|
260
|
+
}>;
|
|
261
|
+
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
262
|
+
clientType: z.ZodOptional<z.ZodEnum<{
|
|
263
|
+
readonly CREATIVE: "CREATIVE";
|
|
264
|
+
readonly BRAND: "BRAND";
|
|
265
|
+
readonly NONE: "NONE";
|
|
266
|
+
}>>;
|
|
267
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
268
|
+
status: z.ZodEnum<{
|
|
269
|
+
readonly ACTIVE: "ACTIVE";
|
|
270
|
+
readonly DRAFT: "DRAFT";
|
|
271
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
272
|
+
}>;
|
|
273
|
+
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
274
|
+
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
275
|
+
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
276
|
+
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
277
|
+
readonly IDEA: "Idea";
|
|
278
|
+
readonly PRE_SEED: "Pre Seed";
|
|
279
|
+
readonly MVP: "MVP";
|
|
280
|
+
readonly SEED: "Seed";
|
|
281
|
+
readonly SERIES_A: "Series A";
|
|
282
|
+
readonly SERIES_B: "Series B";
|
|
283
|
+
readonly SERIES_C: "Series C";
|
|
284
|
+
readonly GROWTH: "Growth";
|
|
285
|
+
readonly EXIT: "Exit";
|
|
286
|
+
}>>;
|
|
287
|
+
capitalLookingToRaise: z.ZodNumber;
|
|
288
|
+
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
289
|
+
readonly USD: "USD (United States Dollar)";
|
|
290
|
+
readonly EUR: "EUR (Euro)";
|
|
291
|
+
readonly GBP: "GBP (British Pound Sterling)";
|
|
292
|
+
readonly NGN: "NGN (Nigerian Naira)";
|
|
293
|
+
readonly CAD: "CAD (Canadian Dollar)";
|
|
294
|
+
readonly AUD: "AUD (Australian Dollar)";
|
|
295
|
+
readonly JPY: "JPY (Japanese Yen)";
|
|
296
|
+
readonly CHF: "CHF (Swiss Franc)";
|
|
297
|
+
readonly INR: "INR (Indian Rupee)";
|
|
298
|
+
readonly ZAR: "ZAR (South African Rand)";
|
|
299
|
+
}>>;
|
|
300
|
+
currentTraction: z.ZodString;
|
|
301
|
+
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
302
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
303
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
304
|
+
id: z.ZodCUID2;
|
|
305
|
+
userId: z.ZodCUID2;
|
|
306
|
+
user: z.ZodObject<{
|
|
307
|
+
email: z.ZodEmail;
|
|
308
|
+
username: z.ZodDefault<z.ZodString>;
|
|
309
|
+
id: z.ZodCUID2;
|
|
310
|
+
name: z.ZodDefault<z.ZodString>;
|
|
311
|
+
image: z.ZodDefault<z.ZodString>;
|
|
312
|
+
role: z.ZodEnum<{
|
|
313
|
+
CREATIVE: "CREATIVE";
|
|
314
|
+
BRAND: "BRAND";
|
|
315
|
+
INVESTOR: "INVESTOR";
|
|
316
|
+
ADMIN: "ADMIN";
|
|
317
|
+
}>;
|
|
318
|
+
}, z.core.$strip>;
|
|
319
|
+
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
320
|
+
createdAt: z.ZodISODateTime;
|
|
321
|
+
updatedAt: z.ZodISODateTime;
|
|
322
|
+
deletedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
323
|
+
key: z.ZodString;
|
|
324
|
+
mimeType: z.ZodString;
|
|
325
|
+
parentId: z.ZodNullable<z.ZodCUID2>;
|
|
326
|
+
parentType: z.ZodNullable<z.ZodEnum<{
|
|
327
|
+
readonly PROJECT: "PROJECT";
|
|
328
|
+
readonly USER: "USER";
|
|
329
|
+
readonly JOB: "JOB";
|
|
330
|
+
readonly POST: "POST";
|
|
331
|
+
readonly PRODUCT: "PRODUCT";
|
|
332
|
+
readonly SIGNAL: "SIGNAL";
|
|
333
|
+
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
334
|
+
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
335
|
+
readonly COMMENT: "COMMENT";
|
|
336
|
+
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
337
|
+
}>>;
|
|
338
|
+
isThumbnail: z.ZodNullable<z.ZodBoolean>;
|
|
339
|
+
order: z.ZodNumber;
|
|
340
|
+
id: z.ZodCUID2;
|
|
341
|
+
url: z.ZodURL;
|
|
342
|
+
}, z.core.$strip>>>;
|
|
343
|
+
}, z.core.$strip>;
|
|
344
|
+
export type ProjectDetailsEntity = z.infer<typeof ProjectDetailsEntitySchema>;
|
|
345
|
+
export declare const ProjectWithProjectCommentsEntitySchema: z.ZodObject<{
|
|
346
|
+
id: z.ZodCUID2;
|
|
347
|
+
description: z.ZodOptional<z.ZodString>;
|
|
348
|
+
title: z.ZodString;
|
|
349
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
350
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
351
|
+
imagePlaceholderUrl: z.ZodURL;
|
|
352
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
353
|
+
comments: z.ZodArray<z.ZodObject<{
|
|
354
|
+
commenterUsername: z.ZodOptional<z.ZodString>;
|
|
355
|
+
commenterName: z.ZodOptional<z.ZodString>;
|
|
356
|
+
commenterImageUrl: z.ZodOptional<z.ZodString>;
|
|
357
|
+
isLiked: z.ZodDefault<z.ZodBoolean>;
|
|
358
|
+
likesCount: z.ZodDefault<z.ZodInt>;
|
|
359
|
+
hasReplies: z.ZodOptional<z.ZodBoolean>;
|
|
360
|
+
createdAt: z.ZodISODateTime;
|
|
361
|
+
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
362
|
+
parentId: z.ZodCUID2;
|
|
363
|
+
parentType: z.ZodEnum<{
|
|
364
|
+
readonly PROJECT: "PROJECT";
|
|
365
|
+
readonly USER: "USER";
|
|
366
|
+
readonly JOB: "JOB";
|
|
367
|
+
readonly POST: "POST";
|
|
368
|
+
readonly PRODUCT: "PRODUCT";
|
|
369
|
+
readonly SIGNAL: "SIGNAL";
|
|
370
|
+
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
371
|
+
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
372
|
+
readonly COMMENT: "COMMENT";
|
|
373
|
+
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
374
|
+
}>;
|
|
375
|
+
content: z.ZodString;
|
|
376
|
+
parentCommentId: z.ZodOptional<z.ZodCUID2>;
|
|
377
|
+
replyToId: z.ZodNullable<z.ZodOptional<z.ZodCUID2>>;
|
|
378
|
+
id: z.ZodCUID2;
|
|
379
|
+
userId: z.ZodCUID2;
|
|
380
|
+
}, z.core.$strip>>;
|
|
381
|
+
}, z.core.$strip>;
|
|
382
|
+
export type ProjectWithProjectCommentsEntity = z.infer<typeof ProjectWithProjectCommentsEntitySchema>;
|
|
383
|
+
export declare const ProjectWithLikesEntitySchema: z.ZodObject<{
|
|
384
|
+
id: z.ZodCUID2;
|
|
385
|
+
description: z.ZodOptional<z.ZodString>;
|
|
386
|
+
title: z.ZodString;
|
|
387
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
388
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
389
|
+
imagePlaceholderUrl: z.ZodURL;
|
|
390
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
391
|
+
likes: z.ZodArray<z.ZodObject<{
|
|
392
|
+
id: z.ZodCUID2;
|
|
393
|
+
type: z.ZodEnum<{
|
|
394
|
+
readonly LIKE: "LIKE";
|
|
395
|
+
readonly UNLIKE: "UNLIKE";
|
|
396
|
+
readonly BOOKMARK: "BOOKMARK";
|
|
397
|
+
readonly UNBOOKMARK: "UNBOOKMARK";
|
|
398
|
+
readonly VIEW: "VIEW";
|
|
399
|
+
}>;
|
|
400
|
+
actorName: z.ZodString;
|
|
401
|
+
actorId: z.ZodString;
|
|
402
|
+
actorUsername: z.ZodString;
|
|
403
|
+
actorImageUrl: z.ZodOptional<z.ZodURL>;
|
|
404
|
+
followsYou: z.ZodOptional<z.ZodBoolean>;
|
|
405
|
+
isFollowing: z.ZodOptional<z.ZodBoolean>;
|
|
406
|
+
}, z.core.$strip>>;
|
|
407
|
+
}, z.core.$strip>;
|
|
408
|
+
export type ProjectWithLikesEntity = z.infer<typeof ProjectWithLikesEntitySchema>;
|
|
409
|
+
export declare const ProjectWithProjectBookmarksEntitySchema: z.ZodObject<{
|
|
410
|
+
id: z.ZodCUID2;
|
|
411
|
+
description: z.ZodOptional<z.ZodString>;
|
|
412
|
+
title: z.ZodString;
|
|
413
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
414
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
415
|
+
imagePlaceholderUrl: z.ZodURL;
|
|
416
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
417
|
+
bookmarks: z.ZodArray<z.ZodObject<{
|
|
418
|
+
createdAt: z.ZodISODateTime;
|
|
419
|
+
parentId: z.ZodCUID2;
|
|
420
|
+
parentType: z.ZodEnum<{
|
|
421
|
+
readonly PROJECT: "PROJECT";
|
|
422
|
+
readonly USER: "USER";
|
|
423
|
+
readonly JOB: "JOB";
|
|
424
|
+
readonly POST: "POST";
|
|
425
|
+
readonly PRODUCT: "PRODUCT";
|
|
426
|
+
readonly SIGNAL: "SIGNAL";
|
|
427
|
+
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
428
|
+
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
429
|
+
readonly COMMENT: "COMMENT";
|
|
430
|
+
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
431
|
+
}>;
|
|
432
|
+
id: z.ZodCUID2;
|
|
433
|
+
userId: z.ZodCUID2;
|
|
434
|
+
}, z.core.$strip>>;
|
|
435
|
+
}, z.core.$strip>;
|
|
436
|
+
export type ProjectWithProjectBookmarksEntity = z.infer<typeof ProjectWithProjectBookmarksEntitySchema>;
|
|
437
|
+
/**
|
|
438
|
+
* --------------------------------
|
|
439
|
+
* INPUTS
|
|
440
|
+
* --------------------------------
|
|
441
|
+
*/
|
|
172
442
|
export declare const CreateProjectInputSchema: z.ZodObject<{
|
|
173
443
|
id: z.ZodOptional<z.ZodCUID2>;
|
|
174
444
|
title: z.ZodString;
|
|
@@ -195,7 +465,7 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
195
465
|
readonly INVESTOR: "INVESTOR";
|
|
196
466
|
readonly ADMIN: "ADMIN";
|
|
197
467
|
}>>;
|
|
198
|
-
clientId: z.ZodPipe<z.
|
|
468
|
+
clientId: z.ZodPipe<z.ZodTransform<{} | undefined, unknown>, z.ZodOptional<z.ZodCUID2>>;
|
|
199
469
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
200
470
|
readonly CREATIVE: "CREATIVE";
|
|
201
471
|
readonly BRAND: "BRAND";
|
|
@@ -236,9 +506,9 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
236
506
|
}>>;
|
|
237
507
|
currentTraction: z.ZodOptional<z.ZodString>;
|
|
238
508
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
239
|
-
startDate: z.ZodOptional<z.
|
|
240
|
-
endDate: z.ZodOptional<z.
|
|
241
|
-
version: z.ZodDefault<z.
|
|
509
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
510
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
511
|
+
version: z.ZodDefault<z.ZodInt>;
|
|
242
512
|
}, z.core.$strip>;
|
|
243
513
|
export type UpdateProjectInput = z.infer<typeof UpdateProjectInputSchema>;
|
|
244
514
|
export declare const CommentOnProjectInputSchema: z.ZodObject<{
|
|
@@ -270,36 +540,75 @@ export declare const CommentOnProjectInputSchema: z.ZodObject<{
|
|
|
270
540
|
userId: z.ZodCUID2;
|
|
271
541
|
}, z.core.$strip>;
|
|
272
542
|
export type CommentOnProjectInput = z.infer<typeof CommentOnProjectInputSchema>;
|
|
273
|
-
export declare const
|
|
543
|
+
export declare const SearchProjectsInputSchema: z.ZodObject<{
|
|
544
|
+
query: z.ZodOptional<z.ZodString>;
|
|
545
|
+
limit: z.ZodDefault<z.ZodCoercedNumber<unknown>>;
|
|
546
|
+
cursor: z.ZodOptional<z.ZodString>;
|
|
547
|
+
tags: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodString>>>;
|
|
548
|
+
isOpenToInvestment: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
549
|
+
minCapital: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
550
|
+
maxCapital: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
551
|
+
ventureStages: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
552
|
+
readonly IDEA: "Idea";
|
|
553
|
+
readonly PRE_SEED: "Pre Seed";
|
|
554
|
+
readonly MVP: "MVP";
|
|
555
|
+
readonly SEED: "Seed";
|
|
556
|
+
readonly SERIES_A: "Series A";
|
|
557
|
+
readonly SERIES_B: "Series B";
|
|
558
|
+
readonly SERIES_C: "Series C";
|
|
559
|
+
readonly GROWTH: "Growth";
|
|
560
|
+
readonly EXIT: "Exit";
|
|
561
|
+
}>>>>;
|
|
562
|
+
projectCreatorTypes: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
563
|
+
readonly CREATIVE: "CREATIVE";
|
|
564
|
+
readonly BRAND: "BRAND";
|
|
565
|
+
readonly INVESTOR: "INVESTOR";
|
|
566
|
+
readonly ADMIN: "ADMIN";
|
|
567
|
+
}>>>>;
|
|
568
|
+
clientTypes: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
569
|
+
readonly CREATIVE: "CREATIVE";
|
|
570
|
+
readonly BRAND: "BRAND";
|
|
571
|
+
readonly NONE: "NONE";
|
|
572
|
+
}>>>>;
|
|
573
|
+
}, z.core.$strip>;
|
|
574
|
+
export type SearchProjectsInput = z.infer<typeof SearchProjectsInputSchema>;
|
|
575
|
+
export declare const ProjectIdSchema: z.ZodObject<{
|
|
576
|
+
projectId: z.ZodCUID2;
|
|
577
|
+
}, z.core.$strip>;
|
|
578
|
+
export type ProjectIdInput = z.infer<typeof ProjectIdSchema>;
|
|
579
|
+
/**
|
|
580
|
+
* --------------------------------
|
|
581
|
+
* SEARCH DOCUMENT
|
|
582
|
+
* --------------------------------
|
|
583
|
+
*/
|
|
584
|
+
export declare const ProjectSearchDocumentSchema: z.ZodObject<{
|
|
274
585
|
id: z.ZodCUID2;
|
|
275
586
|
userId: z.ZodCUID2;
|
|
276
587
|
title: z.ZodString;
|
|
277
|
-
description: z.ZodOptional<z.ZodString>;
|
|
278
|
-
overview: z.ZodOptional<z.ZodString>;
|
|
279
|
-
url: z.ZodOptional<z.ZodURL>;
|
|
280
588
|
imagePlaceholderUrl: z.ZodURL;
|
|
281
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
282
589
|
projectCreatorType: z.ZodEnum<{
|
|
283
590
|
readonly CREATIVE: "CREATIVE";
|
|
284
591
|
readonly BRAND: "BRAND";
|
|
285
592
|
readonly INVESTOR: "INVESTOR";
|
|
286
593
|
readonly ADMIN: "ADMIN";
|
|
287
594
|
}>;
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
readonly
|
|
296
|
-
readonly
|
|
297
|
-
readonly
|
|
595
|
+
isOpenToInvestment: z.ZodBoolean;
|
|
596
|
+
createdAt: z.ZodISODateTime;
|
|
597
|
+
updatedAt: z.ZodISODateTime;
|
|
598
|
+
description: z.ZodOptional<z.ZodString>;
|
|
599
|
+
capitalLookingToRaise: z.ZodOptional<z.ZodNumber>;
|
|
600
|
+
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
601
|
+
readonly USD: "USD (United States Dollar)";
|
|
602
|
+
readonly EUR: "EUR (Euro)";
|
|
603
|
+
readonly GBP: "GBP (British Pound Sterling)";
|
|
604
|
+
readonly NGN: "NGN (Nigerian Naira)";
|
|
605
|
+
readonly CAD: "CAD (Canadian Dollar)";
|
|
606
|
+
readonly AUD: "AUD (Australian Dollar)";
|
|
607
|
+
readonly JPY: "JPY (Japanese Yen)";
|
|
608
|
+
readonly CHF: "CHF (Swiss Franc)";
|
|
609
|
+
readonly INR: "INR (Indian Rupee)";
|
|
610
|
+
readonly ZAR: "ZAR (South African Rand)";
|
|
298
611
|
}>>;
|
|
299
|
-
clientName: z.ZodOptional<z.ZodString>;
|
|
300
|
-
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
301
|
-
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
302
|
-
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
303
612
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
304
613
|
readonly IDEA: "Idea";
|
|
305
614
|
readonly PRE_SEED: "Pre Seed";
|
|
@@ -311,39 +620,21 @@ export declare const ProjectDetailsEntitySchema: z.ZodObject<{
|
|
|
311
620
|
readonly GROWTH: "Growth";
|
|
312
621
|
readonly EXIT: "Exit";
|
|
313
622
|
}>>;
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
readonly
|
|
322
|
-
readonly
|
|
323
|
-
readonly
|
|
324
|
-
readonly INR: "INR (Indian Rupee)";
|
|
325
|
-
readonly ZAR: "ZAR (South African Rand)";
|
|
623
|
+
url: z.ZodOptional<z.ZodURL>;
|
|
624
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
625
|
+
creatorUsername: z.ZodString;
|
|
626
|
+
creatorImageUrl: z.ZodString;
|
|
627
|
+
creatorName: z.ZodString;
|
|
628
|
+
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
629
|
+
clientType: z.ZodOptional<z.ZodEnum<{
|
|
630
|
+
readonly CREATIVE: "CREATIVE";
|
|
631
|
+
readonly BRAND: "BRAND";
|
|
632
|
+
readonly NONE: "NONE";
|
|
326
633
|
}>>;
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
startDate: z.ZodOptional<z.
|
|
330
|
-
endDate: z.ZodOptional<z.
|
|
331
|
-
createdAt: z.ZodCoercedDate<unknown>;
|
|
332
|
-
updatedAt: z.ZodCoercedDate<unknown>;
|
|
333
|
-
version: z.ZodNumber;
|
|
334
|
-
user: z.ZodObject<{
|
|
335
|
-
email: z.ZodEmail;
|
|
336
|
-
username: z.ZodDefault<z.ZodString>;
|
|
337
|
-
id: z.ZodCUID2;
|
|
338
|
-
name: z.ZodDefault<z.ZodString>;
|
|
339
|
-
image: z.ZodDefault<z.ZodString>;
|
|
340
|
-
role: z.ZodEnum<{
|
|
341
|
-
CREATIVE: "CREATIVE";
|
|
342
|
-
BRAND: "BRAND";
|
|
343
|
-
INVESTOR: "INVESTOR";
|
|
344
|
-
ADMIN: "ADMIN";
|
|
345
|
-
}>;
|
|
346
|
-
}, z.core.$strip>;
|
|
634
|
+
clientName: z.ZodOptional<z.ZodString>;
|
|
635
|
+
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
636
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
637
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
347
638
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
348
639
|
createdAt: z.ZodISODateTime;
|
|
349
640
|
updatedAt: z.ZodISODateTime;
|
|
@@ -369,10 +660,16 @@ export declare const ProjectDetailsEntitySchema: z.ZodObject<{
|
|
|
369
660
|
url: z.ZodURL;
|
|
370
661
|
}, z.core.$strip>>>;
|
|
371
662
|
}, z.core.$strip>;
|
|
372
|
-
export type
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
663
|
+
export type ProjectSearchDocument = z.infer<typeof ProjectSearchDocumentSchema>;
|
|
664
|
+
/**
|
|
665
|
+
* --------------------------------
|
|
666
|
+
* OUTPUTS
|
|
667
|
+
* --------------------------------
|
|
668
|
+
*/
|
|
669
|
+
export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
670
|
+
createdAt: z.ZodISODateTime;
|
|
671
|
+
updatedAt: z.ZodISODateTime;
|
|
672
|
+
version: z.ZodInt;
|
|
376
673
|
title: z.ZodString;
|
|
377
674
|
description: z.ZodOptional<z.ZodString>;
|
|
378
675
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -386,17 +683,17 @@ export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
|
386
683
|
readonly ADMIN: "ADMIN";
|
|
387
684
|
}>;
|
|
388
685
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
389
|
-
status: z.ZodEnum<{
|
|
390
|
-
readonly ACTIVE: "ACTIVE";
|
|
391
|
-
readonly DRAFT: "DRAFT";
|
|
392
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
393
|
-
}>;
|
|
394
686
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
395
687
|
readonly CREATIVE: "CREATIVE";
|
|
396
688
|
readonly BRAND: "BRAND";
|
|
397
689
|
readonly NONE: "NONE";
|
|
398
690
|
}>>;
|
|
399
691
|
clientName: z.ZodOptional<z.ZodString>;
|
|
692
|
+
status: z.ZodEnum<{
|
|
693
|
+
readonly ACTIVE: "ACTIVE";
|
|
694
|
+
readonly DRAFT: "DRAFT";
|
|
695
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
696
|
+
}>;
|
|
400
697
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
401
698
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
402
699
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -426,11 +723,10 @@ export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
|
426
723
|
}>>;
|
|
427
724
|
currentTraction: z.ZodString;
|
|
428
725
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
429
|
-
startDate: z.ZodOptional<z.
|
|
430
|
-
endDate: z.ZodOptional<z.
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
version: z.ZodNumber;
|
|
726
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
727
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
728
|
+
id: z.ZodCUID2;
|
|
729
|
+
userId: z.ZodCUID2;
|
|
434
730
|
user: z.ZodObject<{
|
|
435
731
|
email: z.ZodEmail;
|
|
436
732
|
username: z.ZodDefault<z.ZodString>;
|
|
@@ -472,122 +768,10 @@ export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
|
472
768
|
isBookmarked: z.ZodOptional<z.ZodBoolean>;
|
|
473
769
|
}, z.core.$strip>;
|
|
474
770
|
export type GetProjectOutput = z.infer<typeof GetProjectOutputSchema>;
|
|
475
|
-
export declare const ProjectSearchDocumentSchema: z.ZodObject<{
|
|
476
|
-
id: z.ZodString;
|
|
477
|
-
userId: z.ZodString;
|
|
478
|
-
title: z.ZodString;
|
|
479
|
-
imagePlaceholderUrl: z.ZodURL;
|
|
480
|
-
projectCreatorType: z.ZodEnum<{
|
|
481
|
-
readonly CREATIVE: "CREATIVE";
|
|
482
|
-
readonly BRAND: "BRAND";
|
|
483
|
-
readonly INVESTOR: "INVESTOR";
|
|
484
|
-
readonly ADMIN: "ADMIN";
|
|
485
|
-
}>;
|
|
486
|
-
isOpenToInvestment: z.ZodBoolean;
|
|
487
|
-
createdAt: z.ZodNumber;
|
|
488
|
-
updatedAt: z.ZodNumber;
|
|
489
|
-
description: z.ZodOptional<z.ZodString>;
|
|
490
|
-
capitalLookingToRaise: z.ZodOptional<z.ZodNumber>;
|
|
491
|
-
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
492
|
-
readonly USD: "USD (United States Dollar)";
|
|
493
|
-
readonly EUR: "EUR (Euro)";
|
|
494
|
-
readonly GBP: "GBP (British Pound Sterling)";
|
|
495
|
-
readonly NGN: "NGN (Nigerian Naira)";
|
|
496
|
-
readonly CAD: "CAD (Canadian Dollar)";
|
|
497
|
-
readonly AUD: "AUD (Australian Dollar)";
|
|
498
|
-
readonly JPY: "JPY (Japanese Yen)";
|
|
499
|
-
readonly CHF: "CHF (Swiss Franc)";
|
|
500
|
-
readonly INR: "INR (Indian Rupee)";
|
|
501
|
-
readonly ZAR: "ZAR (South African Rand)";
|
|
502
|
-
}>>;
|
|
503
|
-
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
504
|
-
readonly IDEA: "Idea";
|
|
505
|
-
readonly PRE_SEED: "Pre Seed";
|
|
506
|
-
readonly MVP: "MVP";
|
|
507
|
-
readonly SEED: "Seed";
|
|
508
|
-
readonly SERIES_A: "Series A";
|
|
509
|
-
readonly SERIES_B: "Series B";
|
|
510
|
-
readonly SERIES_C: "Series C";
|
|
511
|
-
readonly GROWTH: "Growth";
|
|
512
|
-
readonly EXIT: "Exit";
|
|
513
|
-
}>>;
|
|
514
|
-
url: z.ZodOptional<z.ZodURL>;
|
|
515
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
516
|
-
creatorUsername: z.ZodString;
|
|
517
|
-
creatorImageUrl: z.ZodString;
|
|
518
|
-
creatorName: z.ZodString;
|
|
519
|
-
clientId: z.ZodOptional<z.ZodString>;
|
|
520
|
-
clientType: z.ZodOptional<z.ZodEnum<{
|
|
521
|
-
readonly CREATIVE: "CREATIVE";
|
|
522
|
-
readonly BRAND: "BRAND";
|
|
523
|
-
readonly NONE: "NONE";
|
|
524
|
-
}>>;
|
|
525
|
-
clientName: z.ZodOptional<z.ZodString>;
|
|
526
|
-
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
527
|
-
startDate: z.ZodOptional<z.ZodNumber>;
|
|
528
|
-
endDate: z.ZodOptional<z.ZodNumber>;
|
|
529
|
-
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
530
|
-
createdAt: z.ZodISODateTime;
|
|
531
|
-
updatedAt: z.ZodISODateTime;
|
|
532
|
-
deletedAt: z.ZodNullable<z.ZodISODateTime>;
|
|
533
|
-
key: z.ZodString;
|
|
534
|
-
mimeType: z.ZodString;
|
|
535
|
-
parentId: z.ZodNullable<z.ZodCUID2>;
|
|
536
|
-
parentType: z.ZodNullable<z.ZodEnum<{
|
|
537
|
-
readonly PROJECT: "PROJECT";
|
|
538
|
-
readonly USER: "USER";
|
|
539
|
-
readonly JOB: "JOB";
|
|
540
|
-
readonly POST: "POST";
|
|
541
|
-
readonly PRODUCT: "PRODUCT";
|
|
542
|
-
readonly SIGNAL: "SIGNAL";
|
|
543
|
-
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
544
|
-
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
545
|
-
readonly COMMENT: "COMMENT";
|
|
546
|
-
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
547
|
-
}>>;
|
|
548
|
-
isThumbnail: z.ZodNullable<z.ZodBoolean>;
|
|
549
|
-
order: z.ZodNumber;
|
|
550
|
-
id: z.ZodCUID2;
|
|
551
|
-
url: z.ZodURL;
|
|
552
|
-
}, z.core.$strip>>>;
|
|
553
|
-
}, z.core.$strip>;
|
|
554
|
-
export type ProjectSearchDocument = z.infer<typeof ProjectSearchDocumentSchema>;
|
|
555
|
-
export declare const SearchProjectsInputSchema: z.ZodObject<{
|
|
556
|
-
query: z.ZodOptional<z.ZodString>;
|
|
557
|
-
limit: z.ZodDefault<z.ZodOptional<z.ZodCoercedNumber<unknown>>>;
|
|
558
|
-
cursor: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
559
|
-
tags: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodString>>>;
|
|
560
|
-
isOpenToInvestment: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
561
|
-
minCapital: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
562
|
-
maxCapital: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
563
|
-
ventureStages: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
564
|
-
readonly IDEA: "Idea";
|
|
565
|
-
readonly PRE_SEED: "Pre Seed";
|
|
566
|
-
readonly MVP: "MVP";
|
|
567
|
-
readonly SEED: "Seed";
|
|
568
|
-
readonly SERIES_A: "Series A";
|
|
569
|
-
readonly SERIES_B: "Series B";
|
|
570
|
-
readonly SERIES_C: "Series C";
|
|
571
|
-
readonly GROWTH: "Growth";
|
|
572
|
-
readonly EXIT: "Exit";
|
|
573
|
-
}>>>>;
|
|
574
|
-
projectCreatorTypes: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
575
|
-
readonly CREATIVE: "CREATIVE";
|
|
576
|
-
readonly BRAND: "BRAND";
|
|
577
|
-
readonly INVESTOR: "INVESTOR";
|
|
578
|
-
readonly ADMIN: "ADMIN";
|
|
579
|
-
}>>>>;
|
|
580
|
-
clientTypes: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodArray<z.ZodEnum<{
|
|
581
|
-
readonly CREATIVE: "CREATIVE";
|
|
582
|
-
readonly BRAND: "BRAND";
|
|
583
|
-
readonly NONE: "NONE";
|
|
584
|
-
}>>>>;
|
|
585
|
-
}, z.core.$strip>;
|
|
586
|
-
export type SearchProjectsInput = z.infer<typeof SearchProjectsInputSchema>;
|
|
587
771
|
export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
588
772
|
projects: z.ZodArray<z.ZodObject<{
|
|
589
|
-
id: z.
|
|
590
|
-
userId: z.
|
|
773
|
+
id: z.ZodCUID2;
|
|
774
|
+
userId: z.ZodCUID2;
|
|
591
775
|
title: z.ZodString;
|
|
592
776
|
imagePlaceholderUrl: z.ZodURL;
|
|
593
777
|
projectCreatorType: z.ZodEnum<{
|
|
@@ -597,8 +781,8 @@ export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
|
597
781
|
readonly ADMIN: "ADMIN";
|
|
598
782
|
}>;
|
|
599
783
|
isOpenToInvestment: z.ZodBoolean;
|
|
600
|
-
createdAt: z.
|
|
601
|
-
updatedAt: z.
|
|
784
|
+
createdAt: z.ZodISODateTime;
|
|
785
|
+
updatedAt: z.ZodISODateTime;
|
|
602
786
|
description: z.ZodOptional<z.ZodString>;
|
|
603
787
|
capitalLookingToRaise: z.ZodOptional<z.ZodNumber>;
|
|
604
788
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -629,7 +813,7 @@ export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
|
629
813
|
creatorUsername: z.ZodString;
|
|
630
814
|
creatorImageUrl: z.ZodString;
|
|
631
815
|
creatorName: z.ZodString;
|
|
632
|
-
clientId: z.ZodOptional<z.
|
|
816
|
+
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
633
817
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
634
818
|
readonly CREATIVE: "CREATIVE";
|
|
635
819
|
readonly BRAND: "BRAND";
|
|
@@ -637,8 +821,8 @@ export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
|
637
821
|
}>>;
|
|
638
822
|
clientName: z.ZodOptional<z.ZodString>;
|
|
639
823
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
640
|
-
startDate: z.ZodOptional<z.
|
|
641
|
-
endDate: z.ZodOptional<z.
|
|
824
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
825
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
642
826
|
files: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
643
827
|
createdAt: z.ZodISODateTime;
|
|
644
828
|
updatedAt: z.ZodISODateTime;
|
|
@@ -664,53 +848,15 @@ export declare const SearchProjectsOutputSchema: z.ZodObject<{
|
|
|
664
848
|
url: z.ZodURL;
|
|
665
849
|
}, z.core.$strip>>>;
|
|
666
850
|
}, z.core.$strip>>;
|
|
667
|
-
nextCursor: z.
|
|
851
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
668
852
|
}, z.core.$strip>;
|
|
669
853
|
export type SearchProjectsOutput = z.infer<typeof SearchProjectsOutputSchema>;
|
|
670
|
-
export declare const ProjectWithProjectCommentsEntitySchema: z.ZodObject<{
|
|
671
|
-
id: z.ZodCUID2;
|
|
672
|
-
description: z.ZodOptional<z.ZodString>;
|
|
673
|
-
title: z.ZodString;
|
|
674
|
-
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
675
|
-
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
676
|
-
imagePlaceholderUrl: z.ZodURL;
|
|
677
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
678
|
-
comments: z.ZodArray<z.ZodObject<{
|
|
679
|
-
commenterUsername: z.ZodOptional<z.ZodString>;
|
|
680
|
-
commenterName: z.ZodOptional<z.ZodString>;
|
|
681
|
-
commenterImageUrl: z.ZodOptional<z.ZodString>;
|
|
682
|
-
isLiked: z.ZodDefault<z.ZodBoolean>;
|
|
683
|
-
likesCount: z.ZodDefault<z.ZodInt>;
|
|
684
|
-
hasReplies: z.ZodOptional<z.ZodBoolean>;
|
|
685
|
-
createdAt: z.ZodISODateTime;
|
|
686
|
-
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
687
|
-
parentId: z.ZodCUID2;
|
|
688
|
-
parentType: z.ZodEnum<{
|
|
689
|
-
readonly PROJECT: "PROJECT";
|
|
690
|
-
readonly USER: "USER";
|
|
691
|
-
readonly JOB: "JOB";
|
|
692
|
-
readonly POST: "POST";
|
|
693
|
-
readonly PRODUCT: "PRODUCT";
|
|
694
|
-
readonly SIGNAL: "SIGNAL";
|
|
695
|
-
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
696
|
-
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
697
|
-
readonly COMMENT: "COMMENT";
|
|
698
|
-
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
699
|
-
}>;
|
|
700
|
-
content: z.ZodString;
|
|
701
|
-
parentCommentId: z.ZodOptional<z.ZodCUID2>;
|
|
702
|
-
replyToId: z.ZodNullable<z.ZodOptional<z.ZodCUID2>>;
|
|
703
|
-
id: z.ZodCUID2;
|
|
704
|
-
userId: z.ZodCUID2;
|
|
705
|
-
}, z.core.$strip>>;
|
|
706
|
-
}, z.core.$strip>;
|
|
707
|
-
export type ProjectWithProjectCommentsEntity = z.infer<typeof ProjectWithProjectCommentsEntitySchema>;
|
|
708
854
|
export declare const GetProjectWithCommentsOutputSchema: z.ZodObject<{
|
|
709
855
|
id: z.ZodCUID2;
|
|
710
856
|
description: z.ZodOptional<z.ZodString>;
|
|
711
857
|
title: z.ZodString;
|
|
712
|
-
startDate: z.ZodOptional<z.
|
|
713
|
-
endDate: z.ZodOptional<z.
|
|
858
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
859
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
714
860
|
imagePlaceholderUrl: z.ZodURL;
|
|
715
861
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
716
862
|
comments: z.ZodArray<z.ZodObject<{
|
|
@@ -741,41 +887,15 @@ export declare const GetProjectWithCommentsOutputSchema: z.ZodObject<{
|
|
|
741
887
|
id: z.ZodCUID2;
|
|
742
888
|
userId: z.ZodCUID2;
|
|
743
889
|
}, z.core.$strip>>;
|
|
744
|
-
nextCursor: z.
|
|
890
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
745
891
|
}, z.core.$strip>;
|
|
746
892
|
export type GetProjectWithCommentsOutput = z.infer<typeof GetProjectWithCommentsOutputSchema>;
|
|
747
|
-
export declare const ProjectWithLikesEntitySchema: z.ZodObject<{
|
|
748
|
-
id: z.ZodCUID2;
|
|
749
|
-
description: z.ZodOptional<z.ZodString>;
|
|
750
|
-
title: z.ZodString;
|
|
751
|
-
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
752
|
-
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
753
|
-
imagePlaceholderUrl: z.ZodURL;
|
|
754
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
755
|
-
likes: z.ZodArray<z.ZodObject<{
|
|
756
|
-
id: z.ZodCUID2;
|
|
757
|
-
type: z.ZodEnum<{
|
|
758
|
-
readonly LIKE: "LIKE";
|
|
759
|
-
readonly UNLIKE: "UNLIKE";
|
|
760
|
-
readonly BOOKMARK: "BOOKMARK";
|
|
761
|
-
readonly UNBOOKMARK: "UNBOOKMARK";
|
|
762
|
-
readonly VIEW: "VIEW";
|
|
763
|
-
}>;
|
|
764
|
-
actorName: z.ZodString;
|
|
765
|
-
actorId: z.ZodString;
|
|
766
|
-
actorUsername: z.ZodString;
|
|
767
|
-
actorImageUrl: z.ZodOptional<z.ZodURL>;
|
|
768
|
-
followsYou: z.ZodOptional<z.ZodBoolean>;
|
|
769
|
-
isFollowing: z.ZodOptional<z.ZodBoolean>;
|
|
770
|
-
}, z.core.$strip>>;
|
|
771
|
-
}, z.core.$strip>;
|
|
772
|
-
export type ProjectWithLikesEntity = z.infer<typeof ProjectWithLikesEntitySchema>;
|
|
773
893
|
export declare const GetProjectWithLikesOutputSchema: z.ZodObject<{
|
|
774
894
|
id: z.ZodCUID2;
|
|
775
895
|
description: z.ZodOptional<z.ZodString>;
|
|
776
896
|
title: z.ZodString;
|
|
777
|
-
startDate: z.ZodOptional<z.
|
|
778
|
-
endDate: z.ZodOptional<z.
|
|
897
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
898
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
779
899
|
imagePlaceholderUrl: z.ZodURL;
|
|
780
900
|
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
781
901
|
likes: z.ZodArray<z.ZodObject<{
|
|
@@ -794,43 +914,17 @@ export declare const GetProjectWithLikesOutputSchema: z.ZodObject<{
|
|
|
794
914
|
followsYou: z.ZodOptional<z.ZodBoolean>;
|
|
795
915
|
isFollowing: z.ZodOptional<z.ZodBoolean>;
|
|
796
916
|
}, z.core.$strip>>;
|
|
797
|
-
nextCursor: z.
|
|
917
|
+
nextCursor: z.ZodOptional<z.ZodString>;
|
|
798
918
|
}, z.core.$strip>;
|
|
799
919
|
export type GetProjectWithLikesOutput = z.infer<typeof GetProjectWithLikesOutputSchema>;
|
|
800
|
-
export declare const ProjectWithProjectBookmarksEntitySchema: z.ZodObject<{
|
|
801
|
-
id: z.ZodCUID2;
|
|
802
|
-
description: z.ZodOptional<z.ZodString>;
|
|
803
|
-
title: z.ZodString;
|
|
804
|
-
startDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
805
|
-
endDate: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
806
|
-
imagePlaceholderUrl: z.ZodURL;
|
|
807
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
808
|
-
bookmarks: z.ZodArray<z.ZodObject<{
|
|
809
|
-
createdAt: z.ZodISODateTime;
|
|
810
|
-
parentId: z.ZodCUID2;
|
|
811
|
-
parentType: z.ZodEnum<{
|
|
812
|
-
readonly PROJECT: "PROJECT";
|
|
813
|
-
readonly USER: "USER";
|
|
814
|
-
readonly JOB: "JOB";
|
|
815
|
-
readonly POST: "POST";
|
|
816
|
-
readonly PRODUCT: "PRODUCT";
|
|
817
|
-
readonly SIGNAL: "SIGNAL";
|
|
818
|
-
readonly PRODUCT_COVER: "PRODUCT_COVER";
|
|
819
|
-
readonly PRODUCT_DELIVERY: "PRODUCT_DELIVERY";
|
|
820
|
-
readonly COMMENT: "COMMENT";
|
|
821
|
-
readonly JOB_APPLICATION: "JOB_APPLICATION";
|
|
822
|
-
}>;
|
|
823
|
-
id: z.ZodCUID2;
|
|
824
|
-
userId: z.ZodCUID2;
|
|
825
|
-
}, z.core.$strip>>;
|
|
826
|
-
}, z.core.$strip>;
|
|
827
|
-
export type ProjectWithProjectBookmarksEntity = z.infer<typeof ProjectWithProjectBookmarksEntitySchema>;
|
|
828
920
|
export declare const ProjectUpdateOutputEntitySchema: z.ZodObject<{
|
|
829
921
|
id: z.ZodCUID2;
|
|
830
922
|
}, z.core.$strip>;
|
|
923
|
+
export type ProjectUpdateOutputEntity = z.infer<typeof ProjectUpdateOutputEntitySchema>;
|
|
831
924
|
export declare const CreateProjectOutputSchema: z.ZodObject<{
|
|
832
|
-
|
|
833
|
-
|
|
925
|
+
createdAt: z.ZodISODateTime;
|
|
926
|
+
updatedAt: z.ZodISODateTime;
|
|
927
|
+
version: z.ZodInt;
|
|
834
928
|
title: z.ZodString;
|
|
835
929
|
description: z.ZodOptional<z.ZodString>;
|
|
836
930
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -844,17 +938,17 @@ export declare const CreateProjectOutputSchema: z.ZodObject<{
|
|
|
844
938
|
readonly ADMIN: "ADMIN";
|
|
845
939
|
}>;
|
|
846
940
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
847
|
-
status: z.ZodEnum<{
|
|
848
|
-
readonly ACTIVE: "ACTIVE";
|
|
849
|
-
readonly DRAFT: "DRAFT";
|
|
850
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
851
|
-
}>;
|
|
852
941
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
853
942
|
readonly CREATIVE: "CREATIVE";
|
|
854
943
|
readonly BRAND: "BRAND";
|
|
855
944
|
readonly NONE: "NONE";
|
|
856
945
|
}>>;
|
|
857
946
|
clientName: z.ZodOptional<z.ZodString>;
|
|
947
|
+
status: z.ZodEnum<{
|
|
948
|
+
readonly ACTIVE: "ACTIVE";
|
|
949
|
+
readonly DRAFT: "DRAFT";
|
|
950
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
951
|
+
}>;
|
|
858
952
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
859
953
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
860
954
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -884,16 +978,16 @@ export declare const CreateProjectOutputSchema: z.ZodObject<{
|
|
|
884
978
|
}>>;
|
|
885
979
|
currentTraction: z.ZodString;
|
|
886
980
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
887
|
-
startDate: z.ZodOptional<z.
|
|
888
|
-
endDate: z.ZodOptional<z.
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
version: z.ZodNumber;
|
|
981
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
982
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
983
|
+
id: z.ZodCUID2;
|
|
984
|
+
userId: z.ZodCUID2;
|
|
892
985
|
}, z.core.$strip>;
|
|
893
986
|
export type CreateProjectOutput = z.infer<typeof CreateProjectOutputSchema>;
|
|
894
987
|
export declare const UpdateProjectOutputSchema: z.ZodObject<{
|
|
895
|
-
|
|
896
|
-
|
|
988
|
+
createdAt: z.ZodISODateTime;
|
|
989
|
+
updatedAt: z.ZodISODateTime;
|
|
990
|
+
version: z.ZodInt;
|
|
897
991
|
title: z.ZodString;
|
|
898
992
|
description: z.ZodOptional<z.ZodString>;
|
|
899
993
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -907,17 +1001,17 @@ export declare const UpdateProjectOutputSchema: z.ZodObject<{
|
|
|
907
1001
|
readonly ADMIN: "ADMIN";
|
|
908
1002
|
}>;
|
|
909
1003
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
910
|
-
status: z.ZodEnum<{
|
|
911
|
-
readonly ACTIVE: "ACTIVE";
|
|
912
|
-
readonly DRAFT: "DRAFT";
|
|
913
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
914
|
-
}>;
|
|
915
1004
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
916
1005
|
readonly CREATIVE: "CREATIVE";
|
|
917
1006
|
readonly BRAND: "BRAND";
|
|
918
1007
|
readonly NONE: "NONE";
|
|
919
1008
|
}>>;
|
|
920
1009
|
clientName: z.ZodOptional<z.ZodString>;
|
|
1010
|
+
status: z.ZodEnum<{
|
|
1011
|
+
readonly ACTIVE: "ACTIVE";
|
|
1012
|
+
readonly DRAFT: "DRAFT";
|
|
1013
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1014
|
+
}>;
|
|
921
1015
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
922
1016
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
923
1017
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -947,16 +1041,16 @@ export declare const UpdateProjectOutputSchema: z.ZodObject<{
|
|
|
947
1041
|
}>>;
|
|
948
1042
|
currentTraction: z.ZodString;
|
|
949
1043
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
950
|
-
startDate: z.ZodOptional<z.
|
|
951
|
-
endDate: z.ZodOptional<z.
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
version: z.ZodNumber;
|
|
1044
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1045
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1046
|
+
id: z.ZodCUID2;
|
|
1047
|
+
userId: z.ZodCUID2;
|
|
955
1048
|
}, z.core.$strip>;
|
|
956
1049
|
export type UpdateProjectOutput = z.infer<typeof UpdateProjectOutputSchema>;
|
|
957
1050
|
export declare const DeleteProjectOutputSchema: z.ZodObject<{
|
|
958
|
-
|
|
959
|
-
|
|
1051
|
+
createdAt: z.ZodISODateTime;
|
|
1052
|
+
updatedAt: z.ZodISODateTime;
|
|
1053
|
+
version: z.ZodInt;
|
|
960
1054
|
title: z.ZodString;
|
|
961
1055
|
description: z.ZodOptional<z.ZodString>;
|
|
962
1056
|
overview: z.ZodOptional<z.ZodString>;
|
|
@@ -970,17 +1064,17 @@ export declare const DeleteProjectOutputSchema: z.ZodObject<{
|
|
|
970
1064
|
readonly ADMIN: "ADMIN";
|
|
971
1065
|
}>;
|
|
972
1066
|
clientId: z.ZodOptional<z.ZodCUID2>;
|
|
973
|
-
status: z.ZodEnum<{
|
|
974
|
-
readonly ACTIVE: "ACTIVE";
|
|
975
|
-
readonly DRAFT: "DRAFT";
|
|
976
|
-
readonly ARCHIVED: "ARCHIVED";
|
|
977
|
-
}>;
|
|
978
1067
|
clientType: z.ZodOptional<z.ZodEnum<{
|
|
979
1068
|
readonly CREATIVE: "CREATIVE";
|
|
980
1069
|
readonly BRAND: "BRAND";
|
|
981
1070
|
readonly NONE: "NONE";
|
|
982
1071
|
}>>;
|
|
983
1072
|
clientName: z.ZodOptional<z.ZodString>;
|
|
1073
|
+
status: z.ZodEnum<{
|
|
1074
|
+
readonly ACTIVE: "ACTIVE";
|
|
1075
|
+
readonly DRAFT: "DRAFT";
|
|
1076
|
+
readonly ARCHIVED: "ARCHIVED";
|
|
1077
|
+
}>;
|
|
984
1078
|
isFeatured: z.ZodOptional<z.ZodBoolean>;
|
|
985
1079
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
986
1080
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
@@ -1010,11 +1104,10 @@ export declare const DeleteProjectOutputSchema: z.ZodObject<{
|
|
|
1010
1104
|
}>>;
|
|
1011
1105
|
currentTraction: z.ZodString;
|
|
1012
1106
|
isOpenToInvestment: z.ZodDefault<z.ZodBoolean>;
|
|
1013
|
-
startDate: z.ZodOptional<z.
|
|
1014
|
-
endDate: z.ZodOptional<z.
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
version: z.ZodNumber;
|
|
1107
|
+
startDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1108
|
+
endDate: z.ZodOptional<z.ZodISODateTime>;
|
|
1109
|
+
id: z.ZodCUID2;
|
|
1110
|
+
userId: z.ZodCUID2;
|
|
1018
1111
|
}, z.core.$strip>;
|
|
1019
1112
|
export type DeleteProjectOutput = z.infer<typeof DeleteProjectOutputSchema>;
|
|
1020
1113
|
export declare const CommentOnProjectOutputSchema: z.ZodObject<{
|
|
@@ -1044,9 +1137,11 @@ export declare const CommentOnProjectOutputSchema: z.ZodObject<{
|
|
|
1044
1137
|
updatedAt: z.ZodOptional<z.ZodISODateTime>;
|
|
1045
1138
|
}, z.core.$strip>;
|
|
1046
1139
|
export type CommentOnProjectOutput = z.infer<typeof CommentOnProjectOutputSchema>;
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1140
|
+
/**
|
|
1141
|
+
* --------------------------------
|
|
1142
|
+
* ALIASES
|
|
1143
|
+
* --------------------------------
|
|
1144
|
+
*/
|
|
1051
1145
|
export type ProjectLikeEntity = z.infer<typeof LikeEntitySchema>;
|
|
1052
1146
|
export type ProjectCommentEntity = z.infer<typeof CommentEntitySchema>;
|
|
1147
|
+
export {};
|