@equinor/fusion-framework-module-http 6.2.4 → 6.2.5
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/CHANGELOG.md +10 -0
- package/dist/esm/configurator.js +15 -10
- package/dist/esm/configurator.js.map +1 -1
- package/dist/esm/errors.js +5 -3
- package/dist/esm/errors.js.map +1 -1
- package/dist/esm/lib/client/client-msal.js +6 -9
- package/dist/esm/lib/client/client-msal.js.map +1 -1
- package/dist/esm/lib/client/client.js +47 -43
- package/dist/esm/lib/client/client.js.map +1 -1
- package/dist/esm/lib/operators/capitalize-request-method.operator.js +2 -3
- package/dist/esm/lib/operators/capitalize-request-method.operator.js.map +1 -1
- package/dist/esm/lib/operators/fetch-request.schema.js +1 -1
- package/dist/esm/lib/operators/fetch-request.schema.js.map +1 -1
- package/dist/esm/lib/operators/process-operators.js +9 -3
- package/dist/esm/lib/operators/process-operators.js.map +1 -1
- package/dist/esm/lib/operators/request-operator-header.js +1 -1
- package/dist/esm/lib/operators/request-operator-header.js.map +1 -1
- package/dist/esm/lib/operators/request-validation.operator.js +1 -1
- package/dist/esm/lib/operators/request-validation.operator.js.map +1 -1
- package/dist/esm/lib/selectors/blob-selector.js +9 -15
- package/dist/esm/lib/selectors/blob-selector.js.map +1 -1
- package/dist/esm/lib/selectors/json-selector.js +3 -12
- package/dist/esm/lib/selectors/json-selector.js.map +1 -1
- package/dist/esm/module.js +7 -16
- package/dist/esm/module.js.map +1 -1
- package/dist/esm/provider.js +2 -1
- package/dist/esm/provider.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/lib/operators/fetch-request.schema.d.ts +3 -3
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -20
- package/src/version.ts +1 -1
|
@@ -97,7 +97,7 @@ export declare const requestInitSchema: z.ZodObject<{
|
|
|
97
97
|
* - `uri`: A required string representing the URI of the request.
|
|
98
98
|
* - `path`: An optional string representing the path of the request.
|
|
99
99
|
*/
|
|
100
|
-
export declare const fetchRequestSchema: z.ZodObject<
|
|
100
|
+
export declare const fetchRequestSchema: z.ZodObject<{
|
|
101
101
|
attributionReporting: z.ZodOptional<z.ZodObject<{
|
|
102
102
|
eventSourceEligible: z.ZodOptional<z.ZodBoolean>;
|
|
103
103
|
triggerEligible: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -122,10 +122,10 @@ export declare const fetchRequestSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
122
122
|
referrer: z.ZodOptional<z.ZodString>;
|
|
123
123
|
referrerPolicy: z.ZodOptional<z.ZodEnum<["no-referrer", "no-referrer-when-downgrade", "origin", "origin-when-cross-origin", "same-origin", "strict-origin", "strict-origin-when-cross-origin", "unsafe-url"]>>;
|
|
124
124
|
signal: z.ZodOptional<z.ZodType<AbortSignal, z.ZodTypeDef, AbortSignal>>;
|
|
125
|
-
}
|
|
125
|
+
} & {
|
|
126
126
|
uri: z.ZodString;
|
|
127
127
|
path: z.ZodOptional<z.ZodString>;
|
|
128
|
-
}
|
|
128
|
+
}, "strip", z.ZodTypeAny, {
|
|
129
129
|
uri: string;
|
|
130
130
|
body?: string | Blob | ArrayBuffer | FormData | URLSearchParams | ReadableStream<unknown> | undefined;
|
|
131
131
|
path?: string | undefined;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "6.2.
|
|
1
|
+
export declare const version = "6.2.5";
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-module-http",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.5",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
|
-
"types": "index.d.ts",
|
|
6
|
+
"types": "dist/types/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"import": "./dist/esm/index.js",
|
|
@@ -26,22 +26,6 @@
|
|
|
26
26
|
"types": "./dist/types/errors.d.ts"
|
|
27
27
|
}
|
|
28
28
|
},
|
|
29
|
-
"typesVersions": {
|
|
30
|
-
">=4.2": {
|
|
31
|
-
"*": [
|
|
32
|
-
"dist/types/*"
|
|
33
|
-
],
|
|
34
|
-
"client": [
|
|
35
|
-
"dist/types/lib/client/index.d.ts"
|
|
36
|
-
],
|
|
37
|
-
"operators": [
|
|
38
|
-
"dist/types/lib/operators/index.d.ts"
|
|
39
|
-
],
|
|
40
|
-
"selectors": [
|
|
41
|
-
"dist/types/lib/selectors/index.d.ts"
|
|
42
|
-
]
|
|
43
|
-
}
|
|
44
|
-
},
|
|
45
29
|
"keywords": [],
|
|
46
30
|
"author": "",
|
|
47
31
|
"license": "ISC",
|
|
@@ -56,8 +40,8 @@
|
|
|
56
40
|
"dependencies": {
|
|
57
41
|
"rxjs": "^7.8.1",
|
|
58
42
|
"zod": "^3.23.8",
|
|
59
|
-
"@equinor/fusion-framework-module": "^4.3.
|
|
60
|
-
"@equinor/fusion-framework-module-msal": "^4.0.
|
|
43
|
+
"@equinor/fusion-framework-module": "^4.3.8",
|
|
44
|
+
"@equinor/fusion-framework-module-msal": "^4.0.3"
|
|
61
45
|
},
|
|
62
46
|
"devDependencies": {
|
|
63
47
|
"typescript": "^5.8.2",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '6.2.
|
|
2
|
+
export const version = '6.2.5';
|