ar-design 0.2.42 → 0.2.43

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.
@@ -1,5 +1,6 @@
1
1
  type Result<TResponse> = {
2
2
  response: TResponse;
3
+ __response__: Response;
3
4
  __ok__: boolean;
4
5
  __statusCode__: number;
5
6
  __statusText__: string;
@@ -98,6 +98,7 @@ class Service {
98
98
  }
99
99
  return {
100
100
  response: _response,
101
+ __response__: response,
101
102
  __ok__: response.ok,
102
103
  __statusCode__: response.status,
103
104
  __statusText__: response.statusText,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ar-design",
3
- "version": "0.2.42",
3
+ "version": "0.2.43",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",