Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ce-deploy-ui
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ccce
dev
ce-deploy-ui
Commits
eda0f0b5
Commit
eda0f0b5
authored
3 months ago
by
Max Frederiksen
Browse files
Options
Downloads
Plain Diff
Merge branch 'generate-deploy-api' into 'develop'
Generate new deploy api See merge request
!589
parents
cf62d75b
5f2225e0
No related branches found
No related tags found
2 merge requests
!612
Release 5.0.0
,
!589
Generate new deploy api
Pipeline
#211087
passed
2 months ago
Changes
1
Pipelines
9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/store/deployApi.ts
+5
-6
5 additions, 6 deletions
src/store/deployApi.ts
with
5 additions
and
6 deletions
src/store/deployApi.ts
+
5
−
6
View file @
eda0f0b5
...
...
@@ -675,7 +675,7 @@ export type GitReferenceTypeApiArg = {
gitReference
:
string
;
};
export
type
InfoFromUserNameApiResponse
=
/** status 200 Information about the current user */
UserInfoResponse
[]
;
/** status 200 Information about the current user */
UserInfoResponse
;
export
type
InfoFromUserNameApiArg
=
{
/** The username to retrieve info from - optional. If no user name provided the backend will look up for currently logged in user name */
userName
?:
string
;
...
...
@@ -760,7 +760,6 @@ export type JobEntry = {
deploymentId
?:
number
;
gitProjectId
?:
number
;
gitReference
?:
string
;
status
?:
"
UNKNOWN
"
|
"
QUEUED
"
|
"
RUNNING
"
|
"
FAILED
"
|
"
SUCCESSFUL
"
;
host
?:
DeploymentHostInfo
;
};
export
type
BatchJob
=
{
...
...
@@ -787,12 +786,12 @@ export type BatchUndeploymentRequest = {
undeployments
?:
UndeploymentRequest
[];
};
export
type
DeploymentRequest
=
{
iocId
?
:
number
;
iocId
:
number
;
sourceVersion
?:
string
;
hostId
?
:
string
;
hostId
:
string
;
};
export
type
BatchDeploymentRequest
=
{
deployments
?
:
DeploymentRequest
[];
deployments
:
DeploymentRequest
[];
};
export
type
ActiveDeployment
=
{
host
?:
DeploymentHostInfo
;
...
...
@@ -926,11 +925,11 @@ export type RecordDetails = {
description
?:
string
;
recordType
?:
string
;
aliasFor
?:
string
;
aliasTo
?:
string
[];
properties
?:
{
[
key
:
string
]:
string
;
};
hostId
?:
string
;
aliasTo
?:
string
[];
};
export
type
NameResponse
=
{
uuid
?:
string
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment