shell-mirror 1.5.24 → 1.5.26
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/mac-agent/.env +9 -0
- package/mac-agent/.env.example +24 -0
- package/mac-agent/README.md +167 -0
- package/mac-agent/agent-debug.log +94 -0
- package/mac-agent/agent.js +403 -0
- package/mac-agent/authorized-users.json +35 -0
- package/mac-agent/http-agent.js +675 -0
- package/mac-agent/interactive-setup.js +183 -0
- package/mac-agent/logs/http-agent.log +823 -0
- package/mac-agent/manual-setup.js +140 -0
- package/mac-agent/node +0 -0
- package/mac-agent/node_modules/.package-lock.json +2255 -0
- package/mac-agent/node_modules/@colors/colors/LICENSE +26 -0
- package/mac-agent/node_modules/@colors/colors/README.md +219 -0
- package/mac-agent/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/mac-agent/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/mac-agent/node_modules/@colors/colors/index.d.ts +184 -0
- package/mac-agent/node_modules/@colors/colors/lib/colors.js +211 -0
- package/mac-agent/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/mac-agent/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/mac-agent/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/mac-agent/node_modules/@colors/colors/lib/index.js +13 -0
- package/mac-agent/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/mac-agent/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/mac-agent/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/mac-agent/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/mac-agent/node_modules/@colors/colors/lib/styles.js +95 -0
- package/mac-agent/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/mac-agent/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/mac-agent/node_modules/@colors/colors/package.json +45 -0
- package/mac-agent/node_modules/@colors/colors/safe.d.ts +64 -0
- package/mac-agent/node_modules/@colors/colors/safe.js +10 -0
- package/mac-agent/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/mac-agent/node_modules/@dabh/diagnostics/CHANGELOG.md +26 -0
- package/mac-agent/node_modules/@dabh/diagnostics/LICENSE +20 -0
- package/mac-agent/node_modules/@dabh/diagnostics/README.md +473 -0
- package/mac-agent/node_modules/@dabh/diagnostics/adapters/hash.js +11 -0
- package/mac-agent/node_modules/@dabh/diagnostics/adapters/index.js +18 -0
- package/mac-agent/node_modules/@dabh/diagnostics/adapters/localstorage.js +11 -0
- package/mac-agent/node_modules/@dabh/diagnostics/adapters/process.env.js +11 -0
- package/mac-agent/node_modules/@dabh/diagnostics/browser/development.js +35 -0
- package/mac-agent/node_modules/@dabh/diagnostics/browser/index.js +8 -0
- package/mac-agent/node_modules/@dabh/diagnostics/browser/override.js +6 -0
- package/mac-agent/node_modules/@dabh/diagnostics/browser/production.js +24 -0
- package/mac-agent/node_modules/@dabh/diagnostics/diagnostics.js +212 -0
- package/mac-agent/node_modules/@dabh/diagnostics/logger/console.js +19 -0
- package/mac-agent/node_modules/@dabh/diagnostics/modifiers/namespace-ansi.js +20 -0
- package/mac-agent/node_modules/@dabh/diagnostics/modifiers/namespace.js +32 -0
- package/mac-agent/node_modules/@dabh/diagnostics/node/development.js +36 -0
- package/mac-agent/node_modules/@dabh/diagnostics/node/index.js +8 -0
- package/mac-agent/node_modules/@dabh/diagnostics/node/override.js +21 -0
- package/mac-agent/node_modules/@dabh/diagnostics/node/production.js +24 -0
- package/mac-agent/node_modules/@dabh/diagnostics/package.json +64 -0
- package/mac-agent/node_modules/@koush/wrtc/CMakeLists.txt +664 -0
- package/mac-agent/node_modules/@koush/wrtc/LICENSE.md +30 -0
- package/mac-agent/node_modules/@koush/wrtc/NodeJS.cmake +638 -0
- package/mac-agent/node_modules/@koush/wrtc/README.md +120 -0
- package/mac-agent/node_modules/@koush/wrtc/THIRD_PARTY_LICENSES.md +1314 -0
- package/mac-agent/node_modules/@koush/wrtc/build/Release/wrtc.node +0 -0
- package/mac-agent/node_modules/@koush/wrtc/build-linux-variants.sh +10 -0
- package/mac-agent/node_modules/@koush/wrtc/build-mac-variants.sh +14 -0
- package/mac-agent/node_modules/@koush/wrtc/clean.sh +2 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/binding.js +7 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/browser.js +18 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/datachannelevent.js +26 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/datachannelmessageevent.js +9 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/error.js +20 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/eventtarget.js +50 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/icecandidate.js +28 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/index.js +81 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/mediadevices.js +24 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/peerconnection.js +313 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/rtcpeerconnectioniceerrorevent.js +36 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/rtcpeerconnectioniceevent.js +20 -0
- package/mac-agent/node_modules/@koush/wrtc/lib/sessiondescription.js +10 -0
- package/mac-agent/node_modules/@koush/wrtc/package.json +95 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/build-appveyor.bat +73 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/build-from-source.js +45 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/build-webrtc.bat +20 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/build-webrtc.sh +23 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/configure-webrtc.bat +28 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/configure-webrtc.sh +25 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/download-prebuilt-or-build-from-source.js +25 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/download-prebuilt.js +35 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/download-webrtc.bat +47 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/download-webrtc.sh +21 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/install-example.js +80 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/karma.js +70 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.bat +1 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.js +93 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/pack-webrtc.sh +38 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/publish-to-npm.js +98 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/publish.js +26 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/run-tests.bat +25 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.bat +1 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.js +36 -0
- package/mac-agent/node_modules/@koush/wrtc/scripts/unpack-webrtc.sh +28 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/.github/workflows/codeql.yml +74 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/CHANGELOG.md +510 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/LICENSE +27 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/README.md +742 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp +4 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp.cmd +2 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/contributing.md +10 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/build.js +51 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/clean.js +31 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/configure.js +52 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/info.js +38 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/install.js +235 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/main.js +125 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/node-pre-gyp.js +309 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/package.js +73 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/pre-binding.js +34 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/publish.js +81 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/rebuild.js +20 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/reinstall.js +19 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/reveal.js +32 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/testbinary.js +79 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/testpackage.js +53 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/unpublish.js +41 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/abi_crosswalk.json +2602 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/compile.js +93 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/handle_gyp_opts.js +102 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/napi.js +205 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/index.html +26 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/nw-pre-gyp/package.json +9 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/s3_setup.js +163 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/lib/util/versioning.js +335 -0
- package/mac-agent/node_modules/@mapbox/node-pre-gyp/package.json +62 -0
- package/mac-agent/node_modules/@types/triple-beam/LICENSE +21 -0
- package/mac-agent/node_modules/@types/triple-beam/README.md +36 -0
- package/mac-agent/node_modules/@types/triple-beam/index.d.ts +17 -0
- package/mac-agent/node_modules/@types/triple-beam/package.json +25 -0
- package/mac-agent/node_modules/abbrev/LICENSE +46 -0
- package/mac-agent/node_modules/abbrev/README.md +23 -0
- package/mac-agent/node_modules/abbrev/abbrev.js +61 -0
- package/mac-agent/node_modules/abbrev/package.json +21 -0
- package/mac-agent/node_modules/agent-base/README.md +145 -0
- package/mac-agent/node_modules/agent-base/dist/src/index.d.ts +78 -0
- package/mac-agent/node_modules/agent-base/dist/src/index.js +203 -0
- package/mac-agent/node_modules/agent-base/dist/src/index.js.map +1 -0
- package/mac-agent/node_modules/agent-base/dist/src/promisify.d.ts +4 -0
- package/mac-agent/node_modules/agent-base/dist/src/promisify.js +18 -0
- package/mac-agent/node_modules/agent-base/dist/src/promisify.js.map +1 -0
- package/mac-agent/node_modules/agent-base/package.json +64 -0
- package/mac-agent/node_modules/agent-base/src/index.ts +345 -0
- package/mac-agent/node_modules/agent-base/src/promisify.ts +33 -0
- package/mac-agent/node_modules/ansi-regex/index.d.ts +37 -0
- package/mac-agent/node_modules/ansi-regex/index.js +10 -0
- package/mac-agent/node_modules/ansi-regex/license +9 -0
- package/mac-agent/node_modules/ansi-regex/package.json +55 -0
- package/mac-agent/node_modules/ansi-regex/readme.md +78 -0
- package/mac-agent/node_modules/anymatch/LICENSE +15 -0
- package/mac-agent/node_modules/anymatch/README.md +87 -0
- package/mac-agent/node_modules/anymatch/index.d.ts +20 -0
- package/mac-agent/node_modules/anymatch/index.js +104 -0
- package/mac-agent/node_modules/anymatch/package.json +48 -0
- package/mac-agent/node_modules/aproba/LICENSE +14 -0
- package/mac-agent/node_modules/aproba/README.md +94 -0
- package/mac-agent/node_modules/aproba/index.js +105 -0
- package/mac-agent/node_modules/aproba/package.json +35 -0
- package/mac-agent/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/mac-agent/node_modules/are-we-there-yet/README.md +208 -0
- package/mac-agent/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/mac-agent/node_modules/are-we-there-yet/lib/tracker-base.js +11 -0
- package/mac-agent/node_modules/are-we-there-yet/lib/tracker-group.js +116 -0
- package/mac-agent/node_modules/are-we-there-yet/lib/tracker-stream.js +36 -0
- package/mac-agent/node_modules/are-we-there-yet/lib/tracker.js +32 -0
- package/mac-agent/node_modules/are-we-there-yet/package.json +53 -0
- package/mac-agent/node_modules/async/CHANGELOG.md +351 -0
- package/mac-agent/node_modules/async/LICENSE +19 -0
- package/mac-agent/node_modules/async/README.md +59 -0
- package/mac-agent/node_modules/async/all.js +119 -0
- package/mac-agent/node_modules/async/allLimit.js +46 -0
- package/mac-agent/node_modules/async/allSeries.js +45 -0
- package/mac-agent/node_modules/async/any.js +122 -0
- package/mac-agent/node_modules/async/anyLimit.js +47 -0
- package/mac-agent/node_modules/async/anySeries.js +46 -0
- package/mac-agent/node_modules/async/apply.js +11 -0
- package/mac-agent/node_modules/async/applyEach.js +57 -0
- package/mac-agent/node_modules/async/applyEachSeries.js +37 -0
- package/mac-agent/node_modules/async/asyncify.js +118 -0
- package/mac-agent/node_modules/async/auto.js +333 -0
- package/mac-agent/node_modules/async/autoInject.js +182 -0
- package/mac-agent/node_modules/async/bower.json +17 -0
- package/mac-agent/node_modules/async/cargo.js +63 -0
- package/mac-agent/node_modules/async/cargoQueue.js +71 -0
- package/mac-agent/node_modules/async/compose.js +55 -0
- package/mac-agent/node_modules/async/concat.js +115 -0
- package/mac-agent/node_modules/async/concatLimit.js +60 -0
- package/mac-agent/node_modules/async/concatSeries.js +41 -0
- package/mac-agent/node_modules/async/constant.js +14 -0
- package/mac-agent/node_modules/async/detect.js +96 -0
- package/mac-agent/node_modules/async/detectLimit.js +48 -0
- package/mac-agent/node_modules/async/detectSeries.js +47 -0
- package/mac-agent/node_modules/async/dir.js +43 -0
- package/mac-agent/node_modules/async/dist/async.js +6061 -0
- package/mac-agent/node_modules/async/dist/async.min.js +1 -0
- package/mac-agent/node_modules/async/dist/async.mjs +5948 -0
- package/mac-agent/node_modules/async/doDuring.js +68 -0
- package/mac-agent/node_modules/async/doUntil.js +46 -0
- package/mac-agent/node_modules/async/doWhilst.js +68 -0
- package/mac-agent/node_modules/async/during.js +78 -0
- package/mac-agent/node_modules/async/each.js +129 -0
- package/mac-agent/node_modules/async/eachLimit.js +50 -0
- package/mac-agent/node_modules/async/eachOf.js +185 -0
- package/mac-agent/node_modules/async/eachOfLimit.js +47 -0
- package/mac-agent/node_modules/async/eachOfSeries.js +39 -0
- package/mac-agent/node_modules/async/eachSeries.js +44 -0
- package/mac-agent/node_modules/async/ensureAsync.js +67 -0
- package/mac-agent/node_modules/async/every.js +119 -0
- package/mac-agent/node_modules/async/everyLimit.js +46 -0
- package/mac-agent/node_modules/async/everySeries.js +45 -0
- package/mac-agent/node_modules/async/filter.js +93 -0
- package/mac-agent/node_modules/async/filterLimit.js +45 -0
- package/mac-agent/node_modules/async/filterSeries.js +43 -0
- package/mac-agent/node_modules/async/find.js +96 -0
- package/mac-agent/node_modules/async/findLimit.js +48 -0
- package/mac-agent/node_modules/async/findSeries.js +47 -0
- package/mac-agent/node_modules/async/flatMap.js +115 -0
- package/mac-agent/node_modules/async/flatMapLimit.js +60 -0
- package/mac-agent/node_modules/async/flatMapSeries.js +41 -0
- package/mac-agent/node_modules/async/foldl.js +153 -0
- package/mac-agent/node_modules/async/foldr.js +41 -0
- package/mac-agent/node_modules/async/forEach.js +129 -0
- package/mac-agent/node_modules/async/forEachLimit.js +50 -0
- package/mac-agent/node_modules/async/forEachOf.js +185 -0
- package/mac-agent/node_modules/async/forEachOfLimit.js +47 -0
- package/mac-agent/node_modules/async/forEachOfSeries.js +39 -0
- package/mac-agent/node_modules/async/forEachSeries.js +44 -0
- package/mac-agent/node_modules/async/forever.js +68 -0
- package/mac-agent/node_modules/async/groupBy.js +108 -0
- package/mac-agent/node_modules/async/groupByLimit.js +71 -0
- package/mac-agent/node_modules/async/groupBySeries.js +36 -0
- package/mac-agent/node_modules/async/index.js +588 -0
- package/mac-agent/node_modules/async/inject.js +153 -0
- package/mac-agent/node_modules/async/internal/DoublyLinkedList.js +92 -0
- package/mac-agent/node_modules/async/internal/Heap.js +120 -0
- package/mac-agent/node_modules/async/internal/applyEach.js +29 -0
- package/mac-agent/node_modules/async/internal/asyncEachOfLimit.js +75 -0
- package/mac-agent/node_modules/async/internal/awaitify.js +28 -0
- package/mac-agent/node_modules/async/internal/breakLoop.js +10 -0
- package/mac-agent/node_modules/async/internal/consoleFunc.js +31 -0
- package/mac-agent/node_modules/async/internal/createTester.js +40 -0
- package/mac-agent/node_modules/async/internal/eachOfLimit.js +90 -0
- package/mac-agent/node_modules/async/internal/filter.js +55 -0
- package/mac-agent/node_modules/async/internal/getIterator.js +11 -0
- package/mac-agent/node_modules/async/internal/initialParams.js +14 -0
- package/mac-agent/node_modules/async/internal/isArrayLike.js +10 -0
- package/mac-agent/node_modules/async/internal/iterator.js +57 -0
- package/mac-agent/node_modules/async/internal/map.js +30 -0
- package/mac-agent/node_modules/async/internal/once.js +17 -0
- package/mac-agent/node_modules/async/internal/onlyOnce.js +15 -0
- package/mac-agent/node_modules/async/internal/parallel.js +34 -0
- package/mac-agent/node_modules/async/internal/promiseCallback.js +23 -0
- package/mac-agent/node_modules/async/internal/queue.js +294 -0
- package/mac-agent/node_modules/async/internal/range.js +14 -0
- package/mac-agent/node_modules/async/internal/reject.js +26 -0
- package/mac-agent/node_modules/async/internal/setImmediate.js +34 -0
- package/mac-agent/node_modules/async/internal/withoutIndex.js +10 -0
- package/mac-agent/node_modules/async/internal/wrapAsync.js +34 -0
- package/mac-agent/node_modules/async/log.js +41 -0
- package/mac-agent/node_modules/async/map.js +142 -0
- package/mac-agent/node_modules/async/mapLimit.js +45 -0
- package/mac-agent/node_modules/async/mapSeries.js +44 -0
- package/mac-agent/node_modules/async/mapValues.js +152 -0
- package/mac-agent/node_modules/async/mapValuesLimit.js +61 -0
- package/mac-agent/node_modules/async/mapValuesSeries.js +37 -0
- package/mac-agent/node_modules/async/memoize.js +91 -0
- package/mac-agent/node_modules/async/nextTick.js +52 -0
- package/mac-agent/node_modules/async/package.json +75 -0
- package/mac-agent/node_modules/async/parallel.js +180 -0
- package/mac-agent/node_modules/async/parallelLimit.js +41 -0
- package/mac-agent/node_modules/async/priorityQueue.js +60 -0
- package/mac-agent/node_modules/async/queue.js +24 -0
- package/mac-agent/node_modules/async/race.js +67 -0
- package/mac-agent/node_modules/async/reduce.js +153 -0
- package/mac-agent/node_modules/async/reduceRight.js +41 -0
- package/mac-agent/node_modules/async/reflect.js +78 -0
- package/mac-agent/node_modules/async/reflectAll.js +93 -0
- package/mac-agent/node_modules/async/reject.js +87 -0
- package/mac-agent/node_modules/async/rejectLimit.js +45 -0
- package/mac-agent/node_modules/async/rejectSeries.js +43 -0
- package/mac-agent/node_modules/async/retry.js +159 -0
- package/mac-agent/node_modules/async/retryable.js +77 -0
- package/mac-agent/node_modules/async/select.js +93 -0
- package/mac-agent/node_modules/async/selectLimit.js +45 -0
- package/mac-agent/node_modules/async/selectSeries.js +43 -0
- package/mac-agent/node_modules/async/seq.js +79 -0
- package/mac-agent/node_modules/async/series.js +186 -0
- package/mac-agent/node_modules/async/setImmediate.js +45 -0
- package/mac-agent/node_modules/async/some.js +122 -0
- package/mac-agent/node_modules/async/someLimit.js +47 -0
- package/mac-agent/node_modules/async/someSeries.js +46 -0
- package/mac-agent/node_modules/async/sortBy.js +190 -0
- package/mac-agent/node_modules/async/timeout.js +89 -0
- package/mac-agent/node_modules/async/times.js +50 -0
- package/mac-agent/node_modules/async/timesLimit.js +43 -0
- package/mac-agent/node_modules/async/timesSeries.js +32 -0
- package/mac-agent/node_modules/async/transform.js +173 -0
- package/mac-agent/node_modules/async/tryEach.js +78 -0
- package/mac-agent/node_modules/async/unmemoize.js +25 -0
- package/mac-agent/node_modules/async/until.js +61 -0
- package/mac-agent/node_modules/async/waterfall.js +105 -0
- package/mac-agent/node_modules/async/whilst.js +78 -0
- package/mac-agent/node_modules/async/wrapSync.js +118 -0
- package/mac-agent/node_modules/asynckit/LICENSE +21 -0
- package/mac-agent/node_modules/asynckit/README.md +233 -0
- package/mac-agent/node_modules/asynckit/bench.js +76 -0
- package/mac-agent/node_modules/asynckit/index.js +6 -0
- package/mac-agent/node_modules/asynckit/lib/abort.js +29 -0
- package/mac-agent/node_modules/asynckit/lib/async.js +34 -0
- package/mac-agent/node_modules/asynckit/lib/defer.js +26 -0
- package/mac-agent/node_modules/asynckit/lib/iterate.js +75 -0
- package/mac-agent/node_modules/asynckit/lib/readable_asynckit.js +91 -0
- package/mac-agent/node_modules/asynckit/lib/readable_parallel.js +25 -0
- package/mac-agent/node_modules/asynckit/lib/readable_serial.js +25 -0
- package/mac-agent/node_modules/asynckit/lib/readable_serial_ordered.js +29 -0
- package/mac-agent/node_modules/asynckit/lib/state.js +37 -0
- package/mac-agent/node_modules/asynckit/lib/streamify.js +141 -0
- package/mac-agent/node_modules/asynckit/lib/terminator.js +29 -0
- package/mac-agent/node_modules/asynckit/package.json +63 -0
- package/mac-agent/node_modules/asynckit/parallel.js +43 -0
- package/mac-agent/node_modules/asynckit/serial.js +17 -0
- package/mac-agent/node_modules/asynckit/serialOrdered.js +75 -0
- package/mac-agent/node_modules/asynckit/stream.js +21 -0
- package/mac-agent/node_modules/axios/CHANGELOG.md +1220 -0
- package/mac-agent/node_modules/axios/LICENSE +7 -0
- package/mac-agent/node_modules/axios/MIGRATION_GUIDE.md +3 -0
- package/mac-agent/node_modules/axios/README.md +1682 -0
- package/mac-agent/node_modules/axios/dist/axios.js +4296 -0
- package/mac-agent/node_modules/axios/dist/axios.js.map +1 -0
- package/mac-agent/node_modules/axios/dist/axios.min.js +3 -0
- package/mac-agent/node_modules/axios/dist/axios.min.js.map +1 -0
- package/mac-agent/node_modules/axios/dist/browser/axios.cjs +3730 -0
- package/mac-agent/node_modules/axios/dist/browser/axios.cjs.map +1 -0
- package/mac-agent/node_modules/axios/dist/esm/axios.js +3753 -0
- package/mac-agent/node_modules/axios/dist/esm/axios.js.map +1 -0
- package/mac-agent/node_modules/axios/dist/esm/axios.min.js +3 -0
- package/mac-agent/node_modules/axios/dist/esm/axios.min.js.map +1 -0
- package/mac-agent/node_modules/axios/dist/node/axios.cjs +4787 -0
- package/mac-agent/node_modules/axios/dist/node/axios.cjs.map +1 -0
- package/mac-agent/node_modules/axios/index.d.cts +550 -0
- package/mac-agent/node_modules/axios/index.d.ts +572 -0
- package/mac-agent/node_modules/axios/index.js +43 -0
- package/mac-agent/node_modules/axios/lib/adapters/README.md +37 -0
- package/mac-agent/node_modules/axios/lib/adapters/adapters.js +79 -0
- package/mac-agent/node_modules/axios/lib/adapters/fetch.js +229 -0
- package/mac-agent/node_modules/axios/lib/adapters/http.js +695 -0
- package/mac-agent/node_modules/axios/lib/adapters/xhr.js +197 -0
- package/mac-agent/node_modules/axios/lib/axios.js +89 -0
- package/mac-agent/node_modules/axios/lib/cancel/CancelToken.js +135 -0
- package/mac-agent/node_modules/axios/lib/cancel/CanceledError.js +25 -0
- package/mac-agent/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/mac-agent/node_modules/axios/lib/core/Axios.js +242 -0
- package/mac-agent/node_modules/axios/lib/core/AxiosError.js +103 -0
- package/mac-agent/node_modules/axios/lib/core/AxiosHeaders.js +314 -0
- package/mac-agent/node_modules/axios/lib/core/InterceptorManager.js +71 -0
- package/mac-agent/node_modules/axios/lib/core/README.md +8 -0
- package/mac-agent/node_modules/axios/lib/core/buildFullPath.js +22 -0
- package/mac-agent/node_modules/axios/lib/core/dispatchRequest.js +81 -0
- package/mac-agent/node_modules/axios/lib/core/mergeConfig.js +106 -0
- package/mac-agent/node_modules/axios/lib/core/settle.js +27 -0
- package/mac-agent/node_modules/axios/lib/core/transformData.js +28 -0
- package/mac-agent/node_modules/axios/lib/defaults/index.js +161 -0
- package/mac-agent/node_modules/axios/lib/defaults/transitional.js +7 -0
- package/mac-agent/node_modules/axios/lib/env/README.md +3 -0
- package/mac-agent/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/mac-agent/node_modules/axios/lib/env/data.js +1 -0
- package/mac-agent/node_modules/axios/lib/helpers/AxiosTransformStream.js +143 -0
- package/mac-agent/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
- package/mac-agent/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
- package/mac-agent/node_modules/axios/lib/helpers/README.md +7 -0
- package/mac-agent/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
- package/mac-agent/node_modules/axios/lib/helpers/bind.js +7 -0
- package/mac-agent/node_modules/axios/lib/helpers/buildURL.js +69 -0
- package/mac-agent/node_modules/axios/lib/helpers/callbackify.js +16 -0
- package/mac-agent/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/mac-agent/node_modules/axios/lib/helpers/composeSignals.js +48 -0
- package/mac-agent/node_modules/axios/lib/helpers/cookies.js +42 -0
- package/mac-agent/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
- package/mac-agent/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
- package/mac-agent/node_modules/axios/lib/helpers/formDataToStream.js +112 -0
- package/mac-agent/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/mac-agent/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
- package/mac-agent/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/mac-agent/node_modules/axios/lib/helpers/isURLSameOrigin.js +14 -0
- package/mac-agent/node_modules/axios/lib/helpers/null.js +2 -0
- package/mac-agent/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
- package/mac-agent/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/mac-agent/node_modules/axios/lib/helpers/progressEventReducer.js +44 -0
- package/mac-agent/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/mac-agent/node_modules/axios/lib/helpers/resolveConfig.js +57 -0
- package/mac-agent/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/mac-agent/node_modules/axios/lib/helpers/spread.js +28 -0
- package/mac-agent/node_modules/axios/lib/helpers/throttle.js +44 -0
- package/mac-agent/node_modules/axios/lib/helpers/toFormData.js +223 -0
- package/mac-agent/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
- package/mac-agent/node_modules/axios/lib/helpers/trackStream.js +87 -0
- package/mac-agent/node_modules/axios/lib/helpers/validator.js +99 -0
- package/mac-agent/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/mac-agent/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/mac-agent/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/mac-agent/node_modules/axios/lib/platform/browser/index.js +13 -0
- package/mac-agent/node_modules/axios/lib/platform/common/utils.js +51 -0
- package/mac-agent/node_modules/axios/lib/platform/index.js +7 -0
- package/mac-agent/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/mac-agent/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/mac-agent/node_modules/axios/lib/platform/node/index.js +38 -0
- package/mac-agent/node_modules/axios/lib/utils.js +744 -0
- package/mac-agent/node_modules/axios/package.json +228 -0
- package/mac-agent/node_modules/balanced-match/.github/FUNDING.yml +2 -0
- package/mac-agent/node_modules/balanced-match/LICENSE.md +21 -0
- package/mac-agent/node_modules/balanced-match/README.md +97 -0
- package/mac-agent/node_modules/balanced-match/index.js +62 -0
- package/mac-agent/node_modules/balanced-match/package.json +48 -0
- package/mac-agent/node_modules/binary-extensions/binary-extensions.json +263 -0
- package/mac-agent/node_modules/binary-extensions/binary-extensions.json.d.ts +3 -0
- package/mac-agent/node_modules/binary-extensions/index.d.ts +14 -0
- package/mac-agent/node_modules/binary-extensions/index.js +1 -0
- package/mac-agent/node_modules/binary-extensions/license +10 -0
- package/mac-agent/node_modules/binary-extensions/package.json +40 -0
- package/mac-agent/node_modules/binary-extensions/readme.md +25 -0
- package/mac-agent/node_modules/brace-expansion/LICENSE +21 -0
- package/mac-agent/node_modules/brace-expansion/README.md +129 -0
- package/mac-agent/node_modules/brace-expansion/index.js +201 -0
- package/mac-agent/node_modules/brace-expansion/package.json +50 -0
- package/mac-agent/node_modules/braces/LICENSE +21 -0
- package/mac-agent/node_modules/braces/README.md +586 -0
- package/mac-agent/node_modules/braces/index.js +170 -0
- package/mac-agent/node_modules/braces/lib/compile.js +60 -0
- package/mac-agent/node_modules/braces/lib/constants.js +57 -0
- package/mac-agent/node_modules/braces/lib/expand.js +113 -0
- package/mac-agent/node_modules/braces/lib/parse.js +331 -0
- package/mac-agent/node_modules/braces/lib/stringify.js +32 -0
- package/mac-agent/node_modules/braces/lib/utils.js +122 -0
- package/mac-agent/node_modules/braces/package.json +77 -0
- package/mac-agent/node_modules/call-bind/.eslintignore +1 -0
- package/mac-agent/node_modules/call-bind/.eslintrc +16 -0
- package/mac-agent/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/call-bind/.nycrc +9 -0
- package/mac-agent/node_modules/call-bind/CHANGELOG.md +106 -0
- package/mac-agent/node_modules/call-bind/LICENSE +21 -0
- package/mac-agent/node_modules/call-bind/README.md +64 -0
- package/mac-agent/node_modules/call-bind/callBound.js +15 -0
- package/mac-agent/node_modules/call-bind/index.js +24 -0
- package/mac-agent/node_modules/call-bind/package.json +93 -0
- package/mac-agent/node_modules/call-bind/test/callBound.js +54 -0
- package/mac-agent/node_modules/call-bind/test/index.js +74 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/mac-agent/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/mac-agent/node_modules/call-bound/.eslintrc +13 -0
- package/mac-agent/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/call-bound/.nycrc +9 -0
- package/mac-agent/node_modules/call-bound/CHANGELOG.md +42 -0
- package/mac-agent/node_modules/call-bound/LICENSE +21 -0
- package/mac-agent/node_modules/call-bound/README.md +53 -0
- package/mac-agent/node_modules/call-bound/index.d.ts +94 -0
- package/mac-agent/node_modules/call-bound/index.js +19 -0
- package/mac-agent/node_modules/call-bound/package.json +99 -0
- package/mac-agent/node_modules/call-bound/test/index.js +61 -0
- package/mac-agent/node_modules/call-bound/tsconfig.json +10 -0
- package/mac-agent/node_modules/camelcase/index.js +56 -0
- package/mac-agent/node_modules/camelcase/license +21 -0
- package/mac-agent/node_modules/camelcase/package.json +39 -0
- package/mac-agent/node_modules/camelcase/readme.md +57 -0
- package/mac-agent/node_modules/chokidar/LICENSE +21 -0
- package/mac-agent/node_modules/chokidar/README.md +308 -0
- package/mac-agent/node_modules/chokidar/index.js +973 -0
- package/mac-agent/node_modules/chokidar/lib/constants.js +66 -0
- package/mac-agent/node_modules/chokidar/lib/fsevents-handler.js +526 -0
- package/mac-agent/node_modules/chokidar/lib/nodefs-handler.js +654 -0
- package/mac-agent/node_modules/chokidar/package.json +70 -0
- package/mac-agent/node_modules/chokidar/types/index.d.ts +192 -0
- package/mac-agent/node_modules/chownr/LICENSE +15 -0
- package/mac-agent/node_modules/chownr/README.md +3 -0
- package/mac-agent/node_modules/chownr/chownr.js +167 -0
- package/mac-agent/node_modules/chownr/package.json +32 -0
- package/mac-agent/node_modules/cliui/CHANGELOG.md +15 -0
- package/mac-agent/node_modules/cliui/LICENSE.txt +14 -0
- package/mac-agent/node_modules/cliui/README.md +110 -0
- package/mac-agent/node_modules/cliui/index.js +316 -0
- package/mac-agent/node_modules/cliui/node_modules/ansi-regex/index.js +4 -0
- package/mac-agent/node_modules/cliui/node_modules/ansi-regex/license +21 -0
- package/mac-agent/node_modules/cliui/node_modules/ansi-regex/package.json +64 -0
- package/mac-agent/node_modules/cliui/node_modules/ansi-regex/readme.md +39 -0
- package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/license +21 -0
- package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/mac-agent/node_modules/cliui/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/mac-agent/node_modules/cliui/node_modules/string-width/index.js +37 -0
- package/mac-agent/node_modules/cliui/node_modules/string-width/license +21 -0
- package/mac-agent/node_modules/cliui/node_modules/string-width/package.json +56 -0
- package/mac-agent/node_modules/cliui/node_modules/string-width/readme.md +42 -0
- package/mac-agent/node_modules/cliui/node_modules/strip-ansi/index.js +6 -0
- package/mac-agent/node_modules/cliui/node_modules/strip-ansi/license +21 -0
- package/mac-agent/node_modules/cliui/node_modules/strip-ansi/package.json +57 -0
- package/mac-agent/node_modules/cliui/node_modules/strip-ansi/readme.md +33 -0
- package/mac-agent/node_modules/cliui/package.json +64 -0
- package/mac-agent/node_modules/code-point-at/index.js +32 -0
- package/mac-agent/node_modules/code-point-at/license +21 -0
- package/mac-agent/node_modules/code-point-at/package.json +38 -0
- package/mac-agent/node_modules/code-point-at/readme.md +32 -0
- package/mac-agent/node_modules/color/LICENSE +21 -0
- package/mac-agent/node_modules/color/README.md +123 -0
- package/mac-agent/node_modules/color/index.js +482 -0
- package/mac-agent/node_modules/color/package.json +40 -0
- package/mac-agent/node_modules/color-convert/CHANGELOG.md +54 -0
- package/mac-agent/node_modules/color-convert/LICENSE +21 -0
- package/mac-agent/node_modules/color-convert/README.md +68 -0
- package/mac-agent/node_modules/color-convert/conversions.js +868 -0
- package/mac-agent/node_modules/color-convert/index.js +78 -0
- package/mac-agent/node_modules/color-convert/package.json +46 -0
- package/mac-agent/node_modules/color-convert/route.js +97 -0
- package/mac-agent/node_modules/color-name/.eslintrc.json +43 -0
- package/mac-agent/node_modules/color-name/LICENSE +8 -0
- package/mac-agent/node_modules/color-name/README.md +11 -0
- package/mac-agent/node_modules/color-name/index.js +152 -0
- package/mac-agent/node_modules/color-name/package.json +25 -0
- package/mac-agent/node_modules/color-name/test.js +7 -0
- package/mac-agent/node_modules/color-string/LICENSE +21 -0
- package/mac-agent/node_modules/color-string/README.md +62 -0
- package/mac-agent/node_modules/color-string/index.js +242 -0
- package/mac-agent/node_modules/color-string/package.json +39 -0
- package/mac-agent/node_modules/color-support/LICENSE +15 -0
- package/mac-agent/node_modules/color-support/README.md +129 -0
- package/mac-agent/node_modules/color-support/bin.js +3 -0
- package/mac-agent/node_modules/color-support/browser.js +14 -0
- package/mac-agent/node_modules/color-support/index.js +134 -0
- package/mac-agent/node_modules/color-support/package.json +36 -0
- package/mac-agent/node_modules/colorspace/LICENSE.md +20 -0
- package/mac-agent/node_modules/colorspace/README.md +43 -0
- package/mac-agent/node_modules/colorspace/index.js +29 -0
- package/mac-agent/node_modules/colorspace/package.json +37 -0
- package/mac-agent/node_modules/combined-stream/License +19 -0
- package/mac-agent/node_modules/combined-stream/Readme.md +138 -0
- package/mac-agent/node_modules/combined-stream/lib/combined_stream.js +208 -0
- package/mac-agent/node_modules/combined-stream/package.json +25 -0
- package/mac-agent/node_modules/combined-stream/yarn.lock +17 -0
- package/mac-agent/node_modules/concat-map/.travis.yml +4 -0
- package/mac-agent/node_modules/concat-map/LICENSE +18 -0
- package/mac-agent/node_modules/concat-map/README.markdown +62 -0
- package/mac-agent/node_modules/concat-map/example/map.js +6 -0
- package/mac-agent/node_modules/concat-map/index.js +13 -0
- package/mac-agent/node_modules/concat-map/package.json +43 -0
- package/mac-agent/node_modules/concat-map/test/map.js +39 -0
- package/mac-agent/node_modules/console-control-strings/LICENSE +13 -0
- package/mac-agent/node_modules/console-control-strings/README.md +145 -0
- package/mac-agent/node_modules/console-control-strings/README.md~ +140 -0
- package/mac-agent/node_modules/console-control-strings/index.js +125 -0
- package/mac-agent/node_modules/console-control-strings/package.json +27 -0
- package/mac-agent/node_modules/debug/LICENSE +20 -0
- package/mac-agent/node_modules/debug/README.md +481 -0
- package/mac-agent/node_modules/debug/package.json +64 -0
- package/mac-agent/node_modules/debug/src/browser.js +272 -0
- package/mac-agent/node_modules/debug/src/common.js +292 -0
- package/mac-agent/node_modules/debug/src/index.js +10 -0
- package/mac-agent/node_modules/debug/src/node.js +263 -0
- package/mac-agent/node_modules/decamelize/index.js +13 -0
- package/mac-agent/node_modules/decamelize/license +21 -0
- package/mac-agent/node_modules/decamelize/package.json +38 -0
- package/mac-agent/node_modules/decamelize/readme.md +48 -0
- package/mac-agent/node_modules/define-data-property/.eslintrc +24 -0
- package/mac-agent/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/define-data-property/.nycrc +13 -0
- package/mac-agent/node_modules/define-data-property/CHANGELOG.md +70 -0
- package/mac-agent/node_modules/define-data-property/LICENSE +21 -0
- package/mac-agent/node_modules/define-data-property/README.md +67 -0
- package/mac-agent/node_modules/define-data-property/index.d.ts +12 -0
- package/mac-agent/node_modules/define-data-property/index.js +56 -0
- package/mac-agent/node_modules/define-data-property/package.json +106 -0
- package/mac-agent/node_modules/define-data-property/test/index.js +392 -0
- package/mac-agent/node_modules/define-data-property/tsconfig.json +59 -0
- package/mac-agent/node_modules/define-properties/.editorconfig +13 -0
- package/mac-agent/node_modules/define-properties/.eslintrc +19 -0
- package/mac-agent/node_modules/define-properties/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/define-properties/.nycrc +9 -0
- package/mac-agent/node_modules/define-properties/CHANGELOG.md +91 -0
- package/mac-agent/node_modules/define-properties/LICENSE +21 -0
- package/mac-agent/node_modules/define-properties/README.md +84 -0
- package/mac-agent/node_modules/define-properties/index.js +47 -0
- package/mac-agent/node_modules/define-properties/package.json +88 -0
- package/mac-agent/node_modules/delayed-stream/License +19 -0
- package/mac-agent/node_modules/delayed-stream/Makefile +7 -0
- package/mac-agent/node_modules/delayed-stream/Readme.md +141 -0
- package/mac-agent/node_modules/delayed-stream/lib/delayed_stream.js +107 -0
- package/mac-agent/node_modules/delayed-stream/package.json +27 -0
- package/mac-agent/node_modules/delegates/History.md +22 -0
- package/mac-agent/node_modules/delegates/License +20 -0
- package/mac-agent/node_modules/delegates/Makefile +8 -0
- package/mac-agent/node_modules/delegates/Readme.md +94 -0
- package/mac-agent/node_modules/delegates/index.js +121 -0
- package/mac-agent/node_modules/delegates/package.json +13 -0
- package/mac-agent/node_modules/delegates/test/index.js +94 -0
- package/mac-agent/node_modules/detect-libc/LICENSE +201 -0
- package/mac-agent/node_modules/detect-libc/README.md +163 -0
- package/mac-agent/node_modules/detect-libc/index.d.ts +14 -0
- package/mac-agent/node_modules/detect-libc/lib/detect-libc.js +267 -0
- package/mac-agent/node_modules/detect-libc/lib/filesystem.js +41 -0
- package/mac-agent/node_modules/detect-libc/lib/process.js +24 -0
- package/mac-agent/node_modules/detect-libc/package.json +41 -0
- package/mac-agent/node_modules/domexception/LICENSE.txt +21 -0
- package/mac-agent/node_modules/domexception/README.md +19 -0
- package/mac-agent/node_modules/domexception/lib/DOMException-impl.js +22 -0
- package/mac-agent/node_modules/domexception/lib/DOMException.js +368 -0
- package/mac-agent/node_modules/domexception/lib/legacy-error-codes.json +27 -0
- package/mac-agent/node_modules/domexception/lib/public-api.js +5 -0
- package/mac-agent/node_modules/domexception/lib/utils.js +86 -0
- package/mac-agent/node_modules/domexception/package.json +36 -0
- package/mac-agent/node_modules/dotenv/CHANGELOG.md +520 -0
- package/mac-agent/node_modules/dotenv/LICENSE +23 -0
- package/mac-agent/node_modules/dotenv/README-es.md +411 -0
- package/mac-agent/node_modules/dotenv/README.md +645 -0
- package/mac-agent/node_modules/dotenv/SECURITY.md +1 -0
- package/mac-agent/node_modules/dotenv/config.d.ts +1 -0
- package/mac-agent/node_modules/dotenv/config.js +9 -0
- package/mac-agent/node_modules/dotenv/lib/cli-options.js +17 -0
- package/mac-agent/node_modules/dotenv/lib/env-options.js +28 -0
- package/mac-agent/node_modules/dotenv/lib/main.d.ts +162 -0
- package/mac-agent/node_modules/dotenv/lib/main.js +386 -0
- package/mac-agent/node_modules/dotenv/package.json +62 -0
- package/mac-agent/node_modules/dunder-proto/.eslintrc +5 -0
- package/mac-agent/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/dunder-proto/.nycrc +13 -0
- package/mac-agent/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/mac-agent/node_modules/dunder-proto/LICENSE +21 -0
- package/mac-agent/node_modules/dunder-proto/README.md +54 -0
- package/mac-agent/node_modules/dunder-proto/get.d.ts +5 -0
- package/mac-agent/node_modules/dunder-proto/get.js +30 -0
- package/mac-agent/node_modules/dunder-proto/package.json +76 -0
- package/mac-agent/node_modules/dunder-proto/set.d.ts +5 -0
- package/mac-agent/node_modules/dunder-proto/set.js +35 -0
- package/mac-agent/node_modules/dunder-proto/test/get.js +34 -0
- package/mac-agent/node_modules/dunder-proto/test/index.js +4 -0
- package/mac-agent/node_modules/dunder-proto/test/set.js +50 -0
- package/mac-agent/node_modules/dunder-proto/tsconfig.json +9 -0
- package/mac-agent/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/mac-agent/node_modules/emoji-regex/README.md +73 -0
- package/mac-agent/node_modules/emoji-regex/es2015/index.js +6 -0
- package/mac-agent/node_modules/emoji-regex/es2015/text.js +6 -0
- package/mac-agent/node_modules/emoji-regex/index.d.ts +23 -0
- package/mac-agent/node_modules/emoji-regex/index.js +6 -0
- package/mac-agent/node_modules/emoji-regex/package.json +50 -0
- package/mac-agent/node_modules/emoji-regex/text.js +6 -0
- package/mac-agent/node_modules/enabled/.travis.yml +9 -0
- package/mac-agent/node_modules/enabled/LICENSE +20 -0
- package/mac-agent/node_modules/enabled/README.md +68 -0
- package/mac-agent/node_modules/enabled/index.js +34 -0
- package/mac-agent/node_modules/enabled/package.json +33 -0
- package/mac-agent/node_modules/enabled/test.js +39 -0
- package/mac-agent/node_modules/error-ex/LICENSE +21 -0
- package/mac-agent/node_modules/error-ex/README.md +144 -0
- package/mac-agent/node_modules/error-ex/index.js +141 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.editorconfig +18 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.istanbul.yml +4 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/.travis.yml +17 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/LICENSE +21 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/README.md +16 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/index.js +10 -0
- package/mac-agent/node_modules/error-ex/node_modules/is-arrayish/package.json +34 -0
- package/mac-agent/node_modules/error-ex/package.json +46 -0
- package/mac-agent/node_modules/es-define-property/.eslintrc +13 -0
- package/mac-agent/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/es-define-property/.nycrc +9 -0
- package/mac-agent/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/mac-agent/node_modules/es-define-property/LICENSE +21 -0
- package/mac-agent/node_modules/es-define-property/README.md +49 -0
- package/mac-agent/node_modules/es-define-property/index.d.ts +3 -0
- package/mac-agent/node_modules/es-define-property/index.js +14 -0
- package/mac-agent/node_modules/es-define-property/package.json +81 -0
- package/mac-agent/node_modules/es-define-property/test/index.js +56 -0
- package/mac-agent/node_modules/es-define-property/tsconfig.json +10 -0
- package/mac-agent/node_modules/es-errors/.eslintrc +5 -0
- package/mac-agent/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/es-errors/CHANGELOG.md +40 -0
- package/mac-agent/node_modules/es-errors/LICENSE +21 -0
- package/mac-agent/node_modules/es-errors/README.md +55 -0
- package/mac-agent/node_modules/es-errors/eval.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/eval.js +4 -0
- package/mac-agent/node_modules/es-errors/index.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/index.js +4 -0
- package/mac-agent/node_modules/es-errors/package.json +80 -0
- package/mac-agent/node_modules/es-errors/range.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/range.js +4 -0
- package/mac-agent/node_modules/es-errors/ref.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/ref.js +4 -0
- package/mac-agent/node_modules/es-errors/syntax.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/syntax.js +4 -0
- package/mac-agent/node_modules/es-errors/test/index.js +19 -0
- package/mac-agent/node_modules/es-errors/tsconfig.json +49 -0
- package/mac-agent/node_modules/es-errors/type.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/type.js +4 -0
- package/mac-agent/node_modules/es-errors/uri.d.ts +3 -0
- package/mac-agent/node_modules/es-errors/uri.js +4 -0
- package/mac-agent/node_modules/es-object-atoms/.eslintrc +16 -0
- package/mac-agent/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/es-object-atoms/CHANGELOG.md +37 -0
- package/mac-agent/node_modules/es-object-atoms/LICENSE +21 -0
- package/mac-agent/node_modules/es-object-atoms/README.md +63 -0
- package/mac-agent/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/mac-agent/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/mac-agent/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/mac-agent/node_modules/es-object-atoms/ToObject.js +10 -0
- package/mac-agent/node_modules/es-object-atoms/index.d.ts +3 -0
- package/mac-agent/node_modules/es-object-atoms/index.js +4 -0
- package/mac-agent/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/mac-agent/node_modules/es-object-atoms/isObject.js +6 -0
- package/mac-agent/node_modules/es-object-atoms/package.json +80 -0
- package/mac-agent/node_modules/es-object-atoms/test/index.js +38 -0
- package/mac-agent/node_modules/es-object-atoms/tsconfig.json +6 -0
- package/mac-agent/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/mac-agent/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/mac-agent/node_modules/es-set-tostringtag/CHANGELOG.md +67 -0
- package/mac-agent/node_modules/es-set-tostringtag/LICENSE +21 -0
- package/mac-agent/node_modules/es-set-tostringtag/README.md +53 -0
- package/mac-agent/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/mac-agent/node_modules/es-set-tostringtag/index.js +35 -0
- package/mac-agent/node_modules/es-set-tostringtag/package.json +78 -0
- package/mac-agent/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/mac-agent/node_modules/es-set-tostringtag/tsconfig.json +9 -0
- package/mac-agent/node_modules/fecha/LICENSE +22 -0
- package/mac-agent/node_modules/fecha/README.md +320 -0
- package/mac-agent/node_modules/fecha/dist/fecha.min.js +2 -0
- package/mac-agent/node_modules/fecha/dist/fecha.min.js.map +1 -0
- package/mac-agent/node_modules/fecha/lib/fecha.d.ts +52 -0
- package/mac-agent/node_modules/fecha/lib/fecha.js +403 -0
- package/mac-agent/node_modules/fecha/lib/fecha.js.map +1 -0
- package/mac-agent/node_modules/fecha/lib/fecha.umd.js +418 -0
- package/mac-agent/node_modules/fecha/lib/fecha.umd.js.map +1 -0
- package/mac-agent/node_modules/fecha/package.json +55 -0
- package/mac-agent/node_modules/fecha/src/fecha.ts +524 -0
- package/mac-agent/node_modules/fill-range/LICENSE +21 -0
- package/mac-agent/node_modules/fill-range/README.md +237 -0
- package/mac-agent/node_modules/fill-range/index.js +248 -0
- package/mac-agent/node_modules/fill-range/package.json +74 -0
- package/mac-agent/node_modules/find-up/index.js +53 -0
- package/mac-agent/node_modules/find-up/license +21 -0
- package/mac-agent/node_modules/find-up/package.json +51 -0
- package/mac-agent/node_modules/find-up/readme.md +72 -0
- package/mac-agent/node_modules/fn.name/.gitattributes +1 -0
- package/mac-agent/node_modules/fn.name/.travis.yml +10 -0
- package/mac-agent/node_modules/fn.name/LICENSE +22 -0
- package/mac-agent/node_modules/fn.name/README.md +42 -0
- package/mac-agent/node_modules/fn.name/index.js +42 -0
- package/mac-agent/node_modules/fn.name/package.json +37 -0
- package/mac-agent/node_modules/fn.name/test.js +73 -0
- package/mac-agent/node_modules/follow-redirects/LICENSE +18 -0
- package/mac-agent/node_modules/follow-redirects/README.md +155 -0
- package/mac-agent/node_modules/follow-redirects/debug.js +15 -0
- package/mac-agent/node_modules/follow-redirects/http.js +1 -0
- package/mac-agent/node_modules/follow-redirects/https.js +1 -0
- package/mac-agent/node_modules/follow-redirects/index.js +686 -0
- package/mac-agent/node_modules/follow-redirects/package.json +58 -0
- package/mac-agent/node_modules/form-data/License +19 -0
- package/mac-agent/node_modules/form-data/README.md.bak +355 -0
- package/mac-agent/node_modules/form-data/Readme.md +355 -0
- package/mac-agent/node_modules/form-data/index.d.ts +62 -0
- package/mac-agent/node_modules/form-data/lib/browser.js +4 -0
- package/mac-agent/node_modules/form-data/lib/form_data.js +498 -0
- package/mac-agent/node_modules/form-data/lib/populate.js +10 -0
- package/mac-agent/node_modules/form-data/package.json +66 -0
- package/mac-agent/node_modules/fs-minipass/LICENSE +15 -0
- package/mac-agent/node_modules/fs-minipass/README.md +70 -0
- package/mac-agent/node_modules/fs-minipass/index.js +422 -0
- package/mac-agent/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/mac-agent/node_modules/fs-minipass/node_modules/minipass/README.md +728 -0
- package/mac-agent/node_modules/fs-minipass/node_modules/minipass/index.d.ts +155 -0
- package/mac-agent/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/mac-agent/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- package/mac-agent/node_modules/fs-minipass/package.json +39 -0
- package/mac-agent/node_modules/fs.realpath/LICENSE +43 -0
- package/mac-agent/node_modules/fs.realpath/README.md +33 -0
- package/mac-agent/node_modules/fs.realpath/index.js +66 -0
- package/mac-agent/node_modules/fs.realpath/old.js +303 -0
- package/mac-agent/node_modules/fs.realpath/package.json +26 -0
- package/mac-agent/node_modules/fsevents/LICENSE +22 -0
- package/mac-agent/node_modules/fsevents/README.md +89 -0
- package/mac-agent/node_modules/fsevents/fsevents.d.ts +46 -0
- package/mac-agent/node_modules/fsevents/fsevents.js +83 -0
- package/mac-agent/node_modules/fsevents/fsevents.node +0 -0
- package/mac-agent/node_modules/fsevents/package.json +62 -0
- package/mac-agent/node_modules/function-bind/.eslintrc +21 -0
- package/mac-agent/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/mac-agent/node_modules/function-bind/.nycrc +13 -0
- package/mac-agent/node_modules/function-bind/CHANGELOG.md +136 -0
- package/mac-agent/node_modules/function-bind/LICENSE +20 -0
- package/mac-agent/node_modules/function-bind/README.md +46 -0
- package/mac-agent/node_modules/function-bind/implementation.js +84 -0
- package/mac-agent/node_modules/function-bind/index.js +5 -0
- package/mac-agent/node_modules/function-bind/package.json +87 -0
- package/mac-agent/node_modules/function-bind/test/.eslintrc +9 -0
- package/mac-agent/node_modules/function-bind/test/index.js +252 -0
- package/mac-agent/node_modules/gauge/CHANGELOG.md +163 -0
- package/mac-agent/node_modules/gauge/LICENSE +13 -0
- package/mac-agent/node_modules/gauge/README.md +402 -0
- package/mac-agent/node_modules/gauge/base-theme.js +14 -0
- package/mac-agent/node_modules/gauge/error.js +24 -0
- package/mac-agent/node_modules/gauge/has-color.js +4 -0
- package/mac-agent/node_modules/gauge/index.js +233 -0
- package/mac-agent/node_modules/gauge/package.json +66 -0
- package/mac-agent/node_modules/gauge/plumbing.js +48 -0
- package/mac-agent/node_modules/gauge/process.js +3 -0
- package/mac-agent/node_modules/gauge/progress-bar.js +35 -0
- package/mac-agent/node_modules/gauge/render-template.js +178 -0
- package/mac-agent/node_modules/gauge/set-immediate.js +7 -0
- package/mac-agent/node_modules/gauge/set-interval.js +3 -0
- package/mac-agent/node_modules/gauge/spin.js +5 -0
- package/mac-agent/node_modules/gauge/template-item.js +72 -0
- package/mac-agent/node_modules/gauge/theme-set.js +114 -0
- package/mac-agent/node_modules/gauge/themes.js +56 -0
- package/mac-agent/node_modules/gauge/wide-truncate.js +25 -0
- package/mac-agent/node_modules/get-caller-file/LICENSE.md +6 -0
- package/mac-agent/node_modules/get-caller-file/README.md +4 -0
- package/mac-agent/node_modules/get-caller-file/index.js +20 -0
- package/mac-agent/node_modules/get-caller-file/package.json +31 -0
- package/mac-agent/node_modules/get-intrinsic/.eslintrc +42 -0
- package/mac-agent/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/get-intrinsic/.nycrc +9 -0
- package/mac-agent/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/mac-agent/node_modules/get-intrinsic/LICENSE +21 -0
- package/mac-agent/node_modules/get-intrinsic/README.md +71 -0
- package/mac-agent/node_modules/get-intrinsic/index.js +378 -0
- package/mac-agent/node_modules/get-intrinsic/package.json +97 -0
- package/mac-agent/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/mac-agent/node_modules/get-proto/.eslintrc +10 -0
- package/mac-agent/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/get-proto/.nycrc +9 -0
- package/mac-agent/node_modules/get-proto/CHANGELOG.md +21 -0
- package/mac-agent/node_modules/get-proto/LICENSE +21 -0
- package/mac-agent/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/mac-agent/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/mac-agent/node_modules/get-proto/README.md +50 -0
- package/mac-agent/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/mac-agent/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/mac-agent/node_modules/get-proto/index.d.ts +5 -0
- package/mac-agent/node_modules/get-proto/index.js +27 -0
- package/mac-agent/node_modules/get-proto/package.json +81 -0
- package/mac-agent/node_modules/get-proto/test/index.js +68 -0
- package/mac-agent/node_modules/get-proto/tsconfig.json +9 -0
- package/mac-agent/node_modules/glob/LICENSE +21 -0
- package/mac-agent/node_modules/glob/README.md +378 -0
- package/mac-agent/node_modules/glob/common.js +238 -0
- package/mac-agent/node_modules/glob/glob.js +790 -0
- package/mac-agent/node_modules/glob/package.json +55 -0
- package/mac-agent/node_modules/glob/sync.js +486 -0
- package/mac-agent/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/mac-agent/node_modules/glob-parent/LICENSE +15 -0
- package/mac-agent/node_modules/glob-parent/README.md +137 -0
- package/mac-agent/node_modules/glob-parent/index.js +42 -0
- package/mac-agent/node_modules/glob-parent/package.json +48 -0
- package/mac-agent/node_modules/gopd/.eslintrc +16 -0
- package/mac-agent/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/gopd/CHANGELOG.md +45 -0
- package/mac-agent/node_modules/gopd/LICENSE +21 -0
- package/mac-agent/node_modules/gopd/README.md +40 -0
- package/mac-agent/node_modules/gopd/gOPD.d.ts +1 -0
- package/mac-agent/node_modules/gopd/gOPD.js +4 -0
- package/mac-agent/node_modules/gopd/index.d.ts +5 -0
- package/mac-agent/node_modules/gopd/index.js +15 -0
- package/mac-agent/node_modules/gopd/package.json +77 -0
- package/mac-agent/node_modules/gopd/test/index.js +36 -0
- package/mac-agent/node_modules/gopd/tsconfig.json +9 -0
- package/mac-agent/node_modules/graceful-fs/LICENSE +15 -0
- package/mac-agent/node_modules/graceful-fs/README.md +143 -0
- package/mac-agent/node_modules/graceful-fs/clone.js +23 -0
- package/mac-agent/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/mac-agent/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/mac-agent/node_modules/graceful-fs/package.json +53 -0
- package/mac-agent/node_modules/graceful-fs/polyfills.js +355 -0
- package/mac-agent/node_modules/has-flag/index.js +8 -0
- package/mac-agent/node_modules/has-flag/license +9 -0
- package/mac-agent/node_modules/has-flag/package.json +44 -0
- package/mac-agent/node_modules/has-flag/readme.md +70 -0
- package/mac-agent/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/mac-agent/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/has-property-descriptors/.nycrc +9 -0
- package/mac-agent/node_modules/has-property-descriptors/CHANGELOG.md +35 -0
- package/mac-agent/node_modules/has-property-descriptors/LICENSE +21 -0
- package/mac-agent/node_modules/has-property-descriptors/README.md +43 -0
- package/mac-agent/node_modules/has-property-descriptors/index.js +22 -0
- package/mac-agent/node_modules/has-property-descriptors/package.json +77 -0
- package/mac-agent/node_modules/has-property-descriptors/test/index.js +57 -0
- package/mac-agent/node_modules/has-symbols/.eslintrc +11 -0
- package/mac-agent/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/has-symbols/.nycrc +9 -0
- package/mac-agent/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/mac-agent/node_modules/has-symbols/LICENSE +21 -0
- package/mac-agent/node_modules/has-symbols/README.md +46 -0
- package/mac-agent/node_modules/has-symbols/index.d.ts +3 -0
- package/mac-agent/node_modules/has-symbols/index.js +14 -0
- package/mac-agent/node_modules/has-symbols/package.json +111 -0
- package/mac-agent/node_modules/has-symbols/shams.d.ts +3 -0
- package/mac-agent/node_modules/has-symbols/shams.js +45 -0
- package/mac-agent/node_modules/has-symbols/test/index.js +22 -0
- package/mac-agent/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/mac-agent/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/mac-agent/node_modules/has-symbols/test/tests.js +58 -0
- package/mac-agent/node_modules/has-symbols/tsconfig.json +10 -0
- package/mac-agent/node_modules/has-tostringtag/.eslintrc +5 -0
- package/mac-agent/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/has-tostringtag/.nycrc +13 -0
- package/mac-agent/node_modules/has-tostringtag/CHANGELOG.md +42 -0
- package/mac-agent/node_modules/has-tostringtag/LICENSE +21 -0
- package/mac-agent/node_modules/has-tostringtag/README.md +46 -0
- package/mac-agent/node_modules/has-tostringtag/index.d.ts +3 -0
- package/mac-agent/node_modules/has-tostringtag/index.js +8 -0
- package/mac-agent/node_modules/has-tostringtag/package.json +108 -0
- package/mac-agent/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/mac-agent/node_modules/has-tostringtag/shams.js +8 -0
- package/mac-agent/node_modules/has-tostringtag/test/index.js +21 -0
- package/mac-agent/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/mac-agent/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/mac-agent/node_modules/has-tostringtag/test/tests.js +15 -0
- package/mac-agent/node_modules/has-tostringtag/tsconfig.json +49 -0
- package/mac-agent/node_modules/has-unicode/LICENSE +14 -0
- package/mac-agent/node_modules/has-unicode/README.md +43 -0
- package/mac-agent/node_modules/has-unicode/index.js +16 -0
- package/mac-agent/node_modules/has-unicode/package.json +30 -0
- package/mac-agent/node_modules/hasown/.eslintrc +5 -0
- package/mac-agent/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/hasown/.nycrc +13 -0
- package/mac-agent/node_modules/hasown/CHANGELOG.md +40 -0
- package/mac-agent/node_modules/hasown/LICENSE +21 -0
- package/mac-agent/node_modules/hasown/README.md +40 -0
- package/mac-agent/node_modules/hasown/index.d.ts +3 -0
- package/mac-agent/node_modules/hasown/index.js +8 -0
- package/mac-agent/node_modules/hasown/package.json +92 -0
- package/mac-agent/node_modules/hasown/tsconfig.json +6 -0
- package/mac-agent/node_modules/hosted-git-info/CHANGELOG.md +151 -0
- package/mac-agent/node_modules/hosted-git-info/LICENSE +13 -0
- package/mac-agent/node_modules/hosted-git-info/README.md +133 -0
- package/mac-agent/node_modules/hosted-git-info/git-host-info.js +79 -0
- package/mac-agent/node_modules/hosted-git-info/git-host.js +156 -0
- package/mac-agent/node_modules/hosted-git-info/index.js +148 -0
- package/mac-agent/node_modules/hosted-git-info/package.json +40 -0
- package/mac-agent/node_modules/https-proxy-agent/README.md +137 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/agent.d.ts +30 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/agent.js +177 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/agent.js.map +1 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/index.d.ts +23 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/index.js +14 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/index.js.map +1 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts +7 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js +66 -0
- package/mac-agent/node_modules/https-proxy-agent/dist/parse-proxy-response.js.map +1 -0
- package/mac-agent/node_modules/https-proxy-agent/package.json +56 -0
- package/mac-agent/node_modules/ignore-by-default/LICENSE +14 -0
- package/mac-agent/node_modules/ignore-by-default/README.md +26 -0
- package/mac-agent/node_modules/ignore-by-default/index.js +12 -0
- package/mac-agent/node_modules/ignore-by-default/package.json +34 -0
- package/mac-agent/node_modules/inflight/LICENSE +15 -0
- package/mac-agent/node_modules/inflight/README.md +37 -0
- package/mac-agent/node_modules/inflight/inflight.js +54 -0
- package/mac-agent/node_modules/inflight/package.json +29 -0
- package/mac-agent/node_modules/inherits/LICENSE +16 -0
- package/mac-agent/node_modules/inherits/README.md +42 -0
- package/mac-agent/node_modules/inherits/inherits.js +9 -0
- package/mac-agent/node_modules/inherits/inherits_browser.js +27 -0
- package/mac-agent/node_modules/inherits/package.json +29 -0
- package/mac-agent/node_modules/invert-kv/index.js +15 -0
- package/mac-agent/node_modules/invert-kv/package.json +33 -0
- package/mac-agent/node_modules/invert-kv/readme.md +25 -0
- package/mac-agent/node_modules/is-arrayish/LICENSE +21 -0
- package/mac-agent/node_modules/is-arrayish/README.md +16 -0
- package/mac-agent/node_modules/is-arrayish/index.js +9 -0
- package/mac-agent/node_modules/is-arrayish/package.json +45 -0
- package/mac-agent/node_modules/is-arrayish/yarn-error.log +1443 -0
- package/mac-agent/node_modules/is-binary-path/index.d.ts +17 -0
- package/mac-agent/node_modules/is-binary-path/index.js +7 -0
- package/mac-agent/node_modules/is-binary-path/license +9 -0
- package/mac-agent/node_modules/is-binary-path/package.json +40 -0
- package/mac-agent/node_modules/is-binary-path/readme.md +34 -0
- package/mac-agent/node_modules/is-core-module/.eslintrc +18 -0
- package/mac-agent/node_modules/is-core-module/.nycrc +9 -0
- package/mac-agent/node_modules/is-core-module/CHANGELOG.md +218 -0
- package/mac-agent/node_modules/is-core-module/LICENSE +20 -0
- package/mac-agent/node_modules/is-core-module/README.md +40 -0
- package/mac-agent/node_modules/is-core-module/core.json +162 -0
- package/mac-agent/node_modules/is-core-module/index.js +69 -0
- package/mac-agent/node_modules/is-core-module/package.json +76 -0
- package/mac-agent/node_modules/is-core-module/test/index.js +157 -0
- package/mac-agent/node_modules/is-extglob/LICENSE +21 -0
- package/mac-agent/node_modules/is-extglob/README.md +107 -0
- package/mac-agent/node_modules/is-extglob/index.js +20 -0
- package/mac-agent/node_modules/is-extglob/package.json +69 -0
- package/mac-agent/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
- package/mac-agent/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/mac-agent/node_modules/is-fullwidth-code-point/license +9 -0
- package/mac-agent/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/mac-agent/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/mac-agent/node_modules/is-glob/LICENSE +21 -0
- package/mac-agent/node_modules/is-glob/README.md +206 -0
- package/mac-agent/node_modules/is-glob/index.js +150 -0
- package/mac-agent/node_modules/is-glob/package.json +81 -0
- package/mac-agent/node_modules/is-number/LICENSE +21 -0
- package/mac-agent/node_modules/is-number/README.md +187 -0
- package/mac-agent/node_modules/is-number/index.js +18 -0
- package/mac-agent/node_modules/is-number/package.json +82 -0
- package/mac-agent/node_modules/is-stream/index.d.ts +79 -0
- package/mac-agent/node_modules/is-stream/index.js +28 -0
- package/mac-agent/node_modules/is-stream/license +9 -0
- package/mac-agent/node_modules/is-stream/package.json +42 -0
- package/mac-agent/node_modules/is-stream/readme.md +60 -0
- package/mac-agent/node_modules/is-utf8/LICENSE +9 -0
- package/mac-agent/node_modules/is-utf8/README.md +16 -0
- package/mac-agent/node_modules/is-utf8/is-utf8.js +76 -0
- package/mac-agent/node_modules/is-utf8/package.json +19 -0
- package/mac-agent/node_modules/isexe/LICENSE +15 -0
- package/mac-agent/node_modules/isexe/README.md +51 -0
- package/mac-agent/node_modules/isexe/index.js +57 -0
- package/mac-agent/node_modules/isexe/mode.js +41 -0
- package/mac-agent/node_modules/isexe/package.json +31 -0
- package/mac-agent/node_modules/isexe/test/basic.js +221 -0
- package/mac-agent/node_modules/isexe/windows.js +42 -0
- package/mac-agent/node_modules/kuler/.travis.yml +5 -0
- package/mac-agent/node_modules/kuler/LICENSE +7 -0
- package/mac-agent/node_modules/kuler/README.md +40 -0
- package/mac-agent/node_modules/kuler/index.js +118 -0
- package/mac-agent/node_modules/kuler/package.json +34 -0
- package/mac-agent/node_modules/kuler/test.js +23 -0
- package/mac-agent/node_modules/lcid/index.js +22 -0
- package/mac-agent/node_modules/lcid/lcid.json +203 -0
- package/mac-agent/node_modules/lcid/license +21 -0
- package/mac-agent/node_modules/lcid/package.json +46 -0
- package/mac-agent/node_modules/lcid/readme.md +35 -0
- package/mac-agent/node_modules/load-json-file/index.js +21 -0
- package/mac-agent/node_modules/load-json-file/license +21 -0
- package/mac-agent/node_modules/load-json-file/package.json +46 -0
- package/mac-agent/node_modules/load-json-file/readme.md +45 -0
- package/mac-agent/node_modules/logform/.babelrc +3 -0
- package/mac-agent/node_modules/logform/.eslintrc +7 -0
- package/mac-agent/node_modules/logform/.gitattributes +1 -0
- package/mac-agent/node_modules/logform/CHANGELOG.md +309 -0
- package/mac-agent/node_modules/logform/LICENSE +21 -0
- package/mac-agent/node_modules/logform/README.md +653 -0
- package/mac-agent/node_modules/logform/align.js +14 -0
- package/mac-agent/node_modules/logform/browser.js +38 -0
- package/mac-agent/node_modules/logform/cli.js +52 -0
- package/mac-agent/node_modules/logform/colorize.js +122 -0
- package/mac-agent/node_modules/logform/combine.js +66 -0
- package/mac-agent/node_modules/logform/dist/align.js +14 -0
- package/mac-agent/node_modules/logform/dist/browser.js +72 -0
- package/mac-agent/node_modules/logform/dist/cli.js +62 -0
- package/mac-agent/node_modules/logform/dist/colorize.js +131 -0
- package/mac-agent/node_modules/logform/dist/combine.js +62 -0
- package/mac-agent/node_modules/logform/dist/errors.js +44 -0
- package/mac-agent/node_modules/logform/dist/format.js +70 -0
- package/mac-agent/node_modules/logform/dist/index.js +86 -0
- package/mac-agent/node_modules/logform/dist/json.js +30 -0
- package/mac-agent/node_modules/logform/dist/label.js +18 -0
- package/mac-agent/node_modules/logform/dist/levels.js +13 -0
- package/mac-agent/node_modules/logform/dist/logstash.js +28 -0
- package/mac-agent/node_modules/logform/dist/metadata.js +56 -0
- package/mac-agent/node_modules/logform/dist/ms.js +18 -0
- package/mac-agent/node_modules/logform/dist/pad-levels.js +110 -0
- package/mac-agent/node_modules/logform/dist/pretty-print.js +32 -0
- package/mac-agent/node_modules/logform/dist/printf.js +33 -0
- package/mac-agent/node_modules/logform/dist/simple.js +32 -0
- package/mac-agent/node_modules/logform/dist/splat.js +143 -0
- package/mac-agent/node_modules/logform/dist/timestamp.js +26 -0
- package/mac-agent/node_modules/logform/dist/uncolorize.js +25 -0
- package/mac-agent/node_modules/logform/errors.js +41 -0
- package/mac-agent/node_modules/logform/format.js +52 -0
- package/mac-agent/node_modules/logform/index.d.ts +201 -0
- package/mac-agent/node_modules/logform/index.js +52 -0
- package/mac-agent/node_modules/logform/json.js +30 -0
- package/mac-agent/node_modules/logform/label.js +19 -0
- package/mac-agent/node_modules/logform/levels.js +12 -0
- package/mac-agent/node_modules/logform/logstash.js +29 -0
- package/mac-agent/node_modules/logform/metadata.js +61 -0
- package/mac-agent/node_modules/logform/ms.js +18 -0
- package/mac-agent/node_modules/logform/package.json +53 -0
- package/mac-agent/node_modules/logform/pad-levels.js +83 -0
- package/mac-agent/node_modules/logform/pretty-print.js +29 -0
- package/mac-agent/node_modules/logform/printf.js +26 -0
- package/mac-agent/node_modules/logform/simple.js +33 -0
- package/mac-agent/node_modules/logform/splat.js +132 -0
- package/mac-agent/node_modules/logform/timestamp.js +30 -0
- package/mac-agent/node_modules/logform/tsconfig.json +22 -0
- package/mac-agent/node_modules/logform/uncolorize.js +27 -0
- package/mac-agent/node_modules/make-dir/index.d.ts +66 -0
- package/mac-agent/node_modules/make-dir/index.js +156 -0
- package/mac-agent/node_modules/make-dir/license +9 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/LICENSE +15 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/README.md +443 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/bin/semver.js +174 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/package.json +38 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/range.bnf +16 -0
- package/mac-agent/node_modules/make-dir/node_modules/semver/semver.js +1643 -0
- package/mac-agent/node_modules/make-dir/package.json +59 -0
- package/mac-agent/node_modules/make-dir/readme.md +125 -0
- package/mac-agent/node_modules/math-intrinsics/.eslintrc +16 -0
- package/mac-agent/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/mac-agent/node_modules/math-intrinsics/LICENSE +21 -0
- package/mac-agent/node_modules/math-intrinsics/README.md +50 -0
- package/mac-agent/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/abs.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/mac-agent/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/floor.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/isFinite.js +12 -0
- package/mac-agent/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/isInteger.js +16 -0
- package/mac-agent/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/isNaN.js +6 -0
- package/mac-agent/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/mac-agent/node_modules/math-intrinsics/max.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/max.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/min.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/min.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/mod.js +9 -0
- package/mac-agent/node_modules/math-intrinsics/package.json +86 -0
- package/mac-agent/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/pow.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/round.d.ts +1 -0
- package/mac-agent/node_modules/math-intrinsics/round.js +4 -0
- package/mac-agent/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/mac-agent/node_modules/math-intrinsics/sign.js +11 -0
- package/mac-agent/node_modules/math-intrinsics/test/index.js +192 -0
- package/mac-agent/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/mac-agent/node_modules/mime-db/HISTORY.md +507 -0
- package/mac-agent/node_modules/mime-db/LICENSE +23 -0
- package/mac-agent/node_modules/mime-db/README.md +100 -0
- package/mac-agent/node_modules/mime-db/db.json +8519 -0
- package/mac-agent/node_modules/mime-db/index.js +12 -0
- package/mac-agent/node_modules/mime-db/package.json +60 -0
- package/mac-agent/node_modules/mime-types/HISTORY.md +397 -0
- package/mac-agent/node_modules/mime-types/LICENSE +23 -0
- package/mac-agent/node_modules/mime-types/README.md +113 -0
- package/mac-agent/node_modules/mime-types/index.js +188 -0
- package/mac-agent/node_modules/mime-types/package.json +44 -0
- package/mac-agent/node_modules/minimatch/LICENSE +15 -0
- package/mac-agent/node_modules/minimatch/README.md +230 -0
- package/mac-agent/node_modules/minimatch/minimatch.js +947 -0
- package/mac-agent/node_modules/minimatch/package.json +33 -0
- package/mac-agent/node_modules/minipass/LICENSE +15 -0
- package/mac-agent/node_modules/minipass/README.md +769 -0
- package/mac-agent/node_modules/minipass/index.d.ts +152 -0
- package/mac-agent/node_modules/minipass/index.js +702 -0
- package/mac-agent/node_modules/minipass/index.mjs +702 -0
- package/mac-agent/node_modules/minipass/package.json +76 -0
- package/mac-agent/node_modules/minizlib/LICENSE +26 -0
- package/mac-agent/node_modules/minizlib/README.md +60 -0
- package/mac-agent/node_modules/minizlib/constants.js +115 -0
- package/mac-agent/node_modules/minizlib/index.js +348 -0
- package/mac-agent/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/mac-agent/node_modules/minizlib/node_modules/minipass/README.md +728 -0
- package/mac-agent/node_modules/minizlib/node_modules/minipass/index.d.ts +155 -0
- package/mac-agent/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/mac-agent/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- package/mac-agent/node_modules/minizlib/package.json +42 -0
- package/mac-agent/node_modules/mkdirp/CHANGELOG.md +15 -0
- package/mac-agent/node_modules/mkdirp/LICENSE +21 -0
- package/mac-agent/node_modules/mkdirp/bin/cmd.js +68 -0
- package/mac-agent/node_modules/mkdirp/index.js +31 -0
- package/mac-agent/node_modules/mkdirp/lib/find-made.js +29 -0
- package/mac-agent/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/mac-agent/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/mac-agent/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/mac-agent/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/mac-agent/node_modules/mkdirp/lib/use-native.js +10 -0
- package/mac-agent/node_modules/mkdirp/package.json +44 -0
- package/mac-agent/node_modules/mkdirp/readme.markdown +266 -0
- package/mac-agent/node_modules/ms/index.js +162 -0
- package/mac-agent/node_modules/ms/license.md +21 -0
- package/mac-agent/node_modules/ms/package.json +38 -0
- package/mac-agent/node_modules/ms/readme.md +59 -0
- package/mac-agent/node_modules/nan/.github/workflows/ci.yml +52 -0
- package/mac-agent/node_modules/nan/CHANGELOG.md +577 -0
- package/mac-agent/node_modules/nan/CMakeLists.txt +138 -0
- package/mac-agent/node_modules/nan/LICENSE.md +9 -0
- package/mac-agent/node_modules/nan/README.md +455 -0
- package/mac-agent/node_modules/nan/doc/asyncworker.md +146 -0
- package/mac-agent/node_modules/nan/doc/buffers.md +54 -0
- package/mac-agent/node_modules/nan/doc/callback.md +76 -0
- package/mac-agent/node_modules/nan/doc/converters.md +41 -0
- package/mac-agent/node_modules/nan/doc/errors.md +226 -0
- package/mac-agent/node_modules/nan/doc/json.md +62 -0
- package/mac-agent/node_modules/nan/doc/maybe_types.md +583 -0
- package/mac-agent/node_modules/nan/doc/methods.md +672 -0
- package/mac-agent/node_modules/nan/doc/new.md +147 -0
- package/mac-agent/node_modules/nan/doc/node_misc.md +123 -0
- package/mac-agent/node_modules/nan/doc/object_wrappers.md +263 -0
- package/mac-agent/node_modules/nan/doc/persistent.md +296 -0
- package/mac-agent/node_modules/nan/doc/scopes.md +73 -0
- package/mac-agent/node_modules/nan/doc/script.md +58 -0
- package/mac-agent/node_modules/nan/doc/string_bytes.md +62 -0
- package/mac-agent/node_modules/nan/doc/v8_internals.md +199 -0
- package/mac-agent/node_modules/nan/doc/v8_misc.md +85 -0
- package/mac-agent/node_modules/nan/include_dirs.js +1 -0
- package/mac-agent/node_modules/nan/nan.h +3049 -0
- package/mac-agent/node_modules/nan/nan_callbacks.h +128 -0
- package/mac-agent/node_modules/nan/nan_callbacks_12_inl.h +676 -0
- package/mac-agent/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/mac-agent/node_modules/nan/nan_converters.h +72 -0
- package/mac-agent/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/mac-agent/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/mac-agent/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/mac-agent/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/mac-agent/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/mac-agent/node_modules/nan/nan_json.h +166 -0
- package/mac-agent/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/mac-agent/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/mac-agent/node_modules/nan/nan_new.h +340 -0
- package/mac-agent/node_modules/nan/nan_object_wrap.h +156 -0
- package/mac-agent/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/mac-agent/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/mac-agent/node_modules/nan/nan_private.h +73 -0
- package/mac-agent/node_modules/nan/nan_scriptorigin.h +95 -0
- package/mac-agent/node_modules/nan/nan_string_bytes.h +305 -0
- package/mac-agent/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/mac-agent/node_modules/nan/nan_weak.h +437 -0
- package/mac-agent/node_modules/nan/package.json +38 -0
- package/mac-agent/node_modules/nan/tools/1to2.js +412 -0
- package/mac-agent/node_modules/nan/tools/README.md +14 -0
- package/mac-agent/node_modules/nan/tools/package.json +19 -0
- package/mac-agent/node_modules/node-addon-api/.editorconfig +8 -0
- package/mac-agent/node_modules/node-addon-api/.travis.yml +65 -0
- package/mac-agent/node_modules/node-addon-api/CHANGELOG.md +325 -0
- package/mac-agent/node_modules/node-addon-api/CODE_OF_CONDUCT.md +4 -0
- package/mac-agent/node_modules/node-addon-api/CONTRIBUTING.md +66 -0
- package/mac-agent/node_modules/node-addon-api/LICENSE.md +13 -0
- package/mac-agent/node_modules/node-addon-api/README.md +200 -0
- package/mac-agent/node_modules/node-addon-api/appveyor.yml +48 -0
- package/mac-agent/node_modules/node-addon-api/doc/Doxyfile +2450 -0
- package/mac-agent/node_modules/node-addon-api/doc/array_buffer.md +129 -0
- package/mac-agent/node_modules/node-addon-api/doc/async_context.md +76 -0
- package/mac-agent/node_modules/node-addon-api/doc/async_operations.md +31 -0
- package/mac-agent/node_modules/node-addon-api/doc/async_worker.md +397 -0
- package/mac-agent/node_modules/node-addon-api/doc/basic_types.md +415 -0
- package/mac-agent/node_modules/node-addon-api/doc/bigint.md +92 -0
- package/mac-agent/node_modules/node-addon-api/doc/boolean.md +64 -0
- package/mac-agent/node_modules/node-addon-api/doc/buffer.md +140 -0
- package/mac-agent/node_modules/node-addon-api/doc/callback_scope.md +54 -0
- package/mac-agent/node_modules/node-addon-api/doc/callbackinfo.md +97 -0
- package/mac-agent/node_modules/node-addon-api/doc/checker-tool.md +32 -0
- package/mac-agent/node_modules/node-addon-api/doc/class_property_descriptor.md +118 -0
- package/mac-agent/node_modules/node-addon-api/doc/cmake-js.md +19 -0
- package/mac-agent/node_modules/node-addon-api/doc/conversion-tool.md +28 -0
- package/mac-agent/node_modules/node-addon-api/doc/creating_a_release.md +62 -0
- package/mac-agent/node_modules/node-addon-api/doc/dataview.md +244 -0
- package/mac-agent/node_modules/node-addon-api/doc/env.md +63 -0
- package/mac-agent/node_modules/node-addon-api/doc/error.md +115 -0
- package/mac-agent/node_modules/node-addon-api/doc/error_handling.md +186 -0
- package/mac-agent/node_modules/node-addon-api/doc/escapable_handle_scope.md +82 -0
- package/mac-agent/node_modules/node-addon-api/doc/external.md +59 -0
- package/mac-agent/node_modules/node-addon-api/doc/function.md +294 -0
- package/mac-agent/node_modules/node-addon-api/doc/function_reference.md +238 -0
- package/mac-agent/node_modules/node-addon-api/doc/generator.md +13 -0
- package/mac-agent/node_modules/node-addon-api/doc/handle_scope.md +65 -0
- package/mac-agent/node_modules/node-addon-api/doc/memory_management.md +27 -0
- package/mac-agent/node_modules/node-addon-api/doc/node-gyp.md +82 -0
- package/mac-agent/node_modules/node-addon-api/doc/number.md +163 -0
- package/mac-agent/node_modules/node-addon-api/doc/object.md +202 -0
- package/mac-agent/node_modules/node-addon-api/doc/object_lifetime_management.md +83 -0
- package/mac-agent/node_modules/node-addon-api/doc/object_reference.md +117 -0
- package/mac-agent/node_modules/node-addon-api/doc/object_wrap.md +546 -0
- package/mac-agent/node_modules/node-addon-api/doc/prebuild_tools.md +16 -0
- package/mac-agent/node_modules/node-addon-api/doc/promises.md +74 -0
- package/mac-agent/node_modules/node-addon-api/doc/property_descriptor.md +231 -0
- package/mac-agent/node_modules/node-addon-api/doc/range_error.md +59 -0
- package/mac-agent/node_modules/node-addon-api/doc/reference.md +111 -0
- package/mac-agent/node_modules/node-addon-api/doc/setup.md +82 -0
- package/mac-agent/node_modules/node-addon-api/doc/string.md +89 -0
- package/mac-agent/node_modules/node-addon-api/doc/symbol.md +44 -0
- package/mac-agent/node_modules/node-addon-api/doc/threadsafe_function.md +303 -0
- package/mac-agent/node_modules/node-addon-api/doc/type_error.md +59 -0
- package/mac-agent/node_modules/node-addon-api/doc/typed_array.md +74 -0
- package/mac-agent/node_modules/node-addon-api/doc/typed_array_of.md +133 -0
- package/mac-agent/node_modules/node-addon-api/doc/value.md +269 -0
- package/mac-agent/node_modules/node-addon-api/doc/version_management.md +43 -0
- package/mac-agent/node_modules/node-addon-api/doc/working_with_javascript_values.md +14 -0
- package/mac-agent/node_modules/node-addon-api/external-napi/node_api.h +7 -0
- package/mac-agent/node_modules/node-addon-api/index.js +45 -0
- package/mac-agent/node_modules/node-addon-api/napi-inl.deprecated.h +192 -0
- package/mac-agent/node_modules/node-addon-api/napi-inl.h +4097 -0
- package/mac-agent/node_modules/node-addon-api/napi.h +2053 -0
- package/mac-agent/node_modules/node-addon-api/package.json +79 -0
- package/mac-agent/node_modules/node-addon-api/src/node_api.cc +3655 -0
- package/mac-agent/node_modules/node-addon-api/src/node_api.gyp +21 -0
- package/mac-agent/node_modules/node-addon-api/src/node_api.h +588 -0
- package/mac-agent/node_modules/node-addon-api/src/node_api_types.h +115 -0
- package/mac-agent/node_modules/node-addon-api/src/node_internals.cc +142 -0
- package/mac-agent/node_modules/node-addon-api/src/node_internals.h +157 -0
- package/mac-agent/node_modules/node-addon-api/src/nothing.c +0 -0
- package/mac-agent/node_modules/node-addon-api/src/util-inl.h +38 -0
- package/mac-agent/node_modules/node-addon-api/src/util.h +7 -0
- package/mac-agent/node_modules/node-addon-api/tools/README.md +67 -0
- package/mac-agent/node_modules/node-addon-api/tools/check-napi.js +100 -0
- package/mac-agent/node_modules/node-addon-api/tools/conversion.js +313 -0
- package/mac-agent/node_modules/node-cmake/.jshintrc +20 -0
- package/mac-agent/node_modules/node-cmake/LICENSE.txt +15 -0
- package/mac-agent/node_modules/node-cmake/NodeJS.cmake +637 -0
- package/mac-agent/node_modules/node-cmake/README.md +93 -0
- package/mac-agent/node_modules/node-cmake/docs/Nan.md +9 -0
- package/mac-agent/node_modules/node-cmake/docs/NcmakeManual.md +83 -0
- package/mac-agent/node_modules/node-cmake/docs/NodeJSCmakeManual.md +107 -0
- package/mac-agent/node_modules/node-cmake/example/CMakeLists.txt +8 -0
- package/mac-agent/node_modules/node-cmake/example/README.md +28 -0
- package/mac-agent/node_modules/node-cmake/example/index.js +2 -0
- package/mac-agent/node_modules/node-cmake/example/package.json +20 -0
- package/mac-agent/node_modules/node-cmake/example/src/hello.cc +16 -0
- package/mac-agent/node_modules/node-cmake/index.js +44 -0
- package/mac-agent/node_modules/node-cmake/lib/embed.js +17 -0
- package/mac-agent/node_modules/node-cmake/lib/ncmake.js +284 -0
- package/mac-agent/node_modules/node-cmake/package.json +34 -0
- package/mac-agent/node_modules/node-cmake/src/win_delay_load_hook.c +68 -0
- package/mac-agent/node_modules/node-fetch/LICENSE.md +22 -0
- package/mac-agent/node_modules/node-fetch/README.md +634 -0
- package/mac-agent/node_modules/node-fetch/browser.js +25 -0
- package/mac-agent/node_modules/node-fetch/lib/index.es.js +1777 -0
- package/mac-agent/node_modules/node-fetch/lib/index.js +1787 -0
- package/mac-agent/node_modules/node-fetch/lib/index.mjs +1775 -0
- package/mac-agent/node_modules/node-fetch/package.json +89 -0
- package/mac-agent/node_modules/node-pty/LICENSE +69 -0
- package/mac-agent/node_modules/node-pty/README.md +163 -0
- package/mac-agent/node_modules/node-pty/binding.gyp +117 -0
- package/mac-agent/node_modules/node-pty/build/Makefile +352 -0
- package/mac-agent/node_modules/node-pty/build/Release/pty.node +0 -0
- package/mac-agent/node_modules/node-pty/build/Release/spawn-helper +0 -0
- package/mac-agent/node_modules/node-pty/build/binding.Makefile +6 -0
- package/mac-agent/node_modules/node-pty/build/gyp-mac-tool +768 -0
- package/mac-agent/node_modules/node-pty/build/pty.target.mk +183 -0
- package/mac-agent/node_modules/node-pty/build/spawn-helper.target.mk +172 -0
- package/mac-agent/node_modules/node-pty/deps/.editorconfig +2 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/.drone.yml +17 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/.gitattributes +19 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/LICENSE +21 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/Makefile +166 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/README.md +151 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/RELEASES.md +280 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/VERSION.txt +1 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/configure +167 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/BufferResizeTests.cc +90 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ChangeScreenBuffer.cc +53 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ClearConsole.cc +72 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConinMode.cc +117 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConinMode.ps1 +116 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ConoutMode.cc +113 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/DebugClient.py +42 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/DebugServer.py +63 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/DumpLines.py +5 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/EnableExtendedFlags.txt +46 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Consolas.txt +528 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP437-Lucida.txt +633 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP932.txt +630 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP936.txt +630 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP949.txt +630 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/CP950.txt +630 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/MinimumWindowWidths.txt +16 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Results.txt +4 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Font-Report-June2016/Windows10SetFontBugginess.txt +144 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/FontSurvey.cc +100 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/FormatChar.h +21 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/FreezePerfTest.cc +62 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetCh.cc +20 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetConsolePos.cc +41 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/GetFont.cc +261 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/IdentifyConsoleWindow.ps1 +51 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/IsNewConsole.cc +87 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/MouseInputNotes.txt +90 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/MoveConsoleWindow.cc +34 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Notes.txt +219 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/OSVersion.cc +27 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferFreezeInactive.cc +101 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest.cc +671 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ScreenBufferTest2.cc +151 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/SelectAllTest.cc +45 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetBufferSize.cc +32 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetCursorPos.cc +10 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetFont.cc +145 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/SetWindowRect.cc +36 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ShowArgv.cc +12 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/ShowConsoleInput.cc +40 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Spew.py +5 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/TestUtil.cc +172 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeDoubleWidthTest.cc +102 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest1.cc +246 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnicodeWideTest2.cc +130 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/UnixEcho.cc +89 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Utf16Echo.cc +46 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/VeryLargeRead.cc +122 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/VkEscapeTest.cc +56 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10ResizeWhileFrozen.cc +52 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10WrapTest1.cc +57 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win10WrapTest2.cc +30 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Echo1.cc +26 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Echo2.cc +19 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test1.cc +46 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test2.cc +70 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Test3.cc +78 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/Win32Write1.cc +44 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/WindowsBugCrashReader.cc +27 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/WriteConsole.cc +106 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/build32.sh +9 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/build64.sh +9 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/color-test.sh +212 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/font-notes.txt +300 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/misc/winbug-15048.cc +201 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/ship/build-pty4j-libpty.bat +36 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/ship/common_ship.py +53 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/ship/make_msvc_package.py +165 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/ship/ship.py +108 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Agent.cc +605 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Agent.h +103 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.cc +84 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/AgentCreateDesktop.h +28 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.cc +632 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleFont.h +28 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.cc +852 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInput.h +109 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.cc +121 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleInputReencoding.h +36 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.cc +152 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/ConsoleLine.h +41 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Coord.h +87 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.cc +239 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DebugShowInput.h +32 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.cc +422 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DefaultInputMap.h +28 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/DsrSender.h +30 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/EventLoop.cc +99 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/EventLoop.h +47 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/InputMap.cc +246 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/InputMap.h +114 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.cc +71 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/LargeConsoleRead.h +68 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.cc +378 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/NamedPipe.h +125 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Scraper.cc +699 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Scraper.h +103 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/SimplePool.h +75 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/SmallRect.h +143 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Terminal.cc +535 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Terminal.h +69 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncoding.h +157 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/UnicodeEncodingTest.cc +189 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32Console.cc +107 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32Console.h +67 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.cc +193 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/Win32ConsoleBuffer.h +99 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/main.cc +114 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/agent/subdir.mk +61 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/configurations.gypi +60 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/debugserver/DebugServer.cc +117 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/debugserver/subdir.mk +41 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/include/winpty.h +242 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/include/winpty_constants.h +131 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.cc +75 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/AgentLocation.h +28 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/LibWinptyException.h +54 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/WinptyInternal.h +72 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/subdir.mk +46 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/libwinpty/winpty.cc +970 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/AgentMsg.h +38 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.cc +122 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/BackgroundDesktop.h +73 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Buffer.cc +103 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Buffer.h +102 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/DebugClient.cc +187 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/DebugClient.h +38 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GenRandom.cc +138 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GenRandom.h +55 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/GetCommitHash.bat +13 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/Mutex.h +54 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OsModule.h +63 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.cc +36 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/OwnedHandle.h +45 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/PrecompiledHeader.h +43 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringBuilder.h +227 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringBuilderTest.cc +114 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringUtil.cc +55 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/StringUtil.h +80 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/TimeMeasurement.h +63 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/UnixCtrlChars.h +45 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/UpdateGenVersion.bat +20 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.cc +460 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsSecurity.h +104 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.cc +252 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WindowsVersion.h +29 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.cc +55 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyAssert.h +64 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyException.cc +57 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyException.h +43 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.cc +42 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/WinptyVersion.h +27 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/shared/winpty_snprintf.h +99 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/subdir.mk +5 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/tests/subdir.mk +28 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/tests/trivial_test.cc +158 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.cc +114 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/InputHandler.h +56 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.cc +80 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/OutputHandler.h +53 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.cc +86 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/Util.h +31 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.cc +70 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/WakeupFd.h +42 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/main.cc +729 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/unix-adapter/subdir.mk +41 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/src/winpty.gyp +206 -0
- package/mac-agent/node_modules/node-pty/deps/winpty/vcbuild.bat +83 -0
- package/mac-agent/node_modules/node-pty/lib/conpty_console_list_agent.js +20 -0
- package/mac-agent/node_modules/node-pty/lib/conpty_console_list_agent.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/eventEmitter2.js +47 -0
- package/mac-agent/node_modules/node-pty/lib/eventEmitter2.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/eventEmitter2.test.js +30 -0
- package/mac-agent/node_modules/node-pty/lib/eventEmitter2.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/index.js +51 -0
- package/mac-agent/node_modules/node-pty/lib/index.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/interfaces.js +7 -0
- package/mac-agent/node_modules/node-pty/lib/interfaces.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/shared/conout.js +11 -0
- package/mac-agent/node_modules/node-pty/lib/shared/conout.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/terminal.js +190 -0
- package/mac-agent/node_modules/node-pty/lib/terminal.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/terminal.test.js +139 -0
- package/mac-agent/node_modules/node-pty/lib/terminal.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/testUtils.test.js +28 -0
- package/mac-agent/node_modules/node-pty/lib/testUtils.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/types.js +7 -0
- package/mac-agent/node_modules/node-pty/lib/types.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/unixTerminal.js +304 -0
- package/mac-agent/node_modules/node-pty/lib/unixTerminal.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/unixTerminal.test.js +330 -0
- package/mac-agent/node_modules/node-pty/lib/unixTerminal.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/utils.js +17 -0
- package/mac-agent/node_modules/node-pty/lib/utils.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/windowsConoutConnection.js +122 -0
- package/mac-agent/node_modules/node-pty/lib/windowsConoutConnection.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.js +324 -0
- package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.test.js +90 -0
- package/mac-agent/node_modules/node-pty/lib/windowsPtyAgent.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/windowsTerminal.js +201 -0
- package/mac-agent/node_modules/node-pty/lib/windowsTerminal.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/windowsTerminal.test.js +203 -0
- package/mac-agent/node_modules/node-pty/lib/windowsTerminal.test.js.map +1 -0
- package/mac-agent/node_modules/node-pty/lib/worker/conoutSocketWorker.js +22 -0
- package/mac-agent/node_modules/node-pty/lib/worker/conoutSocketWorker.js.map +1 -0
- package/mac-agent/node_modules/node-pty/package.json +59 -0
- package/mac-agent/node_modules/node-pty/scripts/post-install.js +42 -0
- package/mac-agent/node_modules/node-pty/scripts/publish.js +62 -0
- package/mac-agent/node_modules/node-pty/src/conpty_console_list_agent.ts +19 -0
- package/mac-agent/node_modules/node-pty/src/eventEmitter2.test.ts +30 -0
- package/mac-agent/node_modules/node-pty/src/eventEmitter2.ts +48 -0
- package/mac-agent/node_modules/node-pty/src/index.ts +51 -0
- package/mac-agent/node_modules/node-pty/src/interfaces.ts +129 -0
- package/mac-agent/node_modules/node-pty/src/native.d.ts +56 -0
- package/mac-agent/node_modules/node-pty/src/shared/conout.ts +15 -0
- package/mac-agent/node_modules/node-pty/src/terminal.test.ts +119 -0
- package/mac-agent/node_modules/node-pty/src/terminal.ts +211 -0
- package/mac-agent/node_modules/node-pty/src/testUtils.test.ts +23 -0
- package/mac-agent/node_modules/node-pty/src/tsconfig.json +22 -0
- package/mac-agent/node_modules/node-pty/src/types.ts +15 -0
- package/mac-agent/node_modules/node-pty/src/unix/pty.cc +826 -0
- package/mac-agent/node_modules/node-pty/src/unix/spawn-helper.cc +23 -0
- package/mac-agent/node_modules/node-pty/src/unixTerminal.test.ts +335 -0
- package/mac-agent/node_modules/node-pty/src/unixTerminal.ts +320 -0
- package/mac-agent/node_modules/node-pty/src/utils.ts +9 -0
- package/mac-agent/node_modules/node-pty/src/win/conpty.cc +498 -0
- package/mac-agent/node_modules/node-pty/src/win/conpty_console_list.cc +43 -0
- package/mac-agent/node_modules/node-pty/src/win/path_util.cc +73 -0
- package/mac-agent/node_modules/node-pty/src/win/path_util.h +22 -0
- package/mac-agent/node_modules/node-pty/src/win/winpty.cc +312 -0
- package/mac-agent/node_modules/node-pty/src/windowsConoutConnection.ts +79 -0
- package/mac-agent/node_modules/node-pty/src/windowsPtyAgent.test.ts +94 -0
- package/mac-agent/node_modules/node-pty/src/windowsPtyAgent.ts +323 -0
- package/mac-agent/node_modules/node-pty/src/windowsTerminal.test.ts +214 -0
- package/mac-agent/node_modules/node-pty/src/windowsTerminal.ts +208 -0
- package/mac-agent/node_modules/node-pty/src/worker/conoutSocketWorker.ts +22 -0
- package/mac-agent/node_modules/node-pty/typings/node-pty.d.ts +203 -0
- package/mac-agent/node_modules/nodemon/.prettierrc.json +3 -0
- package/mac-agent/node_modules/nodemon/LICENSE +21 -0
- package/mac-agent/node_modules/nodemon/README.md +441 -0
- package/mac-agent/node_modules/nodemon/bin/nodemon.js +16 -0
- package/mac-agent/node_modules/nodemon/bin/windows-kill.exe +0 -0
- package/mac-agent/node_modules/nodemon/doc/cli/authors.txt +8 -0
- package/mac-agent/node_modules/nodemon/doc/cli/config.txt +44 -0
- package/mac-agent/node_modules/nodemon/doc/cli/help.txt +29 -0
- package/mac-agent/node_modules/nodemon/doc/cli/logo.txt +20 -0
- package/mac-agent/node_modules/nodemon/doc/cli/options.txt +36 -0
- package/mac-agent/node_modules/nodemon/doc/cli/topics.txt +8 -0
- package/mac-agent/node_modules/nodemon/doc/cli/usage.txt +3 -0
- package/mac-agent/node_modules/nodemon/doc/cli/whoami.txt +9 -0
- package/mac-agent/node_modules/nodemon/index.d.ts +125 -0
- package/mac-agent/node_modules/nodemon/jsconfig.json +7 -0
- package/mac-agent/node_modules/nodemon/lib/cli/index.js +49 -0
- package/mac-agent/node_modules/nodemon/lib/cli/parse.js +230 -0
- package/mac-agent/node_modules/nodemon/lib/config/command.js +43 -0
- package/mac-agent/node_modules/nodemon/lib/config/defaults.js +34 -0
- package/mac-agent/node_modules/nodemon/lib/config/exec.js +234 -0
- package/mac-agent/node_modules/nodemon/lib/config/index.js +93 -0
- package/mac-agent/node_modules/nodemon/lib/config/load.js +225 -0
- package/mac-agent/node_modules/nodemon/lib/help/index.js +27 -0
- package/mac-agent/node_modules/nodemon/lib/index.js +1 -0
- package/mac-agent/node_modules/nodemon/lib/monitor/index.js +4 -0
- package/mac-agent/node_modules/nodemon/lib/monitor/match.js +287 -0
- package/mac-agent/node_modules/nodemon/lib/monitor/run.js +562 -0
- package/mac-agent/node_modules/nodemon/lib/monitor/signals.js +34 -0
- package/mac-agent/node_modules/nodemon/lib/monitor/watch.js +244 -0
- package/mac-agent/node_modules/nodemon/lib/nodemon.js +317 -0
- package/mac-agent/node_modules/nodemon/lib/rules/add.js +89 -0
- package/mac-agent/node_modules/nodemon/lib/rules/index.js +53 -0
- package/mac-agent/node_modules/nodemon/lib/rules/parse.js +43 -0
- package/mac-agent/node_modules/nodemon/lib/spawn.js +74 -0
- package/mac-agent/node_modules/nodemon/lib/utils/bus.js +44 -0
- package/mac-agent/node_modules/nodemon/lib/utils/clone.js +40 -0
- package/mac-agent/node_modules/nodemon/lib/utils/colour.js +26 -0
- package/mac-agent/node_modules/nodemon/lib/utils/index.js +103 -0
- package/mac-agent/node_modules/nodemon/lib/utils/log.js +82 -0
- package/mac-agent/node_modules/nodemon/lib/utils/merge.js +47 -0
- package/mac-agent/node_modules/nodemon/lib/version.js +100 -0
- package/mac-agent/node_modules/nodemon/package.json +75 -0
- package/mac-agent/node_modules/nopt/CHANGELOG.md +58 -0
- package/mac-agent/node_modules/nopt/LICENSE +15 -0
- package/mac-agent/node_modules/nopt/README.md +213 -0
- package/mac-agent/node_modules/nopt/bin/nopt.js +54 -0
- package/mac-agent/node_modules/nopt/lib/nopt.js +441 -0
- package/mac-agent/node_modules/nopt/package.json +34 -0
- package/mac-agent/node_modules/normalize-package-data/AUTHORS +4 -0
- package/mac-agent/node_modules/normalize-package-data/LICENSE +30 -0
- package/mac-agent/node_modules/normalize-package-data/README.md +106 -0
- package/mac-agent/node_modules/normalize-package-data/lib/extract_description.js +14 -0
- package/mac-agent/node_modules/normalize-package-data/lib/fixer.js +418 -0
- package/mac-agent/node_modules/normalize-package-data/lib/make_warning.js +23 -0
- package/mac-agent/node_modules/normalize-package-data/lib/normalize.js +39 -0
- package/mac-agent/node_modules/normalize-package-data/lib/safe_format.js +9 -0
- package/mac-agent/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/mac-agent/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/LICENSE +15 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/README.md +412 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/bin/semver +160 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/package.json +38 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/range.bnf +16 -0
- package/mac-agent/node_modules/normalize-package-data/node_modules/semver/semver.js +1525 -0
- package/mac-agent/node_modules/normalize-package-data/package.json +31 -0
- package/mac-agent/node_modules/normalize-path/LICENSE +21 -0
- package/mac-agent/node_modules/normalize-path/README.md +127 -0
- package/mac-agent/node_modules/normalize-path/index.js +35 -0
- package/mac-agent/node_modules/normalize-path/package.json +77 -0
- package/mac-agent/node_modules/npmlog/LICENSE +15 -0
- package/mac-agent/node_modules/npmlog/README.md +216 -0
- package/mac-agent/node_modules/npmlog/log.js +403 -0
- package/mac-agent/node_modules/npmlog/package.json +33 -0
- package/mac-agent/node_modules/number-is-nan/index.js +4 -0
- package/mac-agent/node_modules/number-is-nan/license +21 -0
- package/mac-agent/node_modules/number-is-nan/package.json +35 -0
- package/mac-agent/node_modules/number-is-nan/readme.md +28 -0
- package/mac-agent/node_modules/object-assign/index.js +90 -0
- package/mac-agent/node_modules/object-assign/license +21 -0
- package/mac-agent/node_modules/object-assign/package.json +42 -0
- package/mac-agent/node_modules/object-assign/readme.md +61 -0
- package/mac-agent/node_modules/object-keys/.editorconfig +13 -0
- package/mac-agent/node_modules/object-keys/.eslintrc +17 -0
- package/mac-agent/node_modules/object-keys/.travis.yml +277 -0
- package/mac-agent/node_modules/object-keys/CHANGELOG.md +232 -0
- package/mac-agent/node_modules/object-keys/LICENSE +21 -0
- package/mac-agent/node_modules/object-keys/README.md +76 -0
- package/mac-agent/node_modules/object-keys/implementation.js +122 -0
- package/mac-agent/node_modules/object-keys/index.js +32 -0
- package/mac-agent/node_modules/object-keys/isArguments.js +17 -0
- package/mac-agent/node_modules/object-keys/package.json +88 -0
- package/mac-agent/node_modules/object-keys/test/index.js +5 -0
- package/mac-agent/node_modules/object.assign/.editorconfig +20 -0
- package/mac-agent/node_modules/object.assign/.eslintrc +28 -0
- package/mac-agent/node_modules/object.assign/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/object.assign/.nycrc +9 -0
- package/mac-agent/node_modules/object.assign/CHANGELOG.md +246 -0
- package/mac-agent/node_modules/object.assign/LICENSE +21 -0
- package/mac-agent/node_modules/object.assign/README.md +136 -0
- package/mac-agent/node_modules/object.assign/auto.js +3 -0
- package/mac-agent/node_modules/object.assign/dist/browser.js +1304 -0
- package/mac-agent/node_modules/object.assign/hasSymbols.js +43 -0
- package/mac-agent/node_modules/object.assign/implementation.js +46 -0
- package/mac-agent/node_modules/object.assign/index.js +22 -0
- package/mac-agent/node_modules/object.assign/package.json +96 -0
- package/mac-agent/node_modules/object.assign/polyfill.js +55 -0
- package/mac-agent/node_modules/object.assign/shim.js +14 -0
- package/mac-agent/node_modules/object.assign/test/implementation.js +19 -0
- package/mac-agent/node_modules/object.assign/test/index.js +17 -0
- package/mac-agent/node_modules/object.assign/test/native.js +49 -0
- package/mac-agent/node_modules/object.assign/test/ses-compat.js +12 -0
- package/mac-agent/node_modules/object.assign/test/shimmed.js +52 -0
- package/mac-agent/node_modules/object.assign/test/tests.js +232 -0
- package/mac-agent/node_modules/once/LICENSE +15 -0
- package/mac-agent/node_modules/once/README.md +79 -0
- package/mac-agent/node_modules/once/once.js +42 -0
- package/mac-agent/node_modules/once/package.json +33 -0
- package/mac-agent/node_modules/one-time/LICENSE +22 -0
- package/mac-agent/node_modules/one-time/README.md +88 -0
- package/mac-agent/node_modules/one-time/async.js +43 -0
- package/mac-agent/node_modules/one-time/index.js +42 -0
- package/mac-agent/node_modules/one-time/package.json +34 -0
- package/mac-agent/node_modules/os-locale/index.js +127 -0
- package/mac-agent/node_modules/os-locale/license +21 -0
- package/mac-agent/node_modules/os-locale/package.json +43 -0
- package/mac-agent/node_modules/os-locale/readme.md +47 -0
- package/mac-agent/node_modules/parse-json/index.js +35 -0
- package/mac-agent/node_modules/parse-json/license +21 -0
- package/mac-agent/node_modules/parse-json/package.json +46 -0
- package/mac-agent/node_modules/parse-json/readme.md +83 -0
- package/mac-agent/node_modules/parse-json/vendor/parse.js +752 -0
- package/mac-agent/node_modules/parse-json/vendor/unicode.js +71 -0
- package/mac-agent/node_modules/path-exists/index.js +24 -0
- package/mac-agent/node_modules/path-exists/license +21 -0
- package/mac-agent/node_modules/path-exists/package.json +40 -0
- package/mac-agent/node_modules/path-exists/readme.md +45 -0
- package/mac-agent/node_modules/path-is-absolute/index.js +20 -0
- package/mac-agent/node_modules/path-is-absolute/license +21 -0
- package/mac-agent/node_modules/path-is-absolute/package.json +43 -0
- package/mac-agent/node_modules/path-is-absolute/readme.md +59 -0
- package/mac-agent/node_modules/path-parse/LICENSE +21 -0
- package/mac-agent/node_modules/path-parse/README.md +42 -0
- package/mac-agent/node_modules/path-parse/index.js +75 -0
- package/mac-agent/node_modules/path-parse/package.json +33 -0
- package/mac-agent/node_modules/path-type/index.js +29 -0
- package/mac-agent/node_modules/path-type/license +21 -0
- package/mac-agent/node_modules/path-type/package.json +52 -0
- package/mac-agent/node_modules/path-type/readme.md +42 -0
- package/mac-agent/node_modules/picomatch/CHANGELOG.md +136 -0
- package/mac-agent/node_modules/picomatch/LICENSE +21 -0
- package/mac-agent/node_modules/picomatch/README.md +708 -0
- package/mac-agent/node_modules/picomatch/index.js +3 -0
- package/mac-agent/node_modules/picomatch/lib/constants.js +179 -0
- package/mac-agent/node_modules/picomatch/lib/parse.js +1091 -0
- package/mac-agent/node_modules/picomatch/lib/picomatch.js +342 -0
- package/mac-agent/node_modules/picomatch/lib/scan.js +391 -0
- package/mac-agent/node_modules/picomatch/lib/utils.js +64 -0
- package/mac-agent/node_modules/picomatch/package.json +81 -0
- package/mac-agent/node_modules/pify/index.js +68 -0
- package/mac-agent/node_modules/pify/license +21 -0
- package/mac-agent/node_modules/pify/package.json +48 -0
- package/mac-agent/node_modules/pify/readme.md +119 -0
- package/mac-agent/node_modules/pinkie/index.js +292 -0
- package/mac-agent/node_modules/pinkie/license +21 -0
- package/mac-agent/node_modules/pinkie/package.json +36 -0
- package/mac-agent/node_modules/pinkie/readme.md +83 -0
- package/mac-agent/node_modules/pinkie-promise/index.js +3 -0
- package/mac-agent/node_modules/pinkie-promise/license +21 -0
- package/mac-agent/node_modules/pinkie-promise/package.json +35 -0
- package/mac-agent/node_modules/pinkie-promise/readme.md +28 -0
- package/mac-agent/node_modules/proxy-from-env/.eslintrc +29 -0
- package/mac-agent/node_modules/proxy-from-env/.travis.yml +10 -0
- package/mac-agent/node_modules/proxy-from-env/LICENSE +20 -0
- package/mac-agent/node_modules/proxy-from-env/README.md +131 -0
- package/mac-agent/node_modules/proxy-from-env/index.js +108 -0
- package/mac-agent/node_modules/proxy-from-env/package.json +34 -0
- package/mac-agent/node_modules/proxy-from-env/test.js +483 -0
- package/mac-agent/node_modules/pstree.remy/.travis.yml +8 -0
- package/mac-agent/node_modules/pstree.remy/LICENSE +7 -0
- package/mac-agent/node_modules/pstree.remy/README.md +26 -0
- package/mac-agent/node_modules/pstree.remy/lib/index.js +37 -0
- package/mac-agent/node_modules/pstree.remy/lib/tree.js +37 -0
- package/mac-agent/node_modules/pstree.remy/lib/utils.js +53 -0
- package/mac-agent/node_modules/pstree.remy/package.json +33 -0
- package/mac-agent/node_modules/pstree.remy/tests/fixtures/index.js +13 -0
- package/mac-agent/node_modules/pstree.remy/tests/fixtures/out1 +10 -0
- package/mac-agent/node_modules/pstree.remy/tests/fixtures/out2 +29 -0
- package/mac-agent/node_modules/pstree.remy/tests/index.test.js +51 -0
- package/mac-agent/node_modules/read-pkg/index.js +48 -0
- package/mac-agent/node_modules/read-pkg/license +21 -0
- package/mac-agent/node_modules/read-pkg/package.json +42 -0
- package/mac-agent/node_modules/read-pkg/readme.md +79 -0
- package/mac-agent/node_modules/read-pkg-up/index.js +31 -0
- package/mac-agent/node_modules/read-pkg-up/license +21 -0
- package/mac-agent/node_modules/read-pkg-up/package.json +59 -0
- package/mac-agent/node_modules/read-pkg-up/readme.md +79 -0
- package/mac-agent/node_modules/readable-stream/CONTRIBUTING.md +38 -0
- package/mac-agent/node_modules/readable-stream/GOVERNANCE.md +136 -0
- package/mac-agent/node_modules/readable-stream/LICENSE +47 -0
- package/mac-agent/node_modules/readable-stream/README.md +106 -0
- package/mac-agent/node_modules/readable-stream/errors-browser.js +127 -0
- package/mac-agent/node_modules/readable-stream/errors.js +116 -0
- package/mac-agent/node_modules/readable-stream/experimentalWarning.js +17 -0
- package/mac-agent/node_modules/readable-stream/lib/_stream_duplex.js +126 -0
- package/mac-agent/node_modules/readable-stream/lib/_stream_passthrough.js +37 -0
- package/mac-agent/node_modules/readable-stream/lib/_stream_readable.js +1027 -0
- package/mac-agent/node_modules/readable-stream/lib/_stream_transform.js +190 -0
- package/mac-agent/node_modules/readable-stream/lib/_stream_writable.js +641 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/async_iterator.js +180 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/buffer_list.js +183 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/destroy.js +96 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +86 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/from-browser.js +3 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/from.js +52 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/pipeline.js +86 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/state.js +22 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
- package/mac-agent/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
- package/mac-agent/node_modules/readable-stream/package.json +68 -0
- package/mac-agent/node_modules/readable-stream/readable-browser.js +9 -0
- package/mac-agent/node_modules/readable-stream/readable.js +16 -0
- package/mac-agent/node_modules/readdirp/LICENSE +21 -0
- package/mac-agent/node_modules/readdirp/README.md +122 -0
- package/mac-agent/node_modules/readdirp/index.d.ts +43 -0
- package/mac-agent/node_modules/readdirp/index.js +287 -0
- package/mac-agent/node_modules/readdirp/package.json +122 -0
- package/mac-agent/node_modules/require-directory/.jshintrc +67 -0
- package/mac-agent/node_modules/require-directory/.travis.yml +3 -0
- package/mac-agent/node_modules/require-directory/LICENSE +22 -0
- package/mac-agent/node_modules/require-directory/README.markdown +184 -0
- package/mac-agent/node_modules/require-directory/index.js +86 -0
- package/mac-agent/node_modules/require-directory/package.json +40 -0
- package/mac-agent/node_modules/require-main-filename/.travis.yml +8 -0
- package/mac-agent/node_modules/require-main-filename/LICENSE.txt +14 -0
- package/mac-agent/node_modules/require-main-filename/README.md +26 -0
- package/mac-agent/node_modules/require-main-filename/index.js +18 -0
- package/mac-agent/node_modules/require-main-filename/package.json +30 -0
- package/mac-agent/node_modules/require-main-filename/test.js +36 -0
- package/mac-agent/node_modules/resolve/.editorconfig +37 -0
- package/mac-agent/node_modules/resolve/.eslintrc +65 -0
- package/mac-agent/node_modules/resolve/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/resolve/LICENSE +21 -0
- package/mac-agent/node_modules/resolve/SECURITY.md +3 -0
- package/mac-agent/node_modules/resolve/async.js +3 -0
- package/mac-agent/node_modules/resolve/bin/resolve +50 -0
- package/mac-agent/node_modules/resolve/example/async.js +5 -0
- package/mac-agent/node_modules/resolve/example/sync.js +3 -0
- package/mac-agent/node_modules/resolve/index.js +6 -0
- package/mac-agent/node_modules/resolve/lib/async.js +329 -0
- package/mac-agent/node_modules/resolve/lib/caller.js +8 -0
- package/mac-agent/node_modules/resolve/lib/core.js +12 -0
- package/mac-agent/node_modules/resolve/lib/core.json +162 -0
- package/mac-agent/node_modules/resolve/lib/homedir.js +24 -0
- package/mac-agent/node_modules/resolve/lib/is-core.js +5 -0
- package/mac-agent/node_modules/resolve/lib/node-modules-paths.js +42 -0
- package/mac-agent/node_modules/resolve/lib/normalize-options.js +10 -0
- package/mac-agent/node_modules/resolve/lib/sync.js +208 -0
- package/mac-agent/node_modules/resolve/package.json +75 -0
- package/mac-agent/node_modules/resolve/readme.markdown +301 -0
- package/mac-agent/node_modules/resolve/sync.js +3 -0
- package/mac-agent/node_modules/resolve/test/core.js +88 -0
- package/mac-agent/node_modules/resolve/test/dotdot/abc/index.js +2 -0
- package/mac-agent/node_modules/resolve/test/dotdot/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/dotdot.js +29 -0
- package/mac-agent/node_modules/resolve/test/faulty_basedir.js +29 -0
- package/mac-agent/node_modules/resolve/test/filter.js +34 -0
- package/mac-agent/node_modules/resolve/test/filter_sync.js +33 -0
- package/mac-agent/node_modules/resolve/test/home_paths.js +127 -0
- package/mac-agent/node_modules/resolve/test/home_paths_sync.js +114 -0
- package/mac-agent/node_modules/resolve/test/mock.js +315 -0
- package/mac-agent/node_modules/resolve/test/mock_sync.js +214 -0
- package/mac-agent/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +1 -0
- package/mac-agent/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +3 -0
- package/mac-agent/node_modules/resolve/test/module_dir.js +56 -0
- package/mac-agent/node_modules/resolve/test/node-modules-paths.js +143 -0
- package/mac-agent/node_modules/resolve/test/node_path/x/aaa/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/node_path/x/ccc/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/node_path/y/bbb/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/node_path/y/ccc/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/node_path.js +70 -0
- package/mac-agent/node_modules/resolve/test/nonstring.js +9 -0
- package/mac-agent/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
- package/mac-agent/node_modules/resolve/test/pathfilter.js +75 -0
- package/mac-agent/node_modules/resolve/test/precedence/aaa/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/precedence/aaa/main.js +1 -0
- package/mac-agent/node_modules/resolve/test/precedence/aaa.js +1 -0
- package/mac-agent/node_modules/resolve/test/precedence/bbb/main.js +1 -0
- package/mac-agent/node_modules/resolve/test/precedence/bbb.js +1 -0
- package/mac-agent/node_modules/resolve/test/precedence.js +23 -0
- package/mac-agent/node_modules/resolve/test/resolver/baz/doom.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/baz/package.json +4 -0
- package/mac-agent/node_modules/resolve/test/resolver/baz/quux.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/browser_field/package.json +5 -0
- package/mac-agent/node_modules/resolve/test/resolver/cup.coffee +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/dot_main/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/dot_main/package.json +3 -0
- package/mac-agent/node_modules/resolve/test/resolver/dot_slash_main/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/dot_slash_main/package.json +3 -0
- package/mac-agent/node_modules/resolve/test/resolver/false_main/index.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/false_main/package.json +4 -0
- package/mac-agent/node_modules/resolve/test/resolver/foo.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/incorrect_main/index.js +2 -0
- package/mac-agent/node_modules/resolve/test/resolver/incorrect_main/package.json +3 -0
- package/mac-agent/node_modules/resolve/test/resolver/invalid_main/package.json +7 -0
- package/mac-agent/node_modules/resolve/test/resolver/mug.coffee +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/mug.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/lerna.json +6 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/package.json +20 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +35 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +14 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +14 -0
- package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +26 -0
- package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +15 -0
- package/mac-agent/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +12 -0
- package/mac-agent/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/other_path/root.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/quux/foo/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/same_names/foo/index.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/same_names/foo.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
- package/mac-agent/node_modules/resolve/test/resolver/symlinked/package/bar.js +1 -0
- package/mac-agent/node_modules/resolve/test/resolver/symlinked/package/package.json +3 -0
- package/mac-agent/node_modules/resolve/test/resolver/without_basedir/main.js +5 -0
- package/mac-agent/node_modules/resolve/test/resolver.js +597 -0
- package/mac-agent/node_modules/resolve/test/resolver_sync.js +730 -0
- package/mac-agent/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
- package/mac-agent/node_modules/resolve/test/shadowed_core.js +54 -0
- package/mac-agent/node_modules/resolve/test/subdirs.js +13 -0
- package/mac-agent/node_modules/resolve/test/symlinks.js +176 -0
- package/mac-agent/node_modules/rimraf/CHANGELOG.md +65 -0
- package/mac-agent/node_modules/rimraf/LICENSE +15 -0
- package/mac-agent/node_modules/rimraf/README.md +101 -0
- package/mac-agent/node_modules/rimraf/bin.js +68 -0
- package/mac-agent/node_modules/rimraf/package.json +32 -0
- package/mac-agent/node_modules/rimraf/rimraf.js +360 -0
- package/mac-agent/node_modules/safe-buffer/LICENSE +21 -0
- package/mac-agent/node_modules/safe-buffer/README.md +584 -0
- package/mac-agent/node_modules/safe-buffer/index.d.ts +187 -0
- package/mac-agent/node_modules/safe-buffer/index.js +65 -0
- package/mac-agent/node_modules/safe-buffer/package.json +51 -0
- package/mac-agent/node_modules/safe-stable-stringify/LICENSE +21 -0
- package/mac-agent/node_modules/safe-stable-stringify/esm/package.json +4 -0
- package/mac-agent/node_modules/safe-stable-stringify/esm/wrapper.d.ts +4 -0
- package/mac-agent/node_modules/safe-stable-stringify/esm/wrapper.js +6 -0
- package/mac-agent/node_modules/safe-stable-stringify/index.d.ts +22 -0
- package/mac-agent/node_modules/safe-stable-stringify/index.js +625 -0
- package/mac-agent/node_modules/safe-stable-stringify/package.json +65 -0
- package/mac-agent/node_modules/safe-stable-stringify/readme.md +179 -0
- package/mac-agent/node_modules/semver/LICENSE +15 -0
- package/mac-agent/node_modules/semver/README.md +664 -0
- package/mac-agent/node_modules/semver/bin/semver.js +191 -0
- package/mac-agent/node_modules/semver/classes/comparator.js +143 -0
- package/mac-agent/node_modules/semver/classes/index.js +7 -0
- package/mac-agent/node_modules/semver/classes/range.js +556 -0
- package/mac-agent/node_modules/semver/classes/semver.js +319 -0
- package/mac-agent/node_modules/semver/functions/clean.js +8 -0
- package/mac-agent/node_modules/semver/functions/cmp.js +54 -0
- package/mac-agent/node_modules/semver/functions/coerce.js +62 -0
- package/mac-agent/node_modules/semver/functions/compare-build.js +9 -0
- package/mac-agent/node_modules/semver/functions/compare-loose.js +5 -0
- package/mac-agent/node_modules/semver/functions/compare.js +7 -0
- package/mac-agent/node_modules/semver/functions/diff.js +60 -0
- package/mac-agent/node_modules/semver/functions/eq.js +5 -0
- package/mac-agent/node_modules/semver/functions/gt.js +5 -0
- package/mac-agent/node_modules/semver/functions/gte.js +5 -0
- package/mac-agent/node_modules/semver/functions/inc.js +21 -0
- package/mac-agent/node_modules/semver/functions/lt.js +5 -0
- package/mac-agent/node_modules/semver/functions/lte.js +5 -0
- package/mac-agent/node_modules/semver/functions/major.js +5 -0
- package/mac-agent/node_modules/semver/functions/minor.js +5 -0
- package/mac-agent/node_modules/semver/functions/neq.js +5 -0
- package/mac-agent/node_modules/semver/functions/parse.js +18 -0
- package/mac-agent/node_modules/semver/functions/patch.js +5 -0
- package/mac-agent/node_modules/semver/functions/prerelease.js +8 -0
- package/mac-agent/node_modules/semver/functions/rcompare.js +5 -0
- package/mac-agent/node_modules/semver/functions/rsort.js +5 -0
- package/mac-agent/node_modules/semver/functions/satisfies.js +12 -0
- package/mac-agent/node_modules/semver/functions/sort.js +5 -0
- package/mac-agent/node_modules/semver/functions/valid.js +8 -0
- package/mac-agent/node_modules/semver/index.js +91 -0
- package/mac-agent/node_modules/semver/internal/constants.js +37 -0
- package/mac-agent/node_modules/semver/internal/debug.js +11 -0
- package/mac-agent/node_modules/semver/internal/identifiers.js +25 -0
- package/mac-agent/node_modules/semver/internal/lrucache.js +42 -0
- package/mac-agent/node_modules/semver/internal/parse-options.js +17 -0
- package/mac-agent/node_modules/semver/internal/re.js +223 -0
- package/mac-agent/node_modules/semver/package.json +78 -0
- package/mac-agent/node_modules/semver/preload.js +4 -0
- package/mac-agent/node_modules/semver/range.bnf +16 -0
- package/mac-agent/node_modules/semver/ranges/gtr.js +6 -0
- package/mac-agent/node_modules/semver/ranges/intersects.js +9 -0
- package/mac-agent/node_modules/semver/ranges/ltr.js +6 -0
- package/mac-agent/node_modules/semver/ranges/max-satisfying.js +27 -0
- package/mac-agent/node_modules/semver/ranges/min-satisfying.js +26 -0
- package/mac-agent/node_modules/semver/ranges/min-version.js +63 -0
- package/mac-agent/node_modules/semver/ranges/outside.js +82 -0
- package/mac-agent/node_modules/semver/ranges/simplify.js +49 -0
- package/mac-agent/node_modules/semver/ranges/subset.js +249 -0
- package/mac-agent/node_modules/semver/ranges/to-comparators.js +10 -0
- package/mac-agent/node_modules/semver/ranges/valid.js +13 -0
- package/mac-agent/node_modules/set-blocking/CHANGELOG.md +26 -0
- package/mac-agent/node_modules/set-blocking/LICENSE.txt +14 -0
- package/mac-agent/node_modules/set-blocking/README.md +31 -0
- package/mac-agent/node_modules/set-blocking/index.js +7 -0
- package/mac-agent/node_modules/set-blocking/package.json +42 -0
- package/mac-agent/node_modules/set-function-length/.eslintrc +27 -0
- package/mac-agent/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/set-function-length/.nycrc +13 -0
- package/mac-agent/node_modules/set-function-length/CHANGELOG.md +70 -0
- package/mac-agent/node_modules/set-function-length/LICENSE +21 -0
- package/mac-agent/node_modules/set-function-length/README.md +56 -0
- package/mac-agent/node_modules/set-function-length/env.d.ts +9 -0
- package/mac-agent/node_modules/set-function-length/env.js +25 -0
- package/mac-agent/node_modules/set-function-length/index.d.ts +7 -0
- package/mac-agent/node_modules/set-function-length/index.js +42 -0
- package/mac-agent/node_modules/set-function-length/package.json +102 -0
- package/mac-agent/node_modules/set-function-length/tsconfig.json +9 -0
- package/mac-agent/node_modules/signal-exit/LICENSE.txt +16 -0
- package/mac-agent/node_modules/signal-exit/README.md +39 -0
- package/mac-agent/node_modules/signal-exit/index.js +202 -0
- package/mac-agent/node_modules/signal-exit/package.json +38 -0
- package/mac-agent/node_modules/signal-exit/signals.js +53 -0
- package/mac-agent/node_modules/simple-swizzle/LICENSE +21 -0
- package/mac-agent/node_modules/simple-swizzle/README.md +39 -0
- package/mac-agent/node_modules/simple-swizzle/index.js +29 -0
- package/mac-agent/node_modules/simple-swizzle/package.json +36 -0
- package/mac-agent/node_modules/simple-update-notifier/LICENSE +21 -0
- package/mac-agent/node_modules/simple-update-notifier/README.md +82 -0
- package/mac-agent/node_modules/simple-update-notifier/build/index.d.ts +13 -0
- package/mac-agent/node_modules/simple-update-notifier/build/index.js +210 -0
- package/mac-agent/node_modules/simple-update-notifier/package.json +100 -0
- package/mac-agent/node_modules/simple-update-notifier/src/borderedText.ts +12 -0
- package/mac-agent/node_modules/simple-update-notifier/src/cache.spec.ts +17 -0
- package/mac-agent/node_modules/simple-update-notifier/src/cache.ts +44 -0
- package/mac-agent/node_modules/simple-update-notifier/src/getDistVersion.spec.ts +35 -0
- package/mac-agent/node_modules/simple-update-notifier/src/getDistVersion.ts +29 -0
- package/mac-agent/node_modules/simple-update-notifier/src/hasNewVersion.spec.ts +82 -0
- package/mac-agent/node_modules/simple-update-notifier/src/hasNewVersion.ts +40 -0
- package/mac-agent/node_modules/simple-update-notifier/src/index.spec.ts +27 -0
- package/mac-agent/node_modules/simple-update-notifier/src/index.ts +34 -0
- package/mac-agent/node_modules/simple-update-notifier/src/isNpmOrYarn.ts +12 -0
- package/mac-agent/node_modules/simple-update-notifier/src/types.ts +8 -0
- package/mac-agent/node_modules/spdx-correct/LICENSE +202 -0
- package/mac-agent/node_modules/spdx-correct/README.md +22 -0
- package/mac-agent/node_modules/spdx-correct/index.js +386 -0
- package/mac-agent/node_modules/spdx-correct/package.json +32 -0
- package/mac-agent/node_modules/spdx-exceptions/README.md +36 -0
- package/mac-agent/node_modules/spdx-exceptions/deprecated.json +3 -0
- package/mac-agent/node_modules/spdx-exceptions/index.json +68 -0
- package/mac-agent/node_modules/spdx-exceptions/package.json +19 -0
- package/mac-agent/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/mac-agent/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/mac-agent/node_modules/spdx-expression-parse/README.md +91 -0
- package/mac-agent/node_modules/spdx-expression-parse/index.js +8 -0
- package/mac-agent/node_modules/spdx-expression-parse/package.json +39 -0
- package/mac-agent/node_modules/spdx-expression-parse/parse.js +138 -0
- package/mac-agent/node_modules/spdx-expression-parse/scan.js +131 -0
- package/mac-agent/node_modules/spdx-license-ids/README.md +51 -0
- package/mac-agent/node_modules/spdx-license-ids/deprecated.json +28 -0
- package/mac-agent/node_modules/spdx-license-ids/index.json +650 -0
- package/mac-agent/node_modules/spdx-license-ids/package.json +29 -0
- package/mac-agent/node_modules/stack-trace/License +19 -0
- package/mac-agent/node_modules/stack-trace/Makefile +11 -0
- package/mac-agent/node_modules/stack-trace/Readme.md +98 -0
- package/mac-agent/node_modules/stack-trace/lib/stack-trace.js +136 -0
- package/mac-agent/node_modules/stack-trace/package.json +21 -0
- package/mac-agent/node_modules/string-width/index.d.ts +29 -0
- package/mac-agent/node_modules/string-width/index.js +47 -0
- package/mac-agent/node_modules/string-width/license +9 -0
- package/mac-agent/node_modules/string-width/package.json +56 -0
- package/mac-agent/node_modules/string-width/readme.md +50 -0
- package/mac-agent/node_modules/string_decoder/LICENSE +48 -0
- package/mac-agent/node_modules/string_decoder/README.md +47 -0
- package/mac-agent/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/mac-agent/node_modules/string_decoder/package.json +34 -0
- package/mac-agent/node_modules/strip-ansi/index.d.ts +17 -0
- package/mac-agent/node_modules/strip-ansi/index.js +4 -0
- package/mac-agent/node_modules/strip-ansi/license +9 -0
- package/mac-agent/node_modules/strip-ansi/package.json +54 -0
- package/mac-agent/node_modules/strip-ansi/readme.md +46 -0
- package/mac-agent/node_modules/strip-bom/index.js +17 -0
- package/mac-agent/node_modules/strip-bom/license +21 -0
- package/mac-agent/node_modules/strip-bom/package.json +42 -0
- package/mac-agent/node_modules/strip-bom/readme.md +39 -0
- package/mac-agent/node_modules/supports-color/browser.js +5 -0
- package/mac-agent/node_modules/supports-color/index.js +131 -0
- package/mac-agent/node_modules/supports-color/license +9 -0
- package/mac-agent/node_modules/supports-color/package.json +53 -0
- package/mac-agent/node_modules/supports-color/readme.md +66 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
- package/mac-agent/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
- package/mac-agent/node_modules/tar/LICENSE +15 -0
- package/mac-agent/node_modules/tar/README.md +1080 -0
- package/mac-agent/node_modules/tar/index.js +18 -0
- package/mac-agent/node_modules/tar/lib/create.js +111 -0
- package/mac-agent/node_modules/tar/lib/extract.js +113 -0
- package/mac-agent/node_modules/tar/lib/get-write-flag.js +20 -0
- package/mac-agent/node_modules/tar/lib/header.js +304 -0
- package/mac-agent/node_modules/tar/lib/high-level-opt.js +29 -0
- package/mac-agent/node_modules/tar/lib/large-numbers.js +104 -0
- package/mac-agent/node_modules/tar/lib/list.js +139 -0
- package/mac-agent/node_modules/tar/lib/mkdir.js +229 -0
- package/mac-agent/node_modules/tar/lib/mode-fix.js +27 -0
- package/mac-agent/node_modules/tar/lib/normalize-unicode.js +12 -0
- package/mac-agent/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/mac-agent/node_modules/tar/lib/pack.js +432 -0
- package/mac-agent/node_modules/tar/lib/parse.js +552 -0
- package/mac-agent/node_modules/tar/lib/path-reservations.js +156 -0
- package/mac-agent/node_modules/tar/lib/pax.js +150 -0
- package/mac-agent/node_modules/tar/lib/read-entry.js +107 -0
- package/mac-agent/node_modules/tar/lib/replace.js +246 -0
- package/mac-agent/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/mac-agent/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/mac-agent/node_modules/tar/lib/types.js +44 -0
- package/mac-agent/node_modules/tar/lib/unpack.js +923 -0
- package/mac-agent/node_modules/tar/lib/update.js +40 -0
- package/mac-agent/node_modules/tar/lib/warn-mixin.js +24 -0
- package/mac-agent/node_modules/tar/lib/winchars.js +23 -0
- package/mac-agent/node_modules/tar/lib/write-entry.js +546 -0
- package/mac-agent/node_modules/tar/package.json +70 -0
- package/mac-agent/node_modules/text-hex/LICENSE +21 -0
- package/mac-agent/node_modules/text-hex/README.md +20 -0
- package/mac-agent/node_modules/text-hex/index.js +24 -0
- package/mac-agent/node_modules/text-hex/package.json +30 -0
- package/mac-agent/node_modules/text-hex/test.js +11 -0
- package/mac-agent/node_modules/to-regex-range/LICENSE +21 -0
- package/mac-agent/node_modules/to-regex-range/README.md +305 -0
- package/mac-agent/node_modules/to-regex-range/index.js +288 -0
- package/mac-agent/node_modules/to-regex-range/package.json +88 -0
- package/mac-agent/node_modules/touch/LICENSE +15 -0
- package/mac-agent/node_modules/touch/README.md +52 -0
- package/mac-agent/node_modules/touch/bin/nodetouch.js +112 -0
- package/mac-agent/node_modules/touch/index.js +224 -0
- package/mac-agent/node_modules/touch/package.json +25 -0
- package/mac-agent/node_modules/tr46/index.js +193 -0
- package/mac-agent/node_modules/tr46/lib/.gitkeep +0 -0
- package/mac-agent/node_modules/tr46/lib/mappingTable.json +1 -0
- package/mac-agent/node_modules/tr46/package.json +31 -0
- package/mac-agent/node_modules/triple-beam/.nyc_output/c579bf8f-6820-47a5-b2da-a11267eb8435.json +1 -0
- package/mac-agent/node_modules/triple-beam/.nyc_output/processinfo/c579bf8f-6820-47a5-b2da-a11267eb8435.json +1 -0
- package/mac-agent/node_modules/triple-beam/.nyc_output/processinfo/index.json +1 -0
- package/mac-agent/node_modules/triple-beam/CHANGELOG.md +22 -0
- package/mac-agent/node_modules/triple-beam/LICENSE +21 -0
- package/mac-agent/node_modules/triple-beam/README.md +34 -0
- package/mac-agent/node_modules/triple-beam/config/cli.js +42 -0
- package/mac-agent/node_modules/triple-beam/config/index.js +32 -0
- package/mac-agent/node_modules/triple-beam/config/npm.js +36 -0
- package/mac-agent/node_modules/triple-beam/config/syslog.js +38 -0
- package/mac-agent/node_modules/triple-beam/index.js +46 -0
- package/mac-agent/node_modules/triple-beam/package.json +40 -0
- package/mac-agent/node_modules/undefsafe/.github/workflows/release.yml +25 -0
- package/mac-agent/node_modules/undefsafe/.jscsrc +13 -0
- package/mac-agent/node_modules/undefsafe/.jshintrc +16 -0
- package/mac-agent/node_modules/undefsafe/.travis.yml +18 -0
- package/mac-agent/node_modules/undefsafe/LICENSE +22 -0
- package/mac-agent/node_modules/undefsafe/README.md +63 -0
- package/mac-agent/node_modules/undefsafe/example.js +14 -0
- package/mac-agent/node_modules/undefsafe/lib/undefsafe.js +125 -0
- package/mac-agent/node_modules/undefsafe/package.json +34 -0
- package/mac-agent/node_modules/util-deprecate/History.md +16 -0
- package/mac-agent/node_modules/util-deprecate/LICENSE +24 -0
- package/mac-agent/node_modules/util-deprecate/README.md +53 -0
- package/mac-agent/node_modules/util-deprecate/browser.js +67 -0
- package/mac-agent/node_modules/util-deprecate/node.js +6 -0
- package/mac-agent/node_modules/util-deprecate/package.json +27 -0
- package/mac-agent/node_modules/uuid/CHANGELOG.md +229 -0
- package/mac-agent/node_modules/uuid/CONTRIBUTING.md +18 -0
- package/mac-agent/node_modules/uuid/LICENSE.md +9 -0
- package/mac-agent/node_modules/uuid/README.md +505 -0
- package/mac-agent/node_modules/uuid/dist/bin/uuid +2 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/index.js +9 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/md5.js +215 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/parse.js +35 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/rng.js +19 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/sha1.js +96 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/stringify.js +30 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/v1.js +95 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/v3.js +4 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/v35.js +64 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/v4.js +24 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/v5.js +4 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/validate.js +7 -0
- package/mac-agent/node_modules/uuid/dist/esm-browser/version.js +11 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/index.js +9 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/md5.js +13 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/nil.js +1 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/parse.js +35 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/regex.js +1 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/rng.js +12 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/sha1.js +13 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/stringify.js +29 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/v1.js +95 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/v3.js +4 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/v35.js +64 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/v4.js +24 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/v5.js +4 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/validate.js +7 -0
- package/mac-agent/node_modules/uuid/dist/esm-node/version.js +11 -0
- package/mac-agent/node_modules/uuid/dist/index.js +79 -0
- package/mac-agent/node_modules/uuid/dist/md5-browser.js +223 -0
- package/mac-agent/node_modules/uuid/dist/md5.js +23 -0
- package/mac-agent/node_modules/uuid/dist/nil.js +8 -0
- package/mac-agent/node_modules/uuid/dist/parse.js +45 -0
- package/mac-agent/node_modules/uuid/dist/regex.js +8 -0
- package/mac-agent/node_modules/uuid/dist/rng-browser.js +26 -0
- package/mac-agent/node_modules/uuid/dist/rng.js +24 -0
- package/mac-agent/node_modules/uuid/dist/sha1-browser.js +104 -0
- package/mac-agent/node_modules/uuid/dist/sha1.js +23 -0
- package/mac-agent/node_modules/uuid/dist/stringify.js +39 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuid.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidNIL.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidParse.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidStringify.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidValidate.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidVersion.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidv1.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidv3.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidv4.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/umd/uuidv5.min.js +1 -0
- package/mac-agent/node_modules/uuid/dist/uuid-bin.js +85 -0
- package/mac-agent/node_modules/uuid/dist/v1.js +107 -0
- package/mac-agent/node_modules/uuid/dist/v3.js +16 -0
- package/mac-agent/node_modules/uuid/dist/v35.js +78 -0
- package/mac-agent/node_modules/uuid/dist/v4.js +37 -0
- package/mac-agent/node_modules/uuid/dist/v5.js +16 -0
- package/mac-agent/node_modules/uuid/dist/validate.js +17 -0
- package/mac-agent/node_modules/uuid/dist/version.js +21 -0
- package/mac-agent/node_modules/uuid/package.json +135 -0
- package/mac-agent/node_modules/uuid/wrapper.mjs +10 -0
- package/mac-agent/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/mac-agent/node_modules/validate-npm-package-license/README.md +113 -0
- package/mac-agent/node_modules/validate-npm-package-license/index.js +86 -0
- package/mac-agent/node_modules/validate-npm-package-license/package.json +28 -0
- package/mac-agent/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/mac-agent/node_modules/webidl-conversions/README.md +80 -0
- package/mac-agent/node_modules/webidl-conversions/lib/index.js +332 -0
- package/mac-agent/node_modules/webidl-conversions/package.json +27 -0
- package/mac-agent/node_modules/whatwg-url/LICENSE.txt +21 -0
- package/mac-agent/node_modules/whatwg-url/README.md +67 -0
- package/mac-agent/node_modules/whatwg-url/lib/URL-impl.js +200 -0
- package/mac-agent/node_modules/whatwg-url/lib/URL.js +196 -0
- package/mac-agent/node_modules/whatwg-url/lib/public-api.js +11 -0
- package/mac-agent/node_modules/whatwg-url/lib/url-state-machine.js +1297 -0
- package/mac-agent/node_modules/whatwg-url/lib/utils.js +20 -0
- package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/LICENSE.md +12 -0
- package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/README.md +53 -0
- package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/lib/index.js +189 -0
- package/mac-agent/node_modules/whatwg-url/node_modules/webidl-conversions/package.json +23 -0
- package/mac-agent/node_modules/whatwg-url/package.json +32 -0
- package/mac-agent/node_modules/which/CHANGELOG.md +152 -0
- package/mac-agent/node_modules/which/LICENSE +15 -0
- package/mac-agent/node_modules/which/README.md +51 -0
- package/mac-agent/node_modules/which/bin/which +52 -0
- package/mac-agent/node_modules/which/package.json +30 -0
- package/mac-agent/node_modules/which/which.js +135 -0
- package/mac-agent/node_modules/which-module/CHANGELOG.md +11 -0
- package/mac-agent/node_modules/which-module/LICENSE +13 -0
- package/mac-agent/node_modules/which-module/README.md +55 -0
- package/mac-agent/node_modules/which-module/index.js +9 -0
- package/mac-agent/node_modules/which-module/package.json +41 -0
- package/mac-agent/node_modules/wide-align/LICENSE +14 -0
- package/mac-agent/node_modules/wide-align/README.md +47 -0
- package/mac-agent/node_modules/wide-align/align.js +65 -0
- package/mac-agent/node_modules/wide-align/package.json +33 -0
- package/mac-agent/node_modules/winston/LICENSE +19 -0
- package/mac-agent/node_modules/winston/README.md +1271 -0
- package/mac-agent/node_modules/winston/dist/winston/common.js +44 -0
- package/mac-agent/node_modules/winston/dist/winston/config/index.js +36 -0
- package/mac-agent/node_modules/winston/dist/winston/container.js +141 -0
- package/mac-agent/node_modules/winston/dist/winston/create-logger.js +123 -0
- package/mac-agent/node_modules/winston/dist/winston/exception-handler.js +265 -0
- package/mac-agent/node_modules/winston/dist/winston/exception-stream.js +75 -0
- package/mac-agent/node_modules/winston/dist/winston/logger.js +672 -0
- package/mac-agent/node_modules/winston/dist/winston/profiler.js +65 -0
- package/mac-agent/node_modules/winston/dist/winston/rejection-handler.js +265 -0
- package/mac-agent/node_modules/winston/dist/winston/rejection-stream.js +72 -0
- package/mac-agent/node_modules/winston/dist/winston/tail-file.js +113 -0
- package/mac-agent/node_modules/winston/dist/winston/transports/console.js +143 -0
- package/mac-agent/node_modules/winston/dist/winston/transports/file.js +788 -0
- package/mac-agent/node_modules/winston/dist/winston/transports/http.js +288 -0
- package/mac-agent/node_modules/winston/dist/winston/transports/index.js +56 -0
- package/mac-agent/node_modules/winston/dist/winston/transports/stream.js +86 -0
- package/mac-agent/node_modules/winston/dist/winston.js +171 -0
- package/mac-agent/node_modules/winston/index.d.ts +208 -0
- package/mac-agent/node_modules/winston/lib/winston/common.js +46 -0
- package/mac-agent/node_modules/winston/lib/winston/config/index.d.ts +99 -0
- package/mac-agent/node_modules/winston/lib/winston/config/index.js +35 -0
- package/mac-agent/node_modules/winston/lib/winston/container.js +118 -0
- package/mac-agent/node_modules/winston/lib/winston/create-logger.js +104 -0
- package/mac-agent/node_modules/winston/lib/winston/exception-handler.js +245 -0
- package/mac-agent/node_modules/winston/lib/winston/exception-stream.js +54 -0
- package/mac-agent/node_modules/winston/lib/winston/logger.js +677 -0
- package/mac-agent/node_modules/winston/lib/winston/profiler.js +53 -0
- package/mac-agent/node_modules/winston/lib/winston/rejection-handler.js +251 -0
- package/mac-agent/node_modules/winston/lib/winston/rejection-stream.js +52 -0
- package/mac-agent/node_modules/winston/lib/winston/tail-file.js +124 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/console.js +125 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/file.js +763 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/http.js +262 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/index.d.ts +117 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/index.js +56 -0
- package/mac-agent/node_modules/winston/lib/winston/transports/stream.js +63 -0
- package/mac-agent/node_modules/winston/lib/winston.js +191 -0
- package/mac-agent/node_modules/winston/package.json +74 -0
- package/mac-agent/node_modules/winston-transport/.babelrc +3 -0
- package/mac-agent/node_modules/winston-transport/.eslintrc +7 -0
- package/mac-agent/node_modules/winston-transport/.gitattributes +1 -0
- package/mac-agent/node_modules/winston-transport/.nyc_output/68e78020-c804-4f37-a68a-a967c6380da9.json +1 -0
- package/mac-agent/node_modules/winston-transport/.nyc_output/processinfo/68e78020-c804-4f37-a68a-a967c6380da9.json +1 -0
- package/mac-agent/node_modules/winston-transport/.nyc_output/processinfo/index.json +1 -0
- package/mac-agent/node_modules/winston-transport/CHANGELOG.md +126 -0
- package/mac-agent/node_modules/winston-transport/LICENSE +22 -0
- package/mac-agent/node_modules/winston-transport/README.md +50 -0
- package/mac-agent/node_modules/winston-transport/dist/index.js +8 -0
- package/mac-agent/node_modules/winston-transport/dist/legacy.js +116 -0
- package/mac-agent/node_modules/winston-transport/dist/modern.js +212 -0
- package/mac-agent/node_modules/winston-transport/index.d.ts +39 -0
- package/mac-agent/node_modules/winston-transport/index.js +7 -0
- package/mac-agent/node_modules/winston-transport/legacy.js +119 -0
- package/mac-agent/node_modules/winston-transport/modern.js +211 -0
- package/mac-agent/node_modules/winston-transport/package.json +52 -0
- package/mac-agent/node_modules/wrap-ansi/index.js +168 -0
- package/mac-agent/node_modules/wrap-ansi/license +21 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/index.js +4 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/license +21 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +64 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/ansi-regex/readme.md +39 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/license +21 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/index.js +37 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/license +21 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/package.json +56 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/string-width/readme.md +42 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +6 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/license +21 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +57 -0
- package/mac-agent/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +33 -0
- package/mac-agent/node_modules/wrap-ansi/package.json +68 -0
- package/mac-agent/node_modules/wrap-ansi/readme.md +73 -0
- package/mac-agent/node_modules/wrappy/LICENSE +15 -0
- package/mac-agent/node_modules/wrappy/README.md +36 -0
- package/mac-agent/node_modules/wrappy/package.json +29 -0
- package/mac-agent/node_modules/wrappy/wrappy.js +33 -0
- package/mac-agent/node_modules/ws/LICENSE +20 -0
- package/mac-agent/node_modules/ws/README.md +548 -0
- package/mac-agent/node_modules/ws/browser.js +8 -0
- package/mac-agent/node_modules/ws/index.js +13 -0
- package/mac-agent/node_modules/ws/lib/buffer-util.js +131 -0
- package/mac-agent/node_modules/ws/lib/constants.js +18 -0
- package/mac-agent/node_modules/ws/lib/event-target.js +292 -0
- package/mac-agent/node_modules/ws/lib/extension.js +203 -0
- package/mac-agent/node_modules/ws/lib/limiter.js +55 -0
- package/mac-agent/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/mac-agent/node_modules/ws/lib/receiver.js +706 -0
- package/mac-agent/node_modules/ws/lib/sender.js +602 -0
- package/mac-agent/node_modules/ws/lib/stream.js +161 -0
- package/mac-agent/node_modules/ws/lib/subprotocol.js +62 -0
- package/mac-agent/node_modules/ws/lib/validation.js +152 -0
- package/mac-agent/node_modules/ws/lib/websocket-server.js +550 -0
- package/mac-agent/node_modules/ws/lib/websocket.js +1388 -0
- package/mac-agent/node_modules/ws/package.json +69 -0
- package/mac-agent/node_modules/ws/wrapper.mjs +8 -0
- package/mac-agent/node_modules/y18n/CHANGELOG.md +6 -0
- package/mac-agent/node_modules/y18n/LICENSE +13 -0
- package/mac-agent/node_modules/y18n/README.md +91 -0
- package/mac-agent/node_modules/y18n/index.js +172 -0
- package/mac-agent/node_modules/y18n/package.json +37 -0
- package/mac-agent/node_modules/yallist/LICENSE +15 -0
- package/mac-agent/node_modules/yallist/README.md +204 -0
- package/mac-agent/node_modules/yallist/iterator.js +8 -0
- package/mac-agent/node_modules/yallist/package.json +29 -0
- package/mac-agent/node_modules/yallist/yallist.js +426 -0
- package/mac-agent/node_modules/yargs/CHANGELOG.md +928 -0
- package/mac-agent/node_modules/yargs/LICENSE +22 -0
- package/mac-agent/node_modules/yargs/README.md +2017 -0
- package/mac-agent/node_modules/yargs/completion.sh.hbs +28 -0
- package/mac-agent/node_modules/yargs/index.js +31 -0
- package/mac-agent/node_modules/yargs/lib/apply-extends.js +41 -0
- package/mac-agent/node_modules/yargs/lib/argsert.js +72 -0
- package/mac-agent/node_modules/yargs/lib/assign.js +15 -0
- package/mac-agent/node_modules/yargs/lib/command.js +334 -0
- package/mac-agent/node_modules/yargs/lib/completion.js +104 -0
- package/mac-agent/node_modules/yargs/lib/levenshtein.js +47 -0
- package/mac-agent/node_modules/yargs/lib/obj-filter.js +10 -0
- package/mac-agent/node_modules/yargs/lib/usage.js +489 -0
- package/mac-agent/node_modules/yargs/lib/validation.js +363 -0
- package/mac-agent/node_modules/yargs/lib/yerror.js +10 -0
- package/mac-agent/node_modules/yargs/locales/be.json +39 -0
- package/mac-agent/node_modules/yargs/locales/de.json +39 -0
- package/mac-agent/node_modules/yargs/locales/en.json +40 -0
- package/mac-agent/node_modules/yargs/locales/es.json +39 -0
- package/mac-agent/node_modules/yargs/locales/fr.json +37 -0
- package/mac-agent/node_modules/yargs/locales/hi.json +39 -0
- package/mac-agent/node_modules/yargs/locales/hu.json +39 -0
- package/mac-agent/node_modules/yargs/locales/id.json +40 -0
- package/mac-agent/node_modules/yargs/locales/it.json +39 -0
- package/mac-agent/node_modules/yargs/locales/ja.json +39 -0
- package/mac-agent/node_modules/yargs/locales/ko.json +39 -0
- package/mac-agent/node_modules/yargs/locales/nb.json +37 -0
- package/mac-agent/node_modules/yargs/locales/nl.json +39 -0
- package/mac-agent/node_modules/yargs/locales/pirate.json +12 -0
- package/mac-agent/node_modules/yargs/locales/pl.json +39 -0
- package/mac-agent/node_modules/yargs/locales/pt.json +38 -0
- package/mac-agent/node_modules/yargs/locales/pt_BR.json +40 -0
- package/mac-agent/node_modules/yargs/locales/ru.json +39 -0
- package/mac-agent/node_modules/yargs/locales/th.json +39 -0
- package/mac-agent/node_modules/yargs/locales/tr.json +39 -0
- package/mac-agent/node_modules/yargs/locales/zh_CN.json +37 -0
- package/mac-agent/node_modules/yargs/locales/zh_TW.json +40 -0
- package/mac-agent/node_modules/yargs/node_modules/ansi-regex/index.js +4 -0
- package/mac-agent/node_modules/yargs/node_modules/ansi-regex/license +21 -0
- package/mac-agent/node_modules/yargs/node_modules/ansi-regex/package.json +64 -0
- package/mac-agent/node_modules/yargs/node_modules/ansi-regex/readme.md +39 -0
- package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/index.js +46 -0
- package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/license +21 -0
- package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/package.json +45 -0
- package/mac-agent/node_modules/yargs/node_modules/is-fullwidth-code-point/readme.md +39 -0
- package/mac-agent/node_modules/yargs/node_modules/string-width/index.js +37 -0
- package/mac-agent/node_modules/yargs/node_modules/string-width/license +21 -0
- package/mac-agent/node_modules/yargs/node_modules/string-width/package.json +56 -0
- package/mac-agent/node_modules/yargs/node_modules/string-width/readme.md +42 -0
- package/mac-agent/node_modules/yargs/node_modules/strip-ansi/index.js +6 -0
- package/mac-agent/node_modules/yargs/node_modules/strip-ansi/license +21 -0
- package/mac-agent/node_modules/yargs/node_modules/strip-ansi/package.json +57 -0
- package/mac-agent/node_modules/yargs/node_modules/strip-ansi/readme.md +33 -0
- package/mac-agent/node_modules/yargs/package.json +80 -0
- package/mac-agent/node_modules/yargs/yargs.js +1126 -0
- package/mac-agent/node_modules/yargs-parser/CHANGELOG.md +176 -0
- package/mac-agent/node_modules/yargs-parser/LICENSE.txt +14 -0
- package/mac-agent/node_modules/yargs-parser/README.md +257 -0
- package/mac-agent/node_modules/yargs-parser/index.js +753 -0
- package/mac-agent/node_modules/yargs-parser/lib/tokenize-arg-string.js +34 -0
- package/mac-agent/node_modules/yargs-parser/package.json +44 -0
- package/mac-agent/package-lock.json +2272 -0
- package/mac-agent/package.json +31 -0
- package/mac-agent/setup.js +120 -0
- package/mac-agent/shell-mirror@1.5.7 +0 -0
- package/mac-agent/web-setup.js +145 -0
- package/package.json +2 -1
|
@@ -0,0 +1,823 @@
|
|
|
1
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-01T17:12:59.925Z","webServer":"https://www.igori.eu"}
|
|
2
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-01T17:12:59.927Z"}
|
|
3
|
+
{"data":{"api_version":"1.0","message":"Invalid owner authentication token","success":false,"timestamp":"2025-07-01 17:13:00"},"error":"Request failed with status code 401","level":"error","message":"Failed to register with server","status":401,"timestamp":"2025-07-01T17:13:00.569Z"}
|
|
4
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-01T17:13:17.758Z","webServer":"https://www.igori.eu"}
|
|
5
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-01T17:13:17.760Z"}
|
|
6
|
+
{"data":{"api_version":"1.0","message":"Invalid owner authentication token","success":false,"timestamp":"2025-07-01 17:13:18"},"error":"Request failed with status code 401","level":"error","message":"Failed to register with server","status":401,"timestamp":"2025-07-01T17:13:18.233Z"}
|
|
7
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-01T17:29:31.445Z","webServer":"https://www.igori.eu"}
|
|
8
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-01T17:29:31.447Z"}
|
|
9
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-01T17:29:31.977Z"}
|
|
10
|
+
{"error":"Request failed with status code 500","level":"warn","message":"Heartbeat failed","status":500,"timestamp":"2025-07-01T17:29:32.224Z"}
|
|
11
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-01T17:38:46.540Z"}
|
|
12
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:39:21.119Z"}
|
|
13
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:39:33.129Z"}
|
|
14
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:39:45.136Z"}
|
|
15
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-01T17:39:52.143Z"}
|
|
16
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:40:02.148Z"}
|
|
17
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:40:14.154Z"}
|
|
18
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:40:26.164Z"}
|
|
19
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:40:38.171Z"}
|
|
20
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:40:50.176Z"}
|
|
21
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-01T17:40:57.184Z"}
|
|
22
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:41:07.193Z"}
|
|
23
|
+
{"error":"socket hang up","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T17:53:57.512Z"}
|
|
24
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T18:06:18.675Z"}
|
|
25
|
+
{"error":"read ECONNRESET","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T18:12:01.539Z"}
|
|
26
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-01T18:58:53.145Z"}
|
|
27
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-01T18:58:53.147Z"}
|
|
28
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-01T18:58:53.166Z"}
|
|
29
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-01T18:58:53.166Z"}
|
|
30
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-01T18:58:54.802Z"}
|
|
31
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-01T18:58:54.802Z"}
|
|
32
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-01T18:58:54.802Z"}
|
|
33
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-01T18:58:54.802Z"}
|
|
34
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-01T18:58:56.807Z","webServer":"https://www.igori.eu"}
|
|
35
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-01T18:58:56.809Z"}
|
|
36
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-01T18:58:56.921Z"}
|
|
37
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T19:11:29.274Z"}
|
|
38
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T23:14:49.973Z"}
|
|
39
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-01T23:37:21.546Z"}
|
|
40
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T00:42:26.079Z"}
|
|
41
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-02T01:17:08.509Z"}
|
|
42
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T01:22:37.149Z"}
|
|
43
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T03:28:34.504Z"}
|
|
44
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T03:28:48.613Z"}
|
|
45
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T03:46:26.151Z"}
|
|
46
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T04:41:45.015Z"}
|
|
47
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T05:50:34.234Z"}
|
|
48
|
+
{"error":"read ECONNRESET","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T06:24:15.334Z"}
|
|
49
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T07:08:48.550Z"}
|
|
50
|
+
{"error":"read ECONNRESET","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T10:49:30.027Z"}
|
|
51
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-02T11:57:26.204Z"}
|
|
52
|
+
{"error":"read ECONNRESET","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T14:01:14.828Z"}
|
|
53
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:07:13.788Z"}
|
|
54
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-02T17:30:03.740Z"}
|
|
55
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:13.751Z"}
|
|
56
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:15.762Z"}
|
|
57
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:17.770Z"}
|
|
58
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:19.778Z"}
|
|
59
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:21.785Z"}
|
|
60
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:23.793Z"}
|
|
61
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:25.801Z"}
|
|
62
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:27.828Z"}
|
|
63
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:29.838Z"}
|
|
64
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:31.848Z"}
|
|
65
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:33.857Z"}
|
|
66
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:35.866Z"}
|
|
67
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:37.875Z"}
|
|
68
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:39.889Z"}
|
|
69
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:41.898Z"}
|
|
70
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:30:43.909Z"}
|
|
71
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-02T17:47:11.844Z"}
|
|
72
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:11.847Z"}
|
|
73
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:13.855Z"}
|
|
74
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:15.863Z"}
|
|
75
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:17.870Z"}
|
|
76
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:19.878Z"}
|
|
77
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:21.884Z"}
|
|
78
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:23.896Z"}
|
|
79
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:25.905Z"}
|
|
80
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:27.951Z"}
|
|
81
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:29.958Z"}
|
|
82
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:31.966Z"}
|
|
83
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:33.978Z"}
|
|
84
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:35.985Z"}
|
|
85
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:37.994Z"}
|
|
86
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:40.004Z"}
|
|
87
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:47:42.012Z"}
|
|
88
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-02T17:51:32.069Z"}
|
|
89
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:32.104Z"}
|
|
90
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:35.674Z"}
|
|
91
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:37.708Z"}
|
|
92
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:39.712Z"}
|
|
93
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:41.727Z"}
|
|
94
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:43.732Z"}
|
|
95
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:45.739Z"}
|
|
96
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:47.741Z"}
|
|
97
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:49.746Z"}
|
|
98
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:51.749Z"}
|
|
99
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:53.753Z"}
|
|
100
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:55.759Z"}
|
|
101
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T17:51:57.767Z"}
|
|
102
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-02T18:07:38.421Z"}
|
|
103
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-02T19:12:06.489Z"}
|
|
104
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-02T19:12:06.490Z"}
|
|
105
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-02T19:12:06.508Z"}
|
|
106
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-02T19:12:06.508Z"}
|
|
107
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-02T19:12:13.807Z","webServer":"https://www.igori.eu"}
|
|
108
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-02T19:12:13.809Z"}
|
|
109
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-02T19:12:14.308Z"}
|
|
110
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T19:43:29.212Z"}
|
|
111
|
+
{"command":"ls -la","commandId":"cmd_68658be11d3f34.87687729","level":"info","message":"Processing command","sessionId":"terminal_1751485395654_5u3amsp4p","timestamp":"2025-07-02T19:43:29.224Z","userEmail":"bac9i4mo@gmail.com"}
|
|
112
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","timestamp":"2025-07-02T19:43:29.765Z","userEmail":"bac9i4mo@gmail.com"}
|
|
113
|
+
{"command":"ls -la","commandId":"cmd_68658be11d3f34.87687729","error":"Failed to execute command: spawn ls -la ENOENT","level":"error","message":"Command processing error","timestamp":"2025-07-02T19:43:29.793Z"}
|
|
114
|
+
{"commandId":"cmd_68658be11d3f34.87687729","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:43:29.974Z"}
|
|
115
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T19:43:39.953Z"}
|
|
116
|
+
{"command":"cd igori","commandId":"cmd_68658bebd99f33.18562387","level":"info","message":"Processing command","sessionId":"terminal_1751485395654_5u3amsp4p","timestamp":"2025-07-02T19:43:39.954Z","userEmail":"bac9i4mo@gmail.com"}
|
|
117
|
+
{"commandId":"cmd_68658bebd99f33.18562387","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:43:40.565Z"}
|
|
118
|
+
{"level":"info","message":"Received SIGTERM, shutting down gracefully...","timestamp":"2025-07-02T19:47:53.157Z"}
|
|
119
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-02T19:47:53.158Z"}
|
|
120
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-02T19:47:55.524Z","webServer":"https://www.igori.eu"}
|
|
121
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-02T19:47:55.526Z"}
|
|
122
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-02T19:47:56.260Z"}
|
|
123
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-02T19:51:02.817Z","webServer":"https://www.igori.eu"}
|
|
124
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-02T19:51:02.819Z"}
|
|
125
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-02T19:51:03.055Z"}
|
|
126
|
+
{"level":"info","message":"Received 3 command(s) to process","timestamp":"2025-07-02T19:51:03.244Z"}
|
|
127
|
+
{"command":"ды -дф","commandId":"cmd_68658d6fe13b06.19170448","level":"info","message":"Processing command","sessionId":"terminal_1751485804675_iusgez61o","timestamp":"2025-07-02T19:51:03.246Z","userEmail":"bac9i4mo@gmail.com"}
|
|
128
|
+
{"command":"ls -la","commandId":"cmd_68658d8d697a13.33212275","level":"info","message":"Processing command","sessionId":"terminal_1751485804675_iusgez61o","timestamp":"2025-07-02T19:51:03.247Z","userEmail":"bac9i4mo@gmail.com"}
|
|
129
|
+
{"command":"ls -la","commandId":"cmd_68658d947cada9.68033861","level":"info","message":"Processing command","sessionId":"terminal_1751485839007_y9j7vs7kv","timestamp":"2025-07-02T19:51:03.249Z","userEmail":"bac9i4mo@gmail.com"}
|
|
130
|
+
{"command":"ды -дф","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751485804675_iusgez61o","timestamp":"2025-07-02T19:51:03.382Z","userEmail":"bac9i4mo@gmail.com"}
|
|
131
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751485804675_iusgez61o","timestamp":"2025-07-02T19:51:03.392Z","userEmail":"bac9i4mo@gmail.com"}
|
|
132
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751485839007_y9j7vs7kv","timestamp":"2025-07-02T19:51:03.394Z","userEmail":"bac9i4mo@gmail.com"}
|
|
133
|
+
{"commandId":"cmd_68658d6fe13b06.19170448","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:51:03.432Z"}
|
|
134
|
+
{"commandId":"cmd_68658d8d697a13.33212275","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:51:03.548Z"}
|
|
135
|
+
{"commandId":"cmd_68658d947cada9.68033861","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:51:03.549Z"}
|
|
136
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T19:51:09.381Z"}
|
|
137
|
+
{"command":"cd igori","commandId":"cmd_68658dac86f459.22652679","level":"info","message":"Processing command","sessionId":"terminal_1751485839007_y9j7vs7kv","timestamp":"2025-07-02T19:51:09.381Z","userEmail":"bac9i4mo@gmail.com"}
|
|
138
|
+
{"command":"cd igori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751485839007_y9j7vs7kv","timestamp":"2025-07-02T19:51:09.799Z","userEmail":"bac9i4mo@gmail.com"}
|
|
139
|
+
{"commandId":"cmd_68658dac86f459.22652679","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:51:09.851Z"}
|
|
140
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T19:54:30.180Z"}
|
|
141
|
+
{"command":"ls -la","commandId":"cmd_68658e75d186f1.39897916","level":"info","message":"Processing command","sessionId":"terminal_1751486064739_ww1ab6icz","timestamp":"2025-07-02T19:54:30.181Z","userEmail":"bac9i4mo@gmail.com"}
|
|
142
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751486064739_ww1ab6icz","timestamp":"2025-07-02T19:54:30.291Z","userEmail":"bac9i4mo@gmail.com"}
|
|
143
|
+
{"commandId":"cmd_68658e75d186f1.39897916","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:54:30.356Z"}
|
|
144
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T19:54:36.280Z"}
|
|
145
|
+
{"command":"cd igori","commandId":"cmd_68658e7a9b3279.07861495","level":"info","message":"Processing command","sessionId":"terminal_1751486064739_ww1ab6icz","timestamp":"2025-07-02T19:54:36.280Z","userEmail":"bac9i4mo@gmail.com"}
|
|
146
|
+
{"command":"cd igori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751486064739_ww1ab6icz","timestamp":"2025-07-02T19:54:36.395Z","userEmail":"bac9i4mo@gmail.com"}
|
|
147
|
+
{"commandId":"cmd_68658e7a9b3279.07861495","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T19:54:36.428Z"}
|
|
148
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:48:17.471Z"}
|
|
149
|
+
{"command":"cd ifori","commandId":"cmd_68659b10b61dc5.51683966","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:17.473Z","userEmail":"bac9i4mo@gmail.com"}
|
|
150
|
+
{"command":"cd ifori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:17.597Z","userEmail":"bac9i4mo@gmail.com"}
|
|
151
|
+
{"commandId":"cmd_68659b10b61dc5.51683966","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:48:17.634Z"}
|
|
152
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:48:23.589Z"}
|
|
153
|
+
{"command":"cd igori","commandId":"cmd_68659b16927623.32748787","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:23.590Z","userEmail":"bac9i4mo@gmail.com"}
|
|
154
|
+
{"command":"cd igori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:23.710Z","userEmail":"bac9i4mo@gmail.com"}
|
|
155
|
+
{"commandId":"cmd_68659b16927623.32748787","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:48:23.746Z"}
|
|
156
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:48:31.732Z"}
|
|
157
|
+
{"command":"ls -1a '.' 2>/dev/null | grep '^'termina'' | head -20","commandId":"cmd_68659b1e051b26.47503872","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:31.733Z","userEmail":"bac9i4mo@gmail.com"}
|
|
158
|
+
{"command":"ls -1a '.' 2>/dev/null | grep '^'termina'' | head -20","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:31.844Z","userEmail":"bac9i4mo@gmail.com"}
|
|
159
|
+
{"commandId":"cmd_68659b1e051b26.47503872","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:48:31.914Z"}
|
|
160
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:48:33.769Z"}
|
|
161
|
+
{"command":"cd terminal-mirror","commandId":"cmd_68659b21a62863.58090797","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:33.769Z","userEmail":"bac9i4mo@gmail.com"}
|
|
162
|
+
{"command":"cd terminal-mirror","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:48:33.825Z","userEmail":"bac9i4mo@gmail.com"}
|
|
163
|
+
{"commandId":"cmd_68659b21a62863.58090797","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:48:33.858Z"}
|
|
164
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:12.630Z"}
|
|
165
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:12.630Z","userEmail":"bac9i4mo@gmail.com"}
|
|
166
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:12.745Z","userEmail":"bac9i4mo@gmail.com"}
|
|
167
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:14.714Z"}
|
|
168
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:14.715Z","userEmail":"bac9i4mo@gmail.com"}
|
|
169
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:14.762Z","userEmail":"bac9i4mo@gmail.com"}
|
|
170
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:16.749Z"}
|
|
171
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:16.750Z","userEmail":"bac9i4mo@gmail.com"}
|
|
172
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:16.802Z","userEmail":"bac9i4mo@gmail.com"}
|
|
173
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:18.788Z"}
|
|
174
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:18.788Z","userEmail":"bac9i4mo@gmail.com"}
|
|
175
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:18.832Z","userEmail":"bac9i4mo@gmail.com"}
|
|
176
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:20.821Z"}
|
|
177
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:20.821Z","userEmail":"bac9i4mo@gmail.com"}
|
|
178
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:20.866Z","userEmail":"bac9i4mo@gmail.com"}
|
|
179
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:22.864Z"}
|
|
180
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:22.865Z","userEmail":"bac9i4mo@gmail.com"}
|
|
181
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:22.911Z","userEmail":"bac9i4mo@gmail.com"}
|
|
182
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:25.050Z"}
|
|
183
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:25.051Z","userEmail":"bac9i4mo@gmail.com"}
|
|
184
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:25.105Z","userEmail":"bac9i4mo@gmail.com"}
|
|
185
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:27.100Z"}
|
|
186
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:27.100Z","userEmail":"bac9i4mo@gmail.com"}
|
|
187
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:27.164Z","userEmail":"bac9i4mo@gmail.com"}
|
|
188
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:29.133Z"}
|
|
189
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:29.133Z","userEmail":"bac9i4mo@gmail.com"}
|
|
190
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:29.180Z","userEmail":"bac9i4mo@gmail.com"}
|
|
191
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:31.175Z"}
|
|
192
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:31.176Z","userEmail":"bac9i4mo@gmail.com"}
|
|
193
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:31.223Z","userEmail":"bac9i4mo@gmail.com"}
|
|
194
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:33.219Z"}
|
|
195
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:33.220Z","userEmail":"bac9i4mo@gmail.com"}
|
|
196
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:33.270Z","userEmail":"bac9i4mo@gmail.com"}
|
|
197
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:35.256Z"}
|
|
198
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:35.256Z","userEmail":"bac9i4mo@gmail.com"}
|
|
199
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:35.302Z","userEmail":"bac9i4mo@gmail.com"}
|
|
200
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:37.289Z"}
|
|
201
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:37.289Z","userEmail":"bac9i4mo@gmail.com"}
|
|
202
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:37.333Z","userEmail":"bac9i4mo@gmail.com"}
|
|
203
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:39.330Z"}
|
|
204
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:39.330Z","userEmail":"bac9i4mo@gmail.com"}
|
|
205
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:39.379Z","userEmail":"bac9i4mo@gmail.com"}
|
|
206
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-02T20:49:41.373Z"}
|
|
207
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Processing command","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:41.374Z","userEmail":"bac9i4mo@gmail.com"}
|
|
208
|
+
{"command":"gemini","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751489272951_kmthjhs3q","timestamp":"2025-07-02T20:49:41.419Z","userEmail":"bac9i4mo@gmail.com"}
|
|
209
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:42.754Z"}
|
|
210
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:42.786Z"}
|
|
211
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:44.769Z"}
|
|
212
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:44.810Z"}
|
|
213
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:46.814Z"}
|
|
214
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:46.858Z"}
|
|
215
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:48.846Z"}
|
|
216
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:49.290Z"}
|
|
217
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:50.870Z"}
|
|
218
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:50.903Z"}
|
|
219
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:52.918Z"}
|
|
220
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:52.951Z"}
|
|
221
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:55.110Z"}
|
|
222
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:55.144Z"}
|
|
223
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:57.169Z"}
|
|
224
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:57.209Z"}
|
|
225
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:49:59.183Z"}
|
|
226
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:49:59.215Z"}
|
|
227
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:01.227Z"}
|
|
228
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:01.259Z"}
|
|
229
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:03.275Z"}
|
|
230
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:03.306Z"}
|
|
231
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:05.307Z"}
|
|
232
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:05.342Z"}
|
|
233
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:07.339Z"}
|
|
234
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:07.371Z"}
|
|
235
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:09.382Z"}
|
|
236
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:09.413Z"}
|
|
237
|
+
{"command":"gemini","commandId":"cmd_68659b470f8ce6.56414312","error":"Command timed out","level":"error","message":"Command processing error","timestamp":"2025-07-02T20:50:11.424Z"}
|
|
238
|
+
{"commandId":"cmd_68659b470f8ce6.56414312","level":"info","message":"Response submitted successfully","timestamp":"2025-07-02T20:50:11.467Z"}
|
|
239
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-02T21:13:16.055Z"}
|
|
240
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-02T21:13:16.057Z"}
|
|
241
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-02T21:13:16.075Z"}
|
|
242
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-02T21:13:16.076Z"}
|
|
243
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T07:50:20.591Z","webServer":"https://www.igori.eu"}
|
|
244
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T07:50:20.593Z"}
|
|
245
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T07:50:23.085Z"}
|
|
246
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T07:52:30.224Z"}
|
|
247
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T07:52:30.228Z"}
|
|
248
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T07:52:30.235Z"}
|
|
249
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T07:52:30.235Z"}
|
|
250
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T07:59:36.561Z","webServer":"https://www.igori.eu"}
|
|
251
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T07:59:36.563Z"}
|
|
252
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T07:59:36.685Z"}
|
|
253
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:40.836Z"}
|
|
254
|
+
{"command":"ls","commandId":"cmd_6866386cb4deb7.31603040","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:40.837Z","userEmail":"bac9i4mo@gmail.com"}
|
|
255
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:40.986Z","userEmail":"bac9i4mo@gmail.com"}
|
|
256
|
+
{"commandId":"cmd_6866386cb4deb7.31603040","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:41.192Z"}
|
|
257
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:42.870Z"}
|
|
258
|
+
{"command":"whoami","commandId":"cmd_6866386d3b5471.86998476","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:42.870Z","userEmail":"bac9i4mo@gmail.com"}
|
|
259
|
+
{"command":"whoami","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:42.921Z","userEmail":"bac9i4mo@gmail.com"}
|
|
260
|
+
{"commandId":"cmd_6866386d3b5471.86998476","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:42.968Z"}
|
|
261
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:44.906Z"}
|
|
262
|
+
{"command":"uname -a","commandId":"cmd_6866386f3c0417.17024554","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:44.906Z","userEmail":"bac9i4mo@gmail.com"}
|
|
263
|
+
{"command":"uname -a","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:44.959Z","userEmail":"bac9i4mo@gmail.com"}
|
|
264
|
+
{"commandId":"cmd_6866386f3c0417.17024554","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:45.004Z"}
|
|
265
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:46.941Z"}
|
|
266
|
+
{"command":"ls -l","commandId":"cmd_686638713cc8a4.00394426","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:46.942Z","userEmail":"bac9i4mo@gmail.com"}
|
|
267
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:47.004Z","userEmail":"bac9i4mo@gmail.com"}
|
|
268
|
+
{"commandId":"cmd_686638713cc8a4.00394426","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:47.101Z"}
|
|
269
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:48.997Z"}
|
|
270
|
+
{"command":"ls -la","commandId":"cmd_686638733d8133.65150138","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:48.999Z","userEmail":"bac9i4mo@gmail.com"}
|
|
271
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:49.054Z","userEmail":"bac9i4mo@gmail.com"}
|
|
272
|
+
{"commandId":"cmd_686638733d8133.65150138","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:49.114Z"}
|
|
273
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:51.102Z"}
|
|
274
|
+
{"command":"ls -la","commandId":"cmd_686638753e26b3.40001086","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:51.102Z","userEmail":"bac9i4mo@gmail.com"}
|
|
275
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:51.152Z","userEmail":"bac9i4mo@gmail.com"}
|
|
276
|
+
{"commandId":"cmd_686638753e26b3.40001086","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:51.210Z"}
|
|
277
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:55.295Z"}
|
|
278
|
+
{"command":"cd igori","commandId":"cmd_6866387a0384a5.85498349","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:55.295Z","userEmail":"bac9i4mo@gmail.com"}
|
|
279
|
+
{"command":"cd igori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:55.351Z","userEmail":"bac9i4mo@gmail.com"}
|
|
280
|
+
{"commandId":"cmd_6866387a0384a5.85498349","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:55.385Z"}
|
|
281
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:57.393Z"}
|
|
282
|
+
{"command":"ls -la","commandId":"cmd_6866387bb81043.94781014","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:57.393Z","userEmail":"bac9i4mo@gmail.com"}
|
|
283
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:57.443Z","userEmail":"bac9i4mo@gmail.com"}
|
|
284
|
+
{"commandId":"cmd_6866387bb81043.94781014","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:57.495Z"}
|
|
285
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T07:59:59.486Z"}
|
|
286
|
+
{"command":"ls","commandId":"cmd_6866387db89e16.52215032","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:59.487Z","userEmail":"bac9i4mo@gmail.com"}
|
|
287
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T07:59:59.550Z","userEmail":"bac9i4mo@gmail.com"}
|
|
288
|
+
{"commandId":"cmd_6866387db89e16.52215032","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T07:59:59.605Z"}
|
|
289
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:00:01.584Z"}
|
|
290
|
+
{"command":"ls -l","commandId":"cmd_6866387fb93e99.45407576","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T08:00:01.584Z","userEmail":"bac9i4mo@gmail.com"}
|
|
291
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T08:00:01.636Z","userEmail":"bac9i4mo@gmail.com"}
|
|
292
|
+
{"commandId":"cmd_6866387fb93e99.45407576","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:00:01.686Z"}
|
|
293
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:00:03.682Z"}
|
|
294
|
+
{"command":"lsls -la","commandId":"cmd_68663881b9f9b0.43119943","level":"info","message":"Processing command","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T08:00:03.682Z","userEmail":"bac9i4mo@gmail.com"}
|
|
295
|
+
{"command":"lsls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529580270_gp4mmg8qw","timestamp":"2025-07-03T08:00:03.738Z","userEmail":"bac9i4mo@gmail.com"}
|
|
296
|
+
{"commandId":"cmd_68663881b9f9b0.43119943","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:00:03.800Z"}
|
|
297
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:04:40.096Z"}
|
|
298
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:04:40.097Z"}
|
|
299
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:04:40.099Z"}
|
|
300
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:04:40.100Z"}
|
|
301
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T08:04:43.921Z","webServer":"https://www.igori.eu"}
|
|
302
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T08:04:43.923Z"}
|
|
303
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T08:04:45.239Z"}
|
|
304
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:49.421Z"}
|
|
305
|
+
{"command":"ls -la","commandId":"cmd_686639a0e37126.65033451","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:49.422Z","userEmail":"bac9i4mo@gmail.com"}
|
|
306
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:49.586Z","userEmail":"bac9i4mo@gmail.com"}
|
|
307
|
+
{"commandId":"cmd_686639a0e37126.65033451","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:04:49.700Z"}
|
|
308
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:51.531Z"}
|
|
309
|
+
{"command":"ls -l","commandId":"cmd_686639a1e7b891.09651852","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:51.531Z","userEmail":"bac9i4mo@gmail.com"}
|
|
310
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:51.583Z","userEmail":"bac9i4mo@gmail.com"}
|
|
311
|
+
{"commandId":"cmd_686639a1e7b891.09651852","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:04:51.630Z"}
|
|
312
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:53.612Z"}
|
|
313
|
+
{"command":"whoami","commandId":"cmd_686639a3e86440.03850375","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:53.612Z","userEmail":"bac9i4mo@gmail.com"}
|
|
314
|
+
{"command":"whoami","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:53.665Z","userEmail":"bac9i4mo@gmail.com"}
|
|
315
|
+
{"commandId":"cmd_686639a3e86440.03850375","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:04:53.714Z"}
|
|
316
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:55.708Z"}
|
|
317
|
+
{"command":"ls","commandId":"cmd_686639a5e90bb4.12279835","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:55.709Z","userEmail":"bac9i4mo@gmail.com"}
|
|
318
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:55.763Z","userEmail":"bac9i4mo@gmail.com"}
|
|
319
|
+
{"commandId":"cmd_686639a5e90bb4.12279835","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:04:55.805Z"}
|
|
320
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:57.805Z"}
|
|
321
|
+
{"command":"uname -a","commandId":"cmd_686639a7e9a8d3.48432290","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:57.805Z","userEmail":"bac9i4mo@gmail.com"}
|
|
322
|
+
{"command":"uname -a","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:57.861Z","userEmail":"bac9i4mo@gmail.com"}
|
|
323
|
+
{"commandId":"cmd_686639a7e9a8d3.48432290","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:04:58.055Z"}
|
|
324
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:04:59.902Z"}
|
|
325
|
+
{"command":"ls -la","commandId":"cmd_686639aa703d13.85409240","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:59.903Z","userEmail":"bac9i4mo@gmail.com"}
|
|
326
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:04:59.952Z","userEmail":"bac9i4mo@gmail.com"}
|
|
327
|
+
{"commandId":"cmd_686639aa703d13.85409240","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:05:00.014Z"}
|
|
328
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:05:02.001Z"}
|
|
329
|
+
{"command":"cd igori","commandId":"cmd_686639ac70e4f8.53568103","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:02.002Z","userEmail":"bac9i4mo@gmail.com"}
|
|
330
|
+
{"command":"cd igori","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:02.052Z","userEmail":"bac9i4mo@gmail.com"}
|
|
331
|
+
{"commandId":"cmd_686639ac70e4f8.53568103","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:05:02.167Z"}
|
|
332
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:05:04.098Z"}
|
|
333
|
+
{"command":"ls -l","commandId":"cmd_686639aebda903.03824464","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:04.098Z","userEmail":"bac9i4mo@gmail.com"}
|
|
334
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:04.155Z","userEmail":"bac9i4mo@gmail.com"}
|
|
335
|
+
{"commandId":"cmd_686639aebda903.03824464","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:05:04.214Z"}
|
|
336
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:05:06.585Z"}
|
|
337
|
+
{"command":"ls","commandId":"cmd_686639b0443291.53920774","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:06.586Z","userEmail":"bac9i4mo@gmail.com"}
|
|
338
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:06.693Z","userEmail":"bac9i4mo@gmail.com"}
|
|
339
|
+
{"commandId":"cmd_686639b0443291.53920774","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:05:06.741Z"}
|
|
340
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:05:08.623Z"}
|
|
341
|
+
{"command":"ls -la","commandId":"cmd_686639b344c6f2.85779688","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:08.623Z","userEmail":"bac9i4mo@gmail.com"}
|
|
342
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:05:08.690Z","userEmail":"bac9i4mo@gmail.com"}
|
|
343
|
+
{"commandId":"cmd_686639b344c6f2.85779688","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:05:08.814Z"}
|
|
344
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-03T08:09:26.048Z"}
|
|
345
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:11:40.473Z"}
|
|
346
|
+
{"command":"ls","commandId":"cmd_68663b3b3fa7b5.84846429","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:40.474Z","userEmail":"bac9i4mo@gmail.com"}
|
|
347
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:40.594Z","userEmail":"bac9i4mo@gmail.com"}
|
|
348
|
+
{"commandId":"cmd_68663b3b3fa7b5.84846429","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:11:40.643Z"}
|
|
349
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:11:42.566Z"}
|
|
350
|
+
{"command":"ls -la","commandId":"cmd_68663b3cba60f8.41748578","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:42.566Z","userEmail":"bac9i4mo@gmail.com"}
|
|
351
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:42.626Z","userEmail":"bac9i4mo@gmail.com"}
|
|
352
|
+
{"commandId":"cmd_68663b3cba60f8.41748578","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:11:42.833Z"}
|
|
353
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:11:44.659Z"}
|
|
354
|
+
{"command":"ls -l","commandId":"cmd_68663b3f4102d6.69460446","level":"info","message":"Processing command","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:44.660Z","userEmail":"bac9i4mo@gmail.com"}
|
|
355
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751529888485_nzllc55mr","timestamp":"2025-07-03T08:11:44.705Z","userEmail":"bac9i4mo@gmail.com"}
|
|
356
|
+
{"commandId":"cmd_68663b3f4102d6.69460446","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:11:44.762Z"}
|
|
357
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:24.521Z"}
|
|
358
|
+
{"command":"ls","commandId":"cmd_68663b66709600.80967185","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:24.522Z","userEmail":"bac9i4mo@gmail.com"}
|
|
359
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:24.633Z","userEmail":"bac9i4mo@gmail.com"}
|
|
360
|
+
{"commandId":"cmd_68663b66709600.80967185","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:24.710Z"}
|
|
361
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:26.606Z"}
|
|
362
|
+
{"command":"ls -la","commandId":"cmd_68663b68eb5284.79879234","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:26.606Z","userEmail":"bac9i4mo@gmail.com"}
|
|
363
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:26.657Z","userEmail":"bac9i4mo@gmail.com"}
|
|
364
|
+
{"commandId":"cmd_68663b68eb5284.79879234","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:26.714Z"}
|
|
365
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:28.710Z"}
|
|
366
|
+
{"command":"whoami","commandId":"cmd_68663b6aec0728.85977138","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:28.711Z","userEmail":"bac9i4mo@gmail.com"}
|
|
367
|
+
{"command":"whoami","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:28.757Z","userEmail":"bac9i4mo@gmail.com"}
|
|
368
|
+
{"commandId":"cmd_68663b6aec0728.85977138","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:28.807Z"}
|
|
369
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:30.848Z"}
|
|
370
|
+
{"command":"uname -a","commandId":"cmd_68663b6cecb3a5.51687567","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:30.848Z","userEmail":"bac9i4mo@gmail.com"}
|
|
371
|
+
{"command":"uname -a","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:30.899Z","userEmail":"bac9i4mo@gmail.com"}
|
|
372
|
+
{"commandId":"cmd_68663b6cecb3a5.51687567","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:30.957Z"}
|
|
373
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:32.897Z"}
|
|
374
|
+
{"command":"ls -l","commandId":"cmd_68663b6f7361a0.68158620","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:32.897Z","userEmail":"bac9i4mo@gmail.com"}
|
|
375
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:32.948Z","userEmail":"bac9i4mo@gmail.com"}
|
|
376
|
+
{"commandId":"cmd_68663b6f7361a0.68158620","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:33.004Z"}
|
|
377
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:34.993Z"}
|
|
378
|
+
{"command":"cd ..","commandId":"cmd_68663b71740ba8.67699693","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:34.993Z","userEmail":"bac9i4mo@gmail.com"}
|
|
379
|
+
{"command":"cd ..","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:35.046Z","userEmail":"bac9i4mo@gmail.com"}
|
|
380
|
+
{"commandId":"cmd_68663b71740ba8.67699693","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:35.079Z"}
|
|
381
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:37.089Z"}
|
|
382
|
+
{"command":"ls","commandId":"cmd_68663b73ba0bc0.61098895","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:37.089Z","userEmail":"bac9i4mo@gmail.com"}
|
|
383
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:37.158Z","userEmail":"bac9i4mo@gmail.com"}
|
|
384
|
+
{"commandId":"cmd_68663b73ba0bc0.61098895","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:37.211Z"}
|
|
385
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:39.189Z"}
|
|
386
|
+
{"command":"ls -l","commandId":"cmd_68663b754082a7.91632890","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:39.189Z","userEmail":"bac9i4mo@gmail.com"}
|
|
387
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:39.244Z","userEmail":"bac9i4mo@gmail.com"}
|
|
388
|
+
{"commandId":"cmd_68663b754082a7.91632890","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:39.321Z"}
|
|
389
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:12:41.281Z"}
|
|
390
|
+
{"command":"ls -la","commandId":"cmd_68663b77bb2351.29907544","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:41.282Z","userEmail":"bac9i4mo@gmail.com"}
|
|
391
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:12:41.336Z","userEmail":"bac9i4mo@gmail.com"}
|
|
392
|
+
{"commandId":"cmd_68663b77bb2351.29907544","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:12:41.430Z"}
|
|
393
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:18:41.189Z"}
|
|
394
|
+
{"command":"ls -l","commandId":"cmd_68663cdf972455.38427463","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:41.192Z","userEmail":"bac9i4mo@gmail.com"}
|
|
395
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:41.319Z","userEmail":"bac9i4mo@gmail.com"}
|
|
396
|
+
{"commandId":"cmd_68663cdf972455.38427463","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:18:41.376Z"}
|
|
397
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:18:43.235Z"}
|
|
398
|
+
{"command":"ls -la","commandId":"cmd_68663ce1a42cc1.44053357","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:43.235Z","userEmail":"bac9i4mo@gmail.com"}
|
|
399
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:43.285Z","userEmail":"bac9i4mo@gmail.com"}
|
|
400
|
+
{"commandId":"cmd_68663ce1a42cc1.44053357","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:18:43.404Z"}
|
|
401
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:18:45.266Z"}
|
|
402
|
+
{"command":"ls","commandId":"cmd_68663ce3a4f769.75384442","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:45.266Z","userEmail":"bac9i4mo@gmail.com"}
|
|
403
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:18:45.326Z","userEmail":"bac9i4mo@gmail.com"}
|
|
404
|
+
{"commandId":"cmd_68663ce3a4f769.75384442","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:18:45.365Z"}
|
|
405
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:24:42.406Z"}
|
|
406
|
+
{"command":"ls -l","commandId":"cmd_68663e47943f12.60513774","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:42.407Z","userEmail":"bac9i4mo@gmail.com"}
|
|
407
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:42.534Z","userEmail":"bac9i4mo@gmail.com"}
|
|
408
|
+
{"commandId":"cmd_68663e47943f12.60513774","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:24:42.599Z"}
|
|
409
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:24:44.566Z"}
|
|
410
|
+
{"command":"ls","commandId":"cmd_68663e4b1ae1e3.84892314","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:44.566Z","userEmail":"bac9i4mo@gmail.com"}
|
|
411
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:44.612Z","userEmail":"bac9i4mo@gmail.com"}
|
|
412
|
+
{"commandId":"cmd_68663e4b1ae1e3.84892314","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:24:44.654Z"}
|
|
413
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:24:46.599Z"}
|
|
414
|
+
{"command":"ls -la","commandId":"cmd_68663e4d1b9846.97690120","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:46.599Z","userEmail":"bac9i4mo@gmail.com"}
|
|
415
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:24:46.649Z","userEmail":"bac9i4mo@gmail.com"}
|
|
416
|
+
{"commandId":"cmd_68663e4d1b9846.97690120","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:24:46.698Z"}
|
|
417
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:30:40.219Z"}
|
|
418
|
+
{"command":"ls","commandId":"cmd_68663faf39dac1.81822022","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:40.219Z","userEmail":"bac9i4mo@gmail.com"}
|
|
419
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:40.373Z","userEmail":"bac9i4mo@gmail.com"}
|
|
420
|
+
{"commandId":"cmd_68663faf39dac1.81822022","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:30:40.420Z"}
|
|
421
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:30:42.263Z"}
|
|
422
|
+
{"command":"ls -la","commandId":"cmd_68663fb0b48162.50188414","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:42.263Z","userEmail":"bac9i4mo@gmail.com"}
|
|
423
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:42.315Z","userEmail":"bac9i4mo@gmail.com"}
|
|
424
|
+
{"commandId":"cmd_68663fb0b48162.50188414","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:30:42.366Z"}
|
|
425
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:30:44.300Z"}
|
|
426
|
+
{"command":"ls -l","commandId":"cmd_68663fb2b52730.34510282","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:44.300Z","userEmail":"bac9i4mo@gmail.com"}
|
|
427
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:30:44.351Z","userEmail":"bac9i4mo@gmail.com"}
|
|
428
|
+
{"commandId":"cmd_68663fb2b52730.34510282","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:30:44.402Z"}
|
|
429
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:36:41.104Z"}
|
|
430
|
+
{"command":"ls","commandId":"cmd_6866411740b505.96303628","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:41.104Z","userEmail":"bac9i4mo@gmail.com"}
|
|
431
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:41.237Z","userEmail":"bac9i4mo@gmail.com"}
|
|
432
|
+
{"commandId":"cmd_6866411740b505.96303628","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:36:41.296Z"}
|
|
433
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:36:43.148Z"}
|
|
434
|
+
{"command":"ls -la","commandId":"cmd_68664119bb7974.57222195","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:43.152Z","userEmail":"bac9i4mo@gmail.com"}
|
|
435
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:43.211Z","userEmail":"bac9i4mo@gmail.com"}
|
|
436
|
+
{"commandId":"cmd_68664119bb7974.57222195","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:36:43.266Z"}
|
|
437
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:36:45.196Z"}
|
|
438
|
+
{"command":"ls -l","commandId":"cmd_6866411bbc5de8.90209692","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:45.197Z","userEmail":"bac9i4mo@gmail.com"}
|
|
439
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:36:45.248Z","userEmail":"bac9i4mo@gmail.com"}
|
|
440
|
+
{"commandId":"cmd_6866411bbc5de8.90209692","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:36:45.304Z"}
|
|
441
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:42:40.314Z"}
|
|
442
|
+
{"command":"ls -la","commandId":"cmd_6866427f3692e0.75937927","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:40.315Z","userEmail":"bac9i4mo@gmail.com"}
|
|
443
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:40.443Z","userEmail":"bac9i4mo@gmail.com"}
|
|
444
|
+
{"commandId":"cmd_6866427f3692e0.75937927","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:42:40.508Z"}
|
|
445
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:42:42.362Z"}
|
|
446
|
+
{"command":"ls","commandId":"cmd_68664280b149e2.21542241","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:42.363Z","userEmail":"bac9i4mo@gmail.com"}
|
|
447
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:42.414Z","userEmail":"bac9i4mo@gmail.com"}
|
|
448
|
+
{"commandId":"cmd_68664280b149e2.21542241","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:42:42.464Z"}
|
|
449
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:42:44.397Z"}
|
|
450
|
+
{"command":"ls -l","commandId":"cmd_68664282b204b4.27633458","level":"info","message":"Processing command","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:44.398Z","userEmail":"bac9i4mo@gmail.com"}
|
|
451
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751530342059_qaqodnpky","timestamp":"2025-07-03T08:42:44.451Z","userEmail":"bac9i4mo@gmail.com"}
|
|
452
|
+
{"commandId":"cmd_68664282b204b4.27633458","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:42:44.503Z"}
|
|
453
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:46:06.198Z"}
|
|
454
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:46:06.198Z"}
|
|
455
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:46:06.219Z"}
|
|
456
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:46:06.219Z"}
|
|
457
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T08:46:09.551Z","webServer":"https://www.igori.eu"}
|
|
458
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T08:46:09.552Z"}
|
|
459
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T08:46:09.699Z"}
|
|
460
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:15.881Z"}
|
|
461
|
+
{"command":"ls -l","commandId":"cmd_68664357d16835.52299597","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:15.881Z","userEmail":"bac9i4mo@gmail.com"}
|
|
462
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:16.003Z","userEmail":"bac9i4mo@gmail.com"}
|
|
463
|
+
{"commandId":"cmd_68664357d16835.52299597","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:16.056Z"}
|
|
464
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:17.924Z"}
|
|
465
|
+
{"command":"ls -la","commandId":"cmd_6866435857e729.32030235","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:17.924Z","userEmail":"bac9i4mo@gmail.com"}
|
|
466
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:17.974Z","userEmail":"bac9i4mo@gmail.com"}
|
|
467
|
+
{"commandId":"cmd_6866435857e729.32030235","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:18.052Z"}
|
|
468
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:19.965Z"}
|
|
469
|
+
{"command":"uname -a","commandId":"cmd_6866435a58a1a8.19634797","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:19.966Z","userEmail":"bac9i4mo@gmail.com"}
|
|
470
|
+
{"command":"uname -a","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:20.015Z","userEmail":"bac9i4mo@gmail.com"}
|
|
471
|
+
{"commandId":"cmd_6866435a58a1a8.19634797","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:20.068Z"}
|
|
472
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:22.002Z"}
|
|
473
|
+
{"command":"whoami","commandId":"cmd_6866435c595003.30754135","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:22.003Z","userEmail":"bac9i4mo@gmail.com"}
|
|
474
|
+
{"command":"whoami","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:22.050Z","userEmail":"bac9i4mo@gmail.com"}
|
|
475
|
+
{"commandId":"cmd_6866435c595003.30754135","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:22.106Z"}
|
|
476
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:24.037Z"}
|
|
477
|
+
{"command":"ls","commandId":"cmd_6866435e5a0a64.97655376","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:24.038Z","userEmail":"bac9i4mo@gmail.com"}
|
|
478
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:24.090Z","userEmail":"bac9i4mo@gmail.com"}
|
|
479
|
+
{"commandId":"cmd_6866435e5a0a64.97655376","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:24.142Z"}
|
|
480
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:26.077Z"}
|
|
481
|
+
{"command":"ls -la","commandId":"cmd_686643605aa1f6.96044640","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:26.077Z","userEmail":"bac9i4mo@gmail.com"}
|
|
482
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:26.124Z","userEmail":"bac9i4mo@gmail.com"}
|
|
483
|
+
{"commandId":"cmd_686643605aa1f6.96044640","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:26.184Z"}
|
|
484
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:28.112Z"}
|
|
485
|
+
{"command":"cd ..","commandId":"cmd_68664363b8b3d3.99302499","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:28.113Z","userEmail":"bac9i4mo@gmail.com"}
|
|
486
|
+
{"command":"cd ..","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:28.166Z","userEmail":"bac9i4mo@gmail.com"}
|
|
487
|
+
{"commandId":"cmd_68664363b8b3d3.99302499","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:28.202Z"}
|
|
488
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:30.151Z"}
|
|
489
|
+
{"command":"ls","commandId":"cmd_68664364792228.00665670","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:30.151Z","userEmail":"bac9i4mo@gmail.com"}
|
|
490
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:30.201Z","userEmail":"bac9i4mo@gmail.com"}
|
|
491
|
+
{"commandId":"cmd_68664364792228.00665670","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:30.253Z"}
|
|
492
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:32.187Z"}
|
|
493
|
+
{"command":"ls -la","commandId":"cmd_6866436679c6d1.14157543","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:32.187Z","userEmail":"bac9i4mo@gmail.com"}
|
|
494
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:32.252Z","userEmail":"bac9i4mo@gmail.com"}
|
|
495
|
+
{"commandId":"cmd_6866436679c6d1.14157543","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:32.307Z"}
|
|
496
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:34.222Z"}
|
|
497
|
+
{"command":"cd ..","commandId":"cmd_686643687a5538.43661705","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:34.223Z","userEmail":"bac9i4mo@gmail.com"}
|
|
498
|
+
{"command":"cd ..","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:34.269Z","userEmail":"bac9i4mo@gmail.com"}
|
|
499
|
+
{"commandId":"cmd_686643687a5538.43661705","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:34.303Z"}
|
|
500
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:36.261Z"}
|
|
501
|
+
{"command":"ls -l","commandId":"cmd_6866436a7ade89.66412869","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:36.263Z","userEmail":"bac9i4mo@gmail.com"}
|
|
502
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:36.309Z","userEmail":"bac9i4mo@gmail.com"}
|
|
503
|
+
{"commandId":"cmd_6866436a7ade89.66412869","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:36.370Z"}
|
|
504
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:38.305Z"}
|
|
505
|
+
{"command":"ls","commandId":"cmd_6866436c7b6e47.00596944","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:38.305Z","userEmail":"bac9i4mo@gmail.com"}
|
|
506
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:38.354Z","userEmail":"bac9i4mo@gmail.com"}
|
|
507
|
+
{"commandId":"cmd_6866436c7b6e47.00596944","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:38.404Z"}
|
|
508
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:40.342Z"}
|
|
509
|
+
{"command":"ls -l","commandId":"cmd_6866436e7c0744.19930479","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:40.342Z","userEmail":"bac9i4mo@gmail.com"}
|
|
510
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:40.391Z","userEmail":"bac9i4mo@gmail.com"}
|
|
511
|
+
{"commandId":"cmd_6866436e7c0744.19930479","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:40.444Z"}
|
|
512
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:42.381Z"}
|
|
513
|
+
{"command":"ls -la","commandId":"cmd_686643707c9a29.73762903","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:42.381Z","userEmail":"bac9i4mo@gmail.com"}
|
|
514
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:42.432Z","userEmail":"bac9i4mo@gmail.com"}
|
|
515
|
+
{"commandId":"cmd_686643707c9a29.73762903","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:42.488Z"}
|
|
516
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:44.418Z"}
|
|
517
|
+
{"command":"ls","commandId":"cmd_686643727d3551.02061358","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:44.418Z","userEmail":"bac9i4mo@gmail.com"}
|
|
518
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:44.471Z","userEmail":"bac9i4mo@gmail.com"}
|
|
519
|
+
{"commandId":"cmd_686643727d3551.02061358","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:44.519Z"}
|
|
520
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:46.452Z"}
|
|
521
|
+
{"command":"cd library","commandId":"cmd_6866437503b8e0.31666494","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:46.453Z","userEmail":"bac9i4mo@gmail.com"}
|
|
522
|
+
{"command":"cd library","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:46.501Z","userEmail":"bac9i4mo@gmail.com"}
|
|
523
|
+
{"commandId":"cmd_6866437503b8e0.31666494","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:46.536Z"}
|
|
524
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:48.487Z"}
|
|
525
|
+
{"command":"ls -la","commandId":"cmd_68664377480e35.83107378","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:48.487Z","userEmail":"bac9i4mo@gmail.com"}
|
|
526
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:48.532Z","userEmail":"bac9i4mo@gmail.com"}
|
|
527
|
+
{"commandId":"cmd_68664377480e35.83107378","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:48.603Z"}
|
|
528
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:50.522Z"}
|
|
529
|
+
{"command":"ls -l","commandId":"cmd_68664378c2a6f5.95232153","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:50.523Z","userEmail":"bac9i4mo@gmail.com"}
|
|
530
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:50.569Z","userEmail":"bac9i4mo@gmail.com"}
|
|
531
|
+
{"commandId":"cmd_68664378c2a6f5.95232153","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:50.699Z"}
|
|
532
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:46:52.566Z"}
|
|
533
|
+
{"command":"ls","commandId":"cmd_6866437ac33871.49320113","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:52.566Z","userEmail":"bac9i4mo@gmail.com"}
|
|
534
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:46:52.616Z","userEmail":"bac9i4mo@gmail.com"}
|
|
535
|
+
{"commandId":"cmd_6866437ac33871.49320113","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:46:52.665Z"}
|
|
536
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:27.202Z"}
|
|
537
|
+
{"command":"cd user","commandId":"cmd_6866441612aa30.85216195","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:27.202Z","userEmail":"bac9i4mo@gmail.com"}
|
|
538
|
+
{"command":"cd user","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:27.317Z","userEmail":"bac9i4mo@gmail.com"}
|
|
539
|
+
{"commandId":"cmd_6866441612aa30.85216195","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:27.354Z"}
|
|
540
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:29.251Z"}
|
|
541
|
+
{"command":"ls -l","commandId":"cmd_68664417cdd815.41439595","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:29.251Z","userEmail":"bac9i4mo@gmail.com"}
|
|
542
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:29.300Z","userEmail":"bac9i4mo@gmail.com"}
|
|
543
|
+
{"commandId":"cmd_68664417cdd815.41439595","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:29.375Z"}
|
|
544
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:31.286Z"}
|
|
545
|
+
{"command":"ls","commandId":"cmd_68664419ce8340.75023391","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:31.286Z","userEmail":"bac9i4mo@gmail.com"}
|
|
546
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:31.334Z","userEmail":"bac9i4mo@gmail.com"}
|
|
547
|
+
{"commandId":"cmd_68664419ce8340.75023391","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:31.387Z"}
|
|
548
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:33.321Z"}
|
|
549
|
+
{"command":"ls -la","commandId":"cmd_6866441bcf5394.93464909","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:33.321Z","userEmail":"bac9i4mo@gmail.com"}
|
|
550
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:33.381Z","userEmail":"bac9i4mo@gmail.com"}
|
|
551
|
+
{"commandId":"cmd_6866441bcf5394.93464909","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:33.510Z"}
|
|
552
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:35.355Z"}
|
|
553
|
+
{"command":"cd users","commandId":"cmd_6866441dd00f03.64002466","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:35.355Z","userEmail":"bac9i4mo@gmail.com"}
|
|
554
|
+
{"command":"cd users","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:35.401Z","userEmail":"bac9i4mo@gmail.com"}
|
|
555
|
+
{"commandId":"cmd_6866441dd00f03.64002466","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:35.437Z"}
|
|
556
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:37.391Z"}
|
|
557
|
+
{"command":"ls -la","commandId":"cmd_686644203f3397.27887159","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:37.392Z","userEmail":"bac9i4mo@gmail.com"}
|
|
558
|
+
{"command":"ls -la","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:37.446Z","userEmail":"bac9i4mo@gmail.com"}
|
|
559
|
+
{"commandId":"cmd_686644203f3397.27887159","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:37.516Z"}
|
|
560
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:39.436Z"}
|
|
561
|
+
{"command":"ls","commandId":"cmd_68664421b9d797.93120808","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:39.436Z","userEmail":"bac9i4mo@gmail.com"}
|
|
562
|
+
{"command":"ls","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:39.490Z","userEmail":"bac9i4mo@gmail.com"}
|
|
563
|
+
{"commandId":"cmd_68664421b9d797.93120808","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:39.545Z"}
|
|
564
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T08:49:41.476Z"}
|
|
565
|
+
{"command":"ls -l","commandId":"cmd_68664423ba6a64.23384141","level":"info","message":"Processing command","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:41.476Z","userEmail":"bac9i4mo@gmail.com"}
|
|
566
|
+
{"command":"ls -l","level":"info","message":"Executing command on Mac","sessionId":"terminal_1751532375488_tz53vwzj2","timestamp":"2025-07-03T08:49:41.529Z","userEmail":"bac9i4mo@gmail.com"}
|
|
567
|
+
{"commandId":"cmd_68664423ba6a64.23384141","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T08:49:41.600Z"}
|
|
568
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:49:56.330Z"}
|
|
569
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:49:56.331Z"}
|
|
570
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T08:49:56.331Z"}
|
|
571
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T08:49:56.331Z"}
|
|
572
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T09:17:54.083Z","webServer":"https://www.igori.eu"}
|
|
573
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T09:17:54.085Z"}
|
|
574
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T09:17:54.510Z"}
|
|
575
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:17:59.466Z"}
|
|
576
|
+
{"command":"ls -la","commandId":"cmd_68664ac6573e91.11683056","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:17:59.467Z","userEmail":"bac9i4mo@gmail.com"}
|
|
577
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:17:59.583Z"}
|
|
578
|
+
{"commandId":"cmd_68664ac6573e91.11683056","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:17:59.619Z"}
|
|
579
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:18:01.506Z"}
|
|
580
|
+
{"command":"whoami","commandId":"cmd_68664ac7d2b651.42984586","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:18:01.506Z","userEmail":"bac9i4mo@gmail.com"}
|
|
581
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:18:01.551Z"}
|
|
582
|
+
{"commandId":"cmd_68664ac7d2b651.42984586","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:18:01.586Z"}
|
|
583
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:18:03.542Z"}
|
|
584
|
+
{"command":"uname -a","commandId":"cmd_68664ac9de6b28.37940828","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:18:03.543Z","userEmail":"bac9i4mo@gmail.com"}
|
|
585
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:18:03.582Z"}
|
|
586
|
+
{"commandId":"cmd_68664ac9de6b28.37940828","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:18:03.615Z"}
|
|
587
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:18:05.577Z"}
|
|
588
|
+
{"command":"ls -l","commandId":"cmd_68664acbdf2500.10525511","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:18:05.577Z","userEmail":"bac9i4mo@gmail.com"}
|
|
589
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:18:05.617Z"}
|
|
590
|
+
{"commandId":"cmd_68664acbdf2500.10525511","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:18:05.650Z"}
|
|
591
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:18:07.613Z"}
|
|
592
|
+
{"command":"ls","commandId":"cmd_68664acddff3c5.26944973","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:18:07.613Z","userEmail":"bac9i4mo@gmail.com"}
|
|
593
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:18:07.662Z"}
|
|
594
|
+
{"commandId":"cmd_68664acddff3c5.26944973","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:18:07.695Z"}
|
|
595
|
+
{"level":"info","message":"Received 1 command(s) to process","timestamp":"2025-07-03T09:18:09.650Z"}
|
|
596
|
+
{"command":"ls","commandId":"cmd_68664acfe0a1b6.21842143","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-03T09:18:09.651Z","userEmail":"bac9i4mo@gmail.com"}
|
|
597
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-03T09:18:09.701Z"}
|
|
598
|
+
{"commandId":"cmd_68664acfe0a1b6.21842143","level":"info","message":"Response submitted successfully","timestamp":"2025-07-03T09:18:09.733Z"}
|
|
599
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T09:18:49.381Z"}
|
|
600
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T09:18:49.381Z"}
|
|
601
|
+
{"level":"info","message":"Received SIGINT, shutting down gracefully...","timestamp":"2025-07-03T09:18:49.382Z"}
|
|
602
|
+
{"level":"info","message":"Stopping HTTP polling agent","timestamp":"2025-07-03T09:18:49.382Z"}
|
|
603
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T09:26:56.200Z","webServer":"https://www.igori.eu"}
|
|
604
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T09:26:56.202Z"}
|
|
605
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T09:26:56.317Z"}
|
|
606
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-03T09:27:40.004Z","webServer":"https://www.igori.eu"}
|
|
607
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-03T09:27:40.006Z"}
|
|
608
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-03T09:27:40.117Z"}
|
|
609
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Terminal Mirror HTTP Agent starting...","timestamp":"2025-07-10T12:34:35.167Z","webServer":"https://www.igori.eu"}
|
|
610
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Starting HTTP polling agent","pollInterval":2000,"timestamp":"2025-07-10T12:34:35.168Z"}
|
|
611
|
+
{"agentId":"mac-karmalsky-Sergeis-MacBook-Pro-local-1751389952495","level":"info","message":"Successfully registered with server","ownerEmail":"bac9i4mo@gmail.com","timestamp":"2025-07-10T12:34:40.724Z"}
|
|
612
|
+
{"level":"info","message":"Received 5 command(s) to process","timestamp":"2025-07-10T12:34:44.855Z"}
|
|
613
|
+
{"command":"ls -l","commandId":"cmd_68664dbf3f0898.93538693","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:44.856Z","userEmail":"bac9i4mo@gmail.com"}
|
|
614
|
+
{"command":"ls -la","commandId":"cmd_68664ddd417a05.10652367","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:44.858Z","userEmail":"bac9i4mo@gmail.com"}
|
|
615
|
+
{"command":"ls","commandId":"cmd_68664dfb4472a0.26200107","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:44.861Z","userEmail":"bac9i4mo@gmail.com"}
|
|
616
|
+
{"commandId":"cmd_68664e1946fb03.85255685","level":"warn","message":"Max concurrent commands reached, skipping","timestamp":"2025-07-10T12:34:44.863Z"}
|
|
617
|
+
{"commandId":"cmd_68664e37498036.90777238","level":"warn","message":"Max concurrent commands reached, skipping","timestamp":"2025-07-10T12:34:44.863Z"}
|
|
618
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:44.985Z"}
|
|
619
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:44.995Z"}
|
|
620
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:44.997Z"}
|
|
621
|
+
{"commandId":"cmd_68664ddd417a05.10652367","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:46.303Z"}
|
|
622
|
+
{"commandId":"cmd_68664dfb4472a0.26200107","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:46.325Z"}
|
|
623
|
+
{"level":"info","message":"Received 3 command(s) to process","timestamp":"2025-07-10T12:34:47.696Z"}
|
|
624
|
+
{"command":"ls -l","commandId":"cmd_68664dbf3f0898.93538693","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:47.697Z","userEmail":"bac9i4mo@gmail.com"}
|
|
625
|
+
{"command":"ls","commandId":"cmd_68664e1946fb03.85255685","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:47.698Z","userEmail":"bac9i4mo@gmail.com"}
|
|
626
|
+
{"command":"ls -la","commandId":"cmd_68664e37498036.90777238","level":"info","message":"Processing command","sessionId":"terminal_1751534278021_67c406bi0","timestamp":"2025-07-10T12:34:47.699Z","userEmail":"bac9i4mo@gmail.com"}
|
|
627
|
+
{"commandId":"cmd_68664dbf3f0898.93538693","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:47.700Z"}
|
|
628
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:47.740Z"}
|
|
629
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:47.745Z"}
|
|
630
|
+
{"error":"Request failed with status code 400","level":"warn","message":"Google token validation failed","timestamp":"2025-07-10T12:34:47.749Z"}
|
|
631
|
+
{"commandId":"cmd_68664e1946fb03.85255685","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:48.112Z"}
|
|
632
|
+
{"commandId":"cmd_68664dbf3f0898.93538693","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:48.214Z"}
|
|
633
|
+
{"commandId":"cmd_68664e37498036.90777238","level":"info","message":"Response submitted successfully","timestamp":"2025-07-10T12:34:48.387Z"}
|
|
634
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T13:37:13.643Z"}
|
|
635
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T13:37:13.735Z"}
|
|
636
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T13:37:15.746Z"}
|
|
637
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T13:54:39.519Z"}
|
|
638
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T13:54:39.523Z"}
|
|
639
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T13:54:41.544Z"}
|
|
640
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T13:54:43.551Z"}
|
|
641
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T14:11:02.354Z"}
|
|
642
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:11:02.356Z"}
|
|
643
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:11:04.362Z"}
|
|
644
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:11:06.367Z"}
|
|
645
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T14:27:18.125Z"}
|
|
646
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:18.129Z"}
|
|
647
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:20.136Z"}
|
|
648
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:22.145Z"}
|
|
649
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:42.506Z"}
|
|
650
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:44.516Z"}
|
|
651
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:46.894Z"}
|
|
652
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:48.923Z"}
|
|
653
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:50.928Z"}
|
|
654
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:52.935Z"}
|
|
655
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:54.943Z"}
|
|
656
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:56.947Z"}
|
|
657
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:27:58.952Z"}
|
|
658
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T14:28:00.956Z"}
|
|
659
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T15:47:50.827Z"}
|
|
660
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:47:51.036Z"}
|
|
661
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:47:53.045Z"}
|
|
662
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:47:55.052Z"}
|
|
663
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T15:52:02.315Z"}
|
|
664
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:52:02.322Z"}
|
|
665
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:52:04.329Z"}
|
|
666
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:52:06.335Z"}
|
|
667
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T15:52:08.344Z"}
|
|
668
|
+
{"error":"socket hang up","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T16:51:27.724Z"}
|
|
669
|
+
{"error":"socket hang up","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T17:05:20.693Z"}
|
|
670
|
+
{"error":"socket hang up","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T17:09:17.827Z"}
|
|
671
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T18:45:43.810Z"}
|
|
672
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:44.188Z"}
|
|
673
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:46.203Z"}
|
|
674
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:48.213Z"}
|
|
675
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:50.222Z"}
|
|
676
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:52.228Z"}
|
|
677
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:54.238Z"}
|
|
678
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:56.245Z"}
|
|
679
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:45:58.252Z"}
|
|
680
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:00.259Z"}
|
|
681
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:02.267Z"}
|
|
682
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:04.275Z"}
|
|
683
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:06.283Z"}
|
|
684
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:08.293Z"}
|
|
685
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:10.300Z"}
|
|
686
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:12.306Z"}
|
|
687
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:14.314Z"}
|
|
688
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:16.323Z"}
|
|
689
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:18.331Z"}
|
|
690
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:20.339Z"}
|
|
691
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:22.347Z"}
|
|
692
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:24.354Z"}
|
|
693
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:26.362Z"}
|
|
694
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T18:46:28.372Z"}
|
|
695
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T19:02:27.084Z"}
|
|
696
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:27.087Z"}
|
|
697
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:29.096Z"}
|
|
698
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:31.103Z"}
|
|
699
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:33.110Z"}
|
|
700
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:35.118Z"}
|
|
701
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:37.126Z"}
|
|
702
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:39.131Z"}
|
|
703
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:41.139Z"}
|
|
704
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:43.145Z"}
|
|
705
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:45.153Z"}
|
|
706
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:47.162Z"}
|
|
707
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:49.169Z"}
|
|
708
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:51.175Z"}
|
|
709
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:53.184Z"}
|
|
710
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:55.192Z"}
|
|
711
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:02:57.200Z"}
|
|
712
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T19:19:45.644Z"}
|
|
713
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:45.647Z"}
|
|
714
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:47.655Z"}
|
|
715
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:49.660Z"}
|
|
716
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:51.669Z"}
|
|
717
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:53.676Z"}
|
|
718
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:55.684Z"}
|
|
719
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:57.691Z"}
|
|
720
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:19:59.699Z"}
|
|
721
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:01.707Z"}
|
|
722
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:03.714Z"}
|
|
723
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:05.722Z"}
|
|
724
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:07.732Z"}
|
|
725
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:09.739Z"}
|
|
726
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:11.746Z"}
|
|
727
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:13.755Z"}
|
|
728
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:20:15.763Z"}
|
|
729
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T19:26:57.042Z"}
|
|
730
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:26:57.048Z"}
|
|
731
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:26:59.056Z"}
|
|
732
|
+
{"error":"getaddrinfo ENOTFOUND www.igori.eu","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T19:27:01.063Z"}
|
|
733
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T20:17:25.654Z"}
|
|
734
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T20:26:53.329Z"}
|
|
735
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T20:48:57.549Z"}
|
|
736
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T21:09:19.449Z"}
|
|
737
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T21:25:12.288Z"}
|
|
738
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T21:27:49.249Z"}
|
|
739
|
+
{"error":"socket hang up","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T23:13:11.267Z"}
|
|
740
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T23:14:29.564Z"}
|
|
741
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T23:15:07.361Z"}
|
|
742
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T23:15:19.372Z"}
|
|
743
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-10T23:20:06.581Z"}
|
|
744
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-10T23:23:36.602Z"}
|
|
745
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T00:26:59.892Z"}
|
|
746
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T00:27:11.908Z"}
|
|
747
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:19:12.137Z"}
|
|
748
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:19:24.148Z"}
|
|
749
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:19:36.156Z"}
|
|
750
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:20:08.410Z"}
|
|
751
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:20:20.417Z"}
|
|
752
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:22:14.976Z"}
|
|
753
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:24:52.105Z"}
|
|
754
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:25:57.631Z"}
|
|
755
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T01:26:04.638Z"}
|
|
756
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:26:14.644Z"}
|
|
757
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:26:26.651Z"}
|
|
758
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:26:38.661Z"}
|
|
759
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:26:50.677Z"}
|
|
760
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:30:10.260Z"}
|
|
761
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:33:02.507Z"}
|
|
762
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T01:33:21.853Z"}
|
|
763
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T01:33:31.859Z"}
|
|
764
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:14:27.834Z"}
|
|
765
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:21:29.374Z"}
|
|
766
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:21:43.522Z"}
|
|
767
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:21:55.530Z"}
|
|
768
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:22:07.538Z"}
|
|
769
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:22:19.547Z"}
|
|
770
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:22:31.555Z"}
|
|
771
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T02:22:38.566Z"}
|
|
772
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:22:48.570Z"}
|
|
773
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:25:18.353Z"}
|
|
774
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:25:30.362Z"}
|
|
775
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:27:29.370Z"}
|
|
776
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:30:36.599Z"}
|
|
777
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T02:31:52.621Z"}
|
|
778
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:32:02.628Z"}
|
|
779
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:32:14.633Z"}
|
|
780
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:32:26.642Z"}
|
|
781
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:32:38.647Z"}
|
|
782
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:32:50.653Z"}
|
|
783
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T02:32:57.661Z"}
|
|
784
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:33:07.665Z"}
|
|
785
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:33:19.673Z"}
|
|
786
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T02:33:31.682Z"}
|
|
787
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T03:15:52.862Z"}
|
|
788
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:16:13.459Z"}
|
|
789
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:16:58.153Z"}
|
|
790
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:18:16.278Z"}
|
|
791
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:18:28.285Z"}
|
|
792
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:18:40.296Z"}
|
|
793
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:20:23.638Z"}
|
|
794
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:20:35.649Z"}
|
|
795
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:23:02.305Z"}
|
|
796
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:27:38.207Z"}
|
|
797
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:27:50.217Z"}
|
|
798
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:29:13.813Z"}
|
|
799
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:29:38.142Z"}
|
|
800
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:29:50.157Z"}
|
|
801
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:30:02.176Z"}
|
|
802
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:30:14.183Z"}
|
|
803
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:30:26.192Z"}
|
|
804
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T03:30:33.201Z"}
|
|
805
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:30:43.211Z"}
|
|
806
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:30:55.233Z"}
|
|
807
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:31:07.244Z"}
|
|
808
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:31:19.251Z"}
|
|
809
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:31:31.259Z"}
|
|
810
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T03:31:38.266Z"}
|
|
811
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:31:48.274Z"}
|
|
812
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T03:58:02.452Z"}
|
|
813
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:17:59.428Z"}
|
|
814
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:18:11.439Z"}
|
|
815
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T04:20:54.143Z"}
|
|
816
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:22:30.770Z"}
|
|
817
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:22:42.783Z"}
|
|
818
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:22:54.791Z"}
|
|
819
|
+
{"error":"timeout of 5000ms exceeded","level":"warn","message":"Heartbeat failed","timestamp":"2025-07-11T04:23:01.799Z"}
|
|
820
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:23:43.337Z"}
|
|
821
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:25:28.146Z"}
|
|
822
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:26:41.317Z"}
|
|
823
|
+
{"error":"timeout of 10000ms exceeded","level":"error","message":"Failed to poll for commands","timestamp":"2025-07-11T04:29:36.892Z"}
|