@keystrokehq/blackbaud 0.1.0
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/README.md +17 -0
- package/dist/action.cjs +21 -0
- package/dist/action.cjs.map +1 -0
- package/dist/action.mjs +21 -0
- package/dist/action.mjs.map +1 -0
- package/dist/actions/add-gifts-to-batch.cjs +46 -0
- package/dist/actions/add-gifts-to-batch.cjs.map +1 -0
- package/dist/actions/add-gifts-to-batch.d.cts +9 -0
- package/dist/actions/add-gifts-to-batch.d.cts.map +1 -0
- package/dist/actions/add-gifts-to-batch.d.mts +9 -0
- package/dist/actions/add-gifts-to-batch.d.mts.map +1 -0
- package/dist/actions/add-gifts-to-batch.mjs +43 -0
- package/dist/actions/add-gifts-to-batch.mjs.map +1 -0
- package/dist/actions/get-gift-by-id.cjs +31 -0
- package/dist/actions/get-gift-by-id.cjs.map +1 -0
- package/dist/actions/get-gift-by-id.d.cts +9 -0
- package/dist/actions/get-gift-by-id.d.cts.map +1 -0
- package/dist/actions/get-gift-by-id.d.mts +9 -0
- package/dist/actions/get-gift-by-id.d.mts.map +1 -0
- package/dist/actions/get-gift-by-id.mjs +30 -0
- package/dist/actions/get-gift-by-id.mjs.map +1 -0
- package/dist/actions/get-membership-details.cjs +34 -0
- package/dist/actions/get-membership-details.cjs.map +1 -0
- package/dist/actions/get-membership-details.d.cts +9 -0
- package/dist/actions/get-membership-details.d.cts.map +1 -0
- package/dist/actions/get-membership-details.d.mts +9 -0
- package/dist/actions/get-membership-details.d.mts.map +1 -0
- package/dist/actions/get-membership-details.mjs +33 -0
- package/dist/actions/get-membership-details.mjs.map +1 -0
- package/dist/actions/get-payment-transaction.cjs +35 -0
- package/dist/actions/get-payment-transaction.cjs.map +1 -0
- package/dist/actions/get-payment-transaction.d.cts +9 -0
- package/dist/actions/get-payment-transaction.d.cts.map +1 -0
- package/dist/actions/get-payment-transaction.d.mts +9 -0
- package/dist/actions/get-payment-transaction.d.mts.map +1 -0
- package/dist/actions/get-payment-transaction.mjs +34 -0
- package/dist/actions/get-payment-transaction.mjs.map +1 -0
- package/dist/actions/index.cjs +11 -0
- package/dist/actions/index.d.cts +6 -0
- package/dist/actions/index.d.mts +6 -0
- package/dist/actions/index.mjs +6 -0
- package/dist/actions/one-roster-o-auth2-base-api.cjs +53 -0
- package/dist/actions/one-roster-o-auth2-base-api.cjs.map +1 -0
- package/dist/actions/one-roster-o-auth2-base-api.d.cts +9 -0
- package/dist/actions/one-roster-o-auth2-base-api.d.cts.map +1 -0
- package/dist/actions/one-roster-o-auth2-base-api.d.mts +9 -0
- package/dist/actions/one-roster-o-auth2-base-api.d.mts.map +1 -0
- package/dist/actions/one-roster-o-auth2-base-api.mjs +52 -0
- package/dist/actions/one-roster-o-auth2-base-api.mjs.map +1 -0
- package/dist/app.cjs +9 -0
- package/dist/app.cjs.map +1 -0
- package/dist/app.d.cts +5 -0
- package/dist/app.d.cts.map +1 -0
- package/dist/app.d.mts +5 -0
- package/dist/app.d.mts.map +1 -0
- package/dist/app.mjs +10 -0
- package/dist/app.mjs.map +1 -0
- package/dist/catalog.cjs +15 -0
- package/dist/catalog.cjs.map +1 -0
- package/dist/catalog.d.cts +14 -0
- package/dist/catalog.d.cts.map +1 -0
- package/dist/catalog.d.mts +14 -0
- package/dist/catalog.d.mts.map +1 -0
- package/dist/catalog.mjs +15 -0
- package/dist/catalog.mjs.map +1 -0
- package/dist/execute.cjs +18 -0
- package/dist/execute.cjs.map +1 -0
- package/dist/execute.mjs +18 -0
- package/dist/execute.mjs.map +1 -0
- package/dist/index.cjs +16 -0
- package/dist/index.d.cts +8 -0
- package/dist/index.d.mts +8 -0
- package/dist/index.mjs +9 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @keystrokehq/blackbaud
|
|
2
|
+
|
|
3
|
+
Keystroke-managed integration.
|
|
4
|
+
|
|
5
|
+
**App:** `blackbaud`
|
|
6
|
+
**Version:** `20260615_00`
|
|
7
|
+
**Actions:** 5
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
import { defineAgent } from "@keystrokehq/keystroke/agent";
|
|
11
|
+
import { blackbaudAddGiftsToBatch } from "@keystrokehq/blackbaud/actions";
|
|
12
|
+
|
|
13
|
+
export default defineAgent({
|
|
14
|
+
key: "blackbaud-agent",
|
|
15
|
+
tools: [blackbaudAddGiftsToBatch],
|
|
16
|
+
});
|
|
17
|
+
```
|
package/dist/action.cjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const require_app = require("./app.cjs");
|
|
2
|
+
const require_execute = require("./execute.cjs");
|
|
3
|
+
require("zod");
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return require_app.blackbaud.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await require_execute.executeBlackbaudTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
exports.action = action;
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.cjs","names":["blackbaud","executeBlackbaudTool"],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { blackbaud } from \"./app\";\nimport { executeBlackbaudTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return blackbaud.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeBlackbaudTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAOA,YAAAA,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAMC,gBAAAA,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
|
package/dist/action.mjs
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { blackbaud } from "./app.mjs";
|
|
2
|
+
import { executeBlackbaudTool } from "./execute.mjs";
|
|
3
|
+
import "zod";
|
|
4
|
+
//#region src/action.ts
|
|
5
|
+
/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */
|
|
6
|
+
function action(tool, def) {
|
|
7
|
+
return blackbaud.action({
|
|
8
|
+
slug: def.slug,
|
|
9
|
+
name: def.name,
|
|
10
|
+
description: def.description,
|
|
11
|
+
input: def.input,
|
|
12
|
+
output: def.output,
|
|
13
|
+
async run(input) {
|
|
14
|
+
return def.output.parse(await executeBlackbaudTool(tool, input));
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
}
|
|
18
|
+
//#endregion
|
|
19
|
+
export { action };
|
|
20
|
+
|
|
21
|
+
//# sourceMappingURL=action.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action.mjs","names":[],"sources":["../src/action.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { blackbaud } from \"./app\";\nimport { executeBlackbaudTool } from \"./execute\";\n\n/** Bind one gateway tool to a typed app action; the call's output is parsed against `def.output`. */\nexport function action(\n tool: string,\n def: {\n slug: string;\n name: string;\n description: string;\n input: z.ZodTypeAny;\n output: z.ZodTypeAny;\n },\n) {\n return blackbaud.action({\n slug: def.slug,\n name: def.name,\n description: def.description,\n input: def.input,\n output: def.output,\n async run(input) {\n return def.output.parse(await executeBlackbaudTool(tool, input as Record<string, unknown>));\n },\n });\n}\n"],"mappings":";;;;;AAMA,SAAgB,OACd,MACA,KAOA;CACA,OAAO,UAAU,OAAO;EACtB,MAAM,IAAI;EACV,MAAM,IAAI;EACV,aAAa,IAAI;EACjB,OAAO,IAAI;EACX,QAAQ,IAAI;EACZ,MAAM,IAAI,OAAO;GACf,OAAO,IAAI,OAAO,MAAM,MAAM,qBAAqB,MAAM,KAAgC,CAAC;EAC5F;CACF,CAAC;AACH"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/add-gifts-to-batch.ts
|
|
4
|
+
const BlackbaudAddGiftsToBatchInput = zod.z.object({
|
|
5
|
+
gifts: zod.z.array(zod.z.object({
|
|
6
|
+
date: zod.z.string().describe("The date when the gift was received, in YYYY-MM-DD format"),
|
|
7
|
+
amount: zod.z.number().describe("The total monetary amount of the gift. Must be non-negative."),
|
|
8
|
+
splits: zod.z.array(zod.z.object({
|
|
9
|
+
amount: zod.z.number().describe("The monetary amount allocated to this split. Must be non-negative."),
|
|
10
|
+
fund_id: zod.z.string().describe("The system record ID of the fund to associate with this split").optional(),
|
|
11
|
+
appeal_id: zod.z.string().describe("The system record ID of the appeal to associate with this split").optional(),
|
|
12
|
+
campaign_id: zod.z.string().describe("The system record ID of the campaign to associate with this split").optional()
|
|
13
|
+
}).describe("Model for splitting gift across appeals, funds, or campaigns.\nAllows distributing a single gift amount across multiple designations.")).describe("Optional list of fund splits. Use when distributing the gift amount across multiple funds, appeals, or campaigns.").optional(),
|
|
14
|
+
payments: zod.z.array(zod.z.object({
|
|
15
|
+
date: zod.z.string().describe("The date when the payment was made, in ISO-8601 format (YYYY-MM-DD)"),
|
|
16
|
+
amount: zod.z.number().describe("The monetary amount of this payment. Must be non-negative."),
|
|
17
|
+
method_type_id: zod.z.string().describe("The system record ID of the payment method type (e.g., cash, check, credit card)").optional()
|
|
18
|
+
}).describe("Model for gift payment details.\nSpecifies how a gift was paid (amount, date, and payment method).")).describe("Optional list of payment details. Use when tracking how the gift was paid (e.g., multiple payment methods or installments).").optional(),
|
|
19
|
+
custom_fields: zod.z.array(zod.z.object({
|
|
20
|
+
value: zod.z.union([
|
|
21
|
+
zod.z.string(),
|
|
22
|
+
zod.z.number(),
|
|
23
|
+
zod.z.boolean()
|
|
24
|
+
]),
|
|
25
|
+
field_id: zod.z.string().describe("The system record ID of the custom field definition")
|
|
26
|
+
}).describe("Model for custom field entry associated with a gift.\nAllows setting custom/user-defined fields configured in your Blackbaud system.")).describe("Optional list of custom field values. Use to set any custom fields configured in your Blackbaud system.").optional(),
|
|
27
|
+
constituent_id: zod.z.string().describe("The system record ID of the constituent (donor) making this gift")
|
|
28
|
+
}).describe("Model representing a gift to add to a batch.\nContains all details about a single donation/gift from a constituent.")).describe("List of one or more gift objects to add to the batch. Each gift represents a donation from a constituent."),
|
|
29
|
+
batch_id: zod.z.string().describe("The system record ID of the gift batch where gifts will be added. The batch must be open (not committed).")
|
|
30
|
+
}).describe("Request model for adding one or more gifts to an existing gift batch.\nUse this to append new gifts to an open batch in Blackbaud Raiser's Edge NXT.");
|
|
31
|
+
const BlackbaudAddGiftsToBatchOutput = zod.z.object({
|
|
32
|
+
raw: zod.z.string().describe("Raw response body text, only populated if JSON parsing failed. Check this field when data is None.").nullable().optional(),
|
|
33
|
+
data: zod.z.unknown().describe("Parsed JSON response from the API. For successful requests (2xx), this typically contains confirmation details or empty object. For errors (4xx/5xx), contains error details with 'message' field.").nullable().optional(),
|
|
34
|
+
status_code: zod.z.number().int().describe("HTTP status code returned by the API. Use this to determine if the operation succeeded.")
|
|
35
|
+
}).describe("Response model capturing the API response for adding gifts to a batch.\n\nCommon status codes:\n- 200: Gifts successfully added to the batch\n- 400: Invalid request (e.g., invalid batch_id format, missing required fields)\n- 401: Authentication failed (missing or invalid Bearer token or subscription key)\n- 404: Gift batch not found with the specified batch_id\n- 403: Forbidden (insufficient permissions to add gifts to this batch)");
|
|
36
|
+
const blackbaudAddGiftsToBatch = require_action.action("BLACKBAUD_ADD_GIFTS_TO_BATCH", {
|
|
37
|
+
slug: "blackbaud-add-gifts-to-batch",
|
|
38
|
+
name: "Add Gifts To Batch",
|
|
39
|
+
description: "Add one or more gifts (donations) to an existing gift batch in Blackbaud Raiser's Edge NXT. Use this tool when you need to: - Append new gifts to an open batch for later processing - Batch multiple donations together before committing them - Add gifts with detailed information (payments, splits, custom fields) Prerequisites: - The batch must already exist (use a create batch action first if needed) - The batch must be in \"open\" status (not committed) - You need the batch_id (system record ID) and constituent_id (donor ID) for each gift Note: This action returns response details for all HTTP status codes (including errors). Check the status_code field in the response to determine success (200) vs errors (4xx/5xx).",
|
|
40
|
+
input: BlackbaudAddGiftsToBatchInput,
|
|
41
|
+
output: BlackbaudAddGiftsToBatchOutput
|
|
42
|
+
});
|
|
43
|
+
//#endregion
|
|
44
|
+
exports.blackbaudAddGiftsToBatch = blackbaudAddGiftsToBatch;
|
|
45
|
+
|
|
46
|
+
//# sourceMappingURL=add-gifts-to-batch.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-gifts-to-batch.cjs","names":["z","action"],"sources":["../../src/actions/add-gifts-to-batch.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudAddGiftsToBatchInput: z.ZodTypeAny = z.object({\n gifts: z.array(z.object({\n date: z.string().describe(\"The date when the gift was received, in YYYY-MM-DD format\"),\n amount: z.number().describe(\"The total monetary amount of the gift. Must be non-negative.\"),\n splits: z.array(z.object({\n amount: z.number().describe(\"The monetary amount allocated to this split. Must be non-negative.\"),\n fund_id: z.string().describe(\"The system record ID of the fund to associate with this split\").optional(),\n appeal_id: z.string().describe(\"The system record ID of the appeal to associate with this split\").optional(),\n campaign_id: z.string().describe(\"The system record ID of the campaign to associate with this split\").optional(),\n}).describe(\"Model for splitting gift across appeals, funds, or campaigns.\\nAllows distributing a single gift amount across multiple designations.\")).describe(\"Optional list of fund splits. Use when distributing the gift amount across multiple funds, appeals, or campaigns.\").optional(),\n payments: z.array(z.object({\n date: z.string().describe(\"The date when the payment was made, in ISO-8601 format (YYYY-MM-DD)\"),\n amount: z.number().describe(\"The monetary amount of this payment. Must be non-negative.\"),\n method_type_id: z.string().describe(\"The system record ID of the payment method type (e.g., cash, check, credit card)\").optional(),\n}).describe(\"Model for gift payment details.\\nSpecifies how a gift was paid (amount, date, and payment method).\")).describe(\"Optional list of payment details. Use when tracking how the gift was paid (e.g., multiple payment methods or installments).\").optional(),\n custom_fields: z.array(z.object({\n value: z.union([z.string(), z.number(), z.boolean()]),\n field_id: z.string().describe(\"The system record ID of the custom field definition\"),\n}).describe(\"Model for custom field entry associated with a gift.\\nAllows setting custom/user-defined fields configured in your Blackbaud system.\")).describe(\"Optional list of custom field values. Use to set any custom fields configured in your Blackbaud system.\").optional(),\n constituent_id: z.string().describe(\"The system record ID of the constituent (donor) making this gift\"),\n}).describe(\"Model representing a gift to add to a batch.\\nContains all details about a single donation/gift from a constituent.\")).describe(\"List of one or more gift objects to add to the batch. Each gift represents a donation from a constituent.\"),\n batch_id: z.string().describe(\"The system record ID of the gift batch where gifts will be added. The batch must be open (not committed).\"),\n}).describe(\"Request model for adding one or more gifts to an existing gift batch.\\nUse this to append new gifts to an open batch in Blackbaud Raiser's Edge NXT.\");\nexport const BlackbaudAddGiftsToBatchOutput: z.ZodTypeAny = z.object({\n raw: z.string().describe(\"Raw response body text, only populated if JSON parsing failed. Check this field when data is None.\").nullable().optional(),\n data: z.unknown().describe(\"Parsed JSON response from the API. For successful requests (2xx), this typically contains confirmation details or empty object. For errors (4xx/5xx), contains error details with 'message' field.\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. Use this to determine if the operation succeeded.\"),\n}).describe(\"Response model capturing the API response for adding gifts to a batch.\\n\\nCommon status codes:\\n- 200: Gifts successfully added to the batch\\n- 400: Invalid request (e.g., invalid batch_id format, missing required fields)\\n- 401: Authentication failed (missing or invalid Bearer token or subscription key)\\n- 404: Gift batch not found with the specified batch_id\\n- 403: Forbidden (insufficient permissions to add gifts to this batch)\");\n\nexport const blackbaudAddGiftsToBatch = action(\"BLACKBAUD_ADD_GIFTS_TO_BATCH\", {\n slug: \"blackbaud-add-gifts-to-batch\",\n name: \"Add Gifts To Batch\",\n description: \"Add one or more gifts (donations) to an existing gift batch in Blackbaud Raiser's Edge NXT. Use this tool when you need to: - Append new gifts to an open batch for later processing - Batch multiple donations together before committing them - Add gifts with detailed information (payments, splits, custom fields) Prerequisites: - The batch must already exist (use a create batch action first if needed) - The batch must be in \\\"open\\\" status (not committed) - You need the batch_id (system record ID) and constituent_id (donor ID) for each gift Note: This action returns response details for all HTTP status codes (including errors). Check the status_code field in the response to determine success (200) vs errors (4xx/5xx).\",\n input: BlackbaudAddGiftsToBatchInput,\n output: BlackbaudAddGiftsToBatchOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8CA,IAAAA,EAAE,OAAO;CAClE,OAAOA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;EACxB,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D;EACrF,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;EAC1F,QAAQA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;GACzB,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;GAChG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;GACvG,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;GAC3G,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;EACjH,CAAC,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,CAAC,SAAS,mHAAmH,CAAC,CAAC,SAAS;EAC3R,UAAUA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;GAC3B,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;GAC/F,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;GACxF,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;EACnI,CAAC,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;EAClQ,eAAeA,IAAAA,EAAE,MAAMA,IAAAA,EAAE,OAAO;GAChC,OAAOA,IAAAA,EAAE,MAAM;IAACA,IAAAA,EAAE,OAAO;IAAGA,IAAAA,EAAE,OAAO;IAAGA,IAAAA,EAAE,QAAQ;GAAC,CAAC;GACpD,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD;EACrF,CAAC,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;EAChR,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;CACxG,CAAC,CAAC,CAAC,SAAS,qHAAqH,CAAC,CAAC,CAAC,SAAS,2GAA2G;CACtP,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2GAA2G;AAC3I,CAAC,CAAC,CAAC,SAAS,sJAAsJ;AAClK,MAAa,iCAA+CA,IAAAA,EAAE,OAAO;CACnE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnJ,MAAMA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,oMAAoM,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrP,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yFAAyF;AAClI,CAAC,CAAC,CAAC,SAAS,obAAob;AAEhc,MAAa,2BAA2BC,eAAAA,OAAO,gCAAgC;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/add-gifts-to-batch.d.ts
|
|
4
|
+
declare const BlackbaudAddGiftsToBatchInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudAddGiftsToBatchOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudAddGiftsToBatch: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudAddGiftsToBatch };
|
|
9
|
+
//# sourceMappingURL=add-gifts-to-batch.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-gifts-to-batch.d.cts","names":[],"sources":["../../src/actions/add-gifts-to-batch.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAsBqH;AAAA,cACtJ,8BAAA,EAAgC,CAAA,CAAE,UAIkZ;AAAA,cAEpb,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/add-gifts-to-batch.d.ts
|
|
4
|
+
declare const BlackbaudAddGiftsToBatchInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudAddGiftsToBatchOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudAddGiftsToBatch: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudAddGiftsToBatch };
|
|
9
|
+
//# sourceMappingURL=add-gifts-to-batch.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-gifts-to-batch.d.mts","names":[],"sources":["../../src/actions/add-gifts-to-batch.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAsBqH;AAAA,cACtJ,8BAAA,EAAgC,CAAA,CAAE,UAIkZ;AAAA,cAEpb,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
const blackbaudAddGiftsToBatch = action("BLACKBAUD_ADD_GIFTS_TO_BATCH", {
|
|
4
|
+
slug: "blackbaud-add-gifts-to-batch",
|
|
5
|
+
name: "Add Gifts To Batch",
|
|
6
|
+
description: "Add one or more gifts (donations) to an existing gift batch in Blackbaud Raiser's Edge NXT. Use this tool when you need to: - Append new gifts to an open batch for later processing - Batch multiple donations together before committing them - Add gifts with detailed information (payments, splits, custom fields) Prerequisites: - The batch must already exist (use a create batch action first if needed) - The batch must be in \"open\" status (not committed) - You need the batch_id (system record ID) and constituent_id (donor ID) for each gift Note: This action returns response details for all HTTP status codes (including errors). Check the status_code field in the response to determine success (200) vs errors (4xx/5xx).",
|
|
7
|
+
input: z.object({
|
|
8
|
+
gifts: z.array(z.object({
|
|
9
|
+
date: z.string().describe("The date when the gift was received, in YYYY-MM-DD format"),
|
|
10
|
+
amount: z.number().describe("The total monetary amount of the gift. Must be non-negative."),
|
|
11
|
+
splits: z.array(z.object({
|
|
12
|
+
amount: z.number().describe("The monetary amount allocated to this split. Must be non-negative."),
|
|
13
|
+
fund_id: z.string().describe("The system record ID of the fund to associate with this split").optional(),
|
|
14
|
+
appeal_id: z.string().describe("The system record ID of the appeal to associate with this split").optional(),
|
|
15
|
+
campaign_id: z.string().describe("The system record ID of the campaign to associate with this split").optional()
|
|
16
|
+
}).describe("Model for splitting gift across appeals, funds, or campaigns.\nAllows distributing a single gift amount across multiple designations.")).describe("Optional list of fund splits. Use when distributing the gift amount across multiple funds, appeals, or campaigns.").optional(),
|
|
17
|
+
payments: z.array(z.object({
|
|
18
|
+
date: z.string().describe("The date when the payment was made, in ISO-8601 format (YYYY-MM-DD)"),
|
|
19
|
+
amount: z.number().describe("The monetary amount of this payment. Must be non-negative."),
|
|
20
|
+
method_type_id: z.string().describe("The system record ID of the payment method type (e.g., cash, check, credit card)").optional()
|
|
21
|
+
}).describe("Model for gift payment details.\nSpecifies how a gift was paid (amount, date, and payment method).")).describe("Optional list of payment details. Use when tracking how the gift was paid (e.g., multiple payment methods or installments).").optional(),
|
|
22
|
+
custom_fields: z.array(z.object({
|
|
23
|
+
value: z.union([
|
|
24
|
+
z.string(),
|
|
25
|
+
z.number(),
|
|
26
|
+
z.boolean()
|
|
27
|
+
]),
|
|
28
|
+
field_id: z.string().describe("The system record ID of the custom field definition")
|
|
29
|
+
}).describe("Model for custom field entry associated with a gift.\nAllows setting custom/user-defined fields configured in your Blackbaud system.")).describe("Optional list of custom field values. Use to set any custom fields configured in your Blackbaud system.").optional(),
|
|
30
|
+
constituent_id: z.string().describe("The system record ID of the constituent (donor) making this gift")
|
|
31
|
+
}).describe("Model representing a gift to add to a batch.\nContains all details about a single donation/gift from a constituent.")).describe("List of one or more gift objects to add to the batch. Each gift represents a donation from a constituent."),
|
|
32
|
+
batch_id: z.string().describe("The system record ID of the gift batch where gifts will be added. The batch must be open (not committed).")
|
|
33
|
+
}).describe("Request model for adding one or more gifts to an existing gift batch.\nUse this to append new gifts to an open batch in Blackbaud Raiser's Edge NXT."),
|
|
34
|
+
output: z.object({
|
|
35
|
+
raw: z.string().describe("Raw response body text, only populated if JSON parsing failed. Check this field when data is None.").nullable().optional(),
|
|
36
|
+
data: z.unknown().describe("Parsed JSON response from the API. For successful requests (2xx), this typically contains confirmation details or empty object. For errors (4xx/5xx), contains error details with 'message' field.").nullable().optional(),
|
|
37
|
+
status_code: z.number().int().describe("HTTP status code returned by the API. Use this to determine if the operation succeeded.")
|
|
38
|
+
}).describe("Response model capturing the API response for adding gifts to a batch.\n\nCommon status codes:\n- 200: Gifts successfully added to the batch\n- 400: Invalid request (e.g., invalid batch_id format, missing required fields)\n- 401: Authentication failed (missing or invalid Bearer token or subscription key)\n- 404: Gift batch not found with the specified batch_id\n- 403: Forbidden (insufficient permissions to add gifts to this batch)")
|
|
39
|
+
});
|
|
40
|
+
//#endregion
|
|
41
|
+
export { blackbaudAddGiftsToBatch };
|
|
42
|
+
|
|
43
|
+
//# sourceMappingURL=add-gifts-to-batch.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"add-gifts-to-batch.mjs","names":[],"sources":["../../src/actions/add-gifts-to-batch.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudAddGiftsToBatchInput: z.ZodTypeAny = z.object({\n gifts: z.array(z.object({\n date: z.string().describe(\"The date when the gift was received, in YYYY-MM-DD format\"),\n amount: z.number().describe(\"The total monetary amount of the gift. Must be non-negative.\"),\n splits: z.array(z.object({\n amount: z.number().describe(\"The monetary amount allocated to this split. Must be non-negative.\"),\n fund_id: z.string().describe(\"The system record ID of the fund to associate with this split\").optional(),\n appeal_id: z.string().describe(\"The system record ID of the appeal to associate with this split\").optional(),\n campaign_id: z.string().describe(\"The system record ID of the campaign to associate with this split\").optional(),\n}).describe(\"Model for splitting gift across appeals, funds, or campaigns.\\nAllows distributing a single gift amount across multiple designations.\")).describe(\"Optional list of fund splits. Use when distributing the gift amount across multiple funds, appeals, or campaigns.\").optional(),\n payments: z.array(z.object({\n date: z.string().describe(\"The date when the payment was made, in ISO-8601 format (YYYY-MM-DD)\"),\n amount: z.number().describe(\"The monetary amount of this payment. Must be non-negative.\"),\n method_type_id: z.string().describe(\"The system record ID of the payment method type (e.g., cash, check, credit card)\").optional(),\n}).describe(\"Model for gift payment details.\\nSpecifies how a gift was paid (amount, date, and payment method).\")).describe(\"Optional list of payment details. Use when tracking how the gift was paid (e.g., multiple payment methods or installments).\").optional(),\n custom_fields: z.array(z.object({\n value: z.union([z.string(), z.number(), z.boolean()]),\n field_id: z.string().describe(\"The system record ID of the custom field definition\"),\n}).describe(\"Model for custom field entry associated with a gift.\\nAllows setting custom/user-defined fields configured in your Blackbaud system.\")).describe(\"Optional list of custom field values. Use to set any custom fields configured in your Blackbaud system.\").optional(),\n constituent_id: z.string().describe(\"The system record ID of the constituent (donor) making this gift\"),\n}).describe(\"Model representing a gift to add to a batch.\\nContains all details about a single donation/gift from a constituent.\")).describe(\"List of one or more gift objects to add to the batch. Each gift represents a donation from a constituent.\"),\n batch_id: z.string().describe(\"The system record ID of the gift batch where gifts will be added. The batch must be open (not committed).\"),\n}).describe(\"Request model for adding one or more gifts to an existing gift batch.\\nUse this to append new gifts to an open batch in Blackbaud Raiser's Edge NXT.\");\nexport const BlackbaudAddGiftsToBatchOutput: z.ZodTypeAny = z.object({\n raw: z.string().describe(\"Raw response body text, only populated if JSON parsing failed. Check this field when data is None.\").nullable().optional(),\n data: z.unknown().describe(\"Parsed JSON response from the API. For successful requests (2xx), this typically contains confirmation details or empty object. For errors (4xx/5xx), contains error details with 'message' field.\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code returned by the API. Use this to determine if the operation succeeded.\"),\n}).describe(\"Response model capturing the API response for adding gifts to a batch.\\n\\nCommon status codes:\\n- 200: Gifts successfully added to the batch\\n- 400: Invalid request (e.g., invalid batch_id format, missing required fields)\\n- 401: Authentication failed (missing or invalid Bearer token or subscription key)\\n- 404: Gift batch not found with the specified batch_id\\n- 403: Forbidden (insufficient permissions to add gifts to this batch)\");\n\nexport const blackbaudAddGiftsToBatch = action(\"BLACKBAUD_ADD_GIFTS_TO_BATCH\", {\n slug: \"blackbaud-add-gifts-to-batch\",\n name: \"Add Gifts To Batch\",\n description: \"Add one or more gifts (donations) to an existing gift batch in Blackbaud Raiser's Edge NXT. Use this tool when you need to: - Append new gifts to an open batch for later processing - Batch multiple donations together before committing them - Add gifts with detailed information (payments, splits, custom fields) Prerequisites: - The batch must already exist (use a create batch action first if needed) - The batch must be in \\\"open\\\" status (not committed) - You need the batch_id (system record ID) and constituent_id (donor ID) for each gift Note: This action returns response details for all HTTP status codes (including errors). Check the status_code field in the response to determine success (200) vs errors (4xx/5xx).\",\n input: BlackbaudAddGiftsToBatchInput,\n output: BlackbaudAddGiftsToBatchOutput,\n});\n"],"mappings":";;AAiCA,MAAa,2BAA2B,OAAO,gCAAgC;CAC7E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAjCyD,EAAE,OAAO;EAClE,OAAO,EAAE,MAAM,EAAE,OAAO;GACxB,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D;GACrF,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D;GAC1F,QAAQ,EAAE,MAAM,EAAE,OAAO;IACzB,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE;IAChG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+DAA+D,CAAC,CAAC,SAAS;IACvG,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,iEAAiE,CAAC,CAAC,SAAS;IAC3G,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mEAAmE,CAAC,CAAC,SAAS;GACjH,CAAC,CAAC,CAAC,SAAS,uIAAuI,CAAC,CAAC,CAAC,SAAS,mHAAmH,CAAC,CAAC,SAAS;GAC3R,UAAU,EAAE,MAAM,EAAE,OAAO;IAC3B,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,qEAAqE;IAC/F,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,4DAA4D;IACxF,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;GACnI,CAAC,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,CAAC,SAAS,6HAA6H,CAAC,CAAC,SAAS;GAClQ,eAAe,EAAE,MAAM,EAAE,OAAO;IAChC,OAAO,EAAE,MAAM;KAAC,EAAE,OAAO;KAAG,EAAE,OAAO;KAAG,EAAE,QAAQ;IAAC,CAAC;IACpD,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD;GACrF,CAAC,CAAC,CAAC,SAAS,sIAAsI,CAAC,CAAC,CAAC,SAAS,yGAAyG,CAAC,CAAC,SAAS;GAChR,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,kEAAkE;EACxG,CAAC,CAAC,CAAC,SAAS,qHAAqH,CAAC,CAAC,CAAC,SAAS,2GAA2G;EACtP,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,2GAA2G;CAC3I,CAAC,CAAC,CAAC,SAAS,sJAWH;CACP,QAX0D,EAAE,OAAO;EACnE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,oGAAoG,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACnJ,MAAM,EAAE,QAAQ,CAAC,CAAC,SAAS,oMAAoM,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;EACrP,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,yFAAyF;CAClI,CAAC,CAAC,CAAC,SAAS,obAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-gift-by-id.ts
|
|
4
|
+
const BlackbaudGetGiftByIdInput = zod.z.object({ gift_id: zod.z.number().int().describe("Unique system record ID of the gift to retrieve.") }).describe("Request model for retrieving a gift by its system record ID.");
|
|
5
|
+
const BlackbaudGetGiftById_GiftDetailsModelSchema = zod.z.object({
|
|
6
|
+
id: zod.z.number().int().describe("The system record ID of the gift").nullable().optional(),
|
|
7
|
+
date: zod.z.string().describe("The date of the gift (ISO 8601 format)").nullable().optional(),
|
|
8
|
+
type: zod.z.string().describe("The gift type (e.g., Donation, Pledge, In-kind)").nullable().optional(),
|
|
9
|
+
error: zod.z.string().describe("Error message if the request failed").nullable().optional(),
|
|
10
|
+
title: zod.z.string().describe("Error title from the API").nullable().optional(),
|
|
11
|
+
amount: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Gift amount details including value and currency").nullable().optional(),
|
|
12
|
+
status: zod.z.unknown().describe("Gift status or HTTP status code (type varies)").nullable().optional(),
|
|
13
|
+
message: zod.z.string().describe("Additional message from the API").nullable().optional(),
|
|
14
|
+
lookup_id: zod.z.string().describe("The user-defined lookup ID for the gift").nullable().optional(),
|
|
15
|
+
post_date: zod.z.string().describe("The date when the gift was posted").nullable().optional(),
|
|
16
|
+
post_status: zod.z.string().describe("The post status of the gift").nullable().optional(),
|
|
17
|
+
status_code: zod.z.number().int().describe("HTTP status code of the response").nullable().optional(),
|
|
18
|
+
constituent_id: zod.z.string().describe("The ID of the constituent (donor) who made the gift").nullable().optional()
|
|
19
|
+
}).passthrough().describe("Model representing gift details from Blackbaud SKY API.\nContains core gift information including donor, amount, dates, and associated metadata.");
|
|
20
|
+
const BlackbaudGetGiftByIdOutput = zod.z.object({ gift: BlackbaudGetGiftById_GiftDetailsModelSchema.nullable() }).describe("Response model containing full gift details.");
|
|
21
|
+
const blackbaudGetGiftById = require_action.action("BLACKBAUD_GET_GIFT_BY_ID", {
|
|
22
|
+
slug: "blackbaud-get-gift-by-id",
|
|
23
|
+
name: "Get Gift By ID",
|
|
24
|
+
description: "Retrieves comprehensive gift details from Blackbaud Raiser's Edge NXT by gift ID. Use this tool when you need to fetch detailed information about a specific gift including: - Gift amount and currency - Donor/constituent information - Gift type and status - Important dates (gift date, post date) - Associated metadata and custom fields The gift_id is the unique system record ID (integer) that identifies the gift in Raiser's Edge NXT.",
|
|
25
|
+
input: BlackbaudGetGiftByIdInput,
|
|
26
|
+
output: BlackbaudGetGiftByIdOutput
|
|
27
|
+
});
|
|
28
|
+
//#endregion
|
|
29
|
+
exports.blackbaudGetGiftById = blackbaudGetGiftById;
|
|
30
|
+
|
|
31
|
+
//# sourceMappingURL=get-gift-by-id.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-gift-by-id.cjs","names":["z","action"],"sources":["../../src/actions/get-gift-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudGetGiftByIdInput: z.ZodTypeAny = z.object({\n gift_id: z.number().int().describe(\"Unique system record ID of the gift to retrieve.\"),\n}).describe(\"Request model for retrieving a gift by its system record ID.\");\nconst BlackbaudGetGiftById_GiftDetailsModelSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"The system record ID of the gift\").nullable().optional(),\n date: z.string().describe(\"The date of the gift (ISO 8601 format)\").nullable().optional(),\n type: z.string().describe(\"The gift type (e.g., Donation, Pledge, In-kind)\").nullable().optional(),\n error: z.string().describe(\"Error message if the request failed\").nullable().optional(),\n title: z.string().describe(\"Error title from the API\").nullable().optional(),\n amount: z.record(z.string(), z.unknown()).describe(\"Gift amount details including value and currency\").nullable().optional(),\n status: z.unknown().describe(\"Gift status or HTTP status code (type varies)\").nullable().optional(),\n message: z.string().describe(\"Additional message from the API\").nullable().optional(),\n lookup_id: z.string().describe(\"The user-defined lookup ID for the gift\").nullable().optional(),\n post_date: z.string().describe(\"The date when the gift was posted\").nullable().optional(),\n post_status: z.string().describe(\"The post status of the gift\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code of the response\").nullable().optional(),\n constituent_id: z.string().describe(\"The ID of the constituent (donor) who made the gift\").nullable().optional(),\n}).passthrough().describe(\"Model representing gift details from Blackbaud SKY API.\\nContains core gift information including donor, amount, dates, and associated metadata.\");\nexport const BlackbaudGetGiftByIdOutput: z.ZodTypeAny = z.object({\n gift: BlackbaudGetGiftById_GiftDetailsModelSchema.nullable(),\n}).describe(\"Response model containing full gift details.\");\n\nexport const blackbaudGetGiftById = action(\"BLACKBAUD_GET_GIFT_BY_ID\", {\n slug: \"blackbaud-get-gift-by-id\",\n name: \"Get Gift By ID\",\n description: \"Retrieves comprehensive gift details from Blackbaud Raiser's Edge NXT by gift ID. Use this tool when you need to fetch detailed information about a specific gift including: - Gift amount and currency - Donor/constituent information - Gift type and status - Important dates (gift date, post date) - Associated metadata and custom fields The gift_id is the unique system record ID (integer) that identifies the gift in Raiser's Edge NXT.\",\n input: BlackbaudGetGiftByIdInput,\n output: BlackbaudGetGiftByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0CA,IAAAA,EAAE,OAAO,EAC9D,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EACvF,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAM,8CAA4DA,IAAAA,EAAE,OAAO;CACzE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,QAAQA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,QAAQA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kJAAkJ;AAC5K,MAAa,6BAA2CA,IAAAA,EAAE,OAAO,EAC/D,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,SAAS,8CAA8C;AAE1D,MAAa,uBAAuBC,eAAAA,OAAO,4BAA4B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-gift-by-id.d.ts
|
|
4
|
+
declare const BlackbaudGetGiftByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetGiftByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetGiftById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetGiftById };
|
|
9
|
+
//# sourceMappingURL=get-gift-by-id.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-gift-by-id.d.cts","names":[],"sources":["../../src/actions/get-gift-by-id.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAEiC;AAAA,cAgB9D,0BAAA,EAA4B,CAAA,CAAE,UAEgB;AAAA,cAE9C,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-gift-by-id.d.ts
|
|
4
|
+
declare const BlackbaudGetGiftByIdInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetGiftByIdOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetGiftById: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetGiftById };
|
|
9
|
+
//# sourceMappingURL=get-gift-by-id.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-gift-by-id.d.mts","names":[],"sources":["../../src/actions/get-gift-by-id.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAEiC;AAAA,cAgB9D,0BAAA,EAA4B,CAAA,CAAE,UAEgB;AAAA,cAE9C,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-gift-by-id.ts
|
|
4
|
+
const BlackbaudGetGiftByIdInput = z.object({ gift_id: z.number().int().describe("Unique system record ID of the gift to retrieve.") }).describe("Request model for retrieving a gift by its system record ID.");
|
|
5
|
+
const BlackbaudGetGiftById_GiftDetailsModelSchema = z.object({
|
|
6
|
+
id: z.number().int().describe("The system record ID of the gift").nullable().optional(),
|
|
7
|
+
date: z.string().describe("The date of the gift (ISO 8601 format)").nullable().optional(),
|
|
8
|
+
type: z.string().describe("The gift type (e.g., Donation, Pledge, In-kind)").nullable().optional(),
|
|
9
|
+
error: z.string().describe("Error message if the request failed").nullable().optional(),
|
|
10
|
+
title: z.string().describe("Error title from the API").nullable().optional(),
|
|
11
|
+
amount: z.record(z.string(), z.unknown()).describe("Gift amount details including value and currency").nullable().optional(),
|
|
12
|
+
status: z.unknown().describe("Gift status or HTTP status code (type varies)").nullable().optional(),
|
|
13
|
+
message: z.string().describe("Additional message from the API").nullable().optional(),
|
|
14
|
+
lookup_id: z.string().describe("The user-defined lookup ID for the gift").nullable().optional(),
|
|
15
|
+
post_date: z.string().describe("The date when the gift was posted").nullable().optional(),
|
|
16
|
+
post_status: z.string().describe("The post status of the gift").nullable().optional(),
|
|
17
|
+
status_code: z.number().int().describe("HTTP status code of the response").nullable().optional(),
|
|
18
|
+
constituent_id: z.string().describe("The ID of the constituent (donor) who made the gift").nullable().optional()
|
|
19
|
+
}).passthrough().describe("Model representing gift details from Blackbaud SKY API.\nContains core gift information including donor, amount, dates, and associated metadata.");
|
|
20
|
+
const blackbaudGetGiftById = action("BLACKBAUD_GET_GIFT_BY_ID", {
|
|
21
|
+
slug: "blackbaud-get-gift-by-id",
|
|
22
|
+
name: "Get Gift By ID",
|
|
23
|
+
description: "Retrieves comprehensive gift details from Blackbaud Raiser's Edge NXT by gift ID. Use this tool when you need to fetch detailed information about a specific gift including: - Gift amount and currency - Donor/constituent information - Gift type and status - Important dates (gift date, post date) - Associated metadata and custom fields The gift_id is the unique system record ID (integer) that identifies the gift in Raiser's Edge NXT.",
|
|
24
|
+
input: BlackbaudGetGiftByIdInput,
|
|
25
|
+
output: z.object({ gift: BlackbaudGetGiftById_GiftDetailsModelSchema.nullable() }).describe("Response model containing full gift details.")
|
|
26
|
+
});
|
|
27
|
+
//#endregion
|
|
28
|
+
export { blackbaudGetGiftById };
|
|
29
|
+
|
|
30
|
+
//# sourceMappingURL=get-gift-by-id.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-gift-by-id.mjs","names":[],"sources":["../../src/actions/get-gift-by-id.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudGetGiftByIdInput: z.ZodTypeAny = z.object({\n gift_id: z.number().int().describe(\"Unique system record ID of the gift to retrieve.\"),\n}).describe(\"Request model for retrieving a gift by its system record ID.\");\nconst BlackbaudGetGiftById_GiftDetailsModelSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"The system record ID of the gift\").nullable().optional(),\n date: z.string().describe(\"The date of the gift (ISO 8601 format)\").nullable().optional(),\n type: z.string().describe(\"The gift type (e.g., Donation, Pledge, In-kind)\").nullable().optional(),\n error: z.string().describe(\"Error message if the request failed\").nullable().optional(),\n title: z.string().describe(\"Error title from the API\").nullable().optional(),\n amount: z.record(z.string(), z.unknown()).describe(\"Gift amount details including value and currency\").nullable().optional(),\n status: z.unknown().describe(\"Gift status or HTTP status code (type varies)\").nullable().optional(),\n message: z.string().describe(\"Additional message from the API\").nullable().optional(),\n lookup_id: z.string().describe(\"The user-defined lookup ID for the gift\").nullable().optional(),\n post_date: z.string().describe(\"The date when the gift was posted\").nullable().optional(),\n post_status: z.string().describe(\"The post status of the gift\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code of the response\").nullable().optional(),\n constituent_id: z.string().describe(\"The ID of the constituent (donor) who made the gift\").nullable().optional(),\n}).passthrough().describe(\"Model representing gift details from Blackbaud SKY API.\\nContains core gift information including donor, amount, dates, and associated metadata.\");\nexport const BlackbaudGetGiftByIdOutput: z.ZodTypeAny = z.object({\n gift: BlackbaudGetGiftById_GiftDetailsModelSchema.nullable(),\n}).describe(\"Response model containing full gift details.\");\n\nexport const blackbaudGetGiftById = action(\"BLACKBAUD_GET_GIFT_BY_ID\", {\n slug: \"blackbaud-get-gift-by-id\",\n name: \"Get Gift By ID\",\n description: \"Retrieves comprehensive gift details from Blackbaud Raiser's Edge NXT by gift ID. Use this tool when you need to fetch detailed information about a specific gift including: - Gift amount and currency - Donor/constituent information - Gift type and status - Important dates (gift date, post date) - Associated metadata and custom fields The gift_id is the unique system record ID (integer) that identifies the gift in Raiser's Edge NXT.\",\n input: BlackbaudGetGiftByIdInput,\n output: BlackbaudGetGiftByIdOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0C,EAAE,OAAO,EAC9D,SAAS,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kDAAkD,EACvF,CAAC,CAAC,CAAC,SAAS,8DAA8D;AAC1E,MAAM,8CAA4D,EAAE,OAAO;CACzE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qCAAqC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3E,QAAQ,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC3H,QAAQ,EAAE,QAAQ,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iCAAiC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9F,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/F,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AACjH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,kJAAkJ;AAK5K,MAAa,uBAAuB,OAAO,4BAA4B;CACrE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATsD,EAAE,OAAO,EAC/D,MAAM,4CAA4C,SAAS,EAC7D,CAAC,CAAC,CAAC,SAAS,8CAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-membership-details.ts
|
|
4
|
+
const BlackbaudGetMembershipDetailsInput = zod.z.object({ member_junction_id: zod.z.string().describe("The unique member junction ID (GUID format) that identifies a specific membership record in Raiser's Edge NXT. This ID links a constituent to a membership program and can be obtained from membership list endpoints or constituent membership records.") }).describe("Request model for retrieving detailed membership information from Blackbaud Raiser's Edge NXT.");
|
|
5
|
+
const BlackbaudGetMembershipDetails_MembershipDetailsModelSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("The system record ID (GUID) of the membership").nullable().optional(),
|
|
7
|
+
dues: zod.z.unknown().describe("Membership dues information including amount and payment details").nullable().optional(),
|
|
8
|
+
error: zod.z.string().describe("Error message if the API request failed").nullable().optional(),
|
|
9
|
+
title: zod.z.string().describe("Error title from the API response").nullable().optional(),
|
|
10
|
+
status: zod.z.unknown().describe("The membership status or HTTP status code (type varies by context)").nullable().optional(),
|
|
11
|
+
expires: zod.z.string().describe("The membership expiration date in ISO 8601 format (YYYY-MM-DD)").nullable().optional(),
|
|
12
|
+
message: zod.z.string().describe("Additional message or error details from the API").nullable().optional(),
|
|
13
|
+
program: zod.z.string().describe("The membership program name (alternative field)").nullable().optional(),
|
|
14
|
+
category: zod.z.string().describe("The membership category classification").nullable().optional(),
|
|
15
|
+
standing: zod.z.string().describe("The membership standing status (e.g., 'Active', 'Lapsed', 'Expired')").nullable().optional(),
|
|
16
|
+
start_date: zod.z.string().describe("The membership start date in ISO 8601 format (YYYY-MM-DD)").nullable().optional(),
|
|
17
|
+
status_code: zod.z.number().int().describe("HTTP status code from the API response").nullable().optional(),
|
|
18
|
+
subcategory: zod.z.string().describe("The membership subcategory classification").nullable().optional(),
|
|
19
|
+
constituent_id: zod.z.string().describe("The GUID of the constituent (member) associated with this membership").nullable().optional(),
|
|
20
|
+
expiration_date: zod.z.string().describe("The membership expiration date (alternative field)").nullable().optional(),
|
|
21
|
+
membership_program: zod.z.string().describe("The name or identifier of the membership program").nullable().optional()
|
|
22
|
+
}).passthrough().describe("Model representing detailed membership information from Blackbaud Raiser's Edge NXT.\nContains membership-specific data including program details, dates, and associated constituent information.");
|
|
23
|
+
const BlackbaudGetMembershipDetailsOutput = zod.z.object({ membership_details: BlackbaudGetMembershipDetails_MembershipDetailsModelSchema.nullable() }).describe("Response model containing comprehensive membership details including program information,\ndates, standing, and associated constituent data.\n\nNote: If the request fails, error information will be included in the membership_details object\nwith fields like 'error', 'status_code', and 'message'.");
|
|
24
|
+
const blackbaudGetMembershipDetails = require_action.action("BLACKBAUD_GET_MEMBERSHIP_DETAILS", {
|
|
25
|
+
slug: "blackbaud-get-membership-details",
|
|
26
|
+
name: "Get Membership Details",
|
|
27
|
+
description: "Retrieves comprehensive membership details from Blackbaud Raiser's Edge NXT by member junction ID. Fetches detailed information about a specific membership including program name, category/subcategory, membership status and standing (Active, Lapsed), start/expiration dates, dues information, and associated constituent ID. Requires a valid member_junction_id (GUID) that uniquely identifies a membership junction record linking a constituent to a membership program in Raiser's Edge NXT. Returns error information in the response object for graceful error handling in agent workflows.",
|
|
28
|
+
input: BlackbaudGetMembershipDetailsInput,
|
|
29
|
+
output: BlackbaudGetMembershipDetailsOutput
|
|
30
|
+
});
|
|
31
|
+
//#endregion
|
|
32
|
+
exports.blackbaudGetMembershipDetails = blackbaudGetMembershipDetails;
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=get-membership-details.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-membership-details.cjs","names":["z","action"],"sources":["../../src/actions/get-membership-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudGetMembershipDetailsInput: z.ZodTypeAny = z.object({\n member_junction_id: z.string().describe(\"The unique member junction ID (GUID format) that identifies a specific membership record in Raiser's Edge NXT. This ID links a constituent to a membership program and can be obtained from membership list endpoints or constituent membership records.\"),\n}).describe(\"Request model for retrieving detailed membership information from Blackbaud Raiser's Edge NXT.\");\nconst BlackbaudGetMembershipDetails_MembershipDetailsModelSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The system record ID (GUID) of the membership\").nullable().optional(),\n dues: z.unknown().describe(\"Membership dues information including amount and payment details\").nullable().optional(),\n error: z.string().describe(\"Error message if the API request failed\").nullable().optional(),\n title: z.string().describe(\"Error title from the API response\").nullable().optional(),\n status: z.unknown().describe(\"The membership status or HTTP status code (type varies by context)\").nullable().optional(),\n expires: z.string().describe(\"The membership expiration date in ISO 8601 format (YYYY-MM-DD)\").nullable().optional(),\n message: z.string().describe(\"Additional message or error details from the API\").nullable().optional(),\n program: z.string().describe(\"The membership program name (alternative field)\").nullable().optional(),\n category: z.string().describe(\"The membership category classification\").nullable().optional(),\n standing: z.string().describe(\"The membership standing status (e.g., 'Active', 'Lapsed', 'Expired')\").nullable().optional(),\n start_date: z.string().describe(\"The membership start date in ISO 8601 format (YYYY-MM-DD)\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code from the API response\").nullable().optional(),\n subcategory: z.string().describe(\"The membership subcategory classification\").nullable().optional(),\n constituent_id: z.string().describe(\"The GUID of the constituent (member) associated with this membership\").nullable().optional(),\n expiration_date: z.string().describe(\"The membership expiration date (alternative field)\").nullable().optional(),\n membership_program: z.string().describe(\"The name or identifier of the membership program\").nullable().optional(),\n}).passthrough().describe(\"Model representing detailed membership information from Blackbaud Raiser's Edge NXT.\\nContains membership-specific data including program details, dates, and associated constituent information.\");\nexport const BlackbaudGetMembershipDetailsOutput: z.ZodTypeAny = z.object({\n membership_details: BlackbaudGetMembershipDetails_MembershipDetailsModelSchema.nullable(),\n}).describe(\"Response model containing comprehensive membership details including program information,\\ndates, standing, and associated constituent data.\\n\\nNote: If the request fails, error information will be included in the membership_details object\\nwith fields like 'error', 'status_code', and 'message'.\");\n\nexport const blackbaudGetMembershipDetails = action(\"BLACKBAUD_GET_MEMBERSHIP_DETAILS\", {\n slug: \"blackbaud-get-membership-details\",\n name: \"Get Membership Details\",\n description: \"Retrieves comprehensive membership details from Blackbaud Raiser's Edge NXT by member junction ID. Fetches detailed information about a specific membership including program name, category/subcategory, membership status and standing (Active, Lapsed), start/expiration dates, dues information, and associated constituent ID. Requires a valid member_junction_id (GUID) that uniquely identifies a membership junction record linking a constituent to a membership program in Raiser's Edge NXT. Returns error information in the response object for graceful error handling in agent workflows.\",\n input: BlackbaudGetMembershipDetailsInput,\n output: BlackbaudGetMembershipDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmDA,IAAAA,EAAE,OAAO,EACvE,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0PAA0P,EACpS,CAAC,CAAC,CAAC,SAAS,gGAAgG;AAC5G,MAAM,6DAA2EA,IAAAA,EAAE,OAAO;CACxF,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,MAAMA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,QAAQA,IAAAA,EAAE,QAAQ,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1H,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mMAAmM;AAC7N,MAAa,sCAAoDA,IAAAA,EAAE,OAAO,EACxE,oBAAoB,2DAA2D,SAAS,EAC1F,CAAC,CAAC,CAAC,SAAS,0SAA0S;AAEtT,MAAa,gCAAgCC,eAAAA,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-membership-details.d.ts
|
|
4
|
+
declare const BlackbaudGetMembershipDetailsInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetMembershipDetailsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetMembershipDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetMembershipDetails };
|
|
9
|
+
//# sourceMappingURL=get-membership-details.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-membership-details.d.cts","names":[],"sources":["../../src/actions/get-membership-details.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAE0D;AAAA,cAmBhG,mCAAA,EAAqC,CAAA,CAAE,UAEmQ;AAAA,cAE1S,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-membership-details.d.ts
|
|
4
|
+
declare const BlackbaudGetMembershipDetailsInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetMembershipDetailsOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetMembershipDetails: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetMembershipDetails };
|
|
9
|
+
//# sourceMappingURL=get-membership-details.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-membership-details.d.mts","names":[],"sources":["../../src/actions/get-membership-details.ts"],"mappings":";;;cAIa,kCAAA,EAAoC,CAAA,CAAE,UAE0D;AAAA,cAmBhG,mCAAA,EAAqC,CAAA,CAAE,UAEmQ;AAAA,cAE1S,6BAAA,gCAA6B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-membership-details.ts
|
|
4
|
+
const BlackbaudGetMembershipDetailsInput = z.object({ member_junction_id: z.string().describe("The unique member junction ID (GUID format) that identifies a specific membership record in Raiser's Edge NXT. This ID links a constituent to a membership program and can be obtained from membership list endpoints or constituent membership records.") }).describe("Request model for retrieving detailed membership information from Blackbaud Raiser's Edge NXT.");
|
|
5
|
+
const BlackbaudGetMembershipDetails_MembershipDetailsModelSchema = z.object({
|
|
6
|
+
id: z.string().describe("The system record ID (GUID) of the membership").nullable().optional(),
|
|
7
|
+
dues: z.unknown().describe("Membership dues information including amount and payment details").nullable().optional(),
|
|
8
|
+
error: z.string().describe("Error message if the API request failed").nullable().optional(),
|
|
9
|
+
title: z.string().describe("Error title from the API response").nullable().optional(),
|
|
10
|
+
status: z.unknown().describe("The membership status or HTTP status code (type varies by context)").nullable().optional(),
|
|
11
|
+
expires: z.string().describe("The membership expiration date in ISO 8601 format (YYYY-MM-DD)").nullable().optional(),
|
|
12
|
+
message: z.string().describe("Additional message or error details from the API").nullable().optional(),
|
|
13
|
+
program: z.string().describe("The membership program name (alternative field)").nullable().optional(),
|
|
14
|
+
category: z.string().describe("The membership category classification").nullable().optional(),
|
|
15
|
+
standing: z.string().describe("The membership standing status (e.g., 'Active', 'Lapsed', 'Expired')").nullable().optional(),
|
|
16
|
+
start_date: z.string().describe("The membership start date in ISO 8601 format (YYYY-MM-DD)").nullable().optional(),
|
|
17
|
+
status_code: z.number().int().describe("HTTP status code from the API response").nullable().optional(),
|
|
18
|
+
subcategory: z.string().describe("The membership subcategory classification").nullable().optional(),
|
|
19
|
+
constituent_id: z.string().describe("The GUID of the constituent (member) associated with this membership").nullable().optional(),
|
|
20
|
+
expiration_date: z.string().describe("The membership expiration date (alternative field)").nullable().optional(),
|
|
21
|
+
membership_program: z.string().describe("The name or identifier of the membership program").nullable().optional()
|
|
22
|
+
}).passthrough().describe("Model representing detailed membership information from Blackbaud Raiser's Edge NXT.\nContains membership-specific data including program details, dates, and associated constituent information.");
|
|
23
|
+
const blackbaudGetMembershipDetails = action("BLACKBAUD_GET_MEMBERSHIP_DETAILS", {
|
|
24
|
+
slug: "blackbaud-get-membership-details",
|
|
25
|
+
name: "Get Membership Details",
|
|
26
|
+
description: "Retrieves comprehensive membership details from Blackbaud Raiser's Edge NXT by member junction ID. Fetches detailed information about a specific membership including program name, category/subcategory, membership status and standing (Active, Lapsed), start/expiration dates, dues information, and associated constituent ID. Requires a valid member_junction_id (GUID) that uniquely identifies a membership junction record linking a constituent to a membership program in Raiser's Edge NXT. Returns error information in the response object for graceful error handling in agent workflows.",
|
|
27
|
+
input: BlackbaudGetMembershipDetailsInput,
|
|
28
|
+
output: z.object({ membership_details: BlackbaudGetMembershipDetails_MembershipDetailsModelSchema.nullable() }).describe("Response model containing comprehensive membership details including program information,\ndates, standing, and associated constituent data.\n\nNote: If the request fails, error information will be included in the membership_details object\nwith fields like 'error', 'status_code', and 'message'.")
|
|
29
|
+
});
|
|
30
|
+
//#endregion
|
|
31
|
+
export { blackbaudGetMembershipDetails };
|
|
32
|
+
|
|
33
|
+
//# sourceMappingURL=get-membership-details.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-membership-details.mjs","names":[],"sources":["../../src/actions/get-membership-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudGetMembershipDetailsInput: z.ZodTypeAny = z.object({\n member_junction_id: z.string().describe(\"The unique member junction ID (GUID format) that identifies a specific membership record in Raiser's Edge NXT. This ID links a constituent to a membership program and can be obtained from membership list endpoints or constituent membership records.\"),\n}).describe(\"Request model for retrieving detailed membership information from Blackbaud Raiser's Edge NXT.\");\nconst BlackbaudGetMembershipDetails_MembershipDetailsModelSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"The system record ID (GUID) of the membership\").nullable().optional(),\n dues: z.unknown().describe(\"Membership dues information including amount and payment details\").nullable().optional(),\n error: z.string().describe(\"Error message if the API request failed\").nullable().optional(),\n title: z.string().describe(\"Error title from the API response\").nullable().optional(),\n status: z.unknown().describe(\"The membership status or HTTP status code (type varies by context)\").nullable().optional(),\n expires: z.string().describe(\"The membership expiration date in ISO 8601 format (YYYY-MM-DD)\").nullable().optional(),\n message: z.string().describe(\"Additional message or error details from the API\").nullable().optional(),\n program: z.string().describe(\"The membership program name (alternative field)\").nullable().optional(),\n category: z.string().describe(\"The membership category classification\").nullable().optional(),\n standing: z.string().describe(\"The membership standing status (e.g., 'Active', 'Lapsed', 'Expired')\").nullable().optional(),\n start_date: z.string().describe(\"The membership start date in ISO 8601 format (YYYY-MM-DD)\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code from the API response\").nullable().optional(),\n subcategory: z.string().describe(\"The membership subcategory classification\").nullable().optional(),\n constituent_id: z.string().describe(\"The GUID of the constituent (member) associated with this membership\").nullable().optional(),\n expiration_date: z.string().describe(\"The membership expiration date (alternative field)\").nullable().optional(),\n membership_program: z.string().describe(\"The name or identifier of the membership program\").nullable().optional(),\n}).passthrough().describe(\"Model representing detailed membership information from Blackbaud Raiser's Edge NXT.\\nContains membership-specific data including program details, dates, and associated constituent information.\");\nexport const BlackbaudGetMembershipDetailsOutput: z.ZodTypeAny = z.object({\n membership_details: BlackbaudGetMembershipDetails_MembershipDetailsModelSchema.nullable(),\n}).describe(\"Response model containing comprehensive membership details including program information,\\ndates, standing, and associated constituent data.\\n\\nNote: If the request fails, error information will be included in the membership_details object\\nwith fields like 'error', 'status_code', and 'message'.\");\n\nexport const blackbaudGetMembershipDetails = action(\"BLACKBAUD_GET_MEMBERSHIP_DETAILS\", {\n slug: \"blackbaud-get-membership-details\",\n name: \"Get Membership Details\",\n description: \"Retrieves comprehensive membership details from Blackbaud Raiser's Edge NXT by member junction ID. Fetches detailed information about a specific membership including program name, category/subcategory, membership status and standing (Active, Lapsed), start/expiration dates, dues information, and associated constituent ID. Requires a valid member_junction_id (GUID) that uniquely identifies a membership junction record linking a constituent to a membership program in Raiser's Edge NXT. Returns error information in the response object for graceful error handling in agent workflows.\",\n input: BlackbaudGetMembershipDetailsInput,\n output: BlackbaudGetMembershipDetailsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,qCAAmD,EAAE,OAAO,EACvE,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,0PAA0P,EACpS,CAAC,CAAC,CAAC,SAAS,gGAAgG;AAC5G,MAAM,6DAA2E,EAAE,OAAO;CACxF,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,MAAM,EAAE,QAAQ,CAAC,CAAC,SAAS,kEAAkE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1F,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpF,QAAQ,EAAE,QAAQ,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACvH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,gEAAgE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnH,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,iDAAiD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpG,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5F,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1H,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjH,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wCAAwC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACrG,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChI,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC/G,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,kDAAkD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAClH,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,mMAAmM;AAK7N,MAAa,gCAAgC,OAAO,oCAAoC;CACtF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAT+D,EAAE,OAAO,EACxE,oBAAoB,2DAA2D,SAAS,EAC1F,CAAC,CAAC,CAAC,SAAS,0SAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/get-payment-transaction.ts
|
|
4
|
+
const BlackbaudGetPaymentTransactionInput = zod.z.object({ transaction_id: zod.z.string().describe("The unique identifier of the payment transaction to retrieve. This ID is returned when a transaction is created through the Blackbaud Merchant Services (BBMS) Payments API or transaction processing endpoints.") }).describe("Request model for retrieving a payment transaction by its ID.");
|
|
5
|
+
const BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema = zod.z.object({
|
|
6
|
+
id: zod.z.string().describe("Unique transaction identifier assigned by Blackbaud").nullable().optional(),
|
|
7
|
+
title: zod.z.string().describe("Response title or summary").nullable().optional(),
|
|
8
|
+
amount: zod.z.number().describe("Transaction amount in the specified currency").nullable().optional(),
|
|
9
|
+
status: zod.z.union([zod.z.string(), zod.z.number().int()]).nullable().optional(),
|
|
10
|
+
message: zod.z.string().describe("Response message from the API").nullable().optional(),
|
|
11
|
+
currency: zod.z.string().describe("ISO 4217 currency code (e.g., USD, EUR, GBP)").nullable().optional(),
|
|
12
|
+
created_at: zod.z.string().describe("Timestamp when the transaction was created").nullable().optional(),
|
|
13
|
+
error_code: zod.z.string().describe("Error code if transaction failed").nullable().optional(),
|
|
14
|
+
customer_id: zod.z.string().describe("Unique identifier for the customer/donor").nullable().optional(),
|
|
15
|
+
status_code: zod.z.number().int().describe("HTTP status code or transaction status code").nullable().optional(),
|
|
16
|
+
processed_at: zod.z.string().describe("Timestamp when the transaction was processed").nullable().optional(),
|
|
17
|
+
error_message: zod.z.string().describe("Human-readable error message if transaction failed").nullable().optional(),
|
|
18
|
+
payment_method: zod.z.string().describe("Type of payment method used (e.g., 'credit_card', 'ach', 'direct_debit')").nullable().optional(),
|
|
19
|
+
transaction_id: zod.z.string().describe("Transaction ID (alternative field name)").nullable().optional(),
|
|
20
|
+
authorization_code: zod.z.string().describe("Authorization code from payment processor").nullable().optional(),
|
|
21
|
+
payment_method_type: zod.z.string().describe("Specific payment method type").nullable().optional(),
|
|
22
|
+
gateway_transaction_id: zod.z.string().describe("Transaction ID from the payment gateway").nullable().optional()
|
|
23
|
+
}).passthrough().describe("Model representing payment transaction details from Blackbaud Payments API.\n\nCommon fields include transaction identification, amounts, status, payment method details,\nand customer information. The model accepts additional fields beyond those explicitly defined.");
|
|
24
|
+
const BlackbaudGetPaymentTransactionOutput = zod.z.object({ transaction: BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema.nullable() }).describe("Response model containing full transaction details.");
|
|
25
|
+
const blackbaudGetPaymentTransaction = require_action.action("BLACKBAUD_GET_PAYMENT_TRANSACTION", {
|
|
26
|
+
slug: "blackbaud-get-payment-transaction",
|
|
27
|
+
name: "Get Payment Transaction",
|
|
28
|
+
description: "Retrieves payment transaction details from Blackbaud SKY Payments API. Use this to check transaction status, amounts, payment methods, and error details. Transaction IDs come from payment processing endpoints, checkout callbacks, batch operations, or webhook notifications. Requires: Payments API subscription key (Bb-Api-Subscription-Key) and OAuth Bearer token. This retrieves existing transactions; it does not process new payments.",
|
|
29
|
+
input: BlackbaudGetPaymentTransactionInput,
|
|
30
|
+
output: BlackbaudGetPaymentTransactionOutput
|
|
31
|
+
});
|
|
32
|
+
//#endregion
|
|
33
|
+
exports.blackbaudGetPaymentTransaction = blackbaudGetPaymentTransaction;
|
|
34
|
+
|
|
35
|
+
//# sourceMappingURL=get-payment-transaction.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-payment-transaction.cjs","names":["z","action"],"sources":["../../src/actions/get-payment-transaction.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudGetPaymentTransactionInput: z.ZodTypeAny = z.object({\n transaction_id: z.string().describe(\"The unique identifier of the payment transaction to retrieve. This ID is returned when a transaction is created through the Blackbaud Merchant Services (BBMS) Payments API or transaction processing endpoints.\"),\n}).describe(\"Request model for retrieving a payment transaction by its ID.\");\nconst BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique transaction identifier assigned by Blackbaud\").nullable().optional(),\n title: z.string().describe(\"Response title or summary\").nullable().optional(),\n amount: z.number().describe(\"Transaction amount in the specified currency\").nullable().optional(),\n status: z.union([z.string(), z.number().int()]).nullable().optional(),\n message: z.string().describe(\"Response message from the API\").nullable().optional(),\n currency: z.string().describe(\"ISO 4217 currency code (e.g., USD, EUR, GBP)\").nullable().optional(),\n created_at: z.string().describe(\"Timestamp when the transaction was created\").nullable().optional(),\n error_code: z.string().describe(\"Error code if transaction failed\").nullable().optional(),\n customer_id: z.string().describe(\"Unique identifier for the customer/donor\").nullable().optional(),\n status_code: z.number().int().describe(\"HTTP status code or transaction status code\").nullable().optional(),\n processed_at: z.string().describe(\"Timestamp when the transaction was processed\").nullable().optional(),\n error_message: z.string().describe(\"Human-readable error message if transaction failed\").nullable().optional(),\n payment_method: z.string().describe(\"Type of payment method used (e.g., 'credit_card', 'ach', 'direct_debit')\").nullable().optional(),\n transaction_id: z.string().describe(\"Transaction ID (alternative field name)\").nullable().optional(),\n authorization_code: z.string().describe(\"Authorization code from payment processor\").nullable().optional(),\n payment_method_type: z.string().describe(\"Specific payment method type\").nullable().optional(),\n gateway_transaction_id: z.string().describe(\"Transaction ID from the payment gateway\").nullable().optional(),\n}).passthrough().describe(\"Model representing payment transaction details from Blackbaud Payments API.\\n\\nCommon fields include transaction identification, amounts, status, payment method details,\\nand customer information. The model accepts additional fields beyond those explicitly defined.\");\nexport const BlackbaudGetPaymentTransactionOutput: z.ZodTypeAny = z.object({\n transaction: BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema.nullable(),\n}).describe(\"Response model containing full transaction details.\");\n\nexport const blackbaudGetPaymentTransaction = action(\"BLACKBAUD_GET_PAYMENT_TRANSACTION\", {\n slug: \"blackbaud-get-payment-transaction\",\n name: \"Get Payment Transaction\",\n description: \"Retrieves payment transaction details from Blackbaud SKY Payments API. Use this to check transaction status, amounts, payment methods, and error details. Transaction IDs come from payment processing endpoints, checkout callbacks, batch operations, or webhook notifications. Requires: Payments API subscription key (Bb-Api-Subscription-Key) and OAuth Bearer token. This retrieves existing transactions; it does not process new payments.\",\n input: BlackbaudGetPaymentTransactionInput,\n output: BlackbaudGetPaymentTransactionOutput,\n});\n"],"mappings":";;;AAIA,MAAa,sCAAoDA,IAAAA,EAAE,OAAO,EACxE,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kNAAkN,EACxP,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,+DAA6EA,IAAAA,EAAE,OAAO;CAC1F,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,QAAQA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,QAAQA,IAAAA,EAAE,MAAM,CAACA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtG,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpI,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,oBAAoBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,qBAAqBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,wBAAwBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2QAA2Q;AACrS,MAAa,uCAAqDA,IAAAA,EAAE,OAAO,EACzE,aAAa,6DAA6D,SAAS,EACrF,CAAC,CAAC,CAAC,SAAS,qDAAqD;AAEjE,MAAa,iCAAiCC,eAAAA,OAAO,qCAAqC;CACxF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-payment-transaction.d.ts
|
|
4
|
+
declare const BlackbaudGetPaymentTransactionInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetPaymentTransactionOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetPaymentTransaction: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetPaymentTransaction };
|
|
9
|
+
//# sourceMappingURL=get-payment-transaction.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-payment-transaction.d.cts","names":[],"sources":["../../src/actions/get-payment-transaction.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAEwB;AAAA,cAoB/D,oCAAA,EAAsC,CAAA,CAAE,UAEa;AAAA,cAErD,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/get-payment-transaction.d.ts
|
|
4
|
+
declare const BlackbaudGetPaymentTransactionInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudGetPaymentTransactionOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudGetPaymentTransaction: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudGetPaymentTransaction };
|
|
9
|
+
//# sourceMappingURL=get-payment-transaction.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-payment-transaction.d.mts","names":[],"sources":["../../src/actions/get-payment-transaction.ts"],"mappings":";;;cAIa,mCAAA,EAAqC,CAAA,CAAE,UAEwB;AAAA,cAoB/D,oCAAA,EAAsC,CAAA,CAAE,UAEa;AAAA,cAErD,8BAAA,gCAA8B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|