@bexis2/bexis2-core-ui 0.4.57 → 0.4.58

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.
@@ -11,7 +11,7 @@ const apiRequest = (method, url, request) => {
11
11
  const requestVerificationToken = csrfToken;
12
12
  const headers = {
13
13
  authorization: 'Basic ' + btoa(username + ':' + password),
14
- __RequestVerificationToken: requestVerificationToken
14
+ '__RequestVerificationToken': requestVerificationToken
15
15
  };
16
16
  //using the axios instance to perform the request that received from each http method
17
17
  return axiosAPI({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bexis2/bexis2-core-ui",
3
- "version": "0.4.57",
3
+ "version": "0.4.58",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "dev": "vite dev",
@@ -15,9 +15,10 @@ const apiRequest = (method, url, request) => {
15
15
  const requestVerificationToken = csrfToken;
16
16
  const headers = {
17
17
  authorization: 'Basic ' + btoa(username + ':' + password),
18
- __RequestVerificationToken:requestVerificationToken
18
+ '__RequestVerificationToken': requestVerificationToken
19
19
  };
20
20
 
21
+
21
22
  //using the axios instance to perform the request that received from each http method
22
23
  return axiosAPI({
23
24
  method,