@@ -27,15 +27,18 @@ export const endpoints = {
2727 } ,
2828 pipelines : {
2929 my : '/pipelines?hydrated=true' ,
30- get : ( pipelineId : TId ) : string => `/pipelines/${ pipelineId } &hydrated=true` ,
30+ get : ( pipelineId : TId ) : string =>
31+ `/pipelines/${ pipelineId } ?unlisted=false&hydrated=true` ,
3132 } ,
3233 Stacks : {
3334 my : '/stacks?hydrated=true' ,
34- get : ( stackId : TId ) : string => `/Stacks/${ stackId } &hydrated=true` ,
35+ get : ( stackId : TId ) : string =>
36+ `/stacks/${ stackId } ?unlisted=false&hydrated=true` ,
3537 } ,
3638 StackComponents : {
3739 types : '/component-types' ,
38- my : ( type : string ) : string => `/components?type=${ type } &hydrated=true` ,
40+ my : ( type : string ) : string =>
41+ `/components?type=${ type } ?unlisted=false&hydrated=true` ,
3942 get : ( stackComponentId : TId ) : string =>
4043 `/components/${ stackComponentId } ?hydrated=true` ,
4144 } ,
@@ -50,14 +53,13 @@ export const endpoints = {
5053 } ,
5154 stackComponent : {
5255 get : ( stackComponentId : TId ) : string =>
53- `/runs?component_id=${ stackComponentId } &hydrated=true` ,
56+ `/runs?component_id=${ stackComponentId } &unlisted=false& hydrated=true` ,
5457 } ,
5558 graphById : {
5659 get : ( runId : TId ) : string => `/runs/${ runId } /graph` ,
5760 } ,
5861 all : `/runs?unlisted=false&hydrated=true` ,
59- get : ( pipelineId : TId , runId : TId ) : string =>
60- `/pipelines/${ pipelineId } /runs/${ runId } ` ,
62+ get : ( runId : TId ) : string => `/runs/${ runId } ?unlisted=false&hydrated=true` ,
6163 } ,
6264 billing : {
6365 my : '/billing/stripe/session' ,
0 commit comments