automation-lib 5.4.345 → 5.4.346
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.
- package/dist/index.d.mts +7463 -7195
- package/dist/index.d.ts +7463 -7195
- package/dist/index.js +17 -2
- package/dist/index.mjs +16 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -25,6 +25,7 @@ __export(index_exports, {
|
|
|
25
25
|
AutoConstants: () => constants_exports,
|
|
26
26
|
AutoDto: () => dto_exports,
|
|
27
27
|
AutoEnums: () => enums_exports,
|
|
28
|
+
AutoInterfaces: () => interfaces_exports,
|
|
28
29
|
AutoInterfacesCommon: () => common_exports2,
|
|
29
30
|
AutoInterfacesModels: () => models_exports,
|
|
30
31
|
AutoTypes: () => types_exports2,
|
|
@@ -2237,6 +2238,9 @@ var EPCLogSource = /* @__PURE__ */ ((EPCLogSource2) => {
|
|
|
2237
2238
|
// src/types/index.ts
|
|
2238
2239
|
var types_exports2 = {};
|
|
2239
2240
|
|
|
2241
|
+
// src/dto/index.ts
|
|
2242
|
+
var dto_exports = {};
|
|
2243
|
+
|
|
2240
2244
|
// src/interfaces/models/index.ts
|
|
2241
2245
|
var models_exports = {};
|
|
2242
2246
|
__export(models_exports, {
|
|
@@ -2277,8 +2281,18 @@ var workspace_exports = {};
|
|
|
2277
2281
|
// src/interfaces/common/index.ts
|
|
2278
2282
|
var common_exports2 = {};
|
|
2279
2283
|
|
|
2280
|
-
// src/
|
|
2281
|
-
var
|
|
2284
|
+
// src/interfaces/index.ts
|
|
2285
|
+
var interfaces_exports = {};
|
|
2286
|
+
__export(interfaces_exports, {
|
|
2287
|
+
Auth: () => auth_exports,
|
|
2288
|
+
Common: () => common_exports,
|
|
2289
|
+
Forum: () => forum_exports,
|
|
2290
|
+
History: () => history_exports,
|
|
2291
|
+
Permission: () => permission_exports,
|
|
2292
|
+
Socials: () => socials_exports,
|
|
2293
|
+
Tool: () => tool_exports,
|
|
2294
|
+
Workspace: () => workspace_exports
|
|
2295
|
+
});
|
|
2282
2296
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2283
2297
|
0 && (module.exports = {
|
|
2284
2298
|
AI,
|
|
@@ -2286,6 +2300,7 @@ var dto_exports = {};
|
|
|
2286
2300
|
AutoConstants,
|
|
2287
2301
|
AutoDto,
|
|
2288
2302
|
AutoEnums,
|
|
2303
|
+
AutoInterfaces,
|
|
2289
2304
|
AutoInterfacesCommon,
|
|
2290
2305
|
AutoInterfacesModels,
|
|
2291
2306
|
AutoTypes,
|
package/dist/index.mjs
CHANGED
|
@@ -2065,6 +2065,9 @@ var EPCLogSource = /* @__PURE__ */ ((EPCLogSource2) => {
|
|
|
2065
2065
|
// src/types/index.ts
|
|
2066
2066
|
var types_exports2 = {};
|
|
2067
2067
|
|
|
2068
|
+
// src/dto/index.ts
|
|
2069
|
+
var dto_exports = {};
|
|
2070
|
+
|
|
2068
2071
|
// src/interfaces/models/index.ts
|
|
2069
2072
|
var models_exports = {};
|
|
2070
2073
|
__export(models_exports, {
|
|
@@ -2105,14 +2108,25 @@ var workspace_exports = {};
|
|
|
2105
2108
|
// src/interfaces/common/index.ts
|
|
2106
2109
|
var common_exports2 = {};
|
|
2107
2110
|
|
|
2108
|
-
// src/
|
|
2109
|
-
var
|
|
2111
|
+
// src/interfaces/index.ts
|
|
2112
|
+
var interfaces_exports = {};
|
|
2113
|
+
__export(interfaces_exports, {
|
|
2114
|
+
Auth: () => auth_exports,
|
|
2115
|
+
Common: () => common_exports,
|
|
2116
|
+
Forum: () => forum_exports,
|
|
2117
|
+
History: () => history_exports,
|
|
2118
|
+
Permission: () => permission_exports,
|
|
2119
|
+
Socials: () => socials_exports,
|
|
2120
|
+
Tool: () => tool_exports,
|
|
2121
|
+
Workspace: () => workspace_exports
|
|
2122
|
+
});
|
|
2110
2123
|
export {
|
|
2111
2124
|
ai_exports as AI,
|
|
2112
2125
|
auth_exports as Auth,
|
|
2113
2126
|
constants_exports as AutoConstants,
|
|
2114
2127
|
dto_exports as AutoDto,
|
|
2115
2128
|
enums_exports as AutoEnums,
|
|
2129
|
+
interfaces_exports as AutoInterfaces,
|
|
2116
2130
|
common_exports2 as AutoInterfacesCommon,
|
|
2117
2131
|
models_exports as AutoInterfacesModels,
|
|
2118
2132
|
types_exports2 as AutoTypes,
|