core-3nweb-client-lib 0.22.1 → 0.23.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Copyright (C) 2017 - 2018, 2020 -
|
|
2
|
+
Copyright (C) 2017 - 2018, 2020 - 2022 3NSoft Inc.
|
|
3
3
|
|
|
4
4
|
This program is free software: you can redistribute it and/or modify it under
|
|
5
5
|
the terms of the GNU General Public License as published by the Free Software
|
|
@@ -28,14 +28,11 @@ declare namespace web3n.caps.common {
|
|
|
28
28
|
|
|
29
29
|
type DevPathChecker = (path: string) => 'w'|'r'|false;
|
|
30
30
|
|
|
31
|
-
interface
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
mailerid?: true;
|
|
37
|
-
log?: LogCAPSetting;
|
|
38
|
-
};
|
|
31
|
+
interface RequestedCAPs {
|
|
32
|
+
mail?: MailCAPSetting;
|
|
33
|
+
storage?: StorageCAPSetting;
|
|
34
|
+
mailerid?: true;
|
|
35
|
+
log?: LogCAPSetting;
|
|
39
36
|
}
|
|
40
37
|
|
|
41
38
|
interface StorageCAPSetting {
|
package/build/core/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { FactoryOfFSs } from './storage';
|
|
|
2
2
|
import { makeCryptor } from '../lib-client/cryptor/cryptor';
|
|
3
3
|
import { NetClient } from '../lib-client/request-utils';
|
|
4
4
|
import { ServiceLocatorMaker } from '../lib-client/service-locator';
|
|
5
|
-
declare type RequestedCAPs = web3n.caps.common.
|
|
5
|
+
declare type RequestedCAPs = web3n.caps.common.RequestedCAPs;
|
|
6
6
|
declare type W3N = web3n.caps.common.W3N;
|
|
7
7
|
export interface CoreConf {
|
|
8
8
|
dataDir: string;
|
package/build/core/index.js
CHANGED