@stack-spot/portal-network 0.35.0 → 0.37.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 +15 -0
- package/dist/api/content.d.ts +103 -38
- package/dist/api/content.d.ts.map +1 -1
- package/dist/api/content.js +35 -21
- package/dist/api/content.js.map +1 -1
- package/dist/api/workspaceManager.d.ts +74 -69
- package/dist/api/workspaceManager.d.ts.map +1 -1
- package/dist/api/workspaceManager.js +68 -68
- package/dist/api/workspaceManager.js.map +1 -1
- package/dist/client/content.d.ts +28 -0
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/content.js +29 -1
- package/dist/client/content.js.map +1 -1
- package/dist/client/workspace-manager.d.ts +7 -0
- package/dist/client/workspace-manager.d.ts.map +1 -1
- package/dist/client/workspace-manager.js +32 -23
- package/dist/client/workspace-manager.js.map +1 -1
- package/package.json +1 -1
- package/src/api/content.ts +169 -54
- package/src/api/workspaceManager.ts +82 -77
- package/src/client/content.ts +18 -2
- package/src/client/workspace-manager.ts +76 -71
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.37.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.36.0...portal-network@v0.37.0) (2024-10-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* update content ([#406](https://github.com/stack-spot/portal-commons/issues/406)) ([a0e19f0](https://github.com/stack-spot/portal-commons/commit/a0e19f0a5f59b54410b4ece38fae28c47b570762))
|
|
9
|
+
|
|
10
|
+
## [0.36.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.35.0...portal-network@v0.36.0) (2024-10-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* Update content ([fb8daf6](https://github.com/stack-spot/portal-commons/commit/fb8daf6a3dbc18eff040328a0f248bdb886559dd))
|
|
16
|
+
* Workspace manager ([0349e8d](https://github.com/stack-spot/portal-commons/commit/0349e8d8e81c8146b7f42a7aee7d73f5dbdbd45b))
|
|
17
|
+
|
|
3
18
|
## [0.35.0](https://github.com/stack-spot/portal-commons/compare/portal-network@v0.34.1...portal-network@v0.35.0) (2024-10-04)
|
|
4
19
|
|
|
5
20
|
|
package/dist/api/content.d.ts
CHANGED
|
@@ -353,14 +353,14 @@ export type SortObject = {
|
|
|
353
353
|
export type PageableObject = {
|
|
354
354
|
offset?: number;
|
|
355
355
|
sort?: SortObject[];
|
|
356
|
-
pageSize?: number;
|
|
357
|
-
pageNumber?: number;
|
|
358
356
|
paged?: boolean;
|
|
359
357
|
unpaged?: boolean;
|
|
358
|
+
pageSize?: number;
|
|
359
|
+
pageNumber?: number;
|
|
360
360
|
};
|
|
361
361
|
export type PageGetStackStudioResponse = {
|
|
362
|
-
totalElements?: number;
|
|
363
362
|
totalPages?: number;
|
|
363
|
+
totalElements?: number;
|
|
364
364
|
first?: boolean;
|
|
365
365
|
last?: boolean;
|
|
366
366
|
size?: number;
|
|
@@ -497,8 +497,8 @@ export type PluginVersionResponse = {
|
|
|
497
497
|
stkProjectsOnly: boolean;
|
|
498
498
|
};
|
|
499
499
|
export type PagePluginVersionResponse = {
|
|
500
|
-
totalElements?: number;
|
|
501
500
|
totalPages?: number;
|
|
501
|
+
totalElements?: number;
|
|
502
502
|
first?: boolean;
|
|
503
503
|
last?: boolean;
|
|
504
504
|
size?: number;
|
|
@@ -638,8 +638,8 @@ export type ActionResponse = {
|
|
|
638
638
|
hasRequiredConnection: boolean;
|
|
639
639
|
};
|
|
640
640
|
export type PageActionResponse = {
|
|
641
|
-
totalElements?: number;
|
|
642
641
|
totalPages?: number;
|
|
642
|
+
totalElements?: number;
|
|
643
643
|
first?: boolean;
|
|
644
644
|
last?: boolean;
|
|
645
645
|
size?: number;
|
|
@@ -699,8 +699,8 @@ export type FilterStarterRequest = {
|
|
|
699
699
|
"type"?: "INFRA" | "APP";
|
|
700
700
|
};
|
|
701
701
|
export type PageStarterResponseWithRange = {
|
|
702
|
-
totalElements?: number;
|
|
703
702
|
totalPages?: number;
|
|
703
|
+
totalElements?: number;
|
|
704
704
|
first?: boolean;
|
|
705
705
|
last?: boolean;
|
|
706
706
|
size?: number;
|
|
@@ -717,8 +717,8 @@ export type FilterStackVersionPluginRequest = {
|
|
|
717
717
|
text?: string;
|
|
718
718
|
};
|
|
719
719
|
export type PageStackPluginResponse = {
|
|
720
|
-
totalElements?: number;
|
|
721
720
|
totalPages?: number;
|
|
721
|
+
totalElements?: number;
|
|
722
722
|
first?: boolean;
|
|
723
723
|
last?: boolean;
|
|
724
724
|
size?: number;
|
|
@@ -816,8 +816,8 @@ export type FilterStackActionRequest = {
|
|
|
816
816
|
filter?: string;
|
|
817
817
|
};
|
|
818
818
|
export type PageGetStackActionResponse = {
|
|
819
|
-
totalElements?: number;
|
|
820
819
|
totalPages?: number;
|
|
820
|
+
totalElements?: number;
|
|
821
821
|
first?: boolean;
|
|
822
822
|
last?: boolean;
|
|
823
823
|
size?: number;
|
|
@@ -999,8 +999,8 @@ export type UpdateDocRequest = {
|
|
|
999
999
|
publish: boolean;
|
|
1000
1000
|
};
|
|
1001
1001
|
export type PageStudioResponse = {
|
|
1002
|
-
totalElements?: number;
|
|
1003
1002
|
totalPages?: number;
|
|
1003
|
+
totalElements?: number;
|
|
1004
1004
|
first?: boolean;
|
|
1005
1005
|
last?: boolean;
|
|
1006
1006
|
size?: number;
|
|
@@ -1026,8 +1026,8 @@ export type PluginVersionDto = {
|
|
|
1026
1026
|
governance?: GovernanceDto;
|
|
1027
1027
|
};
|
|
1028
1028
|
export type PagePluginVersionDto = {
|
|
1029
|
-
totalElements?: number;
|
|
1030
1029
|
totalPages?: number;
|
|
1030
|
+
totalElements?: number;
|
|
1031
1031
|
first?: boolean;
|
|
1032
1032
|
last?: boolean;
|
|
1033
1033
|
size?: number;
|
|
@@ -1053,8 +1053,8 @@ export type ActionVersionDto = {
|
|
|
1053
1053
|
governance?: GovernanceDto;
|
|
1054
1054
|
};
|
|
1055
1055
|
export type PageActionVersionDto = {
|
|
1056
|
-
totalElements?: number;
|
|
1057
1056
|
totalPages?: number;
|
|
1057
|
+
totalElements?: number;
|
|
1058
1058
|
first?: boolean;
|
|
1059
1059
|
last?: boolean;
|
|
1060
1060
|
size?: number;
|
|
@@ -1166,9 +1166,11 @@ export type GetWorkflowsByStudioLatestVersionDataResponse = {
|
|
|
1166
1166
|
id: string;
|
|
1167
1167
|
displayName: string;
|
|
1168
1168
|
label: string;
|
|
1169
|
+
description: string;
|
|
1169
1170
|
semanticVersion: string;
|
|
1170
1171
|
targetApp: boolean;
|
|
1171
1172
|
targetInfra: boolean;
|
|
1173
|
+
createdAt: string;
|
|
1172
1174
|
};
|
|
1173
1175
|
export type GetWorkflowsByStudioResponse = {
|
|
1174
1176
|
id: string;
|
|
@@ -1178,8 +1180,8 @@ export type GetWorkflowsByStudioResponse = {
|
|
|
1178
1180
|
latestVersion?: GetWorkflowsByStudioLatestVersionDataResponse;
|
|
1179
1181
|
};
|
|
1180
1182
|
export type PageGetWorkflowsByStudioResponse = {
|
|
1181
|
-
totalElements?: number;
|
|
1182
1183
|
totalPages?: number;
|
|
1184
|
+
totalElements?: number;
|
|
1183
1185
|
first?: boolean;
|
|
1184
1186
|
last?: boolean;
|
|
1185
1187
|
size?: number;
|
|
@@ -1195,13 +1197,63 @@ export type DownloadWorkflowBase64Response = {
|
|
|
1195
1197
|
file_name: string;
|
|
1196
1198
|
workflowVersionId: string;
|
|
1197
1199
|
};
|
|
1200
|
+
export type WorkflowStudioResponse = {
|
|
1201
|
+
slug: string;
|
|
1202
|
+
name: string;
|
|
1203
|
+
imageUrl?: string;
|
|
1204
|
+
description?: string;
|
|
1205
|
+
};
|
|
1206
|
+
export type GetWorkflowCommandResponse = {
|
|
1207
|
+
"default": string;
|
|
1208
|
+
workspace: string;
|
|
1209
|
+
};
|
|
1210
|
+
export type WorkflowVersionJobStepsResponse = {
|
|
1211
|
+
id: string;
|
|
1212
|
+
identifier: string;
|
|
1213
|
+
name: string;
|
|
1214
|
+
label?: string;
|
|
1215
|
+
ordination: number;
|
|
1216
|
+
optional: boolean;
|
|
1217
|
+
workdir?: string;
|
|
1218
|
+
"type": string;
|
|
1219
|
+
alias?: string;
|
|
1220
|
+
};
|
|
1221
|
+
export type WorkflowVersionJobsResponse = {
|
|
1222
|
+
id: string;
|
|
1223
|
+
identifier: string;
|
|
1224
|
+
label: string;
|
|
1225
|
+
ordination: number;
|
|
1226
|
+
optional: boolean;
|
|
1227
|
+
steps?: WorkflowVersionJobStepsResponse[];
|
|
1228
|
+
};
|
|
1229
|
+
export type GetWorkflowResponse = {
|
|
1230
|
+
id: string;
|
|
1231
|
+
studio: WorkflowStudioResponse;
|
|
1232
|
+
workflowVersionId: string;
|
|
1233
|
+
"type": string;
|
|
1234
|
+
version: string;
|
|
1235
|
+
slug: string;
|
|
1236
|
+
displayName?: string;
|
|
1237
|
+
description?: string;
|
|
1238
|
+
commands?: GetWorkflowCommandResponse;
|
|
1239
|
+
createdAt: string;
|
|
1240
|
+
createdBy: string;
|
|
1241
|
+
updatedAt?: string;
|
|
1242
|
+
qualifier: string;
|
|
1243
|
+
accountSlug?: string;
|
|
1244
|
+
studioSlug: string;
|
|
1245
|
+
status: string;
|
|
1246
|
+
isDocumented: boolean;
|
|
1247
|
+
documentation?: DocumentationContentResponse;
|
|
1248
|
+
jobs?: WorkflowVersionJobsResponse[];
|
|
1249
|
+
};
|
|
1198
1250
|
export type GetAvailableWorkflowVersionsResponse = {
|
|
1199
1251
|
workflowVersionId: string;
|
|
1200
1252
|
version: string;
|
|
1201
1253
|
};
|
|
1202
1254
|
export type PageGetAvailableWorkflowVersionsResponse = {
|
|
1203
|
-
totalElements?: number;
|
|
1204
1255
|
totalPages?: number;
|
|
1256
|
+
totalElements?: number;
|
|
1205
1257
|
first?: boolean;
|
|
1206
1258
|
last?: boolean;
|
|
1207
1259
|
size?: number;
|
|
@@ -1220,8 +1272,8 @@ export type StackWorkspaceViewResponse = {
|
|
|
1220
1272
|
totalLinkedVersions: number;
|
|
1221
1273
|
};
|
|
1222
1274
|
export type PageStackWorkspaceViewResponse = {
|
|
1223
|
-
totalElements?: number;
|
|
1224
1275
|
totalPages?: number;
|
|
1276
|
+
totalElements?: number;
|
|
1225
1277
|
first?: boolean;
|
|
1226
1278
|
last?: boolean;
|
|
1227
1279
|
size?: number;
|
|
@@ -1248,8 +1300,8 @@ export type StackWorkspaceDetailViewResponse = {
|
|
|
1248
1300
|
environment?: StackWorkspaceDetailViewEnvironmentResponse;
|
|
1249
1301
|
};
|
|
1250
1302
|
export type PageStackWorkspaceDetailViewResponse = {
|
|
1251
|
-
totalElements?: number;
|
|
1252
1303
|
totalPages?: number;
|
|
1304
|
+
totalElements?: number;
|
|
1253
1305
|
first?: boolean;
|
|
1254
1306
|
last?: boolean;
|
|
1255
1307
|
size?: number;
|
|
@@ -1267,8 +1319,8 @@ export type GetUnusedStackVersionsResponse = {
|
|
|
1267
1319
|
status?: string;
|
|
1268
1320
|
};
|
|
1269
1321
|
export type PageGetUnusedStackVersionsResponse = {
|
|
1270
|
-
totalElements?: number;
|
|
1271
1322
|
totalPages?: number;
|
|
1323
|
+
totalElements?: number;
|
|
1272
1324
|
first?: boolean;
|
|
1273
1325
|
last?: boolean;
|
|
1274
1326
|
size?: number;
|
|
@@ -1418,8 +1470,8 @@ export type PluginStarterResponse = {
|
|
|
1418
1470
|
stack: StackResponse;
|
|
1419
1471
|
};
|
|
1420
1472
|
export type PagePluginStarterResponse = {
|
|
1421
|
-
totalElements?: number;
|
|
1422
1473
|
totalPages?: number;
|
|
1474
|
+
totalElements?: number;
|
|
1423
1475
|
first?: boolean;
|
|
1424
1476
|
last?: boolean;
|
|
1425
1477
|
size?: number;
|
|
@@ -1444,8 +1496,8 @@ export type GetPluginStackStarterUsageResponse = {
|
|
|
1444
1496
|
pluginVersion: GetPluginStackStarterUsagePluginResponse;
|
|
1445
1497
|
};
|
|
1446
1498
|
export type PageGetPluginStackStarterUsageResponse = {
|
|
1447
|
-
totalElements?: number;
|
|
1448
1499
|
totalPages?: number;
|
|
1500
|
+
totalElements?: number;
|
|
1449
1501
|
first?: boolean;
|
|
1450
1502
|
last?: boolean;
|
|
1451
1503
|
size?: number;
|
|
@@ -1466,8 +1518,8 @@ export type PluginStacksResponse = {
|
|
|
1466
1518
|
studio: PluginStudioResponse;
|
|
1467
1519
|
};
|
|
1468
1520
|
export type PagePluginStacksResponse = {
|
|
1469
|
-
totalElements?: number;
|
|
1470
1521
|
totalPages?: number;
|
|
1522
|
+
totalElements?: number;
|
|
1471
1523
|
first?: boolean;
|
|
1472
1524
|
last?: boolean;
|
|
1473
1525
|
size?: number;
|
|
@@ -1492,8 +1544,8 @@ export type GetPluginStackUsageResponse = {
|
|
|
1492
1544
|
pluginVersion: GetPluginStackUsagePluginResponse;
|
|
1493
1545
|
};
|
|
1494
1546
|
export type PageGetPluginStackUsageResponse = {
|
|
1495
|
-
totalElements?: number;
|
|
1496
1547
|
totalPages?: number;
|
|
1548
|
+
totalElements?: number;
|
|
1497
1549
|
first?: boolean;
|
|
1498
1550
|
last?: boolean;
|
|
1499
1551
|
size?: number;
|
|
@@ -1518,8 +1570,8 @@ export type PluginInfrastructureViewResponse = {
|
|
|
1518
1570
|
workspace: PluginInfrastructureWorkspaceResponse;
|
|
1519
1571
|
};
|
|
1520
1572
|
export type PagePluginInfrastructureViewResponse = {
|
|
1521
|
-
totalElements?: number;
|
|
1522
1573
|
totalPages?: number;
|
|
1574
|
+
totalElements?: number;
|
|
1523
1575
|
first?: boolean;
|
|
1524
1576
|
last?: boolean;
|
|
1525
1577
|
size?: number;
|
|
@@ -1544,8 +1596,8 @@ export type InfrastructureEnvironmentsUsesPluginResponse = {
|
|
|
1544
1596
|
pluginVersion: GetInfrastructureEnvironmentsUsagePluginVersionResponse;
|
|
1545
1597
|
};
|
|
1546
1598
|
export type PageInfrastructureEnvironmentsUsesPluginResponse = {
|
|
1547
|
-
totalElements?: number;
|
|
1548
1599
|
totalPages?: number;
|
|
1600
|
+
totalElements?: number;
|
|
1549
1601
|
first?: boolean;
|
|
1550
1602
|
last?: boolean;
|
|
1551
1603
|
size?: number;
|
|
@@ -1564,8 +1616,8 @@ export type PluginViewUsageMonitorResponse = {
|
|
|
1564
1616
|
studio: PluginStudioResponse;
|
|
1565
1617
|
};
|
|
1566
1618
|
export type PagePluginViewUsageMonitorResponse = {
|
|
1567
|
-
totalElements?: number;
|
|
1568
1619
|
totalPages?: number;
|
|
1620
|
+
totalElements?: number;
|
|
1569
1621
|
first?: boolean;
|
|
1570
1622
|
last?: boolean;
|
|
1571
1623
|
size?: number;
|
|
@@ -1585,8 +1637,8 @@ export type GetDependentPluginsVersionsResponse = {
|
|
|
1585
1637
|
pluginVersion: DependentPluginVersionResponse;
|
|
1586
1638
|
};
|
|
1587
1639
|
export type PageGetDependentPluginsVersionsResponse = {
|
|
1588
|
-
totalElements?: number;
|
|
1589
1640
|
totalPages?: number;
|
|
1641
|
+
totalElements?: number;
|
|
1590
1642
|
first?: boolean;
|
|
1591
1643
|
last?: boolean;
|
|
1592
1644
|
size?: number;
|
|
@@ -1603,8 +1655,8 @@ export type GetPluginVersionsNotInUseResponse = {
|
|
|
1603
1655
|
status: "DRAFT" | "PUBLISHED" | "DEPRECATED" | "REPROVED";
|
|
1604
1656
|
};
|
|
1605
1657
|
export type PageGetPluginVersionsNotInUseResponse = {
|
|
1606
|
-
totalElements?: number;
|
|
1607
1658
|
totalPages?: number;
|
|
1659
|
+
totalElements?: number;
|
|
1608
1660
|
first?: boolean;
|
|
1609
1661
|
last?: boolean;
|
|
1610
1662
|
size?: number;
|
|
@@ -1637,8 +1689,8 @@ export type PluginApplicationsResponse = {
|
|
|
1637
1689
|
workspace: PluginApplicationsWorkspaceResponse;
|
|
1638
1690
|
};
|
|
1639
1691
|
export type PagePluginApplicationsResponse = {
|
|
1640
|
-
totalElements?: number;
|
|
1641
1692
|
totalPages?: number;
|
|
1693
|
+
totalElements?: number;
|
|
1642
1694
|
first?: boolean;
|
|
1643
1695
|
last?: boolean;
|
|
1644
1696
|
size?: number;
|
|
@@ -1663,8 +1715,8 @@ export type PluginUsageMonitorApplicationViewResponse = {
|
|
|
1663
1715
|
environment: PluginUsageMonitorApplicationViewEnvironmentResponse;
|
|
1664
1716
|
};
|
|
1665
1717
|
export type PagePluginUsageMonitorApplicationViewResponse = {
|
|
1666
|
-
totalElements?: number;
|
|
1667
1718
|
totalPages?: number;
|
|
1719
|
+
totalElements?: number;
|
|
1668
1720
|
first?: boolean;
|
|
1669
1721
|
last?: boolean;
|
|
1670
1722
|
size?: number;
|
|
@@ -1786,8 +1838,8 @@ export type ContentEvaluationResponse = {
|
|
|
1786
1838
|
pendingDiscussionReading: boolean;
|
|
1787
1839
|
};
|
|
1788
1840
|
export type PageContentEvaluationResponse = {
|
|
1789
|
-
totalElements?: number;
|
|
1790
1841
|
totalPages?: number;
|
|
1842
|
+
totalElements?: number;
|
|
1791
1843
|
first?: boolean;
|
|
1792
1844
|
last?: boolean;
|
|
1793
1845
|
size?: number;
|
|
@@ -1941,8 +1993,7 @@ export declare function createConnectionInterfaceType({ createConnectionInterfac
|
|
|
1941
1993
|
/**
|
|
1942
1994
|
* Validate and return info from a workflow
|
|
1943
1995
|
*/
|
|
1944
|
-
export declare function validateWorkflow({
|
|
1945
|
-
studioSlug?: string;
|
|
1996
|
+
export declare function validateWorkflow({ body }: {
|
|
1946
1997
|
body?: {
|
|
1947
1998
|
file: Blob;
|
|
1948
1999
|
};
|
|
@@ -2125,9 +2176,8 @@ export declare function listStudios({ xWorkspaceId, filterStudioRequest }: {
|
|
|
2125
2176
|
/**
|
|
2126
2177
|
* Validate and return info from a starter
|
|
2127
2178
|
*/
|
|
2128
|
-
export declare function validateStack({ starterPath,
|
|
2179
|
+
export declare function validateStack({ starterPath, body }: {
|
|
2129
2180
|
starterPath: string;
|
|
2130
|
-
studioSlug?: string;
|
|
2131
2181
|
body?: {
|
|
2132
2182
|
file: Blob;
|
|
2133
2183
|
};
|
|
@@ -2277,8 +2327,7 @@ export declare function getStackVersionListByIds({ xWorkspaceId, filterStackVers
|
|
|
2277
2327
|
/**
|
|
2278
2328
|
* Validate and return info from a stack
|
|
2279
2329
|
*/
|
|
2280
|
-
export declare function validateStack1({
|
|
2281
|
-
studioSlug?: string;
|
|
2330
|
+
export declare function validateStack1({ body }: {
|
|
2282
2331
|
body?: {
|
|
2283
2332
|
file: Blob;
|
|
2284
2333
|
};
|
|
@@ -2306,8 +2355,7 @@ export declare function deprecatePluginVersion({ pluginVersionId, deprecateConte
|
|
|
2306
2355
|
/**
|
|
2307
2356
|
* Validate and return info from a plugin
|
|
2308
2357
|
*/
|
|
2309
|
-
export declare function validatePlugin({
|
|
2310
|
-
studioSlug?: string;
|
|
2358
|
+
export declare function validatePlugin({ body }: {
|
|
2311
2359
|
body?: {
|
|
2312
2360
|
file: Blob;
|
|
2313
2361
|
};
|
|
@@ -2359,8 +2407,7 @@ export declare function deprecateActionVersion({ actionVersionId, deprecateConte
|
|
|
2359
2407
|
/**
|
|
2360
2408
|
* Validate and return info from a action
|
|
2361
2409
|
*/
|
|
2362
|
-
export declare function validateAction({
|
|
2363
|
-
studioSlug?: string;
|
|
2410
|
+
export declare function validateAction({ body }: {
|
|
2364
2411
|
body?: {
|
|
2365
2412
|
file: Blob;
|
|
2366
2413
|
};
|
|
@@ -2603,6 +2650,15 @@ export declare function downloadWorkflowBase64({ studioSlug, workflowSlug, versi
|
|
|
2603
2650
|
version: string;
|
|
2604
2651
|
xWorkspaceId?: string;
|
|
2605
2652
|
}, opts?: Oazapfts.RequestOpts): Promise<DownloadWorkflowBase64Response>;
|
|
2653
|
+
/**
|
|
2654
|
+
* Get workflow version
|
|
2655
|
+
*/
|
|
2656
|
+
export declare function getWorkflow({ studioSlug, workflowSlug, version, xWorkspaceId }: {
|
|
2657
|
+
studioSlug: string;
|
|
2658
|
+
workflowSlug: string;
|
|
2659
|
+
version?: string;
|
|
2660
|
+
xWorkspaceId?: string;
|
|
2661
|
+
}, opts?: Oazapfts.RequestOpts): Promise<GetWorkflowResponse>;
|
|
2606
2662
|
/**
|
|
2607
2663
|
* Get available workflow versions by workflow slug
|
|
2608
2664
|
*/
|
|
@@ -2613,6 +2669,15 @@ export declare function getAvailableWorkflowVersionsByWorkflowSlug({ studioSlug,
|
|
|
2613
2669
|
range: string;
|
|
2614
2670
|
pageable: Pageable;
|
|
2615
2671
|
}, opts?: Oazapfts.RequestOpts): Promise<PageGetAvailableWorkflowVersionsResponse>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Get an workflow documentation
|
|
2674
|
+
*/
|
|
2675
|
+
export declare function getWorkflowDoc({ studioSlug, documentationId, language, status }: {
|
|
2676
|
+
studioSlug: string;
|
|
2677
|
+
documentationId: string;
|
|
2678
|
+
language: string;
|
|
2679
|
+
status?: string;
|
|
2680
|
+
}, opts?: Oazapfts.RequestOpts): Promise<DocumentationResponse>;
|
|
2616
2681
|
/**
|
|
2617
2682
|
* Get a starter documentation
|
|
2618
2683
|
*/
|