@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
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/get-payment-transaction.ts
|
|
4
|
+
const BlackbaudGetPaymentTransactionInput = z.object({ 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.") }).describe("Request model for retrieving a payment transaction by its ID.");
|
|
5
|
+
const BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema = z.object({
|
|
6
|
+
id: z.string().describe("Unique transaction identifier assigned by Blackbaud").nullable().optional(),
|
|
7
|
+
title: z.string().describe("Response title or summary").nullable().optional(),
|
|
8
|
+
amount: z.number().describe("Transaction amount in the specified currency").nullable().optional(),
|
|
9
|
+
status: z.union([z.string(), z.number().int()]).nullable().optional(),
|
|
10
|
+
message: z.string().describe("Response message from the API").nullable().optional(),
|
|
11
|
+
currency: z.string().describe("ISO 4217 currency code (e.g., USD, EUR, GBP)").nullable().optional(),
|
|
12
|
+
created_at: z.string().describe("Timestamp when the transaction was created").nullable().optional(),
|
|
13
|
+
error_code: z.string().describe("Error code if transaction failed").nullable().optional(),
|
|
14
|
+
customer_id: z.string().describe("Unique identifier for the customer/donor").nullable().optional(),
|
|
15
|
+
status_code: z.number().int().describe("HTTP status code or transaction status code").nullable().optional(),
|
|
16
|
+
processed_at: z.string().describe("Timestamp when the transaction was processed").nullable().optional(),
|
|
17
|
+
error_message: z.string().describe("Human-readable error message if transaction failed").nullable().optional(),
|
|
18
|
+
payment_method: z.string().describe("Type of payment method used (e.g., 'credit_card', 'ach', 'direct_debit')").nullable().optional(),
|
|
19
|
+
transaction_id: z.string().describe("Transaction ID (alternative field name)").nullable().optional(),
|
|
20
|
+
authorization_code: z.string().describe("Authorization code from payment processor").nullable().optional(),
|
|
21
|
+
payment_method_type: z.string().describe("Specific payment method type").nullable().optional(),
|
|
22
|
+
gateway_transaction_id: 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 blackbaudGetPaymentTransaction = action("BLACKBAUD_GET_PAYMENT_TRANSACTION", {
|
|
25
|
+
slug: "blackbaud-get-payment-transaction",
|
|
26
|
+
name: "Get Payment Transaction",
|
|
27
|
+
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.",
|
|
28
|
+
input: BlackbaudGetPaymentTransactionInput,
|
|
29
|
+
output: z.object({ transaction: BlackbaudGetPaymentTransaction_PaymentTransactionModelSchema.nullable() }).describe("Response model containing full transaction details.")
|
|
30
|
+
});
|
|
31
|
+
//#endregion
|
|
32
|
+
export { blackbaudGetPaymentTransaction };
|
|
33
|
+
|
|
34
|
+
//# sourceMappingURL=get-payment-transaction.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-payment-transaction.mjs","names":[],"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,sCAAoD,EAAE,OAAO,EACxE,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,kNAAkN,EACxP,CAAC,CAAC,CAAC,SAAS,+DAA+D;AAC3E,MAAM,+DAA6E,EAAE,OAAO;CAC1F,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,2BAA2B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC5E,QAAQ,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChG,QAAQ,EAAE,MAAM,CAAC,EAAE,OAAO,GAAG,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpE,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClF,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAClG,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACxF,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,0CAA0C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACjG,aAAa,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,6CAA6C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1G,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,8CAA8C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACtG,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,oDAAoD,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7G,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,0EAA0E,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACpI,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACnG,oBAAoB,EAAE,OAAO,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CACzG,qBAAqB,EAAE,OAAO,CAAC,CAAC,SAAS,8BAA8B,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC7F,wBAAwB,EAAE,OAAO,CAAC,CAAC,SAAS,yCAAyC,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;AAC7G,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,SAAS,2QAA2Q;AAKrS,MAAa,iCAAiC,OAAO,qCAAqC;CACxF,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QATgE,EAAE,OAAO,EACzE,aAAa,6DAA6D,SAAS,EACrF,CAAC,CAAC,CAAC,SAAS,qDAOF;AACV,CAAC"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_add_gifts_to_batch = require("./add-gifts-to-batch.cjs");
|
|
3
|
+
const require_get_gift_by_id = require("./get-gift-by-id.cjs");
|
|
4
|
+
const require_get_membership_details = require("./get-membership-details.cjs");
|
|
5
|
+
const require_get_payment_transaction = require("./get-payment-transaction.cjs");
|
|
6
|
+
const require_one_roster_o_auth2_base_api = require("./one-roster-o-auth2-base-api.cjs");
|
|
7
|
+
exports.blackbaudAddGiftsToBatch = require_add_gifts_to_batch.blackbaudAddGiftsToBatch;
|
|
8
|
+
exports.blackbaudGetGiftById = require_get_gift_by_id.blackbaudGetGiftById;
|
|
9
|
+
exports.blackbaudGetMembershipDetails = require_get_membership_details.blackbaudGetMembershipDetails;
|
|
10
|
+
exports.blackbaudGetPaymentTransaction = require_get_payment_transaction.blackbaudGetPaymentTransaction;
|
|
11
|
+
exports.blackbaudOneRosterOAuth2BaseApi = require_one_roster_o_auth2_base_api.blackbaudOneRosterOAuth2BaseApi;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { blackbaudAddGiftsToBatch } from "./add-gifts-to-batch.cjs";
|
|
2
|
+
import { blackbaudGetGiftById } from "./get-gift-by-id.cjs";
|
|
3
|
+
import { blackbaudGetMembershipDetails } from "./get-membership-details.cjs";
|
|
4
|
+
import { blackbaudGetPaymentTransaction } from "./get-payment-transaction.cjs";
|
|
5
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./one-roster-o-auth2-base-api.cjs";
|
|
6
|
+
export { blackbaudAddGiftsToBatch, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { blackbaudAddGiftsToBatch } from "./add-gifts-to-batch.mjs";
|
|
2
|
+
import { blackbaudGetGiftById } from "./get-gift-by-id.mjs";
|
|
3
|
+
import { blackbaudGetMembershipDetails } from "./get-membership-details.mjs";
|
|
4
|
+
import { blackbaudGetPaymentTransaction } from "./get-payment-transaction.mjs";
|
|
5
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./one-roster-o-auth2-base-api.mjs";
|
|
6
|
+
export { blackbaudAddGiftsToBatch, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { blackbaudAddGiftsToBatch } from "./add-gifts-to-batch.mjs";
|
|
2
|
+
import { blackbaudGetGiftById } from "./get-gift-by-id.mjs";
|
|
3
|
+
import { blackbaudGetMembershipDetails } from "./get-membership-details.mjs";
|
|
4
|
+
import { blackbaudGetPaymentTransaction } from "./get-payment-transaction.mjs";
|
|
5
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./one-roster-o-auth2-base-api.mjs";
|
|
6
|
+
export { blackbaudAddGiftsToBatch, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const require_action = require("../action.cjs");
|
|
2
|
+
let zod = require("zod");
|
|
3
|
+
//#region src/actions/one-roster-o-auth2-base-api.ts
|
|
4
|
+
const BlackbaudOneRosterOAuth2BaseApiInput = zod.z.object({
|
|
5
|
+
scope: zod.z.string().describe("Optional OAuth2 scope string. OneRoster generally does not require a scope; leave empty unless instructed by Blackbaud.").optional(),
|
|
6
|
+
clientId: zod.z.string().describe("OneRoster OAuth2 client_id (key) provided by the institution.").optional(),
|
|
7
|
+
basicAuth: zod.z.string().describe("Optional Authorization header value for HTTP Basic authentication, e.g., 'Basic base64(client_id:client_secret)'. If provided, it will be used.").optional(),
|
|
8
|
+
grantType: zod.z.string().default("client_credentials").describe("OAuth2 grant type; must be 'client_credentials' for token operation.").optional(),
|
|
9
|
+
operation: zod.z.enum([
|
|
10
|
+
"openid_configuration",
|
|
11
|
+
"jwks",
|
|
12
|
+
"token"
|
|
13
|
+
]).default("openid_configuration").describe("Which OAuth2 resource to call: openid_configuration, jwks, or token").optional(),
|
|
14
|
+
clientSecret: zod.z.string().describe("OneRoster OAuth2 client_secret provided by the institution.").optional(),
|
|
15
|
+
baseUrlOverride: zod.z.string().describe("Optional override for OAuth2 server base URL. Defaults to 'https://oauth2.sky.blackbaud.com'.").optional()
|
|
16
|
+
}).describe("Base API request for interacting with Blackbaud OAuth2 (OneRoster).\n\nSupports multiple operations to allow thorough testing without client credentials:\n- operation = \"openid_configuration\": GET the OpenID Connect discovery document.\n- operation = \"jwks\": GET the JSON Web Key Set used to validate tokens.\n- operation = \"token\": POST to the token endpoint using client credentials grant.\n\nWhen operation=\"token\", provide either:\n - client_id and client_secret (will be encoded as HTTP Basic automatically), or\n - basic_auth (prebuilt header value: \"Basic base64(client_id:client_secret)\").");
|
|
17
|
+
const BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema = zod.z.object({
|
|
18
|
+
e: zod.z.string().describe("RSA public exponent").nullable().optional(),
|
|
19
|
+
n: zod.z.string().describe("RSA modulus").nullable().optional(),
|
|
20
|
+
alg: zod.z.string().describe("Algorithm (e.g., 'RS256')").nullable().optional(),
|
|
21
|
+
kid: zod.z.string().describe("Key ID").nullable().optional(),
|
|
22
|
+
kty: zod.z.string().describe("Key type (e.g., 'RSA')").nullable().optional(),
|
|
23
|
+
use: zod.z.string().describe("Key use (e.g., 'sig' for signature)").nullable().optional(),
|
|
24
|
+
x5c: zod.z.array(zod.z.string()).describe("X.509 certificate chain").nullable().optional(),
|
|
25
|
+
x5t: zod.z.string().describe("X.509 certificate SHA-1 thumbprint").nullable().optional()
|
|
26
|
+
}).passthrough().describe("JSON Web Key structure.");
|
|
27
|
+
const BlackbaudOneRosterOAuth2BaseApiOutput = zod.z.object({
|
|
28
|
+
raw: zod.z.record(zod.z.string(), zod.z.unknown()).describe("Complete raw JSON response as returned by the server").nullable().optional(),
|
|
29
|
+
keys: zod.z.array(BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema).describe("JWKS keys list with properly typed key objects").nullable().optional(),
|
|
30
|
+
scope: zod.z.string().describe("Granted scope").nullable().optional(),
|
|
31
|
+
issuer: zod.z.string().describe("Issuer (from OpenID configuration), if available").nullable().optional(),
|
|
32
|
+
jwks_uri: zod.z.string().describe("JWKS URI from OpenID configuration").nullable().optional(),
|
|
33
|
+
expires_in: zod.z.number().int().describe("Seconds until token expiration").nullable().optional(),
|
|
34
|
+
token_type: zod.z.string().describe("Token type (e.g., 'Bearer')").nullable().optional(),
|
|
35
|
+
access_token: zod.z.string().describe("OAuth2 bearer token").nullable().optional(),
|
|
36
|
+
token_endpoint: zod.z.string().describe("Token endpoint").nullable().optional(),
|
|
37
|
+
authorization_endpoint: zod.z.string().describe("Authorization endpoint").nullable().optional(),
|
|
38
|
+
subject_types_supported: zod.z.array(zod.z.string()).describe("Supported subject identifier types").nullable().optional(),
|
|
39
|
+
response_types_supported: zod.z.array(zod.z.string()).describe("Supported OAuth2 response types").nullable().optional(),
|
|
40
|
+
code_challenge_methods_supported: zod.z.array(zod.z.string()).describe("Supported PKCE code challenge methods").nullable().optional(),
|
|
41
|
+
id_token_signing_alg_values_supported: zod.z.array(zod.z.string()).describe("Supported ID token signing algorithms").nullable().optional()
|
|
42
|
+
}).passthrough().describe("Response model with flexible fields to accommodate discovery and token responses.");
|
|
43
|
+
const blackbaudOneRosterOAuth2BaseApi = require_action.action("BLACKBAUD_ONE_ROSTER_O_AUTH2_BASE_API", {
|
|
44
|
+
slug: "blackbaud-one-roster-o-auth2-base-api",
|
|
45
|
+
name: "OneRoster OAuth2 Base API",
|
|
46
|
+
description: "Tool to interact with Blackbaud OneRoster OAuth2 base endpoints. Use to fetch OpenID configuration (/.well-known/openid-configuration), JWKS key set (publickeys), or obtain an access token via the client credentials grant. Ensure client credentials are configured before using the token operation.",
|
|
47
|
+
input: BlackbaudOneRosterOAuth2BaseApiInput,
|
|
48
|
+
output: BlackbaudOneRosterOAuth2BaseApiOutput
|
|
49
|
+
});
|
|
50
|
+
//#endregion
|
|
51
|
+
exports.blackbaudOneRosterOAuth2BaseApi = blackbaudOneRosterOAuth2BaseApi;
|
|
52
|
+
|
|
53
|
+
//# sourceMappingURL=one-roster-o-auth2-base-api.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-roster-o-auth2-base-api.cjs","names":["z","action"],"sources":["../../src/actions/one-roster-o-auth2-base-api.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudOneRosterOAuth2BaseApiInput: z.ZodTypeAny = z.object({\n scope: z.string().describe(\"Optional OAuth2 scope string. OneRoster generally does not require a scope; leave empty unless instructed by Blackbaud.\").optional(),\n clientId: z.string().describe(\"OneRoster OAuth2 client_id (key) provided by the institution.\").optional(),\n basicAuth: z.string().describe(\"Optional Authorization header value for HTTP Basic authentication, e.g., 'Basic base64(client_id:client_secret)'. If provided, it will be used.\").optional(),\n grantType: z.string().default(\"client_credentials\").describe(\"OAuth2 grant type; must be 'client_credentials' for token operation.\").optional(),\n operation: z.enum([\"openid_configuration\", \"jwks\", \"token\"]).default(\"openid_configuration\").describe(\"Which OAuth2 resource to call: openid_configuration, jwks, or token\").optional(),\n clientSecret: z.string().describe(\"OneRoster OAuth2 client_secret provided by the institution.\").optional(),\n baseUrlOverride: z.string().describe(\"Optional override for OAuth2 server base URL. Defaults to 'https://oauth2.sky.blackbaud.com'.\").optional(),\n}).describe(\"Base API request for interacting with Blackbaud OAuth2 (OneRoster).\\n\\nSupports multiple operations to allow thorough testing without client credentials:\\n- operation = \\\"openid_configuration\\\": GET the OpenID Connect discovery document.\\n- operation = \\\"jwks\\\": GET the JSON Web Key Set used to validate tokens.\\n- operation = \\\"token\\\": POST to the token endpoint using client credentials grant.\\n\\nWhen operation=\\\"token\\\", provide either:\\n - client_id and client_secret (will be encoded as HTTP Basic automatically), or\\n - basic_auth (prebuilt header value: \\\"Basic base64(client_id:client_secret)\\\").\");\nconst BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema: z.ZodTypeAny = z.object({\n e: z.string().describe(\"RSA public exponent\").nullable().optional(),\n n: z.string().describe(\"RSA modulus\").nullable().optional(),\n alg: z.string().describe(\"Algorithm (e.g., 'RS256')\").nullable().optional(),\n kid: z.string().describe(\"Key ID\").nullable().optional(),\n kty: z.string().describe(\"Key type (e.g., 'RSA')\").nullable().optional(),\n use: z.string().describe(\"Key use (e.g., 'sig' for signature)\").nullable().optional(),\n x5c: z.array(z.string()).describe(\"X.509 certificate chain\").nullable().optional(),\n x5t: z.string().describe(\"X.509 certificate SHA-1 thumbprint\").nullable().optional(),\n}).passthrough().describe(\"JSON Web Key structure.\");\nexport const BlackbaudOneRosterOAuth2BaseApiOutput: z.ZodTypeAny = z.object({\n raw: z.record(z.string(), z.unknown()).describe(\"Complete raw JSON response as returned by the server\").nullable().optional(),\n keys: z.array(BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema).describe(\"JWKS keys list with properly typed key objects\").nullable().optional(),\n scope: z.string().describe(\"Granted scope\").nullable().optional(),\n issuer: z.string().describe(\"Issuer (from OpenID configuration), if available\").nullable().optional(),\n jwks_uri: z.string().describe(\"JWKS URI from OpenID configuration\").nullable().optional(),\n expires_in: z.number().int().describe(\"Seconds until token expiration\").nullable().optional(),\n token_type: z.string().describe(\"Token type (e.g., 'Bearer')\").nullable().optional(),\n access_token: z.string().describe(\"OAuth2 bearer token\").nullable().optional(),\n token_endpoint: z.string().describe(\"Token endpoint\").nullable().optional(),\n authorization_endpoint: z.string().describe(\"Authorization endpoint\").nullable().optional(),\n subject_types_supported: z.array(z.string()).describe(\"Supported subject identifier types\").nullable().optional(),\n response_types_supported: z.array(z.string()).describe(\"Supported OAuth2 response types\").nullable().optional(),\n code_challenge_methods_supported: z.array(z.string()).describe(\"Supported PKCE code challenge methods\").nullable().optional(),\n id_token_signing_alg_values_supported: z.array(z.string()).describe(\"Supported ID token signing algorithms\").nullable().optional(),\n}).passthrough().describe(\"Response model with flexible fields to accommodate discovery and token responses.\");\n\nexport const blackbaudOneRosterOAuth2BaseApi = action(\"BLACKBAUD_ONE_ROSTER_O_AUTH2_BASE_API\", {\n slug: \"blackbaud-one-roster-o-auth2-base-api\",\n name: \"OneRoster OAuth2 Base API\",\n description: \"Tool to interact with Blackbaud OneRoster OAuth2 base endpoints. Use to fetch OpenID configuration (/.well-known/openid-configuration), JWKS key set (publickeys), or obtain an access token via the client credentials grant. Ensure client credentials are configured before using the token operation.\",\n input: BlackbaudOneRosterOAuth2BaseApiInput,\n output: BlackbaudOneRosterOAuth2BaseApiOutput,\n});\n"],"mappings":"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"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/one-roster-o-auth2-base-api.d.ts
|
|
4
|
+
declare const BlackbaudOneRosterOAuth2BaseApiInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudOneRosterOAuth2BaseApiOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudOneRosterOAuth2BaseApi: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudOneRosterOAuth2BaseApi };
|
|
9
|
+
//# sourceMappingURL=one-roster-o-auth2-base-api.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-roster-o-auth2-base-api.d.cts","names":[],"sources":["../../src/actions/one-roster-o-auth2-base-api.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAQ2jB;AAAA,cAWnmB,qCAAA,EAAuC,CAAA,CAAE,UAewD;AAAA,cAEjG,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { z } from "zod";
|
|
2
|
+
|
|
3
|
+
//#region src/actions/one-roster-o-auth2-base-api.d.ts
|
|
4
|
+
declare const BlackbaudOneRosterOAuth2BaseApiInput: z.ZodTypeAny;
|
|
5
|
+
declare const BlackbaudOneRosterOAuth2BaseApiOutput: z.ZodTypeAny;
|
|
6
|
+
declare const blackbaudOneRosterOAuth2BaseApi: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
|
+
//#endregion
|
|
8
|
+
export { blackbaudOneRosterOAuth2BaseApi };
|
|
9
|
+
//# sourceMappingURL=one-roster-o-auth2-base-api.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-roster-o-auth2-base-api.d.mts","names":[],"sources":["../../src/actions/one-roster-o-auth2-base-api.ts"],"mappings":";;;cAIa,oCAAA,EAAsC,CAAA,CAAE,UAQ2jB;AAAA,cAWnmB,qCAAA,EAAuC,CAAA,CAAE,UAewD;AAAA,cAEjG,+BAAA,gCAA+B,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { action } from "../action.mjs";
|
|
2
|
+
import { z } from "zod";
|
|
3
|
+
//#region src/actions/one-roster-o-auth2-base-api.ts
|
|
4
|
+
const BlackbaudOneRosterOAuth2BaseApiInput = z.object({
|
|
5
|
+
scope: z.string().describe("Optional OAuth2 scope string. OneRoster generally does not require a scope; leave empty unless instructed by Blackbaud.").optional(),
|
|
6
|
+
clientId: z.string().describe("OneRoster OAuth2 client_id (key) provided by the institution.").optional(),
|
|
7
|
+
basicAuth: z.string().describe("Optional Authorization header value for HTTP Basic authentication, e.g., 'Basic base64(client_id:client_secret)'. If provided, it will be used.").optional(),
|
|
8
|
+
grantType: z.string().default("client_credentials").describe("OAuth2 grant type; must be 'client_credentials' for token operation.").optional(),
|
|
9
|
+
operation: z.enum([
|
|
10
|
+
"openid_configuration",
|
|
11
|
+
"jwks",
|
|
12
|
+
"token"
|
|
13
|
+
]).default("openid_configuration").describe("Which OAuth2 resource to call: openid_configuration, jwks, or token").optional(),
|
|
14
|
+
clientSecret: z.string().describe("OneRoster OAuth2 client_secret provided by the institution.").optional(),
|
|
15
|
+
baseUrlOverride: z.string().describe("Optional override for OAuth2 server base URL. Defaults to 'https://oauth2.sky.blackbaud.com'.").optional()
|
|
16
|
+
}).describe("Base API request for interacting with Blackbaud OAuth2 (OneRoster).\n\nSupports multiple operations to allow thorough testing without client credentials:\n- operation = \"openid_configuration\": GET the OpenID Connect discovery document.\n- operation = \"jwks\": GET the JSON Web Key Set used to validate tokens.\n- operation = \"token\": POST to the token endpoint using client credentials grant.\n\nWhen operation=\"token\", provide either:\n - client_id and client_secret (will be encoded as HTTP Basic automatically), or\n - basic_auth (prebuilt header value: \"Basic base64(client_id:client_secret)\").");
|
|
17
|
+
const BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema = z.object({
|
|
18
|
+
e: z.string().describe("RSA public exponent").nullable().optional(),
|
|
19
|
+
n: z.string().describe("RSA modulus").nullable().optional(),
|
|
20
|
+
alg: z.string().describe("Algorithm (e.g., 'RS256')").nullable().optional(),
|
|
21
|
+
kid: z.string().describe("Key ID").nullable().optional(),
|
|
22
|
+
kty: z.string().describe("Key type (e.g., 'RSA')").nullable().optional(),
|
|
23
|
+
use: z.string().describe("Key use (e.g., 'sig' for signature)").nullable().optional(),
|
|
24
|
+
x5c: z.array(z.string()).describe("X.509 certificate chain").nullable().optional(),
|
|
25
|
+
x5t: z.string().describe("X.509 certificate SHA-1 thumbprint").nullable().optional()
|
|
26
|
+
}).passthrough().describe("JSON Web Key structure.");
|
|
27
|
+
const blackbaudOneRosterOAuth2BaseApi = action("BLACKBAUD_ONE_ROSTER_O_AUTH2_BASE_API", {
|
|
28
|
+
slug: "blackbaud-one-roster-o-auth2-base-api",
|
|
29
|
+
name: "OneRoster OAuth2 Base API",
|
|
30
|
+
description: "Tool to interact with Blackbaud OneRoster OAuth2 base endpoints. Use to fetch OpenID configuration (/.well-known/openid-configuration), JWKS key set (publickeys), or obtain an access token via the client credentials grant. Ensure client credentials are configured before using the token operation.",
|
|
31
|
+
input: BlackbaudOneRosterOAuth2BaseApiInput,
|
|
32
|
+
output: z.object({
|
|
33
|
+
raw: z.record(z.string(), z.unknown()).describe("Complete raw JSON response as returned by the server").nullable().optional(),
|
|
34
|
+
keys: z.array(BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema).describe("JWKS keys list with properly typed key objects").nullable().optional(),
|
|
35
|
+
scope: z.string().describe("Granted scope").nullable().optional(),
|
|
36
|
+
issuer: z.string().describe("Issuer (from OpenID configuration), if available").nullable().optional(),
|
|
37
|
+
jwks_uri: z.string().describe("JWKS URI from OpenID configuration").nullable().optional(),
|
|
38
|
+
expires_in: z.number().int().describe("Seconds until token expiration").nullable().optional(),
|
|
39
|
+
token_type: z.string().describe("Token type (e.g., 'Bearer')").nullable().optional(),
|
|
40
|
+
access_token: z.string().describe("OAuth2 bearer token").nullable().optional(),
|
|
41
|
+
token_endpoint: z.string().describe("Token endpoint").nullable().optional(),
|
|
42
|
+
authorization_endpoint: z.string().describe("Authorization endpoint").nullable().optional(),
|
|
43
|
+
subject_types_supported: z.array(z.string()).describe("Supported subject identifier types").nullable().optional(),
|
|
44
|
+
response_types_supported: z.array(z.string()).describe("Supported OAuth2 response types").nullable().optional(),
|
|
45
|
+
code_challenge_methods_supported: z.array(z.string()).describe("Supported PKCE code challenge methods").nullable().optional(),
|
|
46
|
+
id_token_signing_alg_values_supported: z.array(z.string()).describe("Supported ID token signing algorithms").nullable().optional()
|
|
47
|
+
}).passthrough().describe("Response model with flexible fields to accommodate discovery and token responses.")
|
|
48
|
+
});
|
|
49
|
+
//#endregion
|
|
50
|
+
export { blackbaudOneRosterOAuth2BaseApi };
|
|
51
|
+
|
|
52
|
+
//# sourceMappingURL=one-roster-o-auth2-base-api.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"one-roster-o-auth2-base-api.mjs","names":[],"sources":["../../src/actions/one-roster-o-auth2-base-api.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const BlackbaudOneRosterOAuth2BaseApiInput: z.ZodTypeAny = z.object({\n scope: z.string().describe(\"Optional OAuth2 scope string. OneRoster generally does not require a scope; leave empty unless instructed by Blackbaud.\").optional(),\n clientId: z.string().describe(\"OneRoster OAuth2 client_id (key) provided by the institution.\").optional(),\n basicAuth: z.string().describe(\"Optional Authorization header value for HTTP Basic authentication, e.g., 'Basic base64(client_id:client_secret)'. If provided, it will be used.\").optional(),\n grantType: z.string().default(\"client_credentials\").describe(\"OAuth2 grant type; must be 'client_credentials' for token operation.\").optional(),\n operation: z.enum([\"openid_configuration\", \"jwks\", \"token\"]).default(\"openid_configuration\").describe(\"Which OAuth2 resource to call: openid_configuration, jwks, or token\").optional(),\n clientSecret: z.string().describe(\"OneRoster OAuth2 client_secret provided by the institution.\").optional(),\n baseUrlOverride: z.string().describe(\"Optional override for OAuth2 server base URL. Defaults to 'https://oauth2.sky.blackbaud.com'.\").optional(),\n}).describe(\"Base API request for interacting with Blackbaud OAuth2 (OneRoster).\\n\\nSupports multiple operations to allow thorough testing without client credentials:\\n- operation = \\\"openid_configuration\\\": GET the OpenID Connect discovery document.\\n- operation = \\\"jwks\\\": GET the JSON Web Key Set used to validate tokens.\\n- operation = \\\"token\\\": POST to the token endpoint using client credentials grant.\\n\\nWhen operation=\\\"token\\\", provide either:\\n - client_id and client_secret (will be encoded as HTTP Basic automatically), or\\n - basic_auth (prebuilt header value: \\\"Basic base64(client_id:client_secret)\\\").\");\nconst BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema: z.ZodTypeAny = z.object({\n e: z.string().describe(\"RSA public exponent\").nullable().optional(),\n n: z.string().describe(\"RSA modulus\").nullable().optional(),\n alg: z.string().describe(\"Algorithm (e.g., 'RS256')\").nullable().optional(),\n kid: z.string().describe(\"Key ID\").nullable().optional(),\n kty: z.string().describe(\"Key type (e.g., 'RSA')\").nullable().optional(),\n use: z.string().describe(\"Key use (e.g., 'sig' for signature)\").nullable().optional(),\n x5c: z.array(z.string()).describe(\"X.509 certificate chain\").nullable().optional(),\n x5t: z.string().describe(\"X.509 certificate SHA-1 thumbprint\").nullable().optional(),\n}).passthrough().describe(\"JSON Web Key structure.\");\nexport const BlackbaudOneRosterOAuth2BaseApiOutput: z.ZodTypeAny = z.object({\n raw: z.record(z.string(), z.unknown()).describe(\"Complete raw JSON response as returned by the server\").nullable().optional(),\n keys: z.array(BlackbaudOneRosterOAuth2BaseApi_JwkKeySchema).describe(\"JWKS keys list with properly typed key objects\").nullable().optional(),\n scope: z.string().describe(\"Granted scope\").nullable().optional(),\n issuer: z.string().describe(\"Issuer (from OpenID configuration), if available\").nullable().optional(),\n jwks_uri: z.string().describe(\"JWKS URI from OpenID configuration\").nullable().optional(),\n expires_in: z.number().int().describe(\"Seconds until token expiration\").nullable().optional(),\n token_type: z.string().describe(\"Token type (e.g., 'Bearer')\").nullable().optional(),\n access_token: z.string().describe(\"OAuth2 bearer token\").nullable().optional(),\n token_endpoint: z.string().describe(\"Token endpoint\").nullable().optional(),\n authorization_endpoint: z.string().describe(\"Authorization endpoint\").nullable().optional(),\n subject_types_supported: z.array(z.string()).describe(\"Supported subject identifier types\").nullable().optional(),\n response_types_supported: z.array(z.string()).describe(\"Supported OAuth2 response types\").nullable().optional(),\n code_challenge_methods_supported: z.array(z.string()).describe(\"Supported PKCE code challenge methods\").nullable().optional(),\n id_token_signing_alg_values_supported: z.array(z.string()).describe(\"Supported ID token signing algorithms\").nullable().optional(),\n}).passthrough().describe(\"Response model with flexible fields to accommodate discovery and token responses.\");\n\nexport const blackbaudOneRosterOAuth2BaseApi = action(\"BLACKBAUD_ONE_ROSTER_O_AUTH2_BASE_API\", {\n slug: \"blackbaud-one-roster-o-auth2-base-api\",\n name: \"OneRoster OAuth2 Base API\",\n description: \"Tool to interact with Blackbaud OneRoster OAuth2 base endpoints. Use to fetch OpenID configuration (/.well-known/openid-configuration), JWKS key set (publickeys), or obtain an access token via the client credentials grant. Ensure client credentials are configured before using the token operation.\",\n input: BlackbaudOneRosterOAuth2BaseApiInput,\n output: BlackbaudOneRosterOAuth2BaseApiOutput,\n});\n"],"mappings":"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"}
|
package/dist/app.cjs
ADDED
package/dist/app.cjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const blackbaud = defineApp({\n slug: \"blackbaud\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/app.d.cts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
|
package/dist/app.d.mts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
|
package/dist/app.mjs
ADDED
package/dist/app.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const blackbaud = defineApp({\n slug: \"blackbaud\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
|
package/dist/catalog.cjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const blackbaudCatalog = {
|
|
4
|
+
"slug": "blackbaud",
|
|
5
|
+
"name": "Blackbaud",
|
|
6
|
+
"description": "Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations",
|
|
7
|
+
"category": "Fundraising",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/blackbaud",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
exports.blackbaudCatalog = blackbaudCatalog;
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const blackbaudCatalog = {\n \"slug\": \"blackbaud\",\n \"name\": \"Blackbaud\",\n \"description\": \"Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations\",\n \"category\": \"Fundraising\",\n \"logo\": \"https://logos.composio.dev/api/blackbaud\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const blackbaudCatalog: {
|
|
4
|
+
readonly slug: "blackbaud";
|
|
5
|
+
readonly name: "Blackbaud";
|
|
6
|
+
readonly description: "Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations";
|
|
7
|
+
readonly category: "Fundraising";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/blackbaud";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { blackbaudCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.cts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
//#region src/catalog.d.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
declare const blackbaudCatalog: {
|
|
4
|
+
readonly slug: "blackbaud";
|
|
5
|
+
readonly name: "Blackbaud";
|
|
6
|
+
readonly description: "Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations";
|
|
7
|
+
readonly category: "Fundraising";
|
|
8
|
+
readonly logo: "https://logos.composio.dev/api/blackbaud";
|
|
9
|
+
readonly authKind: "keystroke";
|
|
10
|
+
readonly oauthScopes: readonly [];
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { blackbaudCatalog };
|
|
14
|
+
//# sourceMappingURL=catalog.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
|
package/dist/catalog.mjs
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
//#region src/catalog.ts
|
|
2
|
+
/** Generated — kept in sync with src/app.ts. */
|
|
3
|
+
const blackbaudCatalog = {
|
|
4
|
+
"slug": "blackbaud",
|
|
5
|
+
"name": "Blackbaud",
|
|
6
|
+
"description": "Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations",
|
|
7
|
+
"category": "Fundraising",
|
|
8
|
+
"logo": "https://logos.composio.dev/api/blackbaud",
|
|
9
|
+
"authKind": "keystroke",
|
|
10
|
+
"oauthScopes": []
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { blackbaudCatalog };
|
|
14
|
+
|
|
15
|
+
//# sourceMappingURL=catalog.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const blackbaudCatalog = {\n \"slug\": \"blackbaud\",\n \"name\": \"Blackbaud\",\n \"description\": \"Blackbaud offers cloud-based software for nonprofits, schools, and healthcare institutions, supporting fundraising, financial management, and donor engagement in mission-driven organizations\",\n \"category\": \"Fundraising\",\n \"logo\": \"https://logos.composio.dev/api/blackbaud\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
|
package/dist/execute.cjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "blackbaud";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeBlackbaudTool(tool, args) {
|
|
7
|
+
const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
exports.executeBlackbaudTool = executeBlackbaudTool;
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"blackbaud\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeBlackbaudTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/execute.mjs
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
|
|
2
|
+
//#region src/execute.ts
|
|
3
|
+
const APP_SLUG = "blackbaud";
|
|
4
|
+
/** Pinned app version — updated on regeneration. */
|
|
5
|
+
const APP_VERSION = "20260615_00";
|
|
6
|
+
async function executeBlackbaudTool(tool, args) {
|
|
7
|
+
const { result } = await createKeystrokeClient().tools.execute({
|
|
8
|
+
app: APP_SLUG,
|
|
9
|
+
tool,
|
|
10
|
+
arguments: args,
|
|
11
|
+
version: APP_VERSION
|
|
12
|
+
});
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
//#endregion
|
|
16
|
+
export { executeBlackbaudTool };
|
|
17
|
+
|
|
18
|
+
//# sourceMappingURL=execute.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"blackbaud\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeBlackbaudTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
|
package/dist/index.cjs
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
2
|
+
const require_app = require("./app.cjs");
|
|
3
|
+
const require_catalog = require("./catalog.cjs");
|
|
4
|
+
const require_add_gifts_to_batch = require("./actions/add-gifts-to-batch.cjs");
|
|
5
|
+
const require_get_gift_by_id = require("./actions/get-gift-by-id.cjs");
|
|
6
|
+
const require_get_membership_details = require("./actions/get-membership-details.cjs");
|
|
7
|
+
const require_get_payment_transaction = require("./actions/get-payment-transaction.cjs");
|
|
8
|
+
const require_one_roster_o_auth2_base_api = require("./actions/one-roster-o-auth2-base-api.cjs");
|
|
9
|
+
require("./actions/index.cjs");
|
|
10
|
+
exports.blackbaud = require_app.blackbaud;
|
|
11
|
+
exports.blackbaudAddGiftsToBatch = require_add_gifts_to_batch.blackbaudAddGiftsToBatch;
|
|
12
|
+
exports.blackbaudCatalog = require_catalog.blackbaudCatalog;
|
|
13
|
+
exports.blackbaudGetGiftById = require_get_gift_by_id.blackbaudGetGiftById;
|
|
14
|
+
exports.blackbaudGetMembershipDetails = require_get_membership_details.blackbaudGetMembershipDetails;
|
|
15
|
+
exports.blackbaudGetPaymentTransaction = require_get_payment_transaction.blackbaudGetPaymentTransaction;
|
|
16
|
+
exports.blackbaudOneRosterOAuth2BaseApi = require_one_roster_o_auth2_base_api.blackbaudOneRosterOAuth2BaseApi;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { blackbaudAddGiftsToBatch } from "./actions/add-gifts-to-batch.cjs";
|
|
2
|
+
import { blackbaudGetGiftById } from "./actions/get-gift-by-id.cjs";
|
|
3
|
+
import { blackbaudGetMembershipDetails } from "./actions/get-membership-details.cjs";
|
|
4
|
+
import { blackbaudGetPaymentTransaction } from "./actions/get-payment-transaction.cjs";
|
|
5
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./actions/one-roster-o-auth2-base-api.cjs";
|
|
6
|
+
import { blackbaud } from "./app.cjs";
|
|
7
|
+
import { blackbaudCatalog } from "./catalog.cjs";
|
|
8
|
+
export { blackbaud, blackbaudAddGiftsToBatch, blackbaudCatalog, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { blackbaudAddGiftsToBatch } from "./actions/add-gifts-to-batch.mjs";
|
|
2
|
+
import { blackbaudGetGiftById } from "./actions/get-gift-by-id.mjs";
|
|
3
|
+
import { blackbaudGetMembershipDetails } from "./actions/get-membership-details.mjs";
|
|
4
|
+
import { blackbaudGetPaymentTransaction } from "./actions/get-payment-transaction.mjs";
|
|
5
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./actions/one-roster-o-auth2-base-api.mjs";
|
|
6
|
+
import { blackbaud } from "./app.mjs";
|
|
7
|
+
import { blackbaudCatalog } from "./catalog.mjs";
|
|
8
|
+
export { blackbaud, blackbaudAddGiftsToBatch, blackbaudCatalog, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { blackbaud } from "./app.mjs";
|
|
2
|
+
import { blackbaudCatalog } from "./catalog.mjs";
|
|
3
|
+
import { blackbaudAddGiftsToBatch } from "./actions/add-gifts-to-batch.mjs";
|
|
4
|
+
import { blackbaudGetGiftById } from "./actions/get-gift-by-id.mjs";
|
|
5
|
+
import { blackbaudGetMembershipDetails } from "./actions/get-membership-details.mjs";
|
|
6
|
+
import { blackbaudGetPaymentTransaction } from "./actions/get-payment-transaction.mjs";
|
|
7
|
+
import { blackbaudOneRosterOAuth2BaseApi } from "./actions/one-roster-o-auth2-base-api.mjs";
|
|
8
|
+
import "./actions/index.mjs";
|
|
9
|
+
export { blackbaud, blackbaudAddGiftsToBatch, blackbaudCatalog, blackbaudGetGiftById, blackbaudGetMembershipDetails, blackbaudGetPaymentTransaction, blackbaudOneRosterOAuth2BaseApi };
|
package/package.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@keystrokehq/blackbaud",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"registry": "https://registry.npmjs.org"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/keystrokehq/keystroke.git",
|
|
11
|
+
"directory": "packages/integrations/blackbaud"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"type": "module",
|
|
18
|
+
"main": "./dist/index.cjs",
|
|
19
|
+
"module": "./dist/index.mjs",
|
|
20
|
+
"types": "./dist/index.d.mts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.mts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
26
|
+
},
|
|
27
|
+
"./actions": {
|
|
28
|
+
"types": "./dist/actions/index.d.mts",
|
|
29
|
+
"import": "./dist/actions/index.mjs",
|
|
30
|
+
"require": "./dist/actions/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@keystrokehq/keystroke": "^0.1.4",
|
|
35
|
+
"zod": "^4.4.3"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@keystrokehq/keystroke": "link:../../keystroke",
|
|
39
|
+
"@types/node": "^25.9.1",
|
|
40
|
+
"tsdown": "^0.22.0",
|
|
41
|
+
"typescript": "^6.0.3",
|
|
42
|
+
"zod": "^4.4.3"
|
|
43
|
+
},
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsdown",
|
|
46
|
+
"dev": "tsdown --watch --no-clean",
|
|
47
|
+
"typecheck": "tsc --noEmit"
|
|
48
|
+
}
|
|
49
|
+
}
|