@zyacreatives/shared 2.2.50 → 2.2.51
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.
|
@@ -29,7 +29,7 @@ export declare const InvestorSignalEntitySchema: z.ZodObject<{
|
|
|
29
29
|
readonly GROWTH: "Growth";
|
|
30
30
|
readonly EXIT: "Exit";
|
|
31
31
|
}>;
|
|
32
|
-
|
|
32
|
+
signalInterestType: z.ZodEnum<{
|
|
33
33
|
readonly INVESTMENT: "Exploring investment opportunities";
|
|
34
34
|
readonly PARTNERSHIP: "Partnership & Collaboration";
|
|
35
35
|
readonly PRODUCT_INTEREST: "Interested in using the product";
|
|
@@ -52,7 +52,7 @@ export declare const CreateInvestorSignalInputSchema: z.ZodObject<{
|
|
|
52
52
|
id: z.ZodCUID2;
|
|
53
53
|
userId: z.ZodCUID2;
|
|
54
54
|
projectId: z.ZodCUID2;
|
|
55
|
-
|
|
55
|
+
signalInterestType: z.ZodEnum<{
|
|
56
56
|
readonly INVESTMENT: "Exploring investment opportunities";
|
|
57
57
|
readonly PARTNERSHIP: "Partnership & Collaboration";
|
|
58
58
|
readonly PRODUCT_INTEREST: "Interested in using the product";
|
|
@@ -112,7 +112,7 @@ export declare const GetInvestorSignalOutputSchema: z.ZodObject<{
|
|
|
112
112
|
readonly GROWTH: "Growth";
|
|
113
113
|
readonly EXIT: "Exit";
|
|
114
114
|
}>;
|
|
115
|
-
|
|
115
|
+
signalInterestType: z.ZodEnum<{
|
|
116
116
|
readonly INVESTMENT: "Exploring investment opportunities";
|
|
117
117
|
readonly PARTNERSHIP: "Partnership & Collaboration";
|
|
118
118
|
readonly PRODUCT_INTEREST: "Interested in using the product";
|
|
@@ -15,7 +15,7 @@ exports.InvestorSignalEntitySchema = zod_1.default.object({
|
|
|
15
15
|
projectTotalRaising: zod_1.default.string(),
|
|
16
16
|
projectTotalRaisingCurrency: zod_1.default.enum(constants_1.WAGES_CURRENCY),
|
|
17
17
|
projectVentureStage: zod_1.default.enum(constants_1.VENTURE_STAGES),
|
|
18
|
-
|
|
18
|
+
signalInterestType: zod_1.default.enum(constants_1.SIGNAL_INTEREST_TYPES),
|
|
19
19
|
interestDetails: zod_1.default.string().max(600),
|
|
20
20
|
signalStatus: zod_1.default.enum(constants_1.SIGNAL_STATUS).default("PENDING"),
|
|
21
21
|
createdAt: zod_1.default.coerce.date(),
|
|
@@ -26,7 +26,7 @@ exports.CreateInvestorSignalInputSchema = zod_1.default.object({
|
|
|
26
26
|
id: zod_1.default.cuid2(),
|
|
27
27
|
userId: zod_1.default.cuid2(),
|
|
28
28
|
projectId: zod_1.default.cuid2(),
|
|
29
|
-
|
|
29
|
+
signalInterestType: zod_1.default.enum(constants_1.SIGNAL_INTEREST_TYPES),
|
|
30
30
|
interestDetails: zod_1.default.string().max(600),
|
|
31
31
|
});
|
|
32
32
|
exports.UpdateInvestorSignalStatusSchema = zod_1.default.object({
|
package/package.json
CHANGED
|
@@ -15,7 +15,7 @@ export const InvestorSignalEntitySchema = z.object({
|
|
|
15
15
|
projectTotalRaising: z.string(),
|
|
16
16
|
projectTotalRaisingCurrency: z.enum(WAGES_CURRENCY),
|
|
17
17
|
projectVentureStage: z.enum(VENTURE_STAGES),
|
|
18
|
-
|
|
18
|
+
signalInterestType: z.enum(SIGNAL_INTEREST_TYPES),
|
|
19
19
|
interestDetails: z.string().max(600),
|
|
20
20
|
signalStatus: z.enum(SIGNAL_STATUS).default("PENDING"),
|
|
21
21
|
createdAt: z.coerce.date(),
|
|
@@ -27,7 +27,7 @@ export const CreateInvestorSignalInputSchema = z.object({
|
|
|
27
27
|
id: z.cuid2(),
|
|
28
28
|
userId: z.cuid2(),
|
|
29
29
|
projectId: z.cuid2(),
|
|
30
|
-
|
|
30
|
+
signalInterestType: z.enum(SIGNAL_INTEREST_TYPES),
|
|
31
31
|
interestDetails: z.string().max(600),
|
|
32
32
|
});
|
|
33
33
|
|