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 c6ee4fc commit 735b58e
Show file tree
Hide file tree
Showing 6 changed files with 2,211 additions and 0 deletions.
20 changes: 20 additions & 0 deletions generator/konfig-docs/src/pages/sdk/companies.json
Original file line number Diff line number Diff line change
Expand Up @@ -3183,6 +3183,26 @@
"difficultyScore": 90.75,
"subpath": "/sdk/pay-com"
},
{
"parentCategories": [
"Human Resources"
],
"subCategories": [
"HR Talent & Recruitment"
],
"favicon": "https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/workable/favicon.png",
"metaDescription": "Workable develops a cloud-based recruitment platform for companies to post jobs, track applicants and schedule interviews.",
"services": [],
"company": "Workable",
"keywords": [
"recruiting",
"hr",
"applicant_tracking"
],
"numberOfApis": 1,
"difficultyScore": 88.75,
"subpath": "/sdk/workable"
},
{
"parentCategories": [
"Commerce"
Expand Down
14 changes: 14 additions & 0 deletions generator/konfig-docs/src/pages/sdk/sdk-links.json
Original file line number Diff line number Diff line change
Expand Up @@ -3762,6 +3762,20 @@
"subCategory": "Developer Tools",
"apiVersion": "1.0.0"
},
{
"index": "workable/typescript",
"link": "/sdk/workable/typescript/",
"homepage": "workable.com",
"categories": [
"recruiting",
"hr",
"applicant_tracking"
],
"favicon": "https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/workable/favicon.png",
"parentCategory": "Human Resources",
"subCategory": "HR Talent & Recruitment",
"apiVersion": "3.7"
},
{
"index": "workday/performance-enablement/typescript",
"link": "/sdk/workday/performance-enablement/typescript/",
Expand Down
66 changes: 66 additions & 0 deletions generator/konfig-docs/src/pages/sdk/workable/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
import React from 'react';
import { Company } from '../../../components/Company';

const sdks = [
{
"name": "Workable",
"numberOfMethods": 54,
"categories": [
"recruiting",
"hr",
"applicant_tracking"
],
"index": "workable/typescript",
"language": "TypeScript",
"link": "/sdk/workable/typescript/",
"developerDocumentation": "workable.readme.io/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/workable/openapi.yaml"
},
{
"name": "Workable",
"numberOfMethods": 54,
"categories": [
"recruiting",
"hr",
"applicant_tracking"
],
"index": "workable/python",
"language": "Python",
"link": "/sdk/workable/python/",
"developerDocumentation": "workable.readme.io/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/workable/openapi.yaml"
},
{
"name": "Workable",
"numberOfMethods": 54,
"categories": [
"recruiting",
"hr",
"applicant_tracking"
],
"index": "workable/java",
"language": "Java",
"link": "/sdk/workable/java/",
"developerDocumentation": "workable.readme.io/reference",
"openapiGitHubUi": "https://github.com/konfig-sdks/openapi-examples/tree/HEAD/workable/openapi.yaml"
}
];

export default function Workable() {
const allCategories: string[] = Array.from(
new Set(sdks.flatMap((service) => service.categories)),
)
return (
<Company
company="Workable"
previewLinkImage="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/workable/imagePreview.png"
logo="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/workable/logo.png"
favicon="https://raw.githubusercontent.com/konfig-sdks/openapi-examples/HEAD/workable/favicon.png"
sdks={sdks}
homepage="workable.com"
companyKebabCase="workable"
categories={allCategories}
metaDescription={`Workable develops a cloud-based recruitment platform for companies to post jobs, track applicants and schedule interviews.`}
/>
)
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
```typescript index.ts
// /accounts
const listAccessibleResponse = workable.account.listAccessible()
```
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```typescript index.ts
import { Workable } from 'workable-typescript-sdk';

const workable = new Workable({
sec0: "AUTHORIZATION"
})
```
Loading

0 comments on commit 735b58e

Please sign in to comment.