Skip to content
Open
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
6 changes: 3 additions & 3 deletions .fern/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"cliVersion": "5.66.1",
"cliVersion": "5.75.6",
"generatorName": "fernapi/fern-ruby-sdk",
"generatorVersion": "1.13.1",
"generatorVersion": "1.17.8",
"generatorConfig": {
"clientModuleName": "Management",
"package-name": "auth0",
Expand All @@ -10,7 +10,7 @@
"offsetSemantics": "page-index",
"useDefaultRequestParameterValues": true
},
"originGitCommit": "1c93e58c45b63276cecfd549533df0b3f663969a",
"originGitCommit": "e2027b1584b1668f39ed802f114e54458b09bb57",
"originGitCommitIsDirty": false,
"invokedBy": "ci",
"ciProvider": "github",
Expand Down
8 changes: 7 additions & 1 deletion .fern/replay.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 35 additions & 18 deletions lib/auth0.rb

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ class CreateBrandingThemeRequestContent < Internal::Types::Model

field :fonts, -> { Auth0::Types::BrandingThemeFonts }, optional: false, nullable: false

field :identifiers, -> { Auth0::Types::BrandingThemeIdentifiers }, optional: true, nullable: false

field :page_background, -> { Auth0::Types::BrandingThemePageBackground }, optional: false, nullable: false

field :widget, -> { Auth0::Types::BrandingThemeWidget }, optional: false, nullable: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ class UpdateBrandingThemeRequestContent < Internal::Types::Model

field :fonts, -> { Auth0::Types::BrandingThemeFonts }, optional: false, nullable: false

field :identifiers, -> { Auth0::Types::BrandingThemeIdentifiers }, optional: true, nullable: false

field :page_background, -> { Auth0::Types::BrandingThemePageBackground }, optional: false, nullable: false

field :widget, -> { Auth0::Types::BrandingThemeWidget }, optional: false, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/clients/types/create_client_request_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ class CreateClientRequestContent < Internal::Types::Model

field :resource_server_identifier, -> { String }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::CreateIdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :third_party_security_mode, -> { Auth0::Types::ClientThirdPartySecurityModeEnum }, optional: true, nullable: false

field :redirection_policy, -> { Auth0::Types::ClientRedirectionPolicyEnum }, optional: true, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/clients/types/update_client_request_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ class UpdateClientRequestContent < Internal::Types::Model

field :token_quota, -> { Auth0::Types::UpdateTokenQuota }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::UpdateIdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :form_template, -> { String }, optional: true, nullable: false

field :addons, -> { Auth0::Types::ClientAddons }, optional: true, nullable: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ class CreateConnectionRequestContent < Internal::Types::Model
field :connected_accounts, -> { Auth0::Types::ConnectionConnectedAccountsPurpose }, optional: true, nullable: false

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::CreateCrossAppAccessResourceApp }, optional: true, nullable: false
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ class UpdateConnectionRequestContent < Internal::Types::Model
field :connected_accounts, -> { Auth0::Types::ConnectionConnectedAccountsPurpose }, optional: true, nullable: false

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::UpdateCrossAppAccessResourceApp }, optional: true, nullable: false
end
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ class CreateSelfServiceProfileSSOTicketRequestContent < Internal::Types::Model

field :use_for_organization_discovery, -> { Internal::Types::Boolean }, optional: true, nullable: false

field :third_party_client_access_config, -> { Auth0::Types::ThirdPartyClientAccessConfig }, optional: true, nullable: false

field :enabled_features, -> { Auth0::Types::SelfServiceProfileSSOTicketEnabledFeatures }, optional: true, nullable: false
end
end
Expand Down
13 changes: 13 additions & 0 deletions lib/auth0/types/branding_theme_identifiers.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

module Auth0
module Types
class BrandingThemeIdentifiers < Internal::Types::Model
field :login_display, -> { Auth0::Types::BrandingThemeIdentifiersLoginDisplayEnum }, optional: false, nullable: false

field :otp_autocomplete, -> { Internal::Types::Boolean }, optional: false, nullable: false

field :phone_display, -> { Auth0::Types::BrandingThemeIdentifiersPhoneDisplay }, optional: false, nullable: false
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Auth0
module Types
module BrandingThemeIdentifiersLoginDisplayEnum
extend Auth0::Internal::Types::Enum

SEPARATE = "separate"
UNIFIED = "unified"
end
end
end
12 changes: 12 additions & 0 deletions lib/auth0/types/branding_theme_identifiers_phone_display.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Auth0
module Types
# Phone display
class BrandingThemeIdentifiersPhoneDisplay < Internal::Types::Model
field :formatting, -> { Auth0::Types::BrandingThemeIdentifiersPhoneDisplayFormattingEnum }, optional: false, nullable: false

field :masking, -> { Auth0::Types::BrandingThemeIdentifiersPhoneDisplayMaskingEnum }, optional: false, nullable: false
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Auth0
module Types
module BrandingThemeIdentifiersPhoneDisplayFormattingEnum
extend Auth0::Internal::Types::Enum

