Skip to content

Commit

Permalink
yarn pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Mar 28, 2024
1 parent dae187c commit fb8263d
Show file tree
Hide file tree
Showing 12 changed files with 2,352 additions and 0 deletions.
80 changes: 80 additions & 0 deletions generator/konfig-docs/src/pages/sdk/bl-ink/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
import React from 'react';
import { Company } from '../../../components/Company';

const sdks = [
{
"name": "BL.INK",
"numberOfMethods": 37,
"categories": [
"url_shortener",
"link_management",
"qr_codes",
"branded_short_links",
"short_links"
],
"index": "bl-ink/typescript",
"language": "TypeScript",
"link": "/sdk/bl-ink/typescript/",
"developerDocumentation": "developers.bl.ink/",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bl-ink/openapi.yaml"
},
{
"name": "BL.INK",
"numberOfMethods": 37,
"categories": [
"url_shortener",
"link_management",
"qr_codes",
"branded_short_links",
"short_links"
],
"index": "bl-ink/python",
"language": "Python",
"link": "/sdk/bl-ink/python/",
"developerDocumentation": "developers.bl.ink/",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bl-ink/openapi.yaml"
},
{
"name": "BL.INK",
"numberOfMethods": 37,
"categories": [
"url_shortener",
"link_management",
"qr_codes",
"branded_short_links",
"short_links"
],
"index": "bl-ink/java",
"language": "Java",
"link": "/sdk/bl-ink/java/",
"developerDocumentation": "developers.bl.ink/",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/bl-ink/openapi.yaml"
}
];

export default function BlInk() {
const allCategories: string[] = Array.from(
new Set(sdks.flatMap((service) => service.categories)),
)
return (
<Company
company="BL.INK"
previewLinkImage="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bl-ink/imagePreview.png"
logo="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bl-ink/logo.png"
favicon="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/bl-ink/favicon.png"
sdks={sdks}
homepage="www.bl.ink/"
companyKebabCase="bl-ink"
categories={allCategories}
metaDescription={`BL.INK powers shortened URLs and QR codes with unlimited data and flexibility.
With BL.INK, you'll create thousands of custom links that capture unlimited data points so you can measure every user touchpoint and perfect every interaction.
Everyone on your team can create perfect data to accurately measure every element of marketing attribution. Every customer than visits your link gets the information they need, every time, with no broken links.
Need to change the link when a contest ends, or show the page in the user's own language? It's easy with BL.INK.
No other URL shortener or QR code creator integrates with your existing tools, helps you avoid broken links, enables zero down-time when updating links, and has a platform built based on how enterprise companies work. Only BL.INK. Trusted by demanding global brands since 2008.`}
/>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```typescript index.ts
// Validates login information
const informationResponse = blInk.validateLogin.information({
email: "[email protected]"
password: "PASSWORD"
})
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
```typescript index.ts
import { BlInk } from 'bl-ink-typescript-sdk';

const blInk = new BlInk()
```
Loading

0 comments on commit fb8263d

Please sign in to comment.