feat(frontend): render new job kinds (#4864)
This commit is contained in:
@@ -8709,6 +8709,9 @@ paths:
|
||||
- identity
|
||||
- deploymentcallback
|
||||
- singlescriptflow
|
||||
- flowscript
|
||||
- flownode
|
||||
- appscript
|
||||
schedule_path:
|
||||
type: string
|
||||
permissioned_as:
|
||||
@@ -9267,6 +9270,9 @@ paths:
|
||||
- identity
|
||||
- deploymentcallback
|
||||
- singlescriptflow
|
||||
- flowscript
|
||||
- flownode
|
||||
- appscript
|
||||
schedule_path:
|
||||
type: string
|
||||
permissioned_as:
|
||||
|
||||
@@ -10983,6 +10983,8 @@ components:
|
||||
"deploymentcallback",
|
||||
"singlescriptflow",
|
||||
"flowscript",
|
||||
"flownode",
|
||||
"appscript",
|
||||
]
|
||||
schedule_path:
|
||||
type: string
|
||||
@@ -11103,6 +11105,8 @@ components:
|
||||
"deploymentcallback",
|
||||
"singlescriptflow",
|
||||
"flowscript",
|
||||
"flownode",
|
||||
"appscript",
|
||||
]
|
||||
schedule_path:
|
||||
type: string
|
||||
|
||||
@@ -558,6 +558,9 @@ var $QueuedJob = {
|
||||
"identity",
|
||||
"deploymentcallback",
|
||||
"singlescriptflow",
|
||||
"flowscript",
|
||||
"flownode",
|
||||
"appscript",
|
||||
],
|
||||
},
|
||||
schedule_path: {
|
||||
@@ -697,6 +700,9 @@ var $CompletedJob = {
|
||||
"identity",
|
||||
"deploymentcallback",
|
||||
"singlescriptflow",
|
||||
"flowscript",
|
||||
"flownode",
|
||||
"appscript",
|
||||
],
|
||||
},
|
||||
schedule_path: {
|
||||
|
||||
@@ -100,7 +100,10 @@
|
||||
'appdependencies',
|
||||
'preview',
|
||||
'flowpreview',
|
||||
'script_hub'
|
||||
'script_hub',
|
||||
'flowscript',
|
||||
'flownode',
|
||||
'appscript',
|
||||
]
|
||||
return kinds.join(',')
|
||||
} else if (jobKindsCat == 'dependencies') {
|
||||
@@ -117,7 +120,7 @@
|
||||
let kinds: CompletedJob['job_kind'][] = ['deploymentcallback']
|
||||
return kinds.join(',')
|
||||
} else {
|
||||
let kinds: CompletedJob['job_kind'][] = ['script', 'flow']
|
||||
let kinds: CompletedJob['job_kind'][] = ['script', 'flow', 'flowscript', 'flownode', 'appscript']
|
||||
return kinds.join(',')
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user