@ez4/gateway 0.28.0 → 0.30.0
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/errors/access.d.ts +11 -0
- package/dist/errors/context.d.ts +8 -0
- package/dist/errors/provider.d.ts +8 -0
- package/dist/errors/service.d.ts +4 -1
- package/dist/library.cjs +263 -227
- package/dist/library.d.ts +3 -1
- package/dist/library.mjs +233 -200
- package/dist/main.cjs +4 -4
- package/dist/main.mjs +4 -4
- package/dist/metadata/access.d.ts +3 -0
- package/dist/metadata/body.d.ts +1 -1
- package/dist/metadata/context.d.ts +3 -0
- package/dist/metadata/provider.d.ts +3 -0
- package/dist/metadata/utils.d.ts +3 -1
- package/dist/services/common.d.ts +10 -1
- package/dist/services/contract.d.ts +8 -3
- package/dist/services/utils.d.ts +1 -1
- package/dist/triggers/service.d.ts +2 -0
- package/dist/types/common.d.ts +11 -4
- package/dist/types/service.d.ts +3 -2
- package/package.json +12 -8
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IncompleteTypeError, IncorrectTypeError, InvalidTypeError } from '@ez4/common/library';
|
|
2
|
+
export declare class IncompleteAccessError extends IncompleteTypeError {
|
|
3
|
+
constructor(properties: string[], fileName?: string);
|
|
4
|
+
}
|
|
5
|
+
export declare class InvalidAccessTypeError extends InvalidTypeError {
|
|
6
|
+
constructor(fileName?: string);
|
|
7
|
+
}
|
|
8
|
+
export declare class IncorrectAccessTypeError extends IncorrectTypeError {
|
|
9
|
+
cacheType: string;
|
|
10
|
+
constructor(cacheType: string, fileName?: string);
|
|
11
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IncompleteTypeError, InvalidTypeError } from '@ez4/common/library';
|
|
2
|
+
export declare class InvalidContextTypeError extends InvalidTypeError {
|
|
3
|
+
baseType: string;
|
|
4
|
+
constructor(baseType: string, fileName?: string);
|
|
5
|
+
}
|
|
6
|
+
export declare class IncompleteContextError extends IncompleteTypeError {
|
|
7
|
+
constructor(properties: string[], fileName?: string);
|
|
8
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IncompleteTypeError, InvalidTypeError } from '@ez4/common/library';
|
|
2
|
+
export declare class InvalidProviderTypeError extends InvalidTypeError {
|
|
3
|
+
baseType: string;
|
|
4
|
+
constructor(baseType: string, fileName?: string);
|
|
5
|
+
}
|
|
6
|
+
export declare class IncompleteProviderError extends IncompleteTypeError {
|
|
7
|
+
constructor(properties: string[], fileName?: string);
|
|
8
|
+
}
|
package/dist/errors/service.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { IncompleteTypeError } from '@ez4/common/library';
|
|
1
|
+
import { IncompleteTypeError, TypeCollisionError } from '@ez4/common/library';
|
|
2
2
|
export declare class IncompleteServiceError extends IncompleteTypeError {
|
|
3
3
|
constructor(properties: string[], fileName?: string);
|
|
4
4
|
}
|
|
5
|
+
export declare class ServiceCollisionError extends TypeCollisionError {
|
|
6
|
+
constructor(property: string, fileName?: string);
|
|
7
|
+
}
|