lakutata 2.0.54 → 2.0.56

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 (118) hide show
  1. package/com/cacher.cjs +1 -1
  2. package/com/cacher.d.ts +1 -1
  3. package/com/cacher.mjs +1 -1
  4. package/com/docker.d.ts +1 -1
  5. package/com/entrypoint.cjs +29 -11
  6. package/com/entrypoint.d.ts +11 -182
  7. package/com/entrypoint.mjs +12 -0
  8. package/decorator/asst.d.ts +1 -1
  9. package/decorator/ctrl.cjs +15 -5
  10. package/decorator/ctrl.d.ts +112 -10
  11. package/decorator/ctrl.mjs +11 -1
  12. package/decorator/di.d.ts +2 -2
  13. package/decorator/dto.d.ts +3 -3
  14. package/decorator/orm.d.ts +1 -1
  15. package/helper.cjs +13 -11
  16. package/helper.d.ts +1 -1
  17. package/helper.mjs +3 -1
  18. package/lakutata.cjs +18 -6
  19. package/lakutata.d.ts +7 -8
  20. package/lakutata.mjs +12 -0
  21. package/orm.d.ts +1 -1
  22. package/package.json +1 -1
  23. package/src/components/cacher/Cacher.cjs +1 -1
  24. package/src/components/cacher/Cacher.mjs +1 -1
  25. package/src/components/cacher/adapters/CreateFileCacheAdapter.cjs +1 -1
  26. package/src/components/cacher/adapters/CreateFileCacheAdapter.mjs +1 -1
  27. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.cjs +2 -2
  28. package/src/components/cacher/adapters/CreateMemcacheCacheAdapter.mjs +2 -2
  29. package/src/components/cacher/adapters/CreateMongoCacheAdapter.cjs +2 -2
  30. package/src/components/cacher/adapters/CreateMongoCacheAdapter.mjs +2 -2
  31. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.cjs +2 -2
  32. package/src/components/cacher/adapters/CreateMysqlCacheAdapter.mjs +2 -2
  33. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.cjs +2 -2
  34. package/src/components/cacher/adapters/CreatePostgresCacheAdapter.mjs +2 -2
  35. package/src/components/cacher/adapters/CreateRedisCacheAdapter.cjs +2 -2
  36. package/src/components/cacher/adapters/CreateRedisCacheAdapter.mjs +2 -2
  37. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.cjs +2 -2
  38. package/src/components/cacher/adapters/CreateSqliteCacheAdapter.mjs +2 -2
  39. package/src/components/entrypoint/Entrypoint.cjs +1074 -973
  40. package/src/components/entrypoint/Entrypoint.mjs +884 -781
  41. package/src/components/entrypoint/exceptions/AccessDenyException.cjs +35 -0
  42. package/src/components/entrypoint/exceptions/AccessDenyException.mjs +29 -0
  43. package/src/components/entrypoint/exceptions/DuplicateActionNameException.cjs +34 -0
  44. package/src/components/entrypoint/exceptions/DuplicateActionNameException.mjs +28 -0
  45. package/src/components/entrypoint/lib/AccessControl.cjs +247 -0
  46. package/src/components/entrypoint/lib/AccessControl.mjs +241 -0
  47. package/src/components/entrypoint/lib/AccessControlRule.cjs +163 -0
  48. package/src/components/entrypoint/lib/AccessControlRule.mjs +157 -0
  49. package/src/decorators/ctrl/CLIAction.cjs +17 -10
  50. package/src/decorators/ctrl/CLIAction.mjs +17 -10
  51. package/src/decorators/ctrl/HTTPAction.cjs +18 -11
  52. package/src/decorators/ctrl/HTTPAction.mjs +16 -9
  53. package/src/decorators/ctrl/ServiceAction.cjs +15 -8
  54. package/src/decorators/ctrl/ServiceAction.mjs +16 -9
  55. package/src/decorators/ctrl/http/DELETE.cjs +13 -3
  56. package/src/decorators/ctrl/http/DELETE.mjs +13 -3
  57. package/src/decorators/ctrl/http/GET.cjs +13 -3
  58. package/src/decorators/ctrl/http/GET.mjs +13 -3
  59. package/src/decorators/ctrl/http/HEAD.cjs +13 -3
  60. package/src/decorators/ctrl/http/HEAD.mjs +13 -3
  61. package/src/decorators/ctrl/http/OPTIONS.cjs +13 -3
  62. package/src/decorators/ctrl/http/OPTIONS.mjs +13 -3
  63. package/src/decorators/ctrl/http/PATCH.cjs +13 -3
  64. package/src/decorators/ctrl/http/PATCH.mjs +13 -3
  65. package/src/decorators/ctrl/http/POST.cjs +13 -3
  66. package/src/decorators/ctrl/http/POST.mjs +13 -3
  67. package/src/decorators/ctrl/http/PUT.cjs +13 -3
  68. package/src/decorators/ctrl/http/PUT.mjs +13 -3
  69. package/src/lib/base/internal/ActionOptions.cjs +79 -0
  70. package/src/lib/base/internal/ActionOptions.mjs +73 -0
  71. package/src/lib/base/internal/ControllerEntrypoint.cjs +625 -53
  72. package/src/lib/base/internal/ControllerEntrypoint.mjs +640 -68
  73. package/src/lib/base/internal/GetActionDTOAndOptions.cjs +89 -0
  74. package/src/lib/base/internal/GetActionDTOAndOptions.mjs +83 -0
  75. package/src/lib/base/internal/StringifyPattern.cjs +69 -0
  76. package/src/lib/base/internal/StringifyPattern.mjs +63 -0
  77. package/src/lib/core/Application.cjs +29 -17
  78. package/src/lib/core/Application.mjs +33 -21
  79. package/src/lib/helpers/MD5.cjs +1 -1
  80. package/src/lib/helpers/MD5.mjs +1 -1
  81. package/src/lib/helpers/SHA1.cjs +1 -1
  82. package/src/lib/helpers/SHA1.mjs +1 -1
  83. package/src/lib/helpers/SHA256.cjs +1 -1
  84. package/src/lib/helpers/SHA256.mjs +1 -1
  85. package/src/lib/helpers/SortArray.cjs +18 -201
  86. package/src/lib/helpers/SortArray.mjs +17 -200
  87. package/vendor/Package.19.cjs +85 -90
  88. package/vendor/Package.19.mjs +1 -1
  89. package/vendor/Package.3.cjs +1 -1
  90. package/vendor/Package.3.mjs +1 -1
  91. package/vendor/Package.610.cjs +85 -103
  92. package/vendor/Package.610.mjs +80 -98
  93. package/vendor/Package.611.cjs +100 -121
  94. package/vendor/Package.611.mjs +97 -120
  95. package/vendor/Package.612.cjs +196 -0
  96. package/vendor/Package.612.mjs +180 -0
  97. package/vendor/Package.64.cjs +140 -4118
  98. package/vendor/Package.64.mjs +140 -4126
  99. package/vendor/Package.65.cjs +4142 -692
  100. package/vendor/Package.65.mjs +4151 -689
  101. package/vendor/Package.66.cjs +571 -535
  102. package/vendor/Package.66.mjs +586 -528
  103. package/vendor/Package.67.cjs +633 -96
  104. package/vendor/Package.67.mjs +619 -94
  105. package/vendor/Package.68.cjs +96 -294
  106. package/vendor/Package.68.mjs +95 -295
  107. package/vendor/Package.69.cjs +297 -113
  108. package/vendor/Package.69.mjs +285 -97
  109. package/vendor/TypeDef.10.d.ts +13 -2
  110. package/vendor/TypeDef.11.d.ts +6 -5
  111. package/vendor/TypeDef.12.d.ts +104 -4
  112. package/vendor/TypeDef.13.d.ts +315 -62
  113. package/vendor/TypeDef.3.d.ts +2 -2
  114. package/vendor/TypeDef.5.d.ts +1 -1
  115. package/vendor/TypeDef.7.d.ts +19 -10
  116. package/vendor/TypeDef.8.d.ts +2 -20
  117. package/vendor/TypeDef.9.d.ts +5 -2
  118. package/vendor/TypeDef.14.d.ts +0 -72
