repo
stringclasses
4 values
file_path
stringlengths
6
193
extension
stringclasses
30 values
content
stringlengths
0
5.21M
token_count
int64
0
3.8M
hyperswitch
api-reference/api-reference/routing/routing--list.mdx
.mdx
--- openapi: get /routing ---
9
hyperswitch
api-reference/api-reference/routing/routing--retrieve-default-config.mdx
.mdx
--- openapi: get /routing/default ---
10
hyperswitch
api-reference/api-reference/routing/routing--activate-config.mdx
.mdx
--- openapi: post /routing/{routing_algorithm_id}/activate ---
15
hyperswitch
api-reference/api-reference/routing/routing--update-default-for-profile.mdx
.mdx
--- openapi: post /routing/default/profile/{profile_id} ---
14
hyperswitch
api-reference/api-reference/routing/routing--create.mdx
.mdx
--- openapi: post /routing ---
9
hyperswitch
api-reference/api-reference/merchant-account/merchant-account--kv-status.mdx
.mdx
--- openapi: post /accounts/{account_id}/kv ---
14
hyperswitch
api-reference/api-reference/merchant-account/merchant-account--update.mdx
.mdx
--- openapi: post /accounts/{account_id} ---
12
hyperswitch
api-reference/api-reference/merchant-account/merchant-account--retrieve.mdx
.mdx
--- openapi: get /accounts/{account_id} ---
12
hyperswitch
api-reference/api-reference/merchant-account/merchant-account--create.mdx
.mdx
--- openapi: post /accounts ---
9
hyperswitch
api-reference/api-reference/merchant-account/merchant-account--delete.mdx
.mdx
--- openapi: delete /accounts/{account_id} ---
12
hyperswitch
api-reference/api-reference/payouts/payouts--fulfill.mdx
.mdx
--- openapi: openapi_spec post /payouts/{payout_id}/fulfill ---
21
hyperswitch
api-reference/api-reference/payouts/payouts--retrieve.mdx
.mdx
--- openapi: openapi_spec get /payouts/{payout_id} ---
18
hyperswitch
api-reference/api-reference/payouts/payouts--cancel.mdx
.mdx
--- openapi: openapi_spec post /payouts/{payout_id}/cancel ---
20
hyperswitch
api-reference/api-reference/payouts/payouts--list.mdx
.mdx
--- openapi: get /payouts/list ---
12
hyperswitch
api-reference/api-reference/payouts/payouts--create.mdx
.mdx
--- openapi: openapi_spec post /payouts/create ---
15
hyperswitch
api-reference/api-reference/payouts/payouts--list-filters.mdx
.mdx
--- openapi: post /payouts/filter ---
12
hyperswitch
api-reference/api-reference/payouts/payouts--confirm.mdx
.mdx
--- openapi: openapi_spec post /payouts/{payout_id}/confirm ---
20
hyperswitch
api-reference/api-reference/payouts/payouts--update.mdx
.mdx
--- openapi: openapi_spec post /payouts/{payout_id} ---
18
hyperswitch
api-reference/api-reference/payouts/payouts--filter.mdx
.mdx
--- openapi: post /payouts/list ---
12
hyperswitch
api-reference/api-reference/customer-set-default-payment-method/customers--set-default-payment-method.mdx
.mdx
--- openapi: get /{customer_id}/payment_methods/{payment_method_id}/default ---
20
hyperswitch
api-reference/api-reference/schemas/outgoing--webhook.mdx
.mdx
--- openapi-schema: OutgoingWebhook ---
11
hyperswitch
api-reference/api-reference/organization/organization--update.mdx
.mdx
--- openapi: put /organization/{id} ---
11
hyperswitch
api-reference/api-reference/organization/organization--create.mdx
.mdx
--- openapi: post /organization ---
9
hyperswitch
api-reference/api-reference/organization/organization--retrieve.mdx
.mdx
--- openapi: get /organization/{id} ---
11
hyperswitch
api-reference/api-reference/blocklist/post-blocklisttoggle.mdx
.mdx
--- openapi: post /blocklist/toggle ---
12
hyperswitch
api-reference/api-reference/blocklist/delete-blocklist.mdx
.mdx
--- openapi: delete /blocklist ---
10
hyperswitch
api-reference/api-reference/blocklist/post-blocklist.mdx
.mdx
--- openapi: post /blocklist ---
10
hyperswitch
api-reference/api-reference/blocklist/get-blocklist.mdx
.mdx
--- openapi: get /blocklist ---
10
hyperswitch
api-reference/api-reference/mandates/mandates--revoke-mandate.mdx
.mdx
--- openapi: openapi_spec post /mandates/revoke/{mandate_id} ---
19
hyperswitch
api-reference/api-reference/mandates/mandates--retrieve-mandate.mdx
.mdx
--- openapi: openapi_spec get /mandates/{mandate_id} ---
17
hyperswitch
api-reference/api-reference/mandates/mandates--customer-mandates-list.mdx
.mdx
--- openapi: post /customers/{customer_id}/mandates ---
15
hyperswitch
api-reference/api-reference/business-profile/business-profile--delete.mdx
.mdx
--- openapi: delete /account/{account_id}/business_profile/{profile_id} ---
18
hyperswitch
api-reference/api-reference/business-profile/business-profile--update.mdx
.mdx
--- openapi: post /account/{account_id}/business_profile/{profile_id} ---
18
hyperswitch
api-reference/api-reference/business-profile/business-profile--list.mdx
.mdx
--- openapi: get /account/{account_id}/business_profile ---
15
hyperswitch
api-reference/api-reference/business-profile/business-profile--create.mdx
.mdx
--- openapi: post /account/{account_id}/business_profile ---
15
hyperswitch
api-reference/api-reference/business-profile/business-profile--retrieve.mdx
.mdx
--- openapi: get /account/{account_id}/business_profile/{profile_id} ---
18
hyperswitch
api-reference/api-reference/customers/customers--list.mdx
.mdx
--- openapi: openapi_spec get /customers/list ---
13
hyperswitch
api-reference/api-reference/customers/customers--update.mdx
.mdx
--- openapi: openapi_spec post /customers/{customer_id} ---
15
hyperswitch
api-reference/api-reference/customers/customers--retrieve.mdx
.mdx
--- openapi: openapi_spec get /customers/{customer_id} ---
15
hyperswitch
api-reference/api-reference/customers/customers--delete.mdx
.mdx
--- openapi: openapi_spec delete /customers/{customer_id} ---
15
hyperswitch
api-reference/api-reference/customers/customers--create.mdx
.mdx
--- openapi: openapi_spec post /customers ---
12
hyperswitch-control-center
Dockerfile
none
FROM node:18 AS base WORKDIR /usr/src/app COPY . . RUN npm i RUN npm run build:prod FROM node:18-alpine WORKDIR /usr/src/app COPY --from=base /usr/src/app/dist /usr/src/app/dist COPY --from=base /usr/src/app/package*.json ./ RUN apk add --no-cache bash # Create non-root user and switch to it RUN addgroup -S app...
171
hyperswitch-control-center
tailwindHyperSwitch.config.js
.js
const plugin = require("tailwindcss/plugin"); module.exports = { darkMode: "class", content: ["./src/**/*.js"], theme: { fontFamily: { "inter-style": '"Inter"', }, extend: { screens: { mobile: "28.125rem", tablet: "93.75rem", desktop: "118.75rem", }, wi...
6,444
hyperswitch-control-center
package.json
.json
{ "name": "hyperswitch-dashboard", "version": "1.0.5", "main": "index.js", "author": "Shiva Nandan <shiva.nandan@juspay.in>", "license": "MIT", "scripts": { "pre-commit": "bash .githooks/commit-msg", "start": "cross-env APP_VERSION=$npm_package_version webpack serve --config webpack.dev.js", "se...
1,304
hyperswitch-control-center
CHANGELOG.md
.md
# Changelog All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines. - - - ## 2025.04.22.0 ### Bug Fixes - Connector metadata default ([#2849](https://github.com/juspay/hyperswitch-control-center/pull/2849)) ([`a4897...
161,274
hyperswitch-control-center
cypress.config.js
.js
const { defineConfig } = require("cypress"); module.exports = defineConfig({ e2e: { baseUrl: "http://localhost:9000", setupNodeEvents(on, config) { require("@cypress/code-coverage/task")(on, config); // include any other plugin code... // It's IMPORTANT to return the config object // ...
184
hyperswitch-control-center
LICENSE
none
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, ...
2,273
hyperswitch-control-center
rescript.json
.json
{ "$schema": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json", "name": "editor-ui", "uncurried": true, "jsx": { "version": 4, "mode": "classic" }, "bsc-flags": ["-bs-super-errors", "-open RescriptCore"], "sources": { "dir": "src", "su...
184
hyperswitch-control-center
webpack.dev.js
.js
const path = require("path"); const webpack = require("webpack"); const { merge } = require("webpack-merge"); const common = require("./webpack.common.js"); const config = import("./src/server/config.mjs"); let port = 9000; // proxy is setup to make frontend and backend url same for local testing let proxy = { "/api...
517
hyperswitch-control-center
webpack.common.js
.js
const path = require("path"); const webpack = require("webpack"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const ReactRefreshWebpackPlugin = require("@pmmmwh/react-refresh-webpack-plugin"); const tailwindcss = require("tailwindcss"); const Monac...
505
hyperswitch-control-center
webpack.custom.js
.js
const ReactRefreshWebpackPlugin = require("@pmmmwh/react-refresh-webpack-plugin"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const TerserPlugin = require("terser-webpack-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const tailwindcss = require("tailwindcss"); const webpack = requir...
554
hyperswitch-control-center
webpack.prod.js
.js
const { merge } = require("webpack-merge"); const common = require("./webpack.common.js"); const CssMinimizerPlugin = require("css-minimizer-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin"); const serverConfig = require("./webpack.server"); const { execSync } = require("child_process"); process....
327
hyperswitch-control-center
webpack.server.js
.js
const path = require("path"); const webpack = require("webpack"); const { execSync } = require("child_process"); const CopyWebpackPlugin = require("copy-webpack-plugin"); var currentCommitHash = execSync("git rev-parse HEAD", { encoding: "utf-8", }).trim(); module.exports = { mode: "development", entry: { se...
204
hyperswitch-control-center
jest.config.js
.js
module.exports = { testEnvironment: "jsdom", moduleFileExtensions: ["js", "mjs"], testMatch: ["**/tests/**/*Test.res.js"], };
39
hyperswitch-control-center
tailwind.config.js
.js
/////////////////////////////////////////////////////////////////////////////// /// ***Reference*** /// /// https://github.com/fbrill/dynamic-colors-in-tailwind/blob/main/utils/index.js/// /////////////////////////////////////////////////////////////////////////////// function withOpacity(variableName) { return (...
6,652
hyperswitch-control-center
README.md
.md
# Hyperswitch Control Center Hyperswitch control center is an open source dashboard to easily view, manage and control your payments across multiple processors through Hyperswitch - an open source payments switch. ## Features 1. Connect to multiple payment processors like Stripe, Braintree, Adyen etc. in a few click...
3,656
hyperswitch-control-center
Makefile
none
# Override envars using -e # make release -e NS=docker.io/juspay/test -e VERSION=1.2.3 -e IMAGE_NAME=docker-test NS ?= juspaydotin VERSION ?= latest IMAGE_NAME ?= hyperswitch-control-center BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD) CONTAINER_NAME ?= hyperswitch-control-center CONTAINER_INSTANCE ?= default...
425
hyperswitch-control-center
package-lock.json
.json
{ "name": "hyperswitch-dashboard", "version": "1.0.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "hyperswitch-dashboard", "version": "1.0.5", "hasInstallScript": true, "license": "MIT", "dependencies": { "@headlessui/react": "^1.2.0", ...
723,911
hyperswitch-control-center
cog.toml
.toml
tag_prefix = "v" ignore_merge_commits = true # the HTML comments (`<!-- N -->`) are a workaround to have sections in custom order, since they are alphabetically sorted [commit_types] feat = { changelog_title = "<!-- 0 -->Features" } fix = { changelog_title = "<!-- 1 -->Bug Fixes" } perf = { changelog_title = "<!-- 2 -...
234
hyperswitch-control-center
docs/SECURITY.md
.md
# Security Policy ## Reporting a security issue The hyperswitch project team welcomes security reports and is committed to providing prompt attention to security issues. Security issues should be reported privately via the [advisories page on GitHub](https://github.com/juspay/hyperswitch/security/advisories/new) or b...
87
hyperswitch-control-center
docs/CONTRIBUTING.md
.md
# Contributing We welcome contributions from the community! If you would like to contribute to Hyperswitch, please follow our contribution guidelines. ### Commit Conventions We follow the [Conventional Commits](https://www.conventionalcommits.org/) specification for our commit messages. Each commit message should ha...
969
hyperswitch-control-center
docs/CODE_OF_CONDUCT.md
.md
# Code of Conduct The hyperswitch control center project adheres to the [Rescript](https://rescript-lang.org/community/code-of-conduct) and [React](https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md) code of conduct. This describes the minimum behavior expected from all contributors.
65
hyperswitch-control-center
public/hyperswitch/_redirects
none
/api/* https://integ-api.hyperswitch.io/:splat 200 /* /index.html 200
32
hyperswitch-control-center
public/hyperswitch/index.html
.html
<!doctype html> <html lang="en"> <head> <title>Loading...</title> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta charset="UTF-8" /> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> <link rel="preconnect" href="https://fonts.googleapis.com" /> ...
1,735
hyperswitch-control-center
public/hyperswitch/module.js
.js
let wasm; async function init() { try { wasm = await import("/wasm/euclid.js"); await wasm.default("/wasm/euclid_bg.wasm"); return { status: true, wasm }; } catch (e) { console.error(e, "FAILED TO LOAD WASM CONFIG"); throw e; } } function getConnectorConfig(connectorName) { if (wasm) { ...
1,643
hyperswitch-control-center
public/hyperswitch/defaultConfig.js
.js
window._env_ = { theme: { primary_color: "", primary_hover_color: "", sidebar_color: "", }, endpoints: { api_url: "", }, };
40
hyperswitch-control-center
public/hyperswitch/Recon/landing.svg
.svg
<svg width="352" height="256" viewBox="0 0 352 256" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect x="-22.9387" y="-32.959" width="397.877" height="289.465" rx="25.8429" fill="#D5E8FF"/> <g opacity="0.5"> <path d="M241.747 81.0226C242.529 80.4568 243.624 80.6311 244.173...
15,803
hyperswitch-control-center
public/hyperswitch/assets/Woocommerce.svg
.svg
<svg width="102" height="104" viewBox="0 0 102 104" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect y="1" width="70.7085" height="70" rx="7" transform="matrix(0.866025 0.5 -0.866025 0.5 64.075 0.496094)" fill="url(#pattern0)" stroke="white" stroke-width="2"/> <rect width...
14,440
hyperswitch-control-center
public/hyperswitch/assets/MobileViewNotSupoort.svg
.svg
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M11.4014 72.0959H8.17578V23.4287C8.17578 22.2813 8.62422 21.2037 9.4377 20.3928C10.2348 19.5857 11.3146 19.1357 12.4688 19.1357H87.5293C88.6773 19.1357 89.7582 19.5838 90.5707 20.3963C91.3822 21.2088 91.8303 22....
1,920
hyperswitch-control-center
public/hyperswitch/assets/ConnectorStatusImage.svg
.svg
<svg width="121" height="130" viewBox="0 0 121 130" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect x="52" y="-15" width="79" height="79" rx="5" fill="url(#pattern0)"/> <rect x="22" y="39" width="51" height="51" rx="5" fill="url(#pattern1)"/> <rect x="64" y="62" width="5...
22,671
hyperswitch-control-center
public/hyperswitch/assets/WorkInProgress.svg
.svg
<svg width="272" height="160" viewBox="0 0 272 160" fill="none" xmlns="http://www.w3.org/2000/svg"> <path opacity="0.31" d="M60.8543 144.318L253.739 141.028C253.739 141.028 294.826 98.2823 253.739 69.0862C212.652 39.8901 218.552 0.434503 178.365 7.90826C143.653 14.3685 157.732 48.8666 135.003 46.9345C118.08 45.4967 102...
28,227
hyperswitch-control-center
public/hyperswitch/assets/BlurrySDK.svg
.svg
<svg width="632" height="701" viewBox="0 0 632 701" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g filter="url(#filter0_f_10669_6893)"> <g filter="url(#filter1_d_10669_6893)"> <g clip-path="url(#clip0_10669_6893)"> <rect x="40" y="12" width="552" height="677" rx="6.47171" ...
119,208
hyperswitch-control-center
public/hyperswitch/assets/DefaultHomeRecoveryCard.svg
.svg
<svg width="1288" height="695" viewBox="0 0 1288 695" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_414_308)"> <g clip-path="url(#clip1_414_308)"> <rect x="-83.5" y="-187" width="1457" height="1060" rx="94.6349" fill="#D5E8FF"/> <rect x="386.5" y="94" width="516.004" height="477.757" rx="23.7...
19,285
hyperswitch-control-center
public/hyperswitch/assets/PayPalFullLogo.svg
.svg
<svg width="56" height="14" viewBox="0 0 56 14" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect width="55.2632" height="14" fill="url(#pattern0)"/> <defs> <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> <use xlink:href="#image0_13748_...
6,681
hyperswitch-control-center
public/hyperswitch/assets/StripePlusPaypal.svg
.svg
<svg width="132" height="117" viewBox="0 0 132 117" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect width="2.20107" height="440.214" transform="matrix(0.866025 -0.5 0 1 114.189 65.9985)" fill="#6580E1"/> <path d="M130.077 43.9512C130.077 52.5332 124.052 60.3027 114.311 6...
19,412
hyperswitch-control-center
public/hyperswitch/assets/QuickStartImage.svg
.svg
<svg width="420" height="281" viewBox="0 0 420 281" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect width="945" height="416" fill="url(#pattern0)"/> <defs> <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1"> <use xlink:href="#image0_11680...
1,352,545
hyperswitch-control-center
public/hyperswitch/assets/DummyConnectorImage.svg
.svg
<svg width="594" height="258" viewBox="0 0 594 258" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <rect y="-170" width="749" height="490" fill="url(#pattern0)" /> <defs> <pattern id="pattern0" patternContentUnits="objectBoundingBox" wid...
822,310
hyperswitch-control-center
public/hyperswitch/assets/controlCenter.svg
.svg
<svg width="620" height="520" viewBox="0 0 620 520" fill="none" xmlns="http://www.w3.org/2000/svg"> <path opacity="0.09" d="M309.844 103.458L363.266 79.2656L600.139 217.362L552.079 248.237L309.844 103.458Z" fill="#191919" stroke="white" stroke-width="0.5" stroke-miterlimit="10"/> <path d="M309.844 89.3483L360.242 65.15...
49,334
hyperswitch-control-center
public/hyperswitch/assets/MobileImage.svg
.svg
<svg width="382" height="213" viewBox="0 0 382 213" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g filter="url(#filter0_d_3105_12884)"> <rect x="137.416" y="2.55859" width="137.793" height="271.845" fill="url(#pattern0)"/> </g> <path fill-rule="evenodd" clip-rule="evenodd"...
3,803,982
hyperswitch-control-center
public/hyperswitch/assets/MigrateFromStripe.svg
.svg
<svg width="126" height="28" viewBox="0 0 126 28" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <path d="M25 0H3C1.34315 0 0 1.34315 0 3V25C0 26.6569 1.34315 28 3 28H25C26.6569 28 28 26.6569 28 25V3C28 1.34315 26.6569 0 25 0Z" fill="url(#pattern0)"/> <path d="M36 14C37.3 10 ...
7,133
hyperswitch-control-center
public/hyperswitch/assets/DefaultHomeReconCard.svg
.svg
<svg width="1290" height="686" viewBox="0 0 1290 686" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g clip-path="url(#clip0_414_410)"> <rect x="0.5" width="1289" height="686" rx="33" fill="#F8F8F8"/> <rect x="-83.5" y="-139" width="1457" height="1060" rx="94.6349" fill="#D5...
15,867
hyperswitch-control-center
public/hyperswitch/assets/WooCommercePlugin.svg
.svg
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="180" height="28" viewBox="40 0 126 28" fill="none"> <defs> <linearGradient id="gradient" x1="0%" y1="0%" x2="100%" y2="0%"> <stop offset="0%" stop-color="#7f54b2" style="&#10; stop-color: #7f54b2;&#10;"/> <sto...
10,331
hyperswitch-control-center
public/hyperswitch/assets/key-password.svg
.svg
<svg width="132" height="72" viewBox="0 0 132 72" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M36 54C41 54 45.25 52.25 48.75 48.75C52.25 45.25 54 41 54 36C54 31 52.25 26.75 48.75 23.25C45.25 19.75 41 18 36 18C31 18 26.75 19.75 23.25 23.25C19.75 26.75 18 31 18 36C18 41 19.75 45.25 23.25 48.75C26.75 52.25 31...
542
hyperswitch-control-center
public/hyperswitch/assets/DefaultHomeVaultCard.svg
.svg
<svg width="1288" height="695" viewBox="0 0 1288 695" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_414_503)"> <g filter="url(#filter0_d_414_503)"> <rect x="279.5" y="72" width="654" height="552.37" rx="27.4388" fill="white"/> <rect x="310.539" y="103.035" width="512.029" height="489.53" rx="...
19,111
hyperswitch-control-center
public/hyperswitch/assets/copyid.svg
.svg
<svg width="24" height="24" viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" y="0.5" width="35" height="35" rx="4.5" stroke="#BFBFBF"/> <path d="M12.1225 11.1818V25H9.20099V11.1818H12.1225ZM21.1346 25H16.2362V11.1818H21.1751C22.565 11.1818 23.7615 11.4585 24.7646 12.0117C25.7677 12.5605...
772
hyperswitch-control-center
public/hyperswitch/assets/recoveryOnboarging.svg
.svg
<svg width="453" height="348" viewBox="0 0 453 348" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <path d="M0 8C0 3.58172 3.58172 0 8 0H445C449.418 0 453 3.58172 453 8V340C453 344.418 449.418 348 445 348H7.99999C3.58171 348 0 344.418 0 340V8Z" fill="url(#pattern0_28721_3404)...
51,641
hyperswitch-control-center
public/hyperswitch/assets/sdk.svg
.svg
<svg width="445" height="304" viewBox="0 0 445 304" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g clip-path="url(#clip0_2255_28055)"> <g filter="url(#filter0_d_2255_28055)"> <rect y="188.444" width="321.994" height="257.74" rx="8.20277" fill="url(#pattern0)" shape-renderi...
399,232
hyperswitch-control-center
public/hyperswitch/assets/VolumeBasedRoutingImage.svg
.svg
<svg width="312" height="220" viewBox="0 0 312 220" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <g clip-path="url(#clip0_12523_72226)"> <rect width="312" height="220" rx="4" fill="#EAEEF5" /> <path d="M156 49L156 118" stroke="#333333" stroke-linejoin...
30,600
hyperswitch-control-center
public/hyperswitch/assets/frmBanner.svg
.svg
<svg width="1137" height="434" viewBox="0 0 1137 434" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g clip-path="url(#clip0_6636_56378)"> <rect x="-0.5" y="-0.5" width="1138" height="435" rx="4.5" fill="#FEFEFE" stroke="#E8E8E8"/> <rect x="594.5" y="2.5" width="540" height=...
215,540
hyperswitch-control-center
public/hyperswitch/assets/VaultServerImage.svg
.svg
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <g opacity="0.36"> <path d="M24.96 9.00391H12.1974C11.5361 9.00391 11 9.53999 11 10.2013V33.1838C11 33.8451 11.5361 34.3812 12.1974 34.3812H24.96C25.6213 34.3812 26.1574 33.8451 26.1574 33.1838V10.2013C26.1574 9.53999 25.621...
1,550
hyperswitch-control-center
public/hyperswitch/assets/FallbackRoutingImage.svg
.svg
<svg width="312" height="220" viewBox="0 0 312 220" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" > <g clip-path="url(#clip0_12523_72201)"> <rect width="312" height="220" rx="4" fill="#EAEEF5" /> <path d="M69 47L69 118" stroke="#333333" stroke-linejoin="...
30,826
hyperswitch-control-center
public/hyperswitch/assets/VaultSdkImage.svg
.svg
<svg width="45" height="44" viewBox="0 0 45 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <g style="mix-blend-mode:multiply" opacity="0.34"> <path d="M31.7482 6.93555H10.4374C9.91968 6.93555 9.5 7.35523 9.5 7.87293V31.9627C9.5 32.4803 9.91968 32.9 10.4374 32.9H31.7482C32.2659 32.9 32.6855 32.4803 32.6855 31.9627V...
2,581
hyperswitch-control-center
public/hyperswitch/assets/connectorsList.svg
.svg
<svg width="184" height="142" viewBox="0 0 184 142" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <g clip-path="url(#clip0_2447_28234)"> <rect x="138" y="94" width="46" height="46" rx="5.75" fill="#6772E5"/> <path d="M161 140C173.703 140 184 129.703 184 117C184 104.297 173.7...
65,075
hyperswitch-control-center
public/hyperswitch/assets/DefaultHomeTeam.svg
.svg
<svg width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <g opacity="0.28"> <path d="M35.8078 12.0404H7.13996C6.19836 12.0404 5.43506 12.8037 5.43506 13.7453V32.6798C5.43506 33.6214 6.19836 34.3847 7.13996 34.3847H35.8078C36.7494 34.3847 37.5127 33.6214 37.5127 32.6798V13.7453C37....
1,701
hyperswitch-control-center
public/hyperswitch/assets/mail.svg
.svg
<svg width="180" height="180" viewBox="0 0 180 180" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_9591_14647)"> <mask id="mask0_9591_14647" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="180" height="180"> <rect width="180" height="180" fill="#D9D9D9"/> </mask> <g mask=...
752
hyperswitch-control-center
public/hyperswitch/assets/Shapes.svg
.svg
<svg width="80" height="36" viewBox="0 0 80 36" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M43.5304 17.3691C38.3894 17.3691 34.2148 21.5504 34.2148 26.6847C34.2148 31.819 38.3961 36.0003 43.5304 36.0003C48.6647 36.0003 52.846 31.819 52.846 26.6847C52.846 21.5504 48.6647 17.3691 43.5304 17.3691Z" fill="#00...
1,235
hyperswitch-control-center
public/hyperswitch/assets/smart-retry.svg
.svg
<svg width="52" height="73" viewBox="0 0 52 73" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M1.48772 33.9642C2.44158 30.5915 5.51997 28.2629 9.02502 28.2629L38.7628 28.2629C44.8379 28.2629 49.7628 33.1878 49.7628 39.2629V60.015C49.7628 64.341 46.2559 67.8479 41.9299 67.8479H10.6986C6.776 67.8479 3.45822 64...
7,879
hyperswitch-control-center
public/hyperswitch/assets/DefaultHomeHypersenseCard.svg
.svg
<svg width="353" height="256" viewBox="0 0 353 256" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect x="0.5" width="352" height="256" rx="24" fill="#D5E8FF"/> <path d="M257.062 58.2273C257.482 57.7013 258.25 57.6145 258.767 58.0454C264.872 63.135 269.867 69.4314 273.434 76.5442C277.184 84.0203 279.267 92.2207 279....
10,315
hyperswitch-control-center
public/hyperswitch/assets/HyperswitchLoginIllustration.svg
.svg
<svg width="720" height="327" viewBox="0 0 720 327" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(#clip0_3171_19052)"> <path d="M384 160H866" stroke="#006DF9" stroke-width="2" stroke-miterlimit="10"/> <path d="M87.4081 174.495H97.6981C98.6755 174.495 99.6122 174.107 100.302 173.417L107.578 166.145C1...
13,723
hyperswitch-control-center
public/hyperswitch/assets/VaultOnboarding.svg
.svg
<svg width="353" height="257" viewBox="0 0 353 257" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <rect x="0.5" y="0.496094" width="352" height="256.008" fill="url(#pattern0_28505_16574)"/> <defs> <pattern id="pattern0_28505_16574" patternContentUnits="objectBoundingBox" wid...
1,082,431