feat(frontend): render new job kinds (#4864)

This commit is contained in:
Lucas Abel
2024-12-06 15:11:57 +01:00
committed by GitHub
parent ef08fc8e29
commit e38312700a
4 changed files with 21 additions and 2 deletions

View File

@@ -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:

View File

@@ -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

View File

@@ -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: {

View File

@@ -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(',')
}
}