@cavuno/board 1.36.0 → 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{board-B0Fc98yY.d.mts → board-D0guOBYy.d.mts} +1 -1
- package/dist/{board-Z6pLCWxK.d.ts → board-D_BRa2zC.d.ts} +1 -1
- package/dist/doctor.d.mts +59 -0
- package/dist/doctor.d.ts +59 -0
- package/dist/doctor.js +672 -0
- package/dist/doctor.mjs +641 -0
- package/dist/filters.d.mts +1 -1
- package/dist/filters.d.ts +1 -1
- package/dist/format.d.mts +26 -3
- package/dist/format.d.ts +26 -3
- package/dist/format.js +277 -0
- package/dist/format.mjs +277 -0
- package/dist/index.d.mts +21 -7
- package/dist/index.d.ts +21 -7
- package/dist/index.js +15 -1
- package/dist/index.mjs +15 -1
- package/dist/{jobs-5qXIfBcR.d.mts → jobs-CMCADU_-.d.mts} +146 -0
- package/dist/{jobs-5qXIfBcR.d.ts → jobs-CMCADU_-.d.ts} +146 -0
- package/dist/{salaries-CfJl9Hgx.d.mts → salaries-9U42CM5A.d.mts} +1 -1
- package/dist/{salaries-K06ScmSn.d.ts → salaries-C3w9kvPJ.d.ts} +1 -1
- package/dist/seo.d.mts +3 -3
- package/dist/seo.d.ts +3 -3
- package/dist/server.d.mts +3 -3
- package/dist/server.d.ts +3 -3
- package/dist/sitemap.d.mts +3 -3
- package/dist/sitemap.d.ts +3 -3
- package/package.json +12 -1
- package/skills/manifest.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { b as Schemas, R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, c as components, d as JobsListQuery, e as JobCardListEnvelope, f as JobsSearchBody, g as JobCardSearchEnvelope, h as JobsSimilarQuery, i as SearchEnvelope } from './jobs-
|
|
2
|
-
export { j as CustomFieldValue, C as CustomFieldValues, k as EducationRequirement, l as JobCatalogPagination, m as JobCompany, J as JobSort, O as OfficeLocation, n as OffsetPagination, P as PublicJob, a as PublicJobCard, o as RelatedSearch, p as RemotePermit, q as RemoteTimezone, r as StorefrontPagination } from './jobs-
|
|
3
|
-
export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-
|
|
4
|
-
import { b as CompaniesListQuery, c as CompanyListEnvelope, d as CompaniesSearchBody, e as CompanyJobsListQuery, f as CompanySimilarQuery, g as CompanyMarketsListQuery, h as SalaryDetailQuery, i as BlogPostsListQuery, j as BlogSimilarQuery, k as BlogSearchBody } from './salaries-
|
|
5
|
-
export { B as BlogAuthorEmbed, l as BlogTagEmbed, C as CompanyCategorySalary, m as CompanyMarket, n as CompanyMarketRef, a as CompanySalary, L as LocationSalaryDetail, o as LocationSkillsIndex, p as LocationTitlesIndex, q as PublicBlogAdjacentPosts, r as PublicBlogAuthor, s as PublicBlogPost, P as PublicBlogPostSummary, t as PublicBlogTag, u as PublicCompany, v as PublicCompanyDetail, w as SalaryCompany, x as SalaryLocation, y as SalarySkill, z as SalaryTitle, A as SkillLocationSalary, D as SkillLocationsIndex, S as SkillSalaryDetail, E as TitleLocationSalary, F as TitleLocationsIndex, T as TitleSalaryDetail } from './salaries-
|
|
1
|
+
import { b as Schemas, R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, c as components, d as JobsListQuery, e as JobCardListEnvelope, f as JobsSearchBody, g as JobCardSearchEnvelope, h as JobsSimilarQuery, i as SearchEnvelope } from './jobs-CMCADU_-.mjs';
|
|
2
|
+
export { j as CustomFieldValue, C as CustomFieldValues, k as EducationRequirement, l as JobCatalogPagination, m as JobCompany, J as JobSort, O as OfficeLocation, n as OffsetPagination, P as PublicJob, a as PublicJobCard, o as RelatedSearch, p as RemotePermit, q as RemoteTimezone, r as StorefrontPagination } from './jobs-CMCADU_-.mjs';
|
|
3
|
+
export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-D0guOBYy.mjs';
|
|
4
|
+
import { b as CompaniesListQuery, c as CompanyListEnvelope, d as CompaniesSearchBody, e as CompanyJobsListQuery, f as CompanySimilarQuery, g as CompanyMarketsListQuery, h as SalaryDetailQuery, i as BlogPostsListQuery, j as BlogSimilarQuery, k as BlogSearchBody } from './salaries-9U42CM5A.mjs';
|
|
5
|
+
export { B as BlogAuthorEmbed, l as BlogTagEmbed, C as CompanyCategorySalary, m as CompanyMarket, n as CompanyMarketRef, a as CompanySalary, L as LocationSalaryDetail, o as LocationSkillsIndex, p as LocationTitlesIndex, q as PublicBlogAdjacentPosts, r as PublicBlogAuthor, s as PublicBlogPost, P as PublicBlogPostSummary, t as PublicBlogTag, u as PublicCompany, v as PublicCompanyDetail, w as SalaryCompany, x as SalaryLocation, y as SalarySkill, z as SalaryTitle, A as SkillLocationSalary, D as SkillLocationsIndex, S as SkillSalaryDetail, E as TitleLocationSalary, F as TitleLocationsIndex, T as TitleSalaryDetail } from './salaries-9U42CM5A.mjs';
|
|
6
6
|
|
|
7
7
|
type Awaitable<T> = T | Promise<T>;
|
|
8
8
|
/**
|
|
@@ -204,7 +204,7 @@ declare function paginate<Q extends Record<string, unknown>, P extends PageShape
|
|
|
204
204
|
* constant because the package is platform-neutral and cannot read
|
|
205
205
|
* package.json at runtime.
|
|
206
206
|
*/
|
|
207
|
-
declare const SDK_VERSION = "1.
|
|
207
|
+
declare const SDK_VERSION = "1.37.0";
|
|
208
208
|
|
|
209
209
|
type SavedJob = Schemas['SavedJob'];
|
|
210
210
|
type SavedJobsListQuery = {
|
|
@@ -632,6 +632,13 @@ type TaxonomyGeo = Schemas['TaxonomyGeo'];
|
|
|
632
632
|
type TaxonomyResolution = Schemas['PublicTaxonomyResolution'];
|
|
633
633
|
type PublicTaxonomyTerm = Schemas['PublicTaxonomyTerm'];
|
|
634
634
|
type PublicPlace = Schemas['PublicPlace'];
|
|
635
|
+
/**
|
|
636
|
+
* One canonical remote-permit option (`worldwide`, a world region /
|
|
637
|
+
* continent / region / subregion, a `custom` bloc like EU, an ISO 3166-1
|
|
638
|
+
* `country`, or an ISO 3166-2 `subdivision`) — the `{type, value}` pairs
|
|
639
|
+
* the `remotePermits` and job-posting `remoteWorkingPermits` fields accept.
|
|
640
|
+
*/
|
|
641
|
+
type RemotePermitTaxonomyEntry = Schemas['RemotePermitTaxonomyEntry'];
|
|
635
642
|
type TaxonomyListQuery = {
|
|
636
643
|
q?: string;
|
|
637
644
|
cursor?: string;
|
|
@@ -2302,6 +2309,13 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2302
2309
|
geo: components["schemas"]["TaxonomyGeo"];
|
|
2303
2310
|
}>;
|
|
2304
2311
|
};
|
|
2312
|
+
remotePermits: {
|
|
2313
|
+
list(options?: FetchOptions): Promise<ListEnvelope<{
|
|
2314
|
+
type: string;
|
|
2315
|
+
value: string;
|
|
2316
|
+
label: string;
|
|
2317
|
+
}>>;
|
|
2318
|
+
};
|
|
2305
2319
|
suggestions: {
|
|
2306
2320
|
list(query?: SuggestionsListQuery, options?: FetchOptions): Promise<ListEnvelope<{
|
|
2307
2321
|
object: "taxonomy_term";
|
|
@@ -2965,4 +2979,4 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2965
2979
|
};
|
|
2966
2980
|
type BoardSdk = ReturnType<typeof createBoardClient>;
|
|
2967
2981
|
|
|
2968
|
-
export { ACCESS_TOKEN_KEY, type AccessCheckoutBody, type AccessCheckoutSession, type AccessCheckoutSessionState, type AccessGrant, type AccessPortalBody, type AccessPortalSession, type AddApplicantNoteBody, type Alert, type AlertBody, type Application, type ApplicationsListQuery, type ApplyAction, type ApplyBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, BOARD_API_ERROR_CODES, type Block, type BlockStatus, type BlockUserBody, type BlockedUser, BlogPostsListQuery, BlogSearchBody, BlogSimilarQuery, type BoardAccessGrant, BoardApiError, type BoardApiErrorCode, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type BulkMoveApplicantsBody, type BulkRejectApplicantsBody, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type ClaimableCompany, CompaniesListQuery, CompaniesSearchBody, CompanyJobsListQuery, CompanyListEnvelope, CompanyMarketsListQuery, type CompanyMembership, CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type Conversation, type ConversationArchive, type ConversationDetail, type ConversationRef, type ConversationsListQuery, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EditMessageBody, type EmbedJobsQuery, type EmployerApplicant, type EmployerBillingOption, type EmployerCheckout, type EmployerCheckoutBody, type EmployerCompany, type EmployerCompanySearchQuery, type EmployerJob, type EmployerJobSummary, type EmployerJobsListQuery, type EmployerPipeline, type EmployerPipelineQuery, type EmployerPipelineStage, EmploymentType, type FetchOptions, type FindExistingConversationQuery, type ForgotPasswordBody, type HandleAvailability, type JobAlertConfirmation, type JobAlertDeletePreferenceInput, type JobAlertFiltersInput, type JobAlertFrequency, type JobAlertManageQuery, type JobAlertManageResult, type JobAlertManageState, type JobAlertManageTokenInput, type JobAlertPreference, type JobAlertRemoteOption, type JobAlertResendResult, type JobAlertStoredFilters, type JobAlertSubscribeInput, type JobAlertSubscription, type JobAlertUpdatePreferenceInput, JobCardListEnvelope, JobCardSearchEnvelope, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, JobsListQuery, JobsSearchBody, JobsSimilarQuery, type LegalEntity, type LegalPageType, ListEnvelope, type Logger, type LoginBody, type LogoutBody, type Message, type ModerationReport, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type Paginator, type PaywallOffer, type PaywallOfferListEnvelope, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicLegalPage, type PublicPlace, type PublicTaxonomyTerm, REFRESH_TOKEN_KEY, type ReadReceipt, type RedirectResolution, type RefreshBody, type RegisterBody, RemoteOption, type ReorderPipelineStagesBody, type ReplyBody, type ReportBody, type RequestMagicLinkBody, type ResetPasswordBody, type Resume, type ResumeUploadOptions, SDK_VERSION, SalaryDetailQuery, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, SearchEnvelope, type SendWorkEmailBody, Seniority, type StartAboutApplicationBody, type StartConversationBody, type StorageMode, type SuggestionsListQuery, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyListQuery, type TaxonomyResolution, type ThreadMessagesQuery, type UnreadCount, type UnsubscribeBody, type UpdateApplicationFactsBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isColdRule, isConflict, isForbidden, isNotFound, isOwnMessage, isRateLimited, isSafeApplicationUrl, isUnauthorized, isValidationError, lastOwnMessageId, paginate, resolveApplyAction };
|
|
2982
|
+
export { ACCESS_TOKEN_KEY, type AccessCheckoutBody, type AccessCheckoutSession, type AccessCheckoutSessionState, type AccessGrant, type AccessPortalBody, type AccessPortalSession, type AddApplicantNoteBody, type Alert, type AlertBody, type Application, type ApplicationsListQuery, type ApplyAction, type ApplyBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, BOARD_API_ERROR_CODES, type Block, type BlockStatus, type BlockUserBody, type BlockedUser, BlogPostsListQuery, BlogSearchBody, BlogSimilarQuery, type BoardAccessGrant, BoardApiError, type BoardApiErrorCode, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type BulkMoveApplicantsBody, type BulkRejectApplicantsBody, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type ClaimableCompany, CompaniesListQuery, CompaniesSearchBody, CompanyJobsListQuery, CompanyListEnvelope, CompanyMarketsListQuery, type CompanyMembership, CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type Conversation, type ConversationArchive, type ConversationDetail, type ConversationRef, type ConversationsListQuery, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EditMessageBody, type EmbedJobsQuery, type EmployerApplicant, type EmployerBillingOption, type EmployerCheckout, type EmployerCheckoutBody, type EmployerCompany, type EmployerCompanySearchQuery, type EmployerJob, type EmployerJobSummary, type EmployerJobsListQuery, type EmployerPipeline, type EmployerPipelineQuery, type EmployerPipelineStage, EmploymentType, type FetchOptions, type FindExistingConversationQuery, type ForgotPasswordBody, type HandleAvailability, type JobAlertConfirmation, type JobAlertDeletePreferenceInput, type JobAlertFiltersInput, type JobAlertFrequency, type JobAlertManageQuery, type JobAlertManageResult, type JobAlertManageState, type JobAlertManageTokenInput, type JobAlertPreference, type JobAlertRemoteOption, type JobAlertResendResult, type JobAlertStoredFilters, type JobAlertSubscribeInput, type JobAlertSubscription, type JobAlertUpdatePreferenceInput, JobCardListEnvelope, JobCardSearchEnvelope, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, JobsListQuery, JobsSearchBody, JobsSimilarQuery, type LegalEntity, type LegalPageType, ListEnvelope, type Logger, type LoginBody, type LogoutBody, type Message, type ModerationReport, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type Paginator, type PaywallOffer, type PaywallOfferListEnvelope, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicLegalPage, type PublicPlace, type PublicTaxonomyTerm, REFRESH_TOKEN_KEY, type ReadReceipt, type RedirectResolution, type RefreshBody, type RegisterBody, RemoteOption, type RemotePermitTaxonomyEntry, type ReorderPipelineStagesBody, type ReplyBody, type ReportBody, type RequestMagicLinkBody, type ResetPasswordBody, type Resume, type ResumeUploadOptions, SDK_VERSION, SalaryDetailQuery, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, SearchEnvelope, type SendWorkEmailBody, Seniority, type StartAboutApplicationBody, type StartConversationBody, type StorageMode, type SuggestionsListQuery, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyListQuery, type TaxonomyResolution, type ThreadMessagesQuery, type UnreadCount, type UnsubscribeBody, type UpdateApplicationFactsBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isColdRule, isConflict, isForbidden, isNotFound, isOwnMessage, isRateLimited, isSafeApplicationUrl, isUnauthorized, isValidationError, lastOwnMessageId, paginate, resolveApplyAction };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { b as Schemas, R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, c as components, d as JobsListQuery, e as JobCardListEnvelope, f as JobsSearchBody, g as JobCardSearchEnvelope, h as JobsSimilarQuery, i as SearchEnvelope } from './jobs-
|
|
2
|
-
export { j as CustomFieldValue, C as CustomFieldValues, k as EducationRequirement, l as JobCatalogPagination, m as JobCompany, J as JobSort, O as OfficeLocation, n as OffsetPagination, P as PublicJob, a as PublicJobCard, o as RelatedSearch, p as RemotePermit, q as RemoteTimezone, r as StorefrontPagination } from './jobs-
|
|
3
|
-
export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-
|
|
4
|
-
import { b as CompaniesListQuery, c as CompanyListEnvelope, d as CompaniesSearchBody, e as CompanyJobsListQuery, f as CompanySimilarQuery, g as CompanyMarketsListQuery, h as SalaryDetailQuery, i as BlogPostsListQuery, j as BlogSimilarQuery, k as BlogSearchBody } from './salaries-
|
|
5
|
-
export { B as BlogAuthorEmbed, l as BlogTagEmbed, C as CompanyCategorySalary, m as CompanyMarket, n as CompanyMarketRef, a as CompanySalary, L as LocationSalaryDetail, o as LocationSkillsIndex, p as LocationTitlesIndex, q as PublicBlogAdjacentPosts, r as PublicBlogAuthor, s as PublicBlogPost, P as PublicBlogPostSummary, t as PublicBlogTag, u as PublicCompany, v as PublicCompanyDetail, w as SalaryCompany, x as SalaryLocation, y as SalarySkill, z as SalaryTitle, A as SkillLocationSalary, D as SkillLocationsIndex, S as SkillSalaryDetail, E as TitleLocationSalary, F as TitleLocationsIndex, T as TitleSalaryDetail } from './salaries-
|
|
1
|
+
import { b as Schemas, R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, c as components, d as JobsListQuery, e as JobCardListEnvelope, f as JobsSearchBody, g as JobCardSearchEnvelope, h as JobsSimilarQuery, i as SearchEnvelope } from './jobs-CMCADU_-.js';
|
|
2
|
+
export { j as CustomFieldValue, C as CustomFieldValues, k as EducationRequirement, l as JobCatalogPagination, m as JobCompany, J as JobSort, O as OfficeLocation, n as OffsetPagination, P as PublicJob, a as PublicJobCard, o as RelatedSearch, p as RemotePermit, q as RemoteTimezone, r as StorefrontPagination } from './jobs-CMCADU_-.js';
|
|
3
|
+
export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-D_BRa2zC.js';
|
|
4
|
+
import { b as CompaniesListQuery, c as CompanyListEnvelope, d as CompaniesSearchBody, e as CompanyJobsListQuery, f as CompanySimilarQuery, g as CompanyMarketsListQuery, h as SalaryDetailQuery, i as BlogPostsListQuery, j as BlogSimilarQuery, k as BlogSearchBody } from './salaries-C3w9kvPJ.js';
|
|
5
|
+
export { B as BlogAuthorEmbed, l as BlogTagEmbed, C as CompanyCategorySalary, m as CompanyMarket, n as CompanyMarketRef, a as CompanySalary, L as LocationSalaryDetail, o as LocationSkillsIndex, p as LocationTitlesIndex, q as PublicBlogAdjacentPosts, r as PublicBlogAuthor, s as PublicBlogPost, P as PublicBlogPostSummary, t as PublicBlogTag, u as PublicCompany, v as PublicCompanyDetail, w as SalaryCompany, x as SalaryLocation, y as SalarySkill, z as SalaryTitle, A as SkillLocationSalary, D as SkillLocationsIndex, S as SkillSalaryDetail, E as TitleLocationSalary, F as TitleLocationsIndex, T as TitleSalaryDetail } from './salaries-C3w9kvPJ.js';
|
|
6
6
|
|
|
7
7
|
type Awaitable<T> = T | Promise<T>;
|
|
8
8
|
/**
|
|
@@ -204,7 +204,7 @@ declare function paginate<Q extends Record<string, unknown>, P extends PageShape
|
|
|
204
204
|
* constant because the package is platform-neutral and cannot read
|
|
205
205
|
* package.json at runtime.
|
|
206
206
|
*/
|
|
207
|
-
declare const SDK_VERSION = "1.
|
|
207
|
+
declare const SDK_VERSION = "1.37.0";
|
|
208
208
|
|
|
209
209
|
type SavedJob = Schemas['SavedJob'];
|
|
210
210
|
type SavedJobsListQuery = {
|
|
@@ -632,6 +632,13 @@ type TaxonomyGeo = Schemas['TaxonomyGeo'];
|
|
|
632
632
|
type TaxonomyResolution = Schemas['PublicTaxonomyResolution'];
|
|
633
633
|
type PublicTaxonomyTerm = Schemas['PublicTaxonomyTerm'];
|
|
634
634
|
type PublicPlace = Schemas['PublicPlace'];
|
|
635
|
+
/**
|
|
636
|
+
* One canonical remote-permit option (`worldwide`, a world region /
|
|
637
|
+
* continent / region / subregion, a `custom` bloc like EU, an ISO 3166-1
|
|
638
|
+
* `country`, or an ISO 3166-2 `subdivision`) — the `{type, value}` pairs
|
|
639
|
+
* the `remotePermits` and job-posting `remoteWorkingPermits` fields accept.
|
|
640
|
+
*/
|
|
641
|
+
type RemotePermitTaxonomyEntry = Schemas['RemotePermitTaxonomyEntry'];
|
|
635
642
|
type TaxonomyListQuery = {
|
|
636
643
|
q?: string;
|
|
637
644
|
cursor?: string;
|
|
@@ -2302,6 +2309,13 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2302
2309
|
geo: components["schemas"]["TaxonomyGeo"];
|
|
2303
2310
|
}>;
|
|
2304
2311
|
};
|
|
2312
|
+
remotePermits: {
|
|
2313
|
+
list(options?: FetchOptions): Promise<ListEnvelope<{
|
|
2314
|
+
type: string;
|
|
2315
|
+
value: string;
|
|
2316
|
+
label: string;
|
|
2317
|
+
}>>;
|
|
2318
|
+
};
|
|
2305
2319
|
suggestions: {
|
|
2306
2320
|
list(query?: SuggestionsListQuery, options?: FetchOptions): Promise<ListEnvelope<{
|
|
2307
2321
|
object: "taxonomy_term";
|
|
@@ -2965,4 +2979,4 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2965
2979
|
};
|
|
2966
2980
|
type BoardSdk = ReturnType<typeof createBoardClient>;
|
|
2967
2981
|
|
|
2968
|
-
export { ACCESS_TOKEN_KEY, type AccessCheckoutBody, type AccessCheckoutSession, type AccessCheckoutSessionState, type AccessGrant, type AccessPortalBody, type AccessPortalSession, type AddApplicantNoteBody, type Alert, type AlertBody, type Application, type ApplicationsListQuery, type ApplyAction, type ApplyBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, BOARD_API_ERROR_CODES, type Block, type BlockStatus, type BlockUserBody, type BlockedUser, BlogPostsListQuery, BlogSearchBody, BlogSimilarQuery, type BoardAccessGrant, BoardApiError, type BoardApiErrorCode, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type BulkMoveApplicantsBody, type BulkRejectApplicantsBody, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type ClaimableCompany, CompaniesListQuery, CompaniesSearchBody, CompanyJobsListQuery, CompanyListEnvelope, CompanyMarketsListQuery, type CompanyMembership, CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type Conversation, type ConversationArchive, type ConversationDetail, type ConversationRef, type ConversationsListQuery, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EditMessageBody, type EmbedJobsQuery, type EmployerApplicant, type EmployerBillingOption, type EmployerCheckout, type EmployerCheckoutBody, type EmployerCompany, type EmployerCompanySearchQuery, type EmployerJob, type EmployerJobSummary, type EmployerJobsListQuery, type EmployerPipeline, type EmployerPipelineQuery, type EmployerPipelineStage, EmploymentType, type FetchOptions, type FindExistingConversationQuery, type ForgotPasswordBody, type HandleAvailability, type JobAlertConfirmation, type JobAlertDeletePreferenceInput, type JobAlertFiltersInput, type JobAlertFrequency, type JobAlertManageQuery, type JobAlertManageResult, type JobAlertManageState, type JobAlertManageTokenInput, type JobAlertPreference, type JobAlertRemoteOption, type JobAlertResendResult, type JobAlertStoredFilters, type JobAlertSubscribeInput, type JobAlertSubscription, type JobAlertUpdatePreferenceInput, JobCardListEnvelope, JobCardSearchEnvelope, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, JobsListQuery, JobsSearchBody, JobsSimilarQuery, type LegalEntity, type LegalPageType, ListEnvelope, type Logger, type LoginBody, type LogoutBody, type Message, type ModerationReport, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type Paginator, type PaywallOffer, type PaywallOfferListEnvelope, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicLegalPage, type PublicPlace, type PublicTaxonomyTerm, REFRESH_TOKEN_KEY, type ReadReceipt, type RedirectResolution, type RefreshBody, type RegisterBody, RemoteOption, type ReorderPipelineStagesBody, type ReplyBody, type ReportBody, type RequestMagicLinkBody, type ResetPasswordBody, type Resume, type ResumeUploadOptions, SDK_VERSION, SalaryDetailQuery, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, SearchEnvelope, type SendWorkEmailBody, Seniority, type StartAboutApplicationBody, type StartConversationBody, type StorageMode, type SuggestionsListQuery, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyListQuery, type TaxonomyResolution, type ThreadMessagesQuery, type UnreadCount, type UnsubscribeBody, type UpdateApplicationFactsBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isColdRule, isConflict, isForbidden, isNotFound, isOwnMessage, isRateLimited, isSafeApplicationUrl, isUnauthorized, isValidationError, lastOwnMessageId, paginate, resolveApplyAction };
|
|
2982
|
+
export { ACCESS_TOKEN_KEY, type AccessCheckoutBody, type AccessCheckoutSession, type AccessCheckoutSessionState, type AccessGrant, type AccessPortalBody, type AccessPortalSession, type AddApplicantNoteBody, type Alert, type AlertBody, type Application, type ApplicationsListQuery, type ApplyAction, type ApplyBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, BOARD_API_ERROR_CODES, type Block, type BlockStatus, type BlockUserBody, type BlockedUser, BlogPostsListQuery, BlogSearchBody, BlogSimilarQuery, type BoardAccessGrant, BoardApiError, type BoardApiErrorCode, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type BulkMoveApplicantsBody, type BulkRejectApplicantsBody, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type ClaimableCompany, CompaniesListQuery, CompaniesSearchBody, CompanyJobsListQuery, CompanyListEnvelope, CompanyMarketsListQuery, type CompanyMembership, CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type Conversation, type ConversationArchive, type ConversationDetail, type ConversationRef, type ConversationsListQuery, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EditMessageBody, type EmbedJobsQuery, type EmployerApplicant, type EmployerBillingOption, type EmployerCheckout, type EmployerCheckoutBody, type EmployerCompany, type EmployerCompanySearchQuery, type EmployerJob, type EmployerJobSummary, type EmployerJobsListQuery, type EmployerPipeline, type EmployerPipelineQuery, type EmployerPipelineStage, EmploymentType, type FetchOptions, type FindExistingConversationQuery, type ForgotPasswordBody, type HandleAvailability, type JobAlertConfirmation, type JobAlertDeletePreferenceInput, type JobAlertFiltersInput, type JobAlertFrequency, type JobAlertManageQuery, type JobAlertManageResult, type JobAlertManageState, type JobAlertManageTokenInput, type JobAlertPreference, type JobAlertRemoteOption, type JobAlertResendResult, type JobAlertStoredFilters, type JobAlertSubscribeInput, type JobAlertSubscription, type JobAlertUpdatePreferenceInput, JobCardListEnvelope, JobCardSearchEnvelope, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, JobsListQuery, JobsSearchBody, JobsSimilarQuery, type LegalEntity, type LegalPageType, ListEnvelope, type Logger, type LoginBody, type LogoutBody, type Message, type ModerationReport, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type Paginator, type PaywallOffer, type PaywallOfferListEnvelope, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicLegalPage, type PublicPlace, type PublicTaxonomyTerm, REFRESH_TOKEN_KEY, type ReadReceipt, type RedirectResolution, type RefreshBody, type RegisterBody, RemoteOption, type RemotePermitTaxonomyEntry, type ReorderPipelineStagesBody, type ReplyBody, type ReportBody, type RequestMagicLinkBody, type ResetPasswordBody, type Resume, type ResumeUploadOptions, SDK_VERSION, SalaryDetailQuery, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, SearchEnvelope, type SendWorkEmailBody, Seniority, type StartAboutApplicationBody, type StartConversationBody, type StorageMode, type SuggestionsListQuery, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyListQuery, type TaxonomyResolution, type ThreadMessagesQuery, type UnreadCount, type UnsubscribeBody, type UpdateApplicationFactsBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isColdRule, isConflict, isForbidden, isNotFound, isOwnMessage, isRateLimited, isSafeApplicationUrl, isUnauthorized, isValidationError, lastOwnMessageId, paginate, resolveApplyAction };
|
package/dist/index.js
CHANGED
|
@@ -312,7 +312,7 @@ async function clearSession(storage) {
|
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
// src/version.ts
|
|
315
|
-
var SDK_VERSION = "1.
|
|
315
|
+
var SDK_VERSION = "1.37.0";
|
|
316
316
|
|
|
317
317
|
// src/client.ts
|
|
318
318
|
function isRawBody(body) {
|
|
@@ -2546,6 +2546,20 @@ function taxonomyNamespace(client) {
|
|
|
2546
2546
|
return {
|
|
2547
2547
|
categories: taxonomyCollection(client, "categories"),
|
|
2548
2548
|
skills: taxonomyCollection(client, "skills"),
|
|
2549
|
+
remotePermits: {
|
|
2550
|
+
/**
|
|
2551
|
+
* The canonical remote-permit option set (worldwide / regions / blocs
|
|
2552
|
+
* like EU / countries / subdivisions) — exactly what the API accepts
|
|
2553
|
+
* in `remotePermits` and job-posting `remoteWorkingPermits`. Platform
|
|
2554
|
+
* reference data served board-scoped; cacheable (6h on public boards).
|
|
2555
|
+
*/
|
|
2556
|
+
list(options) {
|
|
2557
|
+
return client.fetch(
|
|
2558
|
+
"/remote-permits",
|
|
2559
|
+
options
|
|
2560
|
+
);
|
|
2561
|
+
}
|
|
2562
|
+
},
|
|
2549
2563
|
suggestions: {
|
|
2550
2564
|
list(query, options) {
|
|
2551
2565
|
return client.fetch("/suggestions", {
|
package/dist/index.mjs
CHANGED
|
@@ -265,7 +265,7 @@ async function clearSession(storage) {
|
|
|
265
265
|
}
|
|
266
266
|
|
|
267
267
|
// src/version.ts
|
|
268
|
-
var SDK_VERSION = "1.
|
|
268
|
+
var SDK_VERSION = "1.37.0";
|
|
269
269
|
|
|
270
270
|
// src/client.ts
|
|
271
271
|
function isRawBody(body) {
|
|
@@ -2499,6 +2499,20 @@ function taxonomyNamespace(client) {
|
|
|
2499
2499
|
return {
|
|
2500
2500
|
categories: taxonomyCollection(client, "categories"),
|
|
2501
2501
|
skills: taxonomyCollection(client, "skills"),
|
|
2502
|
+
remotePermits: {
|
|
2503
|
+
/**
|
|
2504
|
+
* The canonical remote-permit option set (worldwide / regions / blocs
|
|
2505
|
+
* like EU / countries / subdivisions) — exactly what the API accepts
|
|
2506
|
+
* in `remotePermits` and job-posting `remoteWorkingPermits`. Platform
|
|
2507
|
+
* reference data served board-scoped; cacheable (6h on public boards).
|
|
2508
|
+
*/
|
|
2509
|
+
list(options) {
|
|
2510
|
+
return client.fetch(
|
|
2511
|
+
"/remote-permits",
|
|
2512
|
+
options
|
|
2513
|
+
);
|
|
2514
|
+
}
|
|
2515
|
+
},
|
|
2502
2516
|
suggestions: {
|
|
2503
2517
|
list(query, options) {
|
|
2504
2518
|
return client.fetch("/suggestions", {
|
|
@@ -63,6 +63,11 @@ interface components {
|
|
|
63
63
|
AddCategoryAliasesBody: {
|
|
64
64
|
aliases: string[];
|
|
65
65
|
};
|
|
66
|
+
AddForagerCompanyBody: {
|
|
67
|
+
companyUrl: string;
|
|
68
|
+
companyName: string;
|
|
69
|
+
description?: string | null;
|
|
70
|
+
};
|
|
66
71
|
AddForagerExclusionBody: {
|
|
67
72
|
pattern: string;
|
|
68
73
|
type: string;
|
|
@@ -236,6 +241,19 @@ interface components {
|
|
|
236
241
|
/** @description Time at which the audit entry was written. Unix epoch in milliseconds. */
|
|
237
242
|
timestamp: number;
|
|
238
243
|
};
|
|
244
|
+
BatchForagerCompaniesBody: {
|
|
245
|
+
/** @enum {string} */
|
|
246
|
+
mode: "add";
|
|
247
|
+
companies: {
|
|
248
|
+
url: string;
|
|
249
|
+
name: string;
|
|
250
|
+
}[];
|
|
251
|
+
description?: string | null;
|
|
252
|
+
} | {
|
|
253
|
+
/** @enum {string} */
|
|
254
|
+
mode: "remove";
|
|
255
|
+
companyUrls: string[];
|
|
256
|
+
};
|
|
239
257
|
BatchRequestBody: {
|
|
240
258
|
/** @description Array of sub-operations to execute. Each entry runs independently and reports its result on the corresponding entry of the response `data` array. Sub-operation `id` values must be unique within the batch. Up to 100 entries. */
|
|
241
259
|
operations: ({
|
|
@@ -258,6 +276,61 @@ interface components {
|
|
|
258
276
|
resourceId: string;
|
|
259
277
|
})[];
|
|
260
278
|
};
|
|
279
|
+
BillingConnect: {
|
|
280
|
+
/** @enum {string} */
|
|
281
|
+
object: "billing_connect";
|
|
282
|
+
connected: boolean;
|
|
283
|
+
stripeConnectAccountId: string | null;
|
|
284
|
+
chargesEnabled: boolean;
|
|
285
|
+
payoutsEnabled: boolean;
|
|
286
|
+
detailsSubmitted: boolean;
|
|
287
|
+
requirements: components["schemas"]["BillingConnectRequirements"];
|
|
288
|
+
};
|
|
289
|
+
BillingConnectRequirements: {
|
|
290
|
+
currentlyDue: string[];
|
|
291
|
+
eventuallyDue: string[];
|
|
292
|
+
pastDue: string[];
|
|
293
|
+
disabledReason: string | null;
|
|
294
|
+
/** @description Unix timestamp (seconds) from Stripe, or null. */
|
|
295
|
+
currentDeadline: number | null;
|
|
296
|
+
} | null;
|
|
297
|
+
BillingEntitlements: {
|
|
298
|
+
/** @enum {string} */
|
|
299
|
+
object: "billing_entitlements";
|
|
300
|
+
/** @description Platform plan slug, or 'unknown' when absent. */
|
|
301
|
+
planKey: string;
|
|
302
|
+
limits: components["schemas"]["BillingEntitlementsLimits"];
|
|
303
|
+
/**
|
|
304
|
+
* @description Whether the stored flat limits came from the plan defaults or a staff override.
|
|
305
|
+
* @enum {string|null}
|
|
306
|
+
*/
|
|
307
|
+
limitsSource: "plan" | "override" | null;
|
|
308
|
+
};
|
|
309
|
+
BillingEntitlementsLimits: {
|
|
310
|
+
activeJobs: number | null;
|
|
311
|
+
subscribers: number | null;
|
|
312
|
+
teamSeats: number | null;
|
|
313
|
+
canBePublic: boolean;
|
|
314
|
+
canRemoveBranding: boolean;
|
|
315
|
+
apiAccess: boolean;
|
|
316
|
+
};
|
|
317
|
+
BillingSubscription: {
|
|
318
|
+
/** @enum {string} */
|
|
319
|
+
object: "billing_subscription";
|
|
320
|
+
active: boolean;
|
|
321
|
+
status: string | null;
|
|
322
|
+
planSlug: string | null;
|
|
323
|
+
stripeSubscriptionId: string | null;
|
|
324
|
+
stripeCustomerId: string | null;
|
|
325
|
+
/** @description Subscription period end as a millisecond epoch. */
|
|
326
|
+
currentPeriodEnd: number | null;
|
|
327
|
+
cancelAtPeriodEnd: boolean;
|
|
328
|
+
items: components["schemas"]["BillingSubscriptionItem"][];
|
|
329
|
+
};
|
|
330
|
+
BillingSubscriptionItem: {
|
|
331
|
+
stripePriceId: string;
|
|
332
|
+
quantity: number;
|
|
333
|
+
};
|
|
261
334
|
Block: {
|
|
262
335
|
/** @enum {string} */
|
|
263
336
|
object: "block";
|
|
@@ -1110,6 +1183,12 @@ interface components {
|
|
|
1110
1183
|
description?: string;
|
|
1111
1184
|
sortOrder?: number;
|
|
1112
1185
|
};
|
|
1186
|
+
CreateForagerSubscriptionBody: {
|
|
1187
|
+
name: string;
|
|
1188
|
+
rules: components["schemas"]["ForagerRule"][];
|
|
1189
|
+
filters?: components["schemas"]["ForagerFilters"];
|
|
1190
|
+
description?: string | null;
|
|
1191
|
+
};
|
|
1113
1192
|
CreateInvitationBody: {
|
|
1114
1193
|
/**
|
|
1115
1194
|
* Format: email
|
|
@@ -1921,6 +2000,24 @@ interface components {
|
|
|
1921
2000
|
errorMessage: string | null;
|
|
1922
2001
|
createdAt: string;
|
|
1923
2002
|
};
|
|
2003
|
+
ForagerBatchResult: {
|
|
2004
|
+
/** @enum {string} */
|
|
2005
|
+
object: "forager_batch_result";
|
|
2006
|
+
successCount: number;
|
|
2007
|
+
failureCount: number;
|
|
2008
|
+
};
|
|
2009
|
+
ForagerCompany: {
|
|
2010
|
+
/** @enum {string} */
|
|
2011
|
+
object: "forager_company";
|
|
2012
|
+
companyId: string;
|
|
2013
|
+
companyUrl: string;
|
|
2014
|
+
companyName: string;
|
|
2015
|
+
slug: string;
|
|
2016
|
+
about: string | null;
|
|
2017
|
+
atsType: string | null;
|
|
2018
|
+
atsIdentifier: string | null;
|
|
2019
|
+
addedAt: string;
|
|
2020
|
+
};
|
|
1924
2021
|
ForagerConfig: {
|
|
1925
2022
|
/** @enum {string} */
|
|
1926
2023
|
object: "forager_config";
|
|
@@ -1934,6 +2031,11 @@ interface components {
|
|
|
1934
2031
|
hasApiKey?: boolean;
|
|
1935
2032
|
hasWebhookSecret?: boolean;
|
|
1936
2033
|
};
|
|
2034
|
+
ForagerDescription: {
|
|
2035
|
+
/** @enum {string} */
|
|
2036
|
+
object: "forager_description";
|
|
2037
|
+
description: string | null;
|
|
2038
|
+
};
|
|
1937
2039
|
ForagerExclusion: {
|
|
1938
2040
|
id: string;
|
|
1939
2041
|
/** @enum {string} */
|
|
@@ -1942,6 +2044,37 @@ interface components {
|
|
|
1942
2044
|
type: string;
|
|
1943
2045
|
createdAt: string;
|
|
1944
2046
|
};
|
|
2047
|
+
ForagerFilters: {
|
|
2048
|
+
countries?: string[];
|
|
2049
|
+
subdivisions?: string[];
|
|
2050
|
+
seniorities?: string[];
|
|
2051
|
+
employment_types?: string[];
|
|
2052
|
+
workplace_types?: string[];
|
|
2053
|
+
};
|
|
2054
|
+
ForagerRule: {
|
|
2055
|
+
/** @enum {string} */
|
|
2056
|
+
field: "title" | "description" | "category_list";
|
|
2057
|
+
query: {
|
|
2058
|
+
[key: string]: unknown;
|
|
2059
|
+
};
|
|
2060
|
+
active?: boolean;
|
|
2061
|
+
};
|
|
2062
|
+
ForagerSubscription: {
|
|
2063
|
+
/** @enum {string} */
|
|
2064
|
+
object: "forager_subscription";
|
|
2065
|
+
verticalKey: string;
|
|
2066
|
+
verticalId: string;
|
|
2067
|
+
/** @enum {string} */
|
|
2068
|
+
kind: "role" | "company";
|
|
2069
|
+
name: string;
|
|
2070
|
+
active: boolean;
|
|
2071
|
+
description: string | null;
|
|
2072
|
+
filters?: unknown;
|
|
2073
|
+
rules?: unknown;
|
|
2074
|
+
backfillId?: string;
|
|
2075
|
+
createdAt: string;
|
|
2076
|
+
updatedAt: string;
|
|
2077
|
+
};
|
|
1945
2078
|
ForagerSyncRun: {
|
|
1946
2079
|
id: string;
|
|
1947
2080
|
/** @enum {string} */
|
|
@@ -3465,6 +3598,9 @@ interface components {
|
|
|
3465
3598
|
/** @description Human-readable display label. */
|
|
3466
3599
|
label: string;
|
|
3467
3600
|
};
|
|
3601
|
+
RemoveForagerCompanyBody: {
|
|
3602
|
+
companyUrl: string;
|
|
3603
|
+
};
|
|
3468
3604
|
ReorderPipelineStagesBody: {
|
|
3469
3605
|
/** @description The job whose stages are reordered. */
|
|
3470
3606
|
jobId: string;
|
|
@@ -4454,6 +4590,16 @@ interface components {
|
|
|
4454
4590
|
description?: string;
|
|
4455
4591
|
sortOrder?: number;
|
|
4456
4592
|
};
|
|
4593
|
+
UpdateForagerDescriptionBody: {
|
|
4594
|
+
description: string | null;
|
|
4595
|
+
};
|
|
4596
|
+
UpdateForagerSubscriptionBody: {
|
|
4597
|
+
name?: string;
|
|
4598
|
+
rules?: components["schemas"]["ForagerRule"][];
|
|
4599
|
+
filters?: components["schemas"]["ForagerFilters"];
|
|
4600
|
+
active?: boolean;
|
|
4601
|
+
description?: string | null;
|
|
4602
|
+
};
|
|
4457
4603
|
UpdateInvitationBody: {
|
|
4458
4604
|
/**
|
|
4459
4605
|
* @description The new role for the pending invitation.
|
|
@@ -63,6 +63,11 @@ interface components {
|
|
|
63
63
|
AddCategoryAliasesBody: {
|
|
64
64
|
aliases: string[];
|
|
65
65
|
};
|
|
66
|
+
AddForagerCompanyBody: {
|
|
67
|
+
companyUrl: string;
|
|
68
|
+
companyName: string;
|
|
69
|
+
description?: string | null;
|
|
70
|
+
};
|
|
66
71
|
AddForagerExclusionBody: {
|
|
67
72
|
pattern: string;
|
|
68
73
|
type: string;
|
|
@@ -236,6 +241,19 @@ interface components {
|
|
|
236
241
|
/** @description Time at which the audit entry was written. Unix epoch in milliseconds. */
|
|
237
242
|
timestamp: number;
|
|
238
243
|
};
|
|
244
|
+
BatchForagerCompaniesBody: {
|
|
245
|
+
/** @enum {string} */
|
|
246
|
+
mode: "add";
|
|
247
|
+
companies: {
|
|
248
|
+
url: string;
|
|
249
|
+
name: string;
|
|
250
|
+
}[];
|
|
251
|
+
description?: string | null;
|
|
252
|
+
} | {
|
|
253
|
+
/** @enum {string} */
|
|
254
|
+
mode: "remove";
|
|
255
|
+
companyUrls: string[];
|
|
256
|
+
};
|
|
239
257
|
BatchRequestBody: {
|
|
240
258
|
/** @description Array of sub-operations to execute. Each entry runs independently and reports its result on the corresponding entry of the response `data` array. Sub-operation `id` values must be unique within the batch. Up to 100 entries. */
|
|
241
259
|
operations: ({
|
|
@@ -258,6 +276,61 @@ interface components {
|
|
|
258
276
|
resourceId: string;
|
|
259
277
|
})[];
|
|
260
278
|
};
|
|
279
|
+
BillingConnect: {
|
|
280
|
+
/** @enum {string} */
|
|
281
|
+
object: "billing_connect";
|
|
282
|
+
connected: boolean;
|
|
283
|
+
stripeConnectAccountId: string | null;
|
|
284
|
+
chargesEnabled: boolean;
|
|
285
|
+
payoutsEnabled: boolean;
|
|
286
|
+
detailsSubmitted: boolean;
|
|
287
|
+
requirements: components["schemas"]["BillingConnectRequirements"];
|
|
288
|
+
};
|
|
289
|
+
BillingConnectRequirements: {
|
|
290
|
+
currentlyDue: string[];
|
|
291
|
+
eventuallyDue: string[];
|
|
292
|
+
pastDue: string[];
|
|
293
|
+
disabledReason: string | null;
|
|
294
|
+
/** @description Unix timestamp (seconds) from Stripe, or null. */
|
|
295
|
+
currentDeadline: number | null;
|
|
296
|
+
} | null;
|
|
297
|
+
BillingEntitlements: {
|
|
298
|
+
/** @enum {string} */
|
|
299
|
+
object: "billing_entitlements";
|
|
300
|
+
/** @description Platform plan slug, or 'unknown' when absent. */
|
|
301
|
+
planKey: string;
|
|
302
|
+
limits: components["schemas"]["BillingEntitlementsLimits"];
|
|
303
|
+
/**
|
|
304
|
+
* @description Whether the stored flat limits came from the plan defaults or a staff override.
|
|
305
|
+
* @enum {string|null}
|
|
306
|
+
*/
|
|
307
|
+
limitsSource: "plan" | "override" | null;
|
|
308
|
+
};
|
|
309
|
+
BillingEntitlementsLimits: {
|
|
310
|
+
activeJobs: number | null;
|
|
311
|
+
subscribers: number | null;
|
|
312
|
+
teamSeats: number | null;
|
|
313
|
+
canBePublic: boolean;
|
|
314
|
+
canRemoveBranding: boolean;
|
|
315
|
+
apiAccess: boolean;
|
|
316
|
+
};
|
|
317
|
+
BillingSubscription: {
|
|
318
|
+
/** @enum {string} */
|
|
319
|
+
object: "billing_subscription";
|
|
320
|
+
active: boolean;
|
|
321
|
+
status: string | null;
|
|
322
|
+
planSlug: string | null;
|
|
323
|
+
stripeSubscriptionId: string | null;
|
|
324
|
+
stripeCustomerId: string | null;
|
|
325
|
+
/** @description Subscription period end as a millisecond epoch. */
|
|
326
|
+
currentPeriodEnd: number | null;
|
|
327
|
+
cancelAtPeriodEnd: boolean;
|
|
328
|
+
items: components["schemas"]["BillingSubscriptionItem"][];
|
|
329
|
+
};
|
|
330
|
+
BillingSubscriptionItem: {
|
|
331
|
+
stripePriceId: string;
|
|
332
|
+
quantity: number;
|
|
333
|
+
};
|
|
261
334
|
Block: {
|
|
262
335
|
/** @enum {string} */
|
|
263
336
|
object: "block";
|
|
@@ -1110,6 +1183,12 @@ interface components {
|
|
|
1110
1183
|
description?: string;
|
|
1111
1184
|
sortOrder?: number;
|
|
1112
1185
|
};
|
|
1186
|
+
CreateForagerSubscriptionBody: {
|
|
1187
|
+
name: string;
|
|
1188
|
+
rules: components["schemas"]["ForagerRule"][];
|
|
1189
|
+
filters?: components["schemas"]["ForagerFilters"];
|
|
1190
|
+
description?: string | null;
|
|
1191
|
+
};
|
|
1113
1192
|
CreateInvitationBody: {
|
|
1114
1193
|
/**
|
|
1115
1194
|
* Format: email
|
|
@@ -1921,6 +2000,24 @@ interface components {
|
|
|
1921
2000
|
errorMessage: string | null;
|
|
1922
2001
|
createdAt: string;
|
|
1923
2002
|
};
|
|
2003
|
+
ForagerBatchResult: {
|
|
2004
|
+
/** @enum {string} */
|
|
2005
|
+
object: "forager_batch_result";
|
|
2006
|
+
successCount: number;
|
|
2007
|
+
failureCount: number;
|
|
2008
|
+
};
|
|
2009
|
+
ForagerCompany: {
|
|
2010
|
+
/** @enum {string} */
|
|
2011
|
+
object: "forager_company";
|
|
2012
|
+
companyId: string;
|
|
2013
|
+
companyUrl: string;
|
|
2014
|
+
companyName: string;
|
|
2015
|
+
slug: string;
|
|
2016
|
+
about: string | null;
|
|
2017
|
+
atsType: string | null;
|
|
2018
|
+
atsIdentifier: string | null;
|
|
2019
|
+
addedAt: string;
|
|
2020
|
+
};
|
|
1924
2021
|
ForagerConfig: {
|
|
1925
2022
|
/** @enum {string} */
|
|
1926
2023
|
object: "forager_config";
|
|
@@ -1934,6 +2031,11 @@ interface components {
|
|
|
1934
2031
|
hasApiKey?: boolean;
|
|
1935
2032
|
hasWebhookSecret?: boolean;
|
|
1936
2033
|
};
|
|
2034
|
+
ForagerDescription: {
|
|
2035
|
+
/** @enum {string} */
|
|
2036
|
+
object: "forager_description";
|
|
2037
|
+
description: string | null;
|
|
2038
|
+
};
|
|
1937
2039
|
ForagerExclusion: {
|
|
1938
2040
|
id: string;
|
|
1939
2041
|
/** @enum {string} */
|
|
@@ -1942,6 +2044,37 @@ interface components {
|
|
|
1942
2044
|
type: string;
|
|
1943
2045
|
createdAt: string;
|
|
1944
2046
|
};
|
|
2047
|
+
ForagerFilters: {
|
|
2048
|
+
countries?: string[];
|
|
2049
|
+
subdivisions?: string[];
|
|
2050
|
+
seniorities?: string[];
|
|
2051
|
+
employment_types?: string[];
|
|
2052
|
+
workplace_types?: string[];
|
|
2053
|
+
};
|
|
2054
|
+
ForagerRule: {
|
|
2055
|
+
/** @enum {string} */
|
|
2056
|
+
field: "title" | "description" | "category_list";
|
|
2057
|
+
query: {
|
|
2058
|
+
[key: string]: unknown;
|
|
2059
|
+
};
|
|
2060
|
+
active?: boolean;
|
|
2061
|
+
};
|
|
2062
|
+
ForagerSubscription: {
|
|
2063
|
+
/** @enum {string} */
|
|
2064
|
+
object: "forager_subscription";
|
|
2065
|
+
verticalKey: string;
|
|
2066
|
+
verticalId: string;
|
|
2067
|
+
/** @enum {string} */
|
|
2068
|
+
kind: "role" | "company";
|
|
2069
|
+
name: string;
|
|
2070
|
+
active: boolean;
|
|
2071
|
+
description: string | null;
|
|
2072
|
+
filters?: unknown;
|
|
2073
|
+
rules?: unknown;
|
|
2074
|
+
backfillId?: string;
|
|
2075
|
+
createdAt: string;
|
|
2076
|
+
updatedAt: string;
|
|
2077
|
+
};
|
|
1945
2078
|
ForagerSyncRun: {
|
|
1946
2079
|
id: string;
|
|
1947
2080
|
/** @enum {string} */
|
|
@@ -3465,6 +3598,9 @@ interface components {
|
|
|
3465
3598
|
/** @description Human-readable display label. */
|
|
3466
3599
|
label: string;
|
|
3467
3600
|
};
|
|
3601
|
+
RemoveForagerCompanyBody: {
|
|
3602
|
+
companyUrl: string;
|
|
3603
|
+
};
|
|
3468
3604
|
ReorderPipelineStagesBody: {
|
|
3469
3605
|
/** @description The job whose stages are reordered. */
|
|
3470
3606
|
jobId: string;
|
|
@@ -4454,6 +4590,16 @@ interface components {
|
|
|
4454
4590
|
description?: string;
|
|
4455
4591
|
sortOrder?: number;
|
|
4456
4592
|
};
|
|
4593
|
+
UpdateForagerDescriptionBody: {
|
|
4594
|
+
description: string | null;
|
|
4595
|
+
};
|
|
4596
|
+
UpdateForagerSubscriptionBody: {
|
|
4597
|
+
name?: string;
|
|
4598
|
+
rules?: components["schemas"]["ForagerRule"][];
|
|
4599
|
+
filters?: components["schemas"]["ForagerFilters"];
|
|
4600
|
+
active?: boolean;
|
|
4601
|
+
description?: string | null;
|
|
4602
|
+
};
|
|
4457
4603
|
UpdateInvitationBody: {
|
|
4458
4604
|
/**
|
|
4459
4605
|
* @description The new role for the pending invitation.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as Schemas, L as ListEnvelope, o as RelatedSearch } from './jobs-
|
|
1
|
+
import { b as Schemas, L as ListEnvelope, o as RelatedSearch } from './jobs-CMCADU_-.mjs';
|
|
2
2
|
|
|
3
3
|
/** Author shape embedded on posts (no `object` discriminator). */
|
|
4
4
|
type BlogAuthorEmbed = Schemas['PublicBlogAuthorEmbed'];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { b as Schemas, L as ListEnvelope, o as RelatedSearch } from './jobs-
|
|
1
|
+
import { b as Schemas, L as ListEnvelope, o as RelatedSearch } from './jobs-CMCADU_-.js';
|
|
2
2
|
|
|
3
3
|
/** Author shape embedded on posts (no `object` discriminator). */
|
|
4
4
|
type BlogAuthorEmbed = Schemas['PublicBlogAuthorEmbed'];
|
package/dist/seo.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as PublicBlogPostSummary, B as BlogAuthorEmbed, C as CompanyCategorySalary, a as CompanySalary, L as LocationSalaryDetail, S as SkillSalaryDetail, T as TitleSalaryDetail } from './salaries-
|
|
2
|
-
import { P as PublicBoard } from './board-
|
|
3
|
-
import { P as PublicJob } from './jobs-
|
|
1
|
+
import { P as PublicBlogPostSummary, B as BlogAuthorEmbed, C as CompanyCategorySalary, a as CompanySalary, L as LocationSalaryDetail, S as SkillSalaryDetail, T as TitleSalaryDetail } from './salaries-9U42CM5A.mjs';
|
|
2
|
+
import { P as PublicBoard } from './board-D0guOBYy.mjs';
|
|
3
|
+
import { P as PublicJob } from './jobs-CMCADU_-.mjs';
|
|
4
4
|
import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.mjs';
|
|
5
5
|
|
|
6
6
|
/**
|
package/dist/seo.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { P as PublicBlogPostSummary, B as BlogAuthorEmbed, C as CompanyCategorySalary, a as CompanySalary, L as LocationSalaryDetail, S as SkillSalaryDetail, T as TitleSalaryDetail } from './salaries-
|
|
2
|
-
import { P as PublicBoard } from './board-
|
|
3
|
-
import { P as PublicJob } from './jobs-
|
|
1
|
+
import { P as PublicBlogPostSummary, B as BlogAuthorEmbed, C as CompanyCategorySalary, a as CompanySalary, L as LocationSalaryDetail, S as SkillSalaryDetail, T as TitleSalaryDetail } from './salaries-C3w9kvPJ.js';
|
|
2
|
+
import { P as PublicBoard } from './board-D_BRa2zC.js';
|
|
3
|
+
import { P as PublicJob } from './jobs-CMCADU_-.js';
|
|
4
4
|
import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.js';
|
|
5
5
|
|
|
6
6
|
/**
|