@adaas/a-utils 0.1.38 → 0.1.40
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/dist/index.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/lib/A-Execution/A-Execution.context.ts +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaas/a-utils",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.40",
|
|
4
4
|
"description": "A-Utils is a set of utilities that are used across the ADAAS ecosystem. This package is designed to be a collection of utilities that are used across the ADAAS ecosystem.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"build": "tsup --config tsup.config.ts"
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@adaas/a-concept": "^0.1.
|
|
83
|
+
"@adaas/a-concept": "^0.1.59"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|
|
86
86
|
"@types/chai": "^4.3.14",
|
|
@@ -37,8 +37,9 @@ export class A_ExecutionContext<
|
|
|
37
37
|
return this._meta.get(key);
|
|
38
38
|
}
|
|
39
39
|
|
|
40
|
-
set<K extends keyof _MetaType>(key: K, value: _MetaType[K]):
|
|
40
|
+
set<K extends keyof _MetaType>(key: K, value: _MetaType[K]): this {
|
|
41
41
|
this._meta.set(key, value);
|
|
42
|
+
return this;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
has(key: keyof _MetaType): boolean {
|
|
@@ -49,8 +50,9 @@ export class A_ExecutionContext<
|
|
|
49
50
|
this._meta.delete(key);
|
|
50
51
|
}
|
|
51
52
|
|
|
52
|
-
clear():
|
|
53
|
+
clear(): this {
|
|
53
54
|
this._meta.clear();
|
|
55
|
+
return this;
|
|
54
56
|
}
|
|
55
57
|
|
|
56
58
|
|