@cavuno/board 1.17.0 → 1.18.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/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/skills/manifest.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2977,7 +2977,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
|
|
|
2977
2977
|
* constant because the package is platform-neutral and cannot read
|
|
2978
2978
|
* package.json at runtime.
|
|
2979
2979
|
*/
|
|
2980
|
-
declare const SDK_VERSION = "1.
|
|
2980
|
+
declare const SDK_VERSION = "1.18.0";
|
|
2981
2981
|
|
|
2982
2982
|
type BoardUser = Schemas['BoardUser'];
|
|
2983
2983
|
type BoardAuthSession = Schemas['BoardAuthSession'];
|
|
@@ -3098,6 +3098,11 @@ type CompaniesListQuery = {
|
|
|
3098
3098
|
marketSlug?: string;
|
|
3099
3099
|
/** 1–100. */
|
|
3100
3100
|
limit?: number;
|
|
3101
|
+
/**
|
|
3102
|
+
* Storefront page offset (companies to skip); takes precedence over
|
|
3103
|
+
* `cursor`. Pair with the response `count` to page in parallel.
|
|
3104
|
+
*/
|
|
3105
|
+
offset?: number;
|
|
3101
3106
|
};
|
|
3102
3107
|
type CompanyJobsListQuery = {
|
|
3103
3108
|
cursor?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -2977,7 +2977,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
|
|
|
2977
2977
|
* constant because the package is platform-neutral and cannot read
|
|
2978
2978
|
* package.json at runtime.
|
|
2979
2979
|
*/
|
|
2980
|
-
declare const SDK_VERSION = "1.
|
|
2980
|
+
declare const SDK_VERSION = "1.18.0";
|
|
2981
2981
|
|
|
2982
2982
|
type BoardUser = Schemas['BoardUser'];
|
|
2983
2983
|
type BoardAuthSession = Schemas['BoardAuthSession'];
|
|
@@ -3098,6 +3098,11 @@ type CompaniesListQuery = {
|
|
|
3098
3098
|
marketSlug?: string;
|
|
3099
3099
|
/** 1–100. */
|
|
3100
3100
|
limit?: number;
|
|
3101
|
+
/**
|
|
3102
|
+
* Storefront page offset (companies to skip); takes precedence over
|
|
3103
|
+
* `cursor`. Pair with the response `count` to page in parallel.
|
|
3104
|
+
*/
|
|
3105
|
+
offset?: number;
|
|
3101
3106
|
};
|
|
3102
3107
|
type CompanyJobsListQuery = {
|
|
3103
3108
|
cursor?: string;
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
package/skills/manifest.json
CHANGED