@tak-ps/cloudtak 13.69.1 → 13.70.0
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.
|
@@ -13,6 +13,12 @@ export default class Config<K extends keyof FullConfig = keyof FullConfig> {
|
|
|
13
13
|
static list(keys: (keyof FullConfig)[], opts?: {
|
|
14
14
|
defaults?: Partial<FullConfig>;
|
|
15
15
|
}): Promise<Partial<FullConfig>>;
|
|
16
|
+
/**
|
|
17
|
+
* Re-fetch every cached config value if the last sweep is more than
|
|
18
|
+
* 24 hours old. Failures are swallowed so a stale cache never surfaces
|
|
19
|
+
* an error - the timestamp is not advanced, so the next full sync retries.
|
|
20
|
+
*/
|
|
21
|
+
static sync(): Promise<void>;
|
|
16
22
|
static refresh(keys: (keyof FullConfig)[]): Promise<Partial<FullConfig>>;
|
|
17
23
|
private static persist;
|
|
18
24
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tak-ps/cloudtak",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "13.
|
|
4
|
+
"version": "13.70.0",
|
|
5
5
|
"types": "dist/types/plugin.d.ts",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist/types"
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"terra-draw": "^1.22.0",
|
|
97
97
|
"terra-draw-maplibre-gl-adapter": "^1.4.1",
|
|
98
98
|
"terra-draw-route-snap-mode": "^0.4.1",
|
|
99
|
-
"terra-route": "^0.0.
|
|
99
|
+
"terra-route": "^0.0.18",
|
|
100
100
|
"uuid": "^14.0.0",
|
|
101
101
|
"vue": "^3.2.31",
|
|
102
102
|
"vue-component-type-helpers": "^3.0.7",
|