|
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. |
| 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 | 15 | */
|
16 | 16 |
|
17 | 17 | package fusionauth
|
@@ -5519,7 +5519,8 @@ type UserLoginIdDuplicateOnUpdateEvent struct {
|
5519 | 5519 | * @author Brett Pontarelli
|
5520 | 5520 | */
|
5521 | 5521 | type TenantSSOConfiguration struct {
|
5522 |
| - DeviceTrustTimeToLiveInSeconds int `json:"deviceTrustTimeToLiveInSeconds,omitempty"` |
| 5522 | + AllowAccessTokenBootstrap bool `json:"allowAccessTokenBootstrap"` |
| 5523 | + DeviceTrustTimeToLiveInSeconds int `json:"deviceTrustTimeToLiveInSeconds,omitempty"` |
5523 | 5524 | }
|
5524 | 5525 |
|
5525 | 5526 | /**
|
@@ -7279,7 +7280,9 @@ type APIKey struct {
|
7279 | 7280 | KeyManager bool `json:"keyManager"`
|
7280 | 7281 | LastUpdateInstant int64 `json:"lastUpdateInstant,omitempty"`
|
7281 | 7282 | MetaData APIKeyMetaData `json:"metaData,omitempty"`
|
| 7283 | + Name string `json:"name,omitempty"` |
7282 | 7284 | Permissions APIKeyPermissions `json:"permissions,omitempty"`
|
| 7285 | + Retrievable bool `json:"retrievable"` |
7283 | 7286 | TenantId string `json:"tenantId,omitempty"`
|
7284 | 7287 | }
|
7285 | 7288 |
|
|
0 commit comments