@uipath/solution-tool 1.1.0 → 1.196.0

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.
Files changed (41) hide show
  1. package/README.md +32 -0
  2. package/dist/deploy.d.ts +27 -0
  3. package/dist/deploy.js +43244 -0
  4. package/dist/init.d.ts +6 -0
  5. package/dist/init.js +10381 -0
  6. package/dist/models/index.d.ts +1 -0
  7. package/dist/models/pack-command-types.d.ts +28 -0
  8. package/dist/pack.d.ts +6 -0
  9. package/dist/pack.js +234469 -0
  10. package/dist/providers/file-storage-provider.d.ts +11 -0
  11. package/dist/providers/resource-builder-init.d.ts +12 -0
  12. package/dist/providers/solution-access-provider.d.ts +18 -0
  13. package/dist/publish.d.ts +7 -0
  14. package/dist/publish.js +33430 -0
  15. package/dist/resource.d.ts +7 -0
  16. package/dist/resource.js +47215 -0
  17. package/dist/services/activation.d.ts +51 -0
  18. package/dist/services/auth-helper.d.ts +13 -0
  19. package/dist/services/deploy-activate-service.d.ts +47 -0
  20. package/dist/services/deploy-list-service.d.ts +59 -0
  21. package/dist/services/deploy-run-service.d.ts +102 -0
  22. package/dist/services/deploy-uninstall-service.d.ts +47 -0
  23. package/dist/services/deployment-search.d.ts +77 -0
  24. package/dist/services/emit-runtime-dependencies.d.ts +37 -0
  25. package/dist/services/entry-point-spec-enhancer.d.ts +31 -0
  26. package/dist/services/folder-helper.d.ts +24 -0
  27. package/dist/services/pack-command-service.d.ts +24 -0
  28. package/dist/services/pack-service.d.ts +32 -0
  29. package/dist/services/packager-tool-resolver.d.ts +6 -0
  30. package/dist/services/packages-list-service.d.ts +56 -0
  31. package/dist/services/personal-workspace-deploy.d.ts +28 -0
  32. package/dist/services/personal-workspace-resolver.d.ts +28 -0
  33. package/dist/services/publish-service.d.ts +61 -0
  34. package/dist/services/resource-refresh-service.d.ts +34 -0
  35. package/dist/services/solution-init-service.d.ts +37 -0
  36. package/dist/services/solution-manifest.d.ts +9 -0
  37. package/dist/services/sync-resources-from-bindings.d.ts +132 -0
  38. package/dist/templates/AGENTS.md +25 -16
  39. package/dist/tool.js +20953 -43671
  40. package/dist/utils/deployment-errors.d.ts +39 -0
  41. package/package.json +44 -43
@@ -0,0 +1 @@
1
+ export type { PackCommandOptions } from "./pack-command-types";
@@ -0,0 +1,28 @@
1
+ import type { PackageMetadataFields } from "@uipath/common";
2
+ /**
3
+ * Options for the PackCommandService
4
+ */
5
+ export interface PackCommandOptions extends PackageMetadataFields {
6
+ /**
7
+ * Output directory where the packed solution will be saved.
8
+ * Required for real packs; ignored in dry-run mode (a temp directory is
9
+ * allocated and discarded instead).
10
+ */
11
+ output?: string;
12
+ /** Package name (default: solution folder name) */
13
+ name?: string;
14
+ /** Package version (default: 1.0.0) */
15
+ version?: string;
16
+ /** Package author (default: UiPath) */
17
+ author?: string;
18
+ /** Package description (default: Created by UiPath) */
19
+ description?: string;
20
+ /** Minimum minutes before token expiration to trigger a refresh (default: 10) */
21
+ loginValidity?: number;
22
+ /**
23
+ * Run the full pack pipeline against a temporary directory and discard the
24
+ * produced artefacts. Surfaces the strict deploy-time validator without
25
+ * committing to a package build.
26
+ */
27
+ dryRun?: boolean;
28
+ }
package/dist/pack.d.ts ADDED
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Public `@uipath/solution-tool/pack` entry: programmatic solution packing for
3
+ * SDK consumers, without the CLI side effects of `tool.ts`. Mirrors `./init`.
4
+ */
5
+ export type { PackCommandOptions, PackResult, } from "./services/pack-service";
6
+ export { packSolutionAsync } from "./services/pack-service";