@keystrokehq/peopledatalabs 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/clean-company-data.d.cts +13 -1
- package/dist/actions/clean-company-data.d.mts +13 -1
- package/dist/actions/clean-company-post.d.cts +13 -1
- package/dist/actions/clean-company-post.d.mts +13 -1
- package/dist/actions/clean-location-data.d.cts +13 -1
- package/dist/actions/clean-location-data.d.mts +13 -1
- package/dist/actions/clean-location-post.d.cts +13 -1
- package/dist/actions/clean-location-post.d.mts +13 -1
- package/dist/actions/clean-school-data-post.d.cts +13 -1
- package/dist/actions/clean-school-data-post.d.mts +13 -1
- package/dist/actions/clean-school-data.d.cts +13 -1
- package/dist/actions/clean-school-data.d.mts +13 -1
- package/dist/actions/enrich-bulk-company-data.d.cts +13 -1
- package/dist/actions/enrich-bulk-company-data.d.mts +13 -1
- package/dist/actions/enrich-bulk-person-data.d.cts +13 -1
- package/dist/actions/enrich-bulk-person-data.d.cts.map +1 -1
- package/dist/actions/enrich-bulk-person-data.d.mts +13 -1
- package/dist/actions/enrich-bulk-person-data.d.mts.map +1 -1
- package/dist/actions/enrich-company-data.d.cts +26 -14
- package/dist/actions/enrich-company-data.d.mts +26 -14
- package/dist/actions/enrich-ip-data.d.cts +13 -1
- package/dist/actions/enrich-ip-data.d.mts +13 -1
- package/dist/actions/enrich-job-title-data.d.cts +13 -1
- package/dist/actions/enrich-job-title-data.d.mts +13 -1
- package/dist/actions/enrich-person-data.d.cts +13 -1
- package/dist/actions/enrich-person-data.d.mts +13 -1
- package/dist/actions/enrich-skill-data.d.cts +13 -1
- package/dist/actions/enrich-skill-data.d.mts +13 -1
- package/dist/actions/get-autocomplete-suggestions-post.d.cts +19 -7
- package/dist/actions/get-autocomplete-suggestions-post.d.mts +19 -7
- package/dist/actions/get-autocomplete-suggestions.d.cts +13 -1
- package/dist/actions/get-autocomplete-suggestions.d.mts +13 -1
- package/dist/actions/get-column-details.d.cts +13 -1
- package/dist/actions/get-column-details.d.mts +13 -1
- package/dist/actions/get-schema.d.cts +13 -1
- package/dist/actions/get-schema.d.mts +13 -1
- package/dist/actions/get-subject-requests.d.cts +13 -1
- package/dist/actions/get-subject-requests.d.cts.map +1 -1
- package/dist/actions/get-subject-requests.d.mts +13 -1
- package/dist/actions/get-subject-requests.d.mts.map +1 -1
- package/dist/actions/identify-person-data.d.cts +13 -1
- package/dist/actions/identify-person-data.d.mts +13 -1
- package/dist/actions/people-search-elastic.d.cts +13 -1
- package/dist/actions/people-search-elastic.d.mts +13 -1
- package/dist/actions/query-person-changelog.d.cts +13 -1
- package/dist/actions/query-person-changelog.d.mts +13 -1
- package/dist/actions/search-company-elastic.d.cts +26 -14
- package/dist/actions/search-company-elastic.d.mts +26 -14
- package/dist/actions/search-company-post.d.cts +13 -1
- package/dist/actions/search-company-post.d.mts +13 -1
- package/dist/app.cjs +5 -2
- package/dist/app.cjs.map +1 -1
- package/dist/app.d.cts +9 -1
- package/dist/app.d.cts.map +1 -1
- package/dist/app.d.mts +9 -1
- package/dist/app.d.mts.map +1 -1
- package/dist/app.mjs +3 -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
|
@@ -11,7 +11,19 @@ declare const PeopledatalabsEnrichJobTitleDataOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const peopledatalabsEnrichJobTitleData: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
job_title: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { peopledatalabsEnrichJobTitleData };
|
|
17
29
|
//# sourceMappingURL=enrich-job-title-data.d.cts.map
|
|
@@ -11,7 +11,19 @@ declare const PeopledatalabsEnrichJobTitleDataOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const peopledatalabsEnrichJobTitleData: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
job_title: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { peopledatalabsEnrichJobTitleData };
|
|
17
29
|
//# sourceMappingURL=enrich-job-title-data.d.mts.map
|
|
@@ -297,7 +297,19 @@ declare const peopledatalabsEnrichPersonData: import("@keystrokehq/action").Work
|
|
|
297
297
|
min_likelihood?: number | undefined;
|
|
298
298
|
street_address?: string | undefined;
|
|
299
299
|
include_if_matched?: boolean | undefined;
|
|
300
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
300
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
301
|
+
connectionId: z.ZodString;
|
|
302
|
+
entityId: z.ZodString;
|
|
303
|
+
instanceId: z.ZodString;
|
|
304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
305
|
+
generic_api_key: z.ZodString;
|
|
306
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
307
|
+
connectionId: z.ZodString;
|
|
308
|
+
entityId: z.ZodString;
|
|
309
|
+
instanceId: z.ZodString;
|
|
310
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
311
|
+
generic_api_key: z.ZodString;
|
|
312
|
+
}, z.core.$strip>>]>;
|
|
301
313
|
//#endregion
|
|
302
314
|
export { peopledatalabsEnrichPersonData };
|
|
303
315
|
//# sourceMappingURL=enrich-person-data.d.cts.map
|
|
@@ -297,7 +297,19 @@ declare const peopledatalabsEnrichPersonData: import("@keystrokehq/action").Work
|
|
|
297
297
|
min_likelihood?: number | undefined;
|
|
298
298
|
street_address?: string | undefined;
|
|
299
299
|
include_if_matched?: boolean | undefined;
|
|
300
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
300
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
301
|
+
connectionId: z.ZodString;
|
|
302
|
+
entityId: z.ZodString;
|
|
303
|
+
instanceId: z.ZodString;
|
|
304
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
305
|
+
generic_api_key: z.ZodString;
|
|
306
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
307
|
+
connectionId: z.ZodString;
|
|
308
|
+
entityId: z.ZodString;
|
|
309
|
+
instanceId: z.ZodString;
|
|
310
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
311
|
+
generic_api_key: z.ZodString;
|
|
312
|
+
}, z.core.$strip>>]>;
|
|
301
313
|
//#endregion
|
|
302
314
|
export { peopledatalabsEnrichPersonData };
|
|
303
315
|
//# sourceMappingURL=enrich-person-data.d.mts.map
|
|
@@ -11,7 +11,19 @@ declare const PeopledatalabsEnrichSkillDataOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const peopledatalabsEnrichSkillData: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
skill: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { peopledatalabsEnrichSkillData };
|
|
17
29
|
//# sourceMappingURL=enrich-skill-data.d.cts.map
|
|
@@ -11,7 +11,19 @@ declare const PeopledatalabsEnrichSkillDataOutput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$loose>;
|
|
12
12
|
declare const peopledatalabsEnrichSkillData: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
13
13
|
skill: string;
|
|
14
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
15
|
+
connectionId: z.ZodString;
|
|
16
|
+
entityId: z.ZodString;
|
|
17
|
+
instanceId: z.ZodString;
|
|
18
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
19
|
+
generic_api_key: z.ZodString;
|
|
20
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
21
|
+
connectionId: z.ZodString;
|
|
22
|
+
entityId: z.ZodString;
|
|
23
|
+
instanceId: z.ZodString;
|
|
24
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
25
|
+
generic_api_key: z.ZodString;
|
|
26
|
+
}, z.core.$strip>>]>;
|
|
15
27
|
//#endregion
|
|
16
28
|
export { peopledatalabsEnrichSkillData };
|
|
17
29
|
//# sourceMappingURL=enrich-skill-data.d.mts.map
|
|
@@ -5,17 +5,17 @@ declare const PeopledatalabsGetAutocompleteSuggestionsPostInput: z.ZodObject<{
|
|
|
5
5
|
size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
6
|
text: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
7
7
|
field: z.ZodEnum<{
|
|
8
|
-
location: "location";
|
|
9
|
-
region: "region";
|
|
10
|
-
country: "country";
|
|
11
8
|
title: "title";
|
|
12
9
|
industry: "industry";
|
|
13
|
-
|
|
10
|
+
region: "region";
|
|
11
|
+
country: "country";
|
|
12
|
+
location: "location";
|
|
14
13
|
school: "school";
|
|
14
|
+
company: "company";
|
|
15
15
|
role: "role";
|
|
16
16
|
sub_role: "sub_role";
|
|
17
|
-
major: "major";
|
|
18
17
|
skill: "skill";
|
|
18
|
+
major: "major";
|
|
19
19
|
}>;
|
|
20
20
|
pretty: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
21
21
|
titlecase: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -44,12 +44,24 @@ declare const PeopledatalabsGetAutocompleteSuggestionsPostOutput: z.ZodObject<{
|
|
|
44
44
|
status: z.ZodNullable<z.ZodNumber>;
|
|
45
45
|
}, z.core.$loose>;
|
|
46
46
|
declare const peopledatalabsGetAutocompleteSuggestionsPost: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
47
|
-
field: "
|
|
47
|
+
field: "title" | "industry" | "region" | "country" | "location" | "school" | "company" | "role" | "sub_role" | "skill" | "major";
|
|
48
48
|
size?: number | undefined;
|
|
49
49
|
text?: string | undefined;
|
|
50
50
|
pretty?: boolean | undefined;
|
|
51
51
|
titlecase?: boolean | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
generic_api_key: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { peopledatalabsGetAutocompleteSuggestionsPost };
|
|
55
67
|
//# sourceMappingURL=get-autocomplete-suggestions-post.d.cts.map
|
|
@@ -5,17 +5,17 @@ declare const PeopledatalabsGetAutocompleteSuggestionsPostInput: z.ZodObject<{
|
|
|
5
5
|
size: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
6
6
|
text: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
7
7
|
field: z.ZodEnum<{
|
|
8
|
-
location: "location";
|
|
9
|
-
region: "region";
|
|
10
|
-
country: "country";
|
|
11
8
|
title: "title";
|
|
12
9
|
industry: "industry";
|
|
13
|
-
|
|
10
|
+
region: "region";
|
|
11
|
+
country: "country";
|
|
12
|
+
location: "location";
|
|
14
13
|
school: "school";
|
|
14
|
+
company: "company";
|
|
15
15
|
role: "role";
|
|
16
16
|
sub_role: "sub_role";
|
|
17
|
-
major: "major";
|
|
18
17
|
skill: "skill";
|
|
18
|
+
major: "major";
|
|
19
19
|
}>;
|
|
20
20
|
pretty: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
21
21
|
titlecase: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -44,12 +44,24 @@ declare const PeopledatalabsGetAutocompleteSuggestionsPostOutput: z.ZodObject<{
|
|
|
44
44
|
status: z.ZodNullable<z.ZodNumber>;
|
|
45
45
|
}, z.core.$loose>;
|
|
46
46
|
declare const peopledatalabsGetAutocompleteSuggestionsPost: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
47
|
-
field: "
|
|
47
|
+
field: "title" | "industry" | "region" | "country" | "location" | "school" | "company" | "role" | "sub_role" | "skill" | "major";
|
|
48
48
|
size?: number | undefined;
|
|
49
49
|
text?: string | undefined;
|
|
50
50
|
pretty?: boolean | undefined;
|
|
51
51
|
titlecase?: boolean | undefined;
|
|
52
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
52
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
53
|
+
connectionId: z.ZodString;
|
|
54
|
+
entityId: z.ZodString;
|
|
55
|
+
instanceId: z.ZodString;
|
|
56
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
57
|
+
generic_api_key: z.ZodString;
|
|
58
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
59
|
+
connectionId: z.ZodString;
|
|
60
|
+
entityId: z.ZodString;
|
|
61
|
+
instanceId: z.ZodString;
|
|
62
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
63
|
+
generic_api_key: z.ZodString;
|
|
64
|
+
}, z.core.$strip>>]>;
|
|
53
65
|
//#endregion
|
|
54
66
|
export { peopledatalabsGetAutocompleteSuggestionsPost };
|
|
55
67
|
//# sourceMappingURL=get-autocomplete-suggestions-post.d.mts.map
|
|
@@ -36,7 +36,19 @@ declare const peopledatalabsGetAutocompleteSuggestions: import("@keystrokehq/act
|
|
|
36
36
|
text?: string | undefined;
|
|
37
37
|
pretty?: boolean | undefined;
|
|
38
38
|
titlecase?: boolean | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { peopledatalabsGetAutocompleteSuggestions };
|
|
42
54
|
//# sourceMappingURL=get-autocomplete-suggestions.d.cts.map
|
|
@@ -36,7 +36,19 @@ declare const peopledatalabsGetAutocompleteSuggestions: import("@keystrokehq/act
|
|
|
36
36
|
text?: string | undefined;
|
|
37
37
|
pretty?: boolean | undefined;
|
|
38
38
|
titlecase?: boolean | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { peopledatalabsGetAutocompleteSuggestions };
|
|
42
54
|
//# sourceMappingURL=get-autocomplete-suggestions.d.mts.map
|
|
@@ -15,7 +15,19 @@ declare const PeopledatalabsGetColumnDetailsOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const peopledatalabsGetColumnDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
column: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { peopledatalabsGetColumnDetails };
|
|
21
33
|
//# sourceMappingURL=get-column-details.d.cts.map
|
|
@@ -15,7 +15,19 @@ declare const PeopledatalabsGetColumnDetailsOutput: z.ZodObject<{
|
|
|
15
15
|
}, z.core.$loose>;
|
|
16
16
|
declare const peopledatalabsGetColumnDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
17
17
|
column: string;
|
|
18
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
18
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
19
|
+
connectionId: z.ZodString;
|
|
20
|
+
entityId: z.ZodString;
|
|
21
|
+
instanceId: z.ZodString;
|
|
22
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
23
|
+
generic_api_key: z.ZodString;
|
|
24
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
25
|
+
connectionId: z.ZodString;
|
|
26
|
+
entityId: z.ZodString;
|
|
27
|
+
instanceId: z.ZodString;
|
|
28
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
29
|
+
generic_api_key: z.ZodString;
|
|
30
|
+
}, z.core.$strip>>]>;
|
|
19
31
|
//#endregion
|
|
20
32
|
export { peopledatalabsGetColumnDetails };
|
|
21
33
|
//# sourceMappingURL=get-column-details.d.mts.map
|
|
@@ -14,7 +14,19 @@ declare const PeopledatalabsGetSchemaOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const peopledatalabsGetSchema: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
entity_type: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { peopledatalabsGetSchema };
|
|
20
32
|
//# sourceMappingURL=get-schema.d.cts.map
|
|
@@ -14,7 +14,19 @@ declare const PeopledatalabsGetSchemaOutput: z.ZodObject<{
|
|
|
14
14
|
}, z.core.$loose>;
|
|
15
15
|
declare const peopledatalabsGetSchema: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
16
16
|
entity_type: string;
|
|
17
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
17
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
18
|
+
connectionId: z.ZodString;
|
|
19
|
+
entityId: z.ZodString;
|
|
20
|
+
instanceId: z.ZodString;
|
|
21
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
22
|
+
generic_api_key: z.ZodString;
|
|
23
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
24
|
+
connectionId: z.ZodString;
|
|
25
|
+
entityId: z.ZodString;
|
|
26
|
+
instanceId: z.ZodString;
|
|
27
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
28
|
+
generic_api_key: z.ZodString;
|
|
29
|
+
}, z.core.$strip>>]>;
|
|
18
30
|
//#endregion
|
|
19
31
|
export { peopledatalabsGetSchema };
|
|
20
32
|
//# sourceMappingURL=get-schema.d.mts.map
|
|
@@ -6,7 +6,19 @@ declare const PeopledatalabsGetSubjectRequestsOutput: z.ZodObject<{
|
|
|
6
6
|
status_code: z.ZodNullable<z.ZodNumber>;
|
|
7
7
|
redirect_url: z.ZodNullable<z.ZodString>;
|
|
8
8
|
}, z.core.$loose>;
|
|
9
|
-
declare const peopledatalabsGetSubjectRequests: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
9
|
+
declare const peopledatalabsGetSubjectRequests: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
10
|
+
connectionId: z.ZodString;
|
|
11
|
+
entityId: z.ZodString;
|
|
12
|
+
instanceId: z.ZodString;
|
|
13
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14
|
+
generic_api_key: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>;
|
|
10
22
|
//#endregion
|
|
11
23
|
export { peopledatalabsGetSubjectRequests };
|
|
12
24
|
//# sourceMappingURL=get-subject-requests.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-subject-requests.d.cts","names":[],"sources":["../../src/actions/get-subject-requests.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAKtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-subject-requests.d.cts","names":[],"sources":["../../src/actions/get-subject-requests.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAKtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,mBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -6,7 +6,19 @@ declare const PeopledatalabsGetSubjectRequestsOutput: z.ZodObject<{
|
|
|
6
6
|
status_code: z.ZodNullable<z.ZodNumber>;
|
|
7
7
|
redirect_url: z.ZodNullable<z.ZodString>;
|
|
8
8
|
}, z.core.$loose>;
|
|
9
|
-
declare const peopledatalabsGetSubjectRequests: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
9
|
+
declare const peopledatalabsGetSubjectRequests: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
10
|
+
connectionId: z.ZodString;
|
|
11
|
+
entityId: z.ZodString;
|
|
12
|
+
instanceId: z.ZodString;
|
|
13
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
14
|
+
generic_api_key: z.ZodString;
|
|
15
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
16
|
+
connectionId: z.ZodString;
|
|
17
|
+
entityId: z.ZodString;
|
|
18
|
+
instanceId: z.ZodString;
|
|
19
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
20
|
+
generic_api_key: z.ZodString;
|
|
21
|
+
}, z.core.$strip>>]>;
|
|
10
22
|
//#endregion
|
|
11
23
|
export { peopledatalabsGetSubjectRequests };
|
|
12
24
|
//# sourceMappingURL=get-subject-requests.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-subject-requests.d.mts","names":[],"sources":["../../src/actions/get-subject-requests.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAKtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,
|
|
1
|
+
{"version":3,"file":"get-subject-requests.d.mts","names":[],"sources":["../../src/actions/get-subject-requests.ts"],"mappings":";;;cAIa,qCAAA,EAAqC,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cACrC,sCAAA,EAAsC,CAAA,CAAA,SAAA;;;;cAKtC,gCAAA,gCAAgC,wBAAA,CAAA,MAAA,wDAAA,mBAAA,yCAAA,UAAA,mBAAA,CAAA,CAAA,SAAA"}
|
|
@@ -126,7 +126,19 @@ declare const peopledatalabsIdentifyPersonData: import("@keystrokehq/action").Wo
|
|
|
126
126
|
postal_code?: string | undefined;
|
|
127
127
|
street_address?: string | undefined;
|
|
128
128
|
include_if_matched?: boolean | undefined;
|
|
129
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
129
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
130
|
+
connectionId: z.ZodString;
|
|
131
|
+
entityId: z.ZodString;
|
|
132
|
+
instanceId: z.ZodString;
|
|
133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
134
|
+
generic_api_key: z.ZodString;
|
|
135
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
136
|
+
connectionId: z.ZodString;
|
|
137
|
+
entityId: z.ZodString;
|
|
138
|
+
instanceId: z.ZodString;
|
|
139
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
140
|
+
generic_api_key: z.ZodString;
|
|
141
|
+
}, z.core.$strip>>]>;
|
|
130
142
|
//#endregion
|
|
131
143
|
export { peopledatalabsIdentifyPersonData };
|
|
132
144
|
//# sourceMappingURL=identify-person-data.d.cts.map
|
|
@@ -126,7 +126,19 @@ declare const peopledatalabsIdentifyPersonData: import("@keystrokehq/action").Wo
|
|
|
126
126
|
postal_code?: string | undefined;
|
|
127
127
|
street_address?: string | undefined;
|
|
128
128
|
include_if_matched?: boolean | undefined;
|
|
129
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
129
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
130
|
+
connectionId: z.ZodString;
|
|
131
|
+
entityId: z.ZodString;
|
|
132
|
+
instanceId: z.ZodString;
|
|
133
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
134
|
+
generic_api_key: z.ZodString;
|
|
135
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
136
|
+
connectionId: z.ZodString;
|
|
137
|
+
entityId: z.ZodString;
|
|
138
|
+
instanceId: z.ZodString;
|
|
139
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
140
|
+
generic_api_key: z.ZodString;
|
|
141
|
+
}, z.core.$strip>>]>;
|
|
130
142
|
//#endregion
|
|
131
143
|
export { peopledatalabsIdentifyPersonData };
|
|
132
144
|
//# sourceMappingURL=identify-person-data.d.mts.map
|
|
@@ -178,7 +178,19 @@ declare const peopledatalabsPeopleSearchElastic: import("@keystrokehq/action").W
|
|
|
178
178
|
dataset?: string | undefined;
|
|
179
179
|
titlecase?: boolean | undefined;
|
|
180
180
|
scroll_token?: string | undefined;
|
|
181
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
181
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
182
|
+
connectionId: z.ZodString;
|
|
183
|
+
entityId: z.ZodString;
|
|
184
|
+
instanceId: z.ZodString;
|
|
185
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
186
|
+
generic_api_key: z.ZodString;
|
|
187
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
188
|
+
connectionId: z.ZodString;
|
|
189
|
+
entityId: z.ZodString;
|
|
190
|
+
instanceId: z.ZodString;
|
|
191
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
192
|
+
generic_api_key: z.ZodString;
|
|
193
|
+
}, z.core.$strip>>]>;
|
|
182
194
|
//#endregion
|
|
183
195
|
export { peopledatalabsPeopleSearchElastic };
|
|
184
196
|
//# sourceMappingURL=people-search-elastic.d.cts.map
|
|
@@ -178,7 +178,19 @@ declare const peopledatalabsPeopleSearchElastic: import("@keystrokehq/action").W
|
|
|
178
178
|
dataset?: string | undefined;
|
|
179
179
|
titlecase?: boolean | undefined;
|
|
180
180
|
scroll_token?: string | undefined;
|
|
181
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
181
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
182
|
+
connectionId: z.ZodString;
|
|
183
|
+
entityId: z.ZodString;
|
|
184
|
+
instanceId: z.ZodString;
|
|
185
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
186
|
+
generic_api_key: z.ZodString;
|
|
187
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
188
|
+
connectionId: z.ZodString;
|
|
189
|
+
entityId: z.ZodString;
|
|
190
|
+
instanceId: z.ZodString;
|
|
191
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
192
|
+
generic_api_key: z.ZodString;
|
|
193
|
+
}, z.core.$strip>>]>;
|
|
182
194
|
//#endregion
|
|
183
195
|
export { peopledatalabsPeopleSearchElastic };
|
|
184
196
|
//# sourceMappingURL=people-search-elastic.d.mts.map
|
|
@@ -36,7 +36,19 @@ declare const peopledatalabsQueryPersonChangelog: import("@keystrokehq/action").
|
|
|
36
36
|
type?: "added" | "deleted" | "updated" | "merged" | "opted_out" | undefined;
|
|
37
37
|
scroll_token?: string | undefined;
|
|
38
38
|
fields_updated?: string[] | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { peopledatalabsQueryPersonChangelog };
|
|
42
54
|
//# sourceMappingURL=query-person-changelog.d.cts.map
|
|
@@ -36,7 +36,19 @@ declare const peopledatalabsQueryPersonChangelog: import("@keystrokehq/action").
|
|
|
36
36
|
type?: "added" | "deleted" | "updated" | "merged" | "opted_out" | undefined;
|
|
37
37
|
scroll_token?: string | undefined;
|
|
38
38
|
fields_updated?: string[] | undefined;
|
|
39
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
39
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
40
|
+
connectionId: z.ZodString;
|
|
41
|
+
entityId: z.ZodString;
|
|
42
|
+
instanceId: z.ZodString;
|
|
43
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
44
|
+
generic_api_key: z.ZodString;
|
|
45
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
46
|
+
connectionId: z.ZodString;
|
|
47
|
+
entityId: z.ZodString;
|
|
48
|
+
instanceId: z.ZodString;
|
|
49
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
50
|
+
generic_api_key: z.ZodString;
|
|
51
|
+
}, z.core.$strip>>]>;
|
|
40
52
|
//#endregion
|
|
41
53
|
export { peopledatalabsQueryPersonChangelog };
|
|
42
54
|
//# sourceMappingURL=query-person-changelog.d.mts.map
|