├── .env.example ├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── examples │ ├── api-example │ │ ├── create-paylink │ │ │ └── route.ts │ │ ├── get-currencies │ │ │ └── route.ts │ │ └── get-signature │ │ │ └── route.ts │ ├── helio-checkout-widget │ │ ├── plain-javascript │ │ │ └── index.html │ │ └── react │ │ │ ├── page.tsx │ │ │ └── success-page │ │ │ └── page.tsx │ └── webhooks │ │ ├── create-paylink-webhook │ │ ├── route.ts │ │ └── target │ │ │ └── route.ts │ │ ├── delete-webhook │ │ └── route.ts │ │ └── list-webhooks │ │ └── route.ts ├── favicon.ico ├── globals.css ├── icon.ico ├── layout.tsx └── page.tsx ├── next.config.mjs ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/README.md -------------------------------------------------------------------------------- /app/examples/api-example/create-paylink/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/api-example/create-paylink/route.ts -------------------------------------------------------------------------------- /app/examples/api-example/get-currencies/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/api-example/get-currencies/route.ts -------------------------------------------------------------------------------- /app/examples/api-example/get-signature/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/api-example/get-signature/route.ts -------------------------------------------------------------------------------- /app/examples/helio-checkout-widget/plain-javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/helio-checkout-widget/plain-javascript/index.html -------------------------------------------------------------------------------- /app/examples/helio-checkout-widget/react/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/helio-checkout-widget/react/page.tsx -------------------------------------------------------------------------------- /app/examples/helio-checkout-widget/react/success-page/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/helio-checkout-widget/react/success-page/page.tsx -------------------------------------------------------------------------------- /app/examples/webhooks/create-paylink-webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/webhooks/create-paylink-webhook/route.ts -------------------------------------------------------------------------------- /app/examples/webhooks/create-paylink-webhook/target/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/webhooks/create-paylink-webhook/target/route.ts -------------------------------------------------------------------------------- /app/examples/webhooks/delete-webhook/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/webhooks/delete-webhook/route.ts -------------------------------------------------------------------------------- /app/examples/webhooks/list-webhooks/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/examples/webhooks/list-webhooks/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/icon.ico -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/app/page.tsx -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heliofi/sample-dev-app/HEAD/yarn.lock --------------------------------------------------------------------------------