@zyacreatives/shared 2.2.5 → 2.2.6
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/constants.d.ts +9 -9
- package/dist/schemas/project.d.ts +63 -63
- package/dist/schemas/user.d.ts +18 -18
- package/package.json +1 -1
- package/src/constants.ts +1 -1
package/dist/constants.d.ts
CHANGED
|
@@ -223,15 +223,15 @@ export declare const NOTIFICATION_TYPES: {
|
|
|
223
223
|
readonly PROJECT_FEATURED: "Project Featured";
|
|
224
224
|
};
|
|
225
225
|
export declare const VENTURE_STAGES: {
|
|
226
|
-
IDEA:
|
|
227
|
-
PRE_SEED:
|
|
228
|
-
MVP:
|
|
229
|
-
SEED:
|
|
230
|
-
SERIES_A:
|
|
231
|
-
SERIES_B:
|
|
232
|
-
SERIES_C:
|
|
233
|
-
GROWTH:
|
|
234
|
-
EXIT:
|
|
226
|
+
readonly IDEA: "Idea";
|
|
227
|
+
readonly PRE_SEED: "Pre Seed";
|
|
228
|
+
readonly MVP: "MVP";
|
|
229
|
+
readonly SEED: "Seed";
|
|
230
|
+
readonly SERIES_A: "Series A";
|
|
231
|
+
readonly SERIES_B: "Series B";
|
|
232
|
+
readonly SERIES_C: "Series C";
|
|
233
|
+
readonly GROWTH: "Growth";
|
|
234
|
+
readonly EXIT: "Exit";
|
|
235
235
|
};
|
|
236
236
|
export type NotificationType = (typeof NOTIFICATION_TYPES)[keyof typeof NOTIFICATION_TYPES];
|
|
237
237
|
export type ApplicationStatus = (typeof APPLICATION_STATUS)[keyof typeof APPLICATION_STATUS];
|
|
@@ -25,15 +25,15 @@ export declare const ProjectEntitySchema: z.ZodObject<{
|
|
|
25
25
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
26
26
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
27
27
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
28
|
-
IDEA:
|
|
29
|
-
PRE_SEED:
|
|
30
|
-
MVP:
|
|
31
|
-
SEED:
|
|
32
|
-
SERIES_A:
|
|
33
|
-
SERIES_B:
|
|
34
|
-
SERIES_C:
|
|
35
|
-
GROWTH:
|
|
36
|
-
EXIT:
|
|
28
|
+
readonly IDEA: "Idea";
|
|
29
|
+
readonly PRE_SEED: "Pre Seed";
|
|
30
|
+
readonly MVP: "MVP";
|
|
31
|
+
readonly SEED: "Seed";
|
|
32
|
+
readonly SERIES_A: "Series A";
|
|
33
|
+
readonly SERIES_B: "Series B";
|
|
34
|
+
readonly SERIES_C: "Series C";
|
|
35
|
+
readonly GROWTH: "Growth";
|
|
36
|
+
readonly EXIT: "Exit";
|
|
37
37
|
}>>;
|
|
38
38
|
capitalLookingToRaise: z.ZodString;
|
|
39
39
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -94,15 +94,15 @@ export declare const ProjectDetailsEntitySchema: z.ZodObject<{
|
|
|
94
94
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
95
95
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
96
96
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
97
|
-
IDEA:
|
|
98
|
-
PRE_SEED:
|
|
99
|
-
MVP:
|
|
100
|
-
SEED:
|
|
101
|
-
SERIES_A:
|
|
102
|
-
SERIES_B:
|
|
103
|
-
SERIES_C:
|
|
104
|
-
GROWTH:
|
|
105
|
-
EXIT:
|
|
97
|
+
readonly IDEA: "Idea";
|
|
98
|
+
readonly PRE_SEED: "Pre Seed";
|
|
99
|
+
readonly MVP: "MVP";
|
|
100
|
+
readonly SEED: "Seed";
|
|
101
|
+
readonly SERIES_A: "Series A";
|
|
102
|
+
readonly SERIES_B: "Series B";
|
|
103
|
+
readonly SERIES_C: "Series C";
|
|
104
|
+
readonly GROWTH: "Growth";
|
|
105
|
+
readonly EXIT: "Exit";
|
|
106
106
|
}>>;
|
|
107
107
|
capitalLookingToRaise: z.ZodString;
|
|
108
108
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -210,15 +210,15 @@ export declare const UpdateProjectInputSchema: z.ZodObject<{
|
|
|
210
210
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
211
211
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
212
212
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
213
|
-
IDEA:
|
|
214
|
-
PRE_SEED:
|
|
215
|
-
MVP:
|
|
216
|
-
SEED:
|
|
217
|
-
SERIES_A:
|
|
218
|
-
SERIES_B:
|
|
219
|
-
SERIES_C:
|
|
220
|
-
GROWTH:
|
|
221
|
-
EXIT:
|
|
213
|
+
readonly IDEA: "Idea";
|
|
214
|
+
readonly PRE_SEED: "Pre Seed";
|
|
215
|
+
readonly MVP: "MVP";
|
|
216
|
+
readonly SEED: "Seed";
|
|
217
|
+
readonly SERIES_A: "Series A";
|
|
218
|
+
readonly SERIES_B: "Series B";
|
|
219
|
+
readonly SERIES_C: "Series C";
|
|
220
|
+
readonly GROWTH: "Growth";
|
|
221
|
+
readonly EXIT: "Exit";
|
|
222
222
|
}>>;
|
|
223
223
|
capitalLookingToRaise: z.ZodOptional<z.ZodString>;
|
|
224
224
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -266,15 +266,15 @@ export declare const CreateProjectOutputSchema: z.ZodObject<{
|
|
|
266
266
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
267
267
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
268
268
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
269
|
-
IDEA:
|
|
270
|
-
PRE_SEED:
|
|
271
|
-
MVP:
|
|
272
|
-
SEED:
|
|
273
|
-
SERIES_A:
|
|
274
|
-
SERIES_B:
|
|
275
|
-
SERIES_C:
|
|
276
|
-
GROWTH:
|
|
277
|
-
EXIT:
|
|
269
|
+
readonly IDEA: "Idea";
|
|
270
|
+
readonly PRE_SEED: "Pre Seed";
|
|
271
|
+
readonly MVP: "MVP";
|
|
272
|
+
readonly SEED: "Seed";
|
|
273
|
+
readonly SERIES_A: "Series A";
|
|
274
|
+
readonly SERIES_B: "Series B";
|
|
275
|
+
readonly SERIES_C: "Series C";
|
|
276
|
+
readonly GROWTH: "Growth";
|
|
277
|
+
readonly EXIT: "Exit";
|
|
278
278
|
}>>;
|
|
279
279
|
capitalLookingToRaise: z.ZodString;
|
|
280
280
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -322,15 +322,15 @@ export declare const UpdateProjectOutputSchema: z.ZodObject<{
|
|
|
322
322
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
323
323
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
324
324
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
325
|
-
IDEA:
|
|
326
|
-
PRE_SEED:
|
|
327
|
-
MVP:
|
|
328
|
-
SEED:
|
|
329
|
-
SERIES_A:
|
|
330
|
-
SERIES_B:
|
|
331
|
-
SERIES_C:
|
|
332
|
-
GROWTH:
|
|
333
|
-
EXIT:
|
|
325
|
+
readonly IDEA: "Idea";
|
|
326
|
+
readonly PRE_SEED: "Pre Seed";
|
|
327
|
+
readonly MVP: "MVP";
|
|
328
|
+
readonly SEED: "Seed";
|
|
329
|
+
readonly SERIES_A: "Series A";
|
|
330
|
+
readonly SERIES_B: "Series B";
|
|
331
|
+
readonly SERIES_C: "Series C";
|
|
332
|
+
readonly GROWTH: "Growth";
|
|
333
|
+
readonly EXIT: "Exit";
|
|
334
334
|
}>>;
|
|
335
335
|
capitalLookingToRaise: z.ZodString;
|
|
336
336
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -378,15 +378,15 @@ export declare const DeleteProjectOutputSchema: z.ZodObject<{
|
|
|
378
378
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
379
379
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
380
380
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
381
|
-
IDEA:
|
|
382
|
-
PRE_SEED:
|
|
383
|
-
MVP:
|
|
384
|
-
SEED:
|
|
385
|
-
SERIES_A:
|
|
386
|
-
SERIES_B:
|
|
387
|
-
SERIES_C:
|
|
388
|
-
GROWTH:
|
|
389
|
-
EXIT:
|
|
381
|
+
readonly IDEA: "Idea";
|
|
382
|
+
readonly PRE_SEED: "Pre Seed";
|
|
383
|
+
readonly MVP: "MVP";
|
|
384
|
+
readonly SEED: "Seed";
|
|
385
|
+
readonly SERIES_A: "Series A";
|
|
386
|
+
readonly SERIES_B: "Series B";
|
|
387
|
+
readonly SERIES_C: "Series C";
|
|
388
|
+
readonly GROWTH: "Growth";
|
|
389
|
+
readonly EXIT: "Exit";
|
|
390
390
|
}>>;
|
|
391
391
|
capitalLookingToRaise: z.ZodString;
|
|
392
392
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -434,15 +434,15 @@ export declare const GetProjectOutputSchema: z.ZodObject<{
|
|
|
434
434
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
435
435
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
436
436
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
437
|
-
IDEA:
|
|
438
|
-
PRE_SEED:
|
|
439
|
-
MVP:
|
|
440
|
-
SEED:
|
|
441
|
-
SERIES_A:
|
|
442
|
-
SERIES_B:
|
|
443
|
-
SERIES_C:
|
|
444
|
-
GROWTH:
|
|
445
|
-
EXIT:
|
|
437
|
+
readonly IDEA: "Idea";
|
|
438
|
+
readonly PRE_SEED: "Pre Seed";
|
|
439
|
+
readonly MVP: "MVP";
|
|
440
|
+
readonly SEED: "Seed";
|
|
441
|
+
readonly SERIES_A: "Series A";
|
|
442
|
+
readonly SERIES_B: "Series B";
|
|
443
|
+
readonly SERIES_C: "Series C";
|
|
444
|
+
readonly GROWTH: "Growth";
|
|
445
|
+
readonly EXIT: "Exit";
|
|
446
446
|
}>>;
|
|
447
447
|
capitalLookingToRaise: z.ZodString;
|
|
448
448
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
package/dist/schemas/user.d.ts
CHANGED
|
@@ -236,15 +236,15 @@ export declare const UserWithProjectsEntitySchema: z.ZodObject<{
|
|
|
236
236
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
237
237
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
238
238
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
239
|
-
IDEA:
|
|
240
|
-
PRE_SEED:
|
|
241
|
-
MVP:
|
|
242
|
-
SEED:
|
|
243
|
-
SERIES_A:
|
|
244
|
-
SERIES_B:
|
|
245
|
-
SERIES_C:
|
|
246
|
-
GROWTH:
|
|
247
|
-
EXIT:
|
|
239
|
+
readonly IDEA: "Idea";
|
|
240
|
+
readonly PRE_SEED: "Pre Seed";
|
|
241
|
+
readonly MVP: "MVP";
|
|
242
|
+
readonly SEED: "Seed";
|
|
243
|
+
readonly SERIES_A: "Series A";
|
|
244
|
+
readonly SERIES_B: "Series B";
|
|
245
|
+
readonly SERIES_C: "Series C";
|
|
246
|
+
readonly GROWTH: "Growth";
|
|
247
|
+
readonly EXIT: "Exit";
|
|
248
248
|
}>>;
|
|
249
249
|
capitalLookingToRaise: z.ZodString;
|
|
250
250
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
|
@@ -747,15 +747,15 @@ export declare const GetAuthenticatedUserWithProjectsOutputSchema: z.ZodObject<{
|
|
|
747
747
|
problemBeingSolved: z.ZodOptional<z.ZodString>;
|
|
748
748
|
whoItsFor: z.ZodOptional<z.ZodString>;
|
|
749
749
|
ventureStage: z.ZodOptional<z.ZodEnum<{
|
|
750
|
-
IDEA:
|
|
751
|
-
PRE_SEED:
|
|
752
|
-
MVP:
|
|
753
|
-
SEED:
|
|
754
|
-
SERIES_A:
|
|
755
|
-
SERIES_B:
|
|
756
|
-
SERIES_C:
|
|
757
|
-
GROWTH:
|
|
758
|
-
EXIT:
|
|
750
|
+
readonly IDEA: "Idea";
|
|
751
|
+
readonly PRE_SEED: "Pre Seed";
|
|
752
|
+
readonly MVP: "MVP";
|
|
753
|
+
readonly SEED: "Seed";
|
|
754
|
+
readonly SERIES_A: "Series A";
|
|
755
|
+
readonly SERIES_B: "Series B";
|
|
756
|
+
readonly SERIES_C: "Series C";
|
|
757
|
+
readonly GROWTH: "Growth";
|
|
758
|
+
readonly EXIT: "Exit";
|
|
759
759
|
}>>;
|
|
760
760
|
capitalLookingToRaise: z.ZodString;
|
|
761
761
|
capitalLookingToRaiseCurrency: z.ZodOptional<z.ZodEnum<{
|
package/package.json
CHANGED
package/src/constants.ts
CHANGED