@keystrokehq/postgrid_verify 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/autocomplete-address.cjs +4 -4
- package/dist/actions/autocomplete-address.cjs.map +1 -1
- package/dist/actions/autocomplete-address.d.cts +4 -4
- package/dist/actions/autocomplete-address.d.mts +4 -4
- package/dist/actions/autocomplete-address.mjs +4 -4
- package/dist/actions/autocomplete-address.mjs.map +1 -1
- package/dist/actions/autocomplete-intl-address.cjs +2 -2
- package/dist/actions/autocomplete-intl-address.cjs.map +1 -1
- package/dist/actions/autocomplete-intl-address.d.cts +2 -2
- package/dist/actions/autocomplete-intl-address.d.mts +2 -2
- package/dist/actions/autocomplete-intl-address.mjs +2 -2
- package/dist/actions/autocomplete-intl-address.mjs.map +1 -1
- package/dist/actions/get-autocomplete-previews.cjs +3 -3
- package/dist/actions/get-autocomplete-previews.cjs.map +1 -1
- package/dist/actions/get-autocomplete-previews.d.cts +3 -3
- package/dist/actions/get-autocomplete-previews.d.mts +3 -3
- package/dist/actions/get-autocomplete-previews.mjs +3 -3
- package/dist/actions/get-autocomplete-previews.mjs.map +1 -1
- package/dist/actions/get-intl-autocomplete-previews.cjs +2 -2
- package/dist/actions/get-intl-autocomplete-previews.cjs.map +1 -1
- package/dist/actions/get-intl-autocomplete-previews.d.cts +2 -2
- package/dist/actions/get-intl-autocomplete-previews.d.mts +2 -2
- package/dist/actions/get-intl-autocomplete-previews.mjs +2 -2
- package/dist/actions/get-intl-autocomplete-previews.mjs.map +1 -1
- package/dist/actions/get-lookup-info.cjs +2 -2
- package/dist/actions/get-lookup-info.cjs.map +1 -1
- package/dist/actions/get-lookup-info.d.cts +2 -2
- package/dist/actions/get-lookup-info.d.mts +2 -2
- package/dist/actions/get-lookup-info.mjs +2 -2
- package/dist/actions/get-lookup-info.mjs.map +1 -1
- package/dist/actions/lookup-city-state-from-postal.cjs +2 -2
- package/dist/actions/lookup-city-state-from-postal.cjs.map +1 -1
- package/dist/actions/lookup-city-state-from-postal.d.cts +2 -2
- package/dist/actions/lookup-city-state-from-postal.d.mts +2 -2
- package/dist/actions/lookup-city-state-from-postal.mjs +2 -2
- package/dist/actions/lookup-city-state-from-postal.mjs.map +1 -1
- package/dist/actions/parse-address.cjs +2 -2
- package/dist/actions/parse-address.cjs.map +1 -1
- package/dist/actions/parse-address.d.cts +2 -2
- package/dist/actions/parse-address.d.mts +2 -2
- package/dist/actions/parse-address.mjs +2 -2
- package/dist/actions/parse-address.mjs.map +1 -1
- package/dist/actions/suggest-addresses.cjs +4 -4
- package/dist/actions/suggest-addresses.cjs.map +1 -1
- package/dist/actions/suggest-addresses.d.cts +4 -4
- package/dist/actions/suggest-addresses.d.mts +4 -4
- package/dist/actions/suggest-addresses.mjs +4 -4
- package/dist/actions/suggest-addresses.mjs.map +1 -1
- package/dist/actions/verify-address.cjs +3 -3
- package/dist/actions/verify-address.cjs.map +1 -1
- package/dist/actions/verify-address.d.cts +3 -3
- package/dist/actions/verify-address.d.mts +3 -3
- package/dist/actions/verify-address.mjs +3 -3
- package/dist/actions/verify-address.mjs.map +1 -1
- package/dist/actions/verify-batch-addresses.cjs +7 -7
- package/dist/actions/verify-batch-addresses.cjs.map +1 -1
- package/dist/actions/verify-batch-addresses.d.cts +8 -7
- package/dist/actions/verify-batch-addresses.d.mts +8 -7
- package/dist/actions/verify-batch-addresses.mjs +7 -7
- package/dist/actions/verify-batch-addresses.mjs.map +1 -1
- package/dist/actions/verify-international-address.cjs +5 -5
- package/dist/actions/verify-international-address.cjs.map +1 -1
- package/dist/actions/verify-international-address.d.cts +5 -5
- package/dist/actions/verify-international-address.d.mts +5 -5
- package/dist/actions/verify-international-address.mjs +5 -5
- package/dist/actions/verify-international-address.mjs.map +1 -1
- package/dist/actions/verify-intl-addresses-batch.cjs +6 -6
- package/dist/actions/verify-intl-addresses-batch.cjs.map +1 -1
- package/dist/actions/verify-intl-addresses-batch.d.cts +7 -6
- package/dist/actions/verify-intl-addresses-batch.d.mts +7 -6
- package/dist/actions/verify-intl-addresses-batch.mjs +6 -6
- package/dist/actions/verify-intl-addresses-batch.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
|
@@ -15,16 +15,16 @@ const PostgridVerifyAutocompleteAddress_CompletionAddressSchema = zod.z.object({
|
|
|
15
15
|
prov: zod.z.string().describe("Province or state abbreviation").nullable().optional(),
|
|
16
16
|
address: zod.z.string().describe("The street address line").nullable().optional(),
|
|
17
17
|
country: zod.z.string().describe("Country code").nullable().optional()
|
|
18
|
-
});
|
|
18
|
+
}).passthrough();
|
|
19
19
|
const PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = zod.z.object({
|
|
20
|
-
errors: zod.z.
|
|
20
|
+
errors: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Validation errors per field if any").nullable().optional(),
|
|
21
21
|
address: PostgridVerifyAutocompleteAddress_CompletionAddressSchema.nullable().optional()
|
|
22
|
-
});
|
|
22
|
+
}).passthrough();
|
|
23
23
|
const PostgridVerifyAutocompleteAddressOutput = zod.z.object({
|
|
24
24
|
data: zod.z.array(PostgridVerifyAutocompleteAddress_CompletionDataItemSchema).describe("List of address completion results").nullable().optional(),
|
|
25
25
|
status: zod.z.string().describe("Indicates request success or failure").nullable().optional(),
|
|
26
26
|
message: zod.z.string().describe("Additional information about the request status").nullable().optional()
|
|
27
|
-
});
|
|
27
|
+
}).passthrough();
|
|
28
28
|
const postgridVerifyAutocompleteAddress = require_action.action("POSTGRID_VERIFY_AUTOCOMPLETE_ADDRESS", {
|
|
29
29
|
slug: "postgrid_verify-autocomplete-address",
|
|
30
30
|
name: "Autocomplete Address",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete-address.cjs","names":["z","action"],"sources":["../../src/actions/autocomplete-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteAddressInput = z.object({\n index: z.string().describe(\"Optional parameter to retrieve the completion result at a particular index.\").optional(),\n pcFilter: z.string().describe(\"Only return addresses within this postal/zip code.\").optional(),\n cityFilter: z.string().describe(\"Only return addresses from this city.\").optional(),\n stateFilter: z.string().describe(\"Only return addresses within this province/state.\").optional(),\n countryFilter: z.string().describe(\"Only return addresses within this country.\").optional(),\n partialStreet: z.string().describe(\"The partially written address to autocomplete.\"),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionAddressSchema = z.object({\n pc: z.string().describe(\"Postal code or ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n prov: z.string().describe(\"Province or state abbreviation\").nullable().optional(),\n address: z.string().describe(\"The street address line\").nullable().optional(),\n country: z.string().describe(\"Country code\").nullable().optional(),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = z.object({\n errors: z.
|
|
1
|
+
{"version":3,"file":"autocomplete-address.cjs","names":["z","action"],"sources":["../../src/actions/autocomplete-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteAddressInput = z.object({\n index: z.string().describe(\"Optional parameter to retrieve the completion result at a particular index.\").optional(),\n pcFilter: z.string().describe(\"Only return addresses within this postal/zip code.\").optional(),\n cityFilter: z.string().describe(\"Only return addresses from this city.\").optional(),\n stateFilter: z.string().describe(\"Only return addresses within this province/state.\").optional(),\n countryFilter: z.string().describe(\"Only return addresses within this country.\").optional(),\n partialStreet: z.string().describe(\"The partially written address to autocomplete.\"),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionAddressSchema = z.object({\n pc: z.string().describe(\"Postal code or ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n prov: z.string().describe(\"Province or state abbreviation\").nullable().optional(),\n address: z.string().describe(\"The street address line\").nullable().optional(),\n country: z.string().describe(\"Country code\").nullable().optional(),\n}).passthrough();\nconst PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = z.object({\n errors: z.record(z.string(), z.unknown()).describe(\"Validation errors per field if any\").nullable().optional(),\n address: PostgridVerifyAutocompleteAddress_CompletionAddressSchema.nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyAutocompleteAddressOutput = z.object({\n data: z.array(PostgridVerifyAutocompleteAddress_CompletionDataItemSchema).describe(\"List of address completion results\").nullable().optional(),\n status: z.string().describe(\"Indicates request success or failure\").nullable().optional(),\n message: z.string().describe(\"Additional information about the request status\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyAutocompleteAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-address\",\n name: \"Autocomplete Address\",\n description: \"Tool to autocomplete a partially specified US or Canada address. Retrieves complete verified address including full postal code. Uses 1 lookup per request.\",\n input: PostgridVerifyAutocompleteAddressInput,\n output: PostgridVerifyAutocompleteAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yCAAyCA,IAAAA,EAAE,OAAO;CAC7D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS;CACnH,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC7F,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAClF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC/F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC1F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD;AACrF,CAAC;AACD,MAAM,4DAA4DA,IAAAA,EAAE,OAAO;CACzE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3D,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,6DAA6DA,IAAAA,EAAE,OAAO;CAC1E,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,SAAS,0DAA0D,SAAS,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,0CAA0CA,IAAAA,EAAE,OAAO;CAC9D,MAAMA,IAAAA,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7I,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtG,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,oCAAoCC,eAAAA,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -11,18 +11,18 @@ declare const PostgridVerifyAutocompleteAddressInput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
declare const PostgridVerifyAutocompleteAddressOutput: z.ZodObject<{
|
|
13
13
|
data: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
14
|
-
errors: z.ZodOptional<z.ZodNullable<z.
|
|
14
|
+
errors: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
15
15
|
address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
16
|
pc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
prov: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
22
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>;
|
|
22
|
+
}, z.core.$loose>>>>;
|
|
23
23
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
24
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
|
-
}, z.core.$
|
|
25
|
+
}, z.core.$loose>;
|
|
26
26
|
declare const postgridVerifyAutocompleteAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
partialStreet: string;
|
|
28
28
|
index?: string | undefined;
|
|
@@ -11,18 +11,18 @@ declare const PostgridVerifyAutocompleteAddressInput: z.ZodObject<{
|
|
|
11
11
|
}, z.core.$strip>;
|
|
12
12
|
declare const PostgridVerifyAutocompleteAddressOutput: z.ZodObject<{
|
|
13
13
|
data: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
14
|
-
errors: z.ZodOptional<z.ZodNullable<z.
|
|
14
|
+
errors: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
15
15
|
address: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
16
|
pc: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
17
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
prov: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
20
|
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
-
}, z.core.$
|
|
22
|
-
}, z.core.$
|
|
21
|
+
}, z.core.$loose>>>;
|
|
22
|
+
}, z.core.$loose>>>>;
|
|
23
23
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
24
24
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
|
-
}, z.core.$
|
|
25
|
+
}, z.core.$loose>;
|
|
26
26
|
declare const postgridVerifyAutocompleteAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
27
27
|
partialStreet: string;
|
|
28
28
|
index?: string | undefined;
|
|
@@ -15,11 +15,11 @@ const PostgridVerifyAutocompleteAddress_CompletionAddressSchema = z.object({
|
|
|
15
15
|
prov: z.string().describe("Province or state abbreviation").nullable().optional(),
|
|
16
16
|
address: z.string().describe("The street address line").nullable().optional(),
|
|
17
17
|
country: z.string().describe("Country code").nullable().optional()
|
|
18
|
-
});
|
|
18
|
+
}).passthrough();
|
|
19
19
|
const PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = z.object({
|
|
20
|
-
errors: z.
|
|
20
|
+
errors: z.record(z.string(), z.unknown()).describe("Validation errors per field if any").nullable().optional(),
|
|
21
21
|
address: PostgridVerifyAutocompleteAddress_CompletionAddressSchema.nullable().optional()
|
|
22
|
-
});
|
|
22
|
+
}).passthrough();
|
|
23
23
|
const postgridVerifyAutocompleteAddress = action("POSTGRID_VERIFY_AUTOCOMPLETE_ADDRESS", {
|
|
24
24
|
slug: "postgrid_verify-autocomplete-address",
|
|
25
25
|
name: "Autocomplete Address",
|
|
@@ -29,7 +29,7 @@ const postgridVerifyAutocompleteAddress = action("POSTGRID_VERIFY_AUTOCOMPLETE_A
|
|
|
29
29
|
data: z.array(PostgridVerifyAutocompleteAddress_CompletionDataItemSchema).describe("List of address completion results").nullable().optional(),
|
|
30
30
|
status: z.string().describe("Indicates request success or failure").nullable().optional(),
|
|
31
31
|
message: z.string().describe("Additional information about the request status").nullable().optional()
|
|
32
|
-
})
|
|
32
|
+
}).passthrough()
|
|
33
33
|
});
|
|
34
34
|
//#endregion
|
|
35
35
|
export { postgridVerifyAutocompleteAddress };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete-address.mjs","names":[],"sources":["../../src/actions/autocomplete-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteAddressInput = z.object({\n index: z.string().describe(\"Optional parameter to retrieve the completion result at a particular index.\").optional(),\n pcFilter: z.string().describe(\"Only return addresses within this postal/zip code.\").optional(),\n cityFilter: z.string().describe(\"Only return addresses from this city.\").optional(),\n stateFilter: z.string().describe(\"Only return addresses within this province/state.\").optional(),\n countryFilter: z.string().describe(\"Only return addresses within this country.\").optional(),\n partialStreet: z.string().describe(\"The partially written address to autocomplete.\"),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionAddressSchema = z.object({\n pc: z.string().describe(\"Postal code or ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n prov: z.string().describe(\"Province or state abbreviation\").nullable().optional(),\n address: z.string().describe(\"The street address line\").nullable().optional(),\n country: z.string().describe(\"Country code\").nullable().optional(),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = z.object({\n errors: z.
|
|
1
|
+
{"version":3,"file":"autocomplete-address.mjs","names":[],"sources":["../../src/actions/autocomplete-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteAddressInput = z.object({\n index: z.string().describe(\"Optional parameter to retrieve the completion result at a particular index.\").optional(),\n pcFilter: z.string().describe(\"Only return addresses within this postal/zip code.\").optional(),\n cityFilter: z.string().describe(\"Only return addresses from this city.\").optional(),\n stateFilter: z.string().describe(\"Only return addresses within this province/state.\").optional(),\n countryFilter: z.string().describe(\"Only return addresses within this country.\").optional(),\n partialStreet: z.string().describe(\"The partially written address to autocomplete.\"),\n});\nconst PostgridVerifyAutocompleteAddress_CompletionAddressSchema = z.object({\n pc: z.string().describe(\"Postal code or ZIP code\").nullable().optional(),\n city: z.string().describe(\"City name\").nullable().optional(),\n prov: z.string().describe(\"Province or state abbreviation\").nullable().optional(),\n address: z.string().describe(\"The street address line\").nullable().optional(),\n country: z.string().describe(\"Country code\").nullable().optional(),\n}).passthrough();\nconst PostgridVerifyAutocompleteAddress_CompletionDataItemSchema = z.object({\n errors: z.record(z.string(), z.unknown()).describe(\"Validation errors per field if any\").nullable().optional(),\n address: PostgridVerifyAutocompleteAddress_CompletionAddressSchema.nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyAutocompleteAddressOutput = z.object({\n data: z.array(PostgridVerifyAutocompleteAddress_CompletionDataItemSchema).describe(\"List of address completion results\").nullable().optional(),\n status: z.string().describe(\"Indicates request success or failure\").nullable().optional(),\n message: z.string().describe(\"Additional information about the request status\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyAutocompleteAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-address\",\n name: \"Autocomplete Address\",\n description: \"Tool to autocomplete a partially specified US or Canada address. Retrieves complete verified address including full postal code. Uses 1 lookup per request.\",\n input: PostgridVerifyAutocompleteAddressInput,\n output: PostgridVerifyAutocompleteAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,yCAAyC,EAAE,OAAO;CAC7D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,6EAA6E,CAAC,CAAC,SAAS;CACnH,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS;CAC7F,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,uCAAuC,CAAC,CAAC,SAAS;CAClF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC/F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC1F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD;AACrF,CAAC;AACD,MAAM,4DAA4D,EAAE,OAAO;CACzE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,WAAW,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3D,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gCAAgC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,cAAc,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnE,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,6DAA6D,EAAE,OAAO;CAC1E,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,SAAS,0DAA0D,SAAS,CAAC,CAAC,SAAS;AACzF,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,oCAAoC,OAAO,wCAAwC;CAC9F,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXqD,EAAE,OAAO;EAC9D,MAAM,EAAE,MAAM,0DAA0D,CAAC,CAAC,SAAS,oCAAoC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC7I,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACxF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtG,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -11,12 +11,12 @@ const PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSc
|
|
|
11
11
|
provinceCode: zod.z.string().describe("State or province code.").nullable().optional(),
|
|
12
12
|
provinceOrState: zod.z.string().describe("State or province name.").nullable().optional(),
|
|
13
13
|
formattedAddress: zod.z.string().describe("Fully formatted address string.").nullable().optional()
|
|
14
|
-
});
|
|
14
|
+
}).passthrough();
|
|
15
15
|
const PostgridVerifyAutocompleteIntlAddressOutput = zod.z.object({
|
|
16
16
|
data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),
|
|
17
17
|
status: zod.z.string().describe("Status of the request (e.g., 'success').").nullable().optional(),
|
|
18
18
|
message: zod.z.string().describe("Message providing details about the operation.").nullable().optional()
|
|
19
|
-
});
|
|
19
|
+
}).passthrough();
|
|
20
20
|
const postgridVerifyAutocompleteIntlAddress = require_action.action("POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS", {
|
|
21
21
|
slug: "postgrid_verify-autocomplete-intl-address",
|
|
22
22
|
name: "Autocomplete International Address",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete-intl-address.cjs","names":["z","action"],"sources":["../../src/actions/autocomplete-intl-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteIntlAddressInput = z.object({\n id: z.string().describe(\"The ID previously returned from the preview endpoint where the type is 'Address'. Used to retrieve the complete verified address data.\"),\n});\nconst PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema = z.object({\n city: z.string().describe(\"City name.\").nullable().optional(),\n line1: z.string().describe(\"First line of the completed address.\").nullable().optional(),\n country: z.string().describe(\"Country name.\").nullable().optional(),\n countryCode: z.string().describe(\"ISO country code.\").nullable().optional(),\n postalOrZip: z.string().describe(\"Postal or ZIP code.\").nullable().optional(),\n provinceCode: z.string().describe(\"State or province code.\").nullable().optional(),\n provinceOrState: z.string().describe(\"State or province name.\").nullable().optional(),\n formattedAddress: z.string().describe(\"Fully formatted address string.\").nullable().optional(),\n});\nexport const PostgridVerifyAutocompleteIntlAddressOutput = z.object({\n data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n});\n\nexport const postgridVerifyAutocompleteIntlAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-intl-address\",\n name: \"Autocomplete International Address\",\n description: \"Tool to retrieve complete verified international address data using an ID from the preview endpoint. Use when you have an address ID from the preview step and need the full address details.\",\n input: PostgridVerifyAutocompleteIntlAddressInput,\n output: PostgridVerifyAutocompleteIntlAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO,EACjE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wIAAwI,EAClK,CAAC;AACD,MAAM,iFAAiFA,IAAAA,EAAE,OAAO;CAC9F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC;
|
|
1
|
+
{"version":3,"file":"autocomplete-intl-address.cjs","names":["z","action"],"sources":["../../src/actions/autocomplete-intl-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteIntlAddressInput = z.object({\n id: z.string().describe(\"The ID previously returned from the preview endpoint where the type is 'Address'. Used to retrieve the complete verified address data.\"),\n});\nconst PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema = z.object({\n city: z.string().describe(\"City name.\").nullable().optional(),\n line1: z.string().describe(\"First line of the completed address.\").nullable().optional(),\n country: z.string().describe(\"Country name.\").nullable().optional(),\n countryCode: z.string().describe(\"ISO country code.\").nullable().optional(),\n postalOrZip: z.string().describe(\"Postal or ZIP code.\").nullable().optional(),\n provinceCode: z.string().describe(\"State or province code.\").nullable().optional(),\n provinceOrState: z.string().describe(\"State or province name.\").nullable().optional(),\n formattedAddress: z.string().describe(\"Fully formatted address string.\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyAutocompleteIntlAddressOutput = z.object({\n data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyAutocompleteIntlAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-intl-address\",\n name: \"Autocomplete International Address\",\n description: \"Tool to retrieve complete verified international address data using an ID from the preview endpoint. Use when you have an address ID from the preview step and need the full address details.\",\n input: PostgridVerifyAutocompleteIntlAddressInput,\n output: PostgridVerifyAutocompleteIntlAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO,EACjE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wIAAwI,EAClK,CAAC;AACD,MAAM,iFAAiFA,IAAAA,EAAE,OAAO;CAC9F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,8CAA8CA,IAAAA,EAAE,OAAO;CAClE,MAAM,+EAA+E,SAAS,CAAC,CAAC,SAAS;CACzG,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,wCAAwCC,eAAAA,OAAO,6CAA6C;CACvG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -14,10 +14,10 @@ declare const PostgridVerifyAutocompleteIntlAddressOutput: z.ZodObject<{
|
|
|
14
14
|
provinceCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
provinceOrState: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
16
|
formattedAddress: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
-
}, z.core.$
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
18
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>;
|
|
21
21
|
declare const postgridVerifyAutocompleteIntlAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
22
|
id: string;
|
|
23
23
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -14,10 +14,10 @@ declare const PostgridVerifyAutocompleteIntlAddressOutput: z.ZodObject<{
|
|
|
14
14
|
provinceCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
provinceOrState: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
16
|
formattedAddress: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
-
}, z.core.$
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
18
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>;
|
|
21
21
|
declare const postgridVerifyAutocompleteIntlAddress: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
22
|
id: string;
|
|
23
23
|
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
@@ -11,7 +11,7 @@ const PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSc
|
|
|
11
11
|
provinceCode: z.string().describe("State or province code.").nullable().optional(),
|
|
12
12
|
provinceOrState: z.string().describe("State or province name.").nullable().optional(),
|
|
13
13
|
formattedAddress: z.string().describe("Fully formatted address string.").nullable().optional()
|
|
14
|
-
});
|
|
14
|
+
}).passthrough();
|
|
15
15
|
const postgridVerifyAutocompleteIntlAddress = action("POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS", {
|
|
16
16
|
slug: "postgrid_verify-autocomplete-intl-address",
|
|
17
17
|
name: "Autocomplete International Address",
|
|
@@ -21,7 +21,7 @@ const postgridVerifyAutocompleteIntlAddress = action("POSTGRID_VERIFY_AUTOCOMPLE
|
|
|
21
21
|
data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),
|
|
22
22
|
status: z.string().describe("Status of the request (e.g., 'success').").nullable().optional(),
|
|
23
23
|
message: z.string().describe("Message providing details about the operation.").nullable().optional()
|
|
24
|
-
})
|
|
24
|
+
}).passthrough()
|
|
25
25
|
});
|
|
26
26
|
//#endregion
|
|
27
27
|
export { postgridVerifyAutocompleteIntlAddress };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"autocomplete-intl-address.mjs","names":[],"sources":["../../src/actions/autocomplete-intl-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteIntlAddressInput = z.object({\n id: z.string().describe(\"The ID previously returned from the preview endpoint where the type is 'Address'. Used to retrieve the complete verified address data.\"),\n});\nconst PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema = z.object({\n city: z.string().describe(\"City name.\").nullable().optional(),\n line1: z.string().describe(\"First line of the completed address.\").nullable().optional(),\n country: z.string().describe(\"Country name.\").nullable().optional(),\n countryCode: z.string().describe(\"ISO country code.\").nullable().optional(),\n postalOrZip: z.string().describe(\"Postal or ZIP code.\").nullable().optional(),\n provinceCode: z.string().describe(\"State or province code.\").nullable().optional(),\n provinceOrState: z.string().describe(\"State or province name.\").nullable().optional(),\n formattedAddress: z.string().describe(\"Fully formatted address string.\").nullable().optional(),\n});\nexport const PostgridVerifyAutocompleteIntlAddressOutput = z.object({\n data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n});\n\nexport const postgridVerifyAutocompleteIntlAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-intl-address\",\n name: \"Autocomplete International Address\",\n description: \"Tool to retrieve complete verified international address data using an ID from the preview endpoint. Use when you have an address ID from the preview step and need the full address details.\",\n input: PostgridVerifyAutocompleteIntlAddressInput,\n output: PostgridVerifyAutocompleteIntlAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO,EACjE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,wIAAwI,EAClK,CAAC;AACD,MAAM,iFAAiF,EAAE,OAAO;CAC9F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC;
|
|
1
|
+
{"version":3,"file":"autocomplete-intl-address.mjs","names":[],"sources":["../../src/actions/autocomplete-intl-address.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyAutocompleteIntlAddressInput = z.object({\n id: z.string().describe(\"The ID previously returned from the preview endpoint where the type is 'Address'. Used to retrieve the complete verified address data.\"),\n});\nconst PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema = z.object({\n city: z.string().describe(\"City name.\").nullable().optional(),\n line1: z.string().describe(\"First line of the completed address.\").nullable().optional(),\n country: z.string().describe(\"Country name.\").nullable().optional(),\n countryCode: z.string().describe(\"ISO country code.\").nullable().optional(),\n postalOrZip: z.string().describe(\"Postal or ZIP code.\").nullable().optional(),\n provinceCode: z.string().describe(\"State or province code.\").nullable().optional(),\n provinceOrState: z.string().describe(\"State or province name.\").nullable().optional(),\n formattedAddress: z.string().describe(\"Fully formatted address string.\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyAutocompleteIntlAddressOutput = z.object({\n data: PostgridVerifyAutocompleteIntlAddress_AutocompleteIntlAddressDataDetailsSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyAutocompleteIntlAddress = action(\"POSTGRID_VERIFY_AUTOCOMPLETE_INTL_ADDRESS\", {\n slug: \"postgrid_verify-autocomplete-intl-address\",\n name: \"Autocomplete International Address\",\n description: \"Tool to retrieve complete verified international address data using an ID from the preview endpoint. Use when you have an address ID from the preview step and need the full address details.\",\n input: PostgridVerifyAutocompleteIntlAddressInput,\n output: PostgridVerifyAutocompleteIntlAddressOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO,EACjE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,wIAAwI,EAClK,CAAC;AACD,MAAM,iFAAiF,EAAE,OAAO;CAC9F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5D,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,sCAAsC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvF,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,eAAe,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClE,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,qBAAqB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,yBAAyB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC/F,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,wCAAwC,OAAO,6CAA6C;CACvG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXyD,EAAE,OAAO;EAClE,MAAM,+EAA+E,SAAS,CAAC,CAAC,SAAS;EACzG,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -11,13 +11,13 @@ const PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = zod.z.object(
|
|
|
11
11
|
city: zod.z.string().describe("Municipality name of the autocomplete suggestion").nullable().optional(),
|
|
12
12
|
prov: zod.z.string().describe("Province or state code (returned when provInsteadOfPC is true)").nullable().optional(),
|
|
13
13
|
address: zod.z.string().describe("Street address (first line only) of the autocomplete suggestion").nullable().optional()
|
|
14
|
-
});
|
|
15
|
-
const PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = zod.z.object({ preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable() });
|
|
14
|
+
}).passthrough();
|
|
15
|
+
const PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = zod.z.object({ preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable() }).passthrough();
|
|
16
16
|
const PostgridVerifyGetAutocompletePreviewsOutput = zod.z.object({
|
|
17
17
|
data: zod.z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe("List of autocomplete preview suggestions"),
|
|
18
18
|
status: zod.z.string().describe("Status of the request (e.g., 'success')").nullable().optional(),
|
|
19
19
|
message: zod.z.string().describe("Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')").nullable().optional()
|
|
20
|
-
});
|
|
20
|
+
}).passthrough();
|
|
21
21
|
const postgridVerifyGetAutocompletePreviews = require_action.action("POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS", {
|
|
22
22
|
slug: "postgrid_verify-get-autocomplete-previews",
|
|
23
23
|
name: "Get Autocomplete Previews",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-autocomplete-previews.cjs","names":["z","action"],"sources":["../../src/actions/get-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetAutocompletePreviewsInput = z.object({\n countryFilter: z.string().describe(\"The country you want to filter the results by. Use ISO 2-letter country code (e.g., 'US' or 'CA')\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to get autocomplete suggestions for\").optional(),\n provInsteadOfPC: z.boolean().describe(\"If true, returns the prov (province/state) field instead of the pc (postal code) field in preview objects\").optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = z.object({\n pc: z.string().describe(\"First 3 digits of postal/ZIP code (returned when provInsteadOfPC is false or not set)\").nullable().optional(),\n city: z.string().describe(\"Municipality name of the autocomplete suggestion\").nullable().optional(),\n prov: z.string().describe(\"Province or state code (returned when provInsteadOfPC is true)\").nullable().optional(),\n address: z.string().describe(\"Street address (first line only) of the autocomplete suggestion\").nullable().optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({\n preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable(),\n});\nexport const PostgridVerifyGetAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe(\"List of autocomplete preview suggestions\"),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')\").nullable().optional(),\n});\n\nexport const postgridVerifyGetAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-autocomplete-previews\",\n name: \"Get Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted US and Canadian addresses. Returns partial address data (line1, city, first 3 digits of postal code) without using any lookups. Use when you need quick autocomplete suggestions for address input.\",\n input: PostgridVerifyGetAutocompletePreviewsInput,\n output: PostgridVerifyGetAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO;CACjE,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mGAAmG,CAAC,CAAC,SAAS;CACjJ,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACxH,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AAC9J,CAAC;AACD,MAAM,6DAA6DA,IAAAA,EAAE,OAAO;CAC1E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC;
|
|
1
|
+
{"version":3,"file":"get-autocomplete-previews.cjs","names":["z","action"],"sources":["../../src/actions/get-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetAutocompletePreviewsInput = z.object({\n countryFilter: z.string().describe(\"The country you want to filter the results by. Use ISO 2-letter country code (e.g., 'US' or 'CA')\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to get autocomplete suggestions for\").optional(),\n provInsteadOfPC: z.boolean().describe(\"If true, returns the prov (province/state) field instead of the pc (postal code) field in preview objects\").optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = z.object({\n pc: z.string().describe(\"First 3 digits of postal/ZIP code (returned when provInsteadOfPC is false or not set)\").nullable().optional(),\n city: z.string().describe(\"Municipality name of the autocomplete suggestion\").nullable().optional(),\n prov: z.string().describe(\"Province or state code (returned when provInsteadOfPC is true)\").nullable().optional(),\n address: z.string().describe(\"Street address (first line only) of the autocomplete suggestion\").nullable().optional(),\n}).passthrough();\nconst PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({\n preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable(),\n}).passthrough();\nexport const PostgridVerifyGetAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe(\"List of autocomplete preview suggestions\"),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-autocomplete-previews\",\n name: \"Get Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted US and Canadian addresses. Returns partial address data (line1, city, first 3 digits of postal code) without using any lookups. Use when you need quick autocomplete suggestions for address input.\",\n input: PostgridVerifyGetAutocompletePreviewsInput,\n output: PostgridVerifyGetAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6CA,IAAAA,EAAE,OAAO;CACjE,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mGAAmG,CAAC,CAAC,SAAS;CACjJ,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACxH,iBAAiBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AAC9J,CAAC;AACD,MAAM,6DAA6DA,IAAAA,EAAE,OAAO;CAC1E,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,0EAA0EA,IAAAA,EAAE,OAAO,EACvF,SAAS,2DAA2D,SAAS,EAC/E,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,8CAA8CA,IAAAA,EAAE,OAAO;CAClE,MAAMA,IAAAA,EAAE,MAAM,uEAAuE,CAAC,CAAC,SAAS,0CAA0C;CAC1I,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8GAA8G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACnK,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,wCAAwCC,eAAAA,OAAO,6CAA6C;CACvG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -13,11 +13,11 @@ declare const PostgridVerifyGetAutocompletePreviewsOutput: z.ZodObject<{
|
|
|
13
13
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
prov: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
}, z.core.$
|
|
17
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
|
+
}, z.core.$loose>>;
|
|
18
18
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>;
|
|
21
21
|
declare const postgridVerifyGetAutocompletePreviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
22
|
countryFilter?: string | undefined;
|
|
23
23
|
partialStreet?: string | undefined;
|
|
@@ -13,11 +13,11 @@ declare const PostgridVerifyGetAutocompletePreviewsOutput: z.ZodObject<{
|
|
|
13
13
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
14
|
prov: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
15
15
|
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
16
|
-
}, z.core.$
|
|
17
|
-
}, z.core.$
|
|
16
|
+
}, z.core.$loose>>;
|
|
17
|
+
}, z.core.$loose>>;
|
|
18
18
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>;
|
|
21
21
|
declare const postgridVerifyGetAutocompletePreviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
22
22
|
countryFilter?: string | undefined;
|
|
23
23
|
partialStreet?: string | undefined;
|
|
@@ -11,8 +11,8 @@ const PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = z.object({
|
|
|
11
11
|
city: z.string().describe("Municipality name of the autocomplete suggestion").nullable().optional(),
|
|
12
12
|
prov: z.string().describe("Province or state code (returned when provInsteadOfPC is true)").nullable().optional(),
|
|
13
13
|
address: z.string().describe("Street address (first line only) of the autocomplete suggestion").nullable().optional()
|
|
14
|
-
});
|
|
15
|
-
const PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({ preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable() });
|
|
14
|
+
}).passthrough();
|
|
15
|
+
const PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({ preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable() }).passthrough();
|
|
16
16
|
const postgridVerifyGetAutocompletePreviews = action("POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS", {
|
|
17
17
|
slug: "postgrid_verify-get-autocomplete-previews",
|
|
18
18
|
name: "Get Autocomplete Previews",
|
|
@@ -22,7 +22,7 @@ const postgridVerifyGetAutocompletePreviews = action("POSTGRID_VERIFY_GET_AUTOCO
|
|
|
22
22
|
data: z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe("List of autocomplete preview suggestions"),
|
|
23
23
|
status: z.string().describe("Status of the request (e.g., 'success')").nullable().optional(),
|
|
24
24
|
message: z.string().describe("Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')").nullable().optional()
|
|
25
|
-
})
|
|
25
|
+
}).passthrough()
|
|
26
26
|
});
|
|
27
27
|
//#endregion
|
|
28
28
|
export { postgridVerifyGetAutocompletePreviews };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-autocomplete-previews.mjs","names":[],"sources":["../../src/actions/get-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetAutocompletePreviewsInput = z.object({\n countryFilter: z.string().describe(\"The country you want to filter the results by. Use ISO 2-letter country code (e.g., 'US' or 'CA')\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to get autocomplete suggestions for\").optional(),\n provInsteadOfPC: z.boolean().describe(\"If true, returns the prov (province/state) field instead of the pc (postal code) field in preview objects\").optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = z.object({\n pc: z.string().describe(\"First 3 digits of postal/ZIP code (returned when provInsteadOfPC is false or not set)\").nullable().optional(),\n city: z.string().describe(\"Municipality name of the autocomplete suggestion\").nullable().optional(),\n prov: z.string().describe(\"Province or state code (returned when provInsteadOfPC is true)\").nullable().optional(),\n address: z.string().describe(\"Street address (first line only) of the autocomplete suggestion\").nullable().optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({\n preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable(),\n});\nexport const PostgridVerifyGetAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe(\"List of autocomplete preview suggestions\"),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')\").nullable().optional(),\n});\n\nexport const postgridVerifyGetAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-autocomplete-previews\",\n name: \"Get Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted US and Canadian addresses. Returns partial address data (line1, city, first 3 digits of postal code) without using any lookups. Use when you need quick autocomplete suggestions for address input.\",\n input: PostgridVerifyGetAutocompletePreviewsInput,\n output: PostgridVerifyGetAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO;CACjE,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,mGAAmG,CAAC,CAAC,SAAS;CACjJ,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACxH,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AAC9J,CAAC;AACD,MAAM,6DAA6D,EAAE,OAAO;CAC1E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC;
|
|
1
|
+
{"version":3,"file":"get-autocomplete-previews.mjs","names":[],"sources":["../../src/actions/get-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetAutocompletePreviewsInput = z.object({\n countryFilter: z.string().describe(\"The country you want to filter the results by. Use ISO 2-letter country code (e.g., 'US' or 'CA')\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to get autocomplete suggestions for\").optional(),\n provInsteadOfPC: z.boolean().describe(\"If true, returns the prov (province/state) field instead of the pc (postal code) field in preview objects\").optional(),\n});\nconst PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema = z.object({\n pc: z.string().describe(\"First 3 digits of postal/ZIP code (returned when provInsteadOfPC is false or not set)\").nullable().optional(),\n city: z.string().describe(\"Municipality name of the autocomplete suggestion\").nullable().optional(),\n prov: z.string().describe(\"Province or state code (returned when provInsteadOfPC is true)\").nullable().optional(),\n address: z.string().describe(\"Street address (first line only) of the autocomplete suggestion\").nullable().optional(),\n}).passthrough();\nconst PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema = z.object({\n preview: PostgridVerifyGetAutocompletePreviews_PreviewDetailsSchema.nullable(),\n}).passthrough();\nexport const PostgridVerifyGetAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetAutocompletePreviews_AutocompletePreviewDataItemSchema).describe(\"List of autocomplete preview suggestions\"),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation (e.g., 'Retrieved verified address completions successfully.')\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-autocomplete-previews\",\n name: \"Get Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted US and Canadian addresses. Returns partial address data (line1, city, first 3 digits of postal code) without using any lookups. Use when you need quick autocomplete suggestions for address input.\",\n input: PostgridVerifyGetAutocompletePreviewsInput,\n output: PostgridVerifyGetAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6CAA6C,EAAE,OAAO;CACjE,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,mGAAmG,CAAC,CAAC,SAAS;CACjJ,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS;CACxH,iBAAiB,EAAE,QAAQ,CAAC,CAAC,SAAS,2GAA2G,CAAC,CAAC,SAAS;AAC9J,CAAC;AACD,MAAM,6DAA6D,EAAE,OAAO;CAC1E,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,uFAAuF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrI,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACtH,CAAC,CAAC,CAAC,YAAY;AACf,MAAM,0EAA0E,EAAE,OAAO,EACvF,SAAS,2DAA2D,SAAS,EAC/E,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,wCAAwC,OAAO,6CAA6C;CACvG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAXyD,EAAE,OAAO;EAClE,MAAM,EAAE,MAAM,uEAAuE,CAAC,CAAC,SAAS,0CAA0C;EAC1I,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,8GAA8G,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnK,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -16,12 +16,12 @@ const PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema =
|
|
|
16
16
|
text: zod.z.string().describe("The display text for the autocomplete preview").nullable().optional(),
|
|
17
17
|
type: zod.z.string().describe("Type of the preview item (e.g., 'Address', 'BuildingNumber')").nullable().optional(),
|
|
18
18
|
highlight: zod.z.string().describe("Highlighted portion of the text matching the search query").nullable().optional()
|
|
19
|
-
});
|
|
19
|
+
}).passthrough();
|
|
20
20
|
const PostgridVerifyGetIntlAutocompletePreviewsOutput = zod.z.object({
|
|
21
21
|
data: zod.z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe("List of autocomplete preview items for international addresses").nullable().optional(),
|
|
22
22
|
status: zod.z.string().describe("Status of the request (e.g., 'success')").nullable().optional(),
|
|
23
23
|
message: zod.z.string().describe("Message providing details about the operation").nullable().optional()
|
|
24
|
-
});
|
|
24
|
+
}).passthrough();
|
|
25
25
|
const postgridVerifyGetIntlAutocompletePreviews = require_action.action("POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS", {
|
|
26
26
|
slug: "postgrid_verify-get-intl-autocomplete-previews",
|
|
27
27
|
name: "Get International Autocomplete Previews",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-intl-autocomplete-previews.cjs","names":["z","action"],"sources":["../../src/actions/get-intl-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetIntlAutocompletePreviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return\").optional(),\n language: z.string().describe(\"The language preference of the results (e.g., EN, FR, ES)\").optional(),\n cityFilter: z.string().describe(\"The city you want to filter the results by\").optional(),\n streetFilter: z.string().describe(\"The street you want to filter the results by\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to autocomplete\").optional(),\n countriesFilter: z.string().describe(\"The countries you want to filter the results by. Supply ISO country code or the country's name. Separate multiple codes by comma.\").optional(),\n disableIPBiasing: z.boolean().describe(\"Disables the IP of the request from being used as a starting point for the search. By default, results are biased based on your current IP address.\").optional(),\n postalOrZipFilter: z.string().describe(\"The postal code or zip code you want to filter the results by\").optional(),\n});\nconst PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for this preview item. If type is 'Address', this id can be used in POST /completions. If 'BuildingNumber', use the container id with advanced previews.\").nullable().optional(),\n text: z.string().describe(\"The display text for the autocomplete preview\").nullable().optional(),\n type: z.string().describe(\"Type of the preview item (e.g., 'Address', 'BuildingNumber')\").nullable().optional(),\n highlight: z.string().describe(\"Highlighted portion of the text matching the search query\").nullable().optional(),\n});\nexport const PostgridVerifyGetIntlAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe(\"List of autocomplete preview items for international addresses\").nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation\").nullable().optional(),\n});\n\nexport const postgridVerifyGetIntlAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-intl-autocomplete-previews\",\n name: \"Get International Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted international addresses. Results are biased based on your current IP address unless disabled. Returns both 'Address' and 'BuildingNumber' types - if type is 'Address', its id can be used in POST /completions; if 'BuildingNumber', use the container id with advanced previews.\",\n input: PostgridVerifyGetIntlAutocompletePreviewsInput,\n output: PostgridVerifyGetIntlAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiDA,IAAAA,EAAE,OAAO;CACrE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACjF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACpG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACpG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACnL,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,qJAAqJ,CAAC,CAAC,SAAS;CACvM,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACnH,CAAC;AACD,MAAM,0EAA0EA,IAAAA,EAAE,OAAO;CACvF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4KAA4K,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1N,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC;
|
|
1
|
+
{"version":3,"file":"get-intl-autocomplete-previews.cjs","names":["z","action"],"sources":["../../src/actions/get-intl-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetIntlAutocompletePreviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return\").optional(),\n language: z.string().describe(\"The language preference of the results (e.g., EN, FR, ES)\").optional(),\n cityFilter: z.string().describe(\"The city you want to filter the results by\").optional(),\n streetFilter: z.string().describe(\"The street you want to filter the results by\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to autocomplete\").optional(),\n countriesFilter: z.string().describe(\"The countries you want to filter the results by. Supply ISO country code or the country's name. Separate multiple codes by comma.\").optional(),\n disableIPBiasing: z.boolean().describe(\"Disables the IP of the request from being used as a starting point for the search. By default, results are biased based on your current IP address.\").optional(),\n postalOrZipFilter: z.string().describe(\"The postal code or zip code you want to filter the results by\").optional(),\n});\nconst PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for this preview item. If type is 'Address', this id can be used in POST /completions. If 'BuildingNumber', use the container id with advanced previews.\").nullable().optional(),\n text: z.string().describe(\"The display text for the autocomplete preview\").nullable().optional(),\n type: z.string().describe(\"Type of the preview item (e.g., 'Address', 'BuildingNumber')\").nullable().optional(),\n highlight: z.string().describe(\"Highlighted portion of the text matching the search query\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyGetIntlAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe(\"List of autocomplete preview items for international addresses\").nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetIntlAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-intl-autocomplete-previews\",\n name: \"Get International Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted international addresses. Results are biased based on your current IP address unless disabled. Returns both 'Address' and 'BuildingNumber' types - if type is 'Address', its id can be used in POST /completions; if 'BuildingNumber', use the container id with advanced previews.\",\n input: PostgridVerifyGetIntlAutocompletePreviewsInput,\n output: PostgridVerifyGetIntlAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiDA,IAAAA,EAAE,OAAO;CACrE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACjF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACpG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACpG,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACnL,kBAAkBA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,qJAAqJ,CAAC,CAAC,SAAS;CACvM,mBAAmBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACnH,CAAC;AACD,MAAM,0EAA0EA,IAAAA,EAAE,OAAO;CACvF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4KAA4K,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1N,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,kDAAkDA,IAAAA,EAAE,OAAO;CACtE,MAAMA,IAAAA,EAAE,MAAM,uEAAuE,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtL,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACpG,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,4CAA4CC,eAAAA,OAAO,kDAAkD;CAChH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -17,10 +17,10 @@ declare const PostgridVerifyGetIntlAutocompletePreviewsOutput: z.ZodObject<{
|
|
|
17
17
|
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
highlight: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>>>>;
|
|
21
21
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
22
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const postgridVerifyGetIntlAutocompletePreviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
limit?: number | undefined;
|
|
26
26
|
language?: string | undefined;
|
|
@@ -17,10 +17,10 @@ declare const PostgridVerifyGetIntlAutocompletePreviewsOutput: z.ZodObject<{
|
|
|
17
17
|
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
18
|
type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
19
|
highlight: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
-
}, z.core.$
|
|
20
|
+
}, z.core.$loose>>>>;
|
|
21
21
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
22
22
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
23
|
-
}, z.core.$
|
|
23
|
+
}, z.core.$loose>;
|
|
24
24
|
declare const postgridVerifyGetIntlAutocompletePreviews: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
25
25
|
limit?: number | undefined;
|
|
26
26
|
language?: string | undefined;
|
|
@@ -16,7 +16,7 @@ const PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema =
|
|
|
16
16
|
text: z.string().describe("The display text for the autocomplete preview").nullable().optional(),
|
|
17
17
|
type: z.string().describe("Type of the preview item (e.g., 'Address', 'BuildingNumber')").nullable().optional(),
|
|
18
18
|
highlight: z.string().describe("Highlighted portion of the text matching the search query").nullable().optional()
|
|
19
|
-
});
|
|
19
|
+
}).passthrough();
|
|
20
20
|
const postgridVerifyGetIntlAutocompletePreviews = action("POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS", {
|
|
21
21
|
slug: "postgrid_verify-get-intl-autocomplete-previews",
|
|
22
22
|
name: "Get International Autocomplete Previews",
|
|
@@ -26,7 +26,7 @@ const postgridVerifyGetIntlAutocompletePreviews = action("POSTGRID_VERIFY_GET_IN
|
|
|
26
26
|
data: z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe("List of autocomplete preview items for international addresses").nullable().optional(),
|
|
27
27
|
status: z.string().describe("Status of the request (e.g., 'success')").nullable().optional(),
|
|
28
28
|
message: z.string().describe("Message providing details about the operation").nullable().optional()
|
|
29
|
-
})
|
|
29
|
+
}).passthrough()
|
|
30
30
|
});
|
|
31
31
|
//#endregion
|
|
32
32
|
export { postgridVerifyGetIntlAutocompletePreviews };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-intl-autocomplete-previews.mjs","names":[],"sources":["../../src/actions/get-intl-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetIntlAutocompletePreviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return\").optional(),\n language: z.string().describe(\"The language preference of the results (e.g., EN, FR, ES)\").optional(),\n cityFilter: z.string().describe(\"The city you want to filter the results by\").optional(),\n streetFilter: z.string().describe(\"The street you want to filter the results by\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to autocomplete\").optional(),\n countriesFilter: z.string().describe(\"The countries you want to filter the results by. Supply ISO country code or the country's name. Separate multiple codes by comma.\").optional(),\n disableIPBiasing: z.boolean().describe(\"Disables the IP of the request from being used as a starting point for the search. By default, results are biased based on your current IP address.\").optional(),\n postalOrZipFilter: z.string().describe(\"The postal code or zip code you want to filter the results by\").optional(),\n});\nconst PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for this preview item. If type is 'Address', this id can be used in POST /completions. If 'BuildingNumber', use the container id with advanced previews.\").nullable().optional(),\n text: z.string().describe(\"The display text for the autocomplete preview\").nullable().optional(),\n type: z.string().describe(\"Type of the preview item (e.g., 'Address', 'BuildingNumber')\").nullable().optional(),\n highlight: z.string().describe(\"Highlighted portion of the text matching the search query\").nullable().optional(),\n});\nexport const PostgridVerifyGetIntlAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe(\"List of autocomplete preview items for international addresses\").nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation\").nullable().optional(),\n});\n\nexport const postgridVerifyGetIntlAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-intl-autocomplete-previews\",\n name: \"Get International Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted international addresses. Results are biased based on your current IP address unless disabled. Returns both 'Address' and 'BuildingNumber' types - if type is 'Address', its id can be used in POST /completions; if 'BuildingNumber', use the container id with advanced previews.\",\n input: PostgridVerifyGetIntlAutocompletePreviewsInput,\n output: PostgridVerifyGetIntlAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiD,EAAE,OAAO;CACrE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACjF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACpG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACpG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACnL,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,qJAAqJ,CAAC,CAAC,SAAS;CACvM,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACnH,CAAC;AACD,MAAM,0EAA0E,EAAE,OAAO;CACvF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4KAA4K,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1N,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC;
|
|
1
|
+
{"version":3,"file":"get-intl-autocomplete-previews.mjs","names":[],"sources":["../../src/actions/get-intl-autocomplete-previews.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetIntlAutocompletePreviewsInput = z.object({\n limit: z.number().int().describe(\"Maximum number of results to return\").optional(),\n language: z.string().describe(\"The language preference of the results (e.g., EN, FR, ES)\").optional(),\n cityFilter: z.string().describe(\"The city you want to filter the results by\").optional(),\n streetFilter: z.string().describe(\"The street you want to filter the results by\").optional(),\n partialStreet: z.string().describe(\"The partially written street address to autocomplete\").optional(),\n countriesFilter: z.string().describe(\"The countries you want to filter the results by. Supply ISO country code or the country's name. Separate multiple codes by comma.\").optional(),\n disableIPBiasing: z.boolean().describe(\"Disables the IP of the request from being used as a starting point for the search. By default, results are biased based on your current IP address.\").optional(),\n postalOrZipFilter: z.string().describe(\"The postal code or zip code you want to filter the results by\").optional(),\n});\nconst PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema = z.object({\n id: z.string().describe(\"Unique identifier for this preview item. If type is 'Address', this id can be used in POST /completions. If 'BuildingNumber', use the container id with advanced previews.\").nullable().optional(),\n text: z.string().describe(\"The display text for the autocomplete preview\").nullable().optional(),\n type: z.string().describe(\"Type of the preview item (e.g., 'Address', 'BuildingNumber')\").nullable().optional(),\n highlight: z.string().describe(\"Highlighted portion of the text matching the search query\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyGetIntlAutocompletePreviewsOutput = z.object({\n data: z.array(PostgridVerifyGetIntlAutocompletePreviews_AutocompletePreviewItemSchema).describe(\"List of autocomplete preview items for international addresses\").nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success')\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetIntlAutocompletePreviews = action(\"POSTGRID_VERIFY_GET_INTL_AUTOCOMPLETE_PREVIEWS\", {\n slug: \"postgrid_verify-get-intl-autocomplete-previews\",\n name: \"Get International Autocomplete Previews\",\n description: \"Tool to get previews of autocompleted international addresses. Results are biased based on your current IP address unless disabled. Returns both 'Address' and 'BuildingNumber' types - if type is 'Address', its id can be used in POST /completions; if 'BuildingNumber', use the container id with advanced previews.\",\n input: PostgridVerifyGetIntlAutocompletePreviewsInput,\n output: PostgridVerifyGetIntlAutocompletePreviewsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,iDAAiD,EAAE,OAAO;CACrE,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS;CACjF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACpG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CACvF,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS;CAC3F,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,sDAAsD,CAAC,CAAC,SAAS;CACpG,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACnL,kBAAkB,EAAE,QAAQ,CAAC,CAAC,SAAS,qJAAqJ,CAAC,CAAC,SAAS;CACvM,mBAAmB,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;AACnH,CAAC;AACD,MAAM,0EAA0E,EAAE,OAAO;CACvF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,4KAA4K,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1N,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9G,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,4CAA4C,OAAO,kDAAkD;CAChH,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX6D,EAAE,OAAO;EACtE,MAAM,EAAE,MAAM,uEAAuE,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACtL,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC3F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -5,12 +5,12 @@ const PostgridVerifyGetLookupInfoInput = zod.z.object({});
|
|
|
5
5
|
const PostgridVerifyGetLookupInfo_LookupInfoDataSchema = zod.z.object({
|
|
6
6
|
used: zod.z.number().int().describe("The number of lookups you have used so far.").nullable().optional(),
|
|
7
7
|
freeLimit: zod.z.number().int().describe("The free lookup limit for your account. Returns 0 if no free tier is available.").nullable().optional()
|
|
8
|
-
});
|
|
8
|
+
}).passthrough();
|
|
9
9
|
const PostgridVerifyGetLookupInfoOutput = zod.z.object({
|
|
10
10
|
data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),
|
|
11
11
|
status: zod.z.string().describe("Status of the request (e.g., 'success').").nullable().optional(),
|
|
12
12
|
message: zod.z.string().describe("Message providing details about the operation.").nullable().optional()
|
|
13
|
-
});
|
|
13
|
+
}).passthrough();
|
|
14
14
|
const postgridVerifyGetLookupInfo = require_action.action("POSTGRID_VERIFY_GET_LOOKUP_INFO", {
|
|
15
15
|
slug: "postgrid_verify-get-lookup-info",
|
|
16
16
|
name: "Get Lookup Info",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-lookup-info.cjs","names":["z","action"],"sources":["../../src/actions/get-lookup-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetLookupInfoInput = z.object({});\nconst PostgridVerifyGetLookupInfo_LookupInfoDataSchema = z.object({\n used: z.number().int().describe(\"The number of lookups you have used so far.\").nullable().optional(),\n freeLimit: z.number().int().describe(\"The free lookup limit for your account. Returns 0 if no free tier is available.\").nullable().optional(),\n});\nexport const PostgridVerifyGetLookupInfoOutput = z.object({\n data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n});\n\nexport const postgridVerifyGetLookupInfo = action(\"POSTGRID_VERIFY_GET_LOOKUP_INFO\", {\n slug: \"postgrid_verify-get-lookup-info\",\n name: \"Get Lookup Info\",\n description: \"Tool to retrieve lookup usage information for your PostGrid account. Use when you need to check how many lookups you have used and your free lookup limit.\",\n input: PostgridVerifyGetLookupInfoInput,\n output: PostgridVerifyGetLookupInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAC3D,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9I,CAAC;
|
|
1
|
+
{"version":3,"file":"get-lookup-info.cjs","names":["z","action"],"sources":["../../src/actions/get-lookup-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetLookupInfoInput = z.object({});\nconst PostgridVerifyGetLookupInfo_LookupInfoDataSchema = z.object({\n used: z.number().int().describe(\"The number of lookups you have used so far.\").nullable().optional(),\n freeLimit: z.number().int().describe(\"The free lookup limit for your account. Returns 0 if no free tier is available.\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyGetLookupInfoOutput = z.object({\n data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetLookupInfo = action(\"POSTGRID_VERIFY_GET_LOOKUP_INFO\", {\n slug: \"postgrid_verify-get-lookup-info\",\n name: \"Get Lookup Info\",\n description: \"Tool to retrieve lookup usage information for your PostGrid account. Use when you need to check how many lookups you have used and your free lookup limit.\",\n input: PostgridVerifyGetLookupInfoInput,\n output: PostgridVerifyGetLookupInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmCA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAC3D,MAAM,mDAAmDA,IAAAA,EAAE,OAAO;CAChE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9I,CAAC,CAAC,CAAC,YAAY;AACf,MAAa,oCAAoCA,IAAAA,EAAE,OAAO;CACxD,MAAM,iDAAiD,SAAS,CAAC,CAAC,SAAS;CAC3E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACrG,CAAC,CAAC,CAAC,YAAY;AAEf,MAAa,8BAA8BC,eAAAA,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -6,10 +6,10 @@ declare const PostgridVerifyGetLookupInfoOutput: z.ZodObject<{
|
|
|
6
6
|
data: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7
7
|
used: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
8
|
freeLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>>>;
|
|
10
10
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const postgridVerifyGetLookupInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { postgridVerifyGetLookupInfo };
|
|
@@ -6,10 +6,10 @@ declare const PostgridVerifyGetLookupInfoOutput: z.ZodObject<{
|
|
|
6
6
|
data: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
7
7
|
used: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
8
|
freeLimit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9
|
-
}, z.core.$
|
|
9
|
+
}, z.core.$loose>>>;
|
|
10
10
|
status: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
11
11
|
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
12
|
-
}, z.core.$
|
|
12
|
+
}, z.core.$loose>;
|
|
13
13
|
declare const postgridVerifyGetLookupInfo: import("@keystrokehq/action").WorkflowActionDefinition<Record<string, never>, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
14
14
|
//#endregion
|
|
15
15
|
export { postgridVerifyGetLookupInfo };
|
|
@@ -5,7 +5,7 @@ const PostgridVerifyGetLookupInfoInput = z.object({});
|
|
|
5
5
|
const PostgridVerifyGetLookupInfo_LookupInfoDataSchema = z.object({
|
|
6
6
|
used: z.number().int().describe("The number of lookups you have used so far.").nullable().optional(),
|
|
7
7
|
freeLimit: z.number().int().describe("The free lookup limit for your account. Returns 0 if no free tier is available.").nullable().optional()
|
|
8
|
-
});
|
|
8
|
+
}).passthrough();
|
|
9
9
|
const postgridVerifyGetLookupInfo = action("POSTGRID_VERIFY_GET_LOOKUP_INFO", {
|
|
10
10
|
slug: "postgrid_verify-get-lookup-info",
|
|
11
11
|
name: "Get Lookup Info",
|
|
@@ -15,7 +15,7 @@ const postgridVerifyGetLookupInfo = action("POSTGRID_VERIFY_GET_LOOKUP_INFO", {
|
|
|
15
15
|
data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),
|
|
16
16
|
status: z.string().describe("Status of the request (e.g., 'success').").nullable().optional(),
|
|
17
17
|
message: z.string().describe("Message providing details about the operation.").nullable().optional()
|
|
18
|
-
})
|
|
18
|
+
}).passthrough()
|
|
19
19
|
});
|
|
20
20
|
//#endregion
|
|
21
21
|
export { postgridVerifyGetLookupInfo };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-lookup-info.mjs","names":[],"sources":["../../src/actions/get-lookup-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetLookupInfoInput = z.object({});\nconst PostgridVerifyGetLookupInfo_LookupInfoDataSchema = z.object({\n used: z.number().int().describe(\"The number of lookups you have used so far.\").nullable().optional(),\n freeLimit: z.number().int().describe(\"The free lookup limit for your account. Returns 0 if no free tier is available.\").nullable().optional(),\n});\nexport const PostgridVerifyGetLookupInfoOutput = z.object({\n data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n});\n\nexport const postgridVerifyGetLookupInfo = action(\"POSTGRID_VERIFY_GET_LOOKUP_INFO\", {\n slug: \"postgrid_verify-get-lookup-info\",\n name: \"Get Lookup Info\",\n description: \"Tool to retrieve lookup usage information for your PostGrid account. Use when you need to check how many lookups you have used and your free lookup limit.\",\n input: PostgridVerifyGetLookupInfoInput,\n output: PostgridVerifyGetLookupInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO,CAAC,CAAC;AAC3D,MAAM,mDAAmD,EAAE,OAAO;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9I,CAAC;
|
|
1
|
+
{"version":3,"file":"get-lookup-info.mjs","names":[],"sources":["../../src/actions/get-lookup-info.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const PostgridVerifyGetLookupInfoInput = z.object({});\nconst PostgridVerifyGetLookupInfo_LookupInfoDataSchema = z.object({\n used: z.number().int().describe(\"The number of lookups you have used so far.\").nullable().optional(),\n freeLimit: z.number().int().describe(\"The free lookup limit for your account. Returns 0 if no free tier is available.\").nullable().optional(),\n}).passthrough();\nexport const PostgridVerifyGetLookupInfoOutput = z.object({\n data: PostgridVerifyGetLookupInfo_LookupInfoDataSchema.nullable().optional(),\n status: z.string().describe(\"Status of the request (e.g., 'success').\").nullable().optional(),\n message: z.string().describe(\"Message providing details about the operation.\").nullable().optional(),\n}).passthrough();\n\nexport const postgridVerifyGetLookupInfo = action(\"POSTGRID_VERIFY_GET_LOOKUP_INFO\", {\n slug: \"postgrid_verify-get-lookup-info\",\n name: \"Get Lookup Info\",\n description: \"Tool to retrieve lookup usage information for your PostGrid account. Use when you need to check how many lookups you have used and your free lookup limit.\",\n input: PostgridVerifyGetLookupInfoInput,\n output: PostgridVerifyGetLookupInfoOutput,\n});\n"],"mappings":";;;AAIA,MAAa,mCAAmC,EAAE,OAAO,CAAC,CAAC;AAC3D,MAAM,mDAAmD,EAAE,OAAO;CAChE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,WAAW,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC9I,CAAC,CAAC,CAAC,YAAY;AAOf,MAAa,8BAA8B,OAAO,mCAAmC;CACnF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAX+C,EAAE,OAAO;EACxD,MAAM,iDAAiD,SAAS,CAAC,CAAC,SAAS;EAC3E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EAC5F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -5,12 +5,12 @@ const PostgridVerifyLookupCityStateFromPostalInput = zod.z.object({ postalOrZip:
|
|
|
5
5
|
const PostgridVerifyLookupCityStateFromPostal_LookupCityStateFromPostalResponseDataItemSchema = zod.z.object({
|
|
6
6
|
city: zod.z.string().describe("City name corresponding to the postal/ZIP code").nullable().optional(),
|
|
7
7
|
provinceOrState: zod.z.string().describe("State or province corresponding to the postal/ZIP code").nullable().optional()
|
|
8
|
-
});
|
|
8
|
+
}).passthrough();
|
|
9
9
|
const PostgridVerifyLookupCityStateFromPostalOutput = zod.z.object({
|
|
10
10
|
data: zod.z.array(PostgridVerifyLookupCityStateFromPostal_LookupCityStateFromPostalResponseDataItemSchema).describe("List of city and state/province results"),
|
|
11
11
|
status: zod.z.string().describe("Indicates request success or failure").nullable().optional(),
|
|
12
12
|
message: zod.z.string().describe("Additional information about the request status").nullable().optional()
|
|
13
|
-
});
|
|
13
|
+
}).passthrough();
|
|
14
14
|
const postgridVerifyLookupCityStateFromPostal = require_action.action("POSTGRID_VERIFY_LOOKUP_CITY_STATE_FROM_POSTAL", {
|
|
15
15
|
slug: "postgrid_verify-lookup-city-state-from-postal",
|
|
16
16
|
name: "Lookup City and State from Postal Code",
|