@zyacreatives/shared 2.2.44 → 2.2.45
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.
|
@@ -43,6 +43,7 @@ export declare const MinimalInvestorEntitySchema: z.ZodObject<{
|
|
|
43
43
|
Global: "Global";
|
|
44
44
|
Other: "Other";
|
|
45
45
|
}>>;
|
|
46
|
+
websiteURL: z.ZodOptional<z.ZodURL>;
|
|
46
47
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
47
48
|
createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
48
49
|
updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -157,6 +158,7 @@ export declare const InvestorWithUserEntitySchema: z.ZodObject<{
|
|
|
157
158
|
Global: "Global";
|
|
158
159
|
Other: "Other";
|
|
159
160
|
}>>;
|
|
161
|
+
websiteURL: z.ZodOptional<z.ZodURL>;
|
|
160
162
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
161
163
|
createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
162
164
|
updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
@@ -518,6 +520,7 @@ export declare const SearchInvestorOutputSchema: z.ZodObject<{
|
|
|
518
520
|
Global: "Global";
|
|
519
521
|
Other: "Other";
|
|
520
522
|
}>>;
|
|
523
|
+
websiteURL: z.ZodOptional<z.ZodURL>;
|
|
521
524
|
disciplines: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
522
525
|
createdAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
|
523
526
|
updatedAt: z.ZodOptional<z.ZodCoercedDate<unknown>>;
|
package/dist/schemas/investor.js
CHANGED
|
@@ -33,6 +33,10 @@ exports.MinimalInvestorEntitySchema = zod_openapi_1.z.object({
|
|
|
33
33
|
.openapi({
|
|
34
34
|
example: "GLOBAL",
|
|
35
35
|
}),
|
|
36
|
+
websiteURL: zod_openapi_1.z
|
|
37
|
+
.url()
|
|
38
|
+
.optional()
|
|
39
|
+
.openapi({ example: "https://investorpartners.com" }),
|
|
36
40
|
disciplines: zod_openapi_1.z
|
|
37
41
|
.array(zod_openapi_1.z.string())
|
|
38
42
|
.optional()
|
package/package.json
CHANGED
package/src/schemas/investor.ts
CHANGED