INTERNATIONAL = "international"
REGIONAL = "regional"
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

module Auth0
module Types
module BrandingThemeIdentifiersPhoneDisplayMaskingEnum
extend Auth0::Internal::Types::Enum

HIDE_COUNTRY_CODE = "hide_country_code"
MASK_DIGITS = "mask_digits"
SHOW_ALL = "show_all"
end
end
end
2 changes: 2 additions & 0 deletions lib/auth0/types/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ class Client < Internal::Types::Model

field :my_organization_configuration, -> { Auth0::Types::ClientMyOrganizationResponseConfiguration }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::IdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :third_party_security_mode, -> { Auth0::Types::ClientThirdPartySecurityModeEnum }, optional: true, nullable: false

field :redirection_policy, -> { Auth0::Types::ClientRedirectionPolicyEnum }, optional: true, nullable: false
Expand Down
1 change: 1 addition & 0 deletions lib/auth0/types/client_app_type_enum.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ module ClientAppTypeEnum
NON_INTERACTIVE = "non_interactive"
RESOURCE_SERVER = "resource_server"
EXPRESS_CONFIGURATION = "express_configuration"
B2B_INTEGRATION = "b2b_integration"
RMS = "rms"
BOX = "box"
CLOUDBEES = "cloudbees"
Expand Down
1 change: 1 addition & 0 deletions lib/auth0/types/client_grant_subject_type_enum.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module ClientGrantSubjectTypeEnum

CLIENT = "client"
USER = "user"
ANONYMOUS_USER = "anonymous_user"
end
end
end
10 changes: 10 additions & 0 deletions lib/auth0/types/connection_cross_app_access_resource_app.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Auth0
module Types
# Cross App Access - Resource App settings that apply to this connection.
class ConnectionCrossAppAccessResourceApp < Internal::Types::Model
field :status, -> { Auth0::Types::ConnectionCrossAppAccessResourceAppStatusEnum }, optional: false, nullable: false
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Auth0
module Types
module ConnectionCrossAppAccessResourceAppStatusEnum
extend Auth0::Internal::Types::Enum

DISABLED = "disabled"
ENABLED = "enabled"
end
end
end
2 changes: 2 additions & 0 deletions lib/auth0/types/connection_for_list.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class ConnectionForList < Internal::Types::Model
field :connected_accounts, -> { Auth0::Types::ConnectionConnectedAccountsPurpose }, optional: true, nullable: false

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::CrossAppAccessResourceApp }, optional: true, nullable: false
end
end
end
2 changes: 2 additions & 0 deletions lib/auth0/types/connection_response_content_oidc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ class ConnectionResponseContentOidc < Internal::Types::Model

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::ConnectionCrossAppAccessResourceApp }, optional: true, nullable: false

field :options, -> { Auth0::Types::ConnectionOptionsOidc }, optional: true, nullable: false

field :show_as_button, -> { Internal::Types::Boolean }, optional: true, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/create_branding_theme_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class CreateBrandingThemeResponseContent < Internal::Types::Model

field :fonts, -> { Auth0::Types::BrandingThemeFonts }, optional: false, nullable: false

field :identifiers, -> { Auth0::Types::BrandingThemeIdentifiers }, optional: true, nullable: false

field :page_background, -> { Auth0::Types::BrandingThemePageBackground }, optional: false, nullable: false

field :theme_id, -> { String }, optional: false, nullable: false, api_name: "themeId"
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/create_client_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ class CreateClientResponseContent < Internal::Types::Model

field :my_organization_configuration, -> { Auth0::Types::ClientMyOrganizationResponseConfiguration }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::IdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :third_party_security_mode, -> { Auth0::Types::ClientThirdPartySecurityModeEnum }, optional: true, nullable: false

field :redirection_policy, -> { Auth0::Types::ClientRedirectionPolicyEnum }, optional: true, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/create_connection_request_content_oidc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ class CreateConnectionRequestContentOidc < Internal::Types::Model

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::ConnectionCrossAppAccessResourceApp }, optional: true, nullable: false

field :options, -> { Auth0::Types::ConnectionOptionsOidc }, optional: true, nullable: false

