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
395 changes: 393 additions & 2 deletions .fern/replay.lock

Large diffs are not rendered by default.

58 changes: 57 additions & 1 deletion reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -1302,7 +1302,7 @@ client.clients().list(
<dl>
<dd>

**externalClientId:** `Optional<String>` — 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.
**externalClientId:** `Optional<String>` — 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.

</dd>
</dl>
Expand Down Expand Up @@ -1786,6 +1786,14 @@ See https://auth0.com/docs/secure/security-guidance/measures-against-app-imperso
<dl>
<dd>

**identityAssertionAuthorizationGrant:** `Optional<CreateIdentityAssertionAuthorizationGrant>`

</dd>
</dl>

<dl>
<dd>

**thirdPartySecurityMode:** `Optional<ClientThirdPartySecurityModeEnum>`

</dd>
Expand Down Expand Up @@ -2411,6 +2419,14 @@ client.clients().update(
<dl>
<dd>

**identityAssertionAuthorizationGrant:** `Optional<UpdateIdentityAssertionAuthorizationGrant>`

</dd>
</dl>

<dl>
<dd>

**formTemplate:** `Optional<String>` — Form template for WS-Federation protocol

</dd>
Expand Down Expand Up @@ -3424,6 +3440,14 @@ client.connections().create(

**crossAppAccessRequestingApp:** `Optional<CrossAppAccessRequestingApp>`

</dd>
</dl>

<dl>
<dd>

**crossAppAccessResourceApp:** `Optional<CreateCrossAppAccessResourceApp>`

</dd>
</dl>
</dd>
Expand Down Expand Up @@ -3698,6 +3722,14 @@ client.connections().update(

**crossAppAccessRequestingApp:** `Optional<CrossAppAccessRequestingApp>`

</dd>
</dl>

<dl>
<dd>

**crossAppAccessResourceApp:** `Optional<UpdateCrossAppAccessResourceApp>`

</dd>
</dl>
</dd>
Expand Down Expand Up @@ -16871,6 +16903,14 @@ client.branding().themes().create(
<dl>
<dd>

**identifiers:** `Optional<BrandingThemeIdentifiers>`

</dd>
</dl>

<dl>
<dd>

**pageBackground:** `BrandingThemePageBackground`

</dd>
Expand Down Expand Up @@ -17228,6 +17268,14 @@ client.branding().themes().update(
<dl>
<dd>

**identifiers:** `Optional<BrandingThemeIdentifiers>`

</dd>
</dl>

<dl>
<dd>

**pageBackground:** `BrandingThemePageBackground`

</dd>
Expand Down Expand Up @@ -29546,6 +29594,14 @@ client.selfServiceProfiles().ssoTicket().create(
<dl>
<dd>

**thirdPartyClientAccessConfig:** `Optional<ThirdPartyClientAccessConfig>`

</dd>
</dl>

<dl>
<dd>

**enabledFeatures:** `Optional<SelfServiceProfileSsoTicketEnabledFeatures>`

</dd>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.auth0.client.mgmt.types.BrandingThemeBorders;
import com.auth0.client.mgmt.types.BrandingThemeColors;
import com.auth0.client.mgmt.types.BrandingThemeFonts;
import com.auth0.client.mgmt.types.BrandingThemeIdentifiers;
import com.auth0.client.mgmt.types.BrandingThemePageBackground;
import com.auth0.client.mgmt.types.BrandingThemeWidget;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
Expand Down Expand Up @@ -34,6 +35,8 @@ public final class CreateBrandingThemeRequestContent {

private final BrandingThemeFonts fonts;

private final Optional<BrandingThemeIdentifiers> identifiers;

private final BrandingThemePageBackground pageBackground;

private final BrandingThemeWidget widget;
Expand All @@ -45,13 +48,15 @@ private CreateBrandingThemeRequestContent(
BrandingThemeColors colors,
Optional<String> displayName,
BrandingThemeFonts fonts,
Optional<BrandingThemeIdentifiers> identifiers,
BrandingThemePageBackground pageBackground,
BrandingThemeWidget widget,
Map<String, Object> additionalProperties) {
this.borders = borders;
this.colors = colors;
this.displayName = displayName;
this.fonts = fonts;
this.identifiers = identifiers;
this.pageBackground = pageBackground;
this.widget = widget;
this.additionalProperties = additionalProperties;
Expand Down Expand Up @@ -80,6 +85,11 @@ public BrandingThemeFonts getFonts() {
return fonts;
}

@JsonProperty("identifiers")
public Optional<BrandingThemeIdentifiers> getIdentifiers() {
return identifiers;
}

@JsonProperty("page_background")
public BrandingThemePageBackground getPageBackground() {
return pageBackground;
Expand All @@ -106,13 +116,21 @@ private boolean equalTo(CreateBrandingThemeRequestContent other) {
&& colors.equals(other.colors)
&& displayName.equals(other.displayName)
&& fonts.equals(other.fonts)
&& identifiers.equals(other.identifiers)
&& pageBackground.equals(other.pageBackground)
&& widget.equals(other.widget);
}

@java.lang.Override
public int hashCode() {
return Objects.hash(this.borders, this.colors, this.displayName, this.fonts, this.pageBackground, this.widget);
return Objects.hash(
this.borders,
this.colors,
this.displayName,
this.fonts,
this.identifiers,
this.pageBackground,
this.widget);
}

@java.lang.Override
Expand Down Expand Up @@ -159,6 +177,10 @@ public interface _FinalStage {
_FinalStage displayName(Optional<String> displayName);

_FinalStage displayName(String displayName);

_FinalStage identifiers(Optional<BrandingThemeIdentifiers> identifiers);

_FinalStage identifiers(BrandingThemeIdentifiers identifiers);
}

@JsonIgnoreProperties(ignoreUnknown = true)
Expand All @@ -174,6 +196,8 @@ public static final class Builder

private BrandingThemeWidget widget;

private Optional<BrandingThemeIdentifiers> identifiers = Optional.empty();

private Optional<String> displayName = Optional.empty();

@JsonAnySetter
Expand All @@ -187,6 +211,7 @@ public Builder from(CreateBrandingThemeRequestContent other) {
colors(other.getColors());
displayName(other.getDisplayName());
fonts(other.getFonts());
identifiers(other.getIdentifiers());
pageBackground(other.getPageBackground());
widget(other.getWidget());
return this;
Expand Down Expand Up @@ -227,6 +252,19 @@ public _FinalStage widget(@NotNull BrandingThemeWidget widget) {
return this;
}

@java.lang.Override
public _FinalStage identifiers(BrandingThemeIdentifiers identifiers) {
this.identifiers = Optional.ofNullable(identifiers);
return this;
}

@java.lang.Override
@JsonSetter(value = "identifiers", nulls = Nulls.SKIP)
public _FinalStage identifiers(Optional<BrandingThemeIdentifiers> identifiers) {
this.identifiers = identifiers;
return this;
}

/**
* <p>Display Name</p>
* @return Reference to {@code this} so that method calls can be chained together.
Expand All @@ -250,7 +288,7 @@ public _FinalStage displayName(Optional<String> displayName) {
@java.lang.Override
public CreateBrandingThemeRequestContent build() {
return new CreateBrandingThemeRequestContent(
borders, colors, displayName, fonts, pageBackground, widget, additionalProperties);
borders, colors, displayName, fonts, identifiers, pageBackground, widget, additionalProperties);
}

@java.lang.Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import com.auth0.client.mgmt.types.BrandingThemeBorders;
import com.auth0.client.mgmt.types.BrandingThemeColors;
import com.auth0.client.mgmt.types.BrandingThemeFonts;
import com.auth0.client.mgmt.types.BrandingThemeIdentifiers;
import com.auth0.client.mgmt.types.BrandingThemePageBackground;
import com.auth0.client.mgmt.types.BrandingThemeWidget;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
Expand Down Expand Up @@ -34,6 +35,8 @@ public final class UpdateBrandingThemeRequestContent {

private final BrandingThemeFonts fonts;

private final Optional<BrandingThemeIdentifiers> identifiers;

private final BrandingThemePageBackground pageBackground;

private final BrandingThemeWidget widget;
Expand All @@ -45,13 +48,15 @@ private UpdateBrandingThemeRequestContent(
BrandingThemeColors colors,
Optional<String> displayName,
BrandingThemeFonts fonts,
Optional<BrandingThemeIdentifiers> identifiers,
BrandingThemePageBackground pageBackground,
BrandingThemeWidget widget,
Map<String, Object> additionalProperties) {
this.borders = borders;
this.colors = colors;
this.displayName = displayName;
this.fonts = fonts;
this.identifiers = identifiers;
this.pageBackground = pageBackground;
this.widget = widget;
this.additionalProperties = additionalProperties;
Expand Down Expand Up @@ -80,6 +85,11 @@ public BrandingThemeFonts getFonts() {
return fonts;
}

@JsonProperty("identifiers")
public Optional<BrandingThemeIdentifiers> getIdentifiers() {
return identifiers;
}

@JsonProperty("page_background")
public BrandingThemePageBackground getPageBackground() {
return pageBackground;
Expand All @@ -106,13 +116,21 @@ private boolean equalTo(UpdateBrandingThemeRequestContent other) {
&& colors.equals(other.colors)
&& displayName.equals(other.displayName)
&& fonts.equals(other.fonts)
&& identifiers.equals(other.identifiers)
&& pageBackground.equals(other.pageBackground)
&& widget.equals(other.widget);
}

@java.lang.Override
public int hashCode() {
return Objects.hash(this.borders, this.colors, this.displayName, this.fonts, this.pageBackground, this.widget);
return Objects.hash(
this.borders,
this.colors,
this.displayName,
this.fonts,
this.identifiers,
this.pageBackground,
this.widget);
}

@java.lang.Override
Expand Down Expand Up @@ -159,6 +177,10 @@ public interface _FinalStage {
_FinalStage displayName(Optional<String> displayName);

_FinalStage displayName(String displayName);

_FinalStage identifiers(Optional<BrandingThemeIdentifiers> identifiers);

_FinalStage identifiers(BrandingThemeIdentifiers identifiers);
}

@JsonIgnoreProperties(ignoreUnknown = true)
Expand All @@ -174,6 +196,8 @@ public static final class Builder

private BrandingThemeWidget widget;

private Optional<BrandingThemeIdentifiers> identifiers = Optional.empty();

private Optional<String> displayName = Optional.empty();

@JsonAnySetter
Expand All @@ -187,6 +211,7 @@ public Builder from(UpdateBrandingThemeRequestContent other) {
colors(other.getColors());
displayName(other.getDisplayName());
fonts(other.getFonts());
identifiers(other.getIdentifiers());
pageBackground(other.getPageBackground());
widget(other.getWidget());
return this;
Expand Down Expand Up @@ -227,6 +252,19 @@ public _FinalStage widget(@NotNull BrandingThemeWidget widget) {
return this;
}

@java.lang.Override
public _FinalStage identifiers(BrandingThemeIdentifiers identifiers) {
this.identifiers = Optional.ofNullable(identifiers);
return this;
}

@java.lang.Override
@JsonSetter(value = "identifiers", nulls = Nulls.SKIP)
public _FinalStage identifiers(Optional<BrandingThemeIdentifiers> identifiers) {
this.identifiers = identifiers;
return this;
}

/**
* <p>Display Name</p>
* @return Reference to {@code this} so that method calls can be chained together.
Expand All @@ -250,7 +288,7 @@ public _FinalStage displayName(Optional<String> displayName) {
@java.lang.Override
public UpdateBrandingThemeRequestContent build() {
return new UpdateBrandingThemeRequestContent(
borders, colors, displayName, fonts, pageBackground, widget, additionalProperties);
borders, colors, displayName, fonts, identifiers, pageBackground, widget, additionalProperties);
}

@java.lang.Override
Expand Down
Loading
Loading