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.
package/dist/core/OpenAPI.js
CHANGED
|
@@ -311,7 +311,9 @@ export declare class UserService {
|
|
|
311
311
|
* @returns TruncatedToken truncated token
|
|
312
312
|
* @throws ApiError
|
|
313
313
|
*/
|
|
314
|
-
static listTokens(
|
|
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
|
/**
|