@cavuno/board 1.21.0 → 1.21.1

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/index.d.mts CHANGED
@@ -3431,67 +3431,6 @@ interface components {
3431
3431
 
3432
3432
  type Schemas = components['schemas'];
3433
3433
 
3434
- type SavedJob = Schemas['SavedJob'];
3435
- type SavedJobsListQuery = {
3436
- cursor?: string;
3437
- /** 1–100. */
3438
- limit?: number;
3439
- };
3440
- type SaveJobBody = Schemas['SaveJobBody'];
3441
- /** The authenticated user's lean candidate profile singleton. */
3442
- type CandidateProfile = Schemas['CandidateProfile'];
3443
- /** Optional-field merge-patch body for `board.me.profile.update`. */
3444
- type UpdateCandidateProfileBody = Schemas['UpdateCandidateProfileBody'];
3445
- /** The result of `board.me.profile.handleAvailable(handle)`. */
3446
- type HandleAvailability = Schemas['HandleAvailability'];
3447
- type CandidateExperience = Schemas['CandidateExperience'];
3448
- type CreateExperienceBody = Schemas['CreateExperienceBody'];
3449
- type UpdateExperienceBody = Schemas['UpdateExperienceBody'];
3450
- type CandidateEducation = Schemas['CandidateEducation'];
3451
- type CreateEducationBody = Schemas['CreateEducationBody'];
3452
- type UpdateEducationBody = Schemas['UpdateEducationBody'];
3453
- type CandidateSkill = Schemas['CandidateSkill'];
3454
- type UpdateSkillsBody = Schemas['UpdateSkillsBody'];
3455
- type CandidateLanguage = Schemas['CandidateLanguage'];
3456
- type UpdateLanguagesBody = Schemas['UpdateLanguagesBody'];
3457
- /** The result of `board.me.profile.uploadAvatar(file)`. */
3458
- type CandidateAvatar = Schemas['CandidateAvatar'];
3459
- type NotificationPreference = Schemas['NotificationPreference'];
3460
- type UpdateNotificationPreferenceBody = Schemas['UpdateNotificationPreferenceBody'];
3461
- type UnsubscribeBody = Schemas['UnsubscribeBody'];
3462
- type CreateCompanyBody = Schemas['CreateCompanyBody'];
3463
- type UpdateEmployerCompanyBody = Schemas['UpdateEmployerCompanyBody'];
3464
- type SendWorkEmailBody = Schemas['SendWorkEmailBody'];
3465
- type ConfirmWorkEmailBody = Schemas['ConfirmWorkEmailBody'];
3466
- /** Query for `board.me.companies.search`. */
3467
- type EmployerCompanySearchQuery = {
3468
- q: string;
3469
- /** 1–50. */
3470
- limit?: number;
3471
- };
3472
- type CreateEmployerJobBody = Schemas['EmployerCreateJobBody'];
3473
- type UpdateEmployerJobBody = Schemas['EmployerUpdateJobBody'];
3474
- /** Query for `board.me.companies.jobs.list`. */
3475
- type EmployerJobsListQuery = {
3476
- /** 1–200 (default 200). */
3477
- limit?: number;
3478
- };
3479
- type MoveApplicantStageBody = Schemas['MoveApplicantStageBody'];
3480
- type BulkMoveApplicantsBody = Schemas['BulkMoveApplicantsBody'];
3481
- type BulkRejectApplicantsBody = Schemas['BulkRejectApplicantsBody'];
3482
- type AddApplicantNoteBody = Schemas['AddApplicantNoteBody'];
3483
- type CreatePipelineStageBody = Schemas['CreatePipelineStageBody'];
3484
- type UpdatePipelineStageBody = Schemas['UpdatePipelineStageBody'];
3485
- type ReorderPipelineStagesBody = Schemas['ReorderPipelineStagesBody'];
3486
- /** Query for `board.me.companies.applicants.list`. */
3487
- type EmployerPipelineQuery = {
3488
- /** The job id whose pipeline to read. */
3489
- job: string;
3490
- /** Filter to a single stage (systemStage key, custom stage id, or `applied`). */
3491
- stage?: string;
3492
- };
3493
- type EmployerCheckoutBody = Schemas['EmployerCheckoutBody'];
3494
-
3495
3434
  /**
3496
3435
  * Stripe-shaped success envelopes (`01-conventions.md` §5.1). The
3497
3436
  * server MAY add top-level fields; consumers MUST ignore unknown
@@ -3705,7 +3644,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
3705
3644
  * constant because the package is platform-neutral and cannot read
3706
3645
  * package.json at runtime.
3707
3646
  */
3708
- declare const SDK_VERSION = "1.21.0";
3647
+ declare const SDK_VERSION = "1.21.1";
3709
3648
 
3710
3649
  type BoardUser = Schemas['BoardUser'];
3711
3650
  type BoardAuthSession = Schemas['BoardAuthSession'];
@@ -3891,6 +3830,87 @@ type PlansListQuery = {
3891
3830
  type PlanListEnvelope = ListEnvelope<Plan>;
3892
3831
  type SalesLedPlanListEnvelope = ListEnvelope<SalesLedPlan>;
3893
3832
 
3833
+ type SavedJob = Schemas['SavedJob'];
3834
+ type SavedJobsListQuery = {
3835
+ cursor?: string;
3836
+ /** 1–100. */
3837
+ limit?: number;
3838
+ };
3839
+ type SaveJobBody = Schemas['SaveJobBody'];
3840
+ /** The authenticated user's lean candidate profile singleton. */
3841
+ type CandidateProfile = Schemas['CandidateProfile'];
3842
+ /** Optional-field merge-patch body for `board.me.profile.update`. */
3843
+ type UpdateCandidateProfileBody = Schemas['UpdateCandidateProfileBody'];
3844
+ /** The result of `board.me.profile.handleAvailable(handle)`. */
3845
+ type HandleAvailability = Schemas['HandleAvailability'];
3846
+ type CandidateExperience = Schemas['CandidateExperience'];
3847
+ type CreateExperienceBody = Schemas['CreateExperienceBody'];
3848
+ type UpdateExperienceBody = Schemas['UpdateExperienceBody'];
3849
+ type CandidateEducation = Schemas['CandidateEducation'];
3850
+ type CreateEducationBody = Schemas['CreateEducationBody'];
3851
+ type UpdateEducationBody = Schemas['UpdateEducationBody'];
3852
+ type CandidateSkill = Schemas['CandidateSkill'];
3853
+ type UpdateSkillsBody = Schemas['UpdateSkillsBody'];
3854
+ type CandidateLanguage = Schemas['CandidateLanguage'];
3855
+ type UpdateLanguagesBody = Schemas['UpdateLanguagesBody'];
3856
+ /** The result of `board.me.profile.uploadAvatar(file)`. */
3857
+ type CandidateAvatar = Schemas['CandidateAvatar'];
3858
+ type NotificationPreference = Schemas['NotificationPreference'];
3859
+ type UpdateNotificationPreferenceBody = Schemas['UpdateNotificationPreferenceBody'];
3860
+ type UnsubscribeBody = Schemas['UnsubscribeBody'];
3861
+ /** The caller's tie to a company, with a computed claim `status`. */
3862
+ type CompanyMembership = Schemas['CompanyMembership'];
3863
+ /** The full editable company (`board.me.companies.update` echoes this). */
3864
+ type EmployerCompany = Schemas['EmployerCompany'];
3865
+ /** A search hit from `board.me.companies.search`. */
3866
+ type ClaimableCompany = Schemas['ClaimableCompany'];
3867
+ type CreateCompanyBody = Schemas['CreateCompanyBody'];
3868
+ type UpdateEmployerCompanyBody = Schemas['UpdateEmployerCompanyBody'];
3869
+ type SendWorkEmailBody = Schemas['SendWorkEmailBody'];
3870
+ type ConfirmWorkEmailBody = Schemas['ConfirmWorkEmailBody'];
3871
+ /** Query for `board.me.companies.search`. */
3872
+ type EmployerCompanySearchQuery = {
3873
+ q: string;
3874
+ /** 1–50. */
3875
+ limit?: number;
3876
+ };
3877
+ /** Flat list-item shape from `board.me.companies.jobs.list`. */
3878
+ type EmployerJobSummary = Schemas['EmployerJobSummary'];
3879
+ /** The full job from `board.me.companies.jobs.retrieve` + every mutation echo. */
3880
+ type EmployerJob = Schemas['EmployerJob'];
3881
+ type CreateEmployerJobBody = Schemas['EmployerCreateJobBody'];
3882
+ type UpdateEmployerJobBody = Schemas['EmployerUpdateJobBody'];
3883
+ /** Query for `board.me.companies.jobs.list`. */
3884
+ type EmployerJobsListQuery = {
3885
+ /** 1–200 (default 200). */
3886
+ limit?: number;
3887
+ };
3888
+ /** A job's full applicant pipeline (job header + stage rail + applicants). */
3889
+ type EmployerPipeline = Schemas['EmployerPipeline'];
3890
+ /** One applicant on a job's pipeline, with its activity timeline. */
3891
+ type EmployerApplicant = Schemas['EmployerApplicant'];
3892
+ /** One row of a job's stage rail. */
3893
+ type EmployerPipelineStage = Schemas['EmployerPipelineStage'];
3894
+ type MoveApplicantStageBody = Schemas['MoveApplicantStageBody'];
3895
+ type BulkMoveApplicantsBody = Schemas['BulkMoveApplicantsBody'];
3896
+ type BulkRejectApplicantsBody = Schemas['BulkRejectApplicantsBody'];
3897
+ type AddApplicantNoteBody = Schemas['AddApplicantNoteBody'];
3898
+ type CreatePipelineStageBody = Schemas['CreatePipelineStageBody'];
3899
+ type UpdatePipelineStageBody = Schemas['UpdatePipelineStageBody'];
3900
+ type ReorderPipelineStagesBody = Schemas['ReorderPipelineStagesBody'];
3901
+ /** Query for `board.me.companies.applicants.list`. */
3902
+ type EmployerPipelineQuery = {
3903
+ /** The job id whose pipeline to read. */
3904
+ job: string;
3905
+ /** Filter to a single stage (systemStage key, custom stage id, or `applied`). */
3906
+ stage?: string;
3907
+ };
3908
+ /** A reusable billing option (active subscription / pre-purchased bundle slot). */
3909
+ type EmployerBillingOption = Schemas['EmployerBillingOption'];
3910
+ /** The result of `board.me.companies.jobs.checkout`. */
3911
+ type EmployerCheckout = Schemas['EmployerCheckout'];
3912
+ type EmployerCheckoutBody = Schemas['EmployerCheckoutBody'];
3913
+
3894
3914
  type JobAlertFrequency = 'daily' | 'weekly';
3895
3915
  type JobAlertRemoteOption = 'on_site' | 'hybrid' | 'remote';
3896
3916
  /**
@@ -5902,4 +5922,4 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
5902
5922
  };
5903
5923
  type BoardSdk = ReturnType<typeof createBoardClient>;
5904
5924
 
5905
- export { ACCESS_TOKEN_KEY, type Awaitable, BOARD_ACCESS_GRANT_KEY, type BlogAuthorEmbed, type BlogPostsListQuery, type BlogSearchBody, type BlogSimilarQuery, type BlogTagEmbed, type BoardAccessGrant, BoardApiError, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type CompaniesListQuery, type CompaniesSearchBody, type CompanyCategorySalary, type CompanyJobsListQuery, type CompanyListEnvelope, type CompanyMarket, type CompanyMarketRef, type CompanyMarketsListQuery, type CompanySalary, type CompanySimilarQuery, type ConsumeMagicLinkBody, type CreateBoardClientOptions, type CreateEducationBody, type CreateExperienceBody, type CreateJobPostingInput, type CustomStorage, type EducationRequirement, type EmbedJobsQuery, type EmploymentType, type FetchOptions, 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, type JobCardListEnvelope, type JobCardSearchEnvelope, type JobCompany, type JobPostingBillingCheck, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, type JobPostingSubscriptionEntitlements, type JobSort, type JobsListQuery, type JobsSearchBody, type LegalEntity, type LegalPageType, type ListEnvelope, type LocationSalaryDetail, type LocationSkillsIndex, type LocationTitlesIndex, type Logger, type LoginBody, type LogoutBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type OfficeLocation, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicBlogAdjacentPosts, type PublicBlogAuthor, type PublicBlogPost, type PublicBlogPostSummary, type PublicBlogTag, type PublicBoard, type PublicBoardAnalytics, type PublicBoardFeatures, type PublicBoardTheme, type PublicCompany, type PublicCompanyDetail, type PublicJob, type PublicJobCard, type PublicLegalPage, type PublicPlace, REFRESH_TOKEN_KEY, type RedirectResolution, type RefreshBody, type RegisterBody, type RelatedSearch, type RemoteOption, type RemotePermit, type RemoteTimezone, type RequestMagicLinkBody, type ResetPasswordBody, SDK_VERSION, type SalaryCompany, type SalaryDetailQuery, type SalaryLocation, type SalarySkill, type SalaryTitle, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, type SearchEnvelope, type Seniority, type SkillLocationSalary, type SkillLocationsIndex, type SkillSalaryDetail, type StorageMode, type StorefrontPagination, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyResolution, type TitleLocationSalary, type TitleLocationsIndex, type TitleSalaryDetail, type UnsubscribeBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isConflict, isForbidden, isNotFound, isRateLimited, isUnauthorized, isValidationError };
5925
+ export { ACCESS_TOKEN_KEY, type AddApplicantNoteBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, type BlogAuthorEmbed, type BlogPostsListQuery, type BlogSearchBody, type BlogSimilarQuery, type BlogTagEmbed, type BoardAccessGrant, BoardApiError, 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, type CompaniesListQuery, type CompaniesSearchBody, type CompanyCategorySalary, type CompanyJobsListQuery, type CompanyListEnvelope, type CompanyMarket, type CompanyMarketRef, type CompanyMarketsListQuery, type CompanyMembership, type CompanySalary, type CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EducationRequirement, 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, type EmploymentType, type FetchOptions, 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, type JobCardListEnvelope, type JobCardSearchEnvelope, type JobCompany, type JobPostingBillingCheck, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, type JobPostingSubscriptionEntitlements, type JobSort, type JobsListQuery, type JobsSearchBody, type LegalEntity, type LegalPageType, type ListEnvelope, type LocationSalaryDetail, type LocationSkillsIndex, type LocationTitlesIndex, type Logger, type LoginBody, type LogoutBody, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type OfficeLocation, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicBlogAdjacentPosts, type PublicBlogAuthor, type PublicBlogPost, type PublicBlogPostSummary, type PublicBlogTag, type PublicBoard, type PublicBoardAnalytics, type PublicBoardFeatures, type PublicBoardTheme, type PublicCompany, type PublicCompanyDetail, type PublicJob, type PublicJobCard, type PublicLegalPage, type PublicPlace, REFRESH_TOKEN_KEY, type RedirectResolution, type RefreshBody, type RegisterBody, type RelatedSearch, type RemoteOption, type RemotePermit, type RemoteTimezone, type ReorderPipelineStagesBody, type RequestMagicLinkBody, type ResetPasswordBody, SDK_VERSION, type SalaryCompany, type SalaryDetailQuery, type SalaryLocation, type SalarySkill, type SalaryTitle, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, type SearchEnvelope, type SendWorkEmailBody, type Seniority, type SkillLocationSalary, type SkillLocationsIndex, type SkillSalaryDetail, type StorageMode, type StorefrontPagination, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyResolution, type TitleLocationSalary, type TitleLocationsIndex, type TitleSalaryDetail, type UnsubscribeBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isConflict, isForbidden, isNotFound, isRateLimited, isUnauthorized, isValidationError };
package/dist/index.d.ts CHANGED
@@ -3431,67 +3431,6 @@ interface components {
3431
3431
 
3432
3432
  type Schemas = components['schemas'];
3433
3433
 
3434
- type SavedJob = Schemas['SavedJob'];
3435
- type SavedJobsListQuery = {
3436
- cursor?: string;
3437
- /** 1–100. */
3438
- limit?: number;
3439
- };
3440
- type SaveJobBody = Schemas['SaveJobBody'];
3441
- /** The authenticated user's lean candidate profile singleton. */
3442
- type CandidateProfile = Schemas['CandidateProfile'];
3443
- /** Optional-field merge-patch body for `board.me.profile.update`. */
3444
- type UpdateCandidateProfileBody = Schemas['UpdateCandidateProfileBody'];
3445
- /** The result of `board.me.profile.handleAvailable(handle)`. */
3446
- type HandleAvailability = Schemas['HandleAvailability'];
3447
- type CandidateExperience = Schemas['CandidateExperience'];
3448
- type CreateExperienceBody = Schemas['CreateExperienceBody'];
3449
- type UpdateExperienceBody = Schemas['UpdateExperienceBody'];
3450
- type CandidateEducation = Schemas['CandidateEducation'];
3451
- type CreateEducationBody = Schemas['CreateEducationBody'];
3452
- type UpdateEducationBody = Schemas['UpdateEducationBody'];
3453
- type CandidateSkill = Schemas['CandidateSkill'];
3454
- type UpdateSkillsBody = Schemas['UpdateSkillsBody'];
3455
- type CandidateLanguage = Schemas['CandidateLanguage'];
3456
- type UpdateLanguagesBody = Schemas['UpdateLanguagesBody'];
3457
- /** The result of `board.me.profile.uploadAvatar(file)`. */
3458
- type CandidateAvatar = Schemas['CandidateAvatar'];
3459
- type NotificationPreference = Schemas['NotificationPreference'];
3460
- type UpdateNotificationPreferenceBody = Schemas['UpdateNotificationPreferenceBody'];
3461
- type UnsubscribeBody = Schemas['UnsubscribeBody'];
3462
- type CreateCompanyBody = Schemas['CreateCompanyBody'];
3463
- type UpdateEmployerCompanyBody = Schemas['UpdateEmployerCompanyBody'];
3464
- type SendWorkEmailBody = Schemas['SendWorkEmailBody'];
3465
- type ConfirmWorkEmailBody = Schemas['ConfirmWorkEmailBody'];
3466
- /** Query for `board.me.companies.search`. */
3467
- type EmployerCompanySearchQuery = {
3468
- q: string;
3469
- /** 1–50. */
3470
- limit?: number;
3471
- };
3472
- type CreateEmployerJobBody = Schemas['EmployerCreateJobBody'];
3473
- type UpdateEmployerJobBody = Schemas['EmployerUpdateJobBody'];
3474
- /** Query for `board.me.companies.jobs.list`. */
3475
- type EmployerJobsListQuery = {
3476
- /** 1–200 (default 200). */
3477
- limit?: number;
3478
- };
3479
- type MoveApplicantStageBody = Schemas['MoveApplicantStageBody'];
3480
- type BulkMoveApplicantsBody = Schemas['BulkMoveApplicantsBody'];
3481
- type BulkRejectApplicantsBody = Schemas['BulkRejectApplicantsBody'];
3482
- type AddApplicantNoteBody = Schemas['AddApplicantNoteBody'];
3483
- type CreatePipelineStageBody = Schemas['CreatePipelineStageBody'];
3484
- type UpdatePipelineStageBody = Schemas['UpdatePipelineStageBody'];
3485
- type ReorderPipelineStagesBody = Schemas['ReorderPipelineStagesBody'];
3486
- /** Query for `board.me.companies.applicants.list`. */
3487
- type EmployerPipelineQuery = {
3488
- /** The job id whose pipeline to read. */
3489
- job: string;
3490
- /** Filter to a single stage (systemStage key, custom stage id, or `applied`). */
3491
- stage?: string;
3492
- };
3493
- type EmployerCheckoutBody = Schemas['EmployerCheckoutBody'];
3494
-
3495
3434
  /**
3496
3435
  * Stripe-shaped success envelopes (`01-conventions.md` §5.1). The
3497
3436
  * server MAY add top-level fields; consumers MUST ignore unknown
@@ -3705,7 +3644,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
3705
3644
  * constant because the package is platform-neutral and cannot read
3706
3645
  * package.json at runtime.
3707
3646
  */
3708
- declare const SDK_VERSION = "1.21.0";
3647
+ declare const SDK_VERSION = "1.21.1";
3709
3648
 
3710
3649
  type BoardUser = Schemas['BoardUser'];
3711
3650
  type BoardAuthSession = Schemas['BoardAuthSession'];
@@ -3891,6 +3830,87 @@ type PlansListQuery = {
3891
3830
  type PlanListEnvelope = ListEnvelope<Plan>;
3892
3831
  type SalesLedPlanListEnvelope = ListEnvelope<SalesLedPlan>;
3893
3832
 
3833
+ type SavedJob = Schemas['SavedJob'];
3834
+ type SavedJobsListQuery = {
3835
+ cursor?: string;
3836
+ /** 1–100. */
3837
+ limit?: number;
3838
+ };
3839
+ type SaveJobBody = Schemas['SaveJobBody'];
3840
+ /** The authenticated user's lean candidate profile singleton. */
3841
+ type CandidateProfile = Schemas['CandidateProfile'];
3842
+ /** Optional-field merge-patch body for `board.me.profile.update`. */
3843
+ type UpdateCandidateProfileBody = Schemas['UpdateCandidateProfileBody'];
3844
+ /** The result of `board.me.profile.handleAvailable(handle)`. */
3845
+ type HandleAvailability = Schemas['HandleAvailability'];
3846
+ type CandidateExperience = Schemas['CandidateExperience'];
3847
+ type CreateExperienceBody = Schemas['CreateExperienceBody'];
3848
+ type UpdateExperienceBody = Schemas['UpdateExperienceBody'];
3849
+ type CandidateEducation = Schemas['CandidateEducation'];
3850
+ type CreateEducationBody = Schemas['CreateEducationBody'];
3851
+ type UpdateEducationBody = Schemas['UpdateEducationBody'];
3852
+ type CandidateSkill = Schemas['CandidateSkill'];
3853
+ type UpdateSkillsBody = Schemas['UpdateSkillsBody'];
3854
+ type CandidateLanguage = Schemas['CandidateLanguage'];
3855
+ type UpdateLanguagesBody = Schemas['UpdateLanguagesBody'];
3856
+ /** The result of `board.me.profile.uploadAvatar(file)`. */
3857
+ type CandidateAvatar = Schemas['CandidateAvatar'];
3858
+ type NotificationPreference = Schemas['NotificationPreference'];
3859
+ type UpdateNotificationPreferenceBody = Schemas['UpdateNotificationPreferenceBody'];
3860
+ type UnsubscribeBody = Schemas['UnsubscribeBody'];
3861
+ /** The caller's tie to a company, with a computed claim `status`. */
3862
+ type CompanyMembership = Schemas['CompanyMembership'];
3863
+ /** The full editable company (`board.me.companies.update` echoes this). */
3864
+ type EmployerCompany = Schemas['EmployerCompany'];
3865
+ /** A search hit from `board.me.companies.search`. */
3866
+ type ClaimableCompany = Schemas['ClaimableCompany'];
3867
+ type CreateCompanyBody = Schemas['CreateCompanyBody'];
3868
+ type UpdateEmployerCompanyBody = Schemas['UpdateEmployerCompanyBody'];
3869
+ type SendWorkEmailBody = Schemas['SendWorkEmailBody'];
3870
+ type ConfirmWorkEmailBody = Schemas['ConfirmWorkEmailBody'];
3871
+ /** Query for `board.me.companies.search`. */
3872
+ type EmployerCompanySearchQuery = {
3873
+ q: string;
3874
+ /** 1–50. */
3875
+ limit?: number;
3876
+ };
3877
+ /** Flat list-item shape from `board.me.companies.jobs.list`. */
3878
+ type EmployerJobSummary = Schemas['EmployerJobSummary'];
3879
+ /** The full job from `board.me.companies.jobs.retrieve` + every mutation echo. */
3880
+ type EmployerJob = Schemas['EmployerJob'];
3881
+ type CreateEmployerJobBody = Schemas['EmployerCreateJobBody'];
3882
+ type UpdateEmployerJobBody = Schemas['EmployerUpdateJobBody'];
3883
+ /** Query for `board.me.companies.jobs.list`. */
3884
+ type EmployerJobsListQuery = {
3885
+ /** 1–200 (default 200). */
3886
+ limit?: number;
3887
+ };
3888
+ /** A job's full applicant pipeline (job header + stage rail + applicants). */
3889
+ type EmployerPipeline = Schemas['EmployerPipeline'];
3890
+ /** One applicant on a job's pipeline, with its activity timeline. */
3891
+ type EmployerApplicant = Schemas['EmployerApplicant'];
3892
+ /** One row of a job's stage rail. */
3893
+ type EmployerPipelineStage = Schemas['EmployerPipelineStage'];
3894
+ type MoveApplicantStageBody = Schemas['MoveApplicantStageBody'];
3895
+ type BulkMoveApplicantsBody = Schemas['BulkMoveApplicantsBody'];
3896
+ type BulkRejectApplicantsBody = Schemas['BulkRejectApplicantsBody'];
3897
+ type AddApplicantNoteBody = Schemas['AddApplicantNoteBody'];
3898
+ type CreatePipelineStageBody = Schemas['CreatePipelineStageBody'];
3899
+ type UpdatePipelineStageBody = Schemas['UpdatePipelineStageBody'];
3900
+ type ReorderPipelineStagesBody = Schemas['ReorderPipelineStagesBody'];
3901
+ /** Query for `board.me.companies.applicants.list`. */
3902
+ type EmployerPipelineQuery = {
3903
+ /** The job id whose pipeline to read. */
3904
+ job: string;
3905
+ /** Filter to a single stage (systemStage key, custom stage id, or `applied`). */
3906
+ stage?: string;
3907
+ };
3908
+ /** A reusable billing option (active subscription / pre-purchased bundle slot). */
3909
+ type EmployerBillingOption = Schemas['EmployerBillingOption'];
3910
+ /** The result of `board.me.companies.jobs.checkout`. */
3911
+ type EmployerCheckout = Schemas['EmployerCheckout'];
3912
+ type EmployerCheckoutBody = Schemas['EmployerCheckoutBody'];
3913
+
3894
3914
  type JobAlertFrequency = 'daily' | 'weekly';
3895
3915
  type JobAlertRemoteOption = 'on_site' | 'hybrid' | 'remote';
3896
3916
  /**
@@ -5902,4 +5922,4 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
5902
5922
  };
5903
5923
  type BoardSdk = ReturnType<typeof createBoardClient>;
5904
5924
 
5905
- export { ACCESS_TOKEN_KEY, type Awaitable, BOARD_ACCESS_GRANT_KEY, type BlogAuthorEmbed, type BlogPostsListQuery, type BlogSearchBody, type BlogSimilarQuery, type BlogTagEmbed, type BoardAccessGrant, BoardApiError, type BoardAuthSession, BoardClient, type BoardRequest, type BoardSdk, type BoardSeo, type BoardUser, type CandidateAvatar, type CandidateEducation, type CandidateExperience, type CandidateLanguage, type CandidateProfile, type CandidateSkill, type CompaniesListQuery, type CompaniesSearchBody, type CompanyCategorySalary, type CompanyJobsListQuery, type CompanyListEnvelope, type CompanyMarket, type CompanyMarketRef, type CompanyMarketsListQuery, type CompanySalary, type CompanySimilarQuery, type ConsumeMagicLinkBody, type CreateBoardClientOptions, type CreateEducationBody, type CreateExperienceBody, type CreateJobPostingInput, type CustomStorage, type EducationRequirement, type EmbedJobsQuery, type EmploymentType, type FetchOptions, 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, type JobCardListEnvelope, type JobCardSearchEnvelope, type JobCompany, type JobPostingBillingCheck, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, type JobPostingSubscriptionEntitlements, type JobSort, type JobsListQuery, type JobsSearchBody, type LegalEntity, type LegalPageType, type ListEnvelope, type LocationSalaryDetail, type LocationSkillsIndex, type LocationTitlesIndex, type Logger, type LoginBody, type LogoutBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type OfficeLocation, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicBlogAdjacentPosts, type PublicBlogAuthor, type PublicBlogPost, type PublicBlogPostSummary, type PublicBlogTag, type PublicBoard, type PublicBoardAnalytics, type PublicBoardFeatures, type PublicBoardTheme, type PublicCompany, type PublicCompanyDetail, type PublicJob, type PublicJobCard, type PublicLegalPage, type PublicPlace, REFRESH_TOKEN_KEY, type RedirectResolution, type RefreshBody, type RegisterBody, type RelatedSearch, type RemoteOption, type RemotePermit, type RemoteTimezone, type RequestMagicLinkBody, type ResetPasswordBody, SDK_VERSION, type SalaryCompany, type SalaryDetailQuery, type SalaryLocation, type SalarySkill, type SalaryTitle, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, type SearchEnvelope, type Seniority, type SkillLocationSalary, type SkillLocationsIndex, type SkillSalaryDetail, type StorageMode, type StorefrontPagination, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyResolution, type TitleLocationSalary, type TitleLocationsIndex, type TitleSalaryDetail, type UnsubscribeBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isConflict, isForbidden, isNotFound, isRateLimited, isUnauthorized, isValidationError };
5925
+ export { ACCESS_TOKEN_KEY, type AddApplicantNoteBody, type Awaitable, BOARD_ACCESS_GRANT_KEY, type BlogAuthorEmbed, type BlogPostsListQuery, type BlogSearchBody, type BlogSimilarQuery, type BlogTagEmbed, type BoardAccessGrant, BoardApiError, 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, type CompaniesListQuery, type CompaniesSearchBody, type CompanyCategorySalary, type CompanyJobsListQuery, type CompanyListEnvelope, type CompanyMarket, type CompanyMarketRef, type CompanyMarketsListQuery, type CompanyMembership, type CompanySalary, type CompanySimilarQuery, type ConfirmWorkEmailBody, type ConsumeMagicLinkBody, type CreateBoardClientOptions, type CreateCompanyBody, type CreateEducationBody, type CreateEmployerJobBody, type CreateExperienceBody, type CreateJobPostingInput, type CreatePipelineStageBody, type CustomStorage, type EducationRequirement, 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, type EmploymentType, type FetchOptions, 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, type JobCardListEnvelope, type JobCardSearchEnvelope, type JobCompany, type JobPostingBillingCheck, type JobPostingBillingOptions, type JobPostingBillingVerification, type JobPostingLogoResult, type JobPostingPlan, type JobPostingResult, type JobPostingSubscriptionEntitlements, type JobSort, type JobsListQuery, type JobsSearchBody, type LegalEntity, type LegalPageType, type ListEnvelope, type LocationSalaryDetail, type LocationSkillsIndex, type LocationTitlesIndex, type Logger, type LoginBody, type LogoutBody, type MoveApplicantStageBody, type NotificationPreference, type OAuthAuthorizationQuery, type OAuthAuthorizationUrl, type OAuthExchangeBody, type OAuthProvider, type OfficeLocation, type PlacesListQuery, type Plan, type PlanListEnvelope, type PlansListQuery, type PublicBlogAdjacentPosts, type PublicBlogAuthor, type PublicBlogPost, type PublicBlogPostSummary, type PublicBlogTag, type PublicBoard, type PublicBoardAnalytics, type PublicBoardFeatures, type PublicBoardTheme, type PublicCompany, type PublicCompanyDetail, type PublicJob, type PublicJobCard, type PublicLegalPage, type PublicPlace, REFRESH_TOKEN_KEY, type RedirectResolution, type RefreshBody, type RegisterBody, type RelatedSearch, type RemoteOption, type RemotePermit, type RemoteTimezone, type ReorderPipelineStagesBody, type RequestMagicLinkBody, type ResetPasswordBody, SDK_VERSION, type SalaryCompany, type SalaryDetailQuery, type SalaryLocation, type SalarySkill, type SalaryTitle, type SalesLedPlan, type SalesLedPlanListEnvelope, type SaveJobBody, type SavedJob, type SavedJobsListQuery, type SearchEnvelope, type SendWorkEmailBody, type Seniority, type SkillLocationSalary, type SkillLocationsIndex, type SkillSalaryDetail, type StorageMode, type StorefrontPagination, type TalentDirectoryEntry, type TalentDirectoryListEnvelope, type TalentDirectoryQuery, type TalentProfile, type TaxonomyGeo, type TaxonomyResolution, type TitleLocationSalary, type TitleLocationsIndex, type TitleSalaryDetail, type UnsubscribeBody, type UpdateCandidateProfileBody, type UpdateEducationBody, type UpdateEmployerCompanyBody, type UpdateEmployerJobBody, type UpdateExperienceBody, type UpdateLanguagesBody, type UpdateNotificationPreferenceBody, type UpdatePipelineStageBody, type UpdateSkillsBody, type VerifyEmailBody, createBoardClient, isBoardApiError, isBoardPasswordRequired, isConflict, isForbidden, isNotFound, isRateLimited, isUnauthorized, isValidationError };
package/dist/index.js CHANGED
@@ -149,7 +149,7 @@ async function clearSession(storage) {
149
149
  }
150
150
 
151
151
  // src/version.ts
152
- var SDK_VERSION = "1.21.0";
152
+ var SDK_VERSION = "1.21.1";
153
153
 
154
154
  // src/client.ts
155
155
  function isRawBody(body) {
package/dist/index.mjs CHANGED
@@ -109,7 +109,7 @@ async function clearSession(storage) {
109
109
  }
110
110
 
111
111
  // src/version.ts
112
- var SDK_VERSION = "1.21.0";
112
+ var SDK_VERSION = "1.21.1";
113
113
 
114
114
  // src/client.ts
115
115
  function isRawBody(body) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cavuno/board",
3
- "version": "1.21.0",
3
+ "version": "1.21.1",
4
4
  "description": "Typed isomorphic client for the Cavuno Board API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.21.0",
2
+ "version": "1.21.1",
3
3
  "skills": [
4
4
  {
5
5
  "name": "cavuno-board-auth",