@uipath/solution-sdk 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.
- package/README.md +21 -0
- package/dist/generated/src/apis/ConfigurationsApi.d.ts +28 -0
- package/dist/generated/src/apis/DeploymentsApi.d.ts +49 -0
- package/dist/generated/src/apis/PackagesApi.d.ts +88 -0
- package/dist/generated/src/apis/ProjectsApi.d.ts +37 -0
- package/dist/generated/src/apis/SearchApi.d.ts +38 -0
- package/dist/generated/src/apis/SettingsApi.d.ts +32 -0
- package/dist/generated/src/apis/index.d.ts +6 -0
- package/dist/generated/src/index.d.ts +3 -0
- package/dist/generated/src/models/BlobFileAccessDto.d.ts +45 -0
- package/dist/generated/src/models/CreateConfigurationCommand.d.ts +38 -0
- package/dist/generated/src/models/DeploymentActivationStatus.d.ts +30 -0
- package/dist/generated/src/models/DeploymentAutoRequest.d.ts +52 -0
- package/dist/generated/src/models/DeploymentDto.d.ts +38 -0
- package/dist/generated/src/models/DeploymentItemDto.d.ts +215 -0
- package/dist/generated/src/models/DeploymentOperation.d.ts +29 -0
- package/dist/generated/src/models/DeploymentOperationStatus.d.ts +28 -0
- package/dist/generated/src/models/DeploymentRequest.d.ts +69 -0
- package/dist/generated/src/models/DeploymentSearchItemDto2.d.ts +206 -0
- package/dist/generated/src/models/DeploymentStatus.d.ts +33 -0
- package/dist/generated/src/models/DeploymentType.d.ts +25 -0
- package/dist/generated/src/models/DeploymentUpgradeType.d.ts +27 -0
- package/dist/generated/src/models/DeploymentsSearchRequest2.d.ts +114 -0
- package/dist/generated/src/models/ExtendedPackageVersionState.d.ts +27 -0
- package/dist/generated/src/models/FolderInfo.d.ts +44 -0
- package/dist/generated/src/models/LocationDto.d.ts +44 -0
- package/dist/generated/src/models/OrderByDirection.d.ts +25 -0
- package/dist/generated/src/models/Overwrite.d.ts +63 -0
- package/dist/generated/src/models/OverwriteType.d.ts +25 -0
- package/dist/generated/src/models/PackageInfo.d.ts +99 -0
- package/dist/generated/src/models/PackageVersionComponentsDto.d.ts +46 -0
- package/dist/generated/src/models/PackageVersionInfoDto.d.ts +100 -0
- package/dist/generated/src/models/PackageVersionOrigin.d.ts +27 -0
- package/dist/generated/src/models/PackageVersionResourceDto.d.ts +63 -0
- package/dist/generated/src/models/PageInfoDtoOfDeploymentSearchItemDto2.d.ts +39 -0
- package/dist/generated/src/models/PageInfoDtoOfPackageInfo.d.ts +39 -0
- package/dist/generated/src/models/ProblemDetails.d.ts +57 -0
- package/dist/generated/src/models/ProjectCreateRequest.d.ts +38 -0
- package/dist/generated/src/models/ProjectDto.d.ts +75 -0
- package/dist/generated/src/models/ProjectImportStatus.d.ts +27 -0
- package/dist/generated/src/models/ResourceOverwrite.d.ts +45 -0
- package/dist/generated/src/models/ResourceStats.d.ts +44 -0
- package/dist/generated/src/models/ResponseDictionaryDto.d.ts +38 -0
- package/dist/generated/src/models/RuntimeSetup.d.ts +32 -0
- package/dist/generated/src/models/SearchFilter.d.ts +57 -0
- package/dist/generated/src/models/WorkflowAction.d.ts +29 -0
- package/dist/generated/src/models/index.d.ts +37 -0
- package/dist/generated/src/runtime.d.ts +184 -0
- package/dist/index.js +15612 -0
- package/dist/index.js.map +159 -0
- package/dist/scripts/generate-sdk.js +176 -0
- package/dist/scripts/generate-sdk.js.map +10 -0
- package/dist/src/bundle-service.d.ts +25 -0
- package/dist/src/index.d.ts +9 -0
- package/dist/src/solution-file.d.ts +133 -0
- package/dist/src/types.d.ts +42 -0
- package/dist/src/upload-service.d.ts +34 -0
- package/dist/src/user-agent.d.ts +1 -0
- package/dist/src/zip-utils.d.ts +63 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Automation Solution SDK
|
|
2
|
+
|
|
3
|
+
This package generates a TypeScript SDK for UiPath Automation Solution APIs.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Generate SDK
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
bun run generate
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
This will:
|
|
14
|
+
1. Download the swagger.json from UiPath Orchestrator
|
|
15
|
+
2. Filter the APIs to include only essential endpoints
|
|
16
|
+
3. Generate a TypeScript client using openapi-generator-cli
|
|
17
|
+
4. Export the generated code for use in other packages
|
|
18
|
+
|
|
19
|
+
## Documentation
|
|
20
|
+
|
|
21
|
+
For a detailed documentation check [README.md](generated/README.md)
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
import type { CreateConfigurationCommand } from '../models/index';
|
|
14
|
+
export interface ConfigurationsPostRequest {
|
|
15
|
+
createConfigurationCommand: CreateConfigurationCommand;
|
|
16
|
+
xUipathAsVersion?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare class ConfigurationsApi extends runtime.BaseAPI {
|
|
22
|
+
/**
|
|
23
|
+
*/
|
|
24
|
+
configurationsPostRaw(requestParameters: ConfigurationsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
|
|
25
|
+
/**
|
|
26
|
+
*/
|
|
27
|
+
configurationsPost(requestParameters: ConfigurationsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
import type { DeploymentAutoRequest, DeploymentDto, DeploymentItemDto, DeploymentRequest } from '../models/index';
|
|
14
|
+
export interface DeploymentsDeployRequest {
|
|
15
|
+
deploymentAutoRequest: DeploymentAutoRequest;
|
|
16
|
+
xUIPATHFolderKey?: string | null;
|
|
17
|
+
xUipathAsVersion?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface DeploymentsGetByKeyRequest {
|
|
20
|
+
deploymentKey: string;
|
|
21
|
+
xUipathAsVersion?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface DeploymentsPostRequest {
|
|
24
|
+
deploymentRequest: DeploymentRequest;
|
|
25
|
+
xUipathAsVersion?: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
*/
|
|
30
|
+
export declare class DeploymentsApi extends runtime.BaseAPI {
|
|
31
|
+
/**
|
|
32
|
+
*/
|
|
33
|
+
deploymentsDeployRaw(requestParameters: DeploymentsDeployRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeploymentDto>>;
|
|
34
|
+
/**
|
|
35
|
+
*/
|
|
36
|
+
deploymentsDeploy(requestParameters: DeploymentsDeployRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeploymentDto>;
|
|
37
|
+
/**
|
|
38
|
+
*/
|
|
39
|
+
deploymentsGetByKeyRaw(requestParameters: DeploymentsGetByKeyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeploymentItemDto>>;
|
|
40
|
+
/**
|
|
41
|
+
*/
|
|
42
|
+
deploymentsGetByKey(requestParameters: DeploymentsGetByKeyRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeploymentItemDto>;
|
|
43
|
+
/**
|
|
44
|
+
*/
|
|
45
|
+
deploymentsPostRaw(requestParameters: DeploymentsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<DeploymentItemDto>>;
|
|
46
|
+
/**
|
|
47
|
+
*/
|
|
48
|
+
deploymentsPost(requestParameters: DeploymentsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<DeploymentItemDto>;
|
|
49
|
+
}
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
import type { BlobFileAccessDto, LocationDto, PackageInfo, PackageVersionInfoDto } from '../models/index';
|
|
14
|
+
export interface PackagesDeletePackageRequest {
|
|
15
|
+
packageKey: string;
|
|
16
|
+
xUipathAsVersion?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface PackagesDeleteVersionRequest {
|
|
19
|
+
packageVersionKey: string;
|
|
20
|
+
xUipathAsVersion?: string;
|
|
21
|
+
}
|
|
22
|
+
export interface PackagesDownloadRequest {
|
|
23
|
+
packageVersionKey: string;
|
|
24
|
+
xUipathAsVersion?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface PackagesGetPackageRequest {
|
|
27
|
+
packageKey: string;
|
|
28
|
+
xUipathAsVersion?: string;
|
|
29
|
+
}
|
|
30
|
+
export interface PackagesGetPublishLocationsRequest {
|
|
31
|
+
xUipathAsVersion?: string;
|
|
32
|
+
}
|
|
33
|
+
export interface PackagesGetVersionRequest {
|
|
34
|
+
packageVersionKey: string;
|
|
35
|
+
xUipathAsVersion?: string;
|
|
36
|
+
}
|
|
37
|
+
export interface PackagesUploadRequest {
|
|
38
|
+
locationKey?: string | null;
|
|
39
|
+
xUipathAsVersion?: string;
|
|
40
|
+
body?: any;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
export declare class PackagesApi extends runtime.BaseAPI {
|
|
46
|
+
/**
|
|
47
|
+
*/
|
|
48
|
+
packagesDeletePackageRaw(requestParameters: PackagesDeletePackageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
49
|
+
/**
|
|
50
|
+
*/
|
|
51
|
+
packagesDeletePackage(requestParameters: PackagesDeletePackageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
52
|
+
/**
|
|
53
|
+
*/
|
|
54
|
+
packagesDeleteVersionRaw(requestParameters: PackagesDeleteVersionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
55
|
+
/**
|
|
56
|
+
*/
|
|
57
|
+
packagesDeleteVersion(requestParameters: PackagesDeleteVersionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
58
|
+
/**
|
|
59
|
+
*/
|
|
60
|
+
packagesDownloadRaw(requestParameters: PackagesDownloadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BlobFileAccessDto>>;
|
|
61
|
+
/**
|
|
62
|
+
*/
|
|
63
|
+
packagesDownload(requestParameters: PackagesDownloadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BlobFileAccessDto>;
|
|
64
|
+
/**
|
|
65
|
+
*/
|
|
66
|
+
packagesGetPackageRaw(requestParameters: PackagesGetPackageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PackageInfo>>;
|
|
67
|
+
/**
|
|
68
|
+
*/
|
|
69
|
+
packagesGetPackage(requestParameters: PackagesGetPackageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PackageInfo>;
|
|
70
|
+
/**
|
|
71
|
+
*/
|
|
72
|
+
packagesGetPublishLocationsRaw(requestParameters: PackagesGetPublishLocationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<LocationDto>>>;
|
|
73
|
+
/**
|
|
74
|
+
*/
|
|
75
|
+
packagesGetPublishLocations(requestParameters?: PackagesGetPublishLocationsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<LocationDto>>;
|
|
76
|
+
/**
|
|
77
|
+
*/
|
|
78
|
+
packagesGetVersionRaw(requestParameters: PackagesGetVersionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PackageVersionInfoDto>>;
|
|
79
|
+
/**
|
|
80
|
+
*/
|
|
81
|
+
packagesGetVersion(requestParameters: PackagesGetVersionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PackageVersionInfoDto>;
|
|
82
|
+
/**
|
|
83
|
+
*/
|
|
84
|
+
packagesUploadRaw(requestParameters: PackagesUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<string>>;
|
|
85
|
+
/**
|
|
86
|
+
*/
|
|
87
|
+
packagesUpload(requestParameters?: PackagesUploadRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<string>;
|
|
88
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
import type { ProjectCreateRequest, ProjectDto } from '../models/index';
|
|
14
|
+
export interface ProjectsPostRequest {
|
|
15
|
+
projectCreateRequest: ProjectCreateRequest;
|
|
16
|
+
}
|
|
17
|
+
export interface ProjectsPost2Request {
|
|
18
|
+
projectCreateRequest: ProjectCreateRequest;
|
|
19
|
+
xUipathAsVersion?: string;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
*/
|
|
24
|
+
export declare class ProjectsApi extends runtime.BaseAPI {
|
|
25
|
+
/**
|
|
26
|
+
*/
|
|
27
|
+
projectsPostRaw(requestParameters: ProjectsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProjectDto>>;
|
|
28
|
+
/**
|
|
29
|
+
*/
|
|
30
|
+
projectsPost(requestParameters: ProjectsPostRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProjectDto>;
|
|
31
|
+
/**
|
|
32
|
+
*/
|
|
33
|
+
projectsPost2Raw(requestParameters: ProjectsPost2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ProjectDto>>;
|
|
34
|
+
/**
|
|
35
|
+
*/
|
|
36
|
+
projectsPost2(requestParameters: ProjectsPost2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ProjectDto>;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
import type { DeploymentsSearchRequest2, PageInfoDtoOfDeploymentSearchItemDto2, PageInfoDtoOfPackageInfo, SearchFilter } from '../models/index';
|
|
14
|
+
export interface SearchSearchDeployments22Request {
|
|
15
|
+
deploymentsSearchRequest2: DeploymentsSearchRequest2;
|
|
16
|
+
xUipathAsVersion?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface SearchSearchPackagesRequest {
|
|
19
|
+
searchFilter: SearchFilter;
|
|
20
|
+
xUipathAsVersion?: string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
*/
|
|
25
|
+
export declare class SearchApi extends runtime.BaseAPI {
|
|
26
|
+
/**
|
|
27
|
+
*/
|
|
28
|
+
searchSearchDeployments22Raw(requestParameters: SearchSearchDeployments22Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PageInfoDtoOfDeploymentSearchItemDto2>>;
|
|
29
|
+
/**
|
|
30
|
+
*/
|
|
31
|
+
searchSearchDeployments22(requestParameters: SearchSearchDeployments22Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PageInfoDtoOfDeploymentSearchItemDto2>;
|
|
32
|
+
/**
|
|
33
|
+
*/
|
|
34
|
+
searchSearchPackagesRaw(requestParameters: SearchSearchPackagesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PageInfoDtoOfPackageInfo>>;
|
|
35
|
+
/**
|
|
36
|
+
*/
|
|
37
|
+
searchSearchPackages(requestParameters: SearchSearchPackagesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PageInfoDtoOfPackageInfo>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
export interface SettingsGetSettingsRequest {
|
|
14
|
+
nameSpace?: string | null;
|
|
15
|
+
ngVersion?: string | null;
|
|
16
|
+
xUipathAsVersion?: string;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
*/
|
|
21
|
+
export declare class SettingsApi extends runtime.BaseAPI {
|
|
22
|
+
/**
|
|
23
|
+
*/
|
|
24
|
+
settingsGetSettingsRaw(requestParameters: SettingsGetSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<{
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}>>;
|
|
27
|
+
/**
|
|
28
|
+
*/
|
|
29
|
+
settingsGetSettings(requestParameters?: SettingsGetSettingsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<{
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
}>;
|
|
32
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ResponseDictionaryDto } from './ResponseDictionaryDto';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface BlobFileAccessDto
|
|
17
|
+
*/
|
|
18
|
+
export interface BlobFileAccessDto {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof BlobFileAccessDto
|
|
23
|
+
*/
|
|
24
|
+
uri: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof BlobFileAccessDto
|
|
29
|
+
*/
|
|
30
|
+
verb: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ResponseDictionaryDto}
|
|
34
|
+
* @memberof BlobFileAccessDto
|
|
35
|
+
*/
|
|
36
|
+
headers?: ResponseDictionaryDto;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the BlobFileAccessDto interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfBlobFileAccessDto(value: object): value is BlobFileAccessDto;
|
|
42
|
+
export declare function BlobFileAccessDtoFromJSON(json: any): BlobFileAccessDto;
|
|
43
|
+
export declare function BlobFileAccessDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlobFileAccessDto;
|
|
44
|
+
export declare function BlobFileAccessDtoToJSON(json: any): BlobFileAccessDto;
|
|
45
|
+
export declare function BlobFileAccessDtoToJSONTyped(value?: BlobFileAccessDto | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface CreateConfigurationCommand
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateConfigurationCommand {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateConfigurationCommand
|
|
22
|
+
*/
|
|
23
|
+
packageVersionKey: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateConfigurationCommand
|
|
28
|
+
*/
|
|
29
|
+
name?: string | null;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CreateConfigurationCommand interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCreateConfigurationCommand(value: object): value is CreateConfigurationCommand;
|
|
35
|
+
export declare function CreateConfigurationCommandFromJSON(json: any): CreateConfigurationCommand;
|
|
36
|
+
export declare function CreateConfigurationCommandFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateConfigurationCommand;
|
|
37
|
+
export declare function CreateConfigurationCommandToJSON(json: any): CreateConfigurationCommand;
|
|
38
|
+
export declare function CreateConfigurationCommandToJSONTyped(value?: CreateConfigurationCommand | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
*/
|
|
16
|
+
export declare const DeploymentActivationStatus: {
|
|
17
|
+
readonly None: "None";
|
|
18
|
+
readonly Active: "Active";
|
|
19
|
+
readonly Inactive: "Inactive";
|
|
20
|
+
readonly ActivationFailed: "ActivationFailed";
|
|
21
|
+
readonly DeactivationFailed: "DeactivationFailed";
|
|
22
|
+
readonly ReadyToActivate: "ReadyToActivate";
|
|
23
|
+
readonly NeedsSetupToActivate: "NeedsSetupToActivate";
|
|
24
|
+
};
|
|
25
|
+
export type DeploymentActivationStatus = typeof DeploymentActivationStatus[keyof typeof DeploymentActivationStatus];
|
|
26
|
+
export declare function instanceOfDeploymentActivationStatus(value: any): boolean;
|
|
27
|
+
export declare function DeploymentActivationStatusFromJSON(json: any): DeploymentActivationStatus;
|
|
28
|
+
export declare function DeploymentActivationStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeploymentActivationStatus;
|
|
29
|
+
export declare function DeploymentActivationStatusToJSON(value?: DeploymentActivationStatus | null): any;
|
|
30
|
+
export declare function DeploymentActivationStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): DeploymentActivationStatus;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ResourceOverwrite } from './ResourceOverwrite';
|
|
13
|
+
import type { RuntimeSetup } from './RuntimeSetup';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface DeploymentAutoRequest
|
|
18
|
+
*/
|
|
19
|
+
export interface DeploymentAutoRequest {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof DeploymentAutoRequest
|
|
24
|
+
*/
|
|
25
|
+
packageVersionKey: string;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof DeploymentAutoRequest
|
|
30
|
+
*/
|
|
31
|
+
folderFQN?: string | null;
|
|
32
|
+
/**
|
|
33
|
+
*
|
|
34
|
+
* @type {Array<ResourceOverwrite>}
|
|
35
|
+
* @memberof DeploymentAutoRequest
|
|
36
|
+
*/
|
|
37
|
+
overwrites: Array<ResourceOverwrite>;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {RuntimeSetup}
|
|
41
|
+
* @memberof DeploymentAutoRequest
|
|
42
|
+
*/
|
|
43
|
+
runtimeSetup?: RuntimeSetup;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
* Check if a given object implements the DeploymentAutoRequest interface.
|
|
47
|
+
*/
|
|
48
|
+
export declare function instanceOfDeploymentAutoRequest(value: object): value is DeploymentAutoRequest;
|
|
49
|
+
export declare function DeploymentAutoRequestFromJSON(json: any): DeploymentAutoRequest;
|
|
50
|
+
export declare function DeploymentAutoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeploymentAutoRequest;
|
|
51
|
+
export declare function DeploymentAutoRequestToJSON(json: any): DeploymentAutoRequest;
|
|
52
|
+
export declare function DeploymentAutoRequestToJSONTyped(value?: DeploymentAutoRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* UiPath.AutomationSolutionsService.WebApi 1.0
|
|
3
|
+
* Solutions API
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface DeploymentDto
|
|
16
|
+
*/
|
|
17
|
+
export interface DeploymentDto {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof DeploymentDto
|
|
22
|
+
*/
|
|
23
|
+
packageName: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof DeploymentDto
|
|
28
|
+
*/
|
|
29
|
+
deploymentName: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the DeploymentDto interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfDeploymentDto(value: object): value is DeploymentDto;
|
|
35
|
+
export declare function DeploymentDtoFromJSON(json: any): DeploymentDto;
|
|
36
|
+
export declare function DeploymentDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeploymentDto;
|
|
37
|
+
export declare function DeploymentDtoToJSON(json: any): DeploymentDto;
|
|
38
|
+
export declare function DeploymentDtoToJSONTyped(value?: DeploymentDto | null, ignoreDiscriminator?: boolean): any;
|