asma-helpers 0.2.32 → 0.2.33

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": "asma-helpers",
3
- "version": "0.2.32",
3
+ "version": "0.2.33",
4
4
  "description": "helpers methods for asma",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@genql/runtime": "^2.10.0",
23
- "axios": "^1.2.2",
23
+ "axios": "^1.2.3",
24
24
  "history": "~5.0.0",
25
25
  "idb-keyval": "^6.2.0",
26
26
  "mobx": "^6.6.1",
@@ -1,4 +1,4 @@
1
- import axios, { AxiosRequestConfig, AxiosResponse, ResponseType } from 'axios'
1
+ import axios, { AxiosResponse, ResponseType } from 'axios'
2
2
  import { EnvironmentEnums, parseJwt } from '..'
3
3
 
4
4
  export function generateSrvAuthBindings<FeatureEnums = never>(
@@ -104,7 +104,7 @@ export function generateSrvAuthBindings<FeatureEnums = never>(
104
104
  data: data,
105
105
  responseType: responseType,
106
106
  headers: {} as Record<string, string>,
107
- } satisfies AxiosRequestConfig
107
+ }
108
108
 
109
109
  if (token) {
110
110
  res.headers['Authorization'] = `Bearer ${token}`