Skip to content

Commit

Permalink
yarn pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Mar 27, 2024
1 parent cb8fef3 commit e9c752a
Show file tree
Hide file tree
Showing 19 changed files with 15,517 additions and 4 deletions.
6 changes: 6 additions & 0 deletions generator/konfig-docs/redirects.json
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,12 @@
"/sdk/visier/user-management/": "/sdk/visier/user-management/typescript/",
"/sdk/walmart/content-management": "/sdk/walmart/content-management/typescript/",
"/sdk/walmart/content-management/": "/sdk/walmart/content-management/typescript/",
"/sdk/workday/performance-enablement": "/sdk/workday/performance-enablement/typescript/",
"/sdk/workday/performance-enablement/": "/sdk/workday/performance-enablement/typescript/",
"/sdk/workday/person": "/sdk/workday/person/typescript/",
"/sdk/workday/person/": "/sdk/workday/person/typescript/",
"/sdk/workday/staffing": "/sdk/workday/staffing/typescript/",
"/sdk/workday/staffing/": "/sdk/workday/staffing/typescript/",
"/sdk/zapier/embed": "/sdk/zapier/embed/typescript/",
"/sdk/zapier/embed/": "/sdk/zapier/embed/typescript/",
"/sdk/zapier/ai-actions": "/sdk/zapier/ai-actions/typescript/",
Expand Down
74 changes: 74 additions & 0 deletions generator/konfig-docs/src/pages/sdk/blue-snap/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
import React from 'react';
import { Company } from '../../../components/Company';

const sdks = [
{
"name": "BlueSnap",
"numberOfMethods": 36,
"categories": [
"payments",
"embedded_payments",
"global_payments"
],
"index": "blue-snap/typescript",
"language": "TypeScript",
"link": "/sdk/blue-snap/typescript/",
"developerDocumentation": "developers.bluesnap.com/v8976-JSON/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bluesnap/openapi.yaml"
},
{
"name": "BlueSnap",
"numberOfMethods": 36,
"categories": [
"payments",
"embedded_payments",
"global_payments"
],
"index": "blue-snap/python",
"language": "Python",
"link": "/sdk/blue-snap/python/",
"developerDocumentation": "developers.bluesnap.com/v8976-JSON/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bluesnap/openapi.yaml"
},
{
"name": "BlueSnap",
"numberOfMethods": 36,
"categories": [
"payments",
"embedded_payments",
"global_payments"
],
"index": "blue-snap/java",
"language": "Java",
"link": "/sdk/blue-snap/java/",
"developerDocumentation": "developers.bluesnap.com/v8976-JSON/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bluesnap/openapi.yaml"
}
];

export default function BlueSnap() {
const allCategories: string[] = Array.from(
new Set(sdks.flatMap((service) => service.categories)),
)
return (
<Company
company="BlueSnap"
previewLinkImage="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bluesnap/imagePreview.png"
logo="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bluesnap/logo.png"
favicon="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bluesnap/favicon.png"
sdks={sdks}
homepage="www.bluesnap.com/"
companyKebabCase="blue-snap"
categories={allCategories}
metaDescription={`At BlueSnap, we look at payments a little differently. Our Payment Orchestration Platform helps businesses accept payments globally and is designed to increase revenue and reduces costs. We provide a comprehensive back-end solutions that simplifies the complexity of payments, managing the full process from start to finish.
BlueSnap supports payments through multiple sales channels such as online and mobile sales, marketplaces, subscriptions, invoice payments and manual orders through a virtual terminal. And for businesses looking for embedded payments, we offer white-labeled payments for platforms with automated underwriting and onboarding that supports marketplaces and split payments.
And with one integration and contract, businesses can sell in over 200 geographies with access to local acquiring in 47 countries, 110+ currencies and 100+ global payment types, including popular eWallets, automated accounts receivable, world-class fraud protection and chargeback management, built-in solutions for regulation and tax compliance, and unified global reporting to help businesses grow.
With a US headquarters in Waltham, MA, and EU headquarters in Dublin, Ireland, BlueSnap is backed by world-class private equity investors including Great Hill Partners and Parthenon Capital Partners.
Learn more at BlueSnap.com`}
/>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
```typescript index.ts
// Auth Only
const createTransactionResponse = blueSnap.authorization.createTransaction({
amount: 11
softDescriptor: "DescTest"
currency: "USD"
cardTransactionType: "AUTH_ONLY"
})
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
```typescript index.ts
import { BlueSnap } from 'blue-snap-typescript-sdk';

const blueSnap = new BlueSnap({
username: "USERNAME",
password: "PASSWORD",
sec1: "AUTHORIZATION"
})
```
Loading

0 comments on commit e9c752a

Please sign in to comment.