@uipath/common 1.200.0-preview.109 → 1.201.0-preview.115
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/command-extensions.d.ts +6 -0
- package/dist/formatter.d.ts +3 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +8016 -7859
- package/dist/output-codecs.d.ts +56 -0
- package/dist/solution-project-types.d.ts +22 -0
- package/dist/telemetry/proxy-http-agent.d.ts +2 -0
- package/package.json +2 -2
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
import "./command-examples";
|
|
3
|
+
import "./preview";
|
|
4
|
+
import "./trackedAction.js";
|
|
5
|
+
/** Install Common's Commander augmentations on a caller-owned constructor. */
|
|
6
|
+
export declare function installCommandExtensions(commandConstructor: typeof Command): void;
|
package/dist/formatter.d.ts
CHANGED
|
@@ -142,6 +142,9 @@ export declare function escapeNonAscii(jsonText: string): string;
|
|
|
142
142
|
* successfully can still throw at evaluation time (e.g. type-coercion errors
|
|
143
143
|
* when functions receive unexpected types). Callers that need a fully
|
|
144
144
|
* closed-box guarantee must additionally wrap {@link applyFilter}.
|
|
145
|
+
*
|
|
146
|
+
* Requires `loadOutputCodecsAsync({ filter: true })` to have run — the CLI
|
|
147
|
+
* host awaits it immediately before calling this.
|
|
145
148
|
*/
|
|
146
149
|
export declare function validateOutputFilter(filter: string): Error | null;
|
|
147
150
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ export * from "./attachment-binding";
|
|
|
2
2
|
export * from "./body-validators";
|
|
3
3
|
export * from "./catch-error";
|
|
4
4
|
export * from "./command-examples";
|
|
5
|
+
export * from "./command-extensions";
|
|
5
6
|
export * from "./command-help";
|
|
6
7
|
export * from "./command-walker";
|
|
7
8
|
export * from "./completer";
|
|
@@ -20,6 +21,7 @@ export * from "./logger";
|
|
|
20
21
|
export * from "./option-aliases";
|
|
21
22
|
export * from "./option-validators";
|
|
22
23
|
export * from "./orchestrator-urls";
|
|
24
|
+
export * from "./output-codecs";
|
|
23
25
|
export * from "./output-context";
|
|
24
26
|
export * from "./output-format-context";
|
|
25
27
|
export * from "./output-sink";
|
|
@@ -32,6 +34,7 @@ export * from "./screen-logger";
|
|
|
32
34
|
export * from "./sdk-user-agent";
|
|
33
35
|
export * from "./singleton";
|
|
34
36
|
export * from "./solution-project-artifacts";
|
|
37
|
+
export * from "./solution-project-types";
|
|
35
38
|
export * from "./stdin";
|
|
36
39
|
export { BrowserContextStorage } from "./telemetry/browser-context-storage.js";
|
|
37
40
|
export * from "./telemetry/command-attribution.js";
|
|
@@ -40,6 +43,7 @@ export { ConsoleTelemetryProvider } from "./telemetry/console-telemetry-provider
|
|
|
40
43
|
export * from "./telemetry/node.js";
|
|
41
44
|
export { setGlobalTelemetryProperties } from "./telemetry/node-appinsights-telemetry-provider.js";
|
|
42
45
|
export { redactError, redactProperties, redactProperty, redactValue, } from "./telemetry/pii-redactor.js";
|
|
46
|
+
export { getProxyAuthHttpsAgent, setProxyAuthHttpsAgent, } from "./telemetry/proxy-http-agent.js";
|
|
43
47
|
export { type ShipSucceededTelemetryPayload, trackShipSucceeded, } from "./telemetry/ship-succeeded.js";
|
|
44
48
|
export * from "./telemetry/telemetry-events.js";
|
|
45
49
|
export * from "./telemetry/telemetry-init.js";
|