text stringlengths 70 351k | source stringclasses 4 values |
|---|---|
# file: hyperswitch/crates/storage_impl/Cargo.toml | crate: storage_impl
[dependencies]
# First Party dependencies
api_models = { version = "0.1.0", path = "../api_models" }
common_enums = { version = "0.1.0", path = "../common_enums" }
common_utils = { version = "0.1.0", path = "../common_utils" }
diesel_models = { version = "0.1.0", path = "../diesel_models", default-features = false }
hyperswitch_domain_models = { version = "0.1.0", path = "../hyperswitch_domain_models", default-features = false }
masking = { version = "0.1.0", path = "../masking" }
redis_interface = { version = "0.1.0", path = "../redis_interface" }
router_derive = { version = "0.1.0", path = "../router_derive" }
router_env = { version = "0.1.0", path = "../router_env" }
# Third party crates
async-bb8-diesel = { git = "https://github.com/jarnura/async-bb8-diesel", rev = "53b4ab901aab7635c8215fd1c2d542c8db443094" }
async-trait = "0.1.79"
bb8 = "0.8.3"
bytes = "1.6.0"
config = { version = "0.14.0", features = ["toml"] }
crc32fast = "1.4.0"
diesel = { version = "2.2.3", default-features = false, features = ["postgres"] }
dyn-clone = "1.0.17"
error-stack = "0.4.1"
futures = "0.3.30"
moka = { version = "0.12", features = ["future"] }
once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = ["rt-multi-thread"] }
| ast_fragments |
# file: hyperswitch/crates/storage_impl/Cargo.toml | crate: storage_impl
[package]
name = "storage_impl"
description = "Storage backend implementations for data structures in router"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/storage_impl/Cargo.toml | crate: storage_impl
[features]
default = ["olap", "oltp"]
dynamic_routing = []
oltp = []
olap = ["hyperswitch_domain_models/olap"]
payouts = ["hyperswitch_domain_models/payouts"]
v1 = ["api_models/v1", "diesel_models/v1", "hyperswitch_domain_models/v1", "common_utils/v1"]
v2 = ["api_models/v2", "diesel_models/v2", "hyperswitch_domain_models/v2", "common_utils/v2"]
customer_v2 = ["api_models/customer_v2", "diesel_models/customer_v2", "hyperswitch_domain_models/customer_v2"]
payment_methods_v2 = ["diesel_models/payment_methods_v2", "api_models/payment_methods_v2", "hyperswitch_domain_models/payment_methods_v2"]
refunds_v2 = ["diesel_models/refunds_v2"]
| ast_fragments |
# file: hyperswitch/crates/common_utils/Cargo.toml | crate: common_utils
[dependencies]
async-trait = { version = "0.1.79", optional = true }
base64 = "0.22.0"
base64-serde = "0.8.0"
blake3 = { version = "1.5.1", features = ["serde"] }
bytes = "1.6.0"
diesel = "2.2.3"
error-stack = "0.4.1"
futures = { version = "0.3.30", optional = true }
globset = "0.4.14"
hex = "0.4.3"
http = "0.2.12"
md5 = "0.7.0"
nanoid = "0.4.0"
nutype = { version = "0.4.2", features = ["serde"] }
once_cell = "1.19.0"
phonenumber = "0.3.3"
quick-xml = { version = "0.31.0", features = ["serialize"] }
rand = "0.8.5"
regex = "1.10.4"
reqwest = { version = "0.11.27", features = ["json", "native-tls", "gzip", "multipart"] }
ring = { version = "0.17.8", features = ["std", "wasm32_unknown_unknown_js"] }
rust_decimal = "1.35"
rustc-hash = "1.1.0"
semver = { version = "1.0.22", features = ["serde"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_urlencoded = "0.7.1"
signal-hook = { version = "0.3.17", optional = true }
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0.58"
time = { version = "0.3.35", features = ["serde", "serde-well-known", "std"] }
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"], optional = true }
url = { version = "2.5.0", features = ["serde"] }
utoipa = { version = "4.2.0", features = ["preserve_order", "preserve_path_order"] }
uuid = { version = "1.8.0", features = ["v7"] }
openssl = {version = "0.10.70", optional = true}
# First party crates
common_enums = { version = "0.1.0", path = "../common_enums" }
masking = { version = "0.1.0", path = "../masking" }
router_env = { version = "0.1.0", path = "../router_env", features = ["log_extra_implicit_fields", "log_custom_entries_to_extra"], optional = true, default-features = false }
| ast_fragments |
# file: hyperswitch/crates/common_utils/Cargo.toml | crate: common_utils
[package]
name = "common_utils"
description = "Utilities shared across `router` and other crates"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/common_utils/Cargo.toml | crate: common_utils
[features]
default = []
keymanager = ["dep:router_env"]
keymanager_mtls = ["reqwest/rustls-tls"]
encryption_service = ["dep:router_env"]
km_forward_x_request_id = ["dep:router_env", "router_env/actix_web"]
signals = ["dep:signal-hook-tokio", "dep:signal-hook", "dep:tokio", "dep:router_env", "dep:futures"]
async_ext = ["dep:async-trait", "dep:futures"]
logs = ["dep:router_env"]
metrics = ["dep:router_env", "dep:futures"]
payouts = ["common_enums/payouts"]
v1 = []
v2 = []
customer_v2 = []
payment_methods_v2 = []
crypto_openssl = ["dep:openssl"]
| ast_fragments |
# file: hyperswitch/crates/common_utils/Cargo.toml | crate: common_utils
[target.'cfg(not(target_os = "windows"))'.dependencies]
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"], optional = true }
| ast_fragments |
# file: hyperswitch/crates/common_utils/Cargo.toml | crate: common_utils
[dev-dependencies]
fake = "2.9.2"
proptest = "1.4.0"
test-case = "3.3.1"
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_domain_models/Cargo.toml | crate: hyperswitch_domain_models
[dependencies]
# First party deps
api_models = { version = "0.1.0", path = "../api_models", features = ["errors"] }
cards = { version = "0.1.0", path = "../cards" }
common_enums = { version = "0.1.0", path = "../common_enums" }
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext", "metrics", "encryption_service", "keymanager"] }
common_types = { version = "0.1.0", path = "../common_types" }
diesel_models = { version = "0.1.0", path = "../diesel_models", features = ["kv_store"], default-features = false }
masking = { version = "0.1.0", path = "../masking" }
router_derive = { version = "0.1.0", path = "../router_derive" }
router_env = { version = "0.1.0", path = "../router_env" }
# Third party deps
actix-web = "4.5.1"
async-trait = "0.1.79"
error-stack = "0.4.1"
futures = "0.3.30"
http = "0.2.12"
mime = "0.3.17"
rustc-hash = "1.1.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_with = "3.7.0"
thiserror = "1.0.58"
time = { version = "0.3.35", features = ["serde", "serde-well-known", "std"] }
url = { version = "2.5.0", features = ["serde"] }
utoipa = { version = "4.2.0", features = ["preserve_order", "preserve_path_order", "time"] }
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_domain_models/Cargo.toml | crate: hyperswitch_domain_models
[package]
name = "hyperswitch_domain_models"
description = "Represents the data/domain models used by the business layer"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_domain_models/Cargo.toml | crate: hyperswitch_domain_models
[features]
default = ["olap", "frm"]
encryption_service = []
olap = []
payouts = ["api_models/payouts"]
frm = ["api_models/frm"]
v2 = ["api_models/v2", "diesel_models/v2", "common_utils/v2", "common_types/v2"]
v1 = ["api_models/v1", "diesel_models/v1", "common_utils/v1", "common_types/v1"]
customer_v2 = ["api_models/customer_v2", "diesel_models/customer_v2"]
payment_methods_v2 = ["api_models/payment_methods_v2", "diesel_models/payment_methods_v2"]
dummy_connector = []
revenue_recovery= []
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_connectors/Cargo.toml | crate: hyperswitch_connectors
[dependencies]
actix-http = "3.6.0"
actix-web = "4.5.1"
async-trait = "0.1.79"
base64 = "0.22.0"
bytes = "1.6.0"
encoding_rs = "0.8.33"
error-stack = "0.4.1"
hex = "0.4.3"
http = "0.2.12"
image = { version = "0.25.1", default-features = false, features = ["png"] }
josekit = { git = "https://github.com/sumanmaji4/josekit-rs.git", rev = "5ab54876c29a84f86aef8c169413a46026883efe", features = ["support-empty-payload"]}
mime = "0.3.17"
once_cell = "1.19.0"
qrcode = "0.14.0"
quick-xml = { version = "0.31.0", features = ["serialize"] }
rand = "0.8.5"
regex = "1.10.4"
reqwest = { version = "0.11.27" }
ring = "0.17.8"
roxmltree = "0.19.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde_qs = "0.12.0"
serde_urlencoded = "0.7.1"
serde_with = "3.7.0"
sha1 = { version = "0.10.6" }
strum = { version = "0.26", features = ["derive"] }
time = "0.3.35"
url = "2.5.0"
urlencoding = "2.1.3"
uuid = { version = "1.8.0", features = ["v4"] }
lazy_static = "1.4.0"
unicode-normalization = "0.1.21"
html-escape = "0.2"
# First party crates
api_models = { version = "0.1.0", path = "../api_models", features = ["errors"], default-features = false }
cards = { version = "0.1.0", path = "../cards" }
common_enums = { version = "0.1.0", path = "../common_enums" }
common_types = { version = "0.1.0", path = "../common_types" }
common_utils = { version = "0.1.0", path = "../common_utils", features = ["async_ext","logs","metrics","crypto_openssl"] }
hyperswitch_domain_models = { version = "0.1.0", path = "../hyperswitch_domain_models", default-features = false }
hyperswitch_interfaces = { version = "0.1.0", path = "../hyperswitch_interfaces", default-features = false }
masking = { version = "0.1.0", path = "../masking" }
router_env = { version = "0.1.0", path = "../router_env", features = ["log_extra_implicit_fields", "log_custom_entries_to_extra"] }
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_connectors/Cargo.toml | crate: hyperswitch_connectors
[package]
name = "hyperswitch_connectors"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_connectors/Cargo.toml | crate: hyperswitch_connectors
[features]
frm = ["hyperswitch_domain_models/frm", "hyperswitch_interfaces/frm"]
payouts = ["hyperswitch_domain_models/payouts", "api_models/payouts", "hyperswitch_interfaces/payouts"]
v1 = ["api_models/v1", "hyperswitch_domain_models/v1", "common_utils/v1"]
v2 = ["api_models/v2", "hyperswitch_domain_models/v2", "common_utils/v2","hyperswitch_interfaces/v2"]
revenue_recovery = ["hyperswitch_interfaces/revenue_recovery","hyperswitch_domain_models/revenue_recovery"]
| ast_fragments |
# file: hyperswitch/crates/common_enums/Cargo.toml | crate: common_enums
[package]
name = "common_enums"
description = "Enums shared across the request/response types and database types"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
readme = "README.md"
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/common_enums/Cargo.toml | crate: common_enums
[features]
dummy_connector = []
openapi = []
payouts = []
v2 = []
| ast_fragments |
# file: hyperswitch/crates/common_enums/Cargo.toml | crate: common_enums
[dependencies]
diesel = { version = "2.2.3", features = ["postgres", "128-column-tables"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
strum = { version = "0.26", features = ["derive"] }
thiserror = "1.0.58"
utoipa = { version = "4.2.0", features = ["preserve_order", "preserve_path_order"] }
# First party crates
router_derive = { version = "0.1.0", path = "../router_derive" }
masking = { version = "0.1.0", path = "../masking" }
| ast_fragments |
# file: hyperswitch/crates/common_enums/Cargo.toml | crate: common_enums
[dev-dependencies]
serde_json = "1.0.115"
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_constraint_graph/Cargo.toml | crate: hyperswitch_constraint_graph
[package]
name = "hyperswitch_constraint_graph"
description = "Constraint Graph Framework for modeling Domain-Specific Constraints"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_constraint_graph/Cargo.toml | crate: hyperswitch_constraint_graph
[features]
viz = ["dep:graphviz-rust"]
| ast_fragments |
# file: hyperswitch/crates/hyperswitch_constraint_graph/Cargo.toml | crate: hyperswitch_constraint_graph
[dependencies]
erased-serde = "0.3.28"
graphviz-rust = { version = "0.6.2", optional = true }
rustc-hash = "1.1.0"
serde = { version = "1.0.163", features = ["derive", "rc"] }
strum = { version = "0.25", features = ["derive"] }
thiserror = "1.0.43"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/Cargo.toml | crate: connector_configs
[package]
name = "connector_configs"
description = "Connector Integration Dashboard"
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
| ast_fragments |
# file: hyperswitch/crates/connector_configs/Cargo.toml | crate: connector_configs
[features]
default = ["payouts", "dummy_connector"]
production = []
sandbox = []
dummy_connector = ["api_models/dummy_connector"]
payouts = ["api_models/payouts"]
v1 = ["api_models/v1", "common_utils/v1"]
| ast_fragments |
# file: hyperswitch/crates/connector_configs/Cargo.toml | crate: connector_configs
[dependencies]
# First party crates
api_models = { version = "0.1.0", path = "../api_models", package = "api_models" }
common_utils = { version = "0.1.0", path = "../common_utils" }
# Third party crates
serde = { version = "1.0.197", features = ["derive"] }
serde_with = "3.7.0"
toml = "0.8.12"
utoipa = { version = "4.2.0", features = ["preserve_order", "preserve_path_order"] }
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[aci]
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[aci.connector_auth.BodyKey]
api_key="API Key"
key1="Entity ID"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[aci.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[adyen.connector_auth.BodyKey]
api_key="Adyen API Key"
key1="Adyen Account Id"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[adyen.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[adyenplatform_payout.metadata.source_balance_account]
name="source_balance_account"
label="Source balance account ID"
placeholder="Enter Source balance account ID"
required=true
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[adyenplatform_payout.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[airwallex.connector_auth.BodyKey]
api_key="API Key"
key1="Client ID"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bitpay.connector_auth.HeaderKey]
api_key="API Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bitpay.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bluesnap.connector_auth.BodyKey]
api_key="Password"
key1="Username"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bluesnap.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bluesnap.metadata.merchant_id]
name="merchant_id"
label="Merchant Id"
placeholder="Enter Merchant Id"
required=false
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[braintree.connector_auth.SignatureKey]
api_key="Public Key"
key1="Merchant Id"
api_secret="Private Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[braintree.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[braintree.metadata.merchant_account_id]
name="merchant_account_id"
label="Merchant Account Id"
placeholder="Enter Merchant Account Id"
required=true
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[braintree.metadata.merchant_config_currency]
name="merchant_config_currency"
label="Currency"
placeholder="Enter Currency"
required=true
type="Select"
options=[]
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bambora.connector_auth.BodyKey]
api_key="Passcode"
key1="Merchant Id"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bamboraapac.connector_auth.SignatureKey]
api_key="Username"
key1="Account Number"
api_secret="Password"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bankofamerica.connector_auth.SignatureKey]
api_key="Key"
key1="Merchant ID"
api_secret="Shared Secret"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[bankofamerica.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.EUR.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.EUR.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.GBP.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.GBP.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.USD.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.USD.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CAD.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CAD.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CHF.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CHF.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.AUD.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.AUD.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.INR.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.INR.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.JPY.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.JPY.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.NZD.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.NZD.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.ZAR.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.ZAR.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CNY.classic]
password_classic="Password Classic"
username_classic="Username Classic"
merchant_id_classic="MerchantId Classic"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_auth.CurrencyAuthKey.auth_key_map.CNY.evoucher]
password_evoucher="Password Evoucher"
username_evoucher="Username Evoucher"
merchant_id_evoucher="MerchantId Evoucher"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cashtocode.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cryptopay.connector_auth.BodyKey]
api_key="API Key"
key1="Secret Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cryptopay.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[checkout.connector_auth.SignatureKey]
api_key="Checkout API Public Key"
key1="Processing Channel ID"
api_secret="Checkout API Secret Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[checkout.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[coinbase.connector_auth.HeaderKey]
api_key="API Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[coingate.connector_auth.BodyKey]
api_key="API Key"
key1 ="Merchant Token"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[coingate.metadata.currency_id]
name="currency_id"
label="ID of the currency in which the refund will be issued"
placeholder="Enter ID of the currency in which the refund will be issued"
required=true
type="Number"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[coingate.metadata.platform_id]
name="platform_id"
label="Platform ID of the currency in which the refund will be issued"
placeholder="Enter Platform ID of the currency in which the refund will be issued"
required=true
type="Number"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.connector_auth.SignatureKey]
api_key="Key"
key1="Merchant ID"
api_secret="Shared Secret"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.metadata]
disable_avs = "Disable AVS check"
disable_cvn = "Disable CVN check"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.metadata.acquirer_bin]
name="acquirer_bin"
label="Acquirer Bin"
placeholder="Enter Acquirer Bin"
required=false
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.metadata.acquirer_merchant_id]
name="acquirer_merchant_id"
label="Acquirer Merchant ID"
placeholder="Enter Acquirer Merchant ID"
required=false
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[cybersource.metadata.acquirer_country_code]
name="acquirer_country_code"
label="Acquirer Country Code"
placeholder="Enter Acquirer Country Code"
required=false
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[deutschebank.connector_auth.SignatureKey]
api_key="Client ID"
key1="Merchant ID"
api_secret="Client Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[dlocal.connector_auth.SignatureKey]
api_key="X Login"
key1="X Trans Key"
api_secret="Secret Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[fiserv.connector_auth.SignatureKey]
api_key="API Key"
key1="Merchant ID"
api_secret="API Secret"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[fiserv.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[fiserv.metadata.terminal_id]
name="terminal_id"
label="Terminal ID"
placeholder="Enter Terminal ID"
required=true
type="Text"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[fiservemea.connector_auth.BodyKey]
api_key="API Key"
key1="Secret Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[forte.connector_auth.MultiAuthKey]
api_key="API Access ID"
key1="Organization ID"
api_secret="API Secure Key"
key2="Location ID"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[globalpay.connector_auth.BodyKey]
api_key="Global App Key"
key1="Global App ID"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[globalpay.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[globepay.connector_auth.BodyKey]
api_key="Partner Code"
key1="Credential Code"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[globepay.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[iatapay.connector_auth.SignatureKey]
api_key="Client ID"
key1="Airline ID"
api_secret="Client Secret"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[iatapay.connector_webhook_details]
merchant_secret="Source verification key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[itaubank.connector_auth.MultiAuthKey]
key1="Client Id"
api_key="Client Secret"
api_secret="Certificates"
key2="Certificate Key"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[jpmorgan.connector_auth.BodyKey]
api_key="Access Token"
key1="Client Secret"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[klarna.connector_auth.BodyKey]
key1="Klarna Merchant Username"
api_key="Klarna Merchant ID Password"
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[klarna.metadata.klarna_region]
name="klarna_region"
label="Region of your Klarna Merchant Account"
placeholder="Enter Region of your Klarna Merchant Account"
required=true
type="Select"
options=["Europe","NorthAmerica","Oceania"]
| ast_fragments |
# file: hyperswitch/crates/connector_configs/toml/production.toml | crate: connector_configs
[mifinity.connector_auth.HeaderKey]
api_key="key"
| ast_fragments |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.