@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.
Files changed (60) hide show
  1. package/README.md +21 -0
  2. package/dist/generated/src/apis/ConfigurationsApi.d.ts +28 -0
  3. package/dist/generated/src/apis/DeploymentsApi.d.ts +49 -0
  4. package/dist/generated/src/apis/PackagesApi.d.ts +88 -0
  5. package/dist/generated/src/apis/ProjectsApi.d.ts +37 -0
  6. package/dist/generated/src/apis/SearchApi.d.ts +38 -0
  7. package/dist/generated/src/apis/SettingsApi.d.ts +32 -0
  8. package/dist/generated/src/apis/index.d.ts +6 -0
  9. package/dist/generated/src/index.d.ts +3 -0
  10. package/dist/generated/src/models/BlobFileAccessDto.d.ts +45 -0
  11. package/dist/generated/src/models/CreateConfigurationCommand.d.ts +38 -0
  12. package/dist/generated/src/models/DeploymentActivationStatus.d.ts +30 -0
  13. package/dist/generated/src/models/DeploymentAutoRequest.d.ts +52 -0
  14. package/dist/generated/src/models/DeploymentDto.d.ts +38 -0
  15. package/dist/generated/src/models/DeploymentItemDto.d.ts +215 -0
  16. package/dist/generated/src/models/DeploymentOperation.d.ts +29 -0
  17. package/dist/generated/src/models/DeploymentOperationStatus.d.ts +28 -0
  18. package/dist/generated/src/models/DeploymentRequest.d.ts +69 -0
  19. package/dist/generated/src/models/DeploymentSearchItemDto2.d.ts +206 -0
  20. package/dist/generated/src/models/DeploymentStatus.d.ts +33 -0
  21. package/dist/generated/src/models/DeploymentType.d.ts +25 -0
  22. package/dist/generated/src/models/DeploymentUpgradeType.d.ts +27 -0
  23. package/dist/generated/src/models/DeploymentsSearchRequest2.d.ts +114 -0
  24. package/dist/generated/src/models/ExtendedPackageVersionState.d.ts +27 -0
  25. package/dist/generated/src/models/FolderInfo.d.ts +44 -0
  26. package/dist/generated/src/models/LocationDto.d.ts +44 -0
  27. package/dist/generated/src/models/OrderByDirection.d.ts +25 -0
  28. package/dist/generated/src/models/Overwrite.d.ts +63 -0
  29. package/dist/generated/src/models/OverwriteType.d.ts +25 -0
  30. package/dist/generated/src/models/PackageInfo.d.ts +99 -0
  31. package/dist/generated/src/models/PackageVersionComponentsDto.d.ts +46 -0
  32. package/dist/generated/src/models/PackageVersionInfoDto.d.ts +100 -0
  33. package/dist/generated/src/models/PackageVersionOrigin.d.ts +27 -0
  34. package/dist/generated/src/models/PackageVersionResourceDto.d.ts +63 -0
  35. package/dist/generated/src/models/PageInfoDtoOfDeploymentSearchItemDto2.d.ts +39 -0
  36. package/dist/generated/src/models/PageInfoDtoOfPackageInfo.d.ts +39 -0
  37. package/dist/generated/src/models/ProblemDetails.d.ts +57 -0
  38. package/dist/generated/src/models/ProjectCreateRequest.d.ts +38 -0
  39. package/dist/generated/src/models/ProjectDto.d.ts +75 -0
  40. package/dist/generated/src/models/ProjectImportStatus.d.ts +27 -0
  41. package/dist/generated/src/models/ResourceOverwrite.d.ts +45 -0
  42. package/dist/generated/src/models/ResourceStats.d.ts +44 -0
  43. package/dist/generated/src/models/ResponseDictionaryDto.d.ts +38 -0
  44. package/dist/generated/src/models/RuntimeSetup.d.ts +32 -0
  45. package/dist/generated/src/models/SearchFilter.d.ts +57 -0
  46. package/dist/generated/src/models/WorkflowAction.d.ts +29 -0
  47. package/dist/generated/src/models/index.d.ts +37 -0
  48. package/dist/generated/src/runtime.d.ts +184 -0
  49. package/dist/index.js +15612 -0
  50. package/dist/index.js.map +159 -0
  51. package/dist/scripts/generate-sdk.js +176 -0
  52. package/dist/scripts/generate-sdk.js.map +10 -0
  53. package/dist/src/bundle-service.d.ts +25 -0
  54. package/dist/src/index.d.ts +9 -0
  55. package/dist/src/solution-file.d.ts +133 -0
  56. package/dist/src/types.d.ts +42 -0
  57. package/dist/src/upload-service.d.ts +34 -0
  58. package/dist/src/user-agent.d.ts +1 -0
  59. package/dist/src/zip-utils.d.ts +63 -0
  60. package/package.json +44 -0
