@nocobase/sdk 1.6.0-alpha.13 → 1.6.0-alpha.15

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.
@@ -129,7 +129,9 @@ export declare class APIClient {
129
129
  constructor(options?: APIClientOptions);
130
130
  private initStorage;
131
131
  interceptors(): void;
132
- request<T = any, R = AxiosResponse<T>, D = any>(config: AxiosRequestConfig<D> | ResourceActionOptions): Promise<R>;
132
+ request<T = any, R = AxiosResponse<T>, D = any>(config: (AxiosRequestConfig<D> | ResourceActionOptions) & {
133
+ skipNotify?: boolean | ((error: any) => boolean);
134
+ }): Promise<R>;
133
135
  resource(name: string, of?: any, headers?: RawAxiosRequestHeaders, cancel?: boolean): IResource;
134
136
  }
135
137
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nocobase/sdk",
3
- "version": "1.6.0-alpha.13",
3
+ "version": "1.6.0-alpha.15",
4
4
  "license": "AGPL-3.0",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,5 +11,5 @@
11
11
  "devDependencies": {
12
12
  "axios-mock-adapter": "^1.20.0"
13
13
  },
14
- "gitHead": "b051b9016899d0c9fd5b54543d3898edace9950b"
14
+ "gitHead": "4005cfd4876717aad16e0528513ee682a32d920a"
15
15
  }