vona-module-test-vona 5.0.12 → 5.0.14

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.
Files changed (42) hide show
  1. package/dist/.metadata/index.d.ts +551 -0
  2. package/dist/.metadata/this.d.ts +2 -0
  3. package/dist/bean/aop.regExp.d.ts +7 -0
  4. package/dist/bean/aop.simple.d.ts +14 -0
  5. package/dist/bean/aopMethod.test.d.ts +13 -0
  6. package/dist/bean/bean.testCtx.d.ts +21 -0
  7. package/dist/bean/broadcast.test.d.ts +8 -0
  8. package/dist/bean/cacheMem.test.d.ts +5 -0
  9. package/dist/bean/cacheRedis.test.d.ts +5 -0
  10. package/dist/bean/event.helloEcho.d.ts +7 -0
  11. package/dist/bean/eventListener.helloEcho.d.ts +9 -0
  12. package/dist/bean/meta.version.d.ts +5 -0
  13. package/dist/bean/queue.test.d.ts +10 -0
  14. package/dist/bean/schedule.test.d.ts +5 -0
  15. package/dist/bean/schedule.test3.d.ts +5 -0
  16. package/dist/bean/summerCache.test.d.ts +12 -0
  17. package/dist/config/config.d.ts +2 -0
  18. package/dist/config/locale/en-us.d.ts +12 -0
  19. package/dist/config/locale/zh-cn.d.ts +10 -0
  20. package/dist/controller/bean.d.ts +8 -0
  21. package/dist/controller/cacheMem.d.ts +7 -0
  22. package/dist/controller/cacheRedis.d.ts +7 -0
  23. package/dist/controller/onion.d.ts +15 -0
  24. package/dist/controller/passport.d.ts +16 -0
  25. package/dist/controller/performAction.d.ts +10 -0
  26. package/dist/controller/queue.d.ts +8 -0
  27. package/dist/controller/summer.d.ts +7 -0
  28. package/dist/controller/tail.d.ts +7 -0
  29. package/dist/controller/transaction.d.ts +8 -0
  30. package/dist/controller/upload.d.ts +10 -0
  31. package/dist/dto/profile.d.ts +7 -0
  32. package/dist/dto/user.d.ts +10 -0
  33. package/dist/entity/test.d.ts +8 -0
  34. package/dist/index.d.ts +1 -0
  35. package/dist/index.js +1220 -0
  36. package/dist/model/test.d.ts +4 -0
  37. package/dist/service/aopMethod.d.ts +12 -0
  38. package/dist/service/test.d.ts +4 -0
  39. package/dist/service/testApp.d.ts +5 -0
  40. package/dist/service/testClass.d.ts +8 -0
  41. package/dist/service/transaction.d.ts +5 -0
  42. package/package.json +7 -3
@@ -0,0 +1,4 @@
1
+ import { BeanModelBase } from 'vona-module-a-database';
2
+ import { EntityTest } from '../entity/test.ts';
3
+ export declare class ModelTest extends BeanModelBase<EntityTest> {
4
+ }
@@ -0,0 +1,12 @@
1
+ import { BeanBase } from 'vona';
2
+ declare class ServiceAopMethodBase extends BeanBase {
3
+ testSyncBase(): string;
4
+ }
5
+ export declare class ServiceAopMethod extends ServiceAopMethodBase {
6
+ private _name;
7
+ testSync(): string;
8
+ testAsync(): Promise<string>;
9
+ get name(): string;
10
+ set name(value: string);
11
+ }
12
+ export {};
@@ -0,0 +1,4 @@
1
+ import { BeanBase } from 'vona';
2
+ export declare class ServiceTest extends BeanBase {
3
+ get name(): string;
4
+ }
@@ -0,0 +1,5 @@
1
+ import { BeanBase } from 'vona';
2
+ export declare class ServiceTestApp extends BeanBase {
3
+ actionSync({ a, b }: any): any;
4
+ actionAsync({ a, b }: any): Promise<any>;
5
+ }
@@ -0,0 +1,8 @@
1
+ import { BeanBase } from 'vona';
2
+ declare class ClassBeanBase extends BeanBase {
3
+ actionSync({ a, b }: any): any;
4
+ }
5
+ export declare class ServiceTestClass extends ClassBeanBase {
6
+ actionAsync({ a, b }: any): Promise<any>;
7
+ }
8
+ export {};
@@ -0,0 +1,5 @@
1
+ import { BeanBase } from 'vona';
2
+ export declare class ServiceTransaction extends BeanBase {
3
+ fail(item: object): Promise<void>;
4
+ success(item: object): Promise<void>;
5
+ }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-module-test-vona",
3
3
  "type": "module",
4
- "version": "5.0.12",
4
+ "version": "5.0.14",
5
5
  "title": "test-vona",
6
6
  "vonaModule": {
7
7
  "fileVersion": 1,
@@ -28,8 +28,12 @@
28
28
  "dist",
29
29
  "static"
30
30
  ],
31
+ "devDependencies": {
32
+ "clean-package": "^2.2.0",
33
+ "rimraf": "^6.0.1"
34
+ },
31
35
  "scripts": {
32
- "clean": "rimraf dist tsconfig.tsbuildinfo",
33
- "tsc:publish": "npm run clean && tsc"
36
+ "clean": "rimraf dist tsconfig.build.tsbuildinfo",
37
+ "tsc:publish": "npm run clean && vona :bin:buildModule && tsc -p tsconfig.build.json"
34
38
  }
35
39
  }