vona-module-test-ssr 5.0.0 → 5.1.2

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 (55) hide show
  1. package/LICENSE +0 -0
  2. package/dist/.metadata/index.d.ts +182 -0
  3. package/dist/.metadata/index.d.ts.map +1 -0
  4. package/dist/.metadata/locales.d.ts +29 -0
  5. package/dist/.metadata/locales.d.ts.map +1 -0
  6. package/dist/.metadata/this.d.ts +3 -0
  7. package/dist/.metadata/this.d.ts.map +1 -0
  8. package/dist/bean/ssrMenu.tools.d.ts +8 -0
  9. package/dist/bean/ssrMenu.tools.d.ts.map +1 -0
  10. package/dist/bean/ssrMenuGroup.tools.d.ts +7 -0
  11. package/dist/bean/ssrMenuGroup.tools.d.ts.map +1 -0
  12. package/dist/bean/ssrSite.second.d.ts +20 -0
  13. package/dist/bean/ssrSite.second.d.ts.map +1 -0
  14. package/dist/config/locale/en-us.d.ts +15 -0
  15. package/dist/config/locale/en-us.d.ts.map +1 -0
  16. package/dist/config/locale/zh-cn.d.ts +13 -0
  17. package/dist/config/locale/zh-cn.d.ts.map +1 -0
  18. package/dist/controller/toolOne.d.ts +13 -0
  19. package/dist/controller/toolOne.d.ts.map +1 -0
  20. package/dist/controller/toolTwo.d.ts +11 -0
  21. package/dist/controller/toolTwo.d.ts.map +1 -0
  22. package/dist/dto/testBody.d.ts +7 -0
  23. package/dist/dto/testBody.d.ts.map +1 -0
  24. package/dist/dto/testDetail.d.ts +10 -0
  25. package/dist/dto/testDetail.d.ts.map +1 -0
  26. package/dist/dto/testParams.d.ts +8 -0
  27. package/dist/dto/testParams.d.ts.map +1 -0
  28. package/dist/dto/testQuery.d.ts +7 -0
  29. package/dist/dto/testQuery.d.ts.map +1 -0
  30. package/dist/dto/testResult.d.ts +12 -0
  31. package/dist/dto/testResult.d.ts.map +1 -0
  32. package/dist/index.d.ts +3 -0
  33. package/dist/index.d.ts.map +1 -0
  34. package/dist/index.js +311 -0
  35. package/dist/index.js.map +1 -0
  36. package/package.json +36 -18
  37. package/src/.metadata/index.ts +239 -0
  38. package/src/.metadata/locales.ts +13 -0
  39. package/src/.metadata/this.ts +2 -0
  40. package/src/bean/ssrMenu.tools.ts +32 -0
  41. package/src/bean/ssrMenuGroup.tools.ts +17 -0
  42. package/src/bean/ssrSite.second.ts +27 -0
  43. package/src/config/locale/en-us.ts +13 -0
  44. package/src/config/locale/zh-cn.ts +11 -0
  45. package/src/controller/toolOne.ts +38 -0
  46. package/src/controller/toolTwo.ts +32 -0
  47. package/src/dto/testBody.ts +10 -0
  48. package/src/dto/testDetail.ts +21 -0
  49. package/src/dto/testParams.ts +13 -0
  50. package/src/dto/testQuery.ts +12 -0
  51. package/src/dto/testResult.tsx +201 -0
  52. package/src/index.ts +2 -0
  53. package/zovaRest/test-second/index.d.mts +44997 -0
  54. package/zovaRest/test-second/index.mjs +289 -0
  55. package/zovaRest/test-second/package.json +14 -0
