@keystrokehq/recruitee 0.1.3 → 0.1.5
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/actions/create-candidate.d.cts +15 -1
- package/dist/actions/create-candidate.d.cts.map +1 -1
- package/dist/actions/create-candidate.d.mts +15 -1
- package/dist/actions/create-candidate.d.mts.map +1 -1
- package/dist/actions/create-note.d.cts +15 -1
- package/dist/actions/create-note.d.mts +15 -1
- package/dist/actions/create-offer.d.cts +15 -1
- package/dist/actions/create-offer.d.mts +15 -1
- package/dist/actions/delete-candidate.d.cts +15 -1
- package/dist/actions/delete-candidate.d.mts +15 -1
- package/dist/actions/delete-tag.d.cts +15 -1
- package/dist/actions/delete-tag.d.mts +15 -1
- package/dist/actions/get-candidate.d.cts +15 -1
- package/dist/actions/get-candidate.d.mts +15 -1
- package/dist/actions/get-candidates.d.cts +15 -1
- package/dist/actions/get-candidates.d.mts +15 -1
- package/dist/actions/get-company-id.d.cts +15 -1
- package/dist/actions/get-company-id.d.cts.map +1 -1
- package/dist/actions/get-company-id.d.mts +15 -1
- package/dist/actions/get-company-id.d.mts.map +1 -1
- package/dist/actions/get-company-offer-public.d.cts +15 -1
- package/dist/actions/get-company-offer-public.d.mts +15 -1
- package/dist/actions/get-departments.d.cts +15 -1
- package/dist/actions/get-departments.d.cts.map +1 -1
- package/dist/actions/get-departments.d.mts +15 -1
- package/dist/actions/get-departments.d.mts.map +1 -1
- package/dist/actions/get-locations.d.cts +15 -1
- package/dist/actions/get-locations.d.cts.map +1 -1
- package/dist/actions/get-locations.d.mts +15 -1
- package/dist/actions/get-locations.d.mts.map +1 -1
- package/dist/actions/get-notes.d.cts +15 -1
- package/dist/actions/get-notes.d.mts +15 -1
- package/dist/actions/get-offers.d.cts +15 -1
- package/dist/actions/get-offers.d.mts +15 -1
- package/dist/actions/get-pipeline-stages.d.cts +15 -1
- package/dist/actions/get-pipeline-stages.d.mts +15 -1
- package/dist/actions/get-tags.d.cts +15 -1
- package/dist/actions/get-tags.d.mts +15 -1
- package/dist/actions/list-eeo-job-categories.d.cts +15 -1
- package/dist/actions/list-eeo-job-categories.d.cts.map +1 -1
- package/dist/actions/list-eeo-job-categories.d.mts +15 -1
- package/dist/actions/list-eeo-job-categories.d.mts.map +1 -1
- package/dist/actions/list-invoices.d.cts +15 -1
- package/dist/actions/list-invoices.d.mts +15 -1
- package/dist/actions/list-localization-settings.d.cts +15 -1
- package/dist/actions/list-localization-settings.d.cts.map +1 -1
- package/dist/actions/list-localization-settings.d.mts +15 -1
- package/dist/actions/list-localization-settings.d.mts.map +1 -1
- package/dist/actions/list-share-countries.d.cts +15 -1
- package/dist/actions/list-share-countries.d.cts.map +1 -1
- package/dist/actions/list-share-countries.d.mts +15 -1
- package/dist/actions/list-share-countries.d.mts.map +1 -1
- package/dist/actions/list-share-eeo-answers.d.cts +15 -1
- package/dist/actions/list-share-eeo-answers.d.cts.map +1 -1
- package/dist/actions/list-share-eeo-answers.d.mts +15 -1
- package/dist/actions/list-share-eeo-answers.d.mts.map +1 -1
- package/dist/actions/update-candidate.d.cts +15 -1
- package/dist/actions/update-candidate.d.cts.map +1 -1
- package/dist/actions/update-candidate.d.mts +15 -1
- package/dist/actions/update-candidate.d.mts.map +1 -1
- package/dist/actions/update-note.d.cts +15 -1
- package/dist/actions/update-note.d.mts +15 -1
- package/dist/actions/update-offer.d.cts +15 -1
- package/dist/actions/update-offer.d.mts +15 -1
- package/dist/app.cjs +8 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +10 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +10 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +6 -1
- package/dist/app.mjs.map +1 -1
- package/dist/catalog.cjs +1 -1
- package/dist/catalog.cjs.map +1 -1
- package/dist/catalog.d.cts +1 -1
- package/dist/catalog.d.mts +1 -1
- package/dist/catalog.mjs +1 -1
- package/dist/catalog.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -43,7 +43,21 @@ declare const recruiteeCreateCandidate: import("@keystrokehq/action").WorkflowAc
|
|
|
43
43
|
cover_letter?: string | undefined;
|
|
44
44
|
social_links?: string[] | undefined;
|
|
45
45
|
custom_fields?: Record<string, unknown> | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
subdomain: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
subdomain: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { recruiteeCreateCandidate };
|
|
49
63
|
//# sourceMappingURL=create-candidate.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-candidate.d.cts","names":[],"sources":["../../src/actions/create-candidate.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA4B7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-candidate.d.cts","names":[],"sources":["../../src/actions/create-candidate.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA4B7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA"}
|
|
@@ -43,7 +43,21 @@ declare const recruiteeCreateCandidate: import("@keystrokehq/action").WorkflowAc
|
|
|
43
43
|
cover_letter?: string | undefined;
|
|
44
44
|
social_links?: string[] | undefined;
|
|
45
45
|
custom_fields?: Record<string, unknown> | undefined;
|
|
46
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
46
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
47
|
+
connectionId: z.ZodString;
|
|
48
|
+
entityId: z.ZodString;
|
|
49
|
+
instanceId: z.ZodString;
|
|
50
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
51
|
+
subdomain: z.ZodString;
|
|
52
|
+
generic_api_key: z.ZodString;
|
|
53
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
54
|
+
connectionId: z.ZodString;
|
|
55
|
+
entityId: z.ZodString;
|
|
56
|
+
instanceId: z.ZodString;
|
|
57
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
58
|
+
subdomain: z.ZodString;
|
|
59
|
+
generic_api_key: z.ZodString;
|
|
60
|
+
}, z.core.$strip>>]>;
|
|
47
61
|
//#endregion
|
|
48
62
|
export { recruiteeCreateCandidate };
|
|
49
63
|
//# sourceMappingURL=create-candidate.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create-candidate.d.mts","names":[],"sources":["../../src/actions/create-candidate.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA4B7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA
|
|
1
|
+
{"version":3,"file":"create-candidate.d.mts","names":[],"sources":["../../src/actions/create-candidate.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;;;;;;cA4B7B,8BAAA,EAA8B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;cAI9B,wBAAA,gCAAwB,wBAAA"}
|
|
@@ -39,7 +39,21 @@ declare const recruiteeCreateNote: import("@keystrokehq/action").WorkflowActionD
|
|
|
39
39
|
} | undefined;
|
|
40
40
|
};
|
|
41
41
|
candidate_id: string;
|
|
42
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
42
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
subdomain: z.ZodString;
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
subdomain: z.ZodString;
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
43
57
|
//#endregion
|
|
44
58
|
export { recruiteeCreateNote };
|
|
45
59
|
//# sourceMappingURL=create-note.d.cts.map
|
|
@@ -39,7 +39,21 @@ declare const recruiteeCreateNote: import("@keystrokehq/action").WorkflowActionD
|
|
|
39
39
|
} | undefined;
|
|
40
40
|
};
|
|
41
41
|
candidate_id: string;
|
|
42
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
42
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
subdomain: z.ZodString;
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
50
|
+
connectionId: z.ZodString;
|
|
51
|
+
entityId: z.ZodString;
|
|
52
|
+
instanceId: z.ZodString;
|
|
53
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
54
|
+
subdomain: z.ZodString;
|
|
55
|
+
generic_api_key: z.ZodString;
|
|
56
|
+
}, z.core.$strip>>]>;
|
|
43
57
|
//#endregion
|
|
44
58
|
export { recruiteeCreateNote };
|
|
45
59
|
//# sourceMappingURL=create-note.d.mts.map
|
|
@@ -96,7 +96,21 @@ declare const recruiteeCreateOffer: import("@keystrokehq/action").WorkflowAction
|
|
|
96
96
|
locations_question_type?: "single_choice" | "multiple_choice" | undefined;
|
|
97
97
|
locations_question_required?: boolean | undefined;
|
|
98
98
|
};
|
|
99
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
99
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
100
|
+
connectionId: z.ZodString;
|
|
101
|
+
entityId: z.ZodString;
|
|
102
|
+
instanceId: z.ZodString;
|
|
103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
104
|
+
subdomain: z.ZodString;
|
|
105
|
+
generic_api_key: z.ZodString;
|
|
106
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
107
|
+
connectionId: z.ZodString;
|
|
108
|
+
entityId: z.ZodString;
|
|
109
|
+
instanceId: z.ZodString;
|
|
110
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
111
|
+
subdomain: z.ZodString;
|
|
112
|
+
generic_api_key: z.ZodString;
|
|
113
|
+
}, z.core.$strip>>]>;
|
|
100
114
|
//#endregion
|
|
101
115
|
export { recruiteeCreateOffer };
|
|
102
116
|
//# sourceMappingURL=create-offer.d.cts.map
|
|
@@ -96,7 +96,21 @@ declare const recruiteeCreateOffer: import("@keystrokehq/action").WorkflowAction
|
|
|
96
96
|
locations_question_type?: "single_choice" | "multiple_choice" | undefined;
|
|
97
97
|
locations_question_required?: boolean | undefined;
|
|
98
98
|
};
|
|
99
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
99
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
100
|
+
connectionId: z.ZodString;
|
|
101
|
+
entityId: z.ZodString;
|
|
102
|
+
instanceId: z.ZodString;
|
|
103
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
104
|
+
subdomain: z.ZodString;
|
|
105
|
+
generic_api_key: z.ZodString;
|
|
106
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
107
|
+
connectionId: z.ZodString;
|
|
108
|
+
entityId: z.ZodString;
|
|
109
|
+
instanceId: z.ZodString;
|
|
110
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
111
|
+
subdomain: z.ZodString;
|
|
112
|
+
generic_api_key: z.ZodString;
|
|
113
|
+
}, z.core.$strip>>]>;
|
|
100
114
|
//#endregion
|
|
101
115
|
export { recruiteeCreateOffer };
|
|
102
116
|
//# sourceMappingURL=create-offer.d.mts.map
|
|
@@ -7,7 +7,21 @@ declare const RecruiteeDeleteCandidateInput: z.ZodObject<{
|
|
|
7
7
|
declare const RecruiteeDeleteCandidateOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const recruiteeDeleteCandidate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
candidate_id: number;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
subdomain: z.ZodString;
|
|
16
|
+
generic_api_key: z.ZodString;
|
|
17
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
subdomain: z.ZodString;
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
11
25
|
//#endregion
|
|
12
26
|
export { recruiteeDeleteCandidate };
|
|
13
27
|
//# sourceMappingURL=delete-candidate.d.cts.map
|
|
@@ -7,7 +7,21 @@ declare const RecruiteeDeleteCandidateInput: z.ZodObject<{
|
|
|
7
7
|
declare const RecruiteeDeleteCandidateOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const recruiteeDeleteCandidate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
candidate_id: number;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
subdomain: z.ZodString;
|
|
16
|
+
generic_api_key: z.ZodString;
|
|
17
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
subdomain: z.ZodString;
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
11
25
|
//#endregion
|
|
12
26
|
export { recruiteeDeleteCandidate };
|
|
13
27
|
//# sourceMappingURL=delete-candidate.d.mts.map
|
|
@@ -7,7 +7,21 @@ declare const RecruiteeDeleteTagInput: z.ZodObject<{
|
|
|
7
7
|
declare const RecruiteeDeleteTagOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const recruiteeDeleteTag: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
tag_id: number;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
subdomain: z.ZodString;
|
|
16
|
+
generic_api_key: z.ZodString;
|
|
17
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
subdomain: z.ZodString;
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
11
25
|
//#endregion
|
|
12
26
|
export { recruiteeDeleteTag };
|
|
13
27
|
//# sourceMappingURL=delete-tag.d.cts.map
|
|
@@ -7,7 +7,21 @@ declare const RecruiteeDeleteTagInput: z.ZodObject<{
|
|
|
7
7
|
declare const RecruiteeDeleteTagOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
8
8
|
declare const recruiteeDeleteTag: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
9
9
|
tag_id: number;
|
|
10
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
10
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
11
|
+
connectionId: z.ZodString;
|
|
12
|
+
entityId: z.ZodString;
|
|
13
|
+
instanceId: z.ZodString;
|
|
14
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
15
|
+
subdomain: z.ZodString;
|
|
16
|
+
generic_api_key: z.ZodString;
|
|
17
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
subdomain: z.ZodString;
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>;
|
|
11
25
|
//#endregion
|
|
12
26
|
export { recruiteeDeleteTag };
|
|
13
27
|
//# sourceMappingURL=delete-tag.d.mts.map
|
|
@@ -30,7 +30,21 @@ declare const RecruiteeGetCandidateOutput: z.ZodObject<{
|
|
|
30
30
|
declare const recruiteeGetCandidate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
candidate_id: number;
|
|
32
32
|
company_id?: string | number | undefined;
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
subdomain: z.ZodString;
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
subdomain: z.ZodString;
|
|
46
|
+
generic_api_key: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
34
48
|
//#endregion
|
|
35
49
|
export { recruiteeGetCandidate };
|
|
36
50
|
//# sourceMappingURL=get-candidate.d.cts.map
|
|
@@ -30,7 +30,21 @@ declare const RecruiteeGetCandidateOutput: z.ZodObject<{
|
|
|
30
30
|
declare const recruiteeGetCandidate: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
31
31
|
candidate_id: number;
|
|
32
32
|
company_id?: string | number | undefined;
|
|
33
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
33
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
34
|
+
connectionId: z.ZodString;
|
|
35
|
+
entityId: z.ZodString;
|
|
36
|
+
instanceId: z.ZodString;
|
|
37
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
38
|
+
subdomain: z.ZodString;
|
|
39
|
+
generic_api_key: z.ZodString;
|
|
40
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
41
|
+
connectionId: z.ZodString;
|
|
42
|
+
entityId: z.ZodString;
|
|
43
|
+
instanceId: z.ZodString;
|
|
44
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
45
|
+
subdomain: z.ZodString;
|
|
46
|
+
generic_api_key: z.ZodString;
|
|
47
|
+
}, z.core.$strip>>]>;
|
|
34
48
|
//#endregion
|
|
35
49
|
export { recruiteeGetCandidate };
|
|
36
50
|
//# sourceMappingURL=get-candidate.d.mts.map
|
|
@@ -48,7 +48,21 @@ declare const recruiteeGetCandidates: import("@keystrokehq/action").WorkflowActi
|
|
|
48
48
|
company_id?: string | number | undefined;
|
|
49
49
|
createdAfter?: string | undefined;
|
|
50
50
|
disqualified?: boolean | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
subdomain: z.ZodString;
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
subdomain: z.ZodString;
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
52
66
|
//#endregion
|
|
53
67
|
export { recruiteeGetCandidates };
|
|
54
68
|
//# sourceMappingURL=get-candidates.d.cts.map
|
|
@@ -48,7 +48,21 @@ declare const recruiteeGetCandidates: import("@keystrokehq/action").WorkflowActi
|
|
|
48
48
|
company_id?: string | number | undefined;
|
|
49
49
|
createdAfter?: string | undefined;
|
|
50
50
|
disqualified?: boolean | undefined;
|
|
51
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
51
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
52
|
+
connectionId: z.ZodString;
|
|
53
|
+
entityId: z.ZodString;
|
|
54
|
+
instanceId: z.ZodString;
|
|
55
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
56
|
+
subdomain: z.ZodString;
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
subdomain: z.ZodString;
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>;
|
|
52
66
|
//#endregion
|
|
53
67
|
export { recruiteeGetCandidates };
|
|
54
68
|
//# sourceMappingURL=get-candidates.d.mts.map
|
|
@@ -10,7 +10,21 @@ declare const RecruiteeGetCompanyIdOutput: z.ZodObject<{
|
|
|
10
10
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
11
11
|
}, z.core.$loose>>;
|
|
12
12
|
}, z.core.$loose>;
|
|
13
|
-
declare const recruiteeGetCompanyId: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
declare const recruiteeGetCompanyId: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
14
28
|
//#endregion
|
|
15
29
|
export { recruiteeGetCompanyId };
|
|
16
30
|
//# sourceMappingURL=get-company-id.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-company-id.d.cts","names":[],"sources":["../../src/actions/get-company-id.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-company-id.d.cts","names":[],"sources":["../../src/actions/get-company-id.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -10,7 +10,21 @@ declare const RecruiteeGetCompanyIdOutput: z.ZodObject<{
|
|
|
10
10
|
updated_at: z.ZodNullable<z.ZodString>;
|
|
11
11
|
}, z.core.$loose>>;
|
|
12
12
|
}, z.core.$loose>;
|
|
13
|
-
declare const recruiteeGetCompanyId: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
13
|
+
declare const recruiteeGetCompanyId: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
14
|
+
connectionId: z.ZodString;
|
|
15
|
+
entityId: z.ZodString;
|
|
16
|
+
instanceId: z.ZodString;
|
|
17
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
18
|
+
subdomain: z.ZodString;
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
subdomain: z.ZodString;
|
|
26
|
+
generic_api_key: z.ZodString;
|
|
27
|
+
}, z.core.$strip>>]>;
|
|
14
28
|
//#endregion
|
|
15
29
|
export { recruiteeGetCompanyId };
|
|
16
30
|
//# sourceMappingURL=get-company-id.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-company-id.d.mts","names":[],"sources":["../../src/actions/get-company-id.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-company-id.d.mts","names":[],"sources":["../../src/actions/get-company-id.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAO1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -28,7 +28,21 @@ declare const RecruiteeGetCompanyOfferPublicOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const recruiteeGetCompanyOfferPublic: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
identifier: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
subdomain: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
32
46
|
//#endregion
|
|
33
47
|
export { recruiteeGetCompanyOfferPublic };
|
|
34
48
|
//# sourceMappingURL=get-company-offer-public.d.cts.map
|
|
@@ -28,7 +28,21 @@ declare const RecruiteeGetCompanyOfferPublicOutput: z.ZodObject<{
|
|
|
28
28
|
}, z.core.$loose>;
|
|
29
29
|
declare const recruiteeGetCompanyOfferPublic: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
30
30
|
identifier: string;
|
|
31
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
31
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
32
|
+
connectionId: z.ZodString;
|
|
33
|
+
entityId: z.ZodString;
|
|
34
|
+
instanceId: z.ZodString;
|
|
35
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
36
|
+
subdomain: z.ZodString;
|
|
37
|
+
generic_api_key: z.ZodString;
|
|
38
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
39
|
+
connectionId: z.ZodString;
|
|
40
|
+
entityId: z.ZodString;
|
|
41
|
+
instanceId: z.ZodString;
|
|
42
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
43
|
+
subdomain: z.ZodString;
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>;
|
|
32
46
|
//#endregion
|
|
33
47
|
export { recruiteeGetCompanyOfferPublic };
|
|
34
48
|
//# sourceMappingURL=get-company-offer-public.d.mts.map
|
|
@@ -9,7 +9,21 @@ declare const RecruiteeGetDepartmentsOutput: z.ZodObject<{
|
|
|
9
9
|
offers_count: z.ZodNullable<z.ZodNumber>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const recruiteeGetDepartments: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const recruiteeGetDepartments: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
subdomain: z.ZodString;
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
13
27
|
//#endregion
|
|
14
28
|
export { recruiteeGetDepartments };
|
|
15
29
|
//# sourceMappingURL=get-departments.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-departments.d.cts","names":[],"sources":["../../src/actions/get-departments.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-departments.d.cts","names":[],"sources":["../../src/actions/get-departments.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -9,7 +9,21 @@ declare const RecruiteeGetDepartmentsOutput: z.ZodObject<{
|
|
|
9
9
|
offers_count: z.ZodNullable<z.ZodNumber>;
|
|
10
10
|
}, z.core.$loose>>;
|
|
11
11
|
}, z.core.$loose>;
|
|
12
|
-
declare const recruiteeGetDepartments: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
12
|
+
declare const recruiteeGetDepartments: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
13
|
+
connectionId: z.ZodString;
|
|
14
|
+
entityId: z.ZodString;
|
|
15
|
+
instanceId: z.ZodString;
|
|
16
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
17
|
+
subdomain: z.ZodString;
|
|
18
|
+
generic_api_key: z.ZodString;
|
|
19
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
20
|
+
connectionId: z.ZodString;
|
|
21
|
+
entityId: z.ZodString;
|
|
22
|
+
instanceId: z.ZodString;
|
|
23
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
24
|
+
subdomain: z.ZodString;
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
13
27
|
//#endregion
|
|
14
28
|
export { recruiteeGetDepartments };
|
|
15
29
|
//# sourceMappingURL=get-departments.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-departments.d.mts","names":[],"sources":["../../src/actions/get-departments.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-departments.d.mts","names":[],"sources":["../../src/actions/get-departments.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAM5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;cAI7B,uBAAA,gCAAuB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -32,7 +32,21 @@ declare const RecruiteeGetLocationsOutput: z.ZodObject<{
|
|
|
32
32
|
active_requisitions_count: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
33
33
|
}, z.core.$loose>>;
|
|
34
34
|
}, z.core.$loose>;
|
|
35
|
-
declare const recruiteeGetLocations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
declare const recruiteeGetLocations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
subdomain: z.ZodString;
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
36
50
|
//#endregion
|
|
37
51
|
export { recruiteeGetLocations };
|
|
38
52
|
//# sourceMappingURL=get-locations.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-locations.d.cts","names":[],"sources":["../../src/actions/get-locations.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8B1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-locations.d.cts","names":[],"sources":["../../src/actions/get-locations.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8B1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -32,7 +32,21 @@ declare const RecruiteeGetLocationsOutput: z.ZodObject<{
|
|
|
32
32
|
active_requisitions_count: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
|
|
33
33
|
}, z.core.$loose>>;
|
|
34
34
|
}, z.core.$loose>;
|
|
35
|
-
declare const recruiteeGetLocations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
35
|
+
declare const recruiteeGetLocations: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
36
|
+
connectionId: z.ZodString;
|
|
37
|
+
entityId: z.ZodString;
|
|
38
|
+
instanceId: z.ZodString;
|
|
39
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
40
|
+
subdomain: z.ZodString;
|
|
41
|
+
generic_api_key: z.ZodString;
|
|
42
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
43
|
+
connectionId: z.ZodString;
|
|
44
|
+
entityId: z.ZodString;
|
|
45
|
+
instanceId: z.ZodString;
|
|
46
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
47
|
+
subdomain: z.ZodString;
|
|
48
|
+
generic_api_key: z.ZodString;
|
|
49
|
+
}, z.core.$strip>>]>;
|
|
36
50
|
//#endregion
|
|
37
51
|
export { recruiteeGetLocations };
|
|
38
52
|
//# sourceMappingURL=get-locations.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-locations.d.mts","names":[],"sources":["../../src/actions/get-locations.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8B1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-locations.d.mts","names":[],"sources":["../../src/actions/get-locations.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cA8B1B,2BAAA,EAA2B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAI3B,qBAAA,gCAAqB,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
|
@@ -40,7 +40,21 @@ declare const recruiteeGetNotes: import("@keystrokehq/action").WorkflowActionDef
|
|
|
40
40
|
candidate_id: number;
|
|
41
41
|
limit?: number | undefined;
|
|
42
42
|
offset?: number | undefined;
|
|
43
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
43
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
subdomain: z.ZodString;
|
|
49
|
+
generic_api_key: z.ZodString;
|
|
50
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
subdomain: z.ZodString;
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>;
|
|
44
58
|
//#endregion
|
|
45
59
|
export { recruiteeGetNotes };
|
|
46
60
|
//# sourceMappingURL=get-notes.d.cts.map
|
|
@@ -40,7 +40,21 @@ declare const recruiteeGetNotes: import("@keystrokehq/action").WorkflowActionDef
|
|
|
40
40
|
candidate_id: number;
|
|
41
41
|
limit?: number | undefined;
|
|
42
42
|
offset?: number | undefined;
|
|
43
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
43
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
44
|
+
connectionId: z.ZodString;
|
|
45
|
+
entityId: z.ZodString;
|
|
46
|
+
instanceId: z.ZodString;
|
|
47
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
48
|
+
subdomain: z.ZodString;
|
|
49
|
+
generic_api_key: z.ZodString;
|
|
50
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
51
|
+
connectionId: z.ZodString;
|
|
52
|
+
entityId: z.ZodString;
|
|
53
|
+
instanceId: z.ZodString;
|
|
54
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
55
|
+
subdomain: z.ZodString;
|
|
56
|
+
generic_api_key: z.ZodString;
|
|
57
|
+
}, z.core.$strip>>]>;
|
|
44
58
|
//#endregion
|
|
45
59
|
export { recruiteeGetNotes };
|
|
46
60
|
//# sourceMappingURL=get-notes.d.mts.map
|