vona-module-test-vona 5.0.47 → 5.0.48
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/.metadata/index.d.ts +13 -0
- package/dist/controller/order.d.ts +8 -0
- package/dist/index.js +367 -354
- package/package.json +1 -1
- package/src/.metadata/index.ts +19 -0
- package/src/controller/order.ts +20 -0
|
@@ -1230,6 +1230,7 @@ export * from '../controller/captcha.ts';
|
|
|
1230
1230
|
export * from '../controller/dtoTest.ts';
|
|
1231
1231
|
export * from '../controller/guardPassport.ts';
|
|
1232
1232
|
export * from '../controller/onion.ts';
|
|
1233
|
+
export * from '../controller/order.ts';
|
|
1233
1234
|
export * from '../controller/passport.ts';
|
|
1234
1235
|
export * from '../controller/performAction.ts';
|
|
1235
1236
|
export * from '../controller/post.ts';
|
|
@@ -1245,6 +1246,7 @@ import type { IControllerOptionsCaptcha } from '../controller/captcha.ts';
|
|
|
1245
1246
|
import type { IControllerOptionsDtoTest } from '../controller/dtoTest.ts';
|
|
1246
1247
|
import type { IControllerOptionsGuardPassport } from '../controller/guardPassport.ts';
|
|
1247
1248
|
import type { IControllerOptionsOnion } from '../controller/onion.ts';
|
|
1249
|
+
import type { IControllerOptionsOrder } from '../controller/order.ts';
|
|
1248
1250
|
import type { IControllerOptionsPassport } from '../controller/passport.ts';
|
|
1249
1251
|
import type { IControllerOptionsPerformAction } from '../controller/performAction.ts';
|
|
1250
1252
|
import type { IControllerOptionsPost } from '../controller/post.ts';
|
|
@@ -1263,6 +1265,7 @@ declare module 'vona-module-a-web' {
|
|
|
1263
1265
|
'test-vona:dtoTest': IControllerOptionsDtoTest;
|
|
1264
1266
|
'test-vona:guardPassport': IControllerOptionsGuardPassport;
|
|
1265
1267
|
'test-vona:onion': IControllerOptionsOnion;
|
|
1268
|
+
'test-vona:order': IControllerOptionsOrder;
|
|
1266
1269
|
'test-vona:passport': IControllerOptionsPassport;
|
|
1267
1270
|
'test-vona:performAction': IControllerOptionsPerformAction;
|
|
1268
1271
|
'test-vona:post': IControllerOptionsPost;
|
|
@@ -1316,6 +1319,12 @@ declare module 'vona-module-test-vona' {
|
|
|
1316
1319
|
get $beanFullName(): 'test-vona.controller.onion';
|
|
1317
1320
|
get $onionName(): 'test-vona:onion';
|
|
1318
1321
|
}
|
|
1322
|
+
interface ControllerOrder {
|
|
1323
|
+
}
|
|
1324
|
+
interface ControllerOrder {
|
|
1325
|
+
get $beanFullName(): 'test-vona.controller.order';
|
|
1326
|
+
get $onionName(): 'test-vona:order';
|
|
1327
|
+
}
|
|
1319
1328
|
interface ControllerPassport {
|
|
1320
1329
|
}
|
|
1321
1330
|
interface ControllerPassport {
|
|
@@ -1374,6 +1383,7 @@ import '../controller/captcha.ts';
|
|
|
1374
1383
|
import '../controller/dtoTest.ts';
|
|
1375
1384
|
import '../controller/guardPassport.ts';
|
|
1376
1385
|
import '../controller/onion.ts';
|
|
1386
|
+
import '../controller/order.ts';
|
|
1377
1387
|
import '../controller/passport.ts';
|
|
1378
1388
|
import '../controller/performAction.ts';
|
|
1379
1389
|
import '../controller/post.ts';
|
|
@@ -1404,6 +1414,9 @@ declare module 'vona-module-test-vona' {
|
|
|
1404
1414
|
interface IControllerOptionsOnion {
|
|
1405
1415
|
actions?: TypeControllerOptionsActions<ControllerOnion>;
|
|
1406
1416
|
}
|
|
1417
|
+
interface IControllerOptionsOrder {
|
|
1418
|
+
actions?: TypeControllerOptionsActions<ControllerOrder>;
|
|
1419
|
+
}
|
|
1407
1420
|
interface IControllerOptionsPassport {
|
|
1408
1421
|
actions?: TypeControllerOptionsActions<ControllerPassport>;
|
|
1409
1422
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { IDecoratorControllerOptions } from 'vona-module-a-web';
|
|
2
|
+
import { BeanBase } from 'vona';
|
|
3
|
+
import { DtoOrderResult } from '../dto/orderResult.ts';
|
|
4
|
+
export interface IControllerOptionsOrder extends IDecoratorControllerOptions {
|
|
5
|
+
}
|
|
6
|
+
export declare class ControllerOrder extends BeanBase {
|
|
7
|
+
findAll(): Promise<DtoOrderResult[]>;
|
|
8
|
+
}
|