@adaas/a-utils 0.1.19 → 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/dist/index.cjs +45 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.mts +116 -1
- package/dist/index.d.ts +116 -1
- package/dist/index.mjs +44 -3084
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +22 -2
- package/tsup.config.ts +30 -13
- package/dist/index.js +0 -3110
- package/dist/index.js.map +0 -1
package/dist/index.d.mts
CHANGED
|
@@ -979,6 +979,7 @@ declare const A_LoggerEnvVariables: {
|
|
|
979
979
|
*/
|
|
980
980
|
readonly A_LOGGER_DEFAULT_LOG_COLOR: "A_LOGGER_DEFAULT_LOG_COLOR";
|
|
981
981
|
};
|
|
982
|
+
declare const A_LoggerEnvVariablesArray: readonly ["A_LOGGER_LEVEL", "A_LOGGER_DEFAULT_SCOPE_LENGTH", "A_LOGGER_DEFAULT_SCOPE_COLOR", "A_LOGGER_DEFAULT_LOG_COLOR"];
|
|
982
983
|
type A_LoggerEnvVariablesType = (typeof A_LoggerEnvVariables)[keyof typeof A_LoggerEnvVariables][];
|
|
983
984
|
|
|
984
985
|
/**
|
|
@@ -1879,6 +1880,98 @@ declare const A_CONSTANTS__CONFIG_ENV_VARIABLES: {};
|
|
|
1879
1880
|
type A_TYPES__ConfigENVVariables = (typeof A_CONSTANTS__CONFIG_ENV_VARIABLES)[keyof typeof A_CONSTANTS__CONFIG_ENV_VARIABLES][];
|
|
1880
1881
|
declare const A_CONSTANTS__CONFIG_ENV_VARIABLES_ARRAY: readonly [];
|
|
1881
1882
|
|
|
1883
|
+
type A_LoggerLevel = 'debug' | 'info' | 'warn' | 'error' | 'all';
|
|
1884
|
+
|
|
1885
|
+
/**
|
|
1886
|
+
* A-Logger Constants
|
|
1887
|
+
*
|
|
1888
|
+
* Configuration constants and default values for the A_Logger component
|
|
1889
|
+
*/
|
|
1890
|
+
/**
|
|
1891
|
+
* Default scope length for consistent message alignment
|
|
1892
|
+
*/
|
|
1893
|
+
declare const A_LOGGER_DEFAULT_SCOPE_LENGTH = 20;
|
|
1894
|
+
/**
|
|
1895
|
+
* Default log level when none is specified
|
|
1896
|
+
*/
|
|
1897
|
+
declare const A_LOGGER_DEFAULT_LEVEL = "all";
|
|
1898
|
+
/**
|
|
1899
|
+
* Terminal color codes mapping
|
|
1900
|
+
*/
|
|
1901
|
+
declare const A_LOGGER_COLORS: {
|
|
1902
|
+
readonly red: "31";
|
|
1903
|
+
readonly yellow: "33";
|
|
1904
|
+
readonly green: "32";
|
|
1905
|
+
readonly blue: "34";
|
|
1906
|
+
readonly cyan: "36";
|
|
1907
|
+
readonly magenta: "35";
|
|
1908
|
+
readonly gray: "90";
|
|
1909
|
+
readonly brightBlue: "94";
|
|
1910
|
+
readonly brightCyan: "96";
|
|
1911
|
+
readonly brightMagenta: "95";
|
|
1912
|
+
readonly darkGray: "30";
|
|
1913
|
+
readonly lightGray: "37";
|
|
1914
|
+
readonly indigo: "38;5;54";
|
|
1915
|
+
readonly violet: "38;5;93";
|
|
1916
|
+
readonly purple: "38;5;129";
|
|
1917
|
+
readonly lavender: "38;5;183";
|
|
1918
|
+
readonly skyBlue: "38;5;117";
|
|
1919
|
+
readonly steelBlue: "38;5;67";
|
|
1920
|
+
readonly slateBlue: "38;5;62";
|
|
1921
|
+
readonly deepBlue: "38;5;18";
|
|
1922
|
+
readonly lightBlue: "38;5;153";
|
|
1923
|
+
readonly periwinkle: "38;5;111";
|
|
1924
|
+
readonly cornflower: "38;5;69";
|
|
1925
|
+
readonly powder: "38;5;152";
|
|
1926
|
+
readonly charcoal: "38;5;236";
|
|
1927
|
+
readonly silver: "38;5;250";
|
|
1928
|
+
readonly smoke: "38;5;244";
|
|
1929
|
+
readonly slate: "38;5;240";
|
|
1930
|
+
};
|
|
1931
|
+
/**
|
|
1932
|
+
* Safe colors for random selection - grey-blue-violet palette
|
|
1933
|
+
* Excludes system colors (red, yellow, green) to avoid confusion with warnings/errors
|
|
1934
|
+
*/
|
|
1935
|
+
declare const A_LOGGER_SAFE_RANDOM_COLORS: readonly ["blue", "cyan", "magenta", "gray", "brightBlue", "brightCyan", "brightMagenta", "darkGray", "lightGray", "indigo", "violet", "purple", "lavender", "skyBlue", "steelBlue", "slateBlue", "deepBlue", "lightBlue", "periwinkle", "cornflower", "powder", "charcoal", "silver", "smoke", "slate"];
|
|
1936
|
+
/**
|
|
1937
|
+
* ANSI escape codes
|
|
1938
|
+
*/
|
|
1939
|
+
declare const A_LOGGER_ANSI: {
|
|
1940
|
+
readonly RESET: "\u001B[0m";
|
|
1941
|
+
readonly PREFIX: "\u001B[";
|
|
1942
|
+
readonly SUFFIX: "m";
|
|
1943
|
+
};
|
|
1944
|
+
/**
|
|
1945
|
+
* Timestamp format configuration
|
|
1946
|
+
*/
|
|
1947
|
+
declare const A_LOGGER_TIME_FORMAT: {
|
|
1948
|
+
readonly MINUTES_PAD: 2;
|
|
1949
|
+
readonly SECONDS_PAD: 2;
|
|
1950
|
+
readonly MILLISECONDS_PAD: 3;
|
|
1951
|
+
readonly SEPARATOR: ":";
|
|
1952
|
+
};
|
|
1953
|
+
/**
|
|
1954
|
+
* Log message structure constants
|
|
1955
|
+
*/
|
|
1956
|
+
declare const A_LOGGER_FORMAT: {
|
|
1957
|
+
readonly SCOPE_OPEN: "[";
|
|
1958
|
+
readonly SCOPE_CLOSE: "]";
|
|
1959
|
+
readonly TIME_OPEN: "|";
|
|
1960
|
+
readonly TIME_CLOSE: "|";
|
|
1961
|
+
readonly SEPARATOR: "-------------------------------";
|
|
1962
|
+
readonly INDENT_BASE: 3;
|
|
1963
|
+
readonly PIPE: "| ";
|
|
1964
|
+
};
|
|
1965
|
+
/**
|
|
1966
|
+
* Environment variable keys
|
|
1967
|
+
*/
|
|
1968
|
+
declare const A_LOGGER_ENV_KEYS: {
|
|
1969
|
+
readonly LOG_LEVEL: "A_LOGGER_LEVEL";
|
|
1970
|
+
readonly DEFAULT_SCOPE_LENGTH: "A_LOGGER_DEFAULT_SCOPE_LENGTH";
|
|
1971
|
+
readonly DEFAULT_SCOPE_COLOR: "A_LOGGER_DEFAULT_SCOPE_COLOR";
|
|
1972
|
+
readonly DEFAULT_LOG_COLOR: "A_LOGGER_DEFAULT_LOG_COLOR";
|
|
1973
|
+
};
|
|
1974
|
+
|
|
1882
1975
|
type A_UTILS_TYPES__Manifest_Init = Array<A_UTILS_TYPES__Manifest_ComponentLevelConfig>;
|
|
1883
1976
|
type A_UTILS_TYPES__Manifest_ComponentLevelConfig<T extends A_Component = A_Component> = {
|
|
1884
1977
|
/**
|
|
@@ -2037,6 +2130,12 @@ declare class A_MemoryContext<_MemoryType extends Record<string, any> = Record<s
|
|
|
2037
2130
|
get<K extends keyof _MemoryType>(param: K): _MemoryType[K] | undefined;
|
|
2038
2131
|
}
|
|
2039
2132
|
|
|
2133
|
+
type A_MemoryContextMeta<T extends Record<string, any> = Record<string, any>> = Omit<T, 'error'> & {
|
|
2134
|
+
error?: A_Error;
|
|
2135
|
+
};
|
|
2136
|
+
type A_Memory_Storage = Record<string, any> & {
|
|
2137
|
+
error?: A_Error;
|
|
2138
|
+
};
|
|
2040
2139
|
type A_MemoryOperations = 'get' | 'set' | 'drop' | 'clear' | 'has' | 'serialize';
|
|
2041
2140
|
type A_MemoryOperationContext<T extends any = any> = A_OperationContext<A_MemoryOperations, {
|
|
2042
2141
|
key: string;
|
|
@@ -2117,6 +2216,17 @@ declare class A_Memory<_StorageType extends Record<string, any> = Record<string,
|
|
|
2117
2216
|
toJSON(): Promise<_SerializedType>;
|
|
2118
2217
|
}
|
|
2119
2218
|
|
|
2219
|
+
declare class A_MemoryError extends A_Error {
|
|
2220
|
+
static readonly MemoryInitializationError = "Memory initialization error";
|
|
2221
|
+
static readonly MemoryDestructionError = "Memory destruction error";
|
|
2222
|
+
static readonly MemoryGetError = "Memory GET operation failed";
|
|
2223
|
+
static readonly MemorySetError = "Memory SET operation failed";
|
|
2224
|
+
static readonly MemoryDropError = "Memory DROP operation failed";
|
|
2225
|
+
static readonly MemoryClearError = "Memory CLEAR operation failed";
|
|
2226
|
+
static readonly MemoryHasError = "Memory HAS operation failed";
|
|
2227
|
+
static readonly MemorySerializeError = "Memory toJSON operation failed";
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2120
2230
|
type A_UTILS_TYPES__ScheduleObjectConfig = {
|
|
2121
2231
|
/**
|
|
2122
2232
|
* If the timeout is cleared, should the promise resolve or reject?
|
|
@@ -2225,4 +2335,9 @@ declare class A_Deferred<T> {
|
|
|
2225
2335
|
reject(reason?: any): void;
|
|
2226
2336
|
}
|
|
2227
2337
|
|
|
2228
|
-
|
|
2338
|
+
declare class A_StateMachineError extends A_Error {
|
|
2339
|
+
static readonly InitializationError = "A-StateMachine Initialization Error";
|
|
2340
|
+
static readonly TransitionError = "A-StateMachine Transition Error";
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
export { A_CONSTANTS__CONFIG_ENV_VARIABLES, A_CONSTANTS__CONFIG_ENV_VARIABLES_ARRAY, A_Channel, A_ChannelError, A_ChannelFeatures, A_ChannelRequest, A_ChannelRequestStatuses, A_Command, A_CommandError, A_CommandFeatures, A_CommandTransitions, type A_Command_Event, A_Command_Status, A_Config, A_ConfigError, A_ConfigLoader, A_Deferred, A_LOGGER_ANSI, A_LOGGER_COLORS, A_LOGGER_DEFAULT_LEVEL, A_LOGGER_DEFAULT_SCOPE_LENGTH, A_LOGGER_ENV_KEYS, A_LOGGER_FORMAT, A_LOGGER_SAFE_RANDOM_COLORS, A_LOGGER_TIME_FORMAT, A_Logger, A_LoggerEnvVariables, A_LoggerEnvVariablesArray, type A_LoggerEnvVariablesType, type A_LoggerLevel, A_Manifest, A_ManifestChecker, A_ManifestError, A_Memory, A_MemoryContext, type A_MemoryContextMeta, A_MemoryError, A_MemoryFeatures, type A_MemoryOperationContext, type A_MemoryOperations, type A_Memory_Storage, A_OperationContext, type A_Operation_Serialized, type A_Operation_Storage, A_Polyfill, A_Schedule, A_ScheduleObject, A_StateMachine, A_StateMachineError, A_StateMachineFeatures, A_StateMachineTransition, type A_StateMachineTransitionParams, type A_StateMachineTransitionStorage, type A_TYPES__Command_Constructor, type A_TYPES__Command_Init, type A_TYPES__Command_Listener, type A_TYPES__Command_Serialized, type A_TYPES__ConfigContainerConstructor, type A_TYPES__ConfigENVVariables, A_TYPES__ConfigFeature, type A_UTILS_TYPES__ManifestQuery, type A_UTILS_TYPES__ManifestRule, type A_UTILS_TYPES__Manifest_AllowedComponents, type A_UTILS_TYPES__Manifest_ComponentLevelConfig, type A_UTILS_TYPES__Manifest_Init, type A_UTILS_TYPES__Manifest_MethodLevelConfig, type A_UTILS_TYPES__Manifest_Rules, type A_UTILS_TYPES__ScheduleObjectCallback, type A_UTILS_TYPES__ScheduleObjectConfig, ConfigReader, ENVConfigReader, FileConfigReader, type IbufferInterface, type IcryptoInterface, type Ifspolyfill, type IhttpInterface, type IhttpsInterface, type IpathInterface, type IprocessInterface, type IurlInterface };
|
package/dist/index.d.ts
CHANGED
|
@@ -979,6 +979,7 @@ declare const A_LoggerEnvVariables: {
|
|
|
979
979
|
*/
|
|
980
980
|
readonly A_LOGGER_DEFAULT_LOG_COLOR: "A_LOGGER_DEFAULT_LOG_COLOR";
|
|
981
981
|
};
|
|
982
|
+
declare const A_LoggerEnvVariablesArray: readonly ["A_LOGGER_LEVEL", "A_LOGGER_DEFAULT_SCOPE_LENGTH", "A_LOGGER_DEFAULT_SCOPE_COLOR", "A_LOGGER_DEFAULT_LOG_COLOR"];
|
|
982
983
|
type A_LoggerEnvVariablesType = (typeof A_LoggerEnvVariables)[keyof typeof A_LoggerEnvVariables][];
|
|
983
984
|
|
|
984
985
|
/**
|
|
@@ -1879,6 +1880,98 @@ declare const A_CONSTANTS__CONFIG_ENV_VARIABLES: {};
|
|
|
1879
1880
|
type A_TYPES__ConfigENVVariables = (typeof A_CONSTANTS__CONFIG_ENV_VARIABLES)[keyof typeof A_CONSTANTS__CONFIG_ENV_VARIABLES][];
|
|
1880
1881
|
declare const A_CONSTANTS__CONFIG_ENV_VARIABLES_ARRAY: readonly [];
|
|
1881
1882
|
|
|
1883
|
+
type A_LoggerLevel = 'debug' | 'info' | 'warn' | 'error' | 'all';
|
|
1884
|
+
|
|
1885
|
+
/**
|
|
1886
|
+
* A-Logger Constants
|
|
1887
|
+
*
|
|
1888
|
+
* Configuration constants and default values for the A_Logger component
|
|
1889
|
+
*/
|
|
1890
|
+
/**
|
|
1891
|
+
* Default scope length for consistent message alignment
|
|
1892
|
+
*/
|
|
1893
|
+
declare const A_LOGGER_DEFAULT_SCOPE_LENGTH = 20;
|
|
1894
|
+
/**
|
|
1895
|
+
* Default log level when none is specified
|
|
1896
|
+
*/
|
|
1897
|
+
declare const A_LOGGER_DEFAULT_LEVEL = "all";
|
|
1898
|
+
/**
|
|
1899
|
+
* Terminal color codes mapping
|
|
1900
|
+
*/
|
|
1901
|
+
declare const A_LOGGER_COLORS: {
|
|
1902
|
+
readonly red: "31";
|
|
1903
|
+
readonly yellow: "33";
|
|
1904
|
+
readonly green: "32";
|
|
1905
|
+
readonly blue: "34";
|
|
1906
|
+
readonly cyan: "36";
|
|
1907
|
+
readonly magenta: "35";
|
|
1908
|
+
readonly gray: "90";
|
|
1909
|
+
readonly brightBlue: "94";
|
|
1910
|
+
readonly brightCyan: "96";
|
|
1911
|
+
readonly brightMagenta: "95";
|
|
1912
|
+
readonly darkGray: "30";
|
|
1913
|
+
readonly lightGray: "37";
|
|
1914
|
+
readonly indigo: "38;5;54";
|
|
1915
|
+
readonly violet: "38;5;93";
|
|
1916
|
+
readonly purple: "38;5;129";
|
|
1917
|
+
readonly lavender: "38;5;183";
|
|
1918
|
+
readonly skyBlue: "38;5;117";
|
|
1919
|
+
readonly steelBlue: "38;5;67";
|
|
1920
|
+
readonly slateBlue: "38;5;62";
|
|
1921
|
+
readonly deepBlue: "38;5;18";
|
|
1922
|
+
readonly lightBlue: "38;5;153";
|
|
1923
|
+
readonly periwinkle: "38;5;111";
|
|
1924
|
+
readonly cornflower: "38;5;69";
|
|
1925
|
+
readonly powder: "38;5;152";
|
|
1926
|
+
readonly charcoal: "38;5;236";
|
|
1927
|
+
readonly silver: "38;5;250";
|
|
1928
|
+
readonly smoke: "38;5;244";
|
|
1929
|
+
readonly slate: "38;5;240";
|
|
1930
|
+
};
|
|
1931
|
+
/**
|
|
1932
|
+
* Safe colors for random selection - grey-blue-violet palette
|
|
1933
|
+
* Excludes system colors (red, yellow, green) to avoid confusion with warnings/errors
|
|
1934
|
+
*/
|
|
1935
|
+
declare const A_LOGGER_SAFE_RANDOM_COLORS: readonly ["blue", "cyan", "magenta", "gray", "brightBlue", "brightCyan", "brightMagenta", "darkGray", "lightGray", "indigo", "violet", "purple", "lavender", "skyBlue", "steelBlue", "slateBlue", "deepBlue", "lightBlue", "periwinkle", "cornflower", "powder", "charcoal", "silver", "smoke", "slate"];
|
|
1936
|
+
/**
|
|
1937
|
+
* ANSI escape codes
|
|
1938
|
+
*/
|
|
1939
|
+
declare const A_LOGGER_ANSI: {
|
|
1940
|
+
readonly RESET: "\u001B[0m";
|
|
1941
|
+
readonly PREFIX: "\u001B[";
|
|
1942
|
+
readonly SUFFIX: "m";
|
|
1943
|
+
};
|
|
1944
|
+
/**
|
|
1945
|
+
* Timestamp format configuration
|
|
1946
|
+
*/
|
|
1947
|
+
declare const A_LOGGER_TIME_FORMAT: {
|
|
1948
|
+
readonly MINUTES_PAD: 2;
|
|
1949
|
+
readonly SECONDS_PAD: 2;
|
|
1950
|
+
readonly MILLISECONDS_PAD: 3;
|
|
1951
|
+
readonly SEPARATOR: ":";
|
|
1952
|
+
};
|
|
1953
|
+
/**
|
|
1954
|
+
* Log message structure constants
|
|
1955
|
+
*/
|
|
1956
|
+
declare const A_LOGGER_FORMAT: {
|
|
1957
|
+
readonly SCOPE_OPEN: "[";
|
|
1958
|
+
readonly SCOPE_CLOSE: "]";
|
|
1959
|
+
readonly TIME_OPEN: "|";
|
|
1960
|
+
readonly TIME_CLOSE: "|";
|
|
1961
|
+
readonly SEPARATOR: "-------------------------------";
|
|
1962
|
+
readonly INDENT_BASE: 3;
|
|
1963
|
+
readonly PIPE: "| ";
|
|
1964
|
+
};
|
|
1965
|
+
/**
|
|
1966
|
+
* Environment variable keys
|
|
1967
|
+
*/
|
|
1968
|
+
declare const A_LOGGER_ENV_KEYS: {
|
|
1969
|
+
readonly LOG_LEVEL: "A_LOGGER_LEVEL";
|
|
1970
|
+
readonly DEFAULT_SCOPE_LENGTH: "A_LOGGER_DEFAULT_SCOPE_LENGTH";
|
|
1971
|
+
readonly DEFAULT_SCOPE_COLOR: "A_LOGGER_DEFAULT_SCOPE_COLOR";
|
|
1972
|
+
readonly DEFAULT_LOG_COLOR: "A_LOGGER_DEFAULT_LOG_COLOR";
|
|
1973
|
+
};
|
|
1974
|
+
|
|
1882
1975
|
type A_UTILS_TYPES__Manifest_Init = Array<A_UTILS_TYPES__Manifest_ComponentLevelConfig>;
|
|
1883
1976
|
type A_UTILS_TYPES__Manifest_ComponentLevelConfig<T extends A_Component = A_Component> = {
|
|
1884
1977
|
/**
|
|
@@ -2037,6 +2130,12 @@ declare class A_MemoryContext<_MemoryType extends Record<string, any> = Record<s
|
|
|
2037
2130
|
get<K extends keyof _MemoryType>(param: K): _MemoryType[K] | undefined;
|
|
2038
2131
|
}
|
|
2039
2132
|
|
|
2133
|
+
type A_MemoryContextMeta<T extends Record<string, any> = Record<string, any>> = Omit<T, 'error'> & {
|
|
2134
|
+
error?: A_Error;
|
|
2135
|
+
};
|
|
2136
|
+
type A_Memory_Storage = Record<string, any> & {
|
|
2137
|
+
error?: A_Error;
|
|
2138
|
+
};
|
|
2040
2139
|
type A_MemoryOperations = 'get' | 'set' | 'drop' | 'clear' | 'has' | 'serialize';
|
|
2041
2140
|
type A_MemoryOperationContext<T extends any = any> = A_OperationContext<A_MemoryOperations, {
|
|
2042
2141
|
key: string;
|
|
@@ -2117,6 +2216,17 @@ declare class A_Memory<_StorageType extends Record<string, any> = Record<string,
|
|
|
2117
2216
|
toJSON(): Promise<_SerializedType>;
|
|
2118
2217
|
}
|
|
2119
2218
|
|
|
2219
|
+
declare class A_MemoryError extends A_Error {
|
|
2220
|
+
static readonly MemoryInitializationError = "Memory initialization error";
|
|
2221
|
+
static readonly MemoryDestructionError = "Memory destruction error";
|
|
2222
|
+
static readonly MemoryGetError = "Memory GET operation failed";
|
|
2223
|
+
static readonly MemorySetError = "Memory SET operation failed";
|
|
2224
|
+
static readonly MemoryDropError = "Memory DROP operation failed";
|
|
2225
|
+
static readonly MemoryClearError = "Memory CLEAR operation failed";
|
|
2226
|
+
static readonly MemoryHasError = "Memory HAS operation failed";
|
|
2227
|
+
static readonly MemorySerializeError = "Memory toJSON operation failed";
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2120
2230
|
type A_UTILS_TYPES__ScheduleObjectConfig = {
|
|
2121
2231
|
/**
|
|
2122
2232
|
* If the timeout is cleared, should the promise resolve or reject?
|
|
@@ -2225,4 +2335,9 @@ declare class A_Deferred<T> {
|
|
|
2225
2335
|
reject(reason?: any): void;
|
|
2226
2336
|
}
|
|
2227
2337
|
|
|
2228
|
-
|
|
2338
|
+
declare class A_StateMachineError extends A_Error {
|
|
2339
|
+
static readonly InitializationError = "A-StateMachine Initialization Error";
|
|
2340
|
+
static readonly TransitionError = "A-StateMachine Transition Error";
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
export { A_CONSTANTS__CONFIG_ENV_VARIABLES, A_CONSTANTS__CONFIG_ENV_VARIABLES_ARRAY, A_Channel, A_ChannelError, A_ChannelFeatures, A_ChannelRequest, A_ChannelRequestStatuses, A_Command, A_CommandError, A_CommandFeatures, A_CommandTransitions, type A_Command_Event, A_Command_Status, A_Config, A_ConfigError, A_ConfigLoader, A_Deferred, A_LOGGER_ANSI, A_LOGGER_COLORS, A_LOGGER_DEFAULT_LEVEL, A_LOGGER_DEFAULT_SCOPE_LENGTH, A_LOGGER_ENV_KEYS, A_LOGGER_FORMAT, A_LOGGER_SAFE_RANDOM_COLORS, A_LOGGER_TIME_FORMAT, A_Logger, A_LoggerEnvVariables, A_LoggerEnvVariablesArray, type A_LoggerEnvVariablesType, type A_LoggerLevel, A_Manifest, A_ManifestChecker, A_ManifestError, A_Memory, A_MemoryContext, type A_MemoryContextMeta, A_MemoryError, A_MemoryFeatures, type A_MemoryOperationContext, type A_MemoryOperations, type A_Memory_Storage, A_OperationContext, type A_Operation_Serialized, type A_Operation_Storage, A_Polyfill, A_Schedule, A_ScheduleObject, A_StateMachine, A_StateMachineError, A_StateMachineFeatures, A_StateMachineTransition, type A_StateMachineTransitionParams, type A_StateMachineTransitionStorage, type A_TYPES__Command_Constructor, type A_TYPES__Command_Init, type A_TYPES__Command_Listener, type A_TYPES__Command_Serialized, type A_TYPES__ConfigContainerConstructor, type A_TYPES__ConfigENVVariables, A_TYPES__ConfigFeature, type A_UTILS_TYPES__ManifestQuery, type A_UTILS_TYPES__ManifestRule, type A_UTILS_TYPES__Manifest_AllowedComponents, type A_UTILS_TYPES__Manifest_ComponentLevelConfig, type A_UTILS_TYPES__Manifest_Init, type A_UTILS_TYPES__Manifest_MethodLevelConfig, type A_UTILS_TYPES__Manifest_Rules, type A_UTILS_TYPES__ScheduleObjectCallback, type A_UTILS_TYPES__ScheduleObjectConfig, ConfigReader, ENVConfigReader, FileConfigReader, type IbufferInterface, type IcryptoInterface, type Ifspolyfill, type IhttpInterface, type IhttpsInterface, type IpathInterface, type IprocessInterface, type IurlInterface };
|