constants.ts•3.75 kB
export const TOOL_METHODS = {
LIST_PRODUCTS: "list_products",
CREATE_PRODUCT: "create_product",
GET_PRODUCT: "get_product",
UPDATE_PRODUCT: "update_product",
LIST_PRICES: "list_prices",
CREATE_PRICE: "create_price",
GET_PRICE: "get_price",
UPDATE_PRICE: "update_price",
LIST_TRANSACTIONS: "list_transactions",
CREATE_TRANSACTION: "create_transaction",
PREVIEW_PRICES: "preview_prices",
PREVIEW_TRANSACTION_CREATE: "preview_transaction_create",
GET_TRANSACTION: "get_transaction",
UPDATE_TRANSACTION: "update_transaction",
REVISE_TRANSACTION: "revise_transaction",
LIST_ADJUSTMENTS: "list_adjustments",
CREATE_ADJUSTMENT: "create_adjustment",
GET_ADJUSTMENT_CREDIT_NOTE: "get_adjustment_credit_note",
LIST_CREDIT_BALANCES: "list_credit_balances",
LIST_CUSTOMERS: "list_customers",
CREATE_CUSTOMER: "create_customer",
GET_CUSTOMER: "get_customer",
UPDATE_CUSTOMER: "update_customer",
LIST_ADDRESSES: "list_addresses",
CREATE_ADDRESS: "create_address",
GET_ADDRESS: "get_address",
UPDATE_ADDRESS: "update_address",
LIST_BUSINESSES: "list_businesses",
CREATE_BUSINESS: "create_business",
GET_BUSINESS: "get_business",
UPDATE_BUSINESS: "update_business",
LIST_SAVED_PAYMENT_METHODS: "list_saved_payment_methods",
GET_SAVED_PAYMENT_METHOD: "get_saved_payment_method",
DELETE_SAVED_PAYMENT_METHOD: "delete_saved_payment_method",
CREATE_CUSTOMER_PORTAL_SESSION: "create_customer_portal_session",
LIST_NOTIFICATION_SETTINGS: "list_notification_settings",
CREATE_NOTIFICATION_SETTING: "create_notification_setting",
GET_NOTIFICATION_SETTING: "get_notification_setting",
UPDATE_NOTIFICATION_SETTING: "update_notification_setting",
DELETE_NOTIFICATION_SETTING: "delete_notification_setting",
LIST_EVENTS: "list_events",
LIST_NOTIFICATIONS: "list_notifications",
GET_NOTIFICATION: "get_notification",
LIST_NOTIFICATION_LOGS: "list_notification_logs",
REPLAY_NOTIFICATION: "replay_notification",
LIST_SIMULATIONS: "list_simulations",
CREATE_SIMULATION: "create_simulation",
GET_SIMULATION: "get_simulation",
UPDATE_SIMULATION: "update_simulation",
LIST_SIMULATION_RUNS: "list_simulation_runs",
CREATE_SIMULATION_RUN: "create_simulation_run",
GET_SIMULATION_RUN: "get_simulation_run",
LIST_SIMULATION_RUN_EVENTS: "list_simulation_run_events",
GET_SIMULATION_RUN_EVENT: "get_simulation_run_event",
REPLAY_SIMULATION_RUN_EVENT: "replay_simulation_run_event",
GET_TRANSACTION_INVOICE: "get_transaction_invoice",
LIST_DISCOUNTS: "list_discounts",
CREATE_DISCOUNT: "create_discount",
GET_DISCOUNT: "get_discount",
UPDATE_DISCOUNT: "update_discount",
LIST_DISCOUNT_GROUPS: "list_discount_groups",
CREATE_DISCOUNT_GROUP: "create_discount_group",
GET_DISCOUNT_GROUP: "get_discount_group",
UPDATE_DISCOUNT_GROUP: "update_discount_group",
ARCHIVE_DISCOUNT_GROUP: "archive_discount_group",
GET_SUBSCRIPTION: "get_subscription",
UPDATE_SUBSCRIPTION: "update_subscription",
LIST_SUBSCRIPTIONS: "list_subscriptions",
CANCEL_SUBSCRIPTION: "cancel_subscription",
PAUSE_SUBSCRIPTION: "pause_subscription",
RESUME_SUBSCRIPTION: "resume_subscription",
ACTIVATE_SUBSCRIPTION: "activate_subscription",
PREVIEW_SUBSCRIPTION_UPDATE: "preview_subscription_update",
CREATE_SUBSCRIPTION_CHARGE: "create_subscription_charge",
PREVIEW_SUBSCRIPTION_CHARGE: "preview_subscription_charge",
LIST_REPORTS: "list_reports",
CREATE_REPORT: "create_report",
GET_REPORT: "get_report",
GET_REPORT_CSV: "get_report_csv",
LIST_CLIENT_SIDE_TOKENS: "list_client_side_tokens",
CREATE_CLIENT_SIDE_TOKEN: "create_client_side_token",
GET_CLIENT_SIDE_TOKEN: "get_client_side_token",
REVOKE_CLIENT_SIDE_TOKEN: "revoke_client_side_token",
} as const;