@keystrokehq/peopledatalabs 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/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 +15 -3
- package/dist/actions/get-autocomplete-suggestions-post.d.mts +15 -3
- 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/package.json +1 -1
|
@@ -32,12 +32,12 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
32
32
|
}>>>;
|
|
33
33
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
34
34
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
35
|
+
public: "public";
|
|
36
|
+
private: "private";
|
|
37
|
+
public_subsidiary: "public_subsidiary";
|
|
35
38
|
educational: "educational";
|
|
36
39
|
government: "government";
|
|
37
40
|
nonprofit: "nonprofit";
|
|
38
|
-
private: "private";
|
|
39
|
-
public: "public";
|
|
40
|
-
public_subsidiary: "public_subsidiary";
|
|
41
41
|
}>>>;
|
|
42
42
|
naics: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
43
43
|
sector: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -76,8 +76,6 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
76
76
|
linkedin_slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
77
77
|
employee_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
78
78
|
funding_stages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
79
|
-
angel: "angel";
|
|
80
|
-
pre_seed: "pre_seed";
|
|
81
79
|
seed: "seed";
|
|
82
80
|
series_a: "series_a";
|
|
83
81
|
series_b: "series_b";
|
|
@@ -90,7 +88,8 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
90
88
|
series_i: "series_i";
|
|
91
89
|
series_j: "series_j";
|
|
92
90
|
series_unknown: "series_unknown";
|
|
93
|
-
|
|
91
|
+
angel: "angel";
|
|
92
|
+
pre_seed: "pre_seed";
|
|
94
93
|
private_equity: "private_equity";
|
|
95
94
|
debt_financing: "debt_financing";
|
|
96
95
|
convertible_note: "convertible_note";
|
|
@@ -98,12 +97,13 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
98
97
|
corporate_round: "corporate_round";
|
|
99
98
|
equity_crowdfunding: "equity_crowdfunding";
|
|
100
99
|
product_crowdfunding: "product_crowdfunding";
|
|
101
|
-
|
|
100
|
+
initial_coin_offering: "initial_coin_offering";
|
|
102
101
|
post_ipo_equity: "post_ipo_equity";
|
|
103
102
|
post_ipo_debt: "post_ipo_debt";
|
|
104
103
|
post_ipo_secondary: "post_ipo_secondary";
|
|
104
|
+
secondary_market: "secondary_market";
|
|
105
105
|
non_equity_assistance: "non_equity_assistance";
|
|
106
|
-
|
|
106
|
+
funding_round: "funding_round";
|
|
107
107
|
undisclosed: "undisclosed";
|
|
108
108
|
}>>>>;
|
|
109
109
|
dataset_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -124,8 +124,6 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
124
124
|
employee_churn_rate: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
125
125
|
employee_growth_rate: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
126
126
|
latest_funding_stage: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
127
|
-
angel: "angel";
|
|
128
|
-
pre_seed: "pre_seed";
|
|
129
127
|
seed: "seed";
|
|
130
128
|
series_a: "series_a";
|
|
131
129
|
series_b: "series_b";
|
|
@@ -138,7 +136,8 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
138
136
|
series_i: "series_i";
|
|
139
137
|
series_j: "series_j";
|
|
140
138
|
series_unknown: "series_unknown";
|
|
141
|
-
|
|
139
|
+
angel: "angel";
|
|
140
|
+
pre_seed: "pre_seed";
|
|
142
141
|
private_equity: "private_equity";
|
|
143
142
|
debt_financing: "debt_financing";
|
|
144
143
|
convertible_note: "convertible_note";
|
|
@@ -146,12 +145,13 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
146
145
|
corporate_round: "corporate_round";
|
|
147
146
|
equity_crowdfunding: "equity_crowdfunding";
|
|
148
147
|
product_crowdfunding: "product_crowdfunding";
|
|
149
|
-
|
|
148
|
+
initial_coin_offering: "initial_coin_offering";
|
|
150
149
|
post_ipo_equity: "post_ipo_equity";
|
|
151
150
|
post_ipo_debt: "post_ipo_debt";
|
|
152
151
|
post_ipo_secondary: "post_ipo_secondary";
|
|
152
|
+
secondary_market: "secondary_market";
|
|
153
153
|
non_equity_assistance: "non_equity_assistance";
|
|
154
|
-
|
|
154
|
+
funding_round: "funding_round";
|
|
155
155
|
undisclosed: "undisclosed";
|
|
156
156
|
}>>>;
|
|
157
157
|
total_funding_raised: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -193,7 +193,19 @@ declare const peopledatalabsSearchCompanyElastic: import("@keystrokehq/action").
|
|
|
193
193
|
pretty?: boolean | undefined;
|
|
194
194
|
titlecase?: boolean | undefined;
|
|
195
195
|
scroll_token?: string | undefined;
|
|
196
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
196
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
197
|
+
connectionId: z.ZodString;
|
|
198
|
+
entityId: z.ZodString;
|
|
199
|
+
instanceId: z.ZodString;
|
|
200
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
201
|
+
generic_api_key: z.ZodString;
|
|
202
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
203
|
+
connectionId: z.ZodString;
|
|
204
|
+
entityId: z.ZodString;
|
|
205
|
+
instanceId: z.ZodString;
|
|
206
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
207
|
+
generic_api_key: z.ZodString;
|
|
208
|
+
}, z.core.$strip>>]>;
|
|
197
209
|
//#endregion
|
|
198
210
|
export { peopledatalabsSearchCompanyElastic };
|
|
199
211
|
//# sourceMappingURL=search-company-elastic.d.cts.map
|
|
@@ -32,12 +32,12 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
32
32
|
}>>>;
|
|
33
33
|
tags: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
|
|
34
34
|
type: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
35
|
+
public: "public";
|
|
36
|
+
private: "private";
|
|
37
|
+
public_subsidiary: "public_subsidiary";
|
|
35
38
|
educational: "educational";
|
|
36
39
|
government: "government";
|
|
37
40
|
nonprofit: "nonprofit";
|
|
38
|
-
private: "private";
|
|
39
|
-
public: "public";
|
|
40
|
-
public_subsidiary: "public_subsidiary";
|
|
41
41
|
}>>>;
|
|
42
42
|
naics: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
43
43
|
sector: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -76,8 +76,6 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
76
76
|
linkedin_slug: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
77
77
|
employee_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
78
78
|
funding_stages: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodEnum<{
|
|
79
|
-
angel: "angel";
|
|
80
|
-
pre_seed: "pre_seed";
|
|
81
79
|
seed: "seed";
|
|
82
80
|
series_a: "series_a";
|
|
83
81
|
series_b: "series_b";
|
|
@@ -90,7 +88,8 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
90
88
|
series_i: "series_i";
|
|
91
89
|
series_j: "series_j";
|
|
92
90
|
series_unknown: "series_unknown";
|
|
93
|
-
|
|
91
|
+
angel: "angel";
|
|
92
|
+
pre_seed: "pre_seed";
|
|
94
93
|
private_equity: "private_equity";
|
|
95
94
|
debt_financing: "debt_financing";
|
|
96
95
|
convertible_note: "convertible_note";
|
|
@@ -98,12 +97,13 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
98
97
|
corporate_round: "corporate_round";
|
|
99
98
|
equity_crowdfunding: "equity_crowdfunding";
|
|
100
99
|
product_crowdfunding: "product_crowdfunding";
|
|
101
|
-
|
|
100
|
+
initial_coin_offering: "initial_coin_offering";
|
|
102
101
|
post_ipo_equity: "post_ipo_equity";
|
|
103
102
|
post_ipo_debt: "post_ipo_debt";
|
|
104
103
|
post_ipo_secondary: "post_ipo_secondary";
|
|
104
|
+
secondary_market: "secondary_market";
|
|
105
105
|
non_equity_assistance: "non_equity_assistance";
|
|
106
|
-
|
|
106
|
+
funding_round: "funding_round";
|
|
107
107
|
undisclosed: "undisclosed";
|
|
108
108
|
}>>>>;
|
|
109
109
|
dataset_version: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -124,8 +124,6 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
124
124
|
employee_churn_rate: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
125
125
|
employee_growth_rate: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
126
126
|
latest_funding_stage: z.ZodOptional<z.ZodNullable<z.ZodEnum<{
|
|
127
|
-
angel: "angel";
|
|
128
|
-
pre_seed: "pre_seed";
|
|
129
127
|
seed: "seed";
|
|
130
128
|
series_a: "series_a";
|
|
131
129
|
series_b: "series_b";
|
|
@@ -138,7 +136,8 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
138
136
|
series_i: "series_i";
|
|
139
137
|
series_j: "series_j";
|
|
140
138
|
series_unknown: "series_unknown";
|
|
141
|
-
|
|
139
|
+
angel: "angel";
|
|
140
|
+
pre_seed: "pre_seed";
|
|
142
141
|
private_equity: "private_equity";
|
|
143
142
|
debt_financing: "debt_financing";
|
|
144
143
|
convertible_note: "convertible_note";
|
|
@@ -146,12 +145,13 @@ declare const PeopledatalabsSearchCompanyElasticOutput: z.ZodObject<{
|
|
|
146
145
|
corporate_round: "corporate_round";
|
|
147
146
|
equity_crowdfunding: "equity_crowdfunding";
|
|
148
147
|
product_crowdfunding: "product_crowdfunding";
|
|
149
|
-
|
|
148
|
+
initial_coin_offering: "initial_coin_offering";
|
|
150
149
|
post_ipo_equity: "post_ipo_equity";
|
|
151
150
|
post_ipo_debt: "post_ipo_debt";
|
|
152
151
|
post_ipo_secondary: "post_ipo_secondary";
|
|
152
|
+
secondary_market: "secondary_market";
|
|
153
153
|
non_equity_assistance: "non_equity_assistance";
|
|
154
|
-
|
|
154
|
+
funding_round: "funding_round";
|
|
155
155
|
undisclosed: "undisclosed";
|
|
156
156
|
}>>>;
|
|
157
157
|
total_funding_raised: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -193,7 +193,19 @@ declare const peopledatalabsSearchCompanyElastic: import("@keystrokehq/action").
|
|
|
193
193
|
pretty?: boolean | undefined;
|
|
194
194
|
titlecase?: boolean | undefined;
|
|
195
195
|
scroll_token?: string | undefined;
|
|
196
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
196
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
197
|
+
connectionId: z.ZodString;
|
|
198
|
+
entityId: z.ZodString;
|
|
199
|
+
instanceId: z.ZodString;
|
|
200
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
201
|
+
generic_api_key: z.ZodString;
|
|
202
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
203
|
+
connectionId: z.ZodString;
|
|
204
|
+
entityId: z.ZodString;
|
|
205
|
+
instanceId: z.ZodString;
|
|
206
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
207
|
+
generic_api_key: z.ZodString;
|
|
208
|
+
}, z.core.$strip>>]>;
|
|
197
209
|
//#endregion
|
|
198
210
|
export { peopledatalabsSearchCompanyElastic };
|
|
199
211
|
//# sourceMappingURL=search-company-elastic.d.mts.map
|
|
@@ -56,7 +56,19 @@ declare const peopledatalabsSearchCompanyPost: import("@keystrokehq/action").Wor
|
|
|
56
56
|
titlecase?: boolean | undefined;
|
|
57
57
|
from_offset?: number | undefined;
|
|
58
58
|
scroll_token?: string | undefined;
|
|
59
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
59
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
66
|
+
connectionId: z.ZodString;
|
|
67
|
+
entityId: z.ZodString;
|
|
68
|
+
instanceId: z.ZodString;
|
|
69
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
70
|
+
generic_api_key: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
60
72
|
//#endregion
|
|
61
73
|
export { peopledatalabsSearchCompanyPost };
|
|
62
74
|
//# sourceMappingURL=search-company-post.d.cts.map
|
|
@@ -56,7 +56,19 @@ declare const peopledatalabsSearchCompanyPost: import("@keystrokehq/action").Wor
|
|
|
56
56
|
titlecase?: boolean | undefined;
|
|
57
57
|
from_offset?: number | undefined;
|
|
58
58
|
scroll_token?: string | undefined;
|
|
59
|
-
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential
|
|
59
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
60
|
+
connectionId: z.ZodString;
|
|
61
|
+
entityId: z.ZodString;
|
|
62
|
+
instanceId: z.ZodString;
|
|
63
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
64
|
+
generic_api_key: z.ZodString;
|
|
65
|
+
}, z.core.$strip>>]>, readonly [import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
66
|
+
connectionId: z.ZodString;
|
|
67
|
+
entityId: z.ZodString;
|
|
68
|
+
instanceId: z.ZodString;
|
|
69
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
70
|
+
generic_api_key: z.ZodString;
|
|
71
|
+
}, z.core.$strip>>]>;
|
|
60
72
|
//#endregion
|
|
61
73
|
export { peopledatalabsSearchCompanyPost };
|
|
62
74
|
//# sourceMappingURL=search-company-post.d.mts.map
|
package/dist/app.cjs
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_app = require("@keystrokehq/keystroke/app");
|
|
2
|
+
let zod = require("zod");
|
|
1
3
|
//#region src/app.ts
|
|
2
|
-
const peopledatalabs = (0,
|
|
4
|
+
const peopledatalabs = (0, _keystrokehq_keystroke_app.defineApp)({
|
|
3
5
|
slug: "peopledatalabs",
|
|
4
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: zod.z.string() }
|
|
5
8
|
});
|
|
6
9
|
//#endregion
|
|
7
10
|
exports.peopledatalabs = peopledatalabs;
|
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 peopledatalabs = defineApp({\n slug: \"peopledatalabs\",\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 peopledatalabs = defineApp({\n slug: \"peopledatalabs\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,kBAAA,GAAA,2BAAA,UAAA,CAA2B;CACtC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiBA,IAAAA,EAAE,OAAO,EAC5B;AACF,CAAC"}
|
package/dist/app.d.cts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const peopledatalabs: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const peopledatalabs: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { peopledatalabs };
|
|
5
13
|
//# 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,cAAA,6BAAc,GAAA,+BAAA,UAAA,mBAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.d.mts
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
1
3
|
//#region src/app.d.ts
|
|
2
|
-
declare const peopledatalabs: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential
|
|
4
|
+
declare const peopledatalabs: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential<"peopledatalabs", z.ZodObject<{
|
|
5
|
+
connectionId: z.ZodString;
|
|
6
|
+
entityId: z.ZodString;
|
|
7
|
+
instanceId: z.ZodString;
|
|
8
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
9
|
+
generic_api_key: z.ZodString;
|
|
10
|
+
}, z.core.$strip>>>;
|
|
3
11
|
//#endregion
|
|
4
12
|
export { peopledatalabs };
|
|
5
13
|
//# 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,cAAA,6BAAc,GAAA,+BAAA,UAAA,mBAAA,CAAA,CAAA,SAAA"}
|
package/dist/app.mjs
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { defineApp } from "@keystrokehq/keystroke/app";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
//#region src/app.ts
|
|
3
4
|
const peopledatalabs = defineApp({
|
|
4
5
|
slug: "peopledatalabs",
|
|
5
|
-
auth: "keystroke"
|
|
6
|
+
auth: "keystroke",
|
|
7
|
+
credential: { generic_api_key: z.string() }
|
|
6
8
|
});
|
|
7
9
|
//#endregion
|
|
8
10
|
export { peopledatalabs };
|
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 peopledatalabs = defineApp({\n slug: \"peopledatalabs\",\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 peopledatalabs = defineApp({\n slug: \"peopledatalabs\",\n auth: \"keystroke\",\n credential: {\n generic_api_key: z.string(),\n },\n});\n"],"mappings":";;;AAGA,MAAa,iBAAiB,UAAU;CACtC,MAAM;CACN,MAAM;CACN,YAAY,EACV,iBAAiB,EAAE,OAAO,EAC5B;AACF,CAAC"}
|