@keystrokehq/recruitee 0.1.4 → 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 +23 -9
- package/dist/actions/create-offer.d.mts +23 -9
- 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 +23 -9
- package/dist/actions/update-offer.d.mts +23 -9
- 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/package.json +1 -1
|
@@ -19,8 +19,8 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
19
19
|
on_site: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
offer_id: z.ZodNumber;
|
|
21
21
|
options_cv: z.ZodOptional<z.ZodEnum<{
|
|
22
|
-
required: "required";
|
|
23
22
|
optional: "optional";
|
|
23
|
+
required: "required";
|
|
24
24
|
off: "off";
|
|
25
25
|
}>>;
|
|
26
26
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -28,13 +28,13 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
28
28
|
requirements: z.ZodOptional<z.ZodString>;
|
|
29
29
|
department_id: z.ZodOptional<z.ZodNumber>;
|
|
30
30
|
options_phone: z.ZodOptional<z.ZodEnum<{
|
|
31
|
-
required: "required";
|
|
32
31
|
optional: "optional";
|
|
32
|
+
required: "required";
|
|
33
33
|
off: "off";
|
|
34
34
|
}>>;
|
|
35
35
|
options_photo: z.ZodOptional<z.ZodEnum<{
|
|
36
|
-
required: "required";
|
|
37
36
|
optional: "optional";
|
|
37
|
+
required: "required";
|
|
38
38
|
off: "off";
|
|
39
39
|
}>>;
|
|
40
40
|
locations_question: z.ZodOptional<z.ZodString>;
|
|
@@ -46,8 +46,8 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
46
46
|
linkedin: "linkedin";
|
|
47
47
|
}>>>;
|
|
48
48
|
options_cover_letter: z.ZodOptional<z.ZodEnum<{
|
|
49
|
-
required: "required";
|
|
50
49
|
optional: "optional";
|
|
50
|
+
required: "required";
|
|
51
51
|
off: "off";
|
|
52
52
|
}>>;
|
|
53
53
|
locations_question_type: z.ZodOptional<z.ZodEnum<{
|
|
@@ -96,19 +96,33 @@ declare const recruiteeUpdateOffer: import("@keystrokehq/action").WorkflowAction
|
|
|
96
96
|
remote?: boolean | undefined;
|
|
97
97
|
status?: "draft" | "internal" | "published" | "closed" | "archived" | undefined;
|
|
98
98
|
on_site?: boolean | undefined;
|
|
99
|
-
options_cv?: "
|
|
99
|
+
options_cv?: "optional" | "required" | "off" | undefined;
|
|
100
100
|
description?: string | undefined;
|
|
101
101
|
location_ids?: number[] | undefined;
|
|
102
102
|
requirements?: string | undefined;
|
|
103
103
|
department_id?: number | undefined;
|
|
104
|
-
options_phone?: "
|
|
105
|
-
options_photo?: "
|
|
104
|
+
options_phone?: "optional" | "required" | "off" | undefined;
|
|
105
|
+
options_photo?: "optional" | "required" | "off" | undefined;
|
|
106
106
|
locations_question?: string | undefined;
|
|
107
107
|
visibility_options?: ("locations_question" | "indeed" | "social_share" | "job_location" | "linkedin")[] | undefined;
|
|
108
|
-
options_cover_letter?: "
|
|
108
|
+
options_cover_letter?: "optional" | "required" | "off" | undefined;
|
|
109
109
|
locations_question_type?: "single_choice" | "multiple_choice" | undefined;
|
|
110
110
|
locations_question_required?: boolean | undefined;
|
|
111
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
111
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
112
|
+
connectionId: z.ZodString;
|
|
113
|
+
entityId: z.ZodString;
|
|
114
|
+
instanceId: z.ZodString;
|
|
115
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
116
|
+
subdomain: z.ZodString;
|
|
117
|
+
generic_api_key: z.ZodString;
|
|
118
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
119
|
+
connectionId: z.ZodString;
|
|
120
|
+
entityId: z.ZodString;
|
|
121
|
+
instanceId: z.ZodString;
|
|
122
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
123
|
+
subdomain: z.ZodString;
|
|
124
|
+
generic_api_key: z.ZodString;
|
|
125
|
+
}, z.core.$strip>>]>;
|
|
112
126
|
//#endregion
|
|
113
127
|
export { recruiteeUpdateOffer };
|
|
114
128
|
//# sourceMappingURL=update-offer.d.cts.map
|
|
@@ -19,8 +19,8 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
19
19
|
on_site: z.ZodOptional<z.ZodBoolean>;
|
|
20
20
|
offer_id: z.ZodNumber;
|
|
21
21
|
options_cv: z.ZodOptional<z.ZodEnum<{
|
|
22
|
-
required: "required";
|
|
23
22
|
optional: "optional";
|
|
23
|
+
required: "required";
|
|
24
24
|
off: "off";
|
|
25
25
|
}>>;
|
|
26
26
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -28,13 +28,13 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
28
28
|
requirements: z.ZodOptional<z.ZodString>;
|
|
29
29
|
department_id: z.ZodOptional<z.ZodNumber>;
|
|
30
30
|
options_phone: z.ZodOptional<z.ZodEnum<{
|
|
31
|
-
required: "required";
|
|
32
31
|
optional: "optional";
|
|
32
|
+
required: "required";
|
|
33
33
|
off: "off";
|
|
34
34
|
}>>;
|
|
35
35
|
options_photo: z.ZodOptional<z.ZodEnum<{
|
|
36
|
-
required: "required";
|
|
37
36
|
optional: "optional";
|
|
37
|
+
required: "required";
|
|
38
38
|
off: "off";
|
|
39
39
|
}>>;
|
|
40
40
|
locations_question: z.ZodOptional<z.ZodString>;
|
|
@@ -46,8 +46,8 @@ declare const RecruiteeUpdateOfferInput: z.ZodObject<{
|
|
|
46
46
|
linkedin: "linkedin";
|
|
47
47
|
}>>>;
|
|
48
48
|
options_cover_letter: z.ZodOptional<z.ZodEnum<{
|
|
49
|
-
required: "required";
|
|
50
49
|
optional: "optional";
|
|
50
|
+
required: "required";
|
|
51
51
|
off: "off";
|
|
52
52
|
}>>;
|
|
53
53
|
locations_question_type: z.ZodOptional<z.ZodEnum<{
|
|
@@ -96,19 +96,33 @@ declare const recruiteeUpdateOffer: import("@keystrokehq/action").WorkflowAction
|
|
|
96
96
|
remote?: boolean | undefined;
|
|
97
97
|
status?: "draft" | "internal" | "published" | "closed" | "archived" | undefined;
|
|
98
98
|
on_site?: boolean | undefined;
|
|
99
|
-
options_cv?: "
|
|
99
|
+
options_cv?: "optional" | "required" | "off" | undefined;
|
|
100
100
|
description?: string | undefined;
|
|
101
101
|
location_ids?: number[] | undefined;
|
|
102
102
|
requirements?: string | undefined;
|
|
103
103
|
department_id?: number | undefined;
|
|
104
|
-
options_phone?: "
|
|
105
|
-
options_photo?: "
|
|
104
|
+
options_phone?: "optional" | "required" | "off" | undefined;
|
|
105
|
+
options_photo?: "optional" | "required" | "off" | undefined;
|
|
106
106
|
locations_question?: string | undefined;
|
|
107
107
|
visibility_options?: ("locations_question" | "indeed" | "social_share" | "job_location" | "linkedin")[] | undefined;
|
|
108
|
-
options_cover_letter?: "
|
|
108
|
+
options_cover_letter?: "optional" | "required" | "off" | undefined;
|
|
109
109
|
locations_question_type?: "single_choice" | "multiple_choice" | undefined;
|
|
110
110
|
locations_question_required?: boolean | undefined;
|
|
111
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
111
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
112
|
+
connectionId: z.ZodString;
|
|
113
|
+
entityId: z.ZodString;
|
|
114
|
+
instanceId: z.ZodString;
|
|
115
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
116
|
+
subdomain: z.ZodString;
|
|
117
|
+
generic_api_key: z.ZodString;
|
|
118
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
119
|
+
connectionId: z.ZodString;
|
|
120
|
+
entityId: z.ZodString;
|
|
121
|
+
instanceId: z.ZodString;
|
|
122
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
123
|
+
subdomain: z.ZodString;
|
|
124
|
+
generic_api_key: z.ZodString;
|
|
125
|
+
}, z.core.$strip>>]>;
|
|
112
126
|
//#endregion
|
|
113
127
|
export { recruiteeUpdateOffer };
|
|
114
128
|
//# sourceMappingURL=update-offer.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const recruitee = (0,
|
|
4
|
+
const recruitee = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "recruitee",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
subdomain: zod.z.string(),
|
|
9
|
+
generic_api_key: zod.z.string()
|
|
10
|
+
}
|
|
5
11
|
});
|
|
6
12
|
//#endregion
|
|
7
13
|
exports.recruitee = recruitee;
|
package/dist/app.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const recruitee = defineApp({\n slug: \"recruitee\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.cjs","names":["z"],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const recruitee = defineApp({\n slug: \"recruitee\",\n auth: \"keystroke\",\n credential: {\n subdomain: z.string(),\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,aAAA,GAAA,2BAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;CACN,YAAY;EACV,WAAWA,IAAAA,EAAE,OAAO;EACpB,iBAAiBA,IAAAA,EAAE,OAAO;CAC5B;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const recruitee: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const recruitee: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
subdomain: z.ZodString;
|
|
10
|
+
generic_api_key: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { recruitee };
|
|
5
14
|
//# sourceMappingURL=app.d.cts.map
|
package/dist/app.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,SAAA,6BAAS,GAAA,+BAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const recruitee: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const recruitee: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"recruitee", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
subdomain: z.ZodString;
|
|
10
|
+
generic_api_key: z.ZodString;
|
|
11
|
+
}, z.core.$strip>>>;
|
|
3
12
|
//#endregion
|
|
4
13
|
export { recruitee };
|
|
5
14
|
//# sourceMappingURL=app.d.mts.map
|
package/dist/app.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";;;cAGa,SAAA,6BAAS,GAAA,+BAAA,UAAA,cAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const recruitee = defineApp({
|
|
4
5
|
slug: "recruitee",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: {
|
|
8
|
+
subdomain: z.string(),
|
|
9
|
+
generic_api_key: z.string()
|
|
10
|
+
}
|
|
6
11
|
});
|
|
7
12
|
//#endregion
|
|
8
13
|
export { recruitee };
|
package/dist/app.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const recruitee = defineApp({\n slug: \"recruitee\",\n auth: \"keystroke\",\n});\n"],"mappings":"
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\nimport { z } from \"zod\";\n\nexport const recruitee = defineApp({\n slug: \"recruitee\",\n auth: \"keystroke\",\n credential: {\n subdomain: z.string(),\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;CACN,YAAY;EACV,WAAW,EAAE,OAAO;EACpB,iBAAiB,EAAE,OAAO;CAC5B;AACF,CAAC"}
|