field :show_as_button, -> { Internal::Types::Boolean }, optional: true, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/create_connection_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class CreateConnectionResponseContent < Internal::Types::Model
field :connected_accounts, -> { Auth0::Types::ConnectionConnectedAccountsPurpose }, optional: true, nullable: false

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::CrossAppAccessResourceApp }, optional: true, nullable: false
end
end
end
10 changes: 10 additions & 0 deletions lib/auth0/types/create_cross_app_access_resource_app.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Auth0
module Types
# Cross App Access - Resource App settings that apply to this connection.
class CreateCrossAppAccessResourceApp < Internal::Types::Model
field :status, -> { Auth0::Types::CrossAppAccessResourceAppStatusEnum }, optional: false, nullable: false
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Auth0
module Types
# Configuration on the use of ID-JAGs for Cross App Access.
class CreateIdentityAssertionAuthorizationGrant < Internal::Types::Model
field :active, -> { Internal::Types::Boolean }, optional: false, nullable: false
end
end
end
10 changes: 10 additions & 0 deletions lib/auth0/types/cross_app_access_resource_app.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Auth0
module Types
# Cross App Access - Resource App settings that apply to this connection.
class CrossAppAccessResourceApp < Internal::Types::Model
field :status, -> { Auth0::Types::CrossAppAccessResourceAppStatusEnum }, optional: false, nullable: false
end
end
end
12 changes: 12 additions & 0 deletions lib/auth0/types/cross_app_access_resource_app_status_enum.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# frozen_string_literal: true

module Auth0
module Types
module CrossAppAccessResourceAppStatusEnum
extend Auth0::Internal::Types::Enum

ENABLED = "enabled"
DISABLED = "disabled"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class GetBrandingDefaultThemeResponseContent < Internal::Types::Model

field :fonts, -> { Auth0::Types::BrandingThemeFonts }, optional: false, nullable: false

field :identifiers, -> { Auth0::Types::BrandingThemeIdentifiers }, optional: true, nullable: false

field :page_background, -> { Auth0::Types::BrandingThemePageBackground }, optional: false, nullable: false

field :theme_id, -> { String }, optional: false, nullable: false, api_name: "themeId"
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/get_branding_theme_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class GetBrandingThemeResponseContent < Internal::Types::Model

field :fonts, -> { Auth0::Types::BrandingThemeFonts }, optional: false, nullable: false

field :identifiers, -> { Auth0::Types::BrandingThemeIdentifiers }, optional: true, nullable: false

field :page_background, -> { Auth0::Types::BrandingThemePageBackground }, optional: false, nullable: false

field :theme_id, -> { String }, optional: false, nullable: false, api_name: "themeId"
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/get_client_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ class GetClientResponseContent < Internal::Types::Model

field :my_organization_configuration, -> { Auth0::Types::ClientMyOrganizationResponseConfiguration }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::IdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :third_party_security_mode, -> { Auth0::Types::ClientThirdPartySecurityModeEnum }, optional: true, nullable: false

field :redirection_policy, -> { Auth0::Types::ClientRedirectionPolicyEnum }, optional: true, nullable: false
Expand Down
2 changes: 2 additions & 0 deletions lib/auth0/types/get_connection_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class GetConnectionResponseContent < Internal::Types::Model
field :connected_accounts, -> { Auth0::Types::ConnectionConnectedAccountsPurpose }, optional: true, nullable: false

field :cross_app_access_requesting_app, -> { Auth0::Types::CrossAppAccessRequestingApp }, optional: true, nullable: false

field :cross_app_access_resource_app, -> { Auth0::Types::CrossAppAccessResourceApp }, optional: true, nullable: false
end
end
end
2 changes: 2 additions & 0 deletions lib/auth0/types/get_session_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ class GetSessionResponseContent < Internal::Types::Model
field :cookie, -> { Auth0::Types::SessionCookieMetadata }, optional: true, nullable: false

field :session_metadata, -> { Internal::Types::Hash[String, Object] }, optional: true, nullable: false

field :actor, -> { Auth0::Types::SessionActorMetadata }, optional: true, nullable: false
end
end
end
10 changes: 10 additions & 0 deletions lib/auth0/types/identity_assertion_authorization_grant.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

module Auth0
module Types
# Configuration on the use of ID-JAGs for Cross App Access.
class IdentityAssertionAuthorizationGrant < Internal::Types::Model
field :active, -> { Internal::Types::Boolean }, optional: false, nullable: false
end
end
end
2 changes: 2 additions & 0 deletions lib/auth0/types/rotate_client_secret_response_content.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,8 @@ class RotateClientSecretResponseContent < Internal::Types::Model

field :my_organization_configuration, -> { Auth0::Types::ClientMyOrganizationResponseConfiguration }, optional: true, nullable: false

field :identity_assertion_authorization_grant, -> { Auth0::Types::IdentityAssertionAuthorizationGrant }, optional: true, nullable: false

field :third_party_security_mode, -> { Auth0::Types::ClientThirdPartySecurityModeEnum }, optional: true, nullable: false

field :redirection_policy, -> { Auth0::Types::ClientRedirectionPolicyEnum }, optional: true, nullable: false
Expand Down
16 changes: 16 additions & 0 deletions lib/auth0/types/session_actor_claim_value.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# frozen_string_literal: true

module Auth0
module Types
# Additional property for session actor, can be string, boolean, or number.
class SessionActorClaimValue < Internal::Types::Model
extend Auth0::Internal::Types::Union

member -> { String }

member -> { Internal::Types::Boolean }

member -> { Integer }
end
end
end
Loading
Loading