@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 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"] & unknown;
1033
- next: components["schemas"]["PublicBlogPostSummary"] & unknown;
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
- [key: string]: unknown;
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.6.0";
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"] & unknown;
2638
- next: components["schemas"]["PublicBlogPostSummary"] & unknown;
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
- [key: string]: unknown;
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"] & unknown;
1033
- next: components["schemas"]["PublicBlogPostSummary"] & unknown;
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
- [key: string]: unknown;
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.6.0";
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"] & unknown;
2638
- next: components["schemas"]["PublicBlogPostSummary"] & unknown;
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
- [key: string]: unknown;
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
@@ -149,7 +149,7 @@ async function clearSession(storage) {
149
149
  }
150
150
 
151
151
  // src/version.ts
152
- var SDK_VERSION = "1.6.0";
152
+ var SDK_VERSION = "1.7.0";
153
153
 
154
154
  // src/client.ts
155
155
  function isRawBody(body) {
package/dist/index.mjs CHANGED
@@ -109,7 +109,7 @@ async function clearSession(storage) {
109
109
  }
110
110
 
111
111
  // src/version.ts
112
- var SDK_VERSION = "1.6.0";
112
+ var SDK_VERSION = "1.7.0";
113
113
 
114
114
  // src/client.ts
115
115
  function isRawBody(body) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cavuno/board",
3
- "version": "1.6.0",
3
+ "version": "1.7.0",
4
4
  "description": "Typed isomorphic client for the Cavuno Board API",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.6.0",
2
+ "version": "1.7.0",
3
3
  "skills": [
4
4
  {
5
5
  "name": "cavuno-board-auth",