@petercatai/whisker-client 0.1.202506250219-dev → 0.1.202506250857-dev

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/api.d.ts CHANGED
@@ -2529,9 +2529,9 @@ export interface IYuqueSplitConfig {
2529
2529
  chunk_overlap?: number;
2530
2530
  /**
2531
2531
  * Type
2532
- * @default "yuque"
2532
+ * @default "yuquedoc"
2533
2533
  */
2534
- type?: "yuque";
2534
+ type?: "yuquedoc";
2535
2535
  /**
2536
2536
  * Separators
2537
2537
  * List of separators to split the text. If None, uses default separators
@@ -3005,16 +3005,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
3005
3005
  */
3006
3006
  getAllExpiredApiKeys: (params?: RequestParams) => Promise<HttpResponse<IResponseModelListAPIKey, void | IHTTPValidationError>>;
3007
3007
  };
3008
- api: {
3008
+ v1: {
3009
3009
  /**
3010
3010
  * No description
3011
3011
  *
3012
3012
  * @tags agent
3013
- * @name ProResearchV1ApiAgentProResearchPost
3013
+ * @name ProResearchApiV1AgentProResearchPost
3014
3014
  * @summary Pro Research
3015
- * @request POST:/v1/api/agent/pro_research
3015
+ * @request POST:/api/v1/agent/pro_research
3016
3016
  */
3017
- proResearchV1ApiAgentProResearchPost: (data: IProResearchRequest, params?: RequestParams) => Promise<HttpResponse<any, void | IHTTPValidationError>>;
3017
+ proResearchApiV1AgentProResearchPost: (data: IProResearchRequest, params?: RequestParams) => Promise<HttpResponse<any, void | IHTTPValidationError>>;
3018
3018
  };
3019
3019
  healthChecker: {
3020
3020
  /**
package/dist/api.js CHANGED
@@ -677,16 +677,16 @@ class Api extends HttpClient {
677
677
  */
678
678
  getAllExpiredApiKeys: (params = {}) => this.request(Object.assign({ path: `/api/api_key/expired`, method: "GET", format: "json" }, params)),
679
679
  };
680
- this.api = {
680
+ this.v1 = {
681
681
  /**
682
682
  * No description
683
683
  *
684
684
  * @tags agent
685
- * @name ProResearchV1ApiAgentProResearchPost
685
+ * @name ProResearchApiV1AgentProResearchPost
686
686
  * @summary Pro Research
687
- * @request POST:/v1/api/agent/pro_research
687
+ * @request POST:/api/v1/agent/pro_research
688
688
  */
689
- proResearchV1ApiAgentProResearchPost: (data, params = {}) => this.request(Object.assign({ path: `/v1/api/agent/pro_research`, method: "POST", body: data, type: ContentType.Json, format: "json" }, params)),
689
+ proResearchApiV1AgentProResearchPost: (data, params = {}) => this.request(Object.assign({ path: `/api/v1/agent/pro_research`, method: "POST", body: data, type: ContentType.Json, format: "json" }, params)),
690
690
  };
691
691
  this.healthChecker = {
692
692
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@petercatai/whisker-client",
3
- "version": "0.1.202506250219-dev",
3
+ "version": "0.1.202506250857-dev",
4
4
  "description": "Generated API client (preview)",
5
5
  "main": "dist/api.js",
6
6
  "types": "dist/api.d.ts",