@zyacreatives/shared 2.2.51 → 2.2.52

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.
@@ -33,7 +33,6 @@ export declare const InvestorShortlistEntitySchema: z.ZodObject<{
33
33
  updatedAt: z.ZodCoercedDate<unknown>;
34
34
  }, z.core.$strip>;
35
35
  export declare const CreateInvestorShortlistInputSchema: z.ZodObject<{
36
- userId: z.ZodCUID2;
37
36
  projectId: z.ZodCUID2;
38
37
  }, z.core.$strip>;
39
38
  export declare const GetInvestorShortlistInputSchema: z.ZodObject<{
@@ -19,7 +19,6 @@ exports.InvestorShortlistEntitySchema = zod_1.default.object({
19
19
  updatedAt: zod_1.default.coerce.date(),
20
20
  });
21
21
  exports.CreateInvestorShortlistInputSchema = zod_1.default.object({
22
- userId: zod_1.default.cuid2(),
23
22
  projectId: zod_1.default.cuid2(),
24
23
  });
25
24
  exports.GetInvestorShortlistInputSchema = zod_1.default.object({
@@ -49,8 +49,6 @@ export declare const InvestorSignalEntitySchema: z.ZodObject<{
49
49
  updatedAt: z.ZodCoercedDate<unknown>;
50
50
  }, z.core.$strip>;
51
51
  export declare const CreateInvestorSignalInputSchema: z.ZodObject<{
52
- id: z.ZodCUID2;
53
- userId: z.ZodCUID2;
54
52
  projectId: z.ZodCUID2;
55
53
  signalInterestType: z.ZodEnum<{
56
54
  readonly INVESTMENT: "Exploring investment opportunities";
@@ -23,8 +23,6 @@ exports.InvestorSignalEntitySchema = zod_1.default.object({
23
23
  updatedAt: zod_1.default.coerce.date(),
24
24
  });
25
25
  exports.CreateInvestorSignalInputSchema = zod_1.default.object({
26
- id: zod_1.default.cuid2(),
27
- userId: zod_1.default.cuid2(),
28
26
  projectId: zod_1.default.cuid2(),
29
27
  signalInterestType: zod_1.default.enum(constants_1.SIGNAL_INTEREST_TYPES),
30
28
  interestDetails: zod_1.default.string().max(600),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zyacreatives/shared",
3
- "version": "2.2.51",
3
+ "version": "2.2.52",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,7 +15,6 @@ export const InvestorShortlistEntitySchema = z.object({
15
15
  });
16
16
 
17
17
  export const CreateInvestorShortlistInputSchema = z.object({
18
- userId: z.cuid2(),
19
18
  projectId: z.cuid2(),
20
19
  });
21
20
 
@@ -24,8 +24,6 @@ export const InvestorSignalEntitySchema = z.object({
24
24
  });
25
25
 
26
26
  export const CreateInvestorSignalInputSchema = z.object({
27
- id: z.cuid2(),
28
- userId: z.cuid2(),
29
27
  projectId: z.cuid2(),
30
28
  signalInterestType: z.enum(SIGNAL_INTEREST_TYPES),
31
29
  interestDetails: z.string().max(600),