@twin.org/engine 0.0.1-next.50 → 0.0.1-next.51
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/cjs/index.cjs +2 -2
- package/dist/esm/index.mjs +2 -2
- package/package.json +3 -3
package/dist/cjs/index.cjs
CHANGED
|
@@ -467,8 +467,8 @@ function configureTelemetryConnectors(coreConfig, envVars) {
|
|
|
467
467
|
});
|
|
468
468
|
}
|
|
469
469
|
if (coreConfig.types.telemetryConnector.length > 0) {
|
|
470
|
-
coreConfig.types.
|
|
471
|
-
coreConfig.types.
|
|
470
|
+
coreConfig.types.telemetryComponent ??= [];
|
|
471
|
+
coreConfig.types.telemetryComponent.push({ type: engineTypes.TelemetryComponentType.Service });
|
|
472
472
|
}
|
|
473
473
|
}
|
|
474
474
|
/**
|
package/dist/esm/index.mjs
CHANGED
|
@@ -465,8 +465,8 @@ function configureTelemetryConnectors(coreConfig, envVars) {
|
|
|
465
465
|
});
|
|
466
466
|
}
|
|
467
467
|
if (coreConfig.types.telemetryConnector.length > 0) {
|
|
468
|
-
coreConfig.types.
|
|
469
|
-
coreConfig.types.
|
|
468
|
+
coreConfig.types.telemetryComponent ??= [];
|
|
469
|
+
coreConfig.types.telemetryComponent.push({ type: TelemetryComponentType.Service });
|
|
470
470
|
}
|
|
471
471
|
}
|
|
472
472
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/engine",
|
|
3
|
-
"version": "0.0.1-next.
|
|
3
|
+
"version": "0.0.1-next.51",
|
|
4
4
|
"description": "Engine implementation.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@twin.org/core": "next",
|
|
18
|
-
"@twin.org/engine-core": "0.0.1-next.
|
|
19
|
-
"@twin.org/engine-types": "0.0.1-next.
|
|
18
|
+
"@twin.org/engine-core": "0.0.1-next.51",
|
|
19
|
+
"@twin.org/engine-types": "0.0.1-next.51"
|
|
20
20
|
},
|
|
21
21
|
"main": "./dist/cjs/index.cjs",
|
|
22
22
|
"module": "./dist/esm/index.mjs",
|