@opra/client 1.0.0-alpha.29 → 1.0.0-alpha.30
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opra/client",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.30",
|
|
4
4
|
"description": "Opra Client package",
|
|
5
5
|
"author": "Panates",
|
|
6
6
|
"license": "MIT",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"./browser-esm-min": "./browser/esm.min.mjs"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@opra/common": "^1.0.0-alpha.
|
|
37
|
+
"@opra/common": "^1.0.0-alpha.30",
|
|
38
38
|
"accepts": "^1.3.8",
|
|
39
39
|
"cookie": "^0.6.0",
|
|
40
40
|
"encodeurl": "^2.0.0",
|
|
@@ -42,13 +42,13 @@
|
|
|
42
42
|
"lodash.omit": "^4.5.0",
|
|
43
43
|
"process": "^0.11.10",
|
|
44
44
|
"putil-isplainobject": "^1.1.5",
|
|
45
|
-
"putil-merge": "^3.
|
|
45
|
+
"putil-merge": "^3.13.0",
|
|
46
46
|
"putil-promisify": "^1.10.1",
|
|
47
47
|
"putil-varhelpers": "^1.6.5",
|
|
48
48
|
"reflect-metadata": "^0.2.2",
|
|
49
49
|
"rxjs": ">=7.0.0",
|
|
50
50
|
"ts-gems": "^3.4.0",
|
|
51
|
-
"
|
|
51
|
+
"tslib": "^2.6.3",
|
|
52
52
|
"uid": "^2.0.1"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
@@ -32,7 +32,7 @@ export declare namespace FetchBackend {
|
|
|
32
32
|
duplex?: string;
|
|
33
33
|
reportProgress?: boolean;
|
|
34
34
|
}
|
|
35
|
-
interface RequestOptions extends Pick<RequestInit, 'cache' | 'credentials' | 'integrity' | 'keepalive' | 'mode' | 'redirect' | 'referrer' | 'referrerPolicy' | 'reportProgress'
|
|
35
|
+
interface RequestOptions extends Partial<Pick<RequestInit, 'cache' | 'credentials' | 'integrity' | 'keepalive' | 'mode' | 'redirect' | 'referrer' | 'referrerPolicy' | 'reportProgress'>> {
|
|
36
36
|
}
|
|
37
37
|
type RequestDefaults = RequestOptions & {
|
|
38
38
|
headers: Headers;
|
|
@@ -7,7 +7,7 @@ import type { HttpInterceptor } from './interfaces/http-interceptor.js';
|
|
|
7
7
|
*/
|
|
8
8
|
export declare abstract class HttpBackend extends Backend implements HttpHandler {
|
|
9
9
|
readonly serviceUrl: string;
|
|
10
|
-
interceptors
|
|
10
|
+
interceptors?: HttpInterceptor<any>[];
|
|
11
11
|
protected constructor(serviceUrl: string, options?: HttpBackend.Options);
|
|
12
12
|
}
|
|
13
13
|
/**
|