-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
965808a
commit df548c1
Showing
132 changed files
with
3,585 additions
and
74 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,56 @@ | ||
/** | ||
* This file was auto-generated by Fern from our API Definition. | ||
*/ | ||
|
||
import * as environments from "../../../../environments"; | ||
import * as core from "../../../../core"; | ||
import { Candidate } from "../resources/candidate/client/Client"; | ||
import { Department } from "../resources/department/client/Client"; | ||
import { Job } from "../resources/job/client/Client"; | ||
import { Offer } from "../resources/offer/client/Client"; | ||
import { Proxy } from "../resources/proxy/client/Client"; | ||
|
||
export declare namespace Ats { | ||
interface Options { | ||
environment?: core.Supplier<environments.RevertEnvironment | string>; | ||
} | ||
|
||
interface RequestOptions { | ||
timeoutInSeconds?: number; | ||
maxRetries?: number; | ||
} | ||
} | ||
|
||
export class Ats { | ||
constructor(protected readonly _options: Ats.Options = {}) {} | ||
|
||
protected _candidate: Candidate | undefined; | ||
|
||
public get candidate(): Candidate { | ||
return (this._candidate ??= new Candidate(this._options)); | ||
} | ||
|
||
protected _department: Department | undefined; | ||
|
||
public get department(): Department { | ||
return (this._department ??= new Department(this._options)); | ||
} | ||
|
||
protected _job: Job | undefined; | ||
|
||
public get job(): Job { | ||
return (this._job ??= new Job(this._options)); | ||
} | ||
|
||
protected _offer: Offer | undefined; | ||
|
||
public get offer(): Offer { | ||
return (this._offer ??= new Offer(this._options)); | ||
} | ||
|
||
protected _proxy: Proxy | undefined; | ||
|
||
public get proxy(): Proxy { | ||
return (this._proxy ??= new Proxy(this._options)); | ||
} | ||
} |
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 @@ | ||
export {}; |
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,2 @@ | ||
export * from "./resources"; | ||
export * from "./client"; |
Oops, something went wrong.