@e-mc/core 0.14.0 → 0.14.2
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/README.md +11 -11
- package/package.json +3 -6
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
## Interface
|
|
11
11
|
|
|
12
|
-
* [View Source](https://www.unpkg.com/@e-mc/types@0.14.
|
|
12
|
+
* [View Source](https://www.unpkg.com/@e-mc/types@0.14.2/lib/index.d.ts)
|
|
13
13
|
|
|
14
14
|
```typescript
|
|
15
15
|
import type { DataSource, LogStatus, WorkerAction } from "./squared";
|
|
@@ -112,9 +112,9 @@ interface IClientDb extends IClient<IHost, ClientModule<ClientDbSettings>> {
|
|
|
112
112
|
getCacheResult(source: string, credential: unknown, queryString: string, cacheValue: CacheOptions, ignoreCache?: unknown): QueryResult | undefined;
|
|
113
113
|
applyState(items: DataSource | DataSource[], value: number, as?: boolean): void;
|
|
114
114
|
commit(items?: DataSource[]): Promise<boolean>;
|
|
115
|
-
valueOfKey(credential: unknown, name: keyof DbSourceOptions, component?:
|
|
116
|
-
settingsOf(source: string, name: keyof DbSourceOptions, component?:
|
|
117
|
-
settingsKey(uuidKey: string, name: keyof DbSourceOptions, component?:
|
|
115
|
+
valueOfKey(credential: unknown, name: keyof DbSourceOptions, component?: string): unknown;
|
|
116
|
+
settingsOf(source: string, name: keyof DbSourceOptions, component?: string): unknown;
|
|
117
|
+
settingsKey(uuidKey: string, name: keyof DbSourceOptions, component?: string): unknown;
|
|
118
118
|
get pending(): DataSource[];
|
|
119
119
|
get committed(): DataSource[];
|
|
120
120
|
get failed(): DataSource[];
|
|
@@ -326,13 +326,13 @@ NOTE: **@e-mc/core** is mostly a collection of abstract base classes which canno
|
|
|
326
326
|
|
|
327
327
|
## References
|
|
328
328
|
|
|
329
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
330
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
331
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
332
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
333
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
334
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
335
|
-
- https://www.unpkg.com/@e-mc/types@0.14.
|
|
329
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/squared.d.ts
|
|
330
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/core.d.ts
|
|
331
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/db.d.ts
|
|
332
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/dom.d.ts
|
|
333
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/logger.d.ts
|
|
334
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/node.d.ts
|
|
335
|
+
- https://www.unpkg.com/@e-mc/types@0.14.2/lib/settings.d.ts
|
|
336
336
|
|
|
337
337
|
* https://www.npmjs.com/package/@types/node
|
|
338
338
|
* https://www.npmjs.com/package/@types/picomatch
|
package/package.json
CHANGED
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@e-mc/core",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.2",
|
|
4
4
|
"description": "Core modules for E-mc.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
|
-
"publishConfig": {
|
|
8
|
-
"access": "public"
|
|
9
|
-
},
|
|
10
7
|
"repository": {
|
|
11
8
|
"type": "git",
|
|
12
9
|
"url": "git+https://github.com/anpham6/e-mc.git",
|
|
@@ -19,8 +16,8 @@
|
|
|
19
16
|
"license": "BSD-3-Clause",
|
|
20
17
|
"homepage": "https://github.com/anpham6/e-mc#readme",
|
|
21
18
|
"dependencies": {
|
|
22
|
-
"@e-mc/module": "0.14.
|
|
23
|
-
"@e-mc/types": "0.14.
|
|
19
|
+
"@e-mc/module": "0.14.2",
|
|
20
|
+
"@e-mc/types": "0.14.2",
|
|
24
21
|
"ipaddr.js": "^2.3.0",
|
|
25
22
|
"picomatch": "^4.0.4"
|
|
26
23
|
}
|