@zyacreatives/shared 2.2.39 → 2.2.40
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.
|
@@ -50,7 +50,6 @@ export declare const InvestorEntitySchema: z.ZodObject<{
|
|
|
50
50
|
version: z.ZodInt;
|
|
51
51
|
}, z.core.$strip>;
|
|
52
52
|
export declare const CreateInvestorProfileInputSchema: z.ZodObject<{
|
|
53
|
-
bio: z.ZodOptional<z.ZodString>;
|
|
54
53
|
websiteURL: z.ZodOptional<z.ZodURL>;
|
|
55
54
|
experienceLevel: z.ZodDefault<z.ZodEnum<{
|
|
56
55
|
"0-1 year": "0-1 year";
|
package/dist/schemas/investor.js
CHANGED
|
@@ -50,9 +50,6 @@ exports.InvestorEntitySchema = zod_openapi_1.z
|
|
|
50
50
|
.openapi("InvestorEntity");
|
|
51
51
|
exports.CreateInvestorProfileInputSchema = zod_openapi_1.z
|
|
52
52
|
.object({
|
|
53
|
-
bio: zod_openapi_1.z.string().max(600).optional().openapi({
|
|
54
|
-
example: "Angel investor backing early-stage African startups.",
|
|
55
|
-
}),
|
|
56
53
|
websiteURL: zod_openapi_1.z.url("Invalid url").optional().openapi({
|
|
57
54
|
example: "https://www.investorportfolio.com",
|
|
58
55
|
}),
|
package/package.json
CHANGED
package/src/schemas/investor.ts
CHANGED
|
@@ -73,9 +73,6 @@ export const InvestorEntitySchema = z
|
|
|
73
73
|
|
|
74
74
|
export const CreateInvestorProfileInputSchema = z
|
|
75
75
|
.object({
|
|
76
|
-
bio: z.string().max(600).optional().openapi({
|
|
77
|
-
example: "Angel investor backing early-stage African startups.",
|
|
78
|
-
}),
|
|
79
76
|
websiteURL: z.url("Invalid url").optional().openapi({
|
|
80
77
|
example: "https://www.investorportfolio.com",
|
|
81
78
|
}),
|