@ccci/micro-server 1.1.12 → 1.1.13
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/decorators/Endpoints.d.ts +6 -2
- package/dist/index.js +109800 -103001
- package/dist/test/BaseControllerHelper.unit.test.d.ts +2 -0
- package/dist/utils/BaseSocketHandler.d.ts +0 -3
- package/dist/utils/Mixins.d.ts +0 -1
- package/dist/utils/Uploader.d.ts +0 -1
- package/dist/utils/WebSocketServer.d.ts +0 -2
- package/dist/utils/uploader-s3.d.ts +0 -1
- package/package.json +2 -2
- package/dist/utils/BaseRedis.d.ts +0 -36
- package/dist/utils/BaseRedisConnector.d.ts +0 -10
- package/dist/utils/RedisQueryHelper.d.ts +0 -38
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
export declare const endpoint: (target: any, methodName: string, descriptor: PropertyDescriptor) => void;
|
|
2
|
-
export declare const PublicAccess: <T extends
|
|
2
|
+
export declare const PublicAccess: <T extends {
|
|
3
|
+
new (...args: any[]): {};
|
|
4
|
+
}>(constructor: T) => {
|
|
3
5
|
new (...args: any[]): {
|
|
4
6
|
grantPublicAccess: boolean;
|
|
5
7
|
};
|
|
6
8
|
} & T;
|
|
7
|
-
export declare const PrivateAccess: <T extends
|
|
9
|
+
export declare const PrivateAccess: <T extends {
|
|
10
|
+
new (...args: any[]): {};
|
|
11
|
+
}>(constructor: T) => {
|
|
8
12
|
new (...args: any[]): {
|
|
9
13
|
grantPublicAccess: boolean;
|
|
10
14
|
};
|