@equinor/fusion-framework-module-services 4.1.4 → 5.0.0-next-663bed8344cc2ca0111705b05045173328b3104d

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 +1 @@
1
- export declare const version = "4.1.4";
1
+ export declare const version = "4.1.5";
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-module-services",
3
- "version": "4.1.4",
3
+ "version": "5.0.0-next-663bed8344cc2ca0111705b05045173328b3104d",
4
4
  "description": "",
5
5
  "sideEffects": false,
6
+ "type": "module",
6
7
  "main": "dist/esm/index.js",
7
8
  "types": "index.d.ts",
8
9
  "typesVersions": {
@@ -116,13 +117,13 @@
116
117
  },
117
118
  "devDependencies": {
118
119
  "typescript": "^5.5.4",
119
- "@equinor/fusion-framework-module": "^4.3.5",
120
- "@equinor/fusion-framework-module-http": "^6.1.0",
121
- "@equinor/fusion-framework-module-service-discovery": "^8.0.0"
120
+ "@equinor/fusion-framework-module-http": "^7.0.0-next-663bed8344cc2ca0111705b05045173328b3104d",
121
+ "@equinor/fusion-framework-module": "^5.0.0-next-663bed8344cc2ca0111705b05045173328b3104d",
122
+ "@equinor/fusion-framework-module-service-discovery": "^9.0.0-next-663bed8344cc2ca0111705b05045173328b3104d"
122
123
  },
123
124
  "peerDependencies": {
124
125
  "odata-query": "^7.0.4",
125
- "@equinor/fusion-framework-module": "^4.3.5"
126
+ "@equinor/fusion-framework-module": "^5.0.0-next-663bed8344cc2ca0111705b05045173328b3104d"
126
127
  },
127
128
  "scripts": {
128
129
  "build": "tsc -b"
@@ -17,7 +17,7 @@ export const generateParameters = <
17
17
 
18
18
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
19
19
  {},
20
- { method: 'Delete' },
20
+ { method: 'DELETE' },
21
21
  init,
22
22
  );
23
23
 
@@ -17,7 +17,7 @@ export const generateParameters = <
17
17
 
18
18
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
19
19
  {},
20
- { method: 'Delete' },
20
+ { method: 'DELETE' },
21
21
  init,
22
22
  );
23
23
 
@@ -20,7 +20,7 @@ export const generateParameters = <
20
20
 
21
21
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
22
22
  {},
23
- { method: 'head', headers: headers },
23
+ { method: 'HEAD', headers: headers },
24
24
  init,
25
25
  );
26
26
 
@@ -20,7 +20,7 @@ export const generateParameters = <
20
20
 
21
21
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
22
22
  {},
23
- { method: 'post', body: JSON.stringify(args), headers: headers },
23
+ { method: 'POST', body: JSON.stringify(args), headers: headers },
24
24
  init,
25
25
  );
26
26
 
@@ -20,7 +20,7 @@ export const generateParameters = <
20
20
 
21
21
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
22
22
  {},
23
- { method: 'post', body: JSON.stringify(args), headers: headers },
23
+ { method: 'POST', body: JSON.stringify(args), headers: headers },
24
24
  init,
25
25
  );
26
26
 
@@ -22,7 +22,7 @@ export const generateParameters = <
22
22
 
23
23
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
24
24
  {},
25
- { method: 'delete', headers: headers },
25
+ { method: 'DELETE', headers: headers },
26
26
  init,
27
27
  );
28
28
 
@@ -22,7 +22,7 @@ export const generateParameters = <
22
22
 
23
23
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
24
24
  {},
25
- { method: 'patch', body: JSON.stringify(args), headers: headers },
25
+ { method: 'PATCH', body: JSON.stringify(args), headers: headers },
26
26
  init,
27
27
  );
28
28
 
@@ -22,7 +22,7 @@ export const generateParameters = <
22
22
 
23
23
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
24
24
  {},
25
- { method: 'post', body: JSON.stringify(args), headers: headers },
25
+ { method: 'POST', body: JSON.stringify(args), headers: headers },
26
26
  init,
27
27
  );
28
28
 
@@ -24,7 +24,7 @@ export const generateParameters = <
24
24
 
25
25
  const requestParams: ClientRequestInit<TClient, TResult> = Object.assign(
26
26
  {},
27
- { method: 'put', body: JSON.stringify(args), headers: headers },
27
+ { method: 'PUT', body: JSON.stringify(args), headers: headers },
28
28
  init,
29
29
  );
30
30
 
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '4.1.4';
2
+ export const version = '4.1.5';