Skip to content

Commit 3c13a78

Browse files
SDK regeneration
1 parent 2103848 commit 3c13a78

File tree

14 files changed

+2543
-104
lines changed

14 files changed

+2543
-104
lines changed

reference.md

Lines changed: 464 additions & 6 deletions
Large diffs are not rendered by default.

src/management/Client.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import { ActionsClient } from "./api/resources/actions/client/Client.js";
88
import { BrandingClient } from "./api/resources/branding/client/Client.js";
99
import { ClientGrantsClient } from "./api/resources/clientGrants/client/Client.js";
1010
import { ClientsClient } from "./api/resources/clients/client/Client.js";
11+
import { ConnectionProfilesClient } from "./api/resources/connectionProfiles/client/Client.js";
1112
import { ConnectionsClient } from "./api/resources/connections/client/Client.js";
1213
import { CustomDomainsClient } from "./api/resources/customDomains/client/Client.js";
1314
import { DeviceCredentialsClient } from "./api/resources/deviceCredentials/client/Client.js";
@@ -58,6 +59,7 @@ export class ManagementClient {
5859
protected _branding: BrandingClient | undefined;
5960
protected _clientGrants: ClientGrantsClient | undefined;
6061
protected _clients: ClientsClient | undefined;
62+
protected _connectionProfiles: ConnectionProfilesClient | undefined;
6163
protected _connections: ConnectionsClient | undefined;
6264
protected _customDomains: CustomDomainsClient | undefined;
6365
protected _deviceCredentials: DeviceCredentialsClient | undefined;
@@ -116,6 +118,10 @@ export class ManagementClient {
116118
return (this._clients ??= new ClientsClient(this._options));
117119
}
118120

121+
public get connectionProfiles(): ConnectionProfilesClient {
122+
return (this._connectionProfiles ??= new ConnectionProfilesClient(this._options));
123+
}
124+
119125
public get connections(): ConnectionsClient {
120126
return (this._connections ??= new ConnectionsClient(this._options));
121127
}

src/management/api/requests/requests.ts

Lines changed: 49 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ export interface CreateClientRequestContent {
294294
token_quota?: Management.CreateTokenQuota;
295295
/** The identifier of the resource server that this client is linked to. */
296296
resource_server_identifier?: string;
297+
express_configuration?: Management.ExpressConfiguration;
297298
async_approval_notification_channels?: Management.ClientAsyncApprovalNotificationsChannelsApiPostConfiguration;
298299
}
299300

@@ -394,9 +395,52 @@ export interface UpdateClientRequestContent {
394395
skip_non_verifiable_callback_uri_confirmation_prompt?: boolean | null;
395396
/** Specifies how long, in seconds, a Pushed Authorization Request URI remains valid */
396397
par_request_expiry?: number | null;
398+
express_configuration?: Management.ExpressConfigurationOrNull | null;
397399
async_approval_notification_channels?: Management.ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration;
398400
}
399401

402+
/**
403+
* @example
404+
* {
405+
* from: "from",
406+
* take: 1
407+
* }
408+
*/
409+
export interface ListConnectionProfileRequestParameters {
410+
/** Optional Id from which to start selection. */
411+
from?: string | null;
412+
/** Number of results per page. Defaults to 5. */
413+
take?: number | null;
414+
}
415+
416+
/**
417+
* @example
418+
* {
419+
* name: "name"
420+
* }
421+
*/
422+
export interface CreateConnectionProfileRequestContent {
423+
name: Management.ConnectionProfileName;
424+
organization?: Management.ConnectionProfileOrganization;
425+
connection_name_prefix_template?: Management.ConnectionNamePrefixTemplate;
426+
enabled_features?: Management.ConnectionProfileEnabledFeatures;
427+
connection_config?: Management.ConnectionProfileConfig;
428+
strategy_overrides?: Management.ConnectionProfileStrategyOverrides;
429+
}
430+
431+
/**
432+
* @example
433+
* {}
434+
*/
435+
export interface UpdateConnectionProfileRequestContent {
436+
name?: Management.ConnectionProfileName;
437+
organization?: Management.ConnectionProfileOrganization;
438+
connection_name_prefix_template?: Management.ConnectionNamePrefixTemplate;
439+
enabled_features?: Management.ConnectionProfileEnabledFeatures;
440+
connection_config?: Management.ConnectionProfileConfig;
441+
strategy_overrides?: Management.ConnectionProfileStrategyOverrides;
442+
}
443+
400444
/**
401445
* @example
402446
* {
@@ -2971,9 +3015,7 @@ export interface ListAculsRequestParameters {
29713015
* {
29723016
* configs: [{
29733017
* prompt: "login",
2974-
* screen: "login",
2975-
* rendering_mode: "advanced",
2976-
* head_tags: [{}]
3018+
* screen: "login"
29773019
* }]
29783020
* }
29793021
*/
@@ -2983,19 +3025,16 @@ export interface BulkUpdateAculRequestContent {
29833025

29843026
/**
29853027
* @example
2986-
* {
2987-
* rendering_mode: "advanced",
2988-
* head_tags: [{}]
2989-
* }
3028+
* {}
29903029
*/
29913030
export interface UpdateAculRequestContent {
2992-
rendering_mode: Management.AculRenderingModeEnum;
3031+
rendering_mode?: Management.AculRenderingModeEnum;
29933032
/** Context values to make available */
29943033
context_configuration?: string[];
29953034
/** Override Universal Login default head tags */
29963035
default_head_tags_disabled?: boolean | null;
29973036
/** An array of head tags */
2998-
head_tags: Management.AculHeadTag[];
3037+
head_tags?: Management.AculHeadTag[];
29993038
filters?: Management.AculFilters | null;
30003039
/** Use page template with ACUL */
30013040
use_page_template?: boolean | null;
@@ -3186,6 +3225,7 @@ export interface UpdateTenantSettingsRequestContent {
31863225
* See https://auth0.com/docs/secure/security-guidance/measures-against-app-impersonation for more information.
31873226
*/
31883227
skip_non_verifiable_callback_uri_confirmation_prompt?: boolean | null;
3228+
resource_parameter_profile?: Management.TenantSettingsResourceParameterProfile;
31893229
}
31903230

31913231
export namespace UpdateTenantSettingsRequestContent {

0 commit comments

Comments
 (0)