vona-module-test-vona 5.0.14 → 5.0.15

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 (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -14,7 +14,7 @@ import { Passport, $getUserName } from 'vona-module-a-user';
14
14
  import { Service, Controller, Web, Dto } from 'vona-module-a-web';
15
15
  import { sleep } from '@cabloy/utils';
16
16
  import { Core } from 'vona-module-a-core';
17
- import { EnumTransactionIsolationLevels, Database, Entity, EntityBase, Model, BeanModelBase } from 'vona-module-a-database';
17
+ import { Database, Entity, EntityBase, Model, BeanModelBase } from 'vona-module-a-database';
18
18
  import { z } from 'zod';
19
19
  import { DtoJwtToken } from 'vona-module-a-jwt';
20
20
  import { SymbolUploadValue } from 'vona-module-a-upload';
@@ -640,10 +640,10 @@ let ControllerOnion = (_dec$f = Controller({
640
640
  mode: 'local'
641
641
  }
642
642
  }), _dec10$4 = Aspect.aopMethod('a-database:transaction', {
643
- isolationLevel: EnumTransactionIsolationLevels.SERIALIZABLE,
643
+ isolationLevel: 'SERIALIZABLE',
644
644
  readOnly: true
645
645
  }), _dec11$4 = Database.transaction({
646
- isolationLevel: EnumTransactionIsolationLevels.READ_COMMITTED,
646
+ isolationLevel: 'READ_COMMITTED',
647
647
  readOnly: false
648
648
  }), _dec12$4 = Api.body(v.optional(), z.string()), _dec13$4 = function (target, key) {
649
649
  return Arg.query('id', v.default(0), z.number())(target, key, 0);
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.14",
4
+ "version": "5.0.15",
5
5
  "title": "test-vona",
6
6
  "vonaModule": {
7
7
  "fileVersion": 1,