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
497 changes: 490 additions & 7 deletions .fern/replay.lock

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion src/management/api/requests/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export interface ListClientsRequestParameters {
is_first_party?: boolean | null;
/** Optional filter by a comma-separated list of application types. */
app_type?: string | null;
/** Optional filter by the <a href="https://www.ietf.org/archive/id/draft-ietf-oauth-client-id-metadata-document-04.html">Client ID Metadata Document</a> URI for CIMD-registered clients. */
/** Optional filter by the <a href="https://drafts.oauth.net/draft-ietf-oauth-client-id-metadata-document/draft-ietf-oauth-client-id-metadata-document.html">Client ID Metadata Document</a> URI for CIMD-registered clients. */
external_client_id?: string | null;
/** Advanced Query in <a href="https://lucene.apache.org/core/2_9_4/queryparsersyntax.html">Lucene</a> syntax.<br /><b>Permitted Queries</b>:<br /><ul><li><i>client_grant.organization_id:{organization_id}</i></li><li><i>client_grant.allow_any_organization:true</i></li></ul><b>Additional Restrictions</b>:<br /><ul><li>Cannot be used in combination with other filters</li><li>Requires use of the <i>from</i> and <i>take</i> paging parameters (checkpoint paginatinon)</li><li>Reduced rate limits apply. See <a href="https://auth0.com/docs/troubleshoot/customer-support/operational-policies/rate-limit-policy/rate-limit-configurations/enterprise-public">Rate Limit Configurations</a></li></ul><i><b>Note</b>: Recent updates may not be immediately reflected in query results</i> */
q?: string | null;
Expand Down Expand Up @@ -312,6 +312,7 @@ export interface CreateClientRequestContent {
token_quota?: Management.CreateTokenQuota;
/** The identifier of the resource server that this client is linked to. */
resource_server_identifier?: string;
identity_assertion_authorization_grant?: Management.CreateIdentityAssertionAuthorizationGrant;
third_party_security_mode?: Management.ClientThirdPartySecurityModeEnum;
redirection_policy?: Management.ClientRedirectionPolicyEnum;
express_configuration?: Management.ExpressConfiguration;
Expand Down Expand Up @@ -412,6 +413,7 @@ export interface UpdateClientRequestContent {
custom_login_page?: string;
custom_login_page_preview?: string;
token_quota?: Management.UpdateTokenQuota | null;
identity_assertion_authorization_grant?: Management.UpdateIdentityAssertionAuthorizationGrant | null;
/** Form template for WS-Federation protocol */
form_template?: string;
addons?: Management.ClientAddons;
Expand Down Expand Up @@ -548,6 +550,7 @@ export interface CreateConnectionRequestContent {
authentication?: Management.ConnectionAuthenticationPurpose;
connected_accounts?: Management.ConnectionConnectedAccountsPurpose;
cross_app_access_requesting_app?: Management.CrossAppAccessRequestingApp;
cross_app_access_resource_app?: Management.CreateCrossAppAccessResourceApp;
}

/**
Expand Down Expand Up @@ -584,6 +587,7 @@ export interface UpdateConnectionRequestContent {
authentication?: Management.ConnectionAuthenticationPurpose;
connected_accounts?: Management.ConnectionConnectedAccountsPurpose;
cross_app_access_requesting_app?: Management.CrossAppAccessRequestingApp;
cross_app_access_resource_app?: Management.UpdateCrossAppAccessResourceApp | null;
}

/**
Expand Down Expand Up @@ -2349,6 +2353,7 @@ export interface CreateBrandingThemeRequestContent {
/** Display Name */
displayName?: string;
fonts: Management.BrandingThemeFonts;
identifiers?: Management.BrandingThemeIdentifiers;
page_background: Management.BrandingThemePageBackground;
widget: Management.BrandingThemeWidget;
}
Expand Down Expand Up @@ -2434,6 +2439,7 @@ export interface UpdateBrandingThemeRequestContent {
/** Display Name */
displayName?: string;
fonts: Management.BrandingThemeFonts;
identifiers?: Management.BrandingThemeIdentifiers;
page_background: Management.BrandingThemePageBackground;
widget: Management.BrandingThemeWidget;
}
Expand Down Expand Up @@ -3874,6 +3880,7 @@ export interface CreateSelfServiceProfileSsoTicketRequestContent {
provisioning_config?: Management.SelfServiceProfileSsoTicketProvisioningConfig;
/** Indicates whether a verified domain should be used for organization discovery during authentication. */
use_for_organization_discovery?: boolean;
third_party_client_access_config?: Management.ThirdPartyClientAccessConfig;
enabled_features?: Management.SelfServiceProfileSsoTicketEnabledFeatures;
}

Expand Down
150 changes: 150 additions & 0 deletions src/management/api/types/types.ts

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions src/management/tests/wire/branding/themes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ describe("ThemesClient", () => {
subtitle: { bold: true, size: 1.1 },
title: { bold: true, size: 1.1 },
},
identifiers: {
login_display: "separate",
otp_autocomplete: true,
phone_display: { formatting: "international", masking: "hide_country_code" },
},
page_background: {
background_color: "background_color",
background_image_url: "background_image_url",
Expand Down Expand Up @@ -977,6 +982,11 @@ describe("ThemesClient", () => {
subtitle: { bold: true, size: 1.1 },
title: { bold: true, size: 1.1 },
},
identifiers: {
login_display: "separate",
otp_autocomplete: true,
phone_display: { formatting: "international", masking: "hide_country_code" },
},
page_background: {
background_color: "background_color",
background_image_url: "background_image_url",
Expand Down Expand Up @@ -1130,6 +1140,11 @@ describe("ThemesClient", () => {
subtitle: { bold: true, size: 1.1 },
title: { bold: true, size: 1.1 },
},
identifiers: {
login_display: "separate",
otp_autocomplete: true,
phone_display: { formatting: "international", masking: "hide_country_code" },
},
page_background: {
background_color: "background_color",
background_image_url: "background_image_url",
Expand Down Expand Up @@ -1422,6 +1437,11 @@ describe("ThemesClient", () => {
subtitle: { bold: true, size: 1.1 },
title: { bold: true, size: 1.1 },
},
identifiers: {
login_display: "separate",
otp_autocomplete: true,
phone_display: { formatting: "international", masking: "hide_country_code" },
},
page_background: {
background_color: "background_color",
background_image_url: "background_image_url",
Expand Down
5 changes: 5 additions & 0 deletions src/management/tests/wire/clients.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ describe("ClientsClient", () => {
allowed_strategies: ["pingfederate"],
connection_deletion_behavior: "allow",
},
identity_assertion_authorization_grant: { active: true },
third_party_security_mode: "strict",
redirection_policy: "allow_always",
resource_server_identifier: "resource_server_identifier",
Expand Down Expand Up @@ -393,6 +394,7 @@ describe("ClientsClient", () => {
connection_deletion_behavior: "allow",
invitation_landing_client_id: "invitation_landing_client_id",
},
identity_assertion_authorization_grant: { active: true },
third_party_security_mode: "strict",
redirection_policy: "allow_always",
resource_server_identifier: "resource_server_identifier",
Expand Down Expand Up @@ -1054,6 +1056,7 @@ describe("ClientsClient", () => {
connection_deletion_behavior: "allow",
invitation_landing_client_id: "invitation_landing_client_id",
},
identity_assertion_authorization_grant: { active: true },
third_party_security_mode: "strict",
redirection_policy: "allow_always",
resource_server_identifier: "resource_server_identifier",
Expand Down Expand Up @@ -1407,6 +1410,7 @@ describe("ClientsClient", () => {
connection_deletion_behavior: "allow",
invitation_landing_client_id: "invitation_landing_client_id",
},
identity_assertion_authorization_grant: { active: true },
third_party_security_mode: "strict",
redirection_policy: "allow_always",
resource_server_identifier: "resource_server_identifier",
Expand Down Expand Up @@ -1737,6 +1741,7 @@ describe("ClientsClient", () => {
connection_deletion_behavior: "allow",
invitation_landing_client_id: "invitation_landing_client_id",
},
identity_assertion_authorization_grant: { active: true },
third_party_security_mode: "strict",
redirection_policy: "allow_always",
resource_server_identifier: "resource_server_identifier",
Expand Down
1 change: 1 addition & 0 deletions src/management/tests/wire/clients/connections.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ describe("ConnectionsClient", () => {
authentication: { active: true },
connected_accounts: { active: true },
cross_app_access_requesting_app: { active: true },
cross_app_access_resource_app: { status: "enabled" },
},
],
next: "next",
Expand Down
4 changes: 4 additions & 0 deletions src/management/tests/wire/connections.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe("ConnectionsClient", () => {
authentication: { active: true },
connected_accounts: { active: true },
cross_app_access_requesting_app: { active: true },
cross_app_access_resource_app: { status: "enabled" },
},
],
};
Expand Down Expand Up @@ -122,6 +123,7 @@ describe("ConnectionsClient", () => {
authentication: { active: true },
connected_accounts: { active: true, cross_app_access: true },
cross_app_access_requesting_app: { active: true },
cross_app_access_resource_app: { status: "enabled" },
};

server
Expand Down Expand Up @@ -273,6 +275,7 @@ describe("ConnectionsClient", () => {
authentication: { active: true },
connected_accounts: { active: true, cross_app_access: true },
cross_app_access_requesting_app: { active: true },
cross_app_access_resource_app: { status: "enabled" },
};

server.mockEndpoint().get("/connections/id").respondWith().statusCode(200).jsonBody(rawResponseBody).build();
Expand Down Expand Up @@ -429,6 +432,7 @@ describe("ConnectionsClient", () => {
authentication: { active: true },
connected_accounts: { active: true, cross_app_access: true },
cross_app_access_requesting_app: { active: true },
cross_app_access_resource_app: { status: "enabled" },
};

server
Expand Down
2 changes: 2 additions & 0 deletions src/management/tests/wire/sessions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ describe("SessionsClient", () => {
authentication: { methods: [{}] },
cookie: { mode: "non-persistent" },
session_metadata: { key: "value" },
actor: { sub: "sub" },
};

server.mockEndpoint().get("/sessions/id").respondWith().statusCode(200).jsonBody(rawResponseBody).build();
Expand Down Expand Up @@ -177,6 +178,7 @@ describe("SessionsClient", () => {
authentication: { methods: [{}] },
cookie: { mode: "non-persistent" },
session_metadata: { key: "value" },
actor: { sub: "sub" },
};

server
Expand Down
1 change: 1 addition & 0 deletions src/management/tests/wire/users/sessions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ describe("SessionsClient", () => {
last_interacted_at: "2024-01-15T09:30:00Z",
clients: [{}],
session_metadata: { key: "value" },
actor: { sub: "sub" },
},
],
next: "next",
Expand Down
2 changes: 1 addition & 1 deletion src/management/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SDK_VERSION = "5.14.0";
export const SDK_VERSION = "6.0.0";
Loading
Loading