File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 - name : Set up Node.js
1616 uses : actions/setup-node@v4
1717 with :
18- node-version : 20
18+ node-version : 22
1919
2020 - name : Install dependencies
2121 run : npm install
3333 - name : Set up Node.js
3434 uses : actions/setup-node@v4
3535 with :
36- node-version : 20
36+ node-version : 22
3737
3838 - name : Install dependencies
3939 run : npm install
5353 - name : Set up Node.js
5454 uses : actions/setup-node@v4
5555 with :
56- node-version : 20
56+ node-version : 22
5757 registry-url : ' https://registry.npmjs.org'
5858
5959 - name : Install dependencies
Original file line number Diff line number Diff line change 1515 - name : Set up Node.js
1616 uses : actions/setup-node@v4
1717 with :
18- node-version : 20
18+ node-version : 22
1919
2020 - name : Install dependencies
2121 run : npm install
3333 - name : Set up Node.js
3434 uses : actions/setup-node@v4
3535 with :
36- node-version : 20
36+ node-version : 22
3737
3838 - name : Install dependencies
3939 run : npm install
Original file line number Diff line number Diff line change @@ -1131,6 +1131,7 @@ export default LinkedApi;
11311131
11321132export { LinkedApi , Operation as PredefinedOperation } ;
11331133export { LinkedApiAdmin } from './admin' ;
1134+ export { buildLinkedApiHttpClient } from './core/linked-api-http-client' ;
11341135
11351136export type {
11361137 TLinkedApiConfig ,
Original file line number Diff line number Diff line change @@ -43,9 +43,8 @@ export interface TWorkflowStatusResponse {
4343 workflowStatus : TWorkflowStatus ;
4444}
4545
46- export interface TWorkflowResponse <
47- TResult extends TWorkflowData = TWorkflowData ,
48- > extends TWorkflowStatusResponse {
46+ export interface TWorkflowResponse < TResult extends TWorkflowData = TWorkflowData >
47+ extends TWorkflowStatusResponse {
4948 completion ?: TWorkflowCompletion < TResult > ;
5049 failure ?: TWorkflowFailure ;
5150}
You can’t perform that action at this time.
0 commit comments