@micromag/data 0.4.60 → 0.4.63
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/es/index.d.ts +4 -4
- package/package.json +3 -3
package/es/index.d.ts
CHANGED
|
@@ -141,10 +141,10 @@ declare const useQuizCreate: (options?: any) => {
|
|
|
141
141
|
|
|
142
142
|
declare class Base {
|
|
143
143
|
constructor(opts?: {});
|
|
144
|
-
requestGet(path: any, query?: any):
|
|
145
|
-
requestPost(path: any, data: any):
|
|
146
|
-
requestPut(path: any, data: any):
|
|
147
|
-
requestDelete(path: any):
|
|
144
|
+
requestGet(path: any, query?: any): Promise<unknown>;
|
|
145
|
+
requestPost(path: any, data: any): Promise<unknown>;
|
|
146
|
+
requestPut(path: any, data: any): Promise<unknown>;
|
|
147
|
+
requestDelete(path: any): Promise<unknown>;
|
|
148
148
|
route(route: any, params: any): string;
|
|
149
149
|
getFullUrl(path: any): string;
|
|
150
150
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@micromag/data",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.63",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "",
|
|
6
6
|
"keywords": [
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"@babel/runtime": "^7.28.6",
|
|
61
61
|
"@folklore/fetch": "^0.1.17",
|
|
62
62
|
"@folklore/routes": "^0.2.36",
|
|
63
|
-
"@micromag/core": "^0.4.
|
|
63
|
+
"@micromag/core": "^0.4.63",
|
|
64
64
|
"lodash": "^4.17.23",
|
|
65
65
|
"query-string": "^9.0.0"
|
|
66
66
|
},
|
|
@@ -68,6 +68,6 @@
|
|
|
68
68
|
"access": "public",
|
|
69
69
|
"registry": "https://registry.npmjs.org/"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "0a6df1a5352c067c3296377d26fadb9b71244345",
|
|
72
72
|
"types": "es/index.d.ts"
|
|
73
73
|
}
|