automation-lib 5.4.345 → 5.4.347

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.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,
@@ -1579,8 +1580,7 @@ var EStatusDeviceSetup = /* @__PURE__ */ ((EStatusDeviceSetup2) => {
1579
1580
  var EStatusDeviceConnectPC = /* @__PURE__ */ ((EStatusDeviceConnectPC2) => {
1580
1581
  EStatusDeviceConnectPC2["Connected"] = "Connected";
1581
1582
  EStatusDeviceConnectPC2["Disconnected"] = "Disconnected";
1582
- EStatusDeviceConnectPC2["Error"] = "Error";
1583
- EStatusDeviceConnectPC2["Unknown"] = "Unknown";
1583
+ EStatusDeviceConnectPC2["Unauthenticated"] = "Unauthenticated";
1584
1584
  return EStatusDeviceConnectPC2;
1585
1585
  })(EStatusDeviceConnectPC || {});
1586
1586
  var EStatusDeviceRunningSocial = /* @__PURE__ */ ((EStatusDeviceRunningSocial2) => {
@@ -2237,6 +2237,9 @@ var EPCLogSource = /* @__PURE__ */ ((EPCLogSource2) => {
2237
2237
  // src/types/index.ts
2238
2238
  var types_exports2 = {};
2239
2239
 
2240
+ // src/dto/index.ts
2241
+ var dto_exports = {};
2242
+
2240
2243
  // src/interfaces/models/index.ts
2241
2244
  var models_exports = {};
2242
2245
  __export(models_exports, {
@@ -2277,8 +2280,18 @@ var workspace_exports = {};
2277
2280
  // src/interfaces/common/index.ts
2278
2281
  var common_exports2 = {};
2279
2282
 
2280
- // src/dto/index.ts
2281
- var dto_exports = {};
2283
+ // src/interfaces/index.ts
2284
+ var interfaces_exports = {};
2285
+ __export(interfaces_exports, {
2286
+ Auth: () => auth_exports,
2287
+ Common: () => common_exports,
2288
+ Forum: () => forum_exports,
2289
+ History: () => history_exports,
2290
+ Permission: () => permission_exports,
2291
+ Socials: () => socials_exports,
2292
+ Tool: () => tool_exports,
2293
+ Workspace: () => workspace_exports
2294
+ });
2282
2295
  // Annotate the CommonJS export names for ESM import in node:
2283
2296
  0 && (module.exports = {
2284
2297
  AI,
@@ -2286,6 +2299,7 @@ var dto_exports = {};
2286
2299
  AutoConstants,
2287
2300
  AutoDto,
2288
2301
  AutoEnums,
2302
+ AutoInterfaces,
2289
2303
  AutoInterfacesCommon,
2290
2304
  AutoInterfacesModels,
2291
2305
  AutoTypes,
package/dist/index.mjs CHANGED
@@ -1407,8 +1407,7 @@ var EStatusDeviceSetup = /* @__PURE__ */ ((EStatusDeviceSetup2) => {
1407
1407
  var EStatusDeviceConnectPC = /* @__PURE__ */ ((EStatusDeviceConnectPC2) => {
1408
1408
  EStatusDeviceConnectPC2["Connected"] = "Connected";
1409
1409
  EStatusDeviceConnectPC2["Disconnected"] = "Disconnected";
1410
- EStatusDeviceConnectPC2["Error"] = "Error";
1411
- EStatusDeviceConnectPC2["Unknown"] = "Unknown";
1410
+ EStatusDeviceConnectPC2["Unauthenticated"] = "Unauthenticated";
1412
1411
  return EStatusDeviceConnectPC2;
1413
1412
  })(EStatusDeviceConnectPC || {});
1414
1413
  var EStatusDeviceRunningSocial = /* @__PURE__ */ ((EStatusDeviceRunningSocial2) => {
@@ -2065,6 +2064,9 @@ var EPCLogSource = /* @__PURE__ */ ((EPCLogSource2) => {
2065
2064
  // src/types/index.ts
2066
2065
  var types_exports2 = {};
2067
2066
 
2067
+ // src/dto/index.ts
2068
+ var dto_exports = {};
2069
+
2068
2070
  // src/interfaces/models/index.ts
2069
2071
  var models_exports = {};
2070
2072
  __export(models_exports, {
@@ -2105,14 +2107,25 @@ var workspace_exports = {};
2105
2107
  // src/interfaces/common/index.ts
2106
2108
  var common_exports2 = {};
2107
2109
 
2108
- // src/dto/index.ts
2109
- var dto_exports = {};
2110
+ // src/interfaces/index.ts
2111
+ var interfaces_exports = {};
2112
+ __export(interfaces_exports, {
2113
+ Auth: () => auth_exports,
2114
+ Common: () => common_exports,
2115
+ Forum: () => forum_exports,
2116
+ History: () => history_exports,
2117
+ Permission: () => permission_exports,
2118
+ Socials: () => socials_exports,
2119
+ Tool: () => tool_exports,
2120
+ Workspace: () => workspace_exports
2121
+ });
2110
2122
  export {
2111
2123
  ai_exports as AI,
2112
2124
  auth_exports as Auth,
2113
2125
  constants_exports as AutoConstants,
2114
2126
  dto_exports as AutoDto,
2115
2127
  enums_exports as AutoEnums,
2128
+ interfaces_exports as AutoInterfaces,
2116
2129
  common_exports2 as AutoInterfacesCommon,
2117
2130
  models_exports as AutoInterfacesModels,
2118
2131
  types_exports2 as AutoTypes,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "automation-lib",
3
- "version": "5.4.345",
3
+ "version": "5.4.347",
4
4
  "description": "Common features and type of applications auto",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",