@@ -4,218 +4,35 @@ Object.defineProperty(exports, Symbol.toStringTag, {
4
4
  value: "Module"
5
5
  });
6
6
 
7
- function e(e) {
8
- return typeof e === "object" && e !== null;
9
- }
10
-
11
- function n(n) {
12
- return e(n) && typeof n.length === "number";
13
- }
14
-
15
- function t(e) {
16
- if (Array.isArray(e)) {
17
- return e;
18
- } else if (e === undefined) {
19
- return [];
20
- } else if (n(e) || e instanceof Set) {
21
- return Array.from(e);
22
- } else {
23
- return [ e ];
24
- }
25
- }
26
-
27
- function i(e) {
28
- return !isNaN(parseFloat(e));
29
- }
30
-
31
- function r(e) {
32
- return !isNaN(parseFloat(e)) && isFinite(e);
33
- }
34
-
35
- function s(e) {
36
- return e !== null && typeof e === "object" && e.constructor === Object;
37
- }
38
-
39
- function u(e) {
40
- return o(e) && typeof e.length === "number";
41
- }
42
-
43
- function o(e) {
44
- return typeof e === "object" && e !== null;
45
- }
46
-
47
- function f(e) {
48
- return typeof e !== "undefined";
49
- }
50
-
51
- function c(e) {
52
- return !f(e);
53
- }
54
-
55
- function l(e) {
56
- return e === null;
57
- }
58
-
59
- function a(e) {
60
- return f(e) && !l(e) && !Number.isNaN(e);
61
- }
62
-
63
- function d(e) {
64
- if (typeof e === "function") {
65
- return /^class /.test(Function.prototype.toString.call(e));
66
- } else {
67
- return false;
68
- }
69
- }
70
-
71
- function y(e) {
72
- if (e === null) return true;
73
- switch (typeof e) {
74
- case "string":
75
- case "number":
76
- case "symbol":
77
- case "undefined":
78
- case "boolean":
79
- return true;
80
-
81
- default:
82
- return false;
83
- }
84
- }
85
-
86
- function b(e) {
87
- if (e) {
88
- const n = f(Promise) && e instanceof Promise;
89
- const t = e.then && typeof e.then === "function";
90
- return !!(n || t);
91
- } else {
92
- return false;
93
- }
94
- }
95
-
96
- function p(e) {
97
- if (e === null || !f(e)) {
98
- return false;
99
- } else {
100
- return typeof e[Symbol.iterator] === "function" || typeof e[Symbol.asyncIterator] === "function";
101
- }
102
- }
103
-
104
- function m(e) {
105
- return typeof e === "string";
106
- }
107
-
108
- function N(e) {
109
- return typeof e === "function";
110
- }
111
-
112
- function g(e) {
113
- return typeof e === "function" && e.constructor.name === "AsyncFunction";
114
- }
115
-
116
- const O = {
117
- isNumber: i,
118
- isFiniteNumber: r,
119
- isPlainObject: s,
120
- isArrayLike: u,
121
- isObject: o,
122
- isDefined: f,
123
- isUndefined: c,
124
- isNull: l,
125
- isDefinedValue: a,
126
- isClass: d,
127
- isPrimitive: y,
128
- isPromise: b,
129
- isIterable: p,
130
- isString: m,
131
- isFunction: N,
132
- isAsyncFunction: g
133
- };
134
-
135
- function h(e, n = {}) {
136
- n = Object.assign({
137
- computed: {},
138
- customOrders: {},
139
- nullRank: 1,
140
- undefinedRank: 1
141
- }, n);
142
- e.sort(j(n));
143
- return e;
144
- }
145
-
146
- function j(e = {}) {
147
- const n = t(e.by);
148
- const i = t(e.order);
149
- const {customOrders: r, computed: s} = e;
150
- return function t(u, o, f = 0) {
151
- const c = i[f] || "asc";
152
- if (!(c === "asc" || c === "desc" || r[c])) {
153
- return 0;
154
- }
155
- let l, a, d;
156
- if (n.length) {
157
- a = O.isDefined(u[n[f]]) ? u[n[f]] : s[n[f]] && s[n[f]](u);
158
- d = O.isDefined(o[n[f]]) ? o[n[f]] : s[n[f]] && s[n[f]](o);
159
- } else {
160
- a = u;
161
- d = o;
162
- }
163
- if (r && r[c]) {
164
- l = r[c].indexOf(a) - r[c].indexOf(d);
165
- } else if (a === d) {
166
- l = 0;
167
- } else if (O.isNull(a) && O.isUndefined(d)) {
168
- l = c === "asc" ? 1 : c === "desc" ? -1 : 0;
169
- } else if (O.isUndefined(a) && O.isNull(d)) {
170
- l = c === "asc" ? -1 : c === "desc" ? 1 : 0;
171
- } else if (O.isNull(a) && O.isDefinedValue(d)) {
172
- l = e.nullRank;
173
- } else if (O.isUndefined(a) && O.isDefinedValue(d)) {
174
- l = e.undefinedRank;
175
- } else if (O.isNull(d) && O.isDefinedValue(a)) {
176
- l = -e.nullRank;
177
- } else if (O.isUndefined(d) && O.isDefinedValue(a)) {
178
- l = -e.undefinedRank;
179
- } else {
180
- l = a < d ? -1 : a > d ? 1 : 0;
181
- if (c === "desc") {
182
- l = l * -1;
183
- }
184
- }
185
- if (l === 0 && O.isDefined(n[f + 1])) {
186
- l = t(u, o, f + 1);
187
- }
188
- return l;
189
- };
190
- }
7
+ const r = require("../../../vendor/Package.64.cjs");
191
8
 
