@effected/app 0.13.2 → 0.14.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.
- package/index.d.ts +5 -5
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ interface AppCacheOptions extends CacheOptions {
|
|
|
25
25
|
*
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
declare class AppCache {
|
|
28
|
+
export declare class AppCache {
|
|
29
29
|
private constructor();
|
|
30
30
|
/**
|
|
31
31
|
* Build the cache-directory database layer: `AppDirs.ensureCache`, then
|
|
@@ -67,7 +67,7 @@ interface AppStoreOptions extends StoreOptions {
|
|
|
67
67
|
*
|
|
68
68
|
* @public
|
|
69
69
|
*/
|
|
70
|
-
declare class AppStore {
|
|
70
|
+
export declare class AppStore {
|
|
71
71
|
private constructor();
|
|
72
72
|
/**
|
|
73
73
|
* Build the state-directory database layer: `AppDirs.ensureState`, then
|
|
@@ -141,7 +141,7 @@ interface AppTestOptions {
|
|
|
141
141
|
*
|
|
142
142
|
* @public
|
|
143
143
|
*/
|
|
144
|
-
declare class App {
|
|
144
|
+
export declare class App {
|
|
145
145
|
private constructor();
|
|
146
146
|
/**
|
|
147
147
|
* Build the application control plane: namespaced directories, the state
|
|
@@ -308,7 +308,7 @@ interface AppConfigOptions<A, I, RR = never> {
|
|
|
308
308
|
*
|
|
309
309
|
* @public
|
|
310
310
|
*/
|
|
311
|
-
declare class AppConfig {
|
|
311
|
+
export declare class AppConfig {
|
|
312
312
|
private constructor();
|
|
313
313
|
/**
|
|
314
314
|
* Build the xdg-flavored config layer for a `ConfigFile.Service` class.
|
|
@@ -340,5 +340,5 @@ declare class AppConfig {
|
|
|
340
340
|
static readonly layer: <Self, A, I, RR = never>(tag: Context.Key<Self, ConfigFileShape<A>>, options: AppConfigOptions<A, I, RR>) => Layer.Layer<Self, never, FileSystem.FileSystem | Path.Path | AppDirs | Xdg | RR>;
|
|
341
341
|
}
|
|
342
342
|
//#endregion
|
|
343
|
-
export {
|
|
343
|
+
export type { AppCacheOptions, AppConfigOptions, AppError, AppOptions, AppStoreOptions, AppTestOptions };
|
|
344
344
|
//# sourceMappingURL=index.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effected/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The application control plane for Effect: one layer wiring XDG-namespaced directories, a migrated SQLite store, a TTL cache and a config file to the same place.",
|
|
6
6
|
"keywords": [
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"./package.json": "./package.json"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@effected/config-file": "^0.
|
|
43
|
-
"@effected/store": "^0.
|
|
44
|
-
"@effected/xdg": "^0.
|
|
45
|
-
"effect": "4.0.0-rc.
|
|
42
|
+
"@effected/config-file": "^0.6.0",
|
|
43
|
+
"@effected/store": "^0.7.0",
|
|
44
|
+
"@effected/xdg": "^0.4.0",
|
|
45
|
+
"effect": "4.0.0-rc.112"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">=24.11.0"
|