@adaas/a-utils 0.1.20 → 0.1.21

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaas/a-utils",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
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",
package/src/index.ts CHANGED
@@ -3,6 +3,7 @@
3
3
  // A-Channel Components
4
4
  // ============================================================================
5
5
  export { A_Channel } from './lib/A-Channel/A-Channel.component';
6
+ export { A_ChannelRequest } from './lib/A-Channel/A-ChannelRequest.context';
6
7
  export { A_ChannelError } from './lib/A-Channel/A-Channel.error';
7
8
  export * from './lib/A-Channel/A-Channel.types';
8
9
  export * from './lib/A-Channel/A-Channel.constants';
@@ -34,7 +35,10 @@ export * from './lib/A-Config/A-Config.constants';
34
35
  // A-Logger Components
35
36
  // ============================================================================
36
37
  export { A_Logger } from './lib/A-Logger/A-Logger.component';
37
- // export * from './src/lib/A-Logger/A-Logger.types'; // Empty file
38
+ export * from './lib/A-Logger/A-Logger.types';
39
+ export * from './lib/A-Logger/A-Logger.constants';
40
+ export * from './lib/A-Logger/A-Logger.env';
41
+
38
42
 
39
43
 
40
44
  // ============================================================================
@@ -50,7 +54,16 @@ export * from './lib/A-Manifest/A-Manifest.types';
50
54
  // A-Memory Components
51
55
  // ============================================================================
52
56
  export { A_Memory } from './lib/A-Memory/A-Memory.component';
57
+ export { A_MemoryContext } from './lib/A-Memory/A-Memory.context';
58
+ export { A_MemoryError } from './lib/A-Memory/A-Memory.error';
59
+ export * from './lib/A-Memory/A-Memory.constants';
60
+ export * from './lib/A-Memory/A-Memory.types';
53
61
 
62
+ // ============================================================================
63
+ // A-Operation Components
64
+ // ============================================================================
65
+ export { A_OperationContext } from './lib/A-Operation/A-Operation.context';
66
+ export * from './lib/A-Operation/A-Operation.types';
54
67
 
55
68
  // ============================================================================
56
69
  // A-Polyfill Components
@@ -68,4 +81,11 @@ export { A_Deferred } from './lib/A-Schedule/A-Deferred.class';
68
81
  export * from './lib/A-Schedule/A-Schedule.types';
69
82
 
70
83
 
71
-
84
+ // ============================================================================
85
+ // A-State Machine Components
86
+ // ============================================================================
87
+ export { A_StateMachine } from './lib/A-StateMachine/A-StateMachine.component';
88
+ export { A_StateMachineTransition } from './lib/A-StateMachine/A-StateMachineTransition.context';
89
+ export { A_StateMachineError } from './lib/A-StateMachine/A-StateMachine.error';
90
+ export * from './lib/A-StateMachine/A-StateMachine.types';
91
+ export * from './lib/A-StateMachine/A-StateMachine.constants';