@apteva/integrations 0.15.9 → 0.15.11

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.
Files changed (60) hide show
  1. package/dist/http-executor.d.ts.map +1 -1
  2. package/dist/http-executor.js +62 -8
  3. package/dist/http-executor.js.map +1 -1
  4. package/dist/mcp-generator.js +24 -0
  5. package/dist/mcp-generator.js.map +1 -1
  6. package/dist/types.d.ts +4 -0
  7. package/dist/types.d.ts.map +1 -1
  8. package/package.json +1 -1
  9. package/src/apps/anthropic-admin.json +183 -0
  10. package/src/apps/apify.json +168 -0
  11. package/src/apps/aws-ses.json +1 -1
  12. package/src/apps/bookvault.json +309 -0
  13. package/src/apps/braintree.json +53 -0
  14. package/src/apps/brightdata.json +22 -1
  15. package/src/apps/browse-ai.json +243 -5
  16. package/src/apps/browserbase.json +41 -11
  17. package/src/apps/browserless.json +101 -0
  18. package/src/apps/bunny-stream.json +50 -28
  19. package/src/apps/ccbill.json +142 -0
  20. package/src/apps/close.json +238 -301
  21. package/src/apps/craftcloud.json +251 -202
  22. package/src/apps/dataforseo.json +1700 -2
  23. package/src/apps/deepgram.json +288 -1
  24. package/src/apps/digitalocean.json +53 -0
  25. package/src/apps/elevenlabs.json +292 -0
  26. package/src/apps/firecrawl.json +111 -0
  27. package/src/apps/gladia.json +158 -0
  28. package/src/apps/gmail.json +2 -5
  29. package/src/apps/gumroad.json +569 -0
  30. package/src/apps/imaterialise.json +171 -262
  31. package/src/apps/ingram-coresource.json +119 -0
  32. package/src/apps/jlcpcb.json +43 -0
  33. package/src/apps/jungle-scout.json +166 -0
  34. package/src/apps/ko-fi.json +34 -0
  35. package/src/apps/lemon-squeezy.json +270 -0
  36. package/src/apps/lulu-print.json +266 -0
  37. package/src/apps/mollie.json +219 -0
  38. package/src/apps/paddle.json +199 -9
  39. package/src/apps/payhip.json +162 -0
  40. package/src/apps/paystack.json +207 -0
  41. package/src/apps/pipedrive.json +221 -212
  42. package/src/apps/publishdrive.json +132 -0
  43. package/src/apps/razorpay.json +207 -0
  44. package/src/apps/ringover.json +69 -0
  45. package/src/apps/runpod.json +727 -0
  46. package/src/apps/salesforce-crm.json +192 -233
  47. package/src/apps/sculpteo.json +98 -180
  48. package/src/apps/segpay.json +215 -0
  49. package/src/apps/shapeways.json +114 -136
  50. package/src/apps/slant3d.json +260 -168
  51. package/src/apps/soniox.json +194 -0
  52. package/src/apps/speechmatics.json +167 -0
  53. package/src/apps/streetlib.json +60 -0
  54. package/src/apps/stripe.json +1 -0
  55. package/src/apps/surfer.json +511 -0
  56. package/src/apps/twitter-api.json +14 -1
  57. package/src/apps/verotel.json +124 -0
  58. package/src/apps/whop.json +364 -0
  59. package/src/apps/zendesk-sell.json +248 -0
  60. package/src/apps/zendesk.json +190 -259
