Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,009 changes: 794 additions & 215 deletions reference.md

Large diffs are not rendered by default.

94 changes: 90 additions & 4 deletions src/management/api/requests/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,7 @@ export interface CreateClientRequestContent {
* See https://auth0.com/docs/secure/security-guidance/measures-against-app-impersonation for more information.
*/
skip_non_verifiable_callback_uri_confirmation_prompt?: boolean;
token_exchange?: Management.ClientTokenExchangeConfiguration;
/** Specifies how long, in seconds, a Pushed Authorization Request URI remains valid */
par_request_expiry?: number | null;
token_quota?: Management.CreateTokenQuota;
Expand Down Expand Up @@ -393,6 +394,7 @@ export interface UpdateClientRequestContent {
* See https://auth0.com/docs/secure/security-guidance/measures-against-app-impersonation for more information.
*/
skip_non_verifiable_callback_uri_confirmation_prompt?: boolean | null;
token_exchange?: Management.ClientTokenExchangeConfigurationOrNull | null;
/** Specifies how long, in seconds, a Pushed Authorization Request URI remains valid */
par_request_expiry?: number | null;
express_configuration?: Management.ExpressConfigurationOrNull | null;
Expand Down Expand Up @@ -528,6 +530,32 @@ export interface UpdateConnectionRequestContent {
connected_accounts?: Management.ConnectionConnectedAccountsPurpose;
}

/**
* @example
* {
* take: 1,
* from: "from",
* q: "q",
* fields: "fields",
* include_fields: true,
* sort: "sort"
* }
*/
export interface ListCustomDomainsRequestParameters {
/** Number of results per page. Defaults to 50. */
take?: number | null;
/** Optional Id from which to start selection. */
from?: string | null;
/** Query in <a href ="http://www.lucenetutorial.com/lucene-query-syntax.html">Lucene query string syntax</a>. */
q?: string | null;
/** Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields. */
fields?: string | null;
/** Whether specified fields are to be included (true) or excluded (false). */
include_fields?: boolean | null;
/** Field to sort by. Only <code>domain:1</code> (ascending order by domain) is supported at this time. */
sort?: string | null;
}

/**
* @example
* {
Expand All @@ -542,6 +570,7 @@ export interface CreateCustomDomainRequestContent {
verification_method?: Management.CustomDomainVerificationMethodEnum;
tls_policy?: Management.CustomDomainTlsPolicyEnum;
custom_client_ip_header?: Management.CustomDomainCustomClientIpHeader | undefined;
domain_metadata?: Management.DomainMetadata;
}

/**
Expand All @@ -551,6 +580,7 @@ export interface CreateCustomDomainRequestContent {
export interface UpdateCustomDomainRequestContent {
tls_policy?: Management.CustomDomainTlsPolicyEnum;
custom_client_ip_header?: Management.CustomDomainCustomClientIpHeader | undefined;
domain_metadata?: Management.DomainMetadata;
}

/**
Expand Down Expand Up @@ -1476,6 +1506,7 @@ export interface ChangePasswordTicketRequestContent {
mark_email_as_verified?: boolean;
/** Whether to include the email address as part of the returnUrl in the reset_email (true), or not (false). */
includeEmailInRedirect?: boolean;
identity?: Management.ChangePasswordTicketIdentity;
}

/**
Expand Down Expand Up @@ -2518,6 +2549,58 @@ export interface SetGuardianFactorPhoneTemplatesRequestContent {
verification_message: string;
}

/**
* @example
* {}
*/
export interface SetGuardianFactorsProviderPushNotificationApnsRequestContent {
sandbox?: boolean;
bundle_id?: string | null;
p12?: string | null;
}

/**
* @example
* {}
*/
export interface UpdateGuardianFactorsProviderPushNotificationApnsRequestContent {
sandbox?: boolean;
bundle_id?: string | null;
p12?: string | null;
}

/**
* @example
* {}
*/
export interface SetGuardianFactorsProviderPushNotificationFcmRequestContent {
server_key?: string | null;
}

/**
* @example
* {}
*/
export interface UpdateGuardianFactorsProviderPushNotificationFcmRequestContent {
server_key?: string | null;
}

/**
* @example
* {}
*/
export interface SetGuardianFactorsProviderPushNotificationFcmv1RequestContent {
server_credentials?: string | null;
}

/**
* @example
* {}
*/
export interface UpdateGuardianFactorsProviderPushNotificationFcmv1RequestContent {
server_credentials?: string | null;
}

/**
* @example
* {}
Expand Down Expand Up @@ -2771,6 +2854,8 @@ export interface CreateOrganizationDiscoveryDomainRequestContent {
/** The domain name to associate with the organization e.g. acme.com. */
domain: string;
status?: Management.OrganizationDiscoveryDomainStatus;
/** Indicates whether this discovery domain should be used for organization discovery. */
use_for_organization_discovery?: boolean;
}

/**
Expand All @@ -2779,6 +2864,8 @@ export interface CreateOrganizationDiscoveryDomainRequestContent {
*/
export interface UpdateOrganizationDiscoveryDomainRequestContent {
status?: Management.OrganizationDiscoveryDomainStatus;
/** Indicates whether this discovery domain should be used for organization discovery. */
use_for_organization_discovery?: boolean;
}

/**
Expand Down Expand Up @@ -3029,15 +3116,14 @@ export interface BulkUpdateAculRequestContent {
*/
export interface UpdateAculRequestContent {
rendering_mode?: Management.AculRenderingModeEnum;
/** Context values to make available */
context_configuration?: string[];
context_configuration?: Management.AculContextConfiguration;
/** Override Universal Login default head tags */
default_head_tags_disabled?: boolean | null;
/** Use page template with ACUL */
use_page_template?: boolean | null;
/** An array of head tags */
head_tags?: Management.AculHeadTag[];
filters?: Management.AculFilters | null;
/** Use page template with ACUL */
use_page_template?: boolean | null;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions src/management/api/resources/connections/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import { mergeHeaders } from "../../../../core/headers.js";
import * as errors from "../../../../errors/index.js";
import { handleNonStatusCodeError } from "../../../../errors/handleNonStatusCodeError.js";
import { ClientsClient } from "../resources/clients/client/Client.js";
import { DirectoryProvisioningClient } from "../resources/directoryProvisioning/client/Client.js";
import { KeysClient } from "../resources/keys/client/Client.js";
import { ScimConfigurationClient } from "../resources/scimConfiguration/client/Client.js";
import { UsersClient } from "../resources/users/client/Client.js";
Expand All @@ -22,6 +23,7 @@ export declare namespace ConnectionsClient {
export class ConnectionsClient {
protected readonly _options: NormalizedClientOptionsWithAuth<ConnectionsClient.Options>;
protected _clients: ClientsClient | undefined;
protected _directoryProvisioning: DirectoryProvisioningClient | undefined;
protected _keys: KeysClient | undefined;
protected _scimConfiguration: ScimConfigurationClient | undefined;
protected _users: UsersClient | undefined;
Expand All @@ -34,6 +36,10 @@ export class ConnectionsClient {
return (this._clients ??= new ClientsClient(this._options));
}

public get directoryProvisioning(): DirectoryProvisioningClient {
return (this._directoryProvisioning ??= new DirectoryProvisioningClient(this._options));
}

public get keys(): KeysClient {
return (this._keys ??= new KeysClient(this._options));
}
Expand Down
Loading
Loading