-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dphuang2
committed
Mar 28, 2024
1 parent
c6ee4fc
commit 735b58e
Showing
6 changed files
with
2,211 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.`} | ||
/> | ||
) | ||
} |
4 changes: 4 additions & 0 deletions
4
generator/konfig-docs/src/pages/sdk/workable/typescript/_first-request.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
```typescript index.ts | ||
// /accounts | ||
const listAccessibleResponse = workable.account.listAccessible() | ||
``` |
7 changes: 7 additions & 0 deletions
7
generator/konfig-docs/src/pages/sdk/workable/typescript/_getting-started.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
}) | ||
``` |
Oops, something went wrong.