angular-toolbox 0.11.1 → 0.11.2
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/README.md +1 -1
- package/esm2022/lib/framework/mock/http/util/fetch-client-response-type.enum.mjs +5 -1
- package/esm2022/lib/framework/mock/http/util/fetch-client.builder.mjs +3 -2
- package/esm2022/lib/model/service/version/angular-toolbox-version.service.mjs +3 -3
- package/fesm2022/angular-toolbox.mjs +8 -3
- package/fesm2022/angular-toolbox.mjs.map +1 -1
- package/lib/framework/mock/http/util/fetch-client-response-type.enum.d.ts +5 -1
- package/package.json +1 -1
|
@@ -30,5 +30,9 @@ export declare enum FetchClientResponseType {
|
|
|
30
30
|
* Allows to return the response as a promise that resolves with a `String`.
|
|
31
31
|
* The response is always decoded using UTF-8.
|
|
32
32
|
*/
|
|
33
|
-
TEXT = "text"
|
|
33
|
+
TEXT = "text",
|
|
34
|
+
/**
|
|
35
|
+
* Allows to return the response as a promise that resolves with a `Response` object.
|
|
36
|
+
*/
|
|
37
|
+
RESPONSE = "response"
|
|
34
38
|
}
|