|
1 | 1 | /*
|
2 |
| -* Copyright (c) 2019-2023, FusionAuth, All Rights Reserved |
3 |
| -* |
4 |
| -* Licensed under the Apache License, Version 2.0 (the "License"); |
5 |
| -* you may not use this file except in compliance with the License. |
6 |
| -* You may obtain a copy of the License at |
7 |
| -* |
8 |
| -* http://www.apache.org/licenses/LICENSE-2.0 |
9 |
| -* |
10 |
| -* Unless required by applicable law or agreed to in writing, |
11 |
| -* software distributed under the License is distributed on an |
12 |
| -* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, |
13 |
| -* either express or implied. See the License for the specific |
14 |
| -* language governing permissions and limitations under the License. |
15 |
| -*/ |
| 2 | + * Copyright (c) 2019-2025, FusionAuth, All Rights Reserved |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, |
| 11 | + * software distributed under the License is distributed on an |
| 12 | + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, |
| 13 | + * either express or implied. See the License for the specific |
| 14 | + * language governing permissions and limitations under the License. |
| 15 | + */ |
16 | 16 |
|
17 | 17 | import IRESTClient from "./IRESTClient"
|
18 | 18 | import DefaultRESTClientBuilder from "./DefaultRESTClientBuilder";
|
@@ -10071,6 +10071,7 @@ export interface UserLoginIdDuplicateOnUpdateEvent extends UserLoginIdDuplicateO
|
10071 | 10071 | * @author Brett Pontarelli
|
10072 | 10072 | */
|
10073 | 10073 | export interface TenantSSOConfiguration {
|
| 10074 | + allowAccessTokenBootstrap?: boolean; |
10074 | 10075 | deviceTrustTimeToLiveInSeconds?: number;
|
10075 | 10076 | }
|
10076 | 10077 |
|
@@ -11578,7 +11579,9 @@ export interface APIKey {
|
11578 | 11579 | keyManager?: boolean;
|
11579 | 11580 | lastUpdateInstant?: number;
|
11580 | 11581 | metaData?: APIKeyMetaData;
|
| 11582 | + name?: string; |
11581 | 11583 | permissions?: APIKeyPermissions;
|
| 11584 | + retrievable?: boolean; |
11582 | 11585 | tenantId?: UUID;
|
11583 | 11586 | }
|
11584 | 11587 |
|
|
0 commit comments