@cavuno/board 1.6.0 → 1.7.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 +19 -7
- package/dist/index.d.ts +19 -7
- 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
|
@@ -1029,8 +1029,8 @@ interface components {
|
|
|
1029
1029
|
PublicBlogAdjacentPosts: {
|
|
1030
1030
|
/** @enum {string} */
|
|
1031
1031
|
object: "blog_adjacent_posts";
|
|
1032
|
-
previous: components["schemas"]["PublicBlogPostSummary"]
|
|
1033
|
-
next: components["schemas"]["PublicBlogPostSummary"]
|
|
1032
|
+
previous: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
1033
|
+
next: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
1034
1034
|
};
|
|
1035
1035
|
PublicBlogAuthor: components["schemas"]["PublicBlogAuthorEmbed"] & {
|
|
1036
1036
|
/** @enum {string} */
|
|
@@ -1300,7 +1300,13 @@ interface components {
|
|
|
1300
1300
|
frequency: string;
|
|
1301
1301
|
isActive: boolean;
|
|
1302
1302
|
filters: {
|
|
1303
|
-
|
|
1303
|
+
jobFunctions?: string[];
|
|
1304
|
+
seniorityLevels?: string[];
|
|
1305
|
+
remoteOptions?: string[];
|
|
1306
|
+
placeIds?: string[];
|
|
1307
|
+
salaryMin?: number | null;
|
|
1308
|
+
salaryMax?: number | null;
|
|
1309
|
+
salaryCurrency?: string | null;
|
|
1304
1310
|
};
|
|
1305
1311
|
manageToken: string;
|
|
1306
1312
|
}[];
|
|
@@ -2088,7 +2094,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
|
|
|
2088
2094
|
* constant because the package is platform-neutral and cannot read
|
|
2089
2095
|
* package.json at runtime.
|
|
2090
2096
|
*/
|
|
2091
|
-
declare const SDK_VERSION = "1.
|
|
2097
|
+
declare const SDK_VERSION = "1.7.0";
|
|
2092
2098
|
|
|
2093
2099
|
type BoardUser = Schemas['BoardUser'];
|
|
2094
2100
|
type BoardAuthSession = Schemas['BoardAuthSession'];
|
|
@@ -2634,8 +2640,8 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2634
2640
|
}>;
|
|
2635
2641
|
adjacent(postSlug: string, options?: FetchOptions): Promise<{
|
|
2636
2642
|
object: "blog_adjacent_posts";
|
|
2637
|
-
previous: components["schemas"]["PublicBlogPostSummary"]
|
|
2638
|
-
next: components["schemas"]["PublicBlogPostSummary"]
|
|
2643
|
+
previous: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
2644
|
+
next: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
2639
2645
|
}>;
|
|
2640
2646
|
similar(postSlug: string, query?: BlogSimilarQuery, options?: FetchOptions): Promise<ListEnvelope<{
|
|
2641
2647
|
id: string;
|
|
@@ -2870,7 +2876,13 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2870
2876
|
frequency: string;
|
|
2871
2877
|
isActive: boolean;
|
|
2872
2878
|
filters: {
|
|
2873
|
-
|
|
2879
|
+
jobFunctions?: string[];
|
|
2880
|
+
seniorityLevels?: string[];
|
|
2881
|
+
remoteOptions?: string[];
|
|
2882
|
+
placeIds?: string[];
|
|
2883
|
+
salaryMin?: number | null;
|
|
2884
|
+
salaryMax?: number | null;
|
|
2885
|
+
salaryCurrency?: string | null;
|
|
2874
2886
|
};
|
|
2875
2887
|
manageToken: string;
|
|
2876
2888
|
}[];
|
package/dist/index.d.ts
CHANGED
|
@@ -1029,8 +1029,8 @@ interface components {
|
|
|
1029
1029
|
PublicBlogAdjacentPosts: {
|
|
1030
1030
|
/** @enum {string} */
|
|
1031
1031
|
object: "blog_adjacent_posts";
|
|
1032
|
-
previous: components["schemas"]["PublicBlogPostSummary"]
|
|
1033
|
-
next: components["schemas"]["PublicBlogPostSummary"]
|
|
1032
|
+
previous: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
1033
|
+
next: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
1034
1034
|
};
|
|
1035
1035
|
PublicBlogAuthor: components["schemas"]["PublicBlogAuthorEmbed"] & {
|
|
1036
1036
|
/** @enum {string} */
|
|
@@ -1300,7 +1300,13 @@ interface components {
|
|
|
1300
1300
|
frequency: string;
|
|
1301
1301
|
isActive: boolean;
|
|
1302
1302
|
filters: {
|
|
1303
|
-
|
|
1303
|
+
jobFunctions?: string[];
|
|
1304
|
+
seniorityLevels?: string[];
|
|
1305
|
+
remoteOptions?: string[];
|
|
1306
|
+
placeIds?: string[];
|
|
1307
|
+
salaryMin?: number | null;
|
|
1308
|
+
salaryMax?: number | null;
|
|
1309
|
+
salaryCurrency?: string | null;
|
|
1304
1310
|
};
|
|
1305
1311
|
manageToken: string;
|
|
1306
1312
|
}[];
|
|
@@ -2088,7 +2094,7 @@ declare function isConflict(e: unknown): e is BoardApiError;
|
|
|
2088
2094
|
* constant because the package is platform-neutral and cannot read
|
|
2089
2095
|
* package.json at runtime.
|
|
2090
2096
|
*/
|
|
2091
|
-
declare const SDK_VERSION = "1.
|
|
2097
|
+
declare const SDK_VERSION = "1.7.0";
|
|
2092
2098
|
|
|
2093
2099
|
type BoardUser = Schemas['BoardUser'];
|
|
2094
2100
|
type BoardAuthSession = Schemas['BoardAuthSession'];
|
|
@@ -2634,8 +2640,8 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2634
2640
|
}>;
|
|
2635
2641
|
adjacent(postSlug: string, options?: FetchOptions): Promise<{
|
|
2636
2642
|
object: "blog_adjacent_posts";
|
|
2637
|
-
previous: components["schemas"]["PublicBlogPostSummary"]
|
|
2638
|
-
next: components["schemas"]["PublicBlogPostSummary"]
|
|
2643
|
+
previous: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
2644
|
+
next: components["schemas"]["PublicBlogPostSummary"] | null;
|
|
2639
2645
|
}>;
|
|
2640
2646
|
similar(postSlug: string, query?: BlogSimilarQuery, options?: FetchOptions): Promise<ListEnvelope<{
|
|
2641
2647
|
id: string;
|
|
@@ -2870,7 +2876,13 @@ declare function createBoardClient(options: CreateBoardClientOptions): {
|
|
|
2870
2876
|
frequency: string;
|
|
2871
2877
|
isActive: boolean;
|
|
2872
2878
|
filters: {
|
|
2873
|
-
|
|
2879
|
+
jobFunctions?: string[];
|
|
2880
|
+
seniorityLevels?: string[];
|
|
2881
|
+
remoteOptions?: string[];
|
|
2882
|
+
placeIds?: string[];
|
|
2883
|
+
salaryMin?: number | null;
|
|
2884
|
+
salaryMax?: number | null;
|
|
2885
|
+
salaryCurrency?: string | null;
|
|
2874
2886
|
};
|
|
2875
2887
|
manageToken: string;
|
|
2876
2888
|
}[];
|
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
package/skills/manifest.json
CHANGED