@stack-spot/portal-network 0.198.2 → 0.198.4
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/agent-tools.d.ts +6 -0
- package/dist/api/agent-tools.d.ts.map +1 -1
- package/dist/api/agent-tools.js.map +1 -1
- package/dist/api/agent.d.ts +55 -55
- package/dist/api/agent.d.ts.map +1 -1
- package/dist/api-addresses.d.ts.map +1 -1
- package/dist/client/account.d.ts +233 -233
- package/dist/client/account.d.ts.map +1 -1
- package/dist/client/agent-tools.d.ts +124 -124
- package/dist/client/agent-tools.d.ts.map +1 -1
- package/dist/client/agent-tools.js +10 -1
- package/dist/client/agent-tools.js.map +1 -1
- package/dist/client/agent.d.ts +46 -46
- package/dist/client/agent.d.ts.map +1 -1
- package/dist/client/ai.d.ts +106 -106
- package/dist/client/ai.d.ts.map +1 -1
- package/dist/client/api-management.d.ts +2 -2
- package/dist/client/cloud-account.d.ts +13 -13
- package/dist/client/cloud-platform-horizon.d.ts +19 -19
- package/dist/client/cloud-platform.d.ts +50 -50
- package/dist/client/cloud-runtimes.d.ts +4 -4
- package/dist/client/cloud-services.d.ts +17 -17
- package/dist/client/cloud-services.d.ts.map +1 -1
- package/dist/client/code-shift.d.ts +261 -261
- package/dist/client/content.d.ts +127 -132
- package/dist/client/content.d.ts.map +1 -1
- package/dist/client/data-integration.d.ts +55 -55
- package/dist/client/data-integration.d.ts.map +1 -1
- package/dist/client/discover.d.ts +8 -8
- package/dist/client/discover.d.ts.map +1 -1
- package/dist/client/event-bus.d.ts.map +1 -1
- package/dist/client/gen-ai-inference.d.ts +20 -20
- package/dist/client/insights.d.ts +7 -7
- package/dist/client/notification.d.ts +10 -10
- package/dist/client/runtime-manager.d.ts +8 -8
- package/dist/client/workflow.d.ts +10 -10
- package/dist/client/workspace-ai.d.ts +48 -48
- package/dist/client/workspace-manager.d.ts +77 -77
- package/dist/client/workspace-search.d.ts +2 -2
- package/dist/client/workspace.d.ts +58 -105
- package/dist/client/workspace.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/api/agent-tools.ts +6 -0
- package/src/client/agent-tools.ts +10 -1
|
@@ -10,31 +10,31 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
10
10
|
protected buildStackSpotError(error: HttpError): StackspotAPIError;
|
|
11
11
|
createWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
12
12
|
authorization: string;
|
|
13
|
-
xAccountId?: string | null
|
|
13
|
+
xAccountId?: string | null;
|
|
14
14
|
newWorkspaceRequest: import("../api/workspace-ai.js").NewWorkspaceRequest;
|
|
15
15
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").NewWorkspaceResponse>;
|
|
16
16
|
workspacesAi: import("../network/types.js").QueryObject<Omit<{
|
|
17
|
-
visibility?: import("../api/workspace-ai.js").WorkspaceVisibilityLevelEnum
|
|
18
|
-
order?: import("../api/workspace-ai.js").OrderEnum
|
|
19
|
-
name?: string | null
|
|
17
|
+
visibility?: import("../api/workspace-ai.js").WorkspaceVisibilityLevelEnum;
|
|
18
|
+
order?: import("../api/workspace-ai.js").OrderEnum;
|
|
19
|
+
name?: string | null;
|
|
20
20
|
authorization: string;
|
|
21
|
-
xAccountId?: string | null
|
|
21
|
+
xAccountId?: string | null;
|
|
22
22
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").WorkspaceResponse[]>;
|
|
23
23
|
workspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
24
24
|
id: string;
|
|
25
25
|
authorization: string;
|
|
26
|
-
xAccountId?: string | null
|
|
26
|
+
xAccountId?: string | null;
|
|
27
27
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").WorkspaceResponse>;
|
|
28
28
|
updateWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
29
29
|
workspaceId: string;
|
|
30
30
|
authorization: string;
|
|
31
|
-
xAccountId?: string | null
|
|
31
|
+
xAccountId?: string | null;
|
|
32
32
|
updateWorkspaceRequest: import("../api/workspace-ai.js").UpdateWorkspaceRequest;
|
|
33
33
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
34
34
|
deleteWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
35
35
|
workspaceId: string;
|
|
36
36
|
authorization: string;
|
|
37
|
-
xAccountId?: string | null
|
|
37
|
+
xAccountId?: string | null;
|
|
38
38
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
39
39
|
/**
|
|
40
40
|
* Adds a resource to the Spot.
|
|
@@ -43,7 +43,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
43
43
|
workspaceId: string;
|
|
44
44
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
45
45
|
authorization: string;
|
|
46
|
-
xAccountId?: string | null
|
|
46
|
+
xAccountId?: string | null;
|
|
47
47
|
addWorkspaceContentRequest: import("../api/workspace-ai.js").AddWorkspaceContentRequest;
|
|
48
48
|
}, "authorization">, FixedAddResourceToWorkspaceAi>;
|
|
49
49
|
/**
|
|
@@ -52,9 +52,9 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
52
52
|
getKSFromWorkspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
53
53
|
workspaceId: string;
|
|
54
54
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
55
|
-
name?: string | null
|
|
55
|
+
name?: string | null;
|
|
56
56
|
authorization: string;
|
|
57
|
-
xAccountId?: string | null
|
|
57
|
+
xAccountId?: string | null;
|
|
58
58
|
}, "contentType" | "authorization">, KnowledgeSourceItemResponse[]>;
|
|
59
59
|
/**
|
|
60
60
|
* Lists all the stacks in a Spot.
|
|
@@ -62,9 +62,9 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
62
62
|
getStackFromWorkspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
63
63
|
workspaceId: string;
|
|
64
64
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
65
|
-
name?: string | null
|
|
65
|
+
name?: string | null;
|
|
66
66
|
authorization: string;
|
|
67
|
-
xAccountId?: string | null
|
|
67
|
+
xAccountId?: string | null;
|
|
68
68
|
}, "contentType" | "authorization">, GetAiStackResponse[]>;
|
|
69
69
|
/**
|
|
70
70
|
* Lists all the quick commands in a Spot.
|
|
@@ -72,9 +72,9 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
72
72
|
getQCFromWorkspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
73
73
|
workspaceId: string;
|
|
74
74
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
75
|
-
name?: string | null
|
|
75
|
+
name?: string | null;
|
|
76
76
|
authorization: string;
|
|
77
|
-
xAccountId?: string | null
|
|
77
|
+
xAccountId?: string | null;
|
|
78
78
|
}, "contentType" | "authorization">, QuickCommandResponse[]>;
|
|
79
79
|
/**
|
|
80
80
|
* Lists all the agents in a Spot.
|
|
@@ -82,9 +82,9 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
82
82
|
getAgentFromWorkspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
83
83
|
workspaceId: string;
|
|
84
84
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
85
|
-
name?: string | null
|
|
85
|
+
name?: string | null;
|
|
86
86
|
authorization: string;
|
|
87
|
-
xAccountId?: string | null
|
|
87
|
+
xAccountId?: string | null;
|
|
88
88
|
}, "contentType" | "authorization">, AgentResponse[]>;
|
|
89
89
|
/**
|
|
90
90
|
* Lists all the toolkits in a Spot.
|
|
@@ -92,27 +92,27 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
92
92
|
getToolkitsFromWorkspaceAi: import("../network/types.js").QueryObject<Omit<{
|
|
93
93
|
workspaceId: string;
|
|
94
94
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
95
|
-
name?: string | null
|
|
95
|
+
name?: string | null;
|
|
96
96
|
authorization: string;
|
|
97
|
-
xAccountId?: string | null
|
|
97
|
+
xAccountId?: string | null;
|
|
98
98
|
}, "contentType" | "authorization">, CustomToolkitResponse[]>;
|
|
99
99
|
deleteResourceTypeFromWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
100
100
|
workspaceId: string;
|
|
101
101
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
102
102
|
contentId: string;
|
|
103
103
|
authorization: string;
|
|
104
|
-
xAccountId?: string | null
|
|
104
|
+
xAccountId?: string | null;
|
|
105
105
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
106
106
|
addPermissionToWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
107
107
|
workspaceId: string;
|
|
108
108
|
authorization: string;
|
|
109
|
-
xAccountId?: string | null
|
|
109
|
+
xAccountId?: string | null;
|
|
110
110
|
workspacePermissionRequest: import("../api/workspace-ai.js").WorkspacePermissionRequest;
|
|
111
111
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
112
112
|
removePermissionToWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
113
113
|
workspaceId: string;
|
|
114
114
|
authorization: string;
|
|
115
|
-
xAccountId?: string | null
|
|
115
|
+
xAccountId?: string | null;
|
|
116
116
|
workspacePermissionRequest: import("../api/workspace-ai.js").WorkspacePermissionRequest;
|
|
117
117
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
118
118
|
/**
|
|
@@ -123,15 +123,15 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
123
123
|
*/
|
|
124
124
|
groupsOfWorkspaceAi: import("../network/types.js").QueryObject<{
|
|
125
125
|
workspaceId: string;
|
|
126
|
-
search?: string | null
|
|
127
|
-
filterBy?: string | null
|
|
128
|
-
filterValue?: string | null
|
|
129
|
-
sortBy?: import("../api/workspace-ai.js").SortBy | null
|
|
130
|
-
page?: number
|
|
131
|
-
size?: number
|
|
132
|
-
order?: import("../api/workspace-ai.js").OrderEnum
|
|
133
|
-
authorization: string;
|
|
134
|
-
xAccountId?: string | null
|
|
126
|
+
search?: string | null;
|
|
127
|
+
filterBy?: string | null;
|
|
128
|
+
filterValue?: string | null;
|
|
129
|
+
sortBy?: import("../api/workspace-ai.js").SortBy | null;
|
|
130
|
+
page?: number;
|
|
131
|
+
size?: number;
|
|
132
|
+
order?: import("../api/workspace-ai.js").OrderEnum;
|
|
133
|
+
authorization: string;
|
|
134
|
+
xAccountId?: string | null;
|
|
135
135
|
}, FixedWorkspaceAiPermissions>;
|
|
136
136
|
/**
|
|
137
137
|
* Adds the resource of type Workspace AI to the list of favorites.
|
|
@@ -139,7 +139,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
139
139
|
addFavoriteWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
140
140
|
workspaceId: string;
|
|
141
141
|
authorization: string;
|
|
142
|
-
xAccountId?: string | null
|
|
142
|
+
xAccountId?: string | null;
|
|
143
143
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
144
144
|
/**
|
|
145
145
|
* Removes the resource of type Workspace AI from the list of favorites.
|
|
@@ -147,16 +147,16 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
147
147
|
removeFavoriteWorkspaceAi: import("../network/types.js").MutationObject<Omit<{
|
|
148
148
|
workspaceId: string;
|
|
149
149
|
authorization: string;
|
|
150
|
-
xAccountId?: string | null
|
|
150
|
+
xAccountId?: string | null;
|
|
151
151
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
152
152
|
/**
|
|
153
153
|
* Gets all content from all workspaces to which the user has permissions.
|
|
154
154
|
*/
|
|
155
155
|
workspacesContentsByType: import("../network/types.js").QueryObject<Omit<{
|
|
156
156
|
contentType: import("../api/workspace-ai.js").ContentType;
|
|
157
|
-
name?: string | null
|
|
157
|
+
name?: string | null;
|
|
158
158
|
authorization: string;
|
|
159
|
-
xAccountId?: string | null
|
|
159
|
+
xAccountId?: string | null;
|
|
160
160
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").ListWksContentsResponse[]>;
|
|
161
161
|
/**
|
|
162
162
|
* Get a generated link to share a spot
|
|
@@ -164,7 +164,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
164
164
|
generateShareSpotLink: import("../network/types.js").MutationObject<Omit<{
|
|
165
165
|
workspaceId: string;
|
|
166
166
|
authorization: string;
|
|
167
|
-
xAccountId?: string | null
|
|
167
|
+
xAccountId?: string | null;
|
|
168
168
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").ShareableLinkResponse>;
|
|
169
169
|
/**
|
|
170
170
|
* Get a shareable link from a spot
|
|
@@ -172,7 +172,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
172
172
|
shareableLink: import("../network/types.js").MutationObject<Omit<{
|
|
173
173
|
shareId: string;
|
|
174
174
|
authorization: string;
|
|
175
|
-
xAccountId?: string | null
|
|
175
|
+
xAccountId?: string | null;
|
|
176
176
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").ShareableLinkResponse>;
|
|
177
177
|
/**
|
|
178
178
|
* Add permission to resource
|
|
@@ -181,7 +181,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
181
181
|
resourceType: import("../api/workspace-ai.js").ContentType;
|
|
182
182
|
resourceIdentifier: string;
|
|
183
183
|
authorization: string;
|
|
184
|
-
xAccountId?: string | null
|
|
184
|
+
xAccountId?: string | null;
|
|
185
185
|
permissionListForSharedRequest: import("../api/workspace-ai.js").PermissionListForSharedRequest;
|
|
186
186
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
187
187
|
/**
|
|
@@ -191,7 +191,7 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
191
191
|
resourceType: import("../api/workspace-ai.js").ContentType;
|
|
192
192
|
resourceIdentifier: string;
|
|
193
193
|
authorization: string;
|
|
194
|
-
xAccountId?: string | null
|
|
194
|
+
xAccountId?: string | null;
|
|
195
195
|
permissionListForSharedRequest: import("../api/workspace-ai.js").PermissionListForSharedRequest;
|
|
196
196
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, unknown>;
|
|
197
197
|
/**
|
|
@@ -200,15 +200,15 @@ declare class WorkspaceAiClient extends ReactQueryNetworkClient {
|
|
|
200
200
|
listMembersResource: import("../network/types.js").InfiniteQueryObject<Omit<{
|
|
201
201
|
resourceType: import("../api/workspace-ai.js").ContentType;
|
|
202
202
|
resourceIdentifier: string;
|
|
203
|
-
search?: string | null
|
|
204
|
-
filterBy?: string | null
|
|
205
|
-
filterValue?: string | null
|
|
206
|
-
sortBy?: import("../api/workspace-ai.js").SortBy | null
|
|
207
|
-
page?: number
|
|
208
|
-
size?: number
|
|
209
|
-
order?: import("../api/workspace-ai.js").OrderEnum
|
|
210
|
-
authorization: string;
|
|
211
|
-
xAccountId?: string | null
|
|
203
|
+
search?: string | null;
|
|
204
|
+
filterBy?: string | null;
|
|
205
|
+
filterValue?: string | null;
|
|
206
|
+
sortBy?: import("../api/workspace-ai.js").SortBy | null;
|
|
207
|
+
page?: number;
|
|
208
|
+
size?: number;
|
|
209
|
+
order?: import("../api/workspace-ai.js").OrderEnum;
|
|
210
|
+
authorization: string;
|
|
211
|
+
xAccountId?: string | null;
|
|
212
212
|
}, "authorization" | "authorizationHeader" | "jwtToken"> & {}, import("../api/workspace-ai.js").ResourceMembersResponse[], "">;
|
|
213
213
|
}
|
|
214
214
|
export declare const workspaceAiClient: WorkspaceAiClient;
|
|
@@ -38,7 +38,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
38
38
|
workspaceId: string;
|
|
39
39
|
stackVersionId: string;
|
|
40
40
|
pluginVersionId: string;
|
|
41
|
-
envName?: string
|
|
41
|
+
envName?: string;
|
|
42
42
|
}, FixedFullInputContextResponse>;
|
|
43
43
|
/**
|
|
44
44
|
* Gets workflow in a workspace stack
|
|
@@ -55,7 +55,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
55
55
|
workspaceId: string;
|
|
56
56
|
stackVersionId: string;
|
|
57
57
|
workflowVersionId: string;
|
|
58
|
-
envName?: string
|
|
58
|
+
envName?: string;
|
|
59
59
|
}, FixedWorkflowForCreationResponse>;
|
|
60
60
|
/**
|
|
61
61
|
* Gets workflow inputs in an account stack
|
|
@@ -63,7 +63,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
63
63
|
workflowInputsInAccount: import("../network/types.js").QueryObject<{
|
|
64
64
|
stackVersionId: string;
|
|
65
65
|
workflowVersionId: string;
|
|
66
|
-
envName?: string
|
|
66
|
+
envName?: string;
|
|
67
67
|
}, FixedFullInputContextResponse>;
|
|
68
68
|
/**
|
|
69
69
|
* Gets inputs from a plugin in account context
|
|
@@ -71,7 +71,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
71
71
|
pluginInputsAccount: import("../network/types.js").QueryObject<{
|
|
72
72
|
stackVersionId: string;
|
|
73
73
|
pluginVersionId: string;
|
|
74
|
-
envName?: string
|
|
74
|
+
envName?: string;
|
|
75
75
|
}, FixedFullInputContextResponse>;
|
|
76
76
|
/**
|
|
77
77
|
* Update context inputs from a plugin in workspace
|
|
@@ -128,14 +128,14 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
128
128
|
workspaceId: string;
|
|
129
129
|
sharedInfraId: string;
|
|
130
130
|
envName: string;
|
|
131
|
-
pluginType?: string
|
|
132
|
-
containsLinks?: boolean
|
|
131
|
+
pluginType?: string;
|
|
132
|
+
containsLinks?: boolean;
|
|
133
133
|
}, import("../api/workspaceManager.js").SharedInfraAppliedPluginsV2Response>;
|
|
134
134
|
/**
|
|
135
135
|
* List all environments from account
|
|
136
136
|
*/
|
|
137
137
|
listEnvironments: import("../network/types.js").QueryObject<{
|
|
138
|
-
accountId?: string
|
|
138
|
+
accountId?: string;
|
|
139
139
|
}, import("../api/workspaceManager.js").EnvironmentResponse[]>;
|
|
140
140
|
/**
|
|
141
141
|
* Gets applied plugins in application
|
|
@@ -144,8 +144,8 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
144
144
|
workspaceId: string;
|
|
145
145
|
applicationId: string;
|
|
146
146
|
envName: string;
|
|
147
|
-
pluginType?: string
|
|
148
|
-
containsLinks?: boolean
|
|
147
|
+
pluginType?: string;
|
|
148
|
+
containsLinks?: boolean;
|
|
149
149
|
}, import("../api/workspaceManager.js").ApplicationAppliedPluginsV2Response>;
|
|
150
150
|
/**
|
|
151
151
|
* Gets plugin inputs and connection interface from a plugin in a stack version in workspace
|
|
@@ -186,7 +186,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
186
186
|
workspaceId: string;
|
|
187
187
|
stackVersionId: string;
|
|
188
188
|
actionsVersionId: string;
|
|
189
|
-
envName?: string
|
|
189
|
+
envName?: string;
|
|
190
190
|
}, FixedFullInputContextResponse>;
|
|
191
191
|
/**
|
|
192
192
|
* Gets inputs from an action in account context
|
|
@@ -194,7 +194,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
194
194
|
actionInputsAccount: import("../network/types.js").QueryObject<{
|
|
195
195
|
stackVersionId: string;
|
|
196
196
|
actionsVersionId: string;
|
|
197
|
-
envName?: string
|
|
197
|
+
envName?: string;
|
|
198
198
|
}, FixedFullInputContextResponse>;
|
|
199
199
|
/**
|
|
200
200
|
* Update context inputs from an action in workspace
|
|
@@ -265,7 +265,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
265
265
|
workspaceId: string;
|
|
266
266
|
sharedInfraId: string;
|
|
267
267
|
envName: string;
|
|
268
|
-
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW"
|
|
268
|
+
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW";
|
|
269
269
|
page: number;
|
|
270
270
|
size: number;
|
|
271
271
|
}, FixedPaginatedActivityResponse, "items">;
|
|
@@ -276,7 +276,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
276
276
|
workspaceId: string;
|
|
277
277
|
applicationId: string;
|
|
278
278
|
envName: string;
|
|
279
|
-
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW"
|
|
279
|
+
$type?: "DEPLOY" | "DESTROY" | "ROLLBACK" | "CREATE" | "ACTION" | "CUSTOMER_WORKFLOW";
|
|
280
280
|
page: number;
|
|
281
281
|
size: number;
|
|
282
282
|
}, FixedPaginatedActivityResponse, "items">;
|
|
@@ -291,40 +291,40 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
291
291
|
* Get all workspaces with pagination
|
|
292
292
|
*/
|
|
293
293
|
workspacesWithPagination: import("../network/types.js").InfiniteQueryObject<{
|
|
294
|
-
name?: string
|
|
295
|
-
aclOnly?: boolean
|
|
296
|
-
accountId?: string
|
|
297
|
-
page?: number
|
|
298
|
-
size?: number
|
|
299
|
-
sortBy?: "NAME" | "DESCRIPTION"
|
|
300
|
-
sortDir?: "ASC" | "DESC"
|
|
301
|
-
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
294
|
+
name?: string;
|
|
295
|
+
aclOnly?: boolean;
|
|
296
|
+
accountId?: string;
|
|
297
|
+
page?: number;
|
|
298
|
+
size?: number;
|
|
299
|
+
sortBy?: "NAME" | "DESCRIPTION";
|
|
300
|
+
sortDir?: "ASC" | "DESC";
|
|
301
|
+
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
302
302
|
}, import("../api/workspaceManager.js").WorkspacePageResponse, "items">;
|
|
303
303
|
/**
|
|
304
304
|
* Get all applications by workspace with pagination
|
|
305
305
|
*/
|
|
306
306
|
applicationsByWorkspaceWithPagination: import("../network/types.js").QueryObject<{
|
|
307
307
|
workspaceId: string;
|
|
308
|
-
stackVersionId?: string
|
|
309
|
-
stackId?: string
|
|
310
|
-
name?: string
|
|
311
|
-
page?: number
|
|
312
|
-
size?: number
|
|
313
|
-
sortBy?: "
|
|
314
|
-
sortDir?: "ASC" | "DESC"
|
|
308
|
+
stackVersionId?: string;
|
|
309
|
+
stackId?: string;
|
|
310
|
+
name?: string;
|
|
311
|
+
page?: number;
|
|
312
|
+
size?: number;
|
|
313
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
314
|
+
sortDir?: "ASC" | "DESC";
|
|
315
315
|
}, import("../api/workspaceManager.js").ApplicationPageResponse>;
|
|
316
316
|
/**
|
|
317
317
|
* Get all shared infra by workspace with pagination
|
|
318
318
|
*/
|
|
319
319
|
sharedInfraByWorkspaceWithPagination: import("../network/types.js").QueryObject<{
|
|
320
320
|
workspaceId: string;
|
|
321
|
-
stackId?: string
|
|
322
|
-
stackVersionId?: string
|
|
323
|
-
name?: string
|
|
324
|
-
page?: number
|
|
325
|
-
size?: number
|
|
326
|
-
sortBy?: "
|
|
327
|
-
sortDir?: "ASC" | "DESC"
|
|
321
|
+
stackId?: string;
|
|
322
|
+
stackVersionId?: string;
|
|
323
|
+
name?: string;
|
|
324
|
+
page?: number;
|
|
325
|
+
size?: number;
|
|
326
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
327
|
+
sortDir?: "ASC" | "DESC";
|
|
328
328
|
}, import("../api/workspaceManager.js").SharedInfraPageResponse>;
|
|
329
329
|
/**
|
|
330
330
|
* Get all stacks used to create application in a workspace
|
|
@@ -342,40 +342,40 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
342
342
|
* Get all workspaces associated with an account.
|
|
343
343
|
*/
|
|
344
344
|
getAccountWorkspaces: import("../network/types.js").QueryObject<{
|
|
345
|
-
name?: string
|
|
346
|
-
aclOnly?: boolean
|
|
347
|
-
accountId?: string
|
|
348
|
-
page?: number
|
|
349
|
-
size?: number
|
|
350
|
-
sortBy?: "NAME" | "DESCRIPTION"
|
|
351
|
-
sortDir?: "ASC" | "DESC"
|
|
352
|
-
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
345
|
+
name?: string;
|
|
346
|
+
aclOnly?: boolean;
|
|
347
|
+
accountId?: string;
|
|
348
|
+
page?: number;
|
|
349
|
+
size?: number;
|
|
350
|
+
sortBy?: "NAME" | "DESCRIPTION";
|
|
351
|
+
sortDir?: "ASC" | "DESC";
|
|
352
|
+
tabFilter?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
353
353
|
}, import("../api/workspaceManager.js").WorkspacePageResponse>;
|
|
354
354
|
/**
|
|
355
355
|
* Get all applications associated with an account.
|
|
356
356
|
*/
|
|
357
357
|
getAccountApplications: import("../network/types.js").InfiniteQueryObject<{
|
|
358
|
-
page?: number
|
|
359
|
-
size?: number
|
|
360
|
-
sortBy?: "
|
|
361
|
-
sortDir?: "ASC" | "DESC"
|
|
362
|
-
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
363
|
-
name?: string
|
|
364
|
-
stackVersionId?: string
|
|
365
|
-
stackId?: string
|
|
358
|
+
page?: number;
|
|
359
|
+
size?: number;
|
|
360
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
361
|
+
sortDir?: "ASC" | "DESC";
|
|
362
|
+
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
363
|
+
name?: string;
|
|
364
|
+
stackVersionId?: string;
|
|
365
|
+
stackId?: string;
|
|
366
366
|
}, import("../api/workspaceManager.js").AccountApplicationPageResponse, "items">;
|
|
367
367
|
/**
|
|
368
368
|
* Get all shared infrastructures associated with an account.
|
|
369
369
|
*/
|
|
370
370
|
getAccountSharedInfra: import("../network/types.js").QueryObject<{
|
|
371
|
-
page?: number
|
|
372
|
-
size?: number
|
|
373
|
-
sortBy?: "
|
|
374
|
-
sortDir?: "ASC" | "DESC"
|
|
375
|
-
name?: string
|
|
376
|
-
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE"
|
|
377
|
-
stackVersionId?: string
|
|
378
|
-
stackId?: string
|
|
371
|
+
page?: number;
|
|
372
|
+
size?: number;
|
|
373
|
+
sortBy?: "NAME" | "CREATED_AT" | "STACK_VERSION" | "STACK";
|
|
374
|
+
sortDir?: "ASC" | "DESC";
|
|
375
|
+
name?: string;
|
|
376
|
+
tab?: "FAVORITES" | "MY_RESOURCE" | "ALL_RESOURCE";
|
|
377
|
+
stackVersionId?: string;
|
|
378
|
+
stackId?: string;
|
|
379
379
|
}, import("../api/workspaceManager.js").AccountSharedInfraPageResponse>;
|
|
380
380
|
/** * Gets filters for applications associated with an account. */
|
|
381
381
|
getAccountApplicationsFilters: import("../network/types.js").QueryObject<void, import("../api/workspaceManager.js").StackFilterResponse>;
|
|
@@ -385,25 +385,25 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
385
385
|
* Find all account variables
|
|
386
386
|
*/
|
|
387
387
|
accountVariables: import("../network/types.js").QueryObject<{
|
|
388
|
-
accountId?: string
|
|
389
|
-
name?: string
|
|
390
|
-
page?: number
|
|
391
|
-
size?: number
|
|
392
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
393
|
-
sortDir?: "ASC" | "DESC"
|
|
388
|
+
accountId?: string;
|
|
389
|
+
name?: string;
|
|
390
|
+
page?: number;
|
|
391
|
+
size?: number;
|
|
392
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
393
|
+
sortDir?: "ASC" | "DESC";
|
|
394
394
|
}, import("../api/workspaceManager.js").PaginatedAccountVariableResponse>;
|
|
395
395
|
/**
|
|
396
396
|
* Get an account variable by name
|
|
397
397
|
*/
|
|
398
398
|
getAccountVariable: import("../network/types.js").QueryObject<{
|
|
399
|
-
accountId?: string
|
|
399
|
+
accountId?: string;
|
|
400
400
|
name: string;
|
|
401
401
|
}, import("../api/workspaceManager.js").AccountVariableResponse>;
|
|
402
402
|
/**
|
|
403
403
|
* Get account variable usage
|
|
404
404
|
*/
|
|
405
405
|
accountVariableUsage: import("../network/types.js").QueryObject<{
|
|
406
|
-
accountId?: string
|
|
406
|
+
accountId?: string;
|
|
407
407
|
name: string;
|
|
408
408
|
}, import("../api/workspaceManager.js").AccountVariableUsageResponse>;
|
|
409
409
|
/**
|
|
@@ -430,20 +430,20 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
430
430
|
*/
|
|
431
431
|
workspaceVariables: import("../network/types.js").QueryObject<{
|
|
432
432
|
workspaceId: string;
|
|
433
|
-
accountId?: string
|
|
434
|
-
page?: number
|
|
435
|
-
size?: number
|
|
436
|
-
sortBy?: "NAME" | "VALUE" | "CREATED_AT"
|
|
437
|
-
sortDir?: "ASC" | "DESC"
|
|
438
|
-
mandate?: boolean
|
|
439
|
-
name?: string
|
|
440
|
-
showEmptyValues?: boolean
|
|
433
|
+
accountId?: string;
|
|
434
|
+
page?: number;
|
|
435
|
+
size?: number;
|
|
436
|
+
sortBy?: "NAME" | "VALUE" | "CREATED_AT";
|
|
437
|
+
sortDir?: "ASC" | "DESC";
|
|
438
|
+
mandate?: boolean;
|
|
439
|
+
name?: string;
|
|
440
|
+
showEmptyValues?: boolean;
|
|
441
441
|
}, import("../api/workspaceManager.js").PaginatedWorkspaceVariableResponse>;
|
|
442
442
|
/**
|
|
443
443
|
* Get a workspace variable by name
|
|
444
444
|
*/
|
|
445
445
|
getWorkspaceVariable: import("../network/types.js").QueryObject<{
|
|
446
|
-
accountId?: string
|
|
446
|
+
accountId?: string;
|
|
447
447
|
workspaceId: string;
|
|
448
448
|
name: string;
|
|
449
449
|
}, import("../api/workspaceManager.js").WorkspaceVariableResponse>;
|
|
@@ -522,7 +522,7 @@ declare class WorkspaceManagerClient extends ReactQueryNetworkClient {
|
|
|
522
522
|
workspaceId: string;
|
|
523
523
|
applicationId: string;
|
|
524
524
|
environmentId: string;
|
|
525
|
-
applicationDestroyRequest?: import("../api/workspaceManager.js").ApplicationDestroyRequest
|
|
525
|
+
applicationDestroyRequest?: import("../api/workspaceManager.js").ApplicationDestroyRequest;
|
|
526
526
|
}, never>;
|
|
527
527
|
/**
|
|
528
528
|
* Destroys an infrastructure
|
|
@@ -13,8 +13,8 @@ declare class WorkspaceSearchClient extends ReactQueryNetworkClient {
|
|
|
13
13
|
*/
|
|
14
14
|
search: import("../network/types.js").InfiniteQueryObject<{
|
|
15
15
|
q: string;
|
|
16
|
-
category?: string
|
|
17
|
-
page?: number
|
|
16
|
+
category?: string;
|
|
17
|
+
page?: number;
|
|
18
18
|
}, import("../api/workspaceSearchEngine.js").SearchResponse, "content">;
|
|
19
19
|
/**
|
|
20
20
|
* Clears users history
|