windmill-client 1.216.0 → 1.217.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.OpenAPI = void 0;
4
4
  exports.OpenAPI = {
5
5
  BASE: '/api',
6
- VERSION: '1.216.0',
6
+ VERSION: '1.217.0',
7
7
  WITH_CREDENTIALS: false,
8
8
  CREDENTIALS: 'include',
9
9
  TOKEN: undefined,
@@ -311,7 +311,9 @@ export declare class UserService {
311
311
  * @returns TruncatedToken truncated token
312
312
  * @throws ApiError
313
313
  */
314
- static listTokens(): CancelablePromise<Array<TruncatedToken>>;
314
+ static listTokens({ excludeEphemeral, }: {
315
+ excludeEphemeral?: boolean;
316
+ }): CancelablePromise<Array<TruncatedToken>>;
315
317
  /**
316
318
  * login with oauth authorization flow
317
319
  * @returns string Successfully authenticated. The session ID is returned in a cookie named `token` and as plaintext response. Preferred method of authorization is through the bearer token. The cookie is only for browser convenience.
@@ -406,10 +406,13 @@ class UserService {
406
406
  * @returns TruncatedToken truncated token
407
407
  * @throws ApiError
408
408
  */
409
- static listTokens() {
409
+ static listTokens({ excludeEphemeral, }) {
410
410
  return (0, request_1.request)(OpenAPI_1.OpenAPI, {
411
411
  method: 'GET',
412
412
  url: '/users/tokens/list',
413
+ query: {
414
+ 'exclude_ephemeral': excludeEphemeral,
415
+ },
413
416
  });
414
417
  }
415
418
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.216.0",
4
+ "version": "1.217.0",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {