@keystrokehq/postgrid 0.1.3 → 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.
@@ -5,9 +5,9 @@ declare const PostgridListChequesInput: z.ZodObject<{
5
5
  after: z.ZodOptional<z.ZodString>;
6
6
  count: z.ZodOptional<z.ZodNumber>;
7
7
  status: z.ZodOptional<z.ZodEnum<{
8
+ failed: "failed";
8
9
  created: "created";
9
10
  mailed: "mailed";
10
- failed: "failed";
11
11
  }>>;
12
12
  to_date: z.ZodOptional<z.ZodString>;
13
13
  from_date: z.ZodOptional<z.ZodString>;
@@ -53,7 +53,7 @@ declare const PostgridListChequesOutput: z.ZodObject<{
53
53
  declare const postgridListCheques: import("@keystrokehq/action").WorkflowActionDefinition<{
54
54
  after?: string | undefined;
55
55
  count?: number | undefined;
56
- status?: "created" | "mailed" | "failed" | undefined;
56
+ status?: "failed" | "created" | "mailed" | undefined;
57
57
  to_date?: string | undefined;
58
58
  from_date?: string | undefined;
59
59
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -5,9 +5,9 @@ declare const PostgridListChequesInput: z.ZodObject<{
5
5
  after: z.ZodOptional<z.ZodString>;
6
6
  count: z.ZodOptional<z.ZodNumber>;
7
7
  status: z.ZodOptional<z.ZodEnum<{
8
+ failed: "failed";
8
9
  created: "created";
9
10
  mailed: "mailed";
10
- failed: "failed";
11
11
  }>>;
12
12
  to_date: z.ZodOptional<z.ZodString>;
13
13
  from_date: z.ZodOptional<z.ZodString>;
@@ -53,7 +53,7 @@ declare const PostgridListChequesOutput: z.ZodObject<{
53
53
  declare const postgridListCheques: import("@keystrokehq/action").WorkflowActionDefinition<{
54
54
  after?: string | undefined;
55
55
  count?: number | undefined;
56
- status?: "created" | "mailed" | "failed" | undefined;
56
+ status?: "failed" | "created" | "mailed" | undefined;
57
57
  to_date?: string | undefined;
58
58
  from_date?: string | undefined;
59
59
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
@@ -8,10 +8,10 @@ declare const PostgridListLettersInput: z.ZodObject<{
8
8
  dateTo: z.ZodOptional<z.ZodString>;
9
9
  status: z.ZodOptional<z.ZodEnum<{
10
10
  draft: "draft";
11
+ completed: "completed";
11
12
  ready: "ready";
12
13
  printing: "printing";
13
14
  processed: "processed";
14
- completed: "completed";
15
15
  cancelled: "cancelled";
16
16
  }>>;
17
17
  dateFrom: z.ZodOptional<z.ZodString>;
@@ -94,7 +94,7 @@ declare const postgridListLetters: import("@keystrokehq/action").WorkflowActionD
94
94
  limit?: number | undefined;
95
95
  before?: string | undefined;
96
96
  dateTo?: string | undefined;
97
- status?: "draft" | "ready" | "printing" | "processed" | "completed" | "cancelled" | undefined;
97
+ status?: "draft" | "completed" | "ready" | "printing" | "processed" | "cancelled" | undefined;
98
98
  dateFrom?: string | undefined;
99
99
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
100
100
  //#endregion
@@ -8,10 +8,10 @@ declare const PostgridListLettersInput: z.ZodObject<{
8
8
  dateTo: z.ZodOptional<z.ZodString>;
9
9
  status: z.ZodOptional<z.ZodEnum<{
10
10
  draft: "draft";
11
+ completed: "completed";
11
12
  ready: "ready";
12
13
  printing: "printing";
13
14
  processed: "processed";
14
- completed: "completed";
15
15
  cancelled: "cancelled";
16
16
  }>>;
17
17
  dateFrom: z.ZodOptional<z.ZodString>;
@@ -94,7 +94,7 @@ declare const postgridListLetters: import("@keystrokehq/action").WorkflowActionD
94
94
  limit?: number | undefined;
95
95
  before?: string | undefined;
96
96
  dateTo?: string | undefined;
97
- status?: "draft" | "ready" | "printing" | "processed" | "completed" | "cancelled" | undefined;
97
+ status?: "draft" | "completed" | "ready" | "printing" | "processed" | "cancelled" | undefined;
98
98
  dateFrom?: string | undefined;
99
99
  }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
100
100
  //#endregion
@@ -5,11 +5,11 @@ declare const PostgridListPostcardsInput: z.ZodObject<{
5
5
  skip: z.ZodOptional<z.ZodNumber>;
6
6
  limit: z.ZodOptional<z.ZodNumber>;
7
7
  status: z.ZodOptional<z.ZodEnum<{
8
- failed: "failed";
9
8
  draft: "draft";
10
- completed: "completed";
11
9
  queued: "queued";
12
10
  processing: "processing";
11
+ completed: "completed";
12
+ failed: "failed";
13
13
  }>>;
14
14
  to_date: z.ZodOptional<z.ZodString>;
15
15
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -62,7 +62,7 @@ declare const PostgridListPostcardsOutput: z.ZodObject<{
62
62
  declare const postgridListPostcards: import("@keystrokehq/action").WorkflowActionDefinition<{
63
63
  skip?: number | undefined;
64
64
  limit?: number | undefined;
65
- status?: "failed" | "draft" | "completed" | "queued" | "processing" | undefined;
65
+ status?: "draft" | "queued" | "processing" | "completed" | "failed" | undefined;
66
66
  to_date?: string | undefined;
67
67
  metadata?: Record<string, unknown> | undefined;
68
68
  from_date?: string | undefined;
@@ -5,11 +5,11 @@ declare const PostgridListPostcardsInput: z.ZodObject<{
5
5
  skip: z.ZodOptional<z.ZodNumber>;
6
6
  limit: z.ZodOptional<z.ZodNumber>;
7
7
  status: z.ZodOptional<z.ZodEnum<{
8
- failed: "failed";
9
8
  draft: "draft";
10
- completed: "completed";
11
9
  queued: "queued";
12
10
  processing: "processing";
11
+ completed: "completed";
12
+ failed: "failed";
13
13
  }>>;
14
14
  to_date: z.ZodOptional<z.ZodString>;
15
15
  metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
@@ -62,7 +62,7 @@ declare const PostgridListPostcardsOutput: z.ZodObject<{
62
62
  declare const postgridListPostcards: import("@keystrokehq/action").WorkflowActionDefinition<{
63
63
  skip?: number | undefined;
64
64
  limit?: number | undefined;
65
- status?: "failed" | "draft" | "completed" | "queued" | "processing" | undefined;
65
+ status?: "draft" | "queued" | "processing" | "completed" | "failed" | undefined;
66
66
  to_date?: string | undefined;
67
67
  metadata?: Record<string, unknown> | undefined;
68
68
  from_date?: string | undefined;
package/dist/catalog.cjs CHANGED
@@ -8,7 +8,7 @@ const postgridCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/postgrid",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "PostGrid API Key",
13
13
  "secret": true,
14
14
  "description": "The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \"Settings\"."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const postgridCatalog = {\n \"slug\": \"postgrid\",\n \"name\": \"Postgrid\",\n \"description\": \"PostGrid provides APIs for automating direct mail and address verification services, enabling businesses to send letters, postcards, and checks, as well as verify and standardize addresses in real-time.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/postgrid\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"PostGrid API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \\\"Settings\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const postgridCatalog = {\n \"slug\": \"postgrid\",\n \"name\": \"Postgrid\",\n \"description\": \"PostGrid provides APIs for automating direct mail and address verification services, enabling businesses to send letters, postcards, and checks, as well as verify and standardize addresses in real-time.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/postgrid\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"PostGrid API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \\\"Settings\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
@@ -9,7 +9,7 @@ declare const postgridCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "PostGrid API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \"Settings\".";
@@ -9,7 +9,7 @@ declare const postgridCatalog: {
9
9
  readonly authKind: "keystroke";
10
10
  readonly oauthScopes: readonly [];
11
11
  readonly credentialFields: {
12
- readonly api_key: {
12
+ readonly generic_api_key: {
13
13
  readonly label: "PostGrid API Key";
14
14
  readonly secret: true;
15
15
  readonly description: "The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \"Settings\".";
package/dist/catalog.mjs CHANGED
@@ -8,7 +8,7 @@ const postgridCatalog = {
8
8
  "logo": "https://logos.composio.dev/api/postgrid",
9
9
  "authKind": "keystroke",
10
10
  "oauthScopes": [],
11
- "credentialFields": { "api_key": {
11
+ "credentialFields": { "generic_api_key": {
12
12
  "label": "PostGrid API Key",
13
13
  "secret": true,
14
14
  "description": "The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \"Settings\"."
@@ -1 +1 @@
1
- {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const postgridCatalog = {\n \"slug\": \"postgrid\",\n \"name\": \"Postgrid\",\n \"description\": \"PostGrid provides APIs for automating direct mail and address verification services, enabling businesses to send letters, postcards, and checks, as well as verify and standardize addresses in real-time.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/postgrid\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"api_key\": {\n \"label\": \"PostGrid API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \\\"Settings\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,WAAW;EACT,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const postgridCatalog = {\n \"slug\": \"postgrid\",\n \"name\": \"Postgrid\",\n \"description\": \"PostGrid provides APIs for automating direct mail and address verification services, enabling businesses to send letters, postcards, and checks, as well as verify and standardize addresses in real-time.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/postgrid\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": [],\n \"credentialFields\": {\n \"generic_api_key\": {\n \"label\": \"PostGrid API Key\",\n \"secret\": true,\n \"description\": \"The API key used to authenticate requests to the PostGrid API. You can find this in your PostGrid dashboard under \\\"Settings\\\".\"\n }\n },\n \"credentialScheme\": \"API_KEY\"\n} as const;\n"],"mappings":";;AACA,MAAa,kBAAkB;CAC7B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;CAChB,oBAAoB,EAClB,mBAAmB;EACjB,SAAS;EACT,UAAU;EACV,eAAe;CACjB,EACF;CACA,oBAAoB;AACtB"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/postgrid",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"