package/LICENSE CHANGED
File without changes
@@ -0,0 +1,182 @@
1
+ import type { TypeSymbolKeyFieldsMore } from 'vona-module-a-orm';
2
+ import type { TypeEntityOptionsFields, TypeControllerOptionsActions } from 'vona-module-a-openapi';
3
+ /** dto: begin */
4
+ export * from '../dto/testBody.ts';
5
+ export * from '../dto/testDetail.ts';
6
+ export * from '../dto/testParams.ts';
7
+ export * from '../dto/testQuery.ts';
8
+ export * from '../dto/testResult.tsx';
9
+ import type { IDtoOptionsTestBody } from '../dto/testBody.ts';
10
+ import type { IDtoOptionsTestDetail } from '../dto/testDetail.ts';
11
+ import type { IDtoOptionsTestParams } from '../dto/testParams.ts';
12
+ import type { IDtoOptionsTestQuery } from '../dto/testQuery.ts';
13
+ import type { IDtoOptionsTestResult } from '../dto/testResult.tsx';
14
+ import 'vona-module-a-web';
15
+ declare module 'vona-module-a-web' {
16
+ interface IDtoRecord {
17
+ 'test-ssr:testBody': IDtoOptionsTestBody;
18
+ 'test-ssr:testDetail': IDtoOptionsTestDetail;
19
+ 'test-ssr:testParams': IDtoOptionsTestParams;
20
+ 'test-ssr:testQuery': IDtoOptionsTestQuery;
21
+ 'test-ssr:testResult': IDtoOptionsTestResult;
22
+ }
23
+ }
24
+ declare module 'vona-module-test-ssr' {
25
+ }
26
+ /** dto: end */
27
+ /** dto: begin */
28
+ import type { DtoTestBody } from '../dto/testBody.ts';
29
+ import type { DtoTestDetail } from '../dto/testDetail.ts';
30
+ import type { DtoTestParams } from '../dto/testParams.ts';
31
+ import type { DtoTestQuery } from '../dto/testQuery.ts';
32
+ import type { DtoTestResult } from '../dto/testResult.tsx';
33
+ declare module 'vona-module-test-ssr' {
34
+ interface IDtoOptionsTestBody {
35
+ fields?: TypeEntityOptionsFields<DtoTestBody, IDtoOptionsTestBody[TypeSymbolKeyFieldsMore]>;
36
+ }
37
+ interface IDtoOptionsTestDetail {
38
+ fields?: TypeEntityOptionsFields<DtoTestDetail, IDtoOptionsTestDetail[TypeSymbolKeyFieldsMore]>;
39
+ }
40
+ interface IDtoOptionsTestParams {
41
+ fields?: TypeEntityOptionsFields<DtoTestParams, IDtoOptionsTestParams[TypeSymbolKeyFieldsMore]>;
42
+ }
43
+ interface IDtoOptionsTestQuery {
44
+ fields?: TypeEntityOptionsFields<DtoTestQuery, IDtoOptionsTestQuery[TypeSymbolKeyFieldsMore]>;
45
+ }
46
+ interface IDtoOptionsTestResult {
47
+ fields?: TypeEntityOptionsFields<DtoTestResult, IDtoOptionsTestResult[TypeSymbolKeyFieldsMore]>;
48
+ }
49
+ }
50
+ /** dto: end */
51
+ /** controller: begin */
52
+ export * from '../controller/toolOne.ts';
53
+ export * from '../controller/toolTwo.ts';
54
+ import type { IControllerOptionsToolOne } from '../controller/toolOne.ts';
55
+ import type { IControllerOptionsToolTwo } from '../controller/toolTwo.ts';
56
+ import 'vona-module-a-web';
57
+ declare module 'vona-module-a-web' {
58
+ interface IControllerRecord {
59
+ 'test-ssr:toolOne': IControllerOptionsToolOne;
60
+ 'test-ssr:toolTwo': IControllerOptionsToolTwo;
61
+ }
62
+ }
63
+ declare module 'vona-module-test-ssr' {
64
+ interface ControllerToolOne {
65
+ }
66
+ interface ControllerToolOne {
67
+ get $beanFullName(): 'test-ssr.controller.toolOne';
68
+ get $onionName(): 'test-ssr:toolOne';
69
+ get $onionOptions(): IControllerOptionsToolOne;
70
+ }
71
+ interface ControllerToolTwo {
72
+ }
73
+ interface ControllerToolTwo {
74
+ get $beanFullName(): 'test-ssr.controller.toolTwo';
75
+ get $onionName(): 'test-ssr:toolTwo';
76
+ get $onionOptions(): IControllerOptionsToolTwo;
77
+ }
78
+ }
79
+ /** controller: end */
80
+ /** controller: begin */
81
+ import '../controller/toolOne.ts';
82
+ import '../controller/toolTwo.ts';
83
+ declare module 'vona-module-test-ssr' {
84
+ interface IControllerOptionsToolOne {
85
+ actions?: TypeControllerOptionsActions<ControllerToolOne>;
86
+ }
87
+ interface IControllerOptionsToolTwo {
88
+ actions?: TypeControllerOptionsActions<ControllerToolTwo>;
89
+ }
90
+ }
91
+ declare module 'vona-module-a-web' {
92
+ interface IApiPathGetRecord {
93
+ '/test/ssr/toolOne/test/:id?': undefined;
94
+ '/test/ssr/toolTwo/test/:id?': undefined;
95
+ }
96
+ interface IApiPathPostRecord {
97
+ '/test/ssr/toolOne/test/:id?': undefined;
98
+ }
99
+ }
100
+ /** controller: end */
101
+ /** ssrSite: begin */
102
+ export * from '../bean/ssrSite.second.ts';
103
+ import type { ISsrSiteOptionsSecond } from '../bean/ssrSite.second.ts';
104
+ import 'vona-module-a-ssr';
105
+ declare module 'vona-module-a-ssr' {
106
+ interface ISsrSiteRecord {
107
+ 'test-ssr:second': ISsrSiteOptionsSecond;
108
+ }
109
+ }
110
+ declare module 'vona-module-test-ssr' {
111
+ interface SsrSiteSecond {
112
+ }
113
+ interface SsrSiteSecond {
114
+ get $beanFullName(): 'test-ssr.ssrSite.second';
115
+ get $onionName(): 'test-ssr:second';
116
+ get $onionOptions(): ISsrSiteOptionsSecond;
117
+ }
118
+ }
119
+ /** ssrSite: end */
120
+ /** ssrMenu: begin */
121
+ export * from '../bean/ssrMenu.tools.ts';
122
+ import type { ISsrMenuOptionsTools } from '../bean/ssrMenu.tools.ts';
123
+ import 'vona-module-a-ssr';
124
+ declare module 'vona-module-a-ssr' {
125
+ interface ISsrMenuRecord {
126
+ 'test-ssr:tools': ISsrMenuOptionsTools;
127
+ }
128
+ }
129
+ declare module 'vona-module-test-ssr' {
130
+ interface SsrMenuTools {
131
+ }
132
+ interface SsrMenuTools {
133
+ get $beanFullName(): 'test-ssr.ssrMenu.tools';
134
+ get $onionName(): 'test-ssr:tools';
135
+ get $onionOptions(): ISsrMenuOptionsTools;
136
+ }
137
+ }
138
+ /** ssrMenu: end */
139
+ /** ssrMenuGroup: begin */
140
+ export * from '../bean/ssrMenuGroup.tools.ts';
141
+ import type { ISsrMenuGroupOptionsTools } from '../bean/ssrMenuGroup.tools.ts';
142
+ import 'vona-module-a-ssr';
143
+ declare module 'vona-module-a-ssr' {
144
+ interface ISsrMenuGroupRecord {
145
+ 'test-ssr:tools': ISsrMenuGroupOptionsTools;
146
+ }
147
+ }
148
+ declare module 'vona-module-test-ssr' {
149
+ interface SsrMenuGroupTools {
150
+ }
151
+ interface SsrMenuGroupTools {
152
+ get $beanFullName(): 'test-ssr.ssrMenuGroup.tools';
153
+ get $onionName(): 'test-ssr:tools';
154
+ get $onionOptions(): ISsrMenuGroupOptionsTools;
155
+ }
156
+ }
157
+ /** ssrMenuGroup: end */
158
+ /** locale: begin */
159
+ import { locales } from './locales.ts';
160
+ /** locale: end */
161
+ /** scope: begin */
162
+ import { BeanScopeBase, type BeanScopeUtil, type TypeModuleLocales, type TypeLocaleBase } from 'vona';
163
+ export declare class ScopeModuleTestSsr extends BeanScopeBase {
164
+ }
165
+ export interface ScopeModuleTestSsr {
166
+ util: BeanScopeUtil;
167
+ locale: TypeModuleLocales<(typeof locales)[TypeLocaleBase]>;
168
+ }
169
+ import 'vona';
170
+ declare module 'vona' {
171
+ interface IBeanScopeRecord {
172
+ 'test-ssr': ScopeModuleTestSsr;
173
+ }
174
+ interface IBeanScopeContainer {
175
+ testSsr: ScopeModuleTestSsr;
176
+ }
177
+ interface IBeanScopeLocale {
178
+ 'test-ssr': (typeof locales)[TypeLocaleBase];
179
+ }
180
+ }
181
+ /** scope: end */
182
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/.metadata/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,29 @@
1
+ import type { TypeLocaleBase } from 'vona';
2
+ export declare const locales: {
3
+ 'en-us': {
4
+ Name: string;
5
+ Tools: string;
6
+ ToolOne: string;
7
+ ChildOne: string;
8
+ ChildTwo: string;
9
+ TestApples_: string;
10
+ TestApples_0: string;
11
+ TestApples_1: string;
12
+ TestNameApples_: string;
13
+ TestNameApples_0_1: string;
14
+ TestNameApples_1_1: string;
15
+ };
16
+ 'zh-cn': {
17
+ Name: string;
18
+ Tools: string;
19
+ ToolOne: string;
20
+ ChildOne: string;
21
+ ChildTwo: string;
22
+ TestApples_: string;
23
+ TestApples_0: string;
24
+ TestNameApples_: string;
25
+ TestNameApples_0_1: string;
26
+ };
27
+ };
28
+ export declare function $locale<K extends keyof (typeof locales)[TypeLocaleBase]>(key: K, ...args: any[]): any;
29
+ //# sourceMappingURL=locales.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"locales.d.ts","sourceRoot":"","sources":["../../src/.metadata/locales.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,MAAM,CAAC;AAK3C,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;;;;;;;CAGnB,CAAC;AAEF,wBAAgB,OAAO,CAAC,CAAC,SAAS,MAAM,CAAC,OAAO,OAAO,CAAC,CAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,EAAE,GAAG,IAAI,EAAE,GAAG,EAAE,GAAG,GAAG,CAErG"}
@@ -0,0 +1,3 @@
1
+ export declare const __ThisModule__ = "test-ssr";
2
+ export { ScopeModuleTestSsr as ScopeModule } from './index.ts';
3
+ //# sourceMappingURL=this.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"this.d.ts","sourceRoot":"","sources":["../../src/.metadata/this.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,cAAc,aAAa,CAAC;AACzC,OAAO,EAAE,kBAAkB,IAAI,WAAW,EAAE,MAAM,YAAY,CAAC"}
@@ -0,0 +1,8 @@
1
+ import type { IDecoratorSsrMenuOptions } from 'vona-module-a-ssr';
2
+ import { BeanBase } from 'vona';
3
+ import type { ISsrSiteOptionsSecond } from './ssrSite.second.ts';
4
+ export interface ISsrMenuOptionsTools extends IDecoratorSsrMenuOptions<ISsrSiteOptionsSecond> {
5
+ }
6
+ export declare class SsrMenuTools extends BeanBase {
7
+ }
8
+ //# sourceMappingURL=ssrMenu.tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ssrMenu.tools.d.ts","sourceRoot":"","sources":["../../src/bean/ssrMenu.tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAElE,OAAO,EAAE,QAAQ,EAAU,MAAM,MAAM,CAAC;AAIxC,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAIjE,MAAM,WAAW,oBAAqB,SAAQ,wBAAwB,CAAC,qBAAqB,CAAC;CAAG;AAIhG,qBAiBa,YAAa,SAAQ,QAAQ;CAAG"}
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorSsrMenuGroupOptions } from 'vona-module-a-ssr';
2
+ import { BeanBase } from 'vona';
3
+ export interface ISsrMenuGroupOptionsTools extends IDecoratorSsrMenuGroupOptions {
4
+ }
5
+ export declare class SsrMenuGroupTools extends BeanBase {
6
+ }
7
+ //# sourceMappingURL=ssrMenuGroup.tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ssrMenuGroup.tools.d.ts","sourceRoot":"","sources":["../../src/bean/ssrMenuGroup.tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,6BAA6B,EAAE,MAAM,mBAAmB,CAAC;AAEvE,OAAO,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAKhC,MAAM,WAAW,yBAA0B,SAAQ,6BAA6B;CAAG;AAEnF,qBAOa,iBAAkB,SAAQ,QAAQ;CAAG"}
@@ -0,0 +1,20 @@
1
+ import type { IDecoratorSsrSiteOptions } from 'vona-module-a-ssr';
2
+ import type { IPagePathRecord } from 'zova-rest-test-second';
3
+ import { BeanSsrSiteBase } from 'vona-module-a-ssr';
4
+ import type { DtoTestResult } from '../dto/testResult.tsx';
5
+ declare module 'vona-module-a-ssr' {
6
+ interface ISsrSitePublicPathRecord {
7
+ second: never;
8
+ }
9
+ }
10
+ export interface ISsrSiteOptionsSecondPages extends IPagePathRecord {
11
+ }
12
+ export interface ISsrSiteOptionsSecondPagesData {
13
+ '/demo/basic/toolOne/:id?': unknown;
14
+ '/demo/basic/toolTwo/:id?': DtoTestResult;
15
+ }
16
+ export interface ISsrSiteOptionsSecond extends IDecoratorSsrSiteOptions<ISsrSiteOptionsSecondPages, ISsrSiteOptionsSecondPagesData> {
17
+ }
18
+ export declare class SsrSiteSecond extends BeanSsrSiteBase<ISsrSiteOptionsSecond> {
19
+ }
20
+ //# sourceMappingURL=ssrSite.second.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ssrSite.second.d.ts","sourceRoot":"","sources":["../../src/bean/ssrSite.second.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,mBAAmB,CAAC;AAClE,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAE7D,OAAO,EAAE,eAAe,EAAW,MAAM,mBAAmB,CAAC;AAE7D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAE3D,OAAO,QAAQ,mBAAmB,CAAC;IACjC,UAAiB,wBAAwB;QACvC,MAAM,EAAE,KAAK,CAAC;KACf;CACF;AAED,MAAM,WAAW,0BAA2B,SAAQ,eAAe;CAAG;AAEtE,MAAM,WAAW,8BAA8B;IAC7C,0BAA0B,EAAE,OAAO,CAAC;IACpC,0BAA0B,EAAE,aAAa,CAAC;CAC3C;AAED,MAAM,WAAW,qBAAsB,SAAQ,wBAAwB,CAAC,0BAA0B,EAAE,8BAA8B,CAAC;CAAG;AAEtI,qBAIa,aAAc,SAAQ,eAAe,CAAC,qBAAqB,CAAC;CAAG"}
@@ -0,0 +1,15 @@
1
+ declare const _default: {
2
+ Name: string;
3
+ Tools: string;
4
+ ToolOne: string;
5
+ ChildOne: string;
6
+ ChildTwo: string;
7
+ TestApples_: string;
8
+ TestApples_0: string;
9
+ TestApples_1: string;
10
+ TestNameApples_: string;
11
+ TestNameApples_0_1: string;
12
+ TestNameApples_1_1: string;
13
+ };
14
+ export default _default;
15
+ //# sourceMappingURL=en-us.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"en-us.d.ts","sourceRoot":"","sources":["../../../src/config/locale/en-us.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,wBAYE"}
@@ -0,0 +1,13 @@
1
+ declare const _default: {
2
+ Name: string;
3
+ Tools: string;
4
+ ToolOne: string;
5
+ ChildOne: string;
6
+ ChildTwo: string;
7
+ TestApples_: string;
8
+ TestApples_0: string;
9
+ TestNameApples_: string;
10
+ TestNameApples_0_1: string;
11
+ };
12
+ export default _default;
13
+ //# sourceMappingURL=zh-cn.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"zh-cn.d.ts","sourceRoot":"","sources":["../../../src/config/locale/zh-cn.ts"],"names":[],"mappings":";;;;;;;;;;;AAAA,wBAUE"}
@@ -0,0 +1,13 @@
1
+ import type { IDecoratorControllerOptions } from 'vona-module-a-web';
2
+ import { BeanBase } from 'vona';
3
+ import { DtoTestBody } from '../dto/testBody.ts';
4
+ import { DtoTestParams } from '../dto/testParams.ts';
5
+ import { DtoTestQuery } from '../dto/testQuery.ts';
6
+ import { DtoTestResult } from '../dto/testResult.tsx';
7
+ export interface IControllerOptionsToolOne extends IDecoratorControllerOptions {
8
+ }
9
+ export declare class ControllerToolOne extends BeanBase {
10
+ testGet(_params: DtoTestParams, _query: DtoTestQuery): Promise<void>;
11
+ test(params: DtoTestParams, query: DtoTestQuery, body: DtoTestBody): Promise<DtoTestResult>;
12
+ }
13
+ //# sourceMappingURL=toolOne.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toolOne.d.ts","sourceRoot":"","sources":["../../src/controller/toolOne.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mBAAmB,CAAC;AAErE,OAAO,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAKhC,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD,MAAM,WAAW,yBAA0B,SAAQ,2BAA2B;CAAG;AAEjF,qBACa,iBAAkB,SAAQ,QAAQ;IAKvC,OAAO,CAAqC,OAAO,EAAE,aAAa,EAAqC,MAAM,EAAE,YAAY;IAI3H,IAAI,CAC4B,MAAM,EAAE,aAAa,EACtB,KAAK,EAAE,YAAY,EACrB,IAAI,EAAE,WAAW;CAUrD"}
@@ -0,0 +1,11 @@
1
+ import type { IDecoratorControllerOptions } from 'vona-module-a-web';
2
+ import { BeanBase } from 'vona';
3
+ import { DtoTestParams } from '../dto/testParams.ts';
4
+ import { DtoTestQuery } from '../dto/testQuery.ts';
5
+ import { DtoTestResult } from '../dto/testResult.tsx';
6
+ export interface IControllerOptionsToolTwo extends IDecoratorControllerOptions {
7
+ }
8
+ export declare class ControllerToolTwo extends BeanBase {
9
+ test(params: DtoTestParams, query: DtoTestQuery): Promise<DtoTestResult>;
10
+ }
11
+ //# sourceMappingURL=toolTwo.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"toolTwo.d.ts","sourceRoot":"","sources":["../../src/controller/toolTwo.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,mBAAmB,CAAC;AAErE,OAAO,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAMhC,OAAO,EAAE,aAAa,EAAE,MAAM,sBAAsB,CAAC;AACrD,OAAO,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAItD,MAAM,WAAW,yBAA0B,SAAQ,2BAA2B;CAAG;AAEjF,qBACa,iBAAkB,SAAQ,QAAQ;IAKvC,IAAI,CAAqC,MAAM,EAAE,aAAa,EAAqC,KAAK,EAAE,YAAY;CAS7H"}
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorDtoOptions } from 'vona-module-a-web';
2
+ import { DtoTestResult } from './testResult.tsx';
3
+ export interface IDtoOptionsTestBody extends IDecoratorDtoOptions {
4
+ }
5
+ export declare class DtoTestBody extends DtoTestResult {
6
+ }
7
+ //# sourceMappingURL=testBody.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testBody.d.ts","sourceRoot":"","sources":["../../src/dto/testBody.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAI9D,OAAO,EAAE,aAAa,EAAE,MAAM,kBAAkB,CAAC;AAEjD,MAAM,WAAW,mBAAoB,SAAQ,oBAAoB;CAAG;AAEpE,qBACa,WAAY,SAAQ,aAAa;CAAG"}
@@ -0,0 +1,10 @@
1
+ import type { IDecoratorDtoOptions } from 'vona-module-a-web';
2
+ export interface IDtoOptionsTestDetail extends IDecoratorDtoOptions {
3
+ }
4
+ export declare class DtoTestDetail {
5
+ name: string;
6
+ price: number;
7
+ quantity: number;
8
+ amount: number;
9
+ }
10
+ //# sourceMappingURL=testDetail.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testDetail.d.ts","sourceRoot":"","sources":["../../src/dto/testDetail.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAK9D,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;CAAG;AAEtE,qBACa,aAAa;IAExB,IAAI,EAAE,MAAM,CAAC;IAGb,KAAK,EAAE,MAAM,CAAC;IAGd,QAAQ,EAAE,MAAM,CAAC;IAGjB,MAAM,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,8 @@
1
+ import type { TableIdentity } from 'table-identity';
2
+ import type { IDecoratorDtoOptions } from 'vona-module-a-web';
3
+ export interface IDtoOptionsTestParams extends IDecoratorDtoOptions {
4
+ }
5
+ export declare class DtoTestParams {
6
+ id?: TableIdentity;
7
+ }
8
+ //# sourceMappingURL=testParams.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testParams.d.ts","sourceRoot":"","sources":["../../src/dto/testParams.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAK9D,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;CAAG;AAEtE,qBACa,aAAa;IAExB,EAAE,CAAC,EAAE,aAAa,CAAC;CACpB"}
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorDtoOptions } from 'vona-module-a-web';
2
+ export interface IDtoOptionsTestQuery extends IDecoratorDtoOptions {
3
+ }
4
+ export declare class DtoTestQuery {
5
+ name: string;
6
+ }
7
+ //# sourceMappingURL=testQuery.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testQuery.d.ts","sourceRoot":"","sources":["../../src/dto/testQuery.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAK9D,MAAM,WAAW,oBAAqB,SAAQ,oBAAoB;CAAG;AAErE,qBACa,YAAY;IAEvB,IAAI,EAAE,MAAM,CAAC;CACd"}
@@ -0,0 +1,12 @@
1
+ import type { TableIdentity } from 'table-identity';
2
+ import type { IDecoratorDtoOptions } from 'vona-module-a-web';
3
+ import { DtoTestDetail } from './testDetail.ts';
4
+ export interface IDtoOptionsTestResult extends IDecoratorDtoOptions<'_custom1' | '_custom2' | '_custom3' | '_custom4' | '_custom5' | '_customCopy' | '_customCopied'> {
5
+ }
6
+ export declare class DtoTestResult {
7
+ id: TableIdentity;
8
+ name: string;
9
+ married: boolean;
10
+ details: DtoTestDetail[];
11
+ }
12
+ //# sourceMappingURL=testResult.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testResult.d.ts","sourceRoot":"","sources":["../../src/dto/testResult.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,gBAAgB,CAAC;AACpD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AAY9D,OAAO,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AAEhD,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB,CACjE,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,UAAU,GAAG,aAAa,GAAG,eAAe,CACjG;CAAG;AAEJ,qBA2Ja,aAAa;IAExB,EAAE,EAAE,aAAa,CAAC;IAiBlB,IAAI,EAAE,MAAM,CAAC;IAGb,OAAO,EAAE,OAAO,CAAC;IAGjB,OAAO,EAAE,aAAa,EAAE,CAAC;CAC1B"}
@@ -0,0 +1,3 @@
1
+ export * from './.metadata/index.ts';
2
+ export * from './.metadata/locales.ts';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,sBAAsB,CAAC;AACrC,cAAc,wBAAwB,CAAC"}