vona-cli-set-api 1.0.242 → 1.0.244

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.
@@ -19,7 +19,7 @@
19
19
  "scope": "typescript,typescriptreact",
20
20
  "prefix": "aopinit",
21
21
  "body": [
22
- "protected __init__: AopActionInit<BeanClassSome> = (_args, next, _receiver) => {",
22
+ "protected __init__: AopActionInit<ClassSome> = (_args, next, _receiver) => {",
23
23
  " next();",
24
24
  " $0",
25
25
  "}"
@@ -30,7 +30,7 @@
30
30
  "scope": "typescript,typescriptreact",
31
31
  "prefix": "aopdispose",
32
32
  "body": [
33
- "protected __dispose__: AopActionDispose<BeanClassSome> = async (_args, next, _receiver) => {",
33
+ "protected __dispose__: AopActionDispose<ClassSome> = async (_args, next, _receiver) => {",
34
34
  " $0",
35
35
  " await next();",
36
36
  "}"
@@ -62,7 +62,7 @@
62
62
  "scope": "typescript,typescriptreact",
63
63
  "prefix": "aopgetter",
64
64
  "body": [
65
- "protected __get_xxx__: AopActionGetter<BeanClassSome, 'xxx'> = function (next, _receiver) {",
65
+ "protected __get_xxx__: AopActionGetter<ClassSome, 'xxx'> = function (next, _receiver) {",
66
66
  " const value = next();",
67
67
  " return value;",
68
68
  "}"
@@ -73,7 +73,7 @@
73
73
  "scope": "typescript,typescriptreact",
74
74
  "prefix": "aopsetter",
75
75
  "body": [
76
- "protected __set_xxx__: AopActionSetter<BeanClassSome, 'xxx'> = function (value, next, _receiver) {",
76
+ "protected __set_xxx__: AopActionSetter<ClassSome, 'xxx'> = function (value, next, _receiver) {",
77
77
  " return next(value);",
78
78
  "}"
79
79
  ],
@@ -83,7 +83,7 @@
83
83
  "scope": "typescript,typescriptreact",
84
84
  "prefix": "aopaction",
85
85
  "body": [
86
- "action: AopAction<BeanClassSome, 'action'> = async (_args, next, _receiver) => {",
86
+ "action: AopAction<ClassSome, 'action'> = async (_args, next, _receiver) => {",
87
87
  " $0",
88
88
  " return await next();",
89
89
  "}"
@@ -94,7 +94,7 @@
94
94
  "scope": "typescript,typescriptreact",
95
95
  "prefix": "aopactionsync",
96
96
  "body": [
97
- "action: AopAction<BeanClassSome, 'action'> = (_args, next, _receiver) => {",
97
+ "action: AopAction<ClassSome, 'action'> = (_args, next, _receiver) => {",
98
98
  " $0",
99
99
  " return next();",
100
100
  "}"
@@ -45,7 +45,7 @@
45
45
  }
46
46
  },
47
47
  "dependencies": {
48
- "vona": "^5.0.143"
48
+ "vona": "^5.0.144"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@cabloy/lint": "^5.0.16",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vona-cli-set-api",
3
3
  "type": "module",
4
- "version": "1.0.242",
4
+ "version": "1.0.244",
5
5
  "description": "vona cli-set-api",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -31,7 +31,7 @@
31
31
  "@babel/plugin-proposal-decorators": "^7.25.9",
32
32
  "@babel/plugin-transform-class-properties": "^7.25.9",
33
33
  "@babel/plugin-transform-typescript": "^7.26.8",
34
- "@cabloy/cli": "^3.0.46",
34
+ "@cabloy/cli": "^3.0.47",
35
35
  "@cabloy/dotenv": "^1.1.10",
36
36
  "@cabloy/extend": "^3.1.10",
37
37
  "@cabloy/module-glob": "^5.2.26",