Skip to content

Commit

Permalink
See windmill-labs/windmill@bb7f11f from refs/tags/v1.218.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Nov 30, 2023
1 parent bfb07e1 commit 7defcd4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion windmill-api/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export type OpenAPIConfig = {

export const OpenAPI: OpenAPIConfig = {
BASE: '/api',
VERSION: '1.217.0',
VERSION: '1.218.0',
WITH_CREDENTIALS: false,
CREDENTIALS: 'include',
TOKEN: undefined,
Expand Down
9 changes: 7 additions & 2 deletions windmill-api/services/HelpersService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/* tslint:disable */
/* eslint-disable */
import type { PolarsClientKwargs } from '../models/PolarsClientKwargs.ts';
import type { S3Resource } from '../models/S3Resource.ts';
import type { WindmillFileMetadata } from '../models/WindmillFileMetadata.ts';
import type { WindmillFilePreview } from '../models/WindmillFilePreview.ts';
import type { WindmillLargeFile } from '../models/WindmillLargeFile.ts';
Expand All @@ -25,7 +26,9 @@ export class HelpersService {
/**
* S3 resource to connect to
*/
requestBody: any,
requestBody: {
s3_resource?: S3Resource;
},
}): CancelablePromise<{
connection_settings_str?: string;
}> {
Expand Down Expand Up @@ -53,7 +56,9 @@ export class HelpersService {
/**
* S3 resource to connect to
*/
requestBody: any,
requestBody: {
s3_resource?: S3Resource;
},
}): CancelablePromise<{
endpoint_url: string;
key?: string;
Expand Down

0 comments on commit 7defcd4

Please sign in to comment.