
Company News
Socket Partners with Replit to Block Malicious Packages in AI-Powered Development
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.
devdraft
Advanced tools
A Ruby client library for the Devdraft Payment & Business Management API.
Add this line to your application's Gemfile:
gem 'devdraft', '~> 1.0.1'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install devdraft
require 'devdraft'
# Configure the SDK
Devdraft.configure do |config|
# Set your API key (required for authenticated endpoints)
config.api_key['api_key'] = 'YOUR_API_KEY'
# Optional: Set a custom base URL if needed
# config.base_url = 'https://api.devdraft.com'
# Optional: Enable debug logging
config.debugging = true
end
api_instance = Devdraft::APIHealthApi.new
# Public health check (no auth required)
result = api_instance.health_controller_public_health_check_v0
puts result.inspect
# Authenticated health check
result = api_instance.health_controller_check_v0
puts result.inspect
api_instance = Devdraft::CustomersApi.new
# List customers with pagination
result = api_instance.customers_controller_list_v0(
page: 1,
limit: 10
)
puts result.inspect
api_instance = Devdraft::PaymentLinksApi.new
# Create a payment link
payment_link = Devdraft::CreatePaymentLinkDto.new(
amount: 100.00,
currency: 'USD',
description: 'Test Payment Link',
expires_at: (Time.now + 86400).iso8601 # 24 hours from now
)
result = api_instance.payment_links_controller_create_v0(payment_link)
puts result.inspect
The SDK provides access to the following APIs:
APIHealthApi: Health check endpointsAppBalancesApi: Balance managementCustomersApi: Customer managementExchangeRatesApi: Exchange rate informationInvoicesApi: Invoice managementLiquidationAddressesApi: Liquidation address managementPaymentIntentsApi: Payment intent managementPaymentLinksApi: Payment link managementProductsApi: Product managementTaxesApi: Tax managementTestPaymentsApi: Test payment endpointsTransfersApi: Transfer managementWalletsApi: Wallet managementWebhooksApi: Webhook managementAfter checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests.
Bug reports and pull requests are welcome on GitHub.
The gem is available as open source under the terms of the Unlicense.
All URIs are relative to https://api.devdraft.ai
| Class | Method | HTTP request | Description |
|---|---|---|---|
| DevDraftAI::APIHealthApi | health_controller_check_v0 | GET /api/v0/health | Authenticated health check endpoint |
| DevDraftAI::APIHealthApi | health_controller_public_health_check_v0 | GET /api/v0/health/public | Public health check endpoint |
| DevDraftAI::AppBalancesApi | balance_controller_get_all_balances | GET /api/v0/balance | Get all stablecoin balances for an app |
| DevDraftAI::AppBalancesApi | balance_controller_get_eurc_balance | GET /api/v0/balance/eurc | Get EURC balance for an app |
| DevDraftAI::AppBalancesApi | balance_controller_get_usdc_balance | GET /api/v0/balance/usdc | Get USDC balance for an app |
| DevDraftAI::CustomersApi | customer_controller_create | POST /api/v0/customers | Create a new customer |
| DevDraftAI::CustomersApi | customer_controller_find_all | GET /api/v0/customers | Get all customers with filters |
| DevDraftAI::CustomersApi | customer_controller_find_one | GET /api/v0/customers/{id} | Get a customer by ID |
| DevDraftAI::CustomersApi | customer_controller_update | PATCH /api/v0/customers/{id} | Update a customer |
| DevDraftAI::ExchangeRatesApi | exchange_rate_controller_get_eurto_usd_rate | GET /api/v0/exchange-rate/eur-to-usd | Get EUR to USD exchange rate |
| DevDraftAI::ExchangeRatesApi | exchange_rate_controller_get_exchange_rate | GET /api/v0/exchange-rate | Get exchange rate between specified currencies |
| DevDraftAI::ExchangeRatesApi | exchange_rate_controller_get_usdto_eur_rate | GET /api/v0/exchange-rate/usd-to-eur | Get USD to EUR exchange rate |
| DevDraftAI::InvoicesApi | invoice_controller_create | POST /api/v0/invoices | Create a new invoice |
| DevDraftAI::InvoicesApi | invoice_controller_find_all | GET /api/v0/invoices | Get all invoices |
| DevDraftAI::InvoicesApi | invoice_controller_find_one | GET /api/v0/invoices/{id} | Get an invoice by ID |
| DevDraftAI::InvoicesApi | invoice_controller_update | PUT /api/v0/invoices/{id} | Update an invoice |
| DevDraftAI::LiquidationAddressesApi | liquidation_address_controller_create_liquidation_address | POST /api/v0/customers/{customerId}/liquidation_addresses | Create a new liquidation address for a customer |
| DevDraftAI::LiquidationAddressesApi | liquidation_address_controller_get_liquidation_address | GET /api/v0/customers/{customerId}/liquidation_addresses/{liquidationAddressId} | Get a specific liquidation address |
| DevDraftAI::LiquidationAddressesApi | liquidation_address_controller_get_liquidation_addresses | GET /api/v0/customers/{customerId}/liquidation_addresses | Get all liquidation addresses for a customer |
| DevDraftAI::PaymentIntentsApi | payment_intent_controller_create_bank_payment_intent | POST /api/v0/payment-intents/bank | Create a bank payment intent |
| DevDraftAI::PaymentIntentsApi | payment_intent_controller_create_stable_payment_intent | POST /api/v0/payment-intents/stablecoin | Create a stable payment intent |
| DevDraftAI::PaymentLinksApi | payment_links_controller_create | POST /api/v0/payment-links | Create a new payment link |
| DevDraftAI::PaymentLinksApi | payment_links_controller_find_all | GET /api/v0/payment-links | Get all payment links |
| DevDraftAI::PaymentLinksApi | payment_links_controller_find_one | GET /api/v0/payment-links/{id} | Get a payment link by ID |
| DevDraftAI::PaymentLinksApi | payment_links_controller_update | PUT /api/v0/payment-links/{id} | Update a payment link |
| DevDraftAI::ProductsApi | product_controller_create | POST /api/v0/products | Create a new product |
| DevDraftAI::ProductsApi | product_controller_find_all | GET /api/v0/products | Get all products |
| DevDraftAI::ProductsApi | product_controller_find_one | GET /api/v0/products/{id} | Get a product by ID |
| DevDraftAI::ProductsApi | product_controller_remove | DELETE /api/v0/products/{id} | Delete a product |
| DevDraftAI::ProductsApi | product_controller_update | PUT /api/v0/products/{id} | Update a product |
| DevDraftAI::ProductsApi | product_controller_upload_image | POST /api/v0/products/{id}/images | Upload images for a product |
| DevDraftAI::TaxesApi | tax_controller_create | POST /api/v0/taxes | Create a new tax |
| DevDraftAI::TaxesApi | tax_controller_find_all | GET /api/v0/taxes | Get all taxes |
| DevDraftAI::TaxesApi | tax_controller_find_one | GET /api/v0/taxes/{id} | Get a tax by ID |
| DevDraftAI::TaxesApi | tax_controller_remove | DELETE /api/v0/taxes/{id} | Delete a tax |
| DevDraftAI::TaxesApi | tax_controller_update | PUT /api/v0/taxes/{id} | Update a tax |
| DevDraftAI::TestPaymentsApi | test_payment_controller_create_payment_v0 | POST /api/v0/test-payment | Process a test payment |
| DevDraftAI::TestPaymentsApi | test_payment_controller_get_payment_v0 | GET /api/v0/test-payment/{id} | Get payment details by ID |
| DevDraftAI::TestPaymentsApi | test_payment_controller_refund_payment_v0 | POST /api/v0/test-payment/{id}/refund | Refund a payment |
| DevDraftAI::TransfersApi | transfer_controller_create_direct_bank_transfer | POST /api/v0/transfers/direct-bank | Create a direct bank transfer |
| DevDraftAI::TransfersApi | transfer_controller_create_direct_wallet_transfer | POST /api/v0/transfers/direct-wallet | Create a direct wallet transfer |
| DevDraftAI::TransfersApi | transfer_controller_create_stablecoin_conversion | POST /api/v0/transfers/stablecoin-conversion | Create a stablecoin conversion |
| DevDraftAI::WalletsApi | wallet_controller_get_wallets | GET /api/v0/wallets | Get wallets for an app |
| DevDraftAI::WebhooksApi | webhook_controller_create | POST /api/v0/webhooks | Create a new webhook |
| DevDraftAI::WebhooksApi | webhook_controller_find_all | GET /api/v0/webhooks | Get all webhooks |
| DevDraftAI::WebhooksApi | webhook_controller_find_one | GET /api/v0/webhooks/{id} | Get a webhook by id |
| DevDraftAI::WebhooksApi | webhook_controller_remove | DELETE /api/v0/webhooks/{id} | Delete a webhook |
| DevDraftAI::WebhooksApi | webhook_controller_update | PATCH /api/v0/webhooks/{id} | Update a webhook |
FAQs
Unknown package
We found that devdraft demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.