teraprox-core-sdk 0.3.8 → 0.3.9
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/dist/index.d.mts +11 -11
- package/dist/index.d.ts +11 -11
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -106,17 +106,17 @@ declare class NullToastService implements ToastService {
|
|
|
106
106
|
}
|
|
107
107
|
declare class NullHttpController implements HttpController {
|
|
108
108
|
private logAndResolve;
|
|
109
|
-
get(path?: string): Promise<
|
|
110
|
-
post(path?: string): Promise<
|
|
111
|
-
put(path?: string): Promise<
|
|
112
|
-
patch(path?: string): Promise<
|
|
113
|
-
delete(path?: string, id?: string | number): Promise<
|
|
114
|
-
deleteSimple(path?: string): Promise<
|
|
115
|
-
save(path?: string): Promise<
|
|
116
|
-
read(path?: string, id?: string | number): Promise<
|
|
117
|
-
readAll(path?: string): Promise<
|
|
118
|
-
readAllwithPage(path?: string): Promise<
|
|
119
|
-
bulkDelete(path?: string): Promise<
|
|
109
|
+
get(path?: string): Promise<any[]>;
|
|
110
|
+
post(path?: string): Promise<any[]>;
|
|
111
|
+
put(path?: string): Promise<any[]>;
|
|
112
|
+
patch(path?: string): Promise<any[]>;
|
|
113
|
+
delete(path?: string, id?: string | number): Promise<any[]>;
|
|
114
|
+
deleteSimple(path?: string): Promise<any[]>;
|
|
115
|
+
save(path?: string): Promise<any[]>;
|
|
116
|
+
read(path?: string, id?: string | number): Promise<any[]>;
|
|
117
|
+
readAll(path?: string): Promise<any[]>;
|
|
118
|
+
readAllwithPage(path?: string): Promise<any[]>;
|
|
119
|
+
bulkDelete(path?: string): Promise<any[]>;
|
|
120
120
|
}
|
|
121
121
|
declare const NullCoreService: CoreService;
|
|
122
122
|
|
package/dist/index.d.ts
CHANGED
|
@@ -106,17 +106,17 @@ declare class NullToastService implements ToastService {
|
|
|
106
106
|
}
|
|
107
107
|
declare class NullHttpController implements HttpController {
|
|
108
108
|
private logAndResolve;
|
|
109
|
-
get(path?: string): Promise<
|
|
110
|
-
post(path?: string): Promise<
|
|
111
|
-
put(path?: string): Promise<
|
|
112
|
-
patch(path?: string): Promise<
|
|
113
|
-
delete(path?: string, id?: string | number): Promise<
|
|
114
|
-
deleteSimple(path?: string): Promise<
|
|
115
|
-
save(path?: string): Promise<
|
|
116
|
-
read(path?: string, id?: string | number): Promise<
|
|
117
|
-
readAll(path?: string): Promise<
|
|
118
|
-
readAllwithPage(path?: string): Promise<
|
|
119
|
-
bulkDelete(path?: string): Promise<
|
|
109
|
+
get(path?: string): Promise<any[]>;
|
|
110
|
+
post(path?: string): Promise<any[]>;
|
|
111
|
+
put(path?: string): Promise<any[]>;
|
|
112
|
+
patch(path?: string): Promise<any[]>;
|
|
113
|
+
delete(path?: string, id?: string | number): Promise<any[]>;
|
|
114
|
+
deleteSimple(path?: string): Promise<any[]>;
|
|
115
|
+
save(path?: string): Promise<any[]>;
|
|
116
|
+
read(path?: string, id?: string | number): Promise<any[]>;
|
|
117
|
+
readAll(path?: string): Promise<any[]>;
|
|
118
|
+
readAllwithPage(path?: string): Promise<any[]>;
|
|
119
|
+
bulkDelete(path?: string): Promise<any[]>;
|
|
120
120
|
}
|
|
121
121
|
declare const NullCoreService: CoreService;
|
|
122
122
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "teraprox-core-sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.9",
|
|
4
4
|
"description": "Contrato tipado Core ↔ Federados — interfaces, context, hooks e componentes compartilhados",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"qr-scanner": "^1.4.2"
|
|
36
|
+
"qr-scanner": "^1.4.2",
|
|
37
|
+
"teraprox-core-sdk": "^0.3.8"
|
|
37
38
|
},
|
|
38
39
|
"peerDependencies": {
|
|
39
40
|
"@reduxjs/toolkit": ">=1.9.0",
|