@the-inkwell/shared 0.2.153 → 0.2.154
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/schema/admin/clients/index.d.ts +315 -0
- package/dist/schema/admin/persons/index.d.ts +2 -2
- package/dist/schema/core.d.ts +155 -0
- package/dist/schema/core.js +25 -0
- package/dist/schema/core.js.map +1 -1
- package/dist/schema/public/apply/index.d.ts +1 -1
- package/dist/schema/public/hire/index.d.ts +1 -1
- package/dist/schema/public/join/index.d.ts +2 -2
- package/dist/schema/public/refer/index.d.ts +9 -9
- package/package.json +1 -1
|
@@ -4,9 +4,9 @@ export declare const PublicApplySignedOutCreateSchema: z.ZodObject<{
|
|
|
4
4
|
campaignIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
5
5
|
candidate: z.ZodObject<{
|
|
6
6
|
email: z.ZodEmail;
|
|
7
|
+
linkedInUrl: z.ZodURL;
|
|
7
8
|
firstName: z.ZodString;
|
|
8
9
|
lastName: z.ZodString;
|
|
9
|
-
linkedInUrl: z.ZodURL;
|
|
10
10
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
11
11
|
}, z.core.$strict>;
|
|
12
12
|
affiliateIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -2,9 +2,9 @@ import { z } from 'zod/v4';
|
|
|
2
2
|
export declare const PublicHireCreateSchema: z.ZodObject<{
|
|
3
3
|
contact: z.ZodObject<{
|
|
4
4
|
email: z.ZodEmail;
|
|
5
|
+
linkedInUrl: z.ZodURL;
|
|
5
6
|
firstName: z.ZodString;
|
|
6
7
|
lastName: z.ZodString;
|
|
7
|
-
linkedInUrl: z.ZodURL;
|
|
8
8
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
9
9
|
}, z.core.$strict>;
|
|
10
10
|
positionDetails: z.ZodString;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { z } from 'zod/v4';
|
|
2
2
|
export declare const PublicJoinCreateSchema: z.ZodObject<{
|
|
3
3
|
email: z.ZodEmail;
|
|
4
|
+
linkedInUrl: z.ZodURL;
|
|
4
5
|
firstName: z.ZodString;
|
|
5
6
|
lastName: z.ZodString;
|
|
6
|
-
linkedInUrl: z.ZodURL;
|
|
7
7
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
8
8
|
affiliateIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
9
9
|
campaignIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -32,9 +32,9 @@ export declare const PublicJoinBestPersonCreateParamsSchema: z.ZodObject<{
|
|
|
32
32
|
export declare const PublicJoinBestPersonCreateSchema: z.ZodObject<{
|
|
33
33
|
description: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
34
|
email: z.ZodEmail;
|
|
35
|
+
linkedInUrl: z.ZodURL;
|
|
35
36
|
firstName: z.ZodString;
|
|
36
37
|
lastName: z.ZodString;
|
|
37
|
-
linkedInUrl: z.ZodURL;
|
|
38
38
|
}, z.core.$strict>;
|
|
39
39
|
export declare const PublicJoinNetworksCreateParamsSchema: z.ZodObject<{
|
|
40
40
|
personId: z.ZodUUID;
|
|
@@ -2,9 +2,9 @@ import { z } from 'zod/v4';
|
|
|
2
2
|
export declare const PublicReferClientSignedInCreateSchema: z.ZodObject<{
|
|
3
3
|
contact: z.ZodObject<{
|
|
4
4
|
email: z.ZodEmail;
|
|
5
|
+
linkedInUrl: z.ZodURL;
|
|
5
6
|
firstName: z.ZodString;
|
|
6
7
|
lastName: z.ZodString;
|
|
7
|
-
linkedInUrl: z.ZodURL;
|
|
8
8
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
9
9
|
}, z.core.$strict>;
|
|
10
10
|
company: z.ZodObject<{
|
|
@@ -16,16 +16,16 @@ export declare const PublicReferClientSignedInCreateSchema: z.ZodObject<{
|
|
|
16
16
|
export declare const PublicReferClientSignedOutCreateSchema: z.ZodObject<{
|
|
17
17
|
referrer: z.ZodObject<{
|
|
18
18
|
email: z.ZodEmail;
|
|
19
|
+
linkedInUrl: z.ZodURL;
|
|
19
20
|
firstName: z.ZodString;
|
|
20
21
|
lastName: z.ZodString;
|
|
21
|
-
linkedInUrl: z.ZodURL;
|
|
22
22
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
23
23
|
}, z.core.$strict>;
|
|
24
24
|
contact: z.ZodObject<{
|
|
25
25
|
email: z.ZodEmail;
|
|
26
|
+
linkedInUrl: z.ZodURL;
|
|
26
27
|
firstName: z.ZodString;
|
|
27
28
|
lastName: z.ZodString;
|
|
28
|
-
linkedInUrl: z.ZodURL;
|
|
29
29
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
30
30
|
}, z.core.$strict>;
|
|
31
31
|
company: z.ZodObject<{
|
|
@@ -38,9 +38,9 @@ export declare const PublicReferClientSignedOutCreateSchema: z.ZodObject<{
|
|
|
38
38
|
export declare const PublicReferCandidacySignedInCreateSchema: z.ZodObject<{
|
|
39
39
|
referred: z.ZodObject<{
|
|
40
40
|
email: z.ZodEmail;
|
|
41
|
+
linkedInUrl: z.ZodURL;
|
|
41
42
|
firstName: z.ZodString;
|
|
42
43
|
lastName: z.ZodString;
|
|
43
|
-
linkedInUrl: z.ZodURL;
|
|
44
44
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
45
45
|
}, z.core.$strict>;
|
|
46
46
|
campaignIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -48,16 +48,16 @@ export declare const PublicReferCandidacySignedInCreateSchema: z.ZodObject<{
|
|
|
48
48
|
export declare const PublicReferCandidacySignedOutCreateSchema: z.ZodObject<{
|
|
49
49
|
referrer: z.ZodObject<{
|
|
50
50
|
email: z.ZodEmail;
|
|
51
|
+
linkedInUrl: z.ZodURL;
|
|
51
52
|
firstName: z.ZodString;
|
|
52
53
|
lastName: z.ZodString;
|
|
53
|
-
linkedInUrl: z.ZodURL;
|
|
54
54
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
55
55
|
}, z.core.$strict>;
|
|
56
56
|
referred: z.ZodObject<{
|
|
57
57
|
email: z.ZodEmail;
|
|
58
|
+
linkedInUrl: z.ZodURL;
|
|
58
59
|
firstName: z.ZodString;
|
|
59
60
|
lastName: z.ZodString;
|
|
60
|
-
linkedInUrl: z.ZodURL;
|
|
61
61
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
62
62
|
}, z.core.$strict>;
|
|
63
63
|
affiliateIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -67,9 +67,9 @@ export declare const PublicReferCandidacyPositionSignedInCreateSchema: z.ZodObje
|
|
|
67
67
|
positionIdNano: z.ZodString;
|
|
68
68
|
referred: z.ZodObject<{
|
|
69
69
|
email: z.ZodEmail;
|
|
70
|
+
linkedInUrl: z.ZodURL;
|
|
70
71
|
firstName: z.ZodString;
|
|
71
72
|
lastName: z.ZodString;
|
|
72
|
-
linkedInUrl: z.ZodURL;
|
|
73
73
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
74
74
|
}, z.core.$strict>;
|
|
75
75
|
campaignIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
@@ -78,16 +78,16 @@ export declare const PublicReferCandidacyPositionSignedOutCreateSchema: z.ZodObj
|
|
|
78
78
|
positionIdNano: z.ZodString;
|
|
79
79
|
referrer: z.ZodObject<{
|
|
80
80
|
email: z.ZodEmail;
|
|
81
|
+
linkedInUrl: z.ZodURL;
|
|
81
82
|
firstName: z.ZodString;
|
|
82
83
|
lastName: z.ZodString;
|
|
83
|
-
linkedInUrl: z.ZodURL;
|
|
84
84
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
85
85
|
}, z.core.$strict>;
|
|
86
86
|
referred: z.ZodObject<{
|
|
87
87
|
email: z.ZodEmail;
|
|
88
|
+
linkedInUrl: z.ZodURL;
|
|
88
89
|
firstName: z.ZodString;
|
|
89
90
|
lastName: z.ZodString;
|
|
90
|
-
linkedInUrl: z.ZodURL;
|
|
91
91
|
phone: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|
|
92
92
|
}, z.core.$strict>;
|
|
93
93
|
affiliateIdNano: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
|