@uipath/solution-tool 1.197.0 → 1.198.0-preview.101
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/deploy.js +2891 -2360
- package/dist/init.js +1334 -848
- package/dist/pack.js +46393 -31979
- package/dist/packager-tool.js +4676 -0
- package/dist/publish.js +1856 -1346
- package/dist/resource.js +1918 -1418
- package/dist/services/deploy-list-service.d.ts +9 -0
- package/dist/services/pack-command-service.d.ts +1 -0
- package/dist/services/packages-list-service.d.ts +9 -0
- package/dist/services/publish-service.d.ts +1 -1
- package/dist/tool.js +14103 -14998
- package/package.json +2 -2
|
@@ -29,6 +29,8 @@ export interface ListDeploymentsOptions {
|
|
|
29
29
|
folderKey?: string;
|
|
30
30
|
/** Max deployments to fetch. Default `DEFAULT_PAGE_SIZE`. */
|
|
31
31
|
limit?: number;
|
|
32
|
+
/** Number of deployments to skip before the first fetched row (pre-filter). Default 0. */
|
|
33
|
+
offset?: number;
|
|
32
34
|
/** Column to sort by. Default `"startTime"`. */
|
|
33
35
|
sortBy?: string;
|
|
34
36
|
/** Sort direction. Default `"Descending"`. */
|
|
@@ -41,6 +43,13 @@ export interface ListDeploymentsSuccess {
|
|
|
41
43
|
deployments: DeploymentSummary[];
|
|
42
44
|
/** Echo of the request limit so callers can render pagination UI without re-deriving. */
|
|
43
45
|
limit: number;
|
|
46
|
+
/** Echo of the request offset. */
|
|
47
|
+
offset: number;
|
|
48
|
+
/** Total deployments on the server, pre folder filtering.
|
|
49
|
+
* `undefined` when the response omits `count` — the SDK deserializer has
|
|
50
|
+
* no fallback for it. `Pagination` then derives `HasMore` from
|
|
51
|
+
* `returned === limit`. */
|
|
52
|
+
total?: number;
|
|
44
53
|
}
|
|
45
54
|
export interface ListDeploymentsFailure {
|
|
46
55
|
ok: false;
|
|
@@ -18,6 +18,7 @@ export declare class PackCommandService {
|
|
|
18
18
|
* Execute the pack command and return result (for programmatic usage and testing)
|
|
19
19
|
*/
|
|
20
20
|
executeAsync(solutionPath: string, options: PackCommandOptions): Promise<ToolResult>;
|
|
21
|
+
private prepareSolutionDirectoryForPack;
|
|
21
22
|
private ensurePackagerAsync;
|
|
22
23
|
private createPackOptions;
|
|
23
24
|
}
|
|
@@ -26,6 +26,8 @@ export interface ListPackagesOptions {
|
|
|
26
26
|
envFilePath?: string;
|
|
27
27
|
/** Max packages to fetch. Default `DEFAULT_PAGE_SIZE`. */
|
|
28
28
|
limit?: number;
|
|
29
|
+
/** Number of packages to skip before the first returned row. Default 0. */
|
|
30
|
+
offset?: number;
|
|
29
31
|
/** Column to sort by. Default `"publishDate"`. */
|
|
30
32
|
sortBy?: string;
|
|
31
33
|
/** Sort direction. Default `"Descending"`. */
|
|
@@ -40,6 +42,13 @@ export interface ListPackagesSuccess {
|
|
|
40
42
|
packages: PackageSummary[];
|
|
41
43
|
/** Echo of the request limit so callers can render pagination UI without re-deriving. */
|
|
42
44
|
limit: number;
|
|
45
|
+
/** Echo of the request offset. */
|
|
46
|
+
offset: number;
|
|
47
|
+
/** Total packages matching the filter, as reported by the server.
|
|
48
|
+
* `undefined` when the response omits `count` — the SDK deserializer has
|
|
49
|
+
* no fallback for it. `Pagination` then derives `HasMore` from
|
|
50
|
+
* `returned === limit`. */
|
|
51
|
+
total?: number;
|
|
43
52
|
}
|
|
44
53
|
export interface ListPackagesFailure {
|
|
45
54
|
ok: false;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/** Discriminator for {@link PublishFailure}; library callers can ignore the tag and read `.message` / `.ok`. */
|
|
2
|
-
export type PublishFailureReason = "auth_failed" | "file_not_found" | "not_a_zip" | "file_read_failed" | "personal_workspace_resolution_failed" | "upload_failed" | "upload_version_conflict" | "upload_network" | "poll_timeout" | "poll_failed" | "poll_aborted" | "publish_failed";
|
|
2
|
+
export type PublishFailureReason = "auth_failed" | "file_not_found" | "not_a_zip" | "not_packed" | "file_read_failed" | "personal_workspace_resolution_failed" | "upload_failed" | "upload_version_conflict" | "upload_network" | "poll_timeout" | "poll_failed" | "poll_aborted" | "publish_failed";
|
|
3
3
|
export interface PublishOptions {
|
|
4
4
|
/** Override the active tenant for auth resolution. The CLI's deprecated `--tenant` flag flows through here. */
|
|
5
5
|
tenant?: string;
|