@red-hat-developer-hub/backstage-plugin-orchestrator-common 3.1.0 → 3.2.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/CHANGELOG.md +6 -0
- package/dist/index.d.ts +13 -13
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## @red-hat-developer-hub/backstage-plugin-orchestrator-common [1.13.1](https://github.com/janus-idp/backstage-plugins/compare/@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.0...@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.1) (2024-08-02)
|
|
2
2
|
|
|
3
|
+
## 3.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fba1136: Backstage version bump to v1.44.1
|
|
8
|
+
|
|
3
9
|
## 3.1.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1490,7 +1490,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1490
1490
|
* @throws {RequiredError}
|
|
1491
1491
|
* @memberof DefaultApi
|
|
1492
1492
|
*/
|
|
1493
|
-
abortWorkflow(instanceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1493
|
+
abortWorkflow(instanceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<string, any, {}>>;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* Execute a workflow
|
|
1496
1496
|
* @summary Execute a workflow
|
|
@@ -1500,7 +1500,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1500
1500
|
* @throws {RequiredError}
|
|
1501
1501
|
* @memberof DefaultApi
|
|
1502
1502
|
*/
|
|
1503
|
-
executeWorkflow(workflowId: string, executeWorkflowRequestDTO: ExecuteWorkflowRequestDTO, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ExecuteWorkflowResponseDTO, any>>;
|
|
1503
|
+
executeWorkflow(workflowId: string, executeWorkflowRequestDTO: ExecuteWorkflowRequestDTO, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ExecuteWorkflowResponseDTO, any, {}>>;
|
|
1504
1504
|
/**
|
|
1505
1505
|
* Get a workflow execution/run (instance)
|
|
1506
1506
|
* @summary Get Workflow Instance by ID
|
|
@@ -1509,7 +1509,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1509
1509
|
* @throws {RequiredError}
|
|
1510
1510
|
* @memberof DefaultApi
|
|
1511
1511
|
*/
|
|
1512
|
-
getInstanceById(instanceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceDTO, any>>;
|
|
1512
|
+
getInstanceById(instanceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceDTO, any, {}>>;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* Retrieve an array of workflow executions (instances)
|
|
1515
1515
|
* @summary Get instances
|
|
@@ -1518,7 +1518,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1518
1518
|
* @throws {RequiredError}
|
|
1519
1519
|
* @memberof DefaultApi
|
|
1520
1520
|
*/
|
|
1521
|
-
getInstances(searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceListResultDTO, any>>;
|
|
1521
|
+
getInstances(searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceListResultDTO, any, {}>>;
|
|
1522
1522
|
/**
|
|
1523
1523
|
* Get the workflow input schema. It defines the input fields of the workflow
|
|
1524
1524
|
* @param {string} workflowId ID of the workflow to fetch
|
|
@@ -1527,7 +1527,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1527
1527
|
* @throws {RequiredError}
|
|
1528
1528
|
* @memberof DefaultApi
|
|
1529
1529
|
*/
|
|
1530
|
-
getWorkflowInputSchemaById(workflowId: string, instanceId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<InputSchemaResponseDTO, any>>;
|
|
1530
|
+
getWorkflowInputSchemaById(workflowId: string, instanceId?: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<InputSchemaResponseDTO, any, {}>>;
|
|
1531
1531
|
/**
|
|
1532
1532
|
* Retrieve an array of workflow executions (instances) for the given workflow
|
|
1533
1533
|
* @summary Get instances for a specific workflow
|
|
@@ -1537,7 +1537,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1537
1537
|
* @throws {RequiredError}
|
|
1538
1538
|
* @memberof DefaultApi
|
|
1539
1539
|
*/
|
|
1540
|
-
getWorkflowInstances(workflowId: string, searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceListResultDTO, any>>;
|
|
1540
|
+
getWorkflowInstances(workflowId: string, searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ProcessInstanceListResultDTO, any, {}>>;
|
|
1541
1541
|
/**
|
|
1542
1542
|
* Returns the key fields of the workflow including data on the last run instance
|
|
1543
1543
|
* @param {string} workflowId Unique identifier of the workflow
|
|
@@ -1545,7 +1545,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1545
1545
|
* @throws {RequiredError}
|
|
1546
1546
|
* @memberof DefaultApi
|
|
1547
1547
|
*/
|
|
1548
|
-
getWorkflowOverviewById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewDTO, any>>;
|
|
1548
|
+
getWorkflowOverviewById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewDTO, any, {}>>;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* Get the workflow\'s definition
|
|
1551
1551
|
* @param {string} workflowId ID of the workflow to fetch
|
|
@@ -1553,7 +1553,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1553
1553
|
* @throws {RequiredError}
|
|
1554
1554
|
* @memberof DefaultApi
|
|
1555
1555
|
*/
|
|
1556
|
-
getWorkflowSourceById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<string, any>>;
|
|
1556
|
+
getWorkflowSourceById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<string, any, {}>>;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* Retrieve array with the status of all instances
|
|
1559
1559
|
* @summary Get workflow status list
|
|
@@ -1561,7 +1561,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1561
1561
|
* @throws {RequiredError}
|
|
1562
1562
|
* @memberof DefaultApi
|
|
1563
1563
|
*/
|
|
1564
|
-
getWorkflowStatuses(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowRunStatusDTO[], any>>;
|
|
1564
|
+
getWorkflowStatuses(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowRunStatusDTO[], any, {}>>;
|
|
1565
1565
|
/**
|
|
1566
1566
|
* Returns the key fields of the workflow including data on the last run instance
|
|
1567
1567
|
* @param {SearchRequest} [searchRequest] Pagination and filters
|
|
@@ -1569,7 +1569,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1569
1569
|
* @throws {RequiredError}
|
|
1570
1570
|
* @memberof DefaultApi
|
|
1571
1571
|
*/
|
|
1572
|
-
getWorkflowsOverview(searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewListResultDTO, any>>;
|
|
1572
|
+
getWorkflowsOverview(searchRequest?: SearchRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewListResultDTO, any, {}>>;
|
|
1573
1573
|
/**
|
|
1574
1574
|
* Returns the key fields of the workflow including data on the last run instance
|
|
1575
1575
|
* @param {GetWorkflowsOverviewForEntityRequest} [getWorkflowsOverviewForEntityRequest] Target entity reference and annotation workflow ids
|
|
@@ -1577,7 +1577,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1577
1577
|
* @throws {RequiredError}
|
|
1578
1578
|
* @memberof DefaultApi
|
|
1579
1579
|
*/
|
|
1580
|
-
getWorkflowsOverviewForEntity(getWorkflowsOverviewForEntityRequest?: GetWorkflowsOverviewForEntityRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewListResultDTO, any>>;
|
|
1580
|
+
getWorkflowsOverviewForEntity(getWorkflowsOverviewForEntityRequest?: GetWorkflowsOverviewForEntityRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<WorkflowOverviewListResultDTO, any, {}>>;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Returns true if the workflow service is up for the given workflow ID.
|
|
1583
1583
|
* @param {string} workflowId ID of the workflow to fetch
|
|
@@ -1585,7 +1585,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1585
1585
|
* @throws {RequiredError}
|
|
1586
1586
|
* @memberof DefaultApi
|
|
1587
1587
|
*/
|
|
1588
|
-
pingWorkflowServiceById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<boolean, any>>;
|
|
1588
|
+
pingWorkflowServiceById(workflowId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<boolean, any, {}>>;
|
|
1589
1589
|
/**
|
|
1590
1590
|
* Retrigger an instance
|
|
1591
1591
|
* @summary Retrigger an instance
|
|
@@ -1596,7 +1596,7 @@ declare class DefaultApi extends BaseAPI {
|
|
|
1596
1596
|
* @throws {RequiredError}
|
|
1597
1597
|
* @memberof DefaultApi
|
|
1598
1598
|
*/
|
|
1599
|
-
retriggerInstance(workflowId: string, instanceId: string, retriggerInstanceRequestDTO: RetriggerInstanceRequestDTO, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any>>;
|
|
1599
|
+
retriggerInstance(workflowId: string, instanceId: string, retriggerInstanceRequestDTO: RetriggerInstanceRequestDTO, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<object, any, {}>>;
|
|
1600
1600
|
}
|
|
1601
1601
|
|
|
1602
1602
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@red-hat-developer-hub/backstage-plugin-orchestrator-common",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"openapi:check": "./scripts/openapi.sh check"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/core-plugin-api": "^1.
|
|
61
|
-
"@backstage/plugin-permission-common": "^0.9.
|
|
62
|
-
"@backstage/types": "^1.2.
|
|
60
|
+
"@backstage/core-plugin-api": "^1.11.1",
|
|
61
|
+
"@backstage/plugin-permission-common": "^0.9.2",
|
|
62
|
+
"@backstage/types": "^1.2.2",
|
|
63
63
|
"@severlessworkflow/sdk-typescript": "^3.0.3",
|
|
64
64
|
"axios": "^1.11.0",
|
|
65
65
|
"js-yaml": "^4.1.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
-
"@backstage/cli": "^0.34.
|
|
68
|
+
"@backstage/cli": "^0.34.4",
|
|
69
69
|
"@openapitools/openapi-generator-cli": "2.22.0",
|
|
70
70
|
"@types/json-schema": "7.0.15",
|
|
71
71
|
"js-yaml-cli": "0.6.0"
|