slnodejs 6.1.206 → 6.1.219
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/browser-agent/dist/browser-agent-all.js +2 -2
- package/browser-agent/dist/browser-agent-all.min.js +20 -20
- package/browser-agent/package.json +1 -1
- package/package.json +2 -1
- package/tsOutputs/build-scanner/build-diff-process.js +1 -0
- package/tsOutputs/build-scanner/build-diff-process.js.map +1 -1
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js +22 -2
- package/tsOutputs/build-scanner/instrumentation/browser-instrumenter.js.map +1 -1
- package/tsOutputs/cli-parse/cli.js +84 -60
- package/tsOutputs/cli-parse/cli.js.map +1 -1
- package/tsOutputs/cli-parse/executors/base-executor.js +6 -3
- package/tsOutputs/cli-parse/executors/base-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-end-executor.js +13 -0
- package/tsOutputs/cli-parse/executors/build-end-executor.js.map +1 -1
- package/tsOutputs/cli-parse/executors/build-executor.js +16 -9
- package/tsOutputs/cli-parse/executors/build-executor.js.map +1 -1
- package/tsOutputs/common/agent-events/cockpit-notifier.d.ts +1 -1
- package/tsOutputs/common/agent-events/cockpit-notifier.js +2 -2
- package/tsOutputs/common/agent-events/cockpit-notifier.js.map +1 -1
- package/tsOutputs/common/cli-progress.js +31 -0
- package/tsOutputs/common/cli-progress.js.map +1 -0
|
@@ -46750,9 +46750,9 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
|
46750
46750
|
CockpitNotifier.verifyControllerInitialized();
|
|
46751
46751
|
CockpitNotifier.controller.submitErrorsBatch(messages);
|
|
46752
46752
|
};
|
|
46753
|
-
CockpitNotifier.sendEvent = function (code) {
|
|
46753
|
+
CockpitNotifier.sendEvent = function (code, data) {
|
|
46754
46754
|
CockpitNotifier.verifyControllerInitialized();
|
|
46755
|
-
CockpitNotifier.controller.submitEvent(code);
|
|
46755
|
+
CockpitNotifier.controller.submitEvent(code, data);
|
|
46756
46756
|
};
|
|
46757
46757
|
CockpitNotifier.sendEventOnce = function (code) {
|
|
46758
46758
|
CockpitNotifier.verifyControllerInitialized();
|