@aponiajs/common 0.3.17 → 0.3.18
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.d.mts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -121,7 +121,7 @@ declare function getRouteMetadata(target: ClassToken<unknown>): readonly RouteMe
|
|
|
121
121
|
declare function getConstructorDependencies(target: ClassToken<unknown>): readonly Token<unknown>[];
|
|
122
122
|
//#endregion
|
|
123
123
|
//#region src/error.d.ts
|
|
124
|
-
type AponiaErrorCode = "MODULE_CYCLE" | "DUPLICATE_MODULE" | "DUPLICATE_PROVIDER" | "INVALID_EXPORT" | "AMBIGUOUS_PROVIDER" | "MISSING_PROVIDER" | "PROVIDER_CYCLE" | "INVALID_CONTROLLER" | "INVALID_MODULE" | "APPLICATION_NOT_LISTENING" | "UNSUPPORTED_CONTROLLER";
|
|
124
|
+
type AponiaErrorCode = "MODULE_CYCLE" | "DUPLICATE_MODULE" | "DUPLICATE_PROVIDER" | "INVALID_EXPORT" | "AMBIGUOUS_PROVIDER" | "MISSING_PROVIDER" | "PROVIDER_CYCLE" | "INVALID_CONTROLLER" | "INVALID_MODULE" | "INVALID_NATIVE_APPLICATION" | "APPLICATION_NOT_LISTENING" | "UNSUPPORTED_CONTROLLER";
|
|
125
125
|
declare class AponiaError extends Error {
|
|
126
126
|
readonly code: AponiaErrorCode;
|
|
127
127
|
readonly details: Readonly<Record<string, unknown>>;
|
package/package.json
CHANGED