@@ -5,29 +5,29 @@ interface workflow {
55 use obelisk-flyio :workflow /types @ 1.0.0-beta . {obelisk-config , app-init-modify-error , app-init-error };
66 use obelisk :types /execution @ 3.0.0 . {execution-id , join-set , await-next-extension-error , get-extension-error , invoke-extension-error };
77
8- prepare-submit : func (join-set : borrow <join-set >, org-slug : string , app-name : string , config : obelisk-config , minio : bool ) -> execution-id ;
8+ prepare-submit : func (join-set : borrow <join-set >, org-slug : string , app-name : string , obelisk-version : string , config : obelisk-config , minio : bool ) -> execution-id ;
99
1010 prepare-await-next : func (join-set : borrow <join-set >) -> result <tuple <execution-id , result <_ , app-init-modify-error >>, await-next-extension-error >;
1111
1212 prepare-get : func (execution-id : execution-id ) -> result <result <_ , app-init-modify-error >, get-extension-error >;
1313
14- prepare-invoke : func (label : string , org-slug : string , app-name : string , config : obelisk-config , minio : bool ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
14+ prepare-invoke : func (label : string , org-slug : string , app-name : string , obelisk-version : string , config : obelisk-config , minio : bool ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
1515
16- wait-for-secrets-submit : func (join-set : borrow <join-set >, app-name : string , config : obelisk-config ) -> execution-id ;
16+ wait-for-secrets-submit : func (join-set : borrow <join-set >, app-name : string , config : obelisk-config , secrets-deadline-secs : u16 ) -> execution-id ;
1717
1818 wait-for-secrets-await-next : func (join-set : borrow <join-set >) -> result <tuple <execution-id , result <_ , app-init-modify-error >>, await-next-extension-error >;
1919
2020 wait-for-secrets-get : func (execution-id : execution-id ) -> result <result <_ , app-init-modify-error >, get-extension-error >;
2121
22- wait-for-secrets-invoke : func (label : string , app-name : string , config : obelisk-config ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
22+ wait-for-secrets-invoke : func (label : string , app-name : string , config : obelisk-config , secrets-deadline-secs : u16 ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
2323
24- start-final-vm-submit : func (join-set : borrow <join-set >, app-name : string , litestream : bool ) -> execution-id ;
24+ start-final-vm-submit : func (join-set : borrow <join-set >, app-name : string , obelisk-version : string , litestream : bool ) -> execution-id ;
2525
2626 start-final-vm-await-next : func (join-set : borrow <join-set >) -> result <tuple <execution-id , result <_ , app-init-modify-error >>, await-next-extension-error >;
2727
2828 start-final-vm-get : func (execution-id : execution-id ) -> result <result <_ , app-init-modify-error >, get-extension-error >;
2929
30- start-final-vm-invoke : func (label : string , app-name : string , litestream : bool ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
30+ start-final-vm-invoke : func (label : string , app-name : string , obelisk-version : string , litestream : bool ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
3131
3232 wait-for-health-check-submit : func (join-set : borrow <join-set >, app-name : string , health-check-deadline-secs : u16 ) -> execution-id ;
3333
@@ -37,12 +37,12 @@ interface workflow {
3737
3838 wait-for-health-check-invoke : func (label : string , app-name : string , health-check-deadline-secs : u16 ) -> result <result <_ , app-init-modify-error >, invoke-extension-error >;
3939
40- app-init-submit : func (join-set : borrow <join-set >, org-slug : string , app-name : string , config : obelisk-config , health-check-deadline-secs : u16 , skip-cleanup-on-error : bool , minio : bool ) -> execution-id ;
40+ app-init-submit : func (join-set : borrow <join-set >, org-slug : string , app-name : string , obelisk-version : string , config : obelisk-config , secrets-deadline-secs : u16 , health-check-deadline-secs : u16 , skip-cleanup-on-error : bool , minio : bool ) -> execution-id ;
4141
4242 app-init-await-next : func (join-set : borrow <join-set >) -> result <tuple <execution-id , result <_ , app-init-error >>, await-next-extension-error >;
4343
4444 app-init-get : func (execution-id : execution-id ) -> result <result <_ , app-init-error >, get-extension-error >;
4545
46- app-init-invoke : func (label : string , org-slug : string , app-name : string , config : obelisk-config , health-check-deadline-secs : u16 , skip-cleanup-on-error : bool , minio : bool ) -> result <result <_ , app-init-error >, invoke-extension-error >;
46+ app-init-invoke : func (label : string , org-slug : string , app-name : string , obelisk-version : string , config : obelisk-config , secrets-deadline-secs : u16 , health-check-deadline-secs : u16 , skip-cleanup-on-error : bool , minio : bool ) -> result <result <_ , app-init-error >, invoke-extension-error >;
4747}
4848
0 commit comments