vona-module-a-orm 5.0.73 → 5.0.74
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.
|
@@ -13,6 +13,7 @@ declare module 'vona-module-a-orm' {
|
|
|
13
13
|
interface AopMethodTransaction {
|
|
14
14
|
get $beanFullName(): 'a-orm.aopMethod.transaction';
|
|
15
15
|
get $onionName(): 'a-orm:transaction';
|
|
16
|
+
get $onionOptions(): IAopMethodOptionsTransaction;
|
|
16
17
|
}
|
|
17
18
|
}
|
|
18
19
|
/** aopMethod: end */
|
|
@@ -98,6 +99,7 @@ declare module 'vona-module-a-orm' {
|
|
|
98
99
|
interface BroadcastColumnsClear {
|
|
99
100
|
get $beanFullName(): 'a-orm.broadcast.columnsClear';
|
|
100
101
|
get $onionName(): 'a-orm:columnsClear';
|
|
102
|
+
get $onionOptions(): IDecoratorBroadcastOptions;
|
|
101
103
|
}
|
|
102
104
|
}
|
|
103
105
|
/** broadcast: end */
|
|
@@ -161,6 +163,7 @@ declare module 'vona-module-a-orm' {
|
|
|
161
163
|
interface QueueDoubleDelete {
|
|
162
164
|
get $beanFullName(): 'a-orm.queue.doubleDelete';
|
|
163
165
|
get $onionName(): 'a-orm:doubleDelete';
|
|
166
|
+
get $onionOptions(): IDecoratorQueueOptions;
|
|
164
167
|
}
|
|
165
168
|
}
|
|
166
169
|
/** queue: end */
|
|
@@ -184,6 +187,7 @@ declare module 'vona-module-a-orm' {
|
|
|
184
187
|
interface ScheduleSoftDeletionPrune {
|
|
185
188
|
get $beanFullName(): 'a-orm.schedule.softDeletionPrune';
|
|
186
189
|
get $onionName(): 'a-orm:softDeletionPrune';
|
|
190
|
+
get $onionOptions(): IDecoratorScheduleOptions;
|
|
187
191
|
}
|
|
188
192
|
}
|
|
189
193
|
/** schedule: end */
|