@stack-spot/portal-network 0.235.2 → 0.236.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 +14 -0
- package/dist/api/cloudPlatform.d.ts +300 -14
- package/dist/api/cloudPlatform.d.ts.map +1 -1
- package/dist/api/cloudPlatform.js +214 -10
- package/dist/api/cloudPlatform.js.map +1 -1
- package/dist/api/content.d.ts +2 -1
- package/dist/api/content.d.ts.map +1 -1
- package/dist/api/content.js +2 -1
- package/dist/api/content.js.map +1 -1
- package/dist/apis.json +7 -3
- package/dist/client/cloud-platform.d.ts +684 -12
- package/dist/client/cloud-platform.d.ts.map +1 -1
- package/dist/client/cloud-platform.js +888 -15
- package/dist/client/cloud-platform.js.map +1 -1
- package/dist/client/content.d.ts +1 -0
- package/dist/client/content.d.ts.map +1 -1
- package/package.json +2 -2
- package/scripts/generate-apis.ts +4 -3
- package/src/api/cloudPlatform.ts +511 -20
- package/src/api/content.ts +11 -9
- package/src/api-docs/cloud-platform-docs-prd.json +12139 -0
- package/src/api-docs/cloud-platform-docs-stg.json +12139 -0
- package/src/apis.json +7 -3
- package/src/client/cloud-platform.ts +596 -14
package/src/api/content.ts
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* DO NOT MODIFY - This file has been generated using oazapfts.
|
|
5
5
|
* See https://www.npmjs.com/package/oazapfts
|
|
6
6
|
*/
|
|
7
|
-
import * as Oazapfts from "@oazapfts/runtime"
|
|
8
|
-
import * as QS from "@oazapfts/runtime/query"
|
|
7
|
+
import * as Oazapfts from "@oazapfts/runtime"
|
|
8
|
+
import * as QS from "@oazapfts/runtime/query"
|
|
9
9
|
export const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders> = {
|
|
10
10
|
headers: {},
|
|
11
11
|
baseUrl: "https://content-content-api.stg.stackspot.com",
|
|
@@ -3920,10 +3920,11 @@ export function removeStackWorkspace({ stackVersionId, workspaceId, accountId }:
|
|
|
3920
3920
|
/**
|
|
3921
3921
|
* List all workflows versions from a stack version
|
|
3922
3922
|
*/
|
|
3923
|
-
export function listWorkflows({ stackVersionId, xWorkspaceId, displayName, $type, target, pageable }: {
|
|
3923
|
+
export function listWorkflows({ stackVersionId, xWorkspaceId, displayName, workflowSlug, $type, target, pageable }: {
|
|
3924
3924
|
stackVersionId: string;
|
|
3925
3925
|
xWorkspaceId?: string;
|
|
3926
3926
|
displayName?: string;
|
|
3927
|
+
workflowSlug?: string;
|
|
3927
3928
|
$type?: string;
|
|
3928
3929
|
target?: string;
|
|
3929
3930
|
pageable: Pageable;
|
|
@@ -3934,21 +3935,22 @@ export function listWorkflows({ stackVersionId, xWorkspaceId, displayName, $type
|
|
|
3934
3935
|
} | {
|
|
3935
3936
|
status: 422;
|
|
3936
3937
|
data: {
|
|
3937
|
-
code
|
|
3938
|
-
status
|
|
3939
|
-
details
|
|
3938
|
+
code?: string;
|
|
3939
|
+
status?: number;
|
|
3940
|
+
details?: string;
|
|
3940
3941
|
validationDetails?: ValidationDetails[];
|
|
3941
3942
|
};
|
|
3942
3943
|
} | {
|
|
3943
3944
|
status: 500;
|
|
3944
3945
|
data: {
|
|
3945
|
-
code
|
|
3946
|
-
status
|
|
3947
|
-
details
|
|
3946
|
+
code?: string;
|
|
3947
|
+
status?: number;
|
|
3948
|
+
details?: string;
|
|
3948
3949
|
validationDetails?: ValidationDetails[];
|
|
3949
3950
|
};
|
|
3950
3951
|
}>(`/v1/stacks/versions/${encodeURIComponent(stackVersionId)}/workflows${QS.query(QS.explode({
|
|
3951
3952
|
displayName,
|
|
3953
|
+
workflowSlug,
|
|
3952
3954
|
"type": $type,
|
|
3953
3955
|
target,
|
|
3954
3956
|
pageable
|