@keystrokehq/gender_api 0.1.2 → 0.1.4
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/get-country-of-origin-v1.cjs +2 -2
- package/dist/actions/get-country-of-origin-v1.cjs.map +1 -1
- package/dist/actions/get-country-of-origin-v1.d.cts +2 -2
- package/dist/actions/get-country-of-origin-v1.d.mts +2 -2
- package/dist/actions/get-country-of-origin-v1.mjs +2 -2
- package/dist/actions/get-country-of-origin-v1.mjs.map +1 -1
- package/dist/actions/get-country-of-origin.cjs +6 -6
- package/dist/actions/get-country-of-origin.cjs.map +1 -1
- package/dist/actions/get-country-of-origin.d.cts +6 -6
- package/dist/actions/get-country-of-origin.d.mts +6 -6
- package/dist/actions/get-country-of-origin.mjs +6 -6
- package/dist/actions/get-country-of-origin.mjs.map +1 -1
- package/dist/actions/get-statistic.cjs +3 -3
- package/dist/actions/get-statistic.cjs.map +1 -1
- package/dist/actions/get-statistic.d.cts +3 -3
- package/dist/actions/get-statistic.d.mts +3 -3
- package/dist/actions/get-statistic.mjs +3 -3
- package/dist/actions/get-statistic.mjs.map +1 -1
- package/dist/actions/query-by-email-address-multiple.cjs +5 -5
- package/dist/actions/query-by-email-address-multiple.cjs.map +1 -1
- package/dist/actions/query-by-email-address-multiple.d.cts +6 -5
- package/dist/actions/query-by-email-address-multiple.d.mts +6 -5
- package/dist/actions/query-by-email-address-multiple.mjs +5 -5
- package/dist/actions/query-by-email-address-multiple.mjs.map +1 -1
- package/dist/actions/query-by-email-address.cjs +3 -3
- package/dist/actions/query-by-email-address.cjs.map +1 -1
- package/dist/actions/query-by-email-address.d.cts +3 -3
- package/dist/actions/query-by-email-address.d.mts +3 -3
- package/dist/actions/query-by-email-address.mjs +3 -3
- package/dist/actions/query-by-email-address.mjs.map +1 -1
- package/dist/actions/query-by-first-name.cjs +3 -3
- package/dist/actions/query-by-first-name.cjs.map +1 -1
- package/dist/actions/query-by-first-name.d.cts +3 -3
- package/dist/actions/query-by-first-name.d.mts +3 -3
- package/dist/actions/query-by-first-name.mjs +3 -3
- package/dist/actions/query-by-first-name.mjs.map +1 -1
- package/dist/actions/query-by-full-name.cjs +3 -3
- package/dist/actions/query-by-full-name.cjs.map +1 -1
- package/dist/actions/query-by-full-name.d.cts +3 -3
- package/dist/actions/query-by-full-name.d.mts +3 -3
- package/dist/actions/query-by-full-name.mjs +3 -3
- package/dist/actions/query-by-full-name.mjs.map +1 -1
- package/dist/actions/query-gender-by-first-name-multiple.cjs +5 -5
- package/dist/actions/query-gender-by-first-name-multiple.cjs.map +1 -1
- package/dist/actions/query-gender-by-first-name-multiple.d.cts +6 -5
- package/dist/actions/query-gender-by-first-name-multiple.d.mts +6 -5
- package/dist/actions/query-gender-by-first-name-multiple.mjs +5 -5
- package/dist/actions/query-gender-by-first-name-multiple.mjs.map +1 -1
- package/dist/actions/query-gender-by-full-name-multiple.cjs +5 -5
- package/dist/actions/query-gender-by-full-name-multiple.cjs.map +1 -1
- package/dist/actions/query-gender-by-full-name-multiple.d.cts +6 -5
- package/dist/actions/query-gender-by-full-name-multiple.d.mts +6 -5
- package/dist/actions/query-gender-by-full-name-multiple.mjs +5 -5
- package/dist/actions/query-gender-by-full-name-multiple.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
|
@@ -8,7 +8,7 @@ const GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = zod.z.object({
|
|
|
8
8
|
country_name: zod.z.string().describe("Full name of the country (e.g., 'Austria', 'United States').").nullable().optional(),
|
|
9
9
|
continental_region: zod.z.string().describe("Continental region (e.g., 'Europe', 'Asia', 'Americas').").nullable().optional(),
|
|
10
10
|
statistical_region: zod.z.string().describe("Statistical region (e.g., 'Western Europe', 'Eastern Asia').").nullable().optional()
|
|
11
|
-
}).describe("Model for individual country of origin item.");
|
|
11
|
+
}).passthrough().describe("Model for individual country of origin item.");
|
|
12
12
|
const GenderApiGetCountryOfOriginV1Output = zod.z.object({
|
|
13
13
|
name: zod.z.string().describe("The name that was queried (lowercase).").nullable().optional(),
|
|
14
14
|
gender: zod.z.string().describe("The predicted gender for the name (e.g., 'male', 'female').").nullable().optional(),
|
|
@@ -19,7 +19,7 @@ const GenderApiGetCountryOfOriginV1Output = zod.z.object({
|
|
|
19
19
|
name_sanitized: zod.z.string().describe("The sanitized/capitalized version of the name.").nullable().optional(),
|
|
20
20
|
country_of_origin: zod.z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe("List of possible countries of origin with probability scores, ordered by likelihood.").nullable().optional(),
|
|
21
21
|
country_of_origin_map_url: zod.z.string().describe("URL to a visual map showing the country distribution.").nullable().optional()
|
|
22
|
-
}).describe("Response model from gender-api.com v1 country of origin endpoint.");
|
|
22
|
+
}).passthrough().describe("Response model from gender-api.com v1 country of origin endpoint.");
|
|
23
23
|
const genderApiGetCountryOfOriginV1 = require_action.action("GENDER_API_GET_COUNTRY_OF_ORIGIN_V1", {
|
|
24
24
|
slug: "gender_api-get-country-of-origin-v1",
|
|
25
25
|
name: "Get Country of Origin (v1)",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-country-of-origin-v1.cjs","names":["z","action"],"sources":["../../src/actions/get-country-of-origin-v1.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginV1Input = z.object({\n name: z.string().describe(\"First name to query country of origin for. Must contain at least one non-space character.\"),\n}).describe(\"Request model for retrieving country of origin using v1 simple API.\");\nconst GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = z.object({\n country: z.string().describe(\"Two-letter ISO country code (e.g., 'AT', 'US').\").nullable().optional(),\n probability: z.number().describe(\"Probability score for this country (0.0 to 1.0).\").nullable().optional(),\n country_name: z.string().describe(\"Full name of the country (e.g., 'Austria', 'United States').\").nullable().optional(),\n continental_region: z.string().describe(\"Continental region (e.g., 'Europe', 'Asia', 'Americas').\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical region (e.g., 'Western Europe', 'Eastern Asia').\").nullable().optional(),\n}).describe(\"Model for individual country of origin item.\");\nexport const GenderApiGetCountryOfOriginV1Output = z.object({\n name: z.string().describe(\"The name that was queried (lowercase).\").nullable().optional(),\n gender: z.string().describe(\"The predicted gender for the name (e.g., 'male', 'female').\").nullable().optional(),\n samples: z.number().int().describe(\"Number of samples used for the prediction.\").nullable().optional(),\n accuracy: z.number().int().describe(\"Accuracy percentage (0-100).\").nullable().optional(),\n duration: z.string().describe(\"Duration of the API request (e.g., '60ms').\").nullable().optional(),\n credits_used: z.number().int().describe(\"Number of API credits used for this request.\").nullable().optional(),\n name_sanitized: z.string().describe(\"The sanitized/capitalized version of the name.\").nullable().optional(),\n country_of_origin: z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe(\"List of possible countries of origin with probability scores, ordered by likelihood.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to a visual map showing the country distribution.\").nullable().optional(),\n}).describe(\"Response model from gender-api.com v1 country of origin endpoint.\");\n\nexport const genderApiGetCountryOfOriginV1 = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN_V1\", {\n slug: \"gender_api-get-country-of-origin-v1\",\n name: \"Get Country of Origin (v1)\",\n description: \"Tool to get the country of origin for a given first name using v1 API. Returns the most likely country where the name is most common.\",\n input: GenderApiGetCountryOfOriginV1Input,\n output: GenderApiGetCountryOfOriginV1Output,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,EACvH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,wDAAwDA,IAAAA,EAAE,OAAO;CACrE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,8CAA8C;
|
|
1
|
+
{"version":3,"file":"get-country-of-origin-v1.cjs","names":["z","action"],"sources":["../../src/actions/get-country-of-origin-v1.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginV1Input = z.object({\n name: z.string().describe(\"First name to query country of origin for. Must contain at least one non-space character.\"),\n}).describe(\"Request model for retrieving country of origin using v1 simple API.\");\nconst GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = z.object({\n country: z.string().describe(\"Two-letter ISO country code (e.g., 'AT', 'US').\").nullable().optional(),\n probability: z.number().describe(\"Probability score for this country (0.0 to 1.0).\").nullable().optional(),\n country_name: z.string().describe(\"Full name of the country (e.g., 'Austria', 'United States').\").nullable().optional(),\n continental_region: z.string().describe(\"Continental region (e.g., 'Europe', 'Asia', 'Americas').\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical region (e.g., 'Western Europe', 'Eastern Asia').\").nullable().optional(),\n}).passthrough().describe(\"Model for individual country of origin item.\");\nexport const GenderApiGetCountryOfOriginV1Output = z.object({\n name: z.string().describe(\"The name that was queried (lowercase).\").nullable().optional(),\n gender: z.string().describe(\"The predicted gender for the name (e.g., 'male', 'female').\").nullable().optional(),\n samples: z.number().int().describe(\"Number of samples used for the prediction.\").nullable().optional(),\n accuracy: z.number().int().describe(\"Accuracy percentage (0-100).\").nullable().optional(),\n duration: z.string().describe(\"Duration of the API request (e.g., '60ms').\").nullable().optional(),\n credits_used: z.number().int().describe(\"Number of API credits used for this request.\").nullable().optional(),\n name_sanitized: z.string().describe(\"The sanitized/capitalized version of the name.\").nullable().optional(),\n country_of_origin: z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe(\"List of possible countries of origin with probability scores, ordered by likelihood.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to a visual map showing the country distribution.\").nullable().optional(),\n}).passthrough().describe(\"Response model from gender-api.com v1 country of origin endpoint.\");\n\nexport const genderApiGetCountryOfOriginV1 = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN_V1\", {\n slug: \"gender_api-get-country-of-origin-v1\",\n name: \"Get Country of Origin (v1)\",\n description: \"Tool to get the country of origin for a given first name using v1 API. Returns the most likely country where the name is most common.\",\n input: GenderApiGetCountryOfOriginV1Input,\n output: GenderApiGetCountryOfOriginV1Output,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqCA,IAAAA,EAAE,OAAO,EACzD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,EACvH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,wDAAwDA,IAAAA,EAAE,OAAO;CACrE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AACxE,MAAa,sCAAsCA,IAAAA,EAAE,OAAO;CAC1D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5G,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,mBAAmBA,IAAAA,EAAE,MAAM,qDAAqD,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvM,2BAA2BA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mEAAmE;AAE7F,MAAa,gCAAgCC,eAAAA,OAAO,uCAAuC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -18,9 +18,9 @@ declare const GenderApiGetCountryOfOriginV1Output: z.ZodObject<{
|
|
|
18
18
|
country_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
continental_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
statistical_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
22
|
country_of_origin_map_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const genderApiGetCountryOfOriginV1: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
name: string;
|
|
26
26
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -18,9 +18,9 @@ declare const GenderApiGetCountryOfOriginV1Output: z.ZodObject<{
|
|
|
18
18
|
country_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
continental_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
statistical_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>>;
|
|
22
22
|
country_of_origin_map_url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const genderApiGetCountryOfOriginV1: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
name: string;
|
|
26
26
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -8,7 +8,7 @@ const GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = z.object({
|
|
|
8
8
|
country_name: z.string().describe("Full name of the country (e.g., 'Austria', 'United States').").nullable().optional(),
|
|
9
9
|
continental_region: z.string().describe("Continental region (e.g., 'Europe', 'Asia', 'Americas').").nullable().optional(),
|
|
10
10
|
statistical_region: z.string().describe("Statistical region (e.g., 'Western Europe', 'Eastern Asia').").nullable().optional()
|
|
11
|
-
}).describe("Model for individual country of origin item.");
|
|
11
|
+
}).passthrough().describe("Model for individual country of origin item.");
|
|
12
12
|
const genderApiGetCountryOfOriginV1 = action("GENDER_API_GET_COUNTRY_OF_ORIGIN_V1", {
|
|
13
13
|
slug: "gender_api-get-country-of-origin-v1",
|
|
14
14
|
name: "Get Country of Origin (v1)",
|
|
@@ -24,7 +24,7 @@ const genderApiGetCountryOfOriginV1 = action("GENDER_API_GET_COUNTRY_OF_ORIGIN_V
|
|
|
24
24
|
name_sanitized: z.string().describe("The sanitized/capitalized version of the name.").nullable().optional(),
|
|
25
25
|
country_of_origin: z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe("List of possible countries of origin with probability scores, ordered by likelihood.").nullable().optional(),
|
|
26
26
|
country_of_origin_map_url: z.string().describe("URL to a visual map showing the country distribution.").nullable().optional()
|
|
27
|
-
}).describe("Response model from gender-api.com v1 country of origin endpoint.")
|
|
27
|
+
}).passthrough().describe("Response model from gender-api.com v1 country of origin endpoint.")
|
|
28
28
|
});
|
|
29
29
|
//#endregion
|
|
30
30
|
export { genderApiGetCountryOfOriginV1 };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-country-of-origin-v1.mjs","names":[],"sources":["../../src/actions/get-country-of-origin-v1.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginV1Input = z.object({\n name: z.string().describe(\"First name to query country of origin for. Must contain at least one non-space character.\"),\n}).describe(\"Request model for retrieving country of origin using v1 simple API.\");\nconst GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = z.object({\n country: z.string().describe(\"Two-letter ISO country code (e.g., 'AT', 'US').\").nullable().optional(),\n probability: z.number().describe(\"Probability score for this country (0.0 to 1.0).\").nullable().optional(),\n country_name: z.string().describe(\"Full name of the country (e.g., 'Austria', 'United States').\").nullable().optional(),\n continental_region: z.string().describe(\"Continental region (e.g., 'Europe', 'Asia', 'Americas').\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical region (e.g., 'Western Europe', 'Eastern Asia').\").nullable().optional(),\n}).describe(\"Model for individual country of origin item.\");\nexport const GenderApiGetCountryOfOriginV1Output = z.object({\n name: z.string().describe(\"The name that was queried (lowercase).\").nullable().optional(),\n gender: z.string().describe(\"The predicted gender for the name (e.g., 'male', 'female').\").nullable().optional(),\n samples: z.number().int().describe(\"Number of samples used for the prediction.\").nullable().optional(),\n accuracy: z.number().int().describe(\"Accuracy percentage (0-100).\").nullable().optional(),\n duration: z.string().describe(\"Duration of the API request (e.g., '60ms').\").nullable().optional(),\n credits_used: z.number().int().describe(\"Number of API credits used for this request.\").nullable().optional(),\n name_sanitized: z.string().describe(\"The sanitized/capitalized version of the name.\").nullable().optional(),\n country_of_origin: z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe(\"List of possible countries of origin with probability scores, ordered by likelihood.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to a visual map showing the country distribution.\").nullable().optional(),\n}).describe(\"Response model from gender-api.com v1 country of origin endpoint.\");\n\nexport const genderApiGetCountryOfOriginV1 = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN_V1\", {\n slug: \"gender_api-get-country-of-origin-v1\",\n name: \"Get Country of Origin (v1)\",\n description: \"Tool to get the country of origin for a given first name using v1 API. Returns the most likely country where the name is most common.\",\n input: GenderApiGetCountryOfOriginV1Input,\n output: GenderApiGetCountryOfOriginV1Output,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqC,EAAE,OAAO,EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,EACvH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,wDAAwD,EAAE,OAAO;CACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,SAAS,8CAA8C;
|
|
1
|
+
{"version":3,"file":"get-country-of-origin-v1.mjs","names":[],"sources":["../../src/actions/get-country-of-origin-v1.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginV1Input = z.object({\n name: z.string().describe(\"First name to query country of origin for. Must contain at least one non-space character.\"),\n}).describe(\"Request model for retrieving country of origin using v1 simple API.\");\nconst GenderApiGetCountryOfOriginV1_CountryOriginItemSchema = z.object({\n country: z.string().describe(\"Two-letter ISO country code (e.g., 'AT', 'US').\").nullable().optional(),\n probability: z.number().describe(\"Probability score for this country (0.0 to 1.0).\").nullable().optional(),\n country_name: z.string().describe(\"Full name of the country (e.g., 'Austria', 'United States').\").nullable().optional(),\n continental_region: z.string().describe(\"Continental region (e.g., 'Europe', 'Asia', 'Americas').\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical region (e.g., 'Western Europe', 'Eastern Asia').\").nullable().optional(),\n}).passthrough().describe(\"Model for individual country of origin item.\");\nexport const GenderApiGetCountryOfOriginV1Output = z.object({\n name: z.string().describe(\"The name that was queried (lowercase).\").nullable().optional(),\n gender: z.string().describe(\"The predicted gender for the name (e.g., 'male', 'female').\").nullable().optional(),\n samples: z.number().int().describe(\"Number of samples used for the prediction.\").nullable().optional(),\n accuracy: z.number().int().describe(\"Accuracy percentage (0-100).\").nullable().optional(),\n duration: z.string().describe(\"Duration of the API request (e.g., '60ms').\").nullable().optional(),\n credits_used: z.number().int().describe(\"Number of API credits used for this request.\").nullable().optional(),\n name_sanitized: z.string().describe(\"The sanitized/capitalized version of the name.\").nullable().optional(),\n country_of_origin: z.array(GenderApiGetCountryOfOriginV1_CountryOriginItemSchema).describe(\"List of possible countries of origin with probability scores, ordered by likelihood.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to a visual map showing the country distribution.\").nullable().optional(),\n}).passthrough().describe(\"Response model from gender-api.com v1 country of origin endpoint.\");\n\nexport const genderApiGetCountryOfOriginV1 = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN_V1\", {\n slug: \"gender_api-get-country-of-origin-v1\",\n name: \"Get Country of Origin (v1)\",\n description: \"Tool to get the country of origin for a given first name using v1 API. Returns the most likely country where the name is most common.\",\n input: GenderApiGetCountryOfOriginV1Input,\n output: GenderApiGetCountryOfOriginV1Output,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAqC,EAAE,OAAO,EACzD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2FAA2F,EACvH,CAAC,CAAC,CAAC,SAAS,qEAAqE;AACjF,MAAM,wDAAwD,EAAE,OAAO;CACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtH,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxH,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,8CAA8C;AAaxE,MAAa,gCAAgC,OAAO,uCAAuC;CACzF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAjBiD,EAAE,OAAO;EAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,6DAA6D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC/G,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrG,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACjG,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5G,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1G,mBAAmB,EAAE,MAAM,qDAAqD,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACvM,2BAA2B,EAAE,OAAO,CAAC,CAAC,SAAS,uDAAuD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9H,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mEAOhB;AACV,CAAC"}
|
|
@@ -12,31 +12,31 @@ const GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = zod
|
|
|
12
12
|
email: zod.z.string().describe("Email address to query; can be provided instead of first_name.").nullable().optional(),
|
|
13
13
|
full_name: zod.z.string().describe("Full name to query; can be provided instead of first_name.").nullable().optional(),
|
|
14
14
|
first_name: zod.z.string().describe("First name to query. Required if full_name and email are not provided.").nullable().optional()
|
|
15
|
-
}).describe("Request model for retrieving a name's country of origin.\nProvide exactly one of first_name, full_name, or email.");
|
|
15
|
+
}).passthrough().describe("Request model for retrieving a name's country of origin.\nProvide exactly one of first_name, full_name, or email.");
|
|
16
16
|
const GenderApiGetCountryOfOrigin_DetailsSchema = zod.z.object({
|
|
17
17
|
country: zod.z.string().describe("Single best-guess country.").nullable().optional(),
|
|
18
18
|
samples: zod.z.number().int().describe("Count of matching records used.").nullable(),
|
|
19
19
|
duration: zod.z.string().describe("Server processing time.").nullable(),
|
|
20
20
|
credits_used: zod.z.number().int().describe("Number of requests charged for this query.").nullable(),
|
|
21
21
|
first_name_sanitized: zod.z.string().describe("Normalized version of the name.").nullable().optional()
|
|
22
|
-
});
|
|
22
|
+
}).passthrough();
|
|
23
23
|
const GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = zod.z.object({
|
|
24
24
|
id: zod.z.string().describe("Identifier of the ethnic group.").nullable(),
|
|
25
25
|
name: zod.z.string().describe("Name of the ethnic group.").nullable(),
|
|
26
26
|
percentage: zod.z.number().describe("Percentage share of this ethnic group.").nullable()
|
|
27
|
-
});
|
|
27
|
+
}).passthrough();
|
|
28
28
|
const GenderApiGetCountryOfOrigin_EthnicitySchema = zod.z.object({
|
|
29
29
|
id: zod.z.string().describe("Primary ethnic group identifier.").nullable().optional(),
|
|
30
30
|
name: zod.z.string().describe("Primary ethnic group name.").nullable().optional(),
|
|
31
31
|
distribution: zod.z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe("Distribution across ethnic groups.").nullable().optional()
|
|
32
|
-
});
|
|
32
|
+
}).passthrough();
|
|
33
33
|
const GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = zod.z.object({
|
|
34
34
|
country: zod.z.string().describe("ISO country code.").nullable(),
|
|
35
35
|
probability: zod.z.number().describe("Probability score for this country's origin.").nullable(),
|
|
36
36
|
country_name: zod.z.string().describe("Full country name.").nullable(),
|
|
37
37
|
continental_region: zod.z.string().describe("Continental region name.").nullable().optional(),
|
|
38
38
|
statistical_region: zod.z.string().describe("Statistical sub-region name.").nullable().optional()
|
|
39
|
-
});
|
|
39
|
+
}).passthrough();
|
|
40
40
|
const GenderApiGetCountryOfOriginOutput = zod.z.object({
|
|
41
41
|
input: GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema.nullable(),
|
|
42
42
|
gender: zod.z.string().describe("Detected gender: male, female, or unknown.").nullable().optional(),
|
|
@@ -50,7 +50,7 @@ const GenderApiGetCountryOfOriginOutput = zod.z.object({
|
|
|
50
50
|
country_of_origin: zod.z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe("Top 25 likely countries of origin."),
|
|
51
51
|
language_of_origin: zod.z.string().describe("Likely language of origin.").nullable().optional(),
|
|
52
52
|
country_of_origin_map_url: zod.z.string().describe("URL to interactive map for this name.").nullable()
|
|
53
|
-
});
|
|
53
|
+
}).passthrough();
|
|
54
54
|
const genderApiGetCountryOfOrigin = require_action.action("GENDER_API_GET_COUNTRY_OF_ORIGIN", {
|
|
55
55
|
slug: "gender_api-get-country-of-origin",
|
|
56
56
|
name: "Get Country of Origin",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-country-of-origin.cjs","names":["z","action"],"sources":["../../src/actions/get-country-of-origin.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginInput = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").nullable().optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").nullable().optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").nullable().optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").nullable().optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_DetailsSchema = z.object({\n country: z.string().describe(\"Single best-guess country.\").nullable().optional(),\n samples: z.number().int().describe(\"Count of matching records used.\").nullable(),\n duration: z.string().describe(\"Server processing time.\").nullable(),\n credits_used: z.number().int().describe(\"Number of requests charged for this query.\").nullable(),\n first_name_sanitized: z.string().describe(\"Normalized version of the name.\").nullable().optional(),\n});\nconst GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = z.object({\n id: z.string().describe(\"Identifier of the ethnic group.\").nullable(),\n name: z.string().describe(\"Name of the ethnic group.\").nullable(),\n percentage: z.number().describe(\"Percentage share of this ethnic group.\").nullable(),\n});\nconst GenderApiGetCountryOfOrigin_EthnicitySchema = z.object({\n id: z.string().describe(\"Primary ethnic group identifier.\").nullable().optional(),\n name: z.string().describe(\"Primary ethnic group name.\").nullable().optional(),\n distribution: z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe(\"Distribution across ethnic groups.\").nullable().optional(),\n});\nconst GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = z.object({\n country: z.string().describe(\"ISO country code.\").nullable(),\n probability: z.number().describe(\"Probability score for this country's origin.\").nullable(),\n country_name: z.string().describe(\"Full country name.\").nullable(),\n continental_region: z.string().describe(\"Continental region name.\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical sub-region name.\").nullable().optional(),\n});\nexport const GenderApiGetCountryOfOriginOutput = z.object({\n input: GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema.nullable(),\n gender: z.string().describe(\"Detected gender: male, female, or unknown.\").nullable().optional(),\n details: GenderApiGetCountryOfOrigin_DetailsSchema.nullable(),\n meaning: z.string().describe(\"Short description of the name's meaning.\").nullable().optional(),\n ethnicity: GenderApiGetCountryOfOrigin_EthnicitySchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted from full_name or email, if provided.\").nullable().optional(),\n first_name: z.string().describe(\"First name used for analysis.\").nullable().optional(),\n probability: z.number().describe(\"Overall reliability score (0-1).\").nullable(),\n result_found: z.boolean().describe(\"Whether a result was found.\").nullable(),\n country_of_origin: z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe(\"Top 25 likely countries of origin.\"),\n language_of_origin: z.string().describe(\"Likely language of origin.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to interactive map for this name.\").nullable(),\n});\n\nexport const genderApiGetCountryOfOrigin = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN\", {\n slug: \"gender_api-get-country-of-origin\",\n name: \"Get Country of Origin\",\n description: \"Tool to retrieve a name's likely countries of origin. Use after confirming the name identifier.\",\n input: GenderApiGetCountryOfOriginInput,\n output: GenderApiGetCountryOfOriginOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO;CACvD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CAC9F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;CACtG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACtG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,SAAS,mHAAmH;AAC/H,MAAM,uEAAuEA,IAAAA,EAAE,OAAO;CACpF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChI,CAAC,CAAC,CAAC,SAAS,mHAAmH;
|
|
1
|
+
{"version":3,"file":"get-country-of-origin.cjs","names":["z","action"],"sources":["../../src/actions/get-country-of-origin.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginInput = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").nullable().optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").nullable().optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").nullable().optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").nullable().optional(),\n}).passthrough().describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_DetailsSchema = z.object({\n country: z.string().describe(\"Single best-guess country.\").nullable().optional(),\n samples: z.number().int().describe(\"Count of matching records used.\").nullable(),\n duration: z.string().describe(\"Server processing time.\").nullable(),\n credits_used: z.number().int().describe(\"Number of requests charged for this query.\").nullable(),\n first_name_sanitized: z.string().describe(\"Normalized version of the name.\").nullable().optional(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = z.object({\n id: z.string().describe(\"Identifier of the ethnic group.\").nullable(),\n name: z.string().describe(\"Name of the ethnic group.\").nullable(),\n percentage: z.number().describe(\"Percentage share of this ethnic group.\").nullable(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_EthnicitySchema = z.object({\n id: z.string().describe(\"Primary ethnic group identifier.\").nullable().optional(),\n name: z.string().describe(\"Primary ethnic group name.\").nullable().optional(),\n distribution: z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe(\"Distribution across ethnic groups.\").nullable().optional(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = z.object({\n country: z.string().describe(\"ISO country code.\").nullable(),\n probability: z.number().describe(\"Probability score for this country's origin.\").nullable(),\n country_name: z.string().describe(\"Full country name.\").nullable(),\n continental_region: z.string().describe(\"Continental region name.\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical sub-region name.\").nullable().optional(),\n}).passthrough();\nexport const GenderApiGetCountryOfOriginOutput = z.object({\n input: GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema.nullable(),\n gender: z.string().describe(\"Detected gender: male, female, or unknown.\").nullable().optional(),\n details: GenderApiGetCountryOfOrigin_DetailsSchema.nullable(),\n meaning: z.string().describe(\"Short description of the name's meaning.\").nullable().optional(),\n ethnicity: GenderApiGetCountryOfOrigin_EthnicitySchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted from full_name or email, if provided.\").nullable().optional(),\n first_name: z.string().describe(\"First name used for analysis.\").nullable().optional(),\n probability: z.number().describe(\"Overall reliability score (0-1).\").nullable(),\n result_found: z.boolean().describe(\"Whether a result was found.\").nullable(),\n country_of_origin: z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe(\"Top 25 likely countries of origin.\"),\n language_of_origin: z.string().describe(\"Likely language of origin.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to interactive map for this name.\").nullable(),\n}).passthrough();\n\nexport const genderApiGetCountryOfOrigin = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN\", {\n slug: \"gender_api-get-country-of-origin\",\n name: \"Get Country of Origin\",\n description: \"Tool to retrieve a name's likely countries of origin. Use after confirming the name identifier.\",\n input: GenderApiGetCountryOfOriginInput,\n output: GenderApiGetCountryOfOriginOutput,\n});\n"],"mappings":"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"}
|
|
@@ -13,7 +13,7 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
13
13
|
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
17
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
details: z.ZodNullable<z.ZodObject<{
|
|
19
19
|
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21,7 +21,7 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
21
21
|
duration: z.ZodNullable<z.ZodString>;
|
|
22
22
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
23
23
|
first_name_sanitized: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
|
-
}, z.core.$
|
|
24
|
+
}, z.core.$loose>>;
|
|
25
25
|
meaning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
ethnicity: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27
27
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30,8 +30,8 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
30
30
|
id: z.ZodNullable<z.ZodString>;
|
|
31
31
|
name: z.ZodNullable<z.ZodString>;
|
|
32
32
|
percentage: z.ZodNullable<z.ZodNumber>;
|
|
33
|
-
}, z.core.$
|
|
34
|
-
}, z.core.$
|
|
33
|
+
}, z.core.$loose>>>>;
|
|
34
|
+
}, z.core.$loose>>>;
|
|
35
35
|
last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
37
|
probability: z.ZodNullable<z.ZodNumber>;
|
|
@@ -42,10 +42,10 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
42
42
|
country_name: z.ZodNullable<z.ZodString>;
|
|
43
43
|
continental_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44
44
|
statistical_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45
|
-
}, z.core.$
|
|
45
|
+
}, z.core.$loose>>;
|
|
46
46
|
language_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
47
|
country_of_origin_map_url: z.ZodNullable<z.ZodString>;
|
|
48
|
-
}, z.core.$
|
|
48
|
+
}, z.core.$loose>;
|
|
49
49
|
declare const genderApiGetCountryOfOrigin: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
50
50
|
id?: string | undefined;
|
|
51
51
|
email?: string | undefined;
|
|
@@ -13,7 +13,7 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
13
13
|
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
full_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
17
|
gender: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
details: z.ZodNullable<z.ZodObject<{
|
|
19
19
|
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -21,7 +21,7 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
21
21
|
duration: z.ZodNullable<z.ZodString>;
|
|
22
22
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
23
23
|
first_name_sanitized: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
|
-
}, z.core.$
|
|
24
|
+
}, z.core.$loose>>;
|
|
25
25
|
meaning: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
26
|
ethnicity: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
27
27
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
@@ -30,8 +30,8 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
30
30
|
id: z.ZodNullable<z.ZodString>;
|
|
31
31
|
name: z.ZodNullable<z.ZodString>;
|
|
32
32
|
percentage: z.ZodNullable<z.ZodNumber>;
|
|
33
|
-
}, z.core.$
|
|
34
|
-
}, z.core.$
|
|
33
|
+
}, z.core.$loose>>>>;
|
|
34
|
+
}, z.core.$loose>>>;
|
|
35
35
|
last_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
36
|
first_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
37
37
|
probability: z.ZodNullable<z.ZodNumber>;
|
|
@@ -42,10 +42,10 @@ declare const GenderApiGetCountryOfOriginOutput: z.ZodObject<{
|
|
|
42
42
|
country_name: z.ZodNullable<z.ZodString>;
|
|
43
43
|
continental_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44
44
|
statistical_region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
45
|
-
}, z.core.$
|
|
45
|
+
}, z.core.$loose>>;
|
|
46
46
|
language_of_origin: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
47
47
|
country_of_origin_map_url: z.ZodNullable<z.ZodString>;
|
|
48
|
-
}, z.core.$
|
|
48
|
+
}, z.core.$loose>;
|
|
49
49
|
declare const genderApiGetCountryOfOrigin: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
50
50
|
id?: string | undefined;
|
|
51
51
|
email?: string | undefined;
|
|
@@ -12,31 +12,31 @@ const GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = z.o
|
|
|
12
12
|
email: z.string().describe("Email address to query; can be provided instead of first_name.").nullable().optional(),
|
|
13
13
|
full_name: z.string().describe("Full name to query; can be provided instead of first_name.").nullable().optional(),
|
|
14
14
|
first_name: z.string().describe("First name to query. Required if full_name and email are not provided.").nullable().optional()
|
|
15
|
-
}).describe("Request model for retrieving a name's country of origin.\nProvide exactly one of first_name, full_name, or email.");
|
|
15
|
+
}).passthrough().describe("Request model for retrieving a name's country of origin.\nProvide exactly one of first_name, full_name, or email.");
|
|
16
16
|
const GenderApiGetCountryOfOrigin_DetailsSchema = z.object({
|
|
17
17
|
country: z.string().describe("Single best-guess country.").nullable().optional(),
|
|
18
18
|
samples: z.number().int().describe("Count of matching records used.").nullable(),
|
|
19
19
|
duration: z.string().describe("Server processing time.").nullable(),
|
|
20
20
|
credits_used: z.number().int().describe("Number of requests charged for this query.").nullable(),
|
|
21
21
|
first_name_sanitized: z.string().describe("Normalized version of the name.").nullable().optional()
|
|
22
|
-
});
|
|
22
|
+
}).passthrough();
|
|
23
23
|
const GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = z.object({
|
|
24
24
|
id: z.string().describe("Identifier of the ethnic group.").nullable(),
|
|
25
25
|
name: z.string().describe("Name of the ethnic group.").nullable(),
|
|
26
26
|
percentage: z.number().describe("Percentage share of this ethnic group.").nullable()
|
|
27
|
-
});
|
|
27
|
+
}).passthrough();
|
|
28
28
|
const GenderApiGetCountryOfOrigin_EthnicitySchema = z.object({
|
|
29
29
|
id: z.string().describe("Primary ethnic group identifier.").nullable().optional(),
|
|
30
30
|
name: z.string().describe("Primary ethnic group name.").nullable().optional(),
|
|
31
31
|
distribution: z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe("Distribution across ethnic groups.").nullable().optional()
|
|
32
|
-
});
|
|
32
|
+
}).passthrough();
|
|
33
33
|
const GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = z.object({
|
|
34
34
|
country: z.string().describe("ISO country code.").nullable(),
|
|
35
35
|
probability: z.number().describe("Probability score for this country's origin.").nullable(),
|
|
36
36
|
country_name: z.string().describe("Full country name.").nullable(),
|
|
37
37
|
continental_region: z.string().describe("Continental region name.").nullable().optional(),
|
|
38
38
|
statistical_region: z.string().describe("Statistical sub-region name.").nullable().optional()
|
|
39
|
-
});
|
|
39
|
+
}).passthrough();
|
|
40
40
|
const genderApiGetCountryOfOrigin = action("GENDER_API_GET_COUNTRY_OF_ORIGIN", {
|
|
41
41
|
slug: "gender_api-get-country-of-origin",
|
|
42
42
|
name: "Get Country of Origin",
|
|
@@ -55,7 +55,7 @@ const genderApiGetCountryOfOrigin = action("GENDER_API_GET_COUNTRY_OF_ORIGIN", {
|
|
|
55
55
|
country_of_origin: z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe("Top 25 likely countries of origin."),
|
|
56
56
|
language_of_origin: z.string().describe("Likely language of origin.").nullable().optional(),
|
|
57
57
|
country_of_origin_map_url: z.string().describe("URL to interactive map for this name.").nullable()
|
|
58
|
-
})
|
|
58
|
+
}).passthrough()
|
|
59
59
|
});
|
|
60
60
|
//#endregion
|
|
61
61
|
export { genderApiGetCountryOfOrigin };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-country-of-origin.mjs","names":[],"sources":["../../src/actions/get-country-of-origin.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginInput = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").nullable().optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").nullable().optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").nullable().optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").nullable().optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_DetailsSchema = z.object({\n country: z.string().describe(\"Single best-guess country.\").nullable().optional(),\n samples: z.number().int().describe(\"Count of matching records used.\").nullable(),\n duration: z.string().describe(\"Server processing time.\").nullable(),\n credits_used: z.number().int().describe(\"Number of requests charged for this query.\").nullable(),\n first_name_sanitized: z.string().describe(\"Normalized version of the name.\").nullable().optional(),\n});\nconst GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = z.object({\n id: z.string().describe(\"Identifier of the ethnic group.\").nullable(),\n name: z.string().describe(\"Name of the ethnic group.\").nullable(),\n percentage: z.number().describe(\"Percentage share of this ethnic group.\").nullable(),\n});\nconst GenderApiGetCountryOfOrigin_EthnicitySchema = z.object({\n id: z.string().describe(\"Primary ethnic group identifier.\").nullable().optional(),\n name: z.string().describe(\"Primary ethnic group name.\").nullable().optional(),\n distribution: z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe(\"Distribution across ethnic groups.\").nullable().optional(),\n});\nconst GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = z.object({\n country: z.string().describe(\"ISO country code.\").nullable(),\n probability: z.number().describe(\"Probability score for this country's origin.\").nullable(),\n country_name: z.string().describe(\"Full country name.\").nullable(),\n continental_region: z.string().describe(\"Continental region name.\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical sub-region name.\").nullable().optional(),\n});\nexport const GenderApiGetCountryOfOriginOutput = z.object({\n input: GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema.nullable(),\n gender: z.string().describe(\"Detected gender: male, female, or unknown.\").nullable().optional(),\n details: GenderApiGetCountryOfOrigin_DetailsSchema.nullable(),\n meaning: z.string().describe(\"Short description of the name's meaning.\").nullable().optional(),\n ethnicity: GenderApiGetCountryOfOrigin_EthnicitySchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted from full_name or email, if provided.\").nullable().optional(),\n first_name: z.string().describe(\"First name used for analysis.\").nullable().optional(),\n probability: z.number().describe(\"Overall reliability score (0-1).\").nullable(),\n result_found: z.boolean().describe(\"Whether a result was found.\").nullable(),\n country_of_origin: z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe(\"Top 25 likely countries of origin.\"),\n language_of_origin: z.string().describe(\"Likely language of origin.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to interactive map for this name.\").nullable(),\n});\n\nexport const genderApiGetCountryOfOrigin = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN\", {\n slug: \"gender_api-get-country-of-origin\",\n name: \"Get Country of Origin\",\n description: \"Tool to retrieve a name's likely countries of origin. Use after confirming the name identifier.\",\n input: GenderApiGetCountryOfOriginInput,\n output: GenderApiGetCountryOfOriginOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO;CACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CAC9F,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;CACtG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACtG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,SAAS,mHAAmH;AAC/H,MAAM,uEAAuE,EAAE,OAAO;CACpF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChI,CAAC,CAAC,CAAC,SAAS,mHAAmH;
|
|
1
|
+
{"version":3,"file":"get-country-of-origin.mjs","names":[],"sources":["../../src/actions/get-country-of-origin.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetCountryOfOriginInput = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").optional(),\n}).describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema = z.object({\n id: z.string().describe(\"Client-defined request ID for correlation (max 50 chars).\").nullable().optional(),\n email: z.string().describe(\"Email address to query; can be provided instead of first_name.\").nullable().optional(),\n full_name: z.string().describe(\"Full name to query; can be provided instead of first_name.\").nullable().optional(),\n first_name: z.string().describe(\"First name to query. Required if full_name and email are not provided.\").nullable().optional(),\n}).passthrough().describe(\"Request model for retrieving a name's country of origin.\\nProvide exactly one of first_name, full_name, or email.\");\nconst GenderApiGetCountryOfOrigin_DetailsSchema = z.object({\n country: z.string().describe(\"Single best-guess country.\").nullable().optional(),\n samples: z.number().int().describe(\"Count of matching records used.\").nullable(),\n duration: z.string().describe(\"Server processing time.\").nullable(),\n credits_used: z.number().int().describe(\"Number of requests charged for this query.\").nullable(),\n first_name_sanitized: z.string().describe(\"Normalized version of the name.\").nullable().optional(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema = z.object({\n id: z.string().describe(\"Identifier of the ethnic group.\").nullable(),\n name: z.string().describe(\"Name of the ethnic group.\").nullable(),\n percentage: z.number().describe(\"Percentage share of this ethnic group.\").nullable(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_EthnicitySchema = z.object({\n id: z.string().describe(\"Primary ethnic group identifier.\").nullable().optional(),\n name: z.string().describe(\"Primary ethnic group name.\").nullable().optional(),\n distribution: z.array(GenderApiGetCountryOfOrigin_EthnicityDistributionItemSchema).describe(\"Distribution across ethnic groups.\").nullable().optional(),\n}).passthrough();\nconst GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema = z.object({\n country: z.string().describe(\"ISO country code.\").nullable(),\n probability: z.number().describe(\"Probability score for this country's origin.\").nullable(),\n country_name: z.string().describe(\"Full country name.\").nullable(),\n continental_region: z.string().describe(\"Continental region name.\").nullable().optional(),\n statistical_region: z.string().describe(\"Statistical sub-region name.\").nullable().optional(),\n}).passthrough();\nexport const GenderApiGetCountryOfOriginOutput = z.object({\n input: GenderApiGetCountryOfOrigin_GenderApiGetCountryOfOriginRequestSchema.nullable(),\n gender: z.string().describe(\"Detected gender: male, female, or unknown.\").nullable().optional(),\n details: GenderApiGetCountryOfOrigin_DetailsSchema.nullable(),\n meaning: z.string().describe(\"Short description of the name's meaning.\").nullable().optional(),\n ethnicity: GenderApiGetCountryOfOrigin_EthnicitySchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted from full_name or email, if provided.\").nullable().optional(),\n first_name: z.string().describe(\"First name used for analysis.\").nullable().optional(),\n probability: z.number().describe(\"Overall reliability score (0-1).\").nullable(),\n result_found: z.boolean().describe(\"Whether a result was found.\").nullable(),\n country_of_origin: z.array(GenderApiGetCountryOfOrigin_CountryOfOriginItemSchema).describe(\"Top 25 likely countries of origin.\"),\n language_of_origin: z.string().describe(\"Likely language of origin.\").nullable().optional(),\n country_of_origin_map_url: z.string().describe(\"URL to interactive map for this name.\").nullable(),\n}).passthrough();\n\nexport const genderApiGetCountryOfOrigin = action(\"GENDER_API_GET_COUNTRY_OF_ORIGIN\", {\n slug: \"gender_api-get-country-of-origin\",\n name: \"Get Country of Origin\",\n description: \"Tool to retrieve a name's likely countries of origin. Use after confirming the name identifier.\",\n input: GenderApiGetCountryOfOriginInput,\n output: GenderApiGetCountryOfOriginOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO;CACvD,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CAC9F,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS;CACtG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS;CACtG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS;AACrH,CAAC,CAAC,CAAC,SAAS,mHAAmH;AAC/H,MAAM,uEAAuE,EAAE,OAAO;CACpF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wEAAwE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAChI,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mHAAmH;AAC7I,MAAM,4CAA4C,EAAE,OAAO;CACzD,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/E,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CAC/E,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS;CAClE,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC/F,sBAAsB,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnG,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,8DAA8D,EAAE,OAAO;CAC3E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS;CACpE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CAChE,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS;AACrF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,8CAA8C,EAAE,OAAO;CAC3D,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,cAAc,EAAE,MAAM,2DAA2D,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACxJ,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,wDAAwD,EAAE,OAAO;CACrE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS;CAC3D,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC1F,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,oBAAoB,CAAC,CAAC,SAAS;CACjE,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9F,CAAC,CAAC,CAAC,YAAY;AAgBf,MAAa,8BAA8B,OAAO,oCAAoC;CACpF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QApB+C,EAAE,OAAO;EACxD,OAAO,qEAAqE,SAAS;EACrF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC9F,SAAS,0CAA0C,SAAS;EAC5D,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7F,WAAW,4CAA4C,SAAS,CAAC,CAAC,SAAS;EAC3E,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAChH,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EAC9E,cAAc,EAAE,QAAQ,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;EAC3E,mBAAmB,EAAE,MAAM,qDAAqD,CAAC,CAAC,SAAS,oCAAoC;EAC/H,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC1F,2BAA2B,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CACnG,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -5,17 +5,17 @@ const GenderApiGetStatisticInput = zod.z.object({}).describe("Request model for
|
|
|
5
5
|
const GenderApiGetStatistic_StatisticDetailsSchema = zod.z.object({
|
|
6
6
|
duration: zod.z.string().describe("Server processing time for this query, e.g., '83ms'.").nullable(),
|
|
7
7
|
credits_used: zod.z.number().int().describe("Requests consumed by this query.").nullable()
|
|
8
|
-
});
|
|
8
|
+
}).passthrough();
|
|
9
9
|
const GenderApiGetStatistic_UsageLastMonthSchema = zod.z.object({
|
|
10
10
|
date: zod.z.string().describe("Month of usage in 'YYYY-MM' format.").nullable(),
|
|
11
11
|
credits_used: zod.z.number().int().describe("Requests used last month.").nullable()
|
|
12
|
-
});
|
|
12
|
+
}).passthrough();
|
|
13
13
|
const GenderApiGetStatisticOutput = zod.z.object({
|
|
14
14
|
details: GenderApiGetStatistic_StatisticDetailsSchema.nullable(),
|
|
15
15
|
is_limit_reached: zod.z.boolean().describe("True if no requests left.").nullable(),
|
|
16
16
|
usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),
|
|
17
17
|
remaining_credits: zod.z.number().int().describe("Number of requests left.").nullable()
|
|
18
|
-
});
|
|
18
|
+
}).passthrough();
|
|
19
19
|
const genderApiGetStatistic = require_action.action("GENDER_API_GET_STATISTIC", {
|
|
20
20
|
slug: "gender_api-get-statistic",
|
|
21
21
|
name: "Get Gender API Statistics",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-statistic.cjs","names":["z","action"],"sources":["../../src/actions/get-statistic.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetStatisticInput = z.object({}).describe(\"Request model for GET /v2/statistic - no parameters.\");\nconst GenderApiGetStatistic_StatisticDetailsSchema = z.object({\n duration: z.string().describe(\"Server processing time for this query, e.g., '83ms'.\").nullable(),\n credits_used: z.number().int().describe(\"Requests consumed by this query.\").nullable(),\n});\nconst GenderApiGetStatistic_UsageLastMonthSchema = z.object({\n date: z.string().describe(\"Month of usage in 'YYYY-MM' format.\").nullable(),\n credits_used: z.number().int().describe(\"Requests used last month.\").nullable(),\n});\nexport const GenderApiGetStatisticOutput = z.object({\n details: GenderApiGetStatistic_StatisticDetailsSchema.nullable(),\n is_limit_reached: z.boolean().describe(\"True if no requests left.\").nullable(),\n usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),\n remaining_credits: z.number().int().describe(\"Number of requests left.\").nullable(),\n});\n\nexport const genderApiGetStatistic = action(\"GENDER_API_GET_STATISTIC\", {\n slug: \"gender_api-get-statistic\",\n name: \"Get Gender API Statistics\",\n description: \"Tool to retrieve account statistics from Gender-API, including remaining credits and usage details. Use when you need to check your credit balance before performing further gender lookups.\",\n input: GenderApiGetStatisticInput,\n output: GenderApiGetStatisticOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD;AACtH,MAAM,+CAA+CA,IAAAA,EAAE,OAAO;CAC5D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC/F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACvF,CAAC;
|
|
1
|
+
{"version":3,"file":"get-statistic.cjs","names":["z","action"],"sources":["../../src/actions/get-statistic.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetStatisticInput = z.object({}).describe(\"Request model for GET /v2/statistic - no parameters.\");\nconst GenderApiGetStatistic_StatisticDetailsSchema = z.object({\n duration: z.string().describe(\"Server processing time for this query, e.g., '83ms'.\").nullable(),\n credits_used: z.number().int().describe(\"Requests consumed by this query.\").nullable(),\n}).passthrough();\nconst GenderApiGetStatistic_UsageLastMonthSchema = z.object({\n date: z.string().describe(\"Month of usage in 'YYYY-MM' format.\").nullable(),\n credits_used: z.number().int().describe(\"Requests used last month.\").nullable(),\n}).passthrough();\nexport const GenderApiGetStatisticOutput = z.object({\n details: GenderApiGetStatistic_StatisticDetailsSchema.nullable(),\n is_limit_reached: z.boolean().describe(\"True if no requests left.\").nullable(),\n usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),\n remaining_credits: z.number().int().describe(\"Number of requests left.\").nullable(),\n}).passthrough();\n\nexport const genderApiGetStatistic = action(\"GENDER_API_GET_STATISTIC\", {\n slug: \"gender_api-get-statistic\",\n name: \"Get Gender API Statistics\",\n description: \"Tool to retrieve account statistics from Gender-API, including remaining credits and usage details. Use when you need to check your credit balance before performing further gender lookups.\",\n input: GenderApiGetStatisticInput,\n output: GenderApiGetStatisticOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD;AACtH,MAAM,+CAA+CA,IAAAA,EAAE,OAAO;CAC5D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC/F,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,6CAA6CA,IAAAA,EAAE,OAAO;CAC1D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC1E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;AAChF,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,8BAA8BA,IAAAA,EAAE,OAAO;CAClD,SAAS,6CAA6C,SAAS;CAC/D,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;CAC7E,kBAAkB,2CAA2C,SAAS;CACtE,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;AACpF,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -6,14 +6,14 @@ declare const GenderApiGetStatisticOutput: z.ZodObject<{
|
|
|
6
6
|
details: z.ZodNullable<z.ZodObject<{
|
|
7
7
|
duration: z.ZodNullable<z.ZodString>;
|
|
8
8
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>>;
|
|
10
10
|
is_limit_reached: z.ZodNullable<z.ZodBoolean>;
|
|
11
11
|
usage_last_month: z.ZodNullable<z.ZodObject<{
|
|
12
12
|
date: z.ZodNullable<z.ZodString>;
|
|
13
13
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
14
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>;
|
|
15
15
|
remaining_credits: z.ZodNullable<z.ZodNumber>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>;
|
|
17
17
|
declare const genderApiGetStatistic: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { genderApiGetStatistic };
|
|
@@ -6,14 +6,14 @@ declare const GenderApiGetStatisticOutput: z.ZodObject<{
|
|
|
6
6
|
details: z.ZodNullable<z.ZodObject<{
|
|
7
7
|
duration: z.ZodNullable<z.ZodString>;
|
|
8
8
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>>;
|
|
10
10
|
is_limit_reached: z.ZodNullable<z.ZodBoolean>;
|
|
11
11
|
usage_last_month: z.ZodNullable<z.ZodObject<{
|
|
12
12
|
date: z.ZodNullable<z.ZodString>;
|
|
13
13
|
credits_used: z.ZodNullable<z.ZodNumber>;
|
|
14
|
-
}, z.core.$
|
|
14
|
+
}, z.core.$loose>>;
|
|
15
15
|
remaining_credits: z.ZodNullable<z.ZodNumber>;
|
|
16
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>;
|
|
17
17
|
declare const genderApiGetStatistic: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
18
18
|
//#endregion
|
|
19
19
|
export { genderApiGetStatistic };
|
|
@@ -5,11 +5,11 @@ const GenderApiGetStatisticInput = z.object({}).describe("Request model for GET
|
|
|
5
5
|
const GenderApiGetStatistic_StatisticDetailsSchema = z.object({
|
|
6
6
|
duration: z.string().describe("Server processing time for this query, e.g., '83ms'.").nullable(),
|
|
7
7
|
credits_used: z.number().int().describe("Requests consumed by this query.").nullable()
|
|
8
|
-
});
|
|
8
|
+
}).passthrough();
|
|
9
9
|
const GenderApiGetStatistic_UsageLastMonthSchema = z.object({
|
|
10
10
|
date: z.string().describe("Month of usage in 'YYYY-MM' format.").nullable(),
|
|
11
11
|
credits_used: z.number().int().describe("Requests used last month.").nullable()
|
|
12
|
-
});
|
|
12
|
+
}).passthrough();
|
|
13
13
|
const genderApiGetStatistic = action("GENDER_API_GET_STATISTIC", {
|
|
14
14
|
slug: "gender_api-get-statistic",
|
|
15
15
|
name: "Get Gender API Statistics",
|
|
@@ -20,7 +20,7 @@ const genderApiGetStatistic = action("GENDER_API_GET_STATISTIC", {
|
|
|
20
20
|
is_limit_reached: z.boolean().describe("True if no requests left.").nullable(),
|
|
21
21
|
usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),
|
|
22
22
|
remaining_credits: z.number().int().describe("Number of requests left.").nullable()
|
|
23
|
-
})
|
|
23
|
+
}).passthrough()
|
|
24
24
|
});
|
|
25
25
|
//#endregion
|
|
26
26
|
export { genderApiGetStatistic };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-statistic.mjs","names":[],"sources":["../../src/actions/get-statistic.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetStatisticInput = z.object({}).describe(\"Request model for GET /v2/statistic - no parameters.\");\nconst GenderApiGetStatistic_StatisticDetailsSchema = z.object({\n duration: z.string().describe(\"Server processing time for this query, e.g., '83ms'.\").nullable(),\n credits_used: z.number().int().describe(\"Requests consumed by this query.\").nullable(),\n});\nconst GenderApiGetStatistic_UsageLastMonthSchema = z.object({\n date: z.string().describe(\"Month of usage in 'YYYY-MM' format.\").nullable(),\n credits_used: z.number().int().describe(\"Requests used last month.\").nullable(),\n});\nexport const GenderApiGetStatisticOutput = z.object({\n details: GenderApiGetStatistic_StatisticDetailsSchema.nullable(),\n is_limit_reached: z.boolean().describe(\"True if no requests left.\").nullable(),\n usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),\n remaining_credits: z.number().int().describe(\"Number of requests left.\").nullable(),\n});\n\nexport const genderApiGetStatistic = action(\"GENDER_API_GET_STATISTIC\", {\n slug: \"gender_api-get-statistic\",\n name: \"Get Gender API Statistics\",\n description: \"Tool to retrieve account statistics from Gender-API, including remaining credits and usage details. Use when you need to check your credit balance before performing further gender lookups.\",\n input: GenderApiGetStatisticInput,\n output: GenderApiGetStatisticOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD;AACtH,MAAM,+CAA+C,EAAE,OAAO;CAC5D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC/F,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACvF,CAAC;
|
|
1
|
+
{"version":3,"file":"get-statistic.mjs","names":[],"sources":["../../src/actions/get-statistic.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiGetStatisticInput = z.object({}).describe(\"Request model for GET /v2/statistic - no parameters.\");\nconst GenderApiGetStatistic_StatisticDetailsSchema = z.object({\n duration: z.string().describe(\"Server processing time for this query, e.g., '83ms'.\").nullable(),\n credits_used: z.number().int().describe(\"Requests consumed by this query.\").nullable(),\n}).passthrough();\nconst GenderApiGetStatistic_UsageLastMonthSchema = z.object({\n date: z.string().describe(\"Month of usage in 'YYYY-MM' format.\").nullable(),\n credits_used: z.number().int().describe(\"Requests used last month.\").nullable(),\n}).passthrough();\nexport const GenderApiGetStatisticOutput = z.object({\n details: GenderApiGetStatistic_StatisticDetailsSchema.nullable(),\n is_limit_reached: z.boolean().describe(\"True if no requests left.\").nullable(),\n usage_last_month: GenderApiGetStatistic_UsageLastMonthSchema.nullable(),\n remaining_credits: z.number().int().describe(\"Number of requests left.\").nullable(),\n}).passthrough();\n\nexport const genderApiGetStatistic = action(\"GENDER_API_GET_STATISTIC\", {\n slug: \"gender_api-get-statistic\",\n name: \"Get Gender API Statistics\",\n description: \"Tool to retrieve account statistics from Gender-API, including remaining credits and usage details. Use when you need to check your credit balance before performing further gender lookups.\",\n input: GenderApiGetStatisticInput,\n output: GenderApiGetStatisticOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6B,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,SAAS,sDAAsD;AACtH,MAAM,+CAA+C,EAAE,OAAO;CAC5D,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CAC/F,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;AACvF,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,6CAA6C,EAAE,OAAO;CAC1D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CAC1E,cAAc,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;AAChF,CAAC,CAAC,CAAC,YAAY;AAQf,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAZyC,EAAE,OAAO;EAClD,SAAS,6CAA6C,SAAS;EAC/D,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS;EAC7E,kBAAkB,2CAA2C,SAAS;EACtE,mBAAmB,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACpF,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -7,14 +7,14 @@ const GenderApiQueryByEmailAddressMultipleInput = zod.z.object({ emails: zod.z.a
|
|
|
7
7
|
email: zod.z.string().describe("Email address to query for gender determination"),
|
|
8
8
|
locale: zod.z.string().describe("Browser locale code (e.g., 'en_US') for inference hints").optional(),
|
|
9
9
|
country: zod.z.string().describe("ISO 3166 alpha-2 country code for improved regional accuracy").optional()
|
|
10
|
-
}).describe("Single email query item in batch request.")).describe("List of email queries to process in a single batch request") }).describe("Request model for batch querying gender by multiple email addresses.");
|
|
10
|
+
}).passthrough().describe("Single email query item in batch request.")).describe("List of email queries to process in a single batch request") }).describe("Request model for batch querying gender by multiple email addresses.");
|
|
11
11
|
const GenderApiQueryByEmailAddressMultiple_InputEchoSchema = zod.z.object({
|
|
12
12
|
id: zod.z.string().describe("Correlation ID if provided in request").nullable().optional(),
|
|
13
13
|
ip: zod.z.string().describe("IP address if provided in request").nullable().optional(),
|
|
14
14
|
email: zod.z.string().describe("The email address that was queried").nullable(),
|
|
15
15
|
locale: zod.z.string().describe("Locale code if provided in request").nullable().optional(),
|
|
16
16
|
country: zod.z.string().describe("Country code if provided in request").nullable().optional()
|
|
17
|
-
}).describe("Echo of a single email query from the batch request.");
|
|
17
|
+
}).passthrough().describe("Echo of a single email query from the batch request.");
|
|
18
18
|
const GenderApiQueryByEmailAddressMultiple_DetailsSchema = zod.z.object({
|
|
19
19
|
country: zod.z.string().describe("Country code used for the query (from request or auto-detected)").nullable().optional(),
|
|
20
20
|
samples: zod.z.number().int().describe("Number of matching database records used for determination (absent if no result found)").nullable().optional(),
|
|
@@ -22,7 +22,7 @@ const GenderApiQueryByEmailAddressMultiple_DetailsSchema = zod.z.object({
|
|
|
22
22
|
credits_used: zod.z.number().int().describe("Number of API credits consumed by this query (0 if no result found)").nullable(),
|
|
23
23
|
email_sanitized: zod.z.number().int().describe("Sanitized email token count (if applicable)").nullable().optional(),
|
|
24
24
|
first_name_sanitized: zod.z.string().describe("Normalized/lowercase first name extracted from the email (absent if no result found)").nullable().optional()
|
|
25
|
-
}).describe("Detailed statistics for a single gender query result.");
|
|
25
|
+
}).passthrough().describe("Detailed statistics for a single gender query result.");
|
|
26
26
|
const GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema = zod.z.object({
|
|
27
27
|
type: zod.z.string().describe("Error type URI when an error occurs").nullable().optional(),
|
|
28
28
|
input: GenderApiQueryByEmailAddressMultiple_InputEchoSchema.nullable(),
|
|
@@ -39,8 +39,8 @@ const GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema = zod.z.objec
|
|
|
39
39
|
first_name: zod.z.string().describe("First name extracted/parsed from the email local part (e.g., 'Sandra' from sandra.miller14@gmail.com)").nullable().optional(),
|
|
40
40
|
probability: zod.z.number().describe("Confidence score from 0.0 to 1.0 indicating reliability of the gender prediction (absent if result_found is False)").nullable().optional(),
|
|
41
41
|
result_found: zod.z.boolean().describe("True if a gender determination was made, False otherwise (absent on error)").nullable().optional()
|
|
42
|
-
}).describe("Gender determination result for a single email address.\nCan be either a successful result or an error response.");
|
|
43
|
-
const GenderApiQueryByEmailAddressMultipleOutput = zod.z.object({ results: zod.z.array(GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema).describe("List of gender determination results, one per input email query") }).describe("Response model for batch gender queries by email addresses.");
|
|
42
|
+
}).passthrough().describe("Gender determination result for a single email address.\nCan be either a successful result or an error response.");
|
|
43
|
+
const GenderApiQueryByEmailAddressMultipleOutput = zod.z.object({ results: zod.z.array(GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema).describe("List of gender determination results, one per input email query") }).passthrough().describe("Response model for batch gender queries by email addresses.");
|
|
44
44
|
const genderApiQueryByEmailAddressMultiple = require_action.action("GENDER_API_QUERY_BY_EMAIL_ADDRESS_MULTIPLE", {
|
|
45
45
|
slug: "gender_api-query-by-email-address-multiple",
|
|
46
46
|
name: "Query Gender by Multiple Email Addresses",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"query-by-email-address-multiple.cjs","names":["z","action"],"sources":["../../src/actions/query-by-email-address-multiple.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiQueryByEmailAddressMultipleInput = z.object({\n emails: z.array(z.object({\n id: z.string().describe(\"Client-provided correlation ID (max 50 chars) to match requests with responses\").optional(),\n ip: z.string().describe(\"Valid IPv4 or IPv6 address for geo-based inference\").optional(),\n email: z.string().describe(\"Email address to query for gender determination\"),\n locale: z.string().describe(\"Browser locale code (e.g., 'en_US') for inference hints\").optional(),\n country: z.string().describe(\"ISO 3166 alpha-2 country code for improved regional accuracy\").optional(),\n}).describe(\"Single email query item in batch request.\")).describe(\"List of email queries to process in a single batch request\"),\n}).describe(\"Request model for batch querying gender by multiple email addresses.\");\nconst GenderApiQueryByEmailAddressMultiple_InputEchoSchema = z.object({\n id: z.string().describe(\"Correlation ID if provided in request\").nullable().optional(),\n ip: z.string().describe(\"IP address if provided in request\").nullable().optional(),\n email: z.string().describe(\"The email address that was queried\").nullable(),\n locale: z.string().describe(\"Locale code if provided in request\").nullable().optional(),\n country: z.string().describe(\"Country code if provided in request\").nullable().optional(),\n}).describe(\"Echo of a single email query from the batch request.\");\nconst GenderApiQueryByEmailAddressMultiple_DetailsSchema = z.object({\n country: z.string().describe(\"Country code used for the query (from request or auto-detected)\").nullable().optional(),\n samples: z.number().int().describe(\"Number of matching database records used for determination (absent if no result found)\").nullable().optional(),\n duration: z.string().describe(\"Server processing time (e.g., '82ms')\").nullable(),\n credits_used: z.number().int().describe(\"Number of API credits consumed by this query (0 if no result found)\").nullable(),\n email_sanitized: z.number().int().describe(\"Sanitized email token count (if applicable)\").nullable().optional(),\n first_name_sanitized: z.string().describe(\"Normalized/lowercase first name extracted from the email (absent if no result found)\").nullable().optional(),\n}).describe(\"Detailed statistics for a single gender query result.\");\nconst GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema = z.object({\n type: z.string().describe(\"Error type URI when an error occurs\").nullable().optional(),\n input: GenderApiQueryByEmailAddressMultiple_InputEchoSchema.nullable(),\n title: z.string().describe(\"Error title/code when an error occurs\").nullable().optional(),\n detail: z.string().describe(\"Error detail message when an error occurs\").nullable().optional(),\n gender: z.enum([\"male\", \"female\", \"unknown\"]).describe(\"Predicted gender: 'male', 'female', or 'unknown' (absent if result_found is False)\").nullable().optional(),\n status: z.number().int().describe(\"HTTP status code when an error occurs (e.g., 400 for invalid email)\").nullable().optional(),\n details: GenderApiQueryByEmailAddressMultiple_DetailsSchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted/parsed from the email local part (e.g., 'Miller' from sandra.miller14@gmail.com)\").nullable().optional(),\n first_name: z.string().describe(\"First name extracted/parsed from the email local part (e.g., 'Sandra' from sandra.miller14@gmail.com)\").nullable().optional(),\n probability: z.number().describe(\"Confidence score from 0.0 to 1.0 indicating reliability of the gender prediction (absent if result_found is False)\").nullable().optional(),\n result_found: z.boolean().describe(\"True if a gender determination was made, False otherwise (absent on error)\").nullable().optional(),\n}).describe(\"Gender determination result for a single email address.\\nCan be either a successful result or an error response.\");\nexport const GenderApiQueryByEmailAddressMultipleOutput = z.object({\n results: z.array(GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema).describe(\"List of gender determination results, one per input email query\"),\n}).describe(\"Response model for batch gender queries by email addresses.\");\n\nexport const genderApiQueryByEmailAddressMultiple = action(\"GENDER_API_QUERY_BY_EMAIL_ADDRESS_MULTIPLE\", {\n slug: \"gender_api-query-by-email-address-multiple\",\n name: \"Query Gender by Multiple Email Addresses\",\n description: \"Determine likely gender for multiple email addresses in a single batch request. Returns male/female/unknown with confidence scores for each email. Use for efficient bulk processing. Each result includes result_found flag and optional probability score.\",\n input: GenderApiQueryByEmailAddressMultipleInput,\n output: GenderApiQueryByEmailAddressMultipleOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4CAA4CA,IAAAA,EAAE,OAAO,EAChE,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;CACzB,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CACnH,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CACvF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD;CAC5E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CAChG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;AACxG,CAAC,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,CAAC,SAAS,4DAA4D,
|
|
1
|
+
{"version":3,"file":"query-by-email-address-multiple.cjs","names":["z","action"],"sources":["../../src/actions/query-by-email-address-multiple.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const GenderApiQueryByEmailAddressMultipleInput = z.object({\n emails: z.array(z.object({\n id: z.string().describe(\"Client-provided correlation ID (max 50 chars) to match requests with responses\").optional(),\n ip: z.string().describe(\"Valid IPv4 or IPv6 address for geo-based inference\").optional(),\n email: z.string().describe(\"Email address to query for gender determination\"),\n locale: z.string().describe(\"Browser locale code (e.g., 'en_US') for inference hints\").optional(),\n country: z.string().describe(\"ISO 3166 alpha-2 country code for improved regional accuracy\").optional(),\n}).passthrough().describe(\"Single email query item in batch request.\")).describe(\"List of email queries to process in a single batch request\"),\n}).describe(\"Request model for batch querying gender by multiple email addresses.\");\nconst GenderApiQueryByEmailAddressMultiple_InputEchoSchema = z.object({\n id: z.string().describe(\"Correlation ID if provided in request\").nullable().optional(),\n ip: z.string().describe(\"IP address if provided in request\").nullable().optional(),\n email: z.string().describe(\"The email address that was queried\").nullable(),\n locale: z.string().describe(\"Locale code if provided in request\").nullable().optional(),\n country: z.string().describe(\"Country code if provided in request\").nullable().optional(),\n}).passthrough().describe(\"Echo of a single email query from the batch request.\");\nconst GenderApiQueryByEmailAddressMultiple_DetailsSchema = z.object({\n country: z.string().describe(\"Country code used for the query (from request or auto-detected)\").nullable().optional(),\n samples: z.number().int().describe(\"Number of matching database records used for determination (absent if no result found)\").nullable().optional(),\n duration: z.string().describe(\"Server processing time (e.g., '82ms')\").nullable(),\n credits_used: z.number().int().describe(\"Number of API credits consumed by this query (0 if no result found)\").nullable(),\n email_sanitized: z.number().int().describe(\"Sanitized email token count (if applicable)\").nullable().optional(),\n first_name_sanitized: z.string().describe(\"Normalized/lowercase first name extracted from the email (absent if no result found)\").nullable().optional(),\n}).passthrough().describe(\"Detailed statistics for a single gender query result.\");\nconst GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema = z.object({\n type: z.string().describe(\"Error type URI when an error occurs\").nullable().optional(),\n input: GenderApiQueryByEmailAddressMultiple_InputEchoSchema.nullable(),\n title: z.string().describe(\"Error title/code when an error occurs\").nullable().optional(),\n detail: z.string().describe(\"Error detail message when an error occurs\").nullable().optional(),\n gender: z.enum([\"male\", \"female\", \"unknown\"]).describe(\"Predicted gender: 'male', 'female', or 'unknown' (absent if result_found is False)\").nullable().optional(),\n status: z.number().int().describe(\"HTTP status code when an error occurs (e.g., 400 for invalid email)\").nullable().optional(),\n details: GenderApiQueryByEmailAddressMultiple_DetailsSchema.nullable().optional(),\n last_name: z.string().describe(\"Last name extracted/parsed from the email local part (e.g., 'Miller' from sandra.miller14@gmail.com)\").nullable().optional(),\n first_name: z.string().describe(\"First name extracted/parsed from the email local part (e.g., 'Sandra' from sandra.miller14@gmail.com)\").nullable().optional(),\n probability: z.number().describe(\"Confidence score from 0.0 to 1.0 indicating reliability of the gender prediction (absent if result_found is False)\").nullable().optional(),\n result_found: z.boolean().describe(\"True if a gender determination was made, False otherwise (absent on error)\").nullable().optional(),\n}).passthrough().describe(\"Gender determination result for a single email address.\\nCan be either a successful result or an error response.\");\nexport const GenderApiQueryByEmailAddressMultipleOutput = z.object({\n results: z.array(GenderApiQueryByEmailAddressMultiple_EmailGenderResultSchema).describe(\"List of gender determination results, one per input email query\"),\n}).passthrough().describe(\"Response model for batch gender queries by email addresses.\");\n\nexport const genderApiQueryByEmailAddressMultiple = action(\"GENDER_API_QUERY_BY_EMAIL_ADDRESS_MULTIPLE\", {\n slug: \"gender_api-query-by-email-address-multiple\",\n name: \"Query Gender by Multiple Email Addresses\",\n description: \"Determine likely gender for multiple email addresses in a single batch request. Returns male/female/unknown with confidence scores for each email. Use for efficient bulk processing. Each result includes result_found flag and optional probability score.\",\n input: GenderApiQueryByEmailAddressMultipleInput,\n output: GenderApiQueryByEmailAddressMultipleOutput,\n});\n"],"mappings":"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"}
|