@fireproof/core-types-protocols-dashboard 0.0.0-smoke-70bdee6c-1767993865 → 0.24.7
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/dash-types.d.ts +1 -1
- package/package.json +4 -4
- package/tsconfig.json +1 -1
package/dash-types.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export interface DashboardApiConfigIntern<T> {
|
|
|
20
20
|
readonly getTokenCtx?: T;
|
|
21
21
|
readonly gracePeriodMs: number;
|
|
22
22
|
fetch(input: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
23
|
-
getToken: (ctx
|
|
23
|
+
getToken: (ctx?: T) => Promise<Result<DashAuthType>>;
|
|
24
24
|
}
|
|
25
25
|
export interface DashboardApiConfig<T> extends Omit<DashboardApiConfigIntern<T>, "gracePeriodMs"> {
|
|
26
26
|
readonly gracePeriodMs?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fireproof/core-types-protocols-dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.24.7",
|
|
4
4
|
"description": "Live ledger for the web.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@adviser/cement": "0.5.15",
|
|
38
|
-
"@fireproof/core-types-base": "0.
|
|
39
|
-
"@fireproof/core-types-device-id": "0.
|
|
40
|
-
"@fireproof/core-types-protocols-cloud": "0.
|
|
38
|
+
"@fireproof/core-types-base": "0.24.7",
|
|
39
|
+
"@fireproof/core-types-device-id": "0.24.7",
|
|
40
|
+
"@fireproof/core-types-protocols-cloud": "0.24.7"
|
|
41
41
|
}
|
|
42
42
|
}
|