vona-module-a-mail 5.0.7 → 5.0.9
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.
|
@@ -4,7 +4,7 @@ import type { TableIdentity } from 'table-identity';
|
|
|
4
4
|
/** entity: begin */
|
|
5
5
|
export * from '../entity/mail.ts';
|
|
6
6
|
import type { IEntityOptionsMail } from '../entity/mail.ts';
|
|
7
|
-
import 'vona';
|
|
7
|
+
import 'vona-module-a-orm';
|
|
8
8
|
declare module 'vona-module-a-orm' {
|
|
9
9
|
interface IEntityRecord {
|
|
10
10
|
'a-mail:mail': IEntityOptionsMail;
|
|
@@ -36,7 +36,7 @@ declare module 'vona-module-a-mail' {
|
|
|
36
36
|
/** model: begin */
|
|
37
37
|
export * from '../model/mail.ts';
|
|
38
38
|
import type { IModelOptionsMail } from '../model/mail.ts';
|
|
39
|
-
import 'vona';
|
|
39
|
+
import 'vona-module-a-orm';
|
|
40
40
|
declare module 'vona-module-a-orm' {
|
|
41
41
|
interface IModelRecord {
|
|
42
42
|
'a-mail:mail': IModelOptionsMail;
|
|
@@ -48,6 +48,7 @@ declare module 'vona-module-a-mail' {
|
|
|
48
48
|
interface ModelMail {
|
|
49
49
|
get $beanFullName(): 'a-mail.model.mail';
|
|
50
50
|
get $onionName(): 'a-mail:mail';
|
|
51
|
+
get $onionOptions(): IModelOptionsMail;
|
|
51
52
|
}
|
|
52
53
|
}
|
|
53
54
|
/** model: end */
|
|
@@ -120,7 +121,7 @@ declare module 'vona' {
|
|
|
120
121
|
/** bean: end */
|
|
121
122
|
/** service: begin */
|
|
122
123
|
export * from '../service/mail.ts';
|
|
123
|
-
import 'vona';
|
|
124
|
+
import 'vona-module-a-bean';
|
|
124
125
|
declare module 'vona-module-a-bean' {
|
|
125
126
|
interface IServiceRecord {
|
|
126
127
|
'a-mail:mail': never;
|
|
@@ -151,8 +152,8 @@ declare module 'vona' {
|
|
|
151
152
|
/** service: end */
|
|
152
153
|
/** meta: begin */
|
|
153
154
|
export * from '../bean/meta.version.ts';
|
|
154
|
-
import 'vona';
|
|
155
|
-
declare module 'vona' {
|
|
155
|
+
import 'vona-module-a-meta';
|
|
156
|
+
declare module 'vona-module-a-meta' {
|
|
156
157
|
interface IMetaRecord {
|
|
157
158
|
'a-mail:version': never;
|
|
158
159
|
}
|
|
@@ -180,6 +181,7 @@ declare module 'vona-module-a-mail' {
|
|
|
180
181
|
interface QueueMail {
|
|
181
182
|
get $beanFullName(): 'a-mail.queue.mail';
|
|
182
183
|
get $onionName(): 'a-mail:mail';
|
|
184
|
+
get $onionOptions(): IDecoratorQueueOptions;
|
|
183
185
|
}
|
|
184
186
|
}
|
|
185
187
|
/** queue: end */
|