@ticatec/restful_service_api 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4,6 +4,7 @@ import { ErrorHandler, PostInterceptor, PreInterceptor, DataProcessor } from "./
4
4
  import { PreInterceptorResult } from "./RestService";
5
5
  import { CONTENT_TYPE_NAME, TYPE_JSON, TYPE_HTML, TYPE_TEXT } from "./RestService";
6
6
  import UploadCallback, { UploadProgress, ProgressUpdate, OnCompleted, OnUploaded } from "./UploadCallback";
7
+ import { RestfulOptions } from "./RestService";
7
8
  export default RestService;
8
9
  export { ApiError };
9
10
  export type { ErrorHandler, PostInterceptor, PreInterceptor, DataProcessor };
@@ -11,3 +12,4 @@ export type { PreInterceptorResult };
11
12
  export { CONTENT_TYPE_NAME, TYPE_JSON, TYPE_HTML, TYPE_TEXT };
12
13
  export { UploadCallback };
13
14
  export type { UploadProgress, ProgressUpdate, OnCompleted, OnUploaded };
15
+ export type { RestfulOptions };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ticatec/restful_service_api",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A lightweight TypeScript RESTful API client for browsers with error handling.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",