@@ -0,0 +1,142 @@
1
+ {
2
+ "slug": "ccbill",
3
+ "name": "CCBill",
4
+ "description": "Adult-friendly payment processing API for CCBill RESTful tokenization, token-based charges, 3DS checks, and transaction lookup.",
5
+ "logo": "https://www.google.com/s2/favicons?domain=ccbill.com&sz=128",
6
+ "categories": ["payments", "adult", "high-risk", "subscriptions", "checkout"],
7
+ "base_url": "https://api.ccbill.com",
8
+ "auth": {
9
+ "types": ["bearer", "basic"],
10
+ "headers": {
11
+ "Authorization": "Bearer {{access_token}}",
12
+ "Accept": "application/vnd.mcn.transaction-service.api.v.2+json",
13
+ "Content-Type": "application/json"
14
+ },
15
+ "credential_fields": [
16
+ {
17
+ "name": "access_token",
18
+ "label": "Bearer Access Token",
19
+ "description": "CCBill OAuth access token used for RESTful transaction API calls.",
20
+ "required": false
21
+ },
22
+ {
23
+ "name": "basic_auth",
24
+ "label": "OAuth Basic Auth",
25
+ "description": "Base64-encoded Merchant Application ID:Secret Key value for requesting an OAuth token. Do not include the 'Basic ' prefix.",
26
+ "required": false
27
+ }
28
+ ]
29
+ },
30
+ "tools": [
31
+ {
32
+ "name": "request_oauth_token",
33
+ "description": "Request a CCBill OAuth bearer token using client credentials. Store the returned access_token in the connection before calling transaction tools.",
34
+ "method": "POST",
35
+ "path": "/ccbill-auth/oauth/token",
36
+ "headers": {
37
+ "Authorization": "Basic {{basic_auth}}",
38
+ "Content-Type": "application/x-www-form-urlencoded",
39
+ "Accept": "application/json"
40
+ },
41
+ "input_schema": {
42
+ "type": "object",
43
+ "properties": {
44
+ "grant_type": { "type": "string", "default": "client_credentials" }
45
+ }
46
+ }
47
+ },
48
+ {
49
+ "name": "create_payment_token",
50
+ "description": "Create a CCBill payment token without CVV verification. Body is the raw CCBill tokenization payload with clientAccnum, clientSubacc, customerInfo, paymentInfo, timeToLive or validNumberOfUse.",
51
+ "method": "POST",
52
+ "path": "/payment-tokens/merchant-only",
53
+ "body_root_param": "body",
54
+ "input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
55
+ },
56
+ {
57
+ "name": "create_verified_payment_token",
58
+ "description": "Create a CCBill payment token with CVV/AVS verification. Body is the raw CCBill tokenization payload including creditCardPaymentInfo.cvv2.",
59
+ "method": "POST",
60
+ "path": "/payment-tokens/merchant-only-verify",
61
+ "body_root_param": "body",
62
+ "input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
63
+ },
64
+ {
65
+ "name": "create_3ds_verified_payment_token",
66
+ "description": "Create a CCBill payment token with CVV verification and 3DS/SCA result fields.",
67
+ "method": "POST",
68
+ "path": "/payment-tokens/merchant-only-verify-3ds",
69
+ "body_root_param": "body",
70
+ "input_schema": { "type": "object", "properties": { "body": { "type": "object" } }, "required": ["body"] }
71
+ },
72
+ {
73
+ "name": "get_payment_token",
74
+ "description": "Retrieve a CCBill payment token by ID.",
75
+ "method": "GET",
76
+ "path": "/payment-tokens/{paymentTokenId}",
77
+ "input_schema": { "type": "object", "properties": { "paymentTokenId": { "type": "string" } }, "required": ["paymentTokenId"] }
78
+ },
79
+ {
80
+ "name": "check_card_3ds_required",
81
+ "description": "Check whether a card BIN/last4 requires 3DS for a CCBill merchant/currency.",
82
+ "method": "GET",
83
+ "path": "/payment-tokens/threeds-required",
84
+ "input_schema": {
85
+ "type": "object",
86
+ "properties": {
87
+ "bin": { "type": "string" },
88
+ "last4": { "type": "string" },
89
+ "clientAccnum": { "type": "integer" },
90
+ "clientSubacc": { "type": "integer" },
91
+ "currencyCode": { "type": "integer" }
92
+ },
93
+ "required": ["bin", "last4", "clientAccnum", "clientSubacc", "currencyCode"]
94
+ }
95
+ },
96
+ {
97
+ "name": "check_token_3ds_required",
98
+ "description": "Check whether a payment token requires 3DS for a specific currency.",
99
+ "method": "GET",
100
+ "path": "/payment-tokens/{paymentTokenId}/threeds-required",
101
+ "input_schema": { "type": "object", "properties": { "paymentTokenId": { "type": "string" }, "currencyCode": { "type": "integer" } }, "required": ["paymentTokenId", "currencyCode"] }
102
+ },
103
+ {
104
+ "name": "charge_payment_token",
105
+ "description": "Create a CCBill transaction against a payment token. Body accepts initialPrice, initialPeriod, currencyCode, recurringPrice, recurringPeriod, rebills, passThroughInfo, createNewPaymentToken, and related CCBill transaction fields.",
106
+ "method": "POST",
107
+ "path": "/transactions/payment-tokens/{paymentTokenId}",
108
+ "body_root_param": "body",
109
+ "input_schema": { "type": "object", "properties": { "paymentTokenId": { "type": "string" }, "body": { "type": "object" } }, "required": ["paymentTokenId", "body"] }
110
+ },
111
+ {
112
+ "name": "charge_3ds_payment_token",
113
+ "description": "Create a CCBill transaction against a payment token using 3DS result fields.",
114
+ "method": "POST",
115
+ "path": "/transactions/payment-tokens/threeds/{paymentTokenId}",
116
+ "body_root_param": "body",
117
+ "input_schema": { "type": "object", "properties": { "paymentTokenId": { "type": "string" }, "body": { "type": "object" } }, "required": ["paymentTokenId", "body"] }
118
+ },
119
+ {
120
+ "name": "list_token_transactions",
121
+ "description": "View previous CCBill charges associated with a payment token and merchant account.",
122
+ "method": "GET",
123
+ "path": "/transactions/payment-tokens/{paymentTokenId}",
124
+ "input_schema": { "type": "object", "properties": { "paymentTokenId": { "type": "string" }, "clientAccnum": { "type": "integer" }, "clientSubacc": { "type": "integer" } }, "required": ["paymentTokenId", "clientAccnum"] }
125
+ }
126
+ ],
127
+ "webhooks": {
128
+ "signature_header": "x-ccbill-signature",
129
+ "events": [
130
+ { "name": "transaction.approved", "description": "A CCBill transaction was approved." },
131
+ { "name": "transaction.denied", "description": "A CCBill transaction was denied." },
132
+ { "name": "subscription.cancelled", "description": "A CCBill subscription was cancelled." },
133
+ { "name": "subscription.rebill", "description": "A CCBill recurring billing event occurred." }
134
+ ],
135
+ "registration": {
136
+ "method": "POST",
137
+ "path": "/",
138
+ "url_field": "url",
139
+ "manual_setup": "Configure CCBill Webhooks in the CCBill admin using the Apteva callback URL. CCBill webhook setup is merchant-account based and is not auto-registered by this integration."
140
+ }
141
+ }
142
+ }