vona-module-test-vona 5.0.33 → 5.0.35

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.
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorModelOptions } from 'vona-module-a-orm';
2
+ import { BeanModelBase } from 'vona-module-a-orm';
3
+ import { EntityOrder } from '../entity/order.ts';
4
+ export interface IModelOptionsOrder extends IDecoratorModelOptions<EntityOrder> {
5
+ }
6
+ export declare class ModelOrder extends BeanModelBase<EntityOrder> {
7
+ }
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorModelOptions } from 'vona-module-a-orm';
2
+ import { BeanModelBase } from 'vona-module-a-orm';
3
+ import { EntityOrder } from '../entity/order.ts';
4
+ export interface IModelOptionsOrderStats extends IDecoratorModelOptions<EntityOrder> {
5
+ }
6
+ export declare class ModelOrderStats extends BeanModelBase<EntityOrder> {
7
+ }
@@ -0,0 +1,7 @@
1
+ import type { IDecoratorModelOptions } from 'vona-module-a-orm';
2
+ import { BeanModelBase } from 'vona-module-a-orm';
3
+ import { EntityProduct } from '../entity/product.ts';
4
+ export interface IModelOptionsProduct extends IDecoratorModelOptions<EntityProduct> {
5
+ }
6
+ export declare class ModelProduct extends BeanModelBase<EntityProduct> {
7
+ }
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.33",
4
+ "version": "5.0.35",
5
5
  "title": "test-vona",
6
6
  "vonaModule": {
7
7
  "fileVersion": 1,