192
- function D(e, ...n) {
193
- if (n.length < 2) {
194
- let t = {
9
+ function e(t, ...o) {
10
+ if (o.length < 2) {
11
+ let e = {
195
12
  order: "asc"
196
13
  };
197
- if (n.length) t = Object.assign(t, {
198
- by: n[0].by,
199
- order: n[0].order,
200
- computed: n[0].computed
14
+ if (o.length) e = Object.assign(e, {
15
+ by: o[0].by,
16
+ order: o[0].order,
17
+ computed: o[0].computed
201
18
  });
202
- return h(e, t);
19
+ return r.sortArray(t, e);
203
20
  } else {
204
- const t = {
21
+ const s = {
205
22
  by: [],
206
23
  order: [],
207
24
  customOrders: {}
208
25
  };
209
- n.forEach((n => {
210
- if (n.by) {
211
- const i = n.by;
212
- t.by.push(i);
213
- t.order.push(i);
214
- t.customOrders[i] = D(e, n).map((e => e[i]));
26
+ o.forEach((r => {
27
+ if (r.by) {
28
+ const o = r.by;
29
+ s.by.push(o);
30
+ s.order.push(o);
31
+ s.customOrders[o] = e(t, r).map((r => r[o]));
215
32
  }
216
33
  }));
217
- return h(e, t);
34
+ return r.sortArray(t, s);
218
35
  }
219
36
  }
220
37
 
221
- exports.SortArray = D;
38
+ exports.SortArray = e;
@@ -1,215 +1,32 @@
1
- function e(e) {
2
- return typeof e === "object" && e !== null;
3
- }
4
-
5
- function n(n) {
6
- return e(n) && typeof n.length === "number";
7
- }
8
-
9
- function t(e) {
10
- if (Array.isArray(e)) {
11
- return e;
12
- } else if (e === undefined) {
13
- return [];
14
- } else if (n(e) || e instanceof Set) {
15
- return Array.from(e);
16
- } else {
17
- return [ e ];
18
- }
19
- }
20
-
21
- function i(e) {
22
- return !isNaN(parseFloat(e));
23
- }
24
-
25
- function r(e) {
26
- return !isNaN(parseFloat(e)) && isFinite(e);
27
- }
28
-
29
- function s(e) {
30
- return e !== null && typeof e === "object" && e.constructor === Object;
31
- }
32
-
33
- function u(e) {
34
- return o(e) && typeof e.length === "number";
35
- }
36
-
37
- function o(e) {
38
- return typeof e === "object" && e !== null;
39
- }
40
-
41
- function f(e) {
42
- return typeof e !== "undefined";
43
- }
44
-
45
- function c(e) {
46
- return !f(e);
47
- }
48
-
49
- function l(e) {
50
- return e === null;
51
- }
52
-
53
- function a(e) {
54
- return f(e) && !l(e) && !Number.isNaN(e);
55
- }
56
-
57
- function d(e) {
58
- if (typeof e === "function") {
59
- return /^class /.test(Function.prototype.toString.call(e));
60
- } else {
61
- return false;
62
- }
63
- }
64
-
65
- function y(e) {
66
- if (e === null) return true;
67
- switch (typeof e) {
68
- case "string":
69
- case "number":
70
- case "symbol":
71
- case "undefined":
72
- case "boolean":
73
- return true;
74
-
75
- default:
76
- return false;
77
- }
78
- }
79
-
80
- function b(e) {
81
- if (e) {
82
- const n = f(Promise) && e instanceof Promise;
83
- const t = e.then && typeof e.then === "function";
84
- return !!(n || t);
85
- } else {
86
- return false;
87
- }
88
- }
89
-
90
- function p(e) {
91
- if (e === null || !f(e)) {
92
- return false;
93
- } else {
94
- return typeof e[Symbol.iterator] === "function" || typeof e[Symbol.asyncIterator] === "function";
95
- }
96
- }
97
-
98
- function m(e) {
99
- return typeof e === "string";
100
- }
101
-
102
- function N(e) {
103
- return typeof e === "function";
104
- }
105
-
106
- function g(e) {
107
- return typeof e === "function" && e.constructor.name === "AsyncFunction";
108
- }
109
-
110
- const h = {
111
- isNumber: i,
112
- isFiniteNumber: r,
113
- isPlainObject: s,
114
- isArrayLike: u,
115
- isObject: o,
116
- isDefined: f,
117
- isUndefined: c,
118
- isNull: l,
119
- isDefinedValue: a,
120
- isClass: d,
121
- isPrimitive: y,
122
- isPromise: b,
123
- isIterable: p,
124
- isString: m,
125
- isFunction: N,
126
- isAsyncFunction: g
127
- };
128
-
129
- function O(e, n = {}) {
130
- n = Object.assign({
131
- computed: {},
132
- customOrders: {},
133
- nullRank: 1,
134
- undefinedRank: 1
135
- }, n);
136
- e.sort(D(n));
137
- return e;
138
- }
139
-
140
- function D(e = {}) {
141
- const n = t(e.by);
142
- const i = t(e.order);
143
- const {customOrders: r, computed: s} = e;
144
- return function t(u, o, f = 0) {
145
- const c = i[f] || "asc";
146
- if (!(c === "asc" || c === "desc" || r[c])) {
147
- return 0;
148
- }
149
- let l, a, d;
150
- if (n.length) {
151
- a = h.isDefined(u[n[f]]) ? u[n[f]] : s[n[f]] && s[n[f]](u);
152
- d = h.isDefined(o[n[f]]) ? o[n[f]] : s[n[f]] && s[n[f]](o);
153
- } else {
154
- a = u;
155
- d = o;
156
- }
157
- if (r && r[c]) {
158
- l = r[c].indexOf(a) - r[c].indexOf(d);
159
- } else if (a === d) {
160
- l = 0;
161
- } else if (h.isNull(a) && h.isUndefined(d)) {
162
- l = c === "asc" ? 1 : c === "desc" ? -1 : 0;
163
- } else if (h.isUndefined(a) && h.isNull(d)) {
164
- l = c === "asc" ? -1 : c === "desc" ? 1 : 0;
165
- } else if (h.isNull(a) && h.isDefinedValue(d)) {
166
- l = e.nullRank;
167
- } else if (h.isUndefined(a) && h.isDefinedValue(d)) {
168
- l = e.undefinedRank;
169
- } else if (h.isNull(d) && h.isDefinedValue(a)) {
170
- l = -e.nullRank;
171
- } else if (h.isUndefined(d) && h.isDefinedValue(a)) {
172
- l = -e.undefinedRank;
173
- } else {
174
- l = a < d ? -1 : a > d ? 1 : 0;
175
- if (c === "desc") {
176
- l = l * -1;
177
- }
178
- }
179
- if (l === 0 && h.isDefined(n[f + 1])) {
180
- l = t(u, o, f + 1);
181
- }
182
- return l;
183
- };
184
- }
1
+ import { s as r } from "../../../vendor/Package.64.mjs";
185
2
 
186
- function j(e, ...n) {
187
- if (n.length < 2) {
188
- let t = {
3
+ function e(o, ...s) {
4
+ if (s.length < 2) {
5
+ let e = {
189
6
  order: "asc"
190
7
  };
191
- if (n.length) t = Object.assign(t, {
192
- by: n[0].by,
193
- order: n[0].order,
194
- computed: n[0].computed
8
+ if (s.length) e = Object.assign(e, {
9
+ by: s[0].by,
10
+ order: s[0].order,
11
+ computed: s[0].computed
195
12
  });
196
- return O(e, t);
13
+ return r(o, e);
197
14
  } else {
198
15
  const t = {
199
16
  by: [],
200
17
  order: [],
201
18
  customOrders: {}
202
19
  };
203
- n.forEach((n => {
204
- if (n.by) {
205
- const i = n.by;
206
- t.by.push(i);
207
- t.order.push(i);
208
- t.customOrders[i] = j(e, n).map((e => e[i]));
20
+ s.forEach((r => {
21
+ if (r.by) {
22
+ const s = r.by;
23
+ t.by.push(s);
24
+ t.order.push(s);
25
+ t.customOrders[s] = e(o, r).map((r => r[s]));
209
26
  }
210
27
  }));
211
- return O(e, t);
28
+ return r(o, t);
212
29
  }
213
30
  }
214
31
 
215
- export { j as SortArray };
32
+ export { e as SortArray };