@cavuno/board 1.44.0 → 2.0.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/{_spec-CoL3oYpG.d.mts → _spec-C7vqY_b3.d.mts} +532 -626
- package/dist/{_spec-CoL3oYpG.d.ts → _spec-C7vqY_b3.d.ts} +532 -626
- package/dist/bin.mjs +22 -1
- package/dist/{board-DZCw7A6P.d.ts → board-B8tJGX4i.d.ts} +1 -1
- package/dist/{board-BwFW1aU2.d.mts → board-DmRuCA8m.d.mts} +1 -1
- package/dist/doctor.js +22 -1
- package/dist/doctor.mjs +22 -1
- package/dist/filters.d.mts +2 -2
- package/dist/filters.d.ts +2 -2
- package/dist/format.d.mts +3 -3
- package/dist/format.d.ts +3 -3
- package/dist/index.d.mts +9 -9
- package/dist/index.d.ts +9 -9
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{jobs-BVazo4mA.d.ts → jobs-BEYJY97F.d.ts} +1 -1
- package/dist/{jobs-CSMshXGV.d.mts → jobs-DJiISpqX.d.mts} +1 -1
- package/dist/{salaries-IJlchnWk.d.mts → salaries-B_Xb5k2s.d.mts} +2 -2
- package/dist/{salaries-DMQsjLrV.d.ts → salaries-D6q7h1J6.d.ts} +2 -2
- package/dist/{search-B7gr_wOd.d.ts → search-CnOIZEuc.d.ts} +1 -1
- package/dist/{search-B6FJifRE.d.mts → search-uC_ijbdu.d.mts} +1 -1
- package/dist/seo.d.mts +4 -4
- package/dist/seo.d.ts +4 -4
- package/dist/server.d.mts +5 -5
- package/dist/server.d.ts +5 -5
- package/dist/sitemap.d.mts +5 -5
- package/dist/sitemap.d.ts +5 -5
- package/dist/suggest.d.mts +2 -2
- package/dist/suggest.d.ts +2 -2
- package/package.json +1 -1
- package/skills/manifest.json +1 -1
package/dist/bin.mjs
CHANGED
|
@@ -189,6 +189,25 @@ function isOffendingSink(lines, index) {
|
|
|
189
189
|
if (!hasCookieWriteSink(stripped)) return false;
|
|
190
190
|
return DOMAIN_SCOPE.test(statementWindow(lines, index));
|
|
191
191
|
}
|
|
192
|
+
var GENERATED_DIRS = /* @__PURE__ */ new Set([
|
|
193
|
+
"paraglide",
|
|
194
|
+
"generated",
|
|
195
|
+
"_generated",
|
|
196
|
+
"__generated__"
|
|
197
|
+
]);
|
|
198
|
+
var GENERATED_FILE = /\.gen\.(?:ts|tsx|js|jsx|mjs|cjs)$/;
|
|
199
|
+
var GENERATED_BANNER = /@generated|generated by|generated from|auto-?generated|do not edit|don't edit/i;
|
|
200
|
+
var BANNER_SCAN_LINES = 5;
|
|
201
|
+
function hasGeneratedBanner(text) {
|
|
202
|
+
const lines = text.split(/\r?\n/);
|
|
203
|
+
const limit = Math.min(lines.length, BANNER_SCAN_LINES);
|
|
204
|
+
for (let i = 0; i < limit; i += 1) {
|
|
205
|
+
const line = lines[i];
|
|
206
|
+
if (!isCommentLine(line)) return false;
|
|
207
|
+
if (GENERATED_BANNER.test(line)) return true;
|
|
208
|
+
}
|
|
209
|
+
return false;
|
|
210
|
+
}
|
|
192
211
|
function walkSourceFiles(dir, out) {
|
|
193
212
|
let entries;
|
|
194
213
|
try {
|
|
@@ -198,6 +217,7 @@ function walkSourceFiles(dir, out) {
|
|
|
198
217
|
}
|
|
199
218
|
for (const name of entries) {
|
|
200
219
|
if (name === "node_modules" || name.startsWith(".")) continue;
|
|
220
|
+
if (GENERATED_DIRS.has(name) || GENERATED_FILE.test(name)) continue;
|
|
201
221
|
const full = join(dir, name);
|
|
202
222
|
let st;
|
|
203
223
|
try {
|
|
@@ -237,6 +257,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
237
257
|
} catch {
|
|
238
258
|
continue;
|
|
239
259
|
}
|
|
260
|
+
if (hasGeneratedBanner(text)) continue;
|
|
240
261
|
const lines = text.split(/\r?\n/);
|
|
241
262
|
for (let i = 0; i < lines.length; i += 1) {
|
|
242
263
|
if (!isOffendingSink(lines, i)) continue;
|
|
@@ -247,7 +268,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
247
268
|
return [
|
|
248
269
|
COOKIE(
|
|
249
270
|
"pass",
|
|
250
|
-
"no domain-scoped Set-Cookie or document.cookie writes in src/"
|
|
271
|
+
"no domain-scoped Set-Cookie or document.cookie writes in app-authored src/ (generated output skipped)"
|
|
251
272
|
)
|
|
252
273
|
];
|
|
253
274
|
}
|
package/dist/doctor.js
CHANGED
|
@@ -217,6 +217,25 @@ function isOffendingSink(lines, index) {
|
|
|
217
217
|
if (!hasCookieWriteSink(stripped)) return false;
|
|
218
218
|
return DOMAIN_SCOPE.test(statementWindow(lines, index));
|
|
219
219
|
}
|
|
220
|
+
var GENERATED_DIRS = /* @__PURE__ */ new Set([
|
|
221
|
+
"paraglide",
|
|
222
|
+
"generated",
|
|
223
|
+
"_generated",
|
|
224
|
+
"__generated__"
|
|
225
|
+
]);
|
|
226
|
+
var GENERATED_FILE = /\.gen\.(?:ts|tsx|js|jsx|mjs|cjs)$/;
|
|
227
|
+
var GENERATED_BANNER = /@generated|generated by|generated from|auto-?generated|do not edit|don't edit/i;
|
|
228
|
+
var BANNER_SCAN_LINES = 5;
|
|
229
|
+
function hasGeneratedBanner(text) {
|
|
230
|
+
const lines = text.split(/\r?\n/);
|
|
231
|
+
const limit = Math.min(lines.length, BANNER_SCAN_LINES);
|
|
232
|
+
for (let i = 0; i < limit; i += 1) {
|
|
233
|
+
const line = lines[i];
|
|
234
|
+
if (!isCommentLine(line)) return false;
|
|
235
|
+
if (GENERATED_BANNER.test(line)) return true;
|
|
236
|
+
}
|
|
237
|
+
return false;
|
|
238
|
+
}
|
|
220
239
|
function walkSourceFiles(dir, out) {
|
|
221
240
|
let entries;
|
|
222
241
|
try {
|
|
@@ -226,6 +245,7 @@ function walkSourceFiles(dir, out) {
|
|
|
226
245
|
}
|
|
227
246
|
for (const name of entries) {
|
|
228
247
|
if (name === "node_modules" || name.startsWith(".")) continue;
|
|
248
|
+
if (GENERATED_DIRS.has(name) || GENERATED_FILE.test(name)) continue;
|
|
229
249
|
const full = (0, import_node_path2.join)(dir, name);
|
|
230
250
|
let st;
|
|
231
251
|
try {
|
|
@@ -265,6 +285,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
265
285
|
} catch {
|
|
266
286
|
continue;
|
|
267
287
|
}
|
|
288
|
+
if (hasGeneratedBanner(text)) continue;
|
|
268
289
|
const lines = text.split(/\r?\n/);
|
|
269
290
|
for (let i = 0; i < lines.length; i += 1) {
|
|
270
291
|
if (!isOffendingSink(lines, i)) continue;
|
|
@@ -275,7 +296,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
275
296
|
return [
|
|
276
297
|
COOKIE(
|
|
277
298
|
"pass",
|
|
278
|
-
"no domain-scoped Set-Cookie or document.cookie writes in src/"
|
|
299
|
+
"no domain-scoped Set-Cookie or document.cookie writes in app-authored src/ (generated output skipped)"
|
|
279
300
|
)
|
|
280
301
|
];
|
|
281
302
|
}
|
package/dist/doctor.mjs
CHANGED
|
@@ -187,6 +187,25 @@ function isOffendingSink(lines, index) {
|
|
|
187
187
|
if (!hasCookieWriteSink(stripped)) return false;
|
|
188
188
|
return DOMAIN_SCOPE.test(statementWindow(lines, index));
|
|
189
189
|
}
|
|
190
|
+
var GENERATED_DIRS = /* @__PURE__ */ new Set([
|
|
191
|
+
"paraglide",
|
|
192
|
+
"generated",
|
|
193
|
+
"_generated",
|
|
194
|
+
"__generated__"
|
|
195
|
+
]);
|
|
196
|
+
var GENERATED_FILE = /\.gen\.(?:ts|tsx|js|jsx|mjs|cjs)$/;
|
|
197
|
+
var GENERATED_BANNER = /@generated|generated by|generated from|auto-?generated|do not edit|don't edit/i;
|
|
198
|
+
var BANNER_SCAN_LINES = 5;
|
|
199
|
+
function hasGeneratedBanner(text) {
|
|
200
|
+
const lines = text.split(/\r?\n/);
|
|
201
|
+
const limit = Math.min(lines.length, BANNER_SCAN_LINES);
|
|
202
|
+
for (let i = 0; i < limit; i += 1) {
|
|
203
|
+
const line = lines[i];
|
|
204
|
+
if (!isCommentLine(line)) return false;
|
|
205
|
+
if (GENERATED_BANNER.test(line)) return true;
|
|
206
|
+
}
|
|
207
|
+
return false;
|
|
208
|
+
}
|
|
190
209
|
function walkSourceFiles(dir, out) {
|
|
191
210
|
let entries;
|
|
192
211
|
try {
|
|
@@ -196,6 +215,7 @@ function walkSourceFiles(dir, out) {
|
|
|
196
215
|
}
|
|
197
216
|
for (const name of entries) {
|
|
198
217
|
if (name === "node_modules" || name.startsWith(".")) continue;
|
|
218
|
+
if (GENERATED_DIRS.has(name) || GENERATED_FILE.test(name)) continue;
|
|
199
219
|
const full = join(dir, name);
|
|
200
220
|
let st;
|
|
201
221
|
try {
|
|
@@ -235,6 +255,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
235
255
|
} catch {
|
|
236
256
|
continue;
|
|
237
257
|
}
|
|
258
|
+
if (hasGeneratedBanner(text)) continue;
|
|
238
259
|
const lines = text.split(/\r?\n/);
|
|
239
260
|
for (let i = 0; i < lines.length; i += 1) {
|
|
240
261
|
if (!isOffendingSink(lines, i)) continue;
|
|
@@ -245,7 +266,7 @@ function checkCookieCodecConformance(projectRoot) {
|
|
|
245
266
|
return [
|
|
246
267
|
COOKIE(
|
|
247
268
|
"pass",
|
|
248
|
-
"no domain-scoped Set-Cookie or document.cookie writes in src/"
|
|
269
|
+
"no domain-scoped Set-Cookie or document.cookie writes in app-authored src/ (generated output skipped)"
|
|
249
270
|
)
|
|
250
271
|
];
|
|
251
272
|
}
|
package/dist/filters.d.mts
CHANGED
|
@@ -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-
|
|
3
|
-
import './_spec-
|
|
2
|
+
import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-DJiISpqX.mjs';
|
|
3
|
+
import './_spec-C7vqY_b3.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-
|
|
3
|
-
import './_spec-
|
|
2
|
+
import { J as JobSort, E as EmploymentType, R as RemoteOption, S as Seniority } from './jobs-BEYJY97F.js';
|
|
3
|
+
import './_spec-C7vqY_b3.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-
|
|
1
|
+
import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-DJiISpqX.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-
|
|
5
|
-
import './_spec-
|
|
4
|
+
import { C as CustomFieldDefinition } from './board-DmRuCA8m.mjs';
|
|
5
|
+
import './_spec-C7vqY_b3.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-
|
|
1
|
+
import { P as PublicJob, a as PublicJobCard, C as CustomFieldValues } from './jobs-BEYJY97F.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-
|
|
5
|
-
import './_spec-
|
|
4
|
+
import { C as CustomFieldDefinition } from './board-B8tJGX4i.js';
|
|
5
|
+
import './_spec-C7vqY_b3.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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
1
|
+
import { S as Schemas, c as components } from './_spec-C7vqY_b3.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-uC_ijbdu.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-uC_ijbdu.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-DmRuCA8m.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-DJiISpqX.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-DJiISpqX.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-B_Xb5k2s.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-B_Xb5k2s.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 = "
|
|
144
|
+
declare const SDK_VERSION = "2.0.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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
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-
|
|
1
|
+
import { S as Schemas, c as components } from './_spec-C7vqY_b3.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-CnOIZEuc.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-CnOIZEuc.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-B8tJGX4i.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-BEYJY97F.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-BEYJY97F.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-D6q7h1J6.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-D6q7h1J6.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 = "
|
|
144
|
+
declare const SDK_VERSION = "2.0.0";
|
|
145
145
|
|
|
146
146
|
type SavedJob = Schemas['SavedJob'];
|
|
147
147
|
type SavedJobsListQuery = {
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as Schemas } from './_spec-
|
|
2
|
-
import { L as ListEnvelope, m as RelatedSearch } from './jobs-
|
|
1
|
+
import { S as Schemas } from './_spec-C7vqY_b3.mjs';
|
|
2
|
+
import { L as ListEnvelope, m as RelatedSearch } from './jobs-DJiISpqX.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-
|
|
2
|
-
import { L as ListEnvelope, m as RelatedSearch } from './jobs-
|
|
1
|
+
import { S as Schemas } from './_spec-C7vqY_b3.js';
|
|
2
|
+
import { L as ListEnvelope, m as RelatedSearch } from './jobs-BEYJY97F.js';
|
|
3
3
|
|
|
4
4
|
/** Author shape embedded on posts (no `object` discriminator). */
|
|
5
5
|
type BlogAuthorEmbed = Schemas['PublicBlogAuthorEmbed'];
|
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-
|
|
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-B_Xb5k2s.mjs';
|
|
2
|
+
import { P as PublicBoard } from './board-DmRuCA8m.mjs';
|
|
3
|
+
import { P as PublicJob } from './jobs-DJiISpqX.mjs';
|
|
4
4
|
import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.mjs';
|
|
5
|
-
import './_spec-
|
|
5
|
+
import './_spec-C7vqY_b3.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-
|
|
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-D6q7h1J6.js';
|
|
2
|
+
import { P as PublicBoard } from './board-B8tJGX4i.js';
|
|
3
|
+
import { P as PublicJob } from './jobs-BEYJY97F.js';
|
|
4
4
|
import { B as BoardLabelOverrides } from './ui-copy-CKfFTtLk.js';
|
|
5
|
-
import './_spec-
|
|
5
|
+
import './_spec-C7vqY_b3.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-
|
|
3
|
-
import './search-
|
|
4
|
-
import './board-
|
|
5
|
-
import './jobs-
|
|
6
|
-
import './salaries-
|
|
2
|
+
import './_spec-C7vqY_b3.mjs';
|
|
3
|
+
import './search-uC_ijbdu.mjs';
|
|
4
|
+
import './board-DmRuCA8m.mjs';
|
|
5
|
+
import './jobs-DJiISpqX.mjs';
|
|
6
|
+
import './salaries-B_Xb5k2s.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-
|
|
3
|
-
import './search-
|
|
4
|
-
import './board-
|
|
5
|
-
import './jobs-
|
|
6
|
-
import './salaries-
|
|
2
|
+
import './_spec-C7vqY_b3.js';
|
|
3
|
+
import './search-CnOIZEuc.js';
|
|
4
|
+
import './board-B8tJGX4i.js';
|
|
5
|
+
import './jobs-BEYJY97F.js';
|
|
6
|
+
import './salaries-D6q7h1J6.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Session cookie codec — pure (no framework imports, no node imports) so it
|
package/dist/sitemap.d.mts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { BoardSdk } from './index.mjs';
|
|
2
|
-
import './_spec-
|
|
3
|
-
import './search-
|
|
4
|
-
import './board-
|
|
5
|
-
import './jobs-
|
|
6
|
-
import './salaries-
|
|
2
|
+
import './_spec-C7vqY_b3.mjs';
|
|
3
|
+
import './search-uC_ijbdu.mjs';
|
|
4
|
+
import './board-DmRuCA8m.mjs';
|
|
5
|
+
import './jobs-DJiISpqX.mjs';
|
|
6
|
+
import './salaries-B_Xb5k2s.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-
|
|
3
|
-
import './search-
|
|
4
|
-
import './board-
|
|
5
|
-
import './jobs-
|
|
6
|
-
import './salaries-
|
|
2
|
+
import './_spec-C7vqY_b3.js';
|
|
3
|
+
import './search-CnOIZEuc.js';
|
|
4
|
+
import './board-B8tJGX4i.js';
|
|
5
|
+
import './jobs-BEYJY97F.js';
|
|
6
|
+
import './salaries-D6q7h1J6.js';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* Sitemap primitives — the pure XML + bucket-filename logic behind a board
|
package/dist/suggest.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-
|
|
2
|
-
import './_spec-
|
|
1
|
+
import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-uC_ijbdu.mjs';
|
|
2
|
+
import './_spec-C7vqY_b3.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-
|
|
2
|
-
import './_spec-
|
|
1
|
+
import { S as SuggestionItem, a as SearchSuggestQuery, F as FetchOptions, b as SuggestResult } from './search-CnOIZEuc.js';
|
|
2
|
+
import './_spec-C7vqY_b3.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* `@cavuno/board/suggest` — framework-agnostic headless search-suggest
|
package/package.json
CHANGED
package/skills/manifest.json
CHANGED