@cavuno/board 1.35.0 → 1.36.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-Be8dY9Ba.d.mts → board-B0Fc98yY.d.mts} +1 -1
- package/dist/{board-DsRbgz_D.d.ts → board-Z6pLCWxK.d.ts} +1 -1
- package/dist/filters.d.mts +2 -2
- package/dist/filters.d.ts +2 -2
- package/dist/filters.js +3 -6
- package/dist/filters.mjs +3 -6
- package/dist/format.d.mts +4 -4
- package/dist/format.d.ts +4 -4
- package/dist/format.js +3 -6
- package/dist/format.mjs +3 -6
- package/dist/index.d.mts +42 -33
- package/dist/index.d.ts +42 -33
- package/dist/index.js +22 -17
- package/dist/index.mjs +22 -17
- package/dist/{jobs-BFLMDNEN.d.mts → jobs-5qXIfBcR.d.mts} +762 -35
- package/dist/{jobs-BFLMDNEN.d.ts → jobs-5qXIfBcR.d.ts} +762 -35
- package/dist/{salaries-pO_vGORE.d.mts → salaries-CfJl9Hgx.d.mts} +1 -1
- package/dist/{salaries-negE75t8.d.ts → salaries-K06ScmSn.d.ts} +1 -1
- package/dist/seo.d.mts +4 -4
- package/dist/seo.d.ts +4 -4
- package/dist/seo.js +3 -6
- package/dist/seo.mjs +3 -6
- 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/dist/{ui-copy-rlfoH9P3.d.mts → ui-copy-CKfFTtLk.d.mts} +0 -1
- package/dist/{ui-copy-rlfoH9P3.d.ts → ui-copy-CKfFTtLk.d.ts} +0 -1
- package/package.json +1 -1
- package/skills/cavuno-board-filters/SKILL.md +43 -3
- package/skills/cavuno-board-job-alerts/SKILL.md +3 -4
- package/skills/cavuno-board-job-posting/SKILL.md +8 -22
- package/skills/cavuno-board-smoke-test/SKILL.md +1 -1
- package/skills/manifest.json +2 -2
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.36.0";
|
|
269
269
|
|
|
270
270
|
// src/client.ts
|
|
271
271
|
function isRawBody(body) {
|
|
@@ -926,13 +926,6 @@ function jobPostingNamespace(client) {
|
|
|
926
926
|
query: { domain }
|
|
927
927
|
});
|
|
928
928
|
},
|
|
929
|
-
/** Does this email already have billing credit on the board? */
|
|
930
|
-
checkBilling(input, options) {
|
|
931
|
-
return client.fetch(
|
|
932
|
-
"/job-postings/check-billing",
|
|
933
|
-
{ ...options, method: "POST", body: input }
|
|
934
|
-
);
|
|
935
|
-
},
|
|
936
929
|
/** Email a billing-verification token (then pass it to `getBillingOptions`). */
|
|
937
930
|
sendBillingVerification(input, options) {
|
|
938
931
|
return client.fetch(
|
|
@@ -946,13 +939,6 @@ function jobPostingNamespace(client) {
|
|
|
946
939
|
"/job-postings/billing-options",
|
|
947
940
|
{ ...options, method: "POST", body: input }
|
|
948
941
|
);
|
|
949
|
-
},
|
|
950
|
-
/** The featured/active entitlements a verified email's subscription grants. */
|
|
951
|
-
checkSubscriptionEntitlements(input, options) {
|
|
952
|
-
return client.fetch(
|
|
953
|
-
"/job-postings/subscription-entitlements",
|
|
954
|
-
{ ...options, method: "POST", body: input }
|
|
955
|
-
);
|
|
956
942
|
}
|
|
957
943
|
};
|
|
958
944
|
}
|
|
@@ -2498,10 +2484,29 @@ function taxonomyResolver(client, kind) {
|
|
|
2498
2484
|
}
|
|
2499
2485
|
};
|
|
2500
2486
|
}
|
|
2487
|
+
function taxonomyCollection(client, kind) {
|
|
2488
|
+
return {
|
|
2489
|
+
...taxonomyResolver(client, kind),
|
|
2490
|
+
list(query, options) {
|
|
2491
|
+
return client.fetch(`/${kind}`, {
|
|
2492
|
+
...options,
|
|
2493
|
+
query
|
|
2494
|
+
});
|
|
2495
|
+
}
|
|
2496
|
+
};
|
|
2497
|
+
}
|
|
2501
2498
|
function taxonomyNamespace(client) {
|
|
2502
2499
|
return {
|
|
2503
|
-
categories:
|
|
2504
|
-
skills:
|
|
2500
|
+
categories: taxonomyCollection(client, "categories"),
|
|
2501
|
+
skills: taxonomyCollection(client, "skills"),
|
|
2502
|
+
suggestions: {
|
|
2503
|
+
list(query, options) {
|
|
2504
|
+
return client.fetch("/suggestions", {
|
|
2505
|
+
...options,
|
|
2506
|
+
query
|
|
2507
|
+
});
|
|
2508
|
+
}
|
|
2509
|
+
},
|
|
2505
2510
|
places: {
|
|
2506
2511
|
...taxonomyResolver(client, "places"),
|
|
2507
2512
|
/**
|