@cavuno/board 1.42.0 → 1.43.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.
@@ -736,7 +736,7 @@ interface components {
736
736
  handle: string | null;
737
737
  /** @description Avatar URL, or `null`. */
738
738
  avatarUrl: string | null;
739
- /** @description Whether the candidate has uploaded a resume. */
739
+ /** @description Whether a resume is on file. On list rows this reflects the stored pointer; on the single-candidate detail it reflects the resolved blob (always agrees with `resume !== null`), so the two can briefly disagree if a stored file was garbage-collected. */
740
740
  hasResume: boolean;
741
741
  /** @description ISO-8601 timestamp of when the candidate registered. */
742
742
  createdAt: string;
@@ -765,6 +765,7 @@ interface components {
765
765
  savedJobCount: number;
766
766
  /** @description Number of job alerts the candidate has. */
767
767
  alertCount: number;
768
+ resume: components["schemas"]["CandidateResumeFile"];
768
769
  };
769
770
  CandidateEducation: {
770
771
  id: string;
@@ -822,6 +823,15 @@ interface components {
822
823
  jobSearchStatusVisibleTo: "everyone" | "employers_only";
823
824
  openToRelocate: boolean;
824
825
  };
826
+ /** @description Signed Convex storage URL + metadata for the uploaded resume, or `null` when no resume is on file (or the storage blob is missing). Treat the URL as sensitive PII. */
827
+ CandidateResumeFile: {
828
+ /** @description Convex storage download URL for the candidate resume. Unguessable; treat as sensitive PII — it serves the candidate’s actual resume file. Short-lived: do not cache or store it; re-fetch the candidate to get a fresh URL. */
829
+ url: string;
830
+ /** @description MIME type of the stored resume file. */
831
+ contentType: string;
832
+ /** @description Size of the resume file in bytes. */
833
+ sizeBytes: number;
834
+ } | null;
825
835
  CandidateSkill: {
826
836
  /** @enum {string} */
827
837
  object: "candidate_skill";
@@ -2589,6 +2599,10 @@ interface components {
2589
2599
  /** @description Board-defined custom field definitions, in display order. Read these to learn which `customFieldValues` keys, types, and option keys a job accepts on POST/PATCH /v1/jobs. */
2590
2600
  customFields?: components["schemas"]["CustomFieldDefinition"][];
2591
2601
  };
2602
+ JobFormCustomFieldsBody: {
2603
+ /** @description Full replacement list of custom field definitions, in display order. Empty array removes all. Changing `type` on an existing `key` is rejected (422); delete + recreate instead. Renaming a key is delete+add and orphans per-job values under the old key. */
2604
+ customFields: components["schemas"]["CustomFieldDefinition"][];
2605
+ };
2592
2606
  JobOfficeLocation: {
2593
2607
  /** @description ISO 3166-1 alpha-2 country code, or `null` if the location was not resolved. */
2594
2608
  countryCode: string | null;
@@ -736,7 +736,7 @@ interface components {
736
736
  handle: string | null;
737
737
  /** @description Avatar URL, or `null`. */
738
738
  avatarUrl: string | null;
739
- /** @description Whether the candidate has uploaded a resume. */
739
+ /** @description Whether a resume is on file. On list rows this reflects the stored pointer; on the single-candidate detail it reflects the resolved blob (always agrees with `resume !== null`), so the two can briefly disagree if a stored file was garbage-collected. */
740
740
  hasResume: boolean;
741
741
  /** @description ISO-8601 timestamp of when the candidate registered. */
742
742
  createdAt: string;
@@ -765,6 +765,7 @@ interface components {
765
765
  savedJobCount: number;
766
766
  /** @description Number of job alerts the candidate has. */
767
767
  alertCount: number;
768
+ resume: components["schemas"]["CandidateResumeFile"];
768
769
  };
769
770
  CandidateEducation: {
770
771
  id: string;
@@ -822,6 +823,15 @@ interface components {
822
823
  jobSearchStatusVisibleTo: "everyone" | "employers_only";
823
824
  openToRelocate: boolean;
824
825
  };
826
+ /** @description Signed Convex storage URL + metadata for the uploaded resume, or `null` when no resume is on file (or the storage blob is missing). Treat the URL as sensitive PII. */
827
+ CandidateResumeFile: {
828
+ /** @description Convex storage download URL for the candidate resume. Unguessable; treat as sensitive PII — it serves the candidate’s actual resume file. Short-lived: do not cache or store it; re-fetch the candidate to get a fresh URL. */
829
+ url: string;
830
+ /** @description MIME type of the stored resume file. */
831
+ contentType: string;
832
+ /** @description Size of the resume file in bytes. */
833
+ sizeBytes: number;
834
+ } | null;
825
835
  CandidateSkill: {
826
836
  /** @enum {string} */
827
837
  object: "candidate_skill";
@@ -2589,6 +2599,10 @@ interface components {
2589
2599
  /** @description Board-defined custom field definitions, in display order. Read these to learn which `customFieldValues` keys, types, and option keys a job accepts on POST/PATCH /v1/jobs. */
2590
2600
  customFields?: components["schemas"]["CustomFieldDefinition"][];
2591
2601
  };
2602
+ JobFormCustomFieldsBody: {
2603
+ /** @description Full replacement list of custom field definitions, in display order. Empty array removes all. Changing `type` on an existing `key` is rejected (422); delete + recreate instead. Renaming a key is delete+add and orphans per-job values under the old key. */
2604
+ customFields: components["schemas"]["CustomFieldDefinition"][];
2605
+ };
2592
2606
  JobOfficeLocation: {
2593
2607
  /** @description ISO 3166-1 alpha-2 country code, or `null` if the location was not resolved. */
2594
2608
  countryCode: string | null;
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.mjs';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.mjs';
2
2
 
3
3
  type PublicBoard = Schemas['PublicBoardContext'];
4
4
  type PublicBoardFeatures = PublicBoard['features'];
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.js';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.js';
2
2
 
3
3
  type PublicBoard = Schemas['PublicBoardContext'];
4
4
  type PublicBoardFeatures = PublicBoard['features'];
@@ -1,6 +1,6 @@
1
1
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.mjs';
2
- import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-BtazrWfv.mjs';
3
- import './_spec-LdkTxfx0.mjs';
2
+ import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-DqujLqGk.mjs';
3
+ import './_spec-DQ2GR9lq.mjs';
4
4
 
5
5
  declare const REMOTE_OPTIONS: readonly RemoteOption[];
6
6
  /**
package/dist/filters.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.js';
2
- import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-TIAPH3Ol.js';
3
- import './_spec-LdkTxfx0.js';
2
+ import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-BlnV6hmC.js';
3
+ import './_spec-DQ2GR9lq.js';
4
4
 
5
5
  declare const REMOTE_OPTIONS: readonly RemoteOption[];
6
6
  /**
package/dist/format.d.mts CHANGED
@@ -1,8 +1,8 @@
1
- import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-BtazrWfv.mjs';
1
+ import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-DqujLqGk.mjs';
2
2
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.mjs';
3
3
  export { A as AlertsCopy, a as ApplyCopy, b as BlogCopy, c as BreadcrumbsCopy, C as CopyLinkCopy, E as EntityCopy, F as FooterCopy, J as JobCardCopy, d as JobDetailCopy, e as JobSearchCopy, N as NavCopy, P as PUBLIC_LABEL_GROUPS, f as PaginationCopy, S as SalaryCopy, U as UiCopy, u as uiCopy } from './ui-copy-CKfFTtLk.mjs';
4
- import { C as CustomFieldDefinition } from './board-Cs93Lf23.mjs';
5
- import './_spec-LdkTxfx0.mjs';
4
+ import { C as CustomFieldDefinition } from './board-ComPm8FD.mjs';
5
+ import './_spec-DQ2GR9lq.mjs';
6
6
 
7
7
  /**
8
8
  * Date display helpers in the board language (required leading parameter,
package/dist/format.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-TIAPH3Ol.js';
1
+ import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-BlnV6hmC.js';
2
2
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.js';
3
3
  export { A as AlertsCopy, a as ApplyCopy, b as BlogCopy, c as BreadcrumbsCopy, C as CopyLinkCopy, E as EntityCopy, F as FooterCopy, J as JobCardCopy, d as JobDetailCopy, e as JobSearchCopy, N as NavCopy, P as PUBLIC_LABEL_GROUPS, f as PaginationCopy, S as SalaryCopy, U as UiCopy, u as uiCopy } from './ui-copy-CKfFTtLk.js';
4
- import { C as CustomFieldDefinition } from './board-FxC9Wdhi.js';
5
- import './_spec-LdkTxfx0.js';
4
+ import { C as CustomFieldDefinition } from './board-DpBlk05S.js';
5
+ import './_spec-DQ2GR9lq.js';
6
6
 
7
7
  /**
8
8
  * Date display helpers in the board language (required leading parameter,
package/dist/index.d.mts CHANGED
@@ -1,11 +1,11 @@
1
- import { S as Schemas, c as components } from './_spec-LdkTxfx0.mjs';
2
- import { F as FetchOptions, c as StorageMode, B as BoardRequest, A as Awaitable, L as Logger, d as BoardClient, a as SearchSuggestQuery } from './search-YhoVpXFY.mjs';
3
- export { e as ACCESS_TOKEN_KEY, f as BOARD_ACCESS_GRANT_KEY, C as CompanySuggestion, g as CustomStorage, R as REFRESH_TOKEN_KEY, b as SuggestResult, S as SuggestionItem, T as TermSuggestion } from './search-YhoVpXFY.mjs';
4
- export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-Cs93Lf23.mjs';
5
- import { R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, b as JobsListQuery, c as JobCardListEnvelope, d as JobsSearchBody, e as JobCardSearchEnvelope, f as JobsSimilarQuery, g as SearchEnvelope } from './jobs-BtazrWfv.mjs';
6
- export { h as CustomFieldValue, C as CustomFieldValues, i as EducationRequirement, j as JobCatalogPagination, k as JobCompany, J as JobSort, O as OfficeLocation, l as OffsetPagination, P as PublicJob, a as PublicJobCard, m as RelatedSearch, n as RemotePermit, o as RemoteTimezone, p as StorefrontPagination } from './jobs-BtazrWfv.mjs';
7
- 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-CB9Ve4kS.mjs';
8
- 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-CB9Ve4kS.mjs';
1
+ import { S as Schemas, c as components } from './_spec-DQ2GR9lq.mjs';
2
+ import { F as FetchOptions, c as StorageMode, B as BoardRequest, A as Awaitable, L as Logger, d as BoardClient, a as SearchSuggestQuery } from './search-CnRMApws.mjs';
3
+ export { e as ACCESS_TOKEN_KEY, f as BOARD_ACCESS_GRANT_KEY, C as CompanySuggestion, g as CustomStorage, R as REFRESH_TOKEN_KEY, b as SuggestResult, S as SuggestionItem, T as TermSuggestion } from './search-CnRMApws.mjs';
4
+ export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-ComPm8FD.mjs';
5
+ import { R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, b as JobsListQuery, c as JobCardListEnvelope, d as JobsSearchBody, e as JobCardSearchEnvelope, f as JobsSimilarQuery, g as SearchEnvelope } from './jobs-DqujLqGk.mjs';
6
+ export { h as CustomFieldValue, C as CustomFieldValues, i as EducationRequirement, j as JobCatalogPagination, k as JobCompany, J as JobSort, O as OfficeLocation, l as OffsetPagination, P as PublicJob, a as PublicJobCard, m as RelatedSearch, n as RemotePermit, o as RemoteTimezone, p as StorefrontPagination } from './jobs-DqujLqGk.mjs';
7
+ 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-CNJVapW5.mjs';
8
+ 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-CNJVapW5.mjs';
9
9
 
10
10
  /**
11
11
  * Well-known `<domain>_<snake_reason>` codes the Board API sends, grouped by
@@ -141,7 +141,7 @@ declare function paginate<Q extends Record<string, unknown>, P extends PageShape
141
141
  * constant because the package is platform-neutral and cannot read
142
142
  * package.json at runtime.
143
143
  */
144
- declare const SDK_VERSION = "1.42.0";
144
+ declare const SDK_VERSION = "1.43.0";
145
145
 
146
146
  type SavedJob = Schemas['SavedJob'];
147
147
  type SavedJobsListQuery = {
package/dist/index.d.ts CHANGED
@@ -1,11 +1,11 @@
1
- import { S as Schemas, c as components } from './_spec-LdkTxfx0.js';
2
- import { F as FetchOptions, c as StorageMode, B as BoardRequest, A as Awaitable, L as Logger, d as BoardClient, a as SearchSuggestQuery } from './search-DWmHHXn8.js';
3
- export { e as ACCESS_TOKEN_KEY, f as BOARD_ACCESS_GRANT_KEY, C as CompanySuggestion, g as CustomStorage, R as REFRESH_TOKEN_KEY, b as SuggestResult, S as SuggestionItem, T as TermSuggestion } from './search-DWmHHXn8.js';
4
- export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-FxC9Wdhi.js';
5
- import { R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, b as JobsListQuery, c as JobCardListEnvelope, d as JobsSearchBody, e as JobCardSearchEnvelope, f as JobsSimilarQuery, g as SearchEnvelope } from './jobs-TIAPH3Ol.js';
6
- export { h as CustomFieldValue, C as CustomFieldValues, i as EducationRequirement, j as JobCatalogPagination, k as JobCompany, J as JobSort, O as OfficeLocation, l as OffsetPagination, P as PublicJob, a as PublicJobCard, m as RelatedSearch, n as RemotePermit, o as RemoteTimezone, p as StorefrontPagination } from './jobs-TIAPH3Ol.js';
7
- 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-BEAqkaFt.js';
8
- 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-BEAqkaFt.js';
1
+ import { S as Schemas, c as components } from './_spec-DQ2GR9lq.js';
2
+ import { F as FetchOptions, c as StorageMode, B as BoardRequest, A as Awaitable, L as Logger, d as BoardClient, a as SearchSuggestQuery } from './search-B1GtdfAm.js';
3
+ export { e as ACCESS_TOKEN_KEY, f as BOARD_ACCESS_GRANT_KEY, C as CompanySuggestion, g as CustomStorage, R as REFRESH_TOKEN_KEY, b as SuggestResult, S as SuggestionItem, T as TermSuggestion } from './search-B1GtdfAm.js';
4
+ export { C as CustomFieldDefinition, a as CustomFieldOption, b as CustomFieldType, P as PublicBoard, c as PublicBoardAnalytics, d as PublicBoardFeatures, e as PublicBoardTheme } from './board-DpBlk05S.js';
5
+ import { R as RemoteOption, E as EmploymentType, S as Seniority, L as ListEnvelope, b as JobsListQuery, c as JobCardListEnvelope, d as JobsSearchBody, e as JobCardSearchEnvelope, f as JobsSimilarQuery, g as SearchEnvelope } from './jobs-BlnV6hmC.js';
6
+ export { h as CustomFieldValue, C as CustomFieldValues, i as EducationRequirement, j as JobCatalogPagination, k as JobCompany, J as JobSort, O as OfficeLocation, l as OffsetPagination, P as PublicJob, a as PublicJobCard, m as RelatedSearch, n as RemotePermit, o as RemoteTimezone, p as StorefrontPagination } from './jobs-BlnV6hmC.js';
7
+ 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-DzM7rbXp.js';
8
+ 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-DzM7rbXp.js';
9
9
 
10
10
  /**
11
11
  * Well-known `<domain>_<snake_reason>` codes the Board API sends, grouped by
@@ -141,7 +141,7 @@ declare function paginate<Q extends Record<string, unknown>, P extends PageShape
141
141
  * constant because the package is platform-neutral and cannot read
142
142
  * package.json at runtime.
143
143
  */
144
- declare const SDK_VERSION = "1.42.0";
144
+ declare const SDK_VERSION = "1.43.0";
145
145
 
146
146
  type SavedJob = Schemas['SavedJob'];
147
147
  type SavedJobsListQuery = {
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.42.0";
315
+ var SDK_VERSION = "1.43.0";
316
316
 
317
317
  // src/client.ts
318
318
  function isRawBody(body) {
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.42.0";
268
+ var SDK_VERSION = "1.43.0";
269
269
 
270
270
  // src/client.ts
271
271
  function isRawBody(body) {
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.js';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.js';
2
2
 
3
3
  /**
4
4
  * Stripe-shaped success envelopes (`01-conventions.md` §5.1). The
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.mjs';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.mjs';
2
2
 
3
3
  /**
4
4
  * Stripe-shaped success envelopes (`01-conventions.md` §5.1). The
@@ -1,5 +1,5 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.mjs';
2
- import { L as ListEnvelope, m as RelatedSearch } from './jobs-BtazrWfv.mjs';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.mjs';
2
+ import { L as ListEnvelope, m as RelatedSearch } from './jobs-DqujLqGk.mjs';
3
3
 
4
4
  /** Author shape embedded on posts (no `object` discriminator). */
5
5
  type BlogAuthorEmbed = Schemas['PublicBlogAuthorEmbed'];
@@ -1,5 +1,5 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.js';
2
- import { L as ListEnvelope, m as RelatedSearch } from './jobs-TIAPH3Ol.js';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.js';
2
+ import { L as ListEnvelope, m as RelatedSearch } from './jobs-BlnV6hmC.js';
3
3
 
4
4
  /** Author shape embedded on posts (no `object` discriminator). */
5
5
  type BlogAuthorEmbed = Schemas['PublicBlogAuthorEmbed'];
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.js';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.js';
2
2
 
3
3
  type Awaitable<T> = T | Promise<T>;
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { S as Schemas } from './_spec-LdkTxfx0.mjs';
1
+ import { S as Schemas } from './_spec-DQ2GR9lq.mjs';
2
2
 
3
3
  type Awaitable<T> = T | Promise<T>;
4
4
  /**
package/dist/seo.d.mts CHANGED
@@ -1,8 +1,8 @@
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-CB9Ve4kS.mjs';
2
- import { P as PublicBoard } from './board-Cs93Lf23.mjs';
3
- import { P as PublicJob } from './jobs-BtazrWfv.mjs';
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-CNJVapW5.mjs';
2
+ import { P as PublicBoard } from './board-ComPm8FD.mjs';
3
+ import { P as PublicJob } from './jobs-DqujLqGk.mjs';
4
4
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.mjs';
5
- import './_spec-LdkTxfx0.mjs';
5
+ import './_spec-DQ2GR9lq.mjs';
6
6
 
7
7
  /**
8
8
  * Google for Jobs `JobPosting` structured data on the `@cavuno/board` wire
package/dist/seo.d.ts CHANGED
@@ -1,8 +1,8 @@
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-BEAqkaFt.js';
2
- import { P as PublicBoard } from './board-FxC9Wdhi.js';
3
- import { P as PublicJob } from './jobs-TIAPH3Ol.js';
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-DzM7rbXp.js';
2
+ import { P as PublicBoard } from './board-DpBlk05S.js';
3
+ import { P as PublicJob } from './jobs-BlnV6hmC.js';
4
4
  import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.js';
5
- import './_spec-LdkTxfx0.js';
5
+ import './_spec-DQ2GR9lq.js';
6
6
 
7
7
  /**
8
8
  * Google for Jobs `JobPosting` structured data on the `@cavuno/board` wire
package/dist/server.d.mts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { BoardSdk } from './index.mjs';
2
- import './_spec-LdkTxfx0.mjs';
3
- import './search-YhoVpXFY.mjs';
4
- import './board-Cs93Lf23.mjs';
5
- import './jobs-BtazrWfv.mjs';
6
- import './salaries-CB9Ve4kS.mjs';
2
+ import './_spec-DQ2GR9lq.mjs';
3
+ import './search-CnRMApws.mjs';
4
+ import './board-ComPm8FD.mjs';
5
+ import './jobs-DqujLqGk.mjs';
6
+ import './salaries-CNJVapW5.mjs';
7
7
 
8
8
  /**
9
9
  * Session cookie codec — pure (no framework imports, no node imports) so it
package/dist/server.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { BoardSdk } from './index.js';
2
- import './_spec-LdkTxfx0.js';
3
- import './search-DWmHHXn8.js';
4
- import './board-FxC9Wdhi.js';
5
- import './jobs-TIAPH3Ol.js';
6
- import './salaries-BEAqkaFt.js';
2
+ import './_spec-DQ2GR9lq.js';
3
+ import './search-B1GtdfAm.js';
4
+ import './board-DpBlk05S.js';
5
+ import './jobs-BlnV6hmC.js';
6
+ import './salaries-DzM7rbXp.js';
7
7
 
8
8
  /**
9
9
  * Session cookie codec — pure (no framework imports, no node imports) so it
@@ -1,9 +1,9 @@
1
1
  import { BoardSdk } from './index.mjs';
2
- import './_spec-LdkTxfx0.mjs';
3
- import './search-YhoVpXFY.mjs';
4
- import './board-Cs93Lf23.mjs';
5
- import './jobs-BtazrWfv.mjs';
6
- import './salaries-CB9Ve4kS.mjs';
2
+ import './_spec-DQ2GR9lq.mjs';
3
+ import './search-CnRMApws.mjs';
4
+ import './board-ComPm8FD.mjs';
5
+ import './jobs-DqujLqGk.mjs';
6
+ import './salaries-CNJVapW5.mjs';
7
7
 
8
8
  /**
9
9
  * Sitemap primitives — the pure XML + bucket-filename logic behind a board
package/dist/sitemap.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import { BoardSdk } from './index.js';
2
- import './_spec-LdkTxfx0.js';
3
- import './search-DWmHHXn8.js';
4
- import './board-FxC9Wdhi.js';
5
- import './jobs-TIAPH3Ol.js';
6
- import './salaries-BEAqkaFt.js';
2
+ import './_spec-DQ2GR9lq.js';
3
+ import './search-B1GtdfAm.js';
4
+ import './board-DpBlk05S.js';
5
+ import './jobs-BlnV6hmC.js';
6
+ import './salaries-DzM7rbXp.js';
7
7
 
8
8
  /**
9
9
  * Sitemap primitives — the pure XML + bucket-filename logic behind a board
@@ -1,5 +1,5 @@
1
- import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-YhoVpXFY.mjs';
2
- import './_spec-LdkTxfx0.mjs';
1
+ import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-CnRMApws.mjs';
2
+ import './_spec-DQ2GR9lq.mjs';
3
3
 
4
4
  /**
5
5
  * `@cavuno/board/suggest` — framework-agnostic headless search-suggest
package/dist/suggest.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-DWmHHXn8.js';
2
- import './_spec-LdkTxfx0.js';
1
+ import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-B1GtdfAm.js';
2
+ import './_spec-DQ2GR9lq.js';
3
3
 
4
4
  /**
5
5
  * `@cavuno/board/suggest` — framework-agnostic headless search-suggest
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cavuno/board",
3
- "version": "1.42.0",
3
+ "version": "1.43.0",
4
4
  "description": "Typed isomorphic client for the Cavuno Board API",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.42.0",
2
+ "version": "1.43.0",
3
3
  "skills": [
4
4
  {
5
5
  "name": "cavuno-board-account",