@@ -0,0 +1,39 @@
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 { DeploymentSearchItemDto2 } from './DeploymentSearchItemDto2';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PageInfoDtoOfDeploymentSearchItemDto2
17
+ */
18
+ export interface PageInfoDtoOfDeploymentSearchItemDto2 {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof PageInfoDtoOfDeploymentSearchItemDto2
23
+ */
24
+ count: number;
25
+ /**
26
+ *
27
+ * @type {Array<DeploymentSearchItemDto2>}
28
+ * @memberof PageInfoDtoOfDeploymentSearchItemDto2
29
+ */
30
+ values: Array<DeploymentSearchItemDto2>;
31
+ }
32
+ /**
33
+ * Check if a given object implements the PageInfoDtoOfDeploymentSearchItemDto2 interface.
34
+ */
35
+ export declare function instanceOfPageInfoDtoOfDeploymentSearchItemDto2(value: object): value is PageInfoDtoOfDeploymentSearchItemDto2;
36
+ export declare function PageInfoDtoOfDeploymentSearchItemDto2FromJSON(json: any): PageInfoDtoOfDeploymentSearchItemDto2;
37
+ export declare function PageInfoDtoOfDeploymentSearchItemDto2FromJSONTyped(json: any, ignoreDiscriminator: boolean): PageInfoDtoOfDeploymentSearchItemDto2;
38
+ export declare function PageInfoDtoOfDeploymentSearchItemDto2ToJSON(json: any): PageInfoDtoOfDeploymentSearchItemDto2;
39
+ export declare function PageInfoDtoOfDeploymentSearchItemDto2ToJSONTyped(value?: PageInfoDtoOfDeploymentSearchItemDto2 | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,39 @@
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 { PackageInfo } from './PackageInfo';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface PageInfoDtoOfPackageInfo
17
+ */
18
+ export interface PageInfoDtoOfPackageInfo {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof PageInfoDtoOfPackageInfo
23
+ */
24
+ count: number;
25
+ /**
26
+ *
27
+ * @type {Array<PackageInfo>}
28
+ * @memberof PageInfoDtoOfPackageInfo
29
+ */
30
+ values: Array<PackageInfo>;
31
+ }
32
+ /**
33
+ * Check if a given object implements the PageInfoDtoOfPackageInfo interface.
34
+ */
35
+ export declare function instanceOfPageInfoDtoOfPackageInfo(value: object): value is PageInfoDtoOfPackageInfo;
36
+ export declare function PageInfoDtoOfPackageInfoFromJSON(json: any): PageInfoDtoOfPackageInfo;
37
+ export declare function PageInfoDtoOfPackageInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageInfoDtoOfPackageInfo;
38
+ export declare function PageInfoDtoOfPackageInfoToJSON(json: any): PageInfoDtoOfPackageInfo;
39
+ export declare function PageInfoDtoOfPackageInfoToJSONTyped(value?: PageInfoDtoOfPackageInfo | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,57 @@
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 ProblemDetails
16
+ */
17
+ export interface ProblemDetails {
18
+ [key: string]: any | any;
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof ProblemDetails
23
+ */
24
+ type?: string | null;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof ProblemDetails
29
+ */
30
+ title?: string | null;
31
+ /**
32
+ *
33
+ * @type {number}
34
+ * @memberof ProblemDetails
35
+ */
36
+ status?: number | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof ProblemDetails
41
+ */
42
+ detail?: string | null;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof ProblemDetails
47
+ */
48
+ instance?: string | null;
49
+ }
50
+ /**
51
+ * Check if a given object implements the ProblemDetails interface.
52
+ */
53
+ export declare function instanceOfProblemDetails(value: object): value is ProblemDetails;
54
+ export declare function ProblemDetailsFromJSON(json: any): ProblemDetails;
55
+ export declare function ProblemDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProblemDetails;
56
+ export declare function ProblemDetailsToJSON(json: any): ProblemDetails;
57
+ export declare function ProblemDetailsToJSONTyped(value?: ProblemDetails | 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 ProjectCreateRequest
16
+ */
17
+ export interface ProjectCreateRequest {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof ProjectCreateRequest
22
+ */
23
+ name: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ProjectCreateRequest
28
+ */
29
+ description?: string | null;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ProjectCreateRequest interface.
33
+ */
34
+ export declare function instanceOfProjectCreateRequest(value: object): value is ProjectCreateRequest;
35
+ export declare function ProjectCreateRequestFromJSON(json: any): ProjectCreateRequest;
36
+ export declare function ProjectCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectCreateRequest;
37
+ export declare function ProjectCreateRequestToJSON(json: any): ProjectCreateRequest;
38
+ export declare function ProjectCreateRequestToJSONTyped(value?: ProjectCreateRequest | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,75 @@
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 { ProjectImportStatus } from './ProjectImportStatus';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ProjectDto
17
+ */
18
+ export interface ProjectDto {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof ProjectDto
23
+ */
24
+ key: string;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof ProjectDto
29
+ */
30
+ name: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof ProjectDto
35
+ */
36
+ description?: string | null;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof ProjectDto
41
+ */
42
+ solutionRootFolderName?: string | null;
43
+ /**
44
+ *
45
+ * @type {boolean}
46
+ * @memberof ProjectDto
47
+ */
48
+ isEmpty: boolean;
49
+ /**
50
+ *
51
+ * @type {string}
52
+ * @memberof ProjectDto
53
+ */
54
+ originatedPackageVersionKey?: string | null;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof ProjectDto
59
+ */
60
+ latestPublishedPackageVersionKey?: string | null;
61
+ /**
62
+ *
63
+ * @type {ProjectImportStatus}
64
+ * @memberof ProjectDto
65
+ */
66
+ importStatus: ProjectImportStatus;
67
+ }
68
+ /**
69
+ * Check if a given object implements the ProjectDto interface.
70
+ */
71
+ export declare function instanceOfProjectDto(value: object): value is ProjectDto;
72
+ export declare function ProjectDtoFromJSON(json: any): ProjectDto;
73
+ export declare function ProjectDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectDto;
74
+ export declare function ProjectDtoToJSON(json: any): ProjectDto;
75
+ export declare function ProjectDtoToJSONTyped(value?: ProjectDto | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,27 @@
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 ProjectImportStatus: {
17
+ readonly InProgress: "InProgress";
18
+ readonly Completed: "Completed";
19
+ readonly Failed: "Failed";
20
+ readonly NotApplicable: "NotApplicable";
21
+ };
22
+ export type ProjectImportStatus = typeof ProjectImportStatus[keyof typeof ProjectImportStatus];
23
+ export declare function instanceOfProjectImportStatus(value: any): boolean;
24
+ export declare function ProjectImportStatusFromJSON(json: any): ProjectImportStatus;
25
+ export declare function ProjectImportStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectImportStatus;
26
+ export declare function ProjectImportStatusToJSON(value?: ProjectImportStatus | null): any;
27
+ export declare function ProjectImportStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): ProjectImportStatus;
@@ -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 { Overwrite } from './Overwrite';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ResourceOverwrite
17
+ */
18
+ export interface ResourceOverwrite {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof ResourceOverwrite
23
+ */
24
+ solutionResourceKey: string;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof ResourceOverwrite
29
+ */
30
+ reprovisioningIndex: number;
31
+ /**
32
+ *
33
+ * @type {Overwrite}
34
+ * @memberof ResourceOverwrite
35
+ */
36
+ overwrite?: Overwrite;
37
+ }
38
+ /**
39
+ * Check if a given object implements the ResourceOverwrite interface.
40
+ */
41
+ export declare function instanceOfResourceOverwrite(value: object): value is ResourceOverwrite;
42
+ export declare function ResourceOverwriteFromJSON(json: any): ResourceOverwrite;
43
+ export declare function ResourceOverwriteFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceOverwrite;
44
+ export declare function ResourceOverwriteToJSON(json: any): ResourceOverwrite;
45
+ export declare function ResourceOverwriteToJSONTyped(value?: ResourceOverwrite | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,44 @@
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 ResourceStats
16
+ */
17
+ export interface ResourceStats {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof ResourceStats
22
+ */
23
+ count: number;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof ResourceStats
28
+ */
29
+ kind: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof ResourceStats
34
+ */
35
+ serviceName: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the ResourceStats interface.
39
+ */
40
+ export declare function instanceOfResourceStats(value: object): value is ResourceStats;
41
+ export declare function ResourceStatsFromJSON(json: any): ResourceStats;
42
+ export declare function ResourceStatsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceStats;
43
+ export declare function ResourceStatsToJSON(json: any): ResourceStats;
44
+ export declare function ResourceStatsToJSONTyped(value?: ResourceStats | 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 ResponseDictionaryDto
16
+ */
17
+ export interface ResponseDictionaryDto {
18
+ /**
19
+ *
20
+ * @type {Array<string>}
21
+ * @memberof ResponseDictionaryDto
22
+ */
23
+ keys?: Array<string> | null;
24
+ /**
25
+ *
26
+ * @type {Array<string>}
27
+ * @memberof ResponseDictionaryDto
28
+ */
29
+ values?: Array<string> | null;
30
+ }
31
+ /**
32
+ * Check if a given object implements the ResponseDictionaryDto interface.
33
+ */
34
+ export declare function instanceOfResponseDictionaryDto(value: object): value is ResponseDictionaryDto;
35
+ export declare function ResponseDictionaryDtoFromJSON(json: any): ResponseDictionaryDto;
36
+ export declare function ResponseDictionaryDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseDictionaryDto;
37
+ export declare function ResponseDictionaryDtoToJSON(json: any): ResponseDictionaryDto;
38
+ export declare function ResponseDictionaryDtoToJSONTyped(value?: ResponseDictionaryDto | null, ignoreDiscriminator?: boolean): any;
@@ -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
+ /**
13
+ *
14
+ * @export
15
+ * @interface RuntimeSetup
16
+ */
17
+ export interface RuntimeSetup {
18
+ /**
19
+ *
20
+ * @type {boolean}
21
+ * @memberof RuntimeSetup
22
+ */
23
+ requireServerlessTemplate: boolean;
24
+ }
25
+ /**
26
+ * Check if a given object implements the RuntimeSetup interface.
27
+ */
28
+ export declare function instanceOfRuntimeSetup(value: object): value is RuntimeSetup;
29
+ export declare function RuntimeSetupFromJSON(json: any): RuntimeSetup;
30
+ export declare function RuntimeSetupFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeSetup;
31
+ export declare function RuntimeSetupToJSON(json: any): RuntimeSetup;
32
+ export declare function RuntimeSetupToJSONTyped(value?: RuntimeSetup | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,57 @@
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 { OrderByDirection } from './OrderByDirection';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface SearchFilter
17
+ */
18
+ export interface SearchFilter {
19
+ /**
20
+ *
21
+ * @type {number}
22
+ * @memberof SearchFilter
23
+ */
24
+ skip?: number | null;
25
+ /**
26
+ *
27
+ * @type {number}
28
+ * @memberof SearchFilter
29
+ */
30
+ take?: number | null;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof SearchFilter
35
+ */
36
+ orderByColumn?: string | null;
37
+ /**
38
+ *
39
+ * @type {OrderByDirection}
40
+ * @memberof SearchFilter
41
+ */
42
+ orderByDirection?: OrderByDirection;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof SearchFilter
47
+ */
48
+ searchTerm?: string | null;
49
+ }
50
+ /**
51
+ * Check if a given object implements the SearchFilter interface.
52
+ */
53
+ export declare function instanceOfSearchFilter(value: object): value is SearchFilter;
54
+ export declare function SearchFilterFromJSON(json: any): SearchFilter;
55
+ export declare function SearchFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchFilter;
56
+ export declare function SearchFilterToJSON(json: any): SearchFilter;
57
+ export declare function SearchFilterToJSONTyped(value?: SearchFilter | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,29 @@
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 WorkflowAction: {
17
+ readonly Install: "Install";
18
+ readonly Activate: "Activate";
19
+ readonly Uninstall: "Uninstall";
20
+ readonly Upgrade: "Upgrade";
21
+ readonly Delete: "Delete";
22
+ readonly SetupActivation: "SetupActivation";
23
+ };
24
+ export type WorkflowAction = typeof WorkflowAction[keyof typeof WorkflowAction];
25
+ export declare function instanceOfWorkflowAction(value: any): boolean;
26
+ export declare function WorkflowActionFromJSON(json: any): WorkflowAction;
27
+ export declare function WorkflowActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowAction;
28
+ export declare function WorkflowActionToJSON(value?: WorkflowAction | null): any;
29
+ export declare function WorkflowActionToJSONTyped(value: any, ignoreDiscriminator: boolean): WorkflowAction;
@@ -0,0 +1,37 @@
1
+ export * from './BlobFileAccessDto';
2
+ export * from './CreateConfigurationCommand';
3
+ export * from './DeploymentActivationStatus';
4
+ export * from './DeploymentAutoRequest';
5
+ export * from './DeploymentDto';
6
+ export * from './DeploymentItemDto';
7
+ export * from './DeploymentOperation';
8
+ export * from './DeploymentOperationStatus';
9
+ export * from './DeploymentRequest';
10
+ export * from './DeploymentSearchItemDto2';
11
+ export * from './DeploymentStatus';
12
+ export * from './DeploymentType';
13
+ export * from './DeploymentUpgradeType';
14
+ export * from './DeploymentsSearchRequest2';
15
+ export * from './ExtendedPackageVersionState';
16
+ export * from './FolderInfo';
17
+ export * from './LocationDto';
18
+ export * from './OrderByDirection';
19
+ export * from './Overwrite';
20
+ export * from './OverwriteType';
21
+ export * from './PackageInfo';
22
+ export * from './PackageVersionComponentsDto';
23
+ export * from './PackageVersionInfoDto';
24
+ export * from './PackageVersionOrigin';
25
+ export * from './PackageVersionResourceDto';
26
+ export * from './PageInfoDtoOfDeploymentSearchItemDto2';
27
+ export * from './PageInfoDtoOfPackageInfo';
28
+ export * from './ProblemDetails';
29
+ export * from './ProjectCreateRequest';
30
+ export * from './ProjectDto';
31
+ export * from './ProjectImportStatus';
32
+ export * from './ResourceOverwrite';
33
+ export * from './ResourceStats';
34
+ export * from './ResponseDictionaryDto';
35
+ export * from './RuntimeSetup';
36
+ export * from './SearchFilter';
37
+ export * from './WorkflowAction';