@leancodepl/kratos 8.5.1 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +457 -263
- package/index.cjs.js +16665 -3810
- package/index.esm.js +16644 -3789
- package/package.json +6 -7
- package/src/index.d.ts +4 -11
- package/src/lib/factories/index.d.ts +1 -0
- package/src/lib/factories/mkKratos.d.ts +292 -0
- package/src/lib/flows/index.d.ts +6 -7
- package/src/lib/flows/login/chooseMethodForm/ChooseMethodFormWrapper.d.ts +46 -0
- package/src/lib/flows/login/chooseMethodForm/chooseMethodFormContext.d.ts +10 -0
- package/src/lib/flows/login/chooseMethodForm/fields/Identifier.d.ts +6 -0
- package/src/lib/flows/login/chooseMethodForm/fields/Oidc.d.ts +13 -0
- package/src/lib/flows/login/chooseMethodForm/fields/Passkey.d.ts +9 -0
- package/src/lib/flows/login/chooseMethodForm/fields/Password.d.ts +6 -0
- package/src/lib/flows/login/chooseMethodForm/fields/index.d.ts +4 -0
- package/src/lib/flows/login/chooseMethodForm/index.d.ts +1 -0
- package/src/lib/flows/login/chooseMethodForm/types.d.ts +4 -0
- package/src/lib/flows/login/chooseMethodForm/usePasswordForm.d.ts +34 -0
- package/src/lib/flows/login/hooks/index.d.ts +5 -0
- package/src/lib/flows/login/hooks/queryKeys.d.ts +1 -0
- package/src/lib/flows/login/hooks/useCreateLoginFlow.d.ts +5 -0
- package/src/lib/flows/login/hooks/useExistingIdentifierFromFlow.d.ts +1 -0
- package/src/lib/flows/login/hooks/useGetLoginFlow.d.ts +2 -0
- package/src/lib/flows/login/hooks/useLoginFlowContext.d.ts +11 -0
- package/src/lib/flows/login/hooks/useUpdateLoginFlow.d.ts +2 -0
- package/src/lib/flows/login/index.d.ts +5 -0
- package/src/lib/flows/login/loginFlow.d.ts +58 -0
- package/src/lib/flows/login/secondFactorEmailForm/SecondFactorEmailFormWrapper.d.ts +21 -0
- package/src/lib/flows/login/secondFactorEmailForm/fields/Code.d.ts +6 -0
- package/src/lib/flows/login/secondFactorEmailForm/fields/Resend.d.ts +6 -0
- package/src/lib/flows/login/secondFactorEmailForm/fields/index.d.ts +2 -0
- package/src/lib/flows/login/secondFactorEmailForm/index.d.ts +1 -0
- package/src/lib/flows/login/secondFactorEmailForm/secondFactorEmailFormContext.d.ts +10 -0
- package/src/lib/flows/login/secondFactorEmailForm/types.d.ts +3 -0
- package/src/lib/flows/login/secondFactorEmailForm/useCodeForm.d.ts +25 -0
- package/src/lib/flows/login/secondFactorForm/SecondFactorFormWrapper.d.ts +33 -0
- package/src/lib/flows/login/secondFactorForm/fields/Email.d.ts +6 -0
- package/src/lib/flows/login/secondFactorForm/fields/Totp.d.ts +6 -0
- package/src/lib/flows/login/secondFactorForm/fields/index.d.ts +2 -0
- package/src/lib/flows/login/secondFactorForm/index.d.ts +1 -0
- package/src/lib/flows/login/secondFactorForm/secondFactorFormContext.d.ts +10 -0
- package/src/lib/flows/login/secondFactorForm/types.d.ts +3 -0
- package/src/lib/flows/login/secondFactorForm/useTotpForm.d.ts +25 -0
- package/src/lib/flows/login/types.d.ts +6 -0
- package/src/lib/flows/logout/index.d.ts +1 -0
- package/src/lib/flows/logout/useLogout.d.ts +32 -0
- package/src/lib/flows/recovery/codeForm/CodeFormWrapper.d.ts +17 -0
- package/src/lib/flows/recovery/codeForm/codeFormContext.d.ts +10 -0
- package/src/lib/flows/recovery/codeForm/fields/Code.d.ts +6 -0
- package/src/lib/flows/recovery/codeForm/fields/index.d.ts +1 -0
- package/src/lib/flows/recovery/codeForm/index.d.ts +1 -0
- package/src/lib/flows/recovery/codeForm/types.d.ts +3 -0
- package/src/lib/flows/recovery/codeForm/useCodeForm.d.ts +24 -0
- package/src/lib/flows/recovery/emailForm/EmailFormWrapper.d.ts +17 -0
- package/src/lib/flows/recovery/emailForm/emailFormContext.d.ts +10 -0
- package/src/lib/flows/recovery/emailForm/fields/Email.d.ts +6 -0
- package/src/lib/flows/recovery/emailForm/fields/index.d.ts +1 -0
- package/src/lib/flows/recovery/emailForm/index.d.ts +1 -0
- package/src/lib/flows/recovery/emailForm/types.d.ts +3 -0
- package/src/lib/flows/recovery/emailForm/useEmailForm.d.ts +24 -0
- package/src/lib/flows/recovery/hooks/index.d.ts +4 -0
- package/src/lib/flows/recovery/hooks/queryKeys.d.ts +1 -0
- package/src/lib/flows/recovery/hooks/useCreateRecoveryFlow.d.ts +3 -0
- package/src/lib/flows/recovery/hooks/useGetRecoveryFlow.d.ts +2 -0
- package/src/lib/flows/recovery/hooks/useRecoveryFlowContext.d.ts +11 -0
- package/src/lib/flows/recovery/hooks/useUpdateRecoveryFlow.d.ts +2 -0
- package/src/lib/flows/recovery/index.d.ts +4 -0
- package/src/lib/flows/recovery/recoveryFlow.d.ts +49 -0
- package/src/lib/flows/recovery/types.d.ts +5 -0
- package/src/lib/flows/registration/chooseMethodForm/ChooseMethodFormWrapper.d.ts +27 -0
- package/src/lib/flows/registration/chooseMethodForm/chooseMethodFormContext.d.ts +10 -0
- package/src/lib/flows/registration/chooseMethodForm/fields/Passkey.d.ts +10 -0
- package/src/lib/flows/registration/chooseMethodForm/fields/Password.d.ts +6 -0
- package/src/lib/flows/registration/chooseMethodForm/fields/PasswordConfirmation.d.ts +9 -0
- package/src/lib/flows/registration/chooseMethodForm/fields/ReturnToTraitsForm.d.ts +6 -0
- package/src/lib/flows/registration/chooseMethodForm/fields/index.d.ts +4 -0
- package/src/lib/flows/registration/chooseMethodForm/index.d.ts +1 -0
- package/src/lib/flows/registration/chooseMethodForm/types.d.ts +4 -0
- package/src/lib/flows/registration/chooseMethodForm/useChooseMethodForm.d.ts +35 -0
- package/src/lib/flows/registration/hooks/index.d.ts +4 -0
- package/src/lib/flows/registration/hooks/queryKeys.d.ts +1 -0
- package/src/lib/flows/registration/hooks/useCreateRegistrationFlow.d.ts +3 -0
- package/src/lib/flows/registration/hooks/useGetRegistrationFlow.d.ts +2 -0
- package/src/lib/flows/registration/hooks/useRegistrationFlowContext.d.ts +15 -0
- package/src/lib/flows/registration/hooks/useUpdateRegistrationFlow.d.ts +2 -0
- package/src/lib/flows/registration/index.d.ts +4 -0
- package/src/lib/flows/registration/registrationFlow.d.ts +61 -0
- package/src/lib/flows/registration/traitsForm/TraitsFormWrapper.d.ts +33 -0
- package/src/lib/flows/registration/traitsForm/fields/Oidc.d.ts +13 -0
- package/src/lib/flows/registration/traitsForm/fields/Trait.d.ts +8 -0
- package/src/lib/flows/registration/traitsForm/fields/index.d.ts +2 -0
- package/src/lib/flows/registration/traitsForm/index.d.ts +1 -0
- package/src/lib/flows/registration/traitsForm/traitsFormContext.d.ts +10 -0
- package/src/lib/flows/registration/traitsForm/useTraitsForm.d.ts +27 -0
- package/src/lib/flows/registration/types.d.ts +4 -0
- package/src/lib/flows/settings/hooks/index.d.ts +4 -0
- package/src/lib/flows/settings/hooks/queryKeys.d.ts +1 -0
- package/src/lib/flows/settings/hooks/useCreateSettingsFlow.d.ts +1 -0
- package/src/lib/flows/settings/hooks/useGetSettingsFlow.d.ts +2 -0
- package/src/lib/flows/settings/hooks/useSettingsFlowContext.d.ts +13 -0
- package/src/lib/flows/settings/hooks/useUpdateSettingsFlow.d.ts +2 -0
- package/src/lib/flows/settings/index.d.ts +8 -0
- package/src/lib/flows/settings/newPasswordForm/NewPasswordFormWrapper.d.ts +24 -0
- package/src/lib/flows/settings/newPasswordForm/fields/Password.d.ts +6 -0
- package/src/lib/flows/settings/newPasswordForm/fields/PasswordConfirmation.d.ts +9 -0
- package/src/lib/flows/settings/newPasswordForm/fields/index.d.ts +2 -0
- package/src/lib/flows/settings/newPasswordForm/index.d.ts +1 -0
- package/src/lib/flows/settings/newPasswordForm/newPasswordFormContext.d.ts +10 -0
- package/src/lib/flows/settings/newPasswordForm/types.d.ts +4 -0
- package/src/lib/flows/settings/newPasswordForm/useNewPasswordForm.d.ts +35 -0
- package/src/lib/flows/settings/oidcForm/OidcFormWrapper.d.ts +15 -0
- package/src/lib/flows/settings/oidcForm/fields/Oidc.d.ts +12 -0
- package/src/lib/flows/settings/oidcForm/fields/index.d.ts +1 -0
- package/src/lib/flows/settings/oidcForm/index.d.ts +2 -0
- package/src/lib/flows/settings/oidcForm/providers.d.ts +3 -0
- package/src/lib/flows/settings/passkeysForm/PasskeysFormWrapper.d.ts +18 -0
- package/src/lib/flows/settings/passkeysForm/fields/AddPasskey.d.ts +6 -0
- package/src/lib/flows/settings/passkeysForm/fields/index.d.ts +1 -0
- package/src/lib/flows/settings/passkeysForm/hooks/index.d.ts +1 -0
- package/src/lib/flows/settings/passkeysForm/hooks/usePasskeys.d.ts +5 -0
- package/src/lib/flows/settings/passkeysForm/index.d.ts +1 -0
- package/src/lib/flows/settings/settingsFlow.d.ts +72 -0
- package/src/lib/flows/settings/totpForm/TotpFormFormWrapper.d.ts +38 -0
- package/src/lib/flows/settings/totpForm/fields/Code.d.ts +6 -0
- package/src/lib/flows/settings/totpForm/fields/Unlink.d.ts +6 -0
- package/src/lib/flows/settings/totpForm/fields/index.d.ts +2 -0
- package/src/lib/flows/settings/totpForm/index.d.ts +1 -0
- package/src/lib/flows/settings/totpForm/totpFormContext.d.ts +10 -0
- package/src/lib/flows/settings/totpForm/types.d.ts +3 -0
- package/src/lib/flows/settings/totpForm/useTotpForm.d.ts +26 -0
- package/src/lib/flows/settings/traitsForm/TraitsFormWrapper.d.ts +27 -0
- package/src/lib/flows/settings/traitsForm/fields/Trait.d.ts +8 -0
- package/src/lib/flows/settings/traitsForm/fields/index.d.ts +1 -0
- package/src/lib/flows/settings/traitsForm/index.d.ts +1 -0
- package/src/lib/flows/settings/traitsForm/traitsFormContext.d.ts +10 -0
- package/src/lib/flows/settings/traitsForm/types.d.ts +3 -0
- package/src/lib/flows/settings/traitsForm/useTraitsForm.d.ts +27 -0
- package/src/lib/flows/settings/types.d.ts +4 -0
- package/src/lib/flows/verification/emailVerificationForm/EmailVerificationFormWrapper.d.ts +21 -0
- package/src/lib/flows/verification/emailVerificationForm/emailVerificationFormContext.d.ts +10 -0
- package/src/lib/flows/verification/emailVerificationForm/fields/Code.d.ts +6 -0
- package/src/lib/flows/verification/emailVerificationForm/fields/Resend.d.ts +6 -0
- package/src/lib/flows/verification/emailVerificationForm/fields/index.d.ts +2 -0
- package/src/lib/flows/verification/emailVerificationForm/index.d.ts +1 -0
- package/src/lib/flows/verification/emailVerificationForm/types.d.ts +3 -0
- package/src/lib/flows/verification/emailVerificationForm/useEmailVerificationForm.d.ts +25 -0
- package/src/lib/flows/verification/hooks/index.d.ts +4 -0
- package/src/lib/flows/verification/hooks/queryKeys.d.ts +1 -0
- package/src/lib/flows/verification/hooks/useCreateVerificationFlow.d.ts +3 -0
- package/src/lib/flows/verification/hooks/useGetVerificationFlow.d.ts +2 -0
- package/src/lib/flows/verification/hooks/useUpdateVerificationFlow.d.ts +2 -0
- package/src/lib/flows/verification/hooks/useVerificationFlowContext.d.ts +13 -0
- package/src/lib/flows/verification/index.d.ts +4 -0
- package/src/lib/flows/verification/types.d.ts +3 -0
- package/src/lib/flows/verification/verificationFlow.d.ts +41 -0
- package/src/lib/hooks/index.d.ts +4 -0
- package/src/lib/hooks/useFlowManager.d.ts +10 -0
- package/src/lib/hooks/useFormErrors.d.ts +2 -0
- package/src/lib/hooks/useKratosClientContext.d.ts +12 -0
- package/src/lib/hooks/useKratosSessionContext.d.ts +13 -0
- package/src/lib/kratos/api.generated/apis/CourierApi.d.ts +86 -0
- package/src/lib/kratos/api.generated/apis/EventsApi.d.ts +133 -0
- package/src/lib/kratos/api.generated/apis/FrontendApi.d.ts +979 -0
- package/src/lib/kratos/api.generated/apis/IdentityApi.d.ts +630 -0
- package/src/lib/kratos/api.generated/apis/JwkApi.d.ts +227 -0
- package/src/lib/kratos/api.generated/apis/MetadataApi.d.ts +49 -0
- package/src/lib/kratos/api.generated/apis/OAuth2Api.d.ts +830 -0
- package/src/lib/kratos/api.generated/apis/OidcApi.d.ts +232 -0
- package/src/lib/kratos/api.generated/apis/PermissionApi.d.ts +228 -0
- package/src/lib/kratos/api.generated/apis/ProjectApi.d.ts +511 -0
- package/src/lib/kratos/api.generated/apis/RelationshipApi.d.ts +212 -0
- package/src/lib/kratos/api.generated/apis/WellknownApi.d.ts +49 -0
- package/src/lib/kratos/api.generated/apis/WorkspaceApi.d.ts +244 -0
- package/src/lib/kratos/api.generated/apis/index.d.ts +13 -0
- package/src/lib/kratos/api.generated/index.d.ts +3 -0
- package/src/lib/kratos/api.generated/models/AcceptOAuth2ConsentRequest.d.ts +71 -0
- package/src/lib/kratos/api.generated/models/AcceptOAuth2ConsentRequestSession.d.ts +42 -0
- package/src/lib/kratos/api.generated/models/AcceptOAuth2LoginRequest.d.ts +105 -0
- package/src/lib/kratos/api.generated/models/AccountExperienceColors.d.ts +884 -0
- package/src/lib/kratos/api.generated/models/AccountExperienceConfiguration.d.ts +145 -0
- package/src/lib/kratos/api.generated/models/AccountExperienceThemeVariables.d.ts +572 -0
- package/src/lib/kratos/api.generated/models/ActiveProjectInConsole.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/AddProjectToWorkspaceBody.d.ts +66 -0
- package/src/lib/kratos/api.generated/models/Attribute.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/AttributeFilter.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/AttributesCountDatapoint.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/AuthenticatorAssuranceLevel.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/BatchCheckPermissionBody.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/BatchCheckPermissionResult.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/BatchPatchIdentitiesResponse.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/BillingPeriodBucket.d.ts +46 -0
- package/src/lib/kratos/api.generated/models/CheckOplSyntaxResult.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/CheckPermissionResult.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/CheckPermissionResultWithError.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/CloudAccount.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/ConsistencyRequestParameters.d.ts +60 -0
- package/src/lib/kratos/api.generated/models/ContinueWith.d.ts +36 -0
- package/src/lib/kratos/api.generated/models/ContinueWithRecoveryUi.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/ContinueWithRecoveryUiFlow.d.ts +40 -0
- package/src/lib/kratos/api.generated/models/ContinueWithRedirectBrowserTo.d.ts +47 -0
- package/src/lib/kratos/api.generated/models/ContinueWithSetOrySessionToken.d.ts +47 -0
- package/src/lib/kratos/api.generated/models/ContinueWithSettingsUi.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/ContinueWithSettingsUiFlow.d.ts +40 -0
- package/src/lib/kratos/api.generated/models/ContinueWithVerificationUi.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/ContinueWithVerificationUiFlow.d.ts +46 -0
- package/src/lib/kratos/api.generated/models/CourierMessageStatus.d.ts +28 -0
- package/src/lib/kratos/api.generated/models/CourierMessageType.d.ts +26 -0
- package/src/lib/kratos/api.generated/models/CreateCustomDomainBody.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/CreateEventStreamBody.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/CreateFedcmFlowResponse.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/CreateIdentityBody.d.ts +105 -0
- package/src/lib/kratos/api.generated/models/CreateInviteResponse.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/CreateJsonWebKeySet.d.ts +53 -0
- package/src/lib/kratos/api.generated/models/CreateProjectApiKeyRequest.d.ts +42 -0
- package/src/lib/kratos/api.generated/models/CreateProjectBody.d.ts +84 -0
- package/src/lib/kratos/api.generated/models/CreateProjectBranding.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/CreateProjectMemberInviteBody.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/CreateProjectNormalizedPayload.d.ts +1903 -0
- package/src/lib/kratos/api.generated/models/CreateRecoveryCodeForIdentityBody.d.ts +49 -0
- package/src/lib/kratos/api.generated/models/CreateRecoveryLinkForIdentityBody.d.ts +43 -0
- package/src/lib/kratos/api.generated/models/CreateRelationshipBody.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/CreateSubscriptionBody.d.ts +78 -0
- package/src/lib/kratos/api.generated/models/CreateSubscriptionCommon.d.ts +72 -0
- package/src/lib/kratos/api.generated/models/CreateVerifiableCredentialRequestBody.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/CreateWorkspaceApiKeyBody.d.ts +40 -0
- package/src/lib/kratos/api.generated/models/CreateWorkspaceBody.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/CreateWorkspaceMemberInviteBody.d.ts +49 -0
- package/src/lib/kratos/api.generated/models/CreateWorkspaceSubscriptionBody.d.ts +72 -0
- package/src/lib/kratos/api.generated/models/CredentialSupportedDraft00.d.ts +58 -0
- package/src/lib/kratos/api.generated/models/CustomDomain.d.ts +121 -0
- package/src/lib/kratos/api.generated/models/DeleteMySessionsCount.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/EmailTemplateData.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/EmailTemplateDataBody.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/ErrorAuthenticatorAssuranceLevelNotSatisfied.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/ErrorBrowserLocationChangeRequired.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/ErrorFlowReplaced.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/ErrorGeneric.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/ErrorOAuth2.d.ts +60 -0
- package/src/lib/kratos/api.generated/models/EventStream.d.ts +62 -0
- package/src/lib/kratos/api.generated/models/ExpandedPermissionTree.d.ts +68 -0
- package/src/lib/kratos/api.generated/models/FlowError.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/GenericError.d.ts +91 -0
- package/src/lib/kratos/api.generated/models/GenericErrorContent.d.ts +73 -0
- package/src/lib/kratos/api.generated/models/GenericUsage.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/GetAttributesCountResponse.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/GetManagedIdentitySchemaLocation.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/GetMetricsEventAttributesResponse.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/GetMetricsEventTypesResponse.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/GetOrganizationResponse.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/GetProjectEventsBody.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/GetProjectEventsResponse.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/GetProjectMetricsResponse.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/GetSessionActivityResponse.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/GetVersion200Response.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/HealthNotReadyStatus.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/HealthStatus.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/Identity.d.ts +135 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentials.d.ts +91 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentialsCode.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentialsCodeAddress.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentialsOidc.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentialsOidcProvider.d.ts +68 -0
- package/src/lib/kratos/api.generated/models/IdentityCredentialsPassword.d.ts +40 -0
- package/src/lib/kratos/api.generated/models/IdentityPatch.d.ts +43 -0
- package/src/lib/kratos/api.generated/models/IdentityPatchResponse.d.ts +61 -0
- package/src/lib/kratos/api.generated/models/IdentitySchemaContainer.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/IdentitySchemaPreset.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentials.d.ts +47 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidc.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidcConfig.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidcConfigProvider.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsPassword.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsPasswordConfig.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSaml.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSamlConfig.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSamlConfigProvider.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/InternalGetProjectBrandingBody.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/InternalIsAXWelcomeScreenEnabledForProjectBody.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/InternalIsOwnerForProjectBySlugBody.d.ts +60 -0
- package/src/lib/kratos/api.generated/models/InternalIsOwnerForProjectBySlugResponse.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/IntrospectedOAuth2Token.d.ts +132 -0
- package/src/lib/kratos/api.generated/models/InviteTokenBody.d.ts +36 -0
- package/src/lib/kratos/api.generated/models/Invoice.d.ts +68 -0
- package/src/lib/kratos/api.generated/models/InvoiceDataV1.d.ts +101 -0
- package/src/lib/kratos/api.generated/models/IsOwnerForProjectBySlug.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/JsonPatch.d.ts +69 -0
- package/src/lib/kratos/api.generated/models/JsonWebKey.d.ts +153 -0
- package/src/lib/kratos/api.generated/models/JsonWebKeySet.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/KetoNamespace.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/LineItemV1.d.ts +62 -0
- package/src/lib/kratos/api.generated/models/ListEventStreams.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/ListInvoicesResponse.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/ListOrganizationsResponse.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/ListWorkspaceProjects.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/ListWorkspaces.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/LoginFlow.d.ts +183 -0
- package/src/lib/kratos/api.generated/models/LoginFlowState.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/LogoutFlow.d.ts +40 -0
- package/src/lib/kratos/api.generated/models/ManagedIdentitySchema.d.ts +76 -0
- package/src/lib/kratos/api.generated/models/ManagedIdentitySchemaValidationResult.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/MemberInvite.d.ts +114 -0
- package/src/lib/kratos/api.generated/models/Message.d.ts +131 -0
- package/src/lib/kratos/api.generated/models/MessageDispatch.d.ts +75 -0
- package/src/lib/kratos/api.generated/models/MetricsDatapoint.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/Money.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/Namespace.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/NeedsPrivilegedSessionError.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/NormalizedProject.d.ts +151 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevision.d.ts +1853 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionCourierChannel.d.ts +127 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionHook.d.ts +134 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionIdentitySchema.d.ts +96 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionSAMLProvider.d.ts +100 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionScimClient.d.ts +89 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionThirdPartyProvider.d.ts +243 -0
- package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionTokenizerTemplate.d.ts +74 -0
- package/src/lib/kratos/api.generated/models/OAuth2Client.d.ts +415 -0
- package/src/lib/kratos/api.generated/models/OAuth2ClientTokenLifespans.d.ts +86 -0
- package/src/lib/kratos/api.generated/models/OAuth2ConsentRequest.d.ts +122 -0
- package/src/lib/kratos/api.generated/models/OAuth2ConsentRequestOpenIDConnectContext.d.ts +81 -0
- package/src/lib/kratos/api.generated/models/OAuth2ConsentSession.d.ts +95 -0
- package/src/lib/kratos/api.generated/models/OAuth2ConsentSessionExpiresAt.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/OAuth2LoginRequest.d.ts +92 -0
- package/src/lib/kratos/api.generated/models/OAuth2LogoutRequest.d.ts +75 -0
- package/src/lib/kratos/api.generated/models/OAuth2RedirectTo.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/OAuth2TokenExchange.d.ts +65 -0
- package/src/lib/kratos/api.generated/models/OidcConfiguration.d.ts +292 -0
- package/src/lib/kratos/api.generated/models/OidcUserInfo.d.ts +140 -0
- package/src/lib/kratos/api.generated/models/Organization.d.ts +62 -0
- package/src/lib/kratos/api.generated/models/OrganizationBody.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/Pagination.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/PaginationHeaders.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/ParseError.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/PatchIdentitiesBody.d.ts +35 -0
- package/src/lib/kratos/api.generated/models/PerformNativeLogoutBody.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/PermissionsOnWorkspace.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/Plan.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/PlanDetails.d.ts +77 -0
- package/src/lib/kratos/api.generated/models/PostCheckPermissionBody.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/PostCheckPermissionOrErrorBody.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/Project.d.ts +141 -0
- package/src/lib/kratos/api.generated/models/ProjectApiKey.d.ts +76 -0
- package/src/lib/kratos/api.generated/models/ProjectBranding.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/ProjectBrandingColors.d.ts +200 -0
- package/src/lib/kratos/api.generated/models/ProjectBrandingTheme.d.ts +271 -0
- package/src/lib/kratos/api.generated/models/ProjectCors.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/ProjectEventsDatapoint.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/ProjectHost.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/ProjectMember.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/ProjectMetadata.d.ts +150 -0
- package/src/lib/kratos/api.generated/models/ProjectServiceIdentity.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/ProjectServiceOAuth2.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/ProjectServicePermission.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/ProjectServices.d.ts +47 -0
- package/src/lib/kratos/api.generated/models/Provider.d.ts +84 -0
- package/src/lib/kratos/api.generated/models/QuotaUsage.d.ts +149 -0
- package/src/lib/kratos/api.generated/models/RFC6749ErrorJson.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/RecoveryCodeForIdentity.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/RecoveryFlow.d.ts +104 -0
- package/src/lib/kratos/api.generated/models/RecoveryFlowState.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/RecoveryIdentityAddress.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/RecoveryLinkForIdentity.d.ts +42 -0
- package/src/lib/kratos/api.generated/models/RegistrationFlow.d.ts +154 -0
- package/src/lib/kratos/api.generated/models/RegistrationFlowState.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/RejectOAuth2Request.d.ts +61 -0
- package/src/lib/kratos/api.generated/models/RelationQuery.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/Relationship.d.ts +59 -0
- package/src/lib/kratos/api.generated/models/RelationshipNamespaces.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/RelationshipPatch.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/Relationships.d.ts +41 -0
- package/src/lib/kratos/api.generated/models/SchemaPatch.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/SelfServiceFlowExpiredError.d.ts +53 -0
- package/src/lib/kratos/api.generated/models/Session.d.ts +99 -0
- package/src/lib/kratos/api.generated/models/SessionActivityDatapoint.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/SessionAuthenticationMethod.d.ts +73 -0
- package/src/lib/kratos/api.generated/models/SessionDevice.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/SetActiveProjectInConsoleBody.d.ts +36 -0
- package/src/lib/kratos/api.generated/models/SetCustomDomainBody.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/SetEventStreamBody.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/SetProject.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/SetProjectBrandingThemeBody.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/SettingsFlow.d.ts +116 -0
- package/src/lib/kratos/api.generated/models/SettingsFlowState.d.ts +26 -0
- package/src/lib/kratos/api.generated/models/SourcePosition.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/SubjectSet.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/Subscription.d.ts +147 -0
- package/src/lib/kratos/api.generated/models/SuccessfulCodeExchangeResponse.d.ts +46 -0
- package/src/lib/kratos/api.generated/models/SuccessfulNativeLogin.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/SuccessfulNativeRegistration.d.ts +65 -0
- package/src/lib/kratos/api.generated/models/SuccessfulProjectUpdate.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/TaxLineItem.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/TimeInterval.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/TokenPagination.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/TokenPaginationHeaders.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/TokenPaginationRequestParameters.d.ts +47 -0
- package/src/lib/kratos/api.generated/models/TokenPaginationResponseHeaders.d.ts +54 -0
- package/src/lib/kratos/api.generated/models/TrustOAuth2JwtGrantIssuer.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/TrustedOAuth2JwtGrantIssuer.d.ts +75 -0
- package/src/lib/kratos/api.generated/models/TrustedOAuth2JwtGrantJsonWebKey.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/UiContainer.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/UiNode.d.ts +113 -0
- package/src/lib/kratos/api.generated/models/UiNodeAnchorAttributes.d.ts +73 -0
- package/src/lib/kratos/api.generated/models/UiNodeAttributes.d.ts +39 -0
- package/src/lib/kratos/api.generated/models/UiNodeDivisionAttributes.d.ts +74 -0
- package/src/lib/kratos/api.generated/models/UiNodeImageAttributes.d.ts +78 -0
- package/src/lib/kratos/api.generated/models/UiNodeInputAttributes.d.ts +229 -0
- package/src/lib/kratos/api.generated/models/UiNodeMeta.d.ts +34 -0
- package/src/lib/kratos/api.generated/models/UiNodeScriptAttributes.d.ts +104 -0
- package/src/lib/kratos/api.generated/models/UiNodeTextAttributes.d.ts +65 -0
- package/src/lib/kratos/api.generated/models/UiText.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/UpdateFedcmFlowBody.d.ts +51 -0
- package/src/lib/kratos/api.generated/models/UpdateIdentityBody.d.ts +78 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowBody.d.ts +48 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithCodeMethod.d.ts +70 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithIdentifierFirstMethod.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithLookupSecretMethod.d.ts +44 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithOidcMethod.d.ts +92 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithPasskeyMethod.d.ts +46 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithPasswordMethod.d.ts +63 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithSamlMethod.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithTotpMethod.d.ts +50 -0
- package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithWebAuthnMethod.d.ts +58 -0
- package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowBody.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowWithCodeMethod.d.ts +80 -0
- package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowWithLinkMethod.d.ts +69 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowBody.d.ts +42 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithCodeMethod.d.ts +64 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithOidcMethod.d.ts +92 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithPasskeyMethod.d.ts +61 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithPasswordMethod.d.ts +58 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithProfileMethod.d.ts +76 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithSamlMethod.d.ts +58 -0
- package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithWebAuthnMethod.d.ts +69 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowBody.d.ts +45 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithLookupMethod.d.ts +70 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithOidcMethod.d.ts +90 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithPasskeyMethod.d.ts +57 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithPasswordMethod.d.ts +52 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithProfileMethod.d.ts +56 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithSamlMethod.d.ts +84 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithTotpMethod.d.ts +60 -0
- package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithWebAuthnMethod.d.ts +71 -0
- package/src/lib/kratos/api.generated/models/UpdateSubscriptionBody.d.ts +55 -0
- package/src/lib/kratos/api.generated/models/UpdateVerificationFlowBody.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/UpdateVerificationFlowWithCodeMethod.d.ts +80 -0
- package/src/lib/kratos/api.generated/models/UpdateVerificationFlowWithLinkMethod.d.ts +69 -0
- package/src/lib/kratos/api.generated/models/UpdateWorkspaceBody.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/Usage.d.ts +33 -0
- package/src/lib/kratos/api.generated/models/VerifiableCredentialPrimingResponse.d.ts +74 -0
- package/src/lib/kratos/api.generated/models/VerifiableCredentialProof.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/VerifiableCredentialResponse.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/VerifiableIdentityAddress.d.ts +85 -0
- package/src/lib/kratos/api.generated/models/VerificationFlow.d.ts +101 -0
- package/src/lib/kratos/api.generated/models/VerificationFlowState.d.ts +27 -0
- package/src/lib/kratos/api.generated/models/Version.d.ts +32 -0
- package/src/lib/kratos/api.generated/models/Warning.d.ts +38 -0
- package/src/lib/kratos/api.generated/models/Workspace.d.ts +62 -0
- package/src/lib/kratos/api.generated/models/WorkspaceApiKey.d.ts +76 -0
- package/src/lib/kratos/api.generated/models/index.d.ts +283 -0
- package/src/lib/kratos/api.generated/runtime.d.ts +182 -0
- package/src/lib/kratos/contrib/continueWith.d.ts +51 -0
- package/src/lib/kratos/contrib/error.d.ts +87 -0
- package/src/lib/kratos/contrib/flowTypes.d.ts +9 -0
- package/src/lib/kratos/contrib/index.d.ts +6 -0
- package/src/lib/kratos/contrib/ui.d.ts +63 -0
- package/src/lib/kratos/contrib/urlHelpers.d.ts +25 -0
- package/src/lib/kratos/contrib/utils.d.ts +32 -0
- package/src/lib/kratos/index.d.ts +2 -0
- package/src/lib/sessionManager/baseSessionManager.d.ts +50 -27
- package/src/lib/sessionManager/index.d.ts +1 -0
- package/src/lib/sessionManager/types.d.ts +10 -0
- package/src/lib/types/index.d.ts +17 -0
- package/src/lib/utils/assertion.d.ts +9 -0
- package/src/lib/utils/errors.d.ts +386 -0
- package/src/lib/utils/fields.d.ts +9 -0
- package/src/lib/utils/flow.d.ts +46 -0
- package/src/lib/utils/form.d.ts +12 -0
- package/src/lib/utils/index.d.ts +9 -0
- package/src/lib/utils/passkeys/credential.d.ts +13 -0
- package/src/lib/utils/passkeys/helpers.d.ts +2 -0
- package/src/lib/utils/passkeys/index.d.ts +4 -0
- package/src/lib/utils/passkeys/types.d.ts +31 -0
- package/src/lib/utils/query.d.ts +3 -0
- package/src/lib/utils/searchQuery.d.ts +6 -0
- package/src/lib/utils/traits.d.ts +5 -0
- package/src/lib/cards/index.d.ts +0 -2
- package/src/lib/cards/userAuthCard.d.ts +0 -62
- package/src/lib/cards/userSettingsCard.d.ts +0 -36
- package/src/lib/createKratosClient.d.ts +0 -19
- package/src/lib/defaultComponents/DefaultButtonComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultCheckboxComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultImageComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultInputComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultLinkComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultMessageComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultMessageFormatComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultTextComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents/DefaultUiMessagesComponent/index.d.ts +0 -2
- package/src/lib/defaultComponents.d.ts +0 -2
- package/src/lib/flows/useLoginFlow.d.ts +0 -50
- package/src/lib/flows/useLogoutFlow.d.ts +0 -33
- package/src/lib/flows/useReauthenticationFlow.d.ts +0 -31
- package/src/lib/flows/useRecoveryFlow.d.ts +0 -47
- package/src/lib/flows/useRegistrationFlow.d.ts +0 -47
- package/src/lib/flows/useSettingsFlow.d.ts +0 -47
- package/src/lib/flows/useVerificationFlow.d.ts +0 -47
- package/src/lib/helpers/errorMessages.d.ts +0 -7
- package/src/lib/helpers/filterFlowNodes.d.ts +0 -7
- package/src/lib/helpers/formattedMessage.d.ts +0 -4
- package/src/lib/helpers/getNodeLabel.d.ts +0 -2
- package/src/lib/helpers/node.d.ts +0 -7
- package/src/lib/helpers/useScriptNodes.d.ts +0 -5
- package/src/lib/helpers/userAuthForm.d.ts +0 -31
- package/src/lib/kratosContext.d.ts +0 -29
- package/src/lib/kratosContextProvider.d.ts +0 -34
- package/src/lib/sections/authCodeSection.d.ts +0 -14
- package/src/lib/sections/identifierFirstLoginSection.d.ts +0 -8
- package/src/lib/sections/linkSection.d.ts +0 -14
- package/src/lib/sections/loginSection.d.ts +0 -8
- package/src/lib/sections/lookupSecretSettingsSection.d.ts +0 -8
- package/src/lib/sections/oidcSection.d.ts +0 -8
- package/src/lib/sections/oidcSettingsSection.d.ts +0 -8
- package/src/lib/sections/passkeySettingsSection.d.ts +0 -8
- package/src/lib/sections/passwordSettingsSection.d.ts +0 -8
- package/src/lib/sections/passwordlessSection.d.ts +0 -8
- package/src/lib/sections/profileLoginSection.d.ts +0 -8
- package/src/lib/sections/profileRegistrationSection.d.ts +0 -8
- package/src/lib/sections/profileSettingsSection.d.ts +0 -8
- package/src/lib/sections/registrationSection.d.ts +0 -8
- package/src/lib/sections/totpSettingsSection.d.ts +0 -8
- package/src/lib/types/components.d.ts +0 -78
- package/src/lib/types/enums/errorId.d.ts +0 -16
- package/src/lib/types/enums/errorValidation.d.ts +0 -30
- package/src/lib/types/enums/errorValidationLogin.d.ts +0 -9
- package/src/lib/types/enums/errorValidationRecovery.d.ts +0 -9
- package/src/lib/types/enums/errorValidationRegistration.d.ts +0 -4
- package/src/lib/types/enums/errorValidationSettings.d.ts +0 -4
- package/src/lib/types/enums/errorValidationVerification.d.ts +0 -9
- package/src/lib/types/enums/index.d.ts +0 -14
- package/src/lib/types/enums/infoNodeLabel.d.ts +0 -14
- package/src/lib/types/enums/infoSelfServiceLogin.d.ts +0 -16
- package/src/lib/types/enums/infoSelfServiceRecovery.d.ts +0 -6
- package/src/lib/types/enums/infoSelfServiceRegistration.d.ts +0 -7
- package/src/lib/types/enums/infoSelfServiceSettings.d.ts +0 -21
- package/src/lib/types/enums/infoSelfServiceVerification.d.ts +0 -6
- package/src/lib/types/enums/misc.d.ts +0 -10
- package/src/lib/types/responseError.d.ts +0 -2
- package/src/lib/types/useHandleFlowError.d.ts +0 -13
- package/src/lib/utils/filterNodesByGroups.d.ts +0 -22
- package/src/lib/utils/getNodeInputType.d.ts +0 -1
- package/src/lib/utils/handleCancelError.d.ts +0 -2
- package/src/lib/utils/helpers.d.ts +0 -11
- package/src/lib/utils/typeGuards.d.ts +0 -24
- package/src/lib/utils/variables.d.ts +0 -4
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ory APIs
|
|
3
|
+
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1.20.10
|
|
6
|
+
* Contact: support@ory.sh
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ProjectBrandingTheme } from './ProjectBrandingTheme';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectBranding
|
|
17
|
+
*/
|
|
18
|
+
export interface ProjectBranding {
|
|
19
|
+
/**
|
|
20
|
+
* The Customization Creation Date
|
|
21
|
+
* @type {Date}
|
|
22
|
+
* @memberof ProjectBranding
|
|
23
|
+
*/
|
|
24
|
+
readonly created_at: Date;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {ProjectBrandingTheme}
|
|
28
|
+
* @memberof ProjectBranding
|
|
29
|
+
*/
|
|
30
|
+
default_theme: ProjectBrandingTheme;
|
|
31
|
+
/**
|
|
32
|
+
* The customization ID.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ProjectBranding
|
|
35
|
+
*/
|
|
36
|
+
readonly id: string;
|
|
37
|
+
/**
|
|
38
|
+
* The Project's ID this customization is associated with
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectBranding
|
|
41
|
+
*/
|
|
42
|
+
project_id: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {Array<ProjectBrandingTheme>}
|
|
46
|
+
* @memberof ProjectBranding
|
|
47
|
+
*/
|
|
48
|
+
themes: Array<ProjectBrandingTheme>;
|
|
49
|
+
/**
|
|
50
|
+
* Last Time Branding was Updated
|
|
51
|
+
* @type {Date}
|
|
52
|
+
* @memberof ProjectBranding
|
|
53
|
+
*/
|
|
54
|
+
readonly updated_at: Date;
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Check if a given object implements the ProjectBranding interface.
|
|
58
|
+
*/
|
|
59
|
+
export declare function instanceOfProjectBranding(value: object): value is ProjectBranding;
|
|
60
|
+
export declare function ProjectBrandingFromJSON(json: any): ProjectBranding;
|
|
61
|
+
export declare function ProjectBrandingFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectBranding;
|
|
62
|
+
export declare function ProjectBrandingToJSON(json: any): ProjectBranding;
|
|
63
|
+
export declare function ProjectBrandingToJSONTyped(value?: Omit<ProjectBranding, 'created_at' | 'id' | 'updated_at'> | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ory APIs
|
|
3
|
+
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1.20.10
|
|
6
|
+
* Contact: support@ory.sh
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectBrandingColors
|
|
16
|
+
*/
|
|
17
|
+
export interface ProjectBrandingColors {
|
|
18
|
+
/**
|
|
19
|
+
* AccentDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ProjectBrandingColors
|
|
22
|
+
*/
|
|
23
|
+
accent_default_color?: string;
|
|
24
|
+
/**
|
|
25
|
+
* AccentDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ProjectBrandingColors
|
|
28
|
+
*/
|
|
29
|
+
accent_disabled_color?: string;
|
|
30
|
+
/**
|
|
31
|
+
* AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ProjectBrandingColors
|
|
34
|
+
*/
|
|
35
|
+
accent_emphasis_color?: string;
|
|
36
|
+
/**
|
|
37
|
+
* AccentMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ProjectBrandingColors
|
|
40
|
+
*/
|
|
41
|
+
accent_muted_color?: string;
|
|
42
|
+
/**
|
|
43
|
+
* AccentSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ProjectBrandingColors
|
|
46
|
+
*/
|
|
47
|
+
accent_subtle_color?: string;
|
|
48
|
+
/**
|
|
49
|
+
* BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ProjectBrandingColors
|
|
52
|
+
*/
|
|
53
|
+
background_canvas_color?: string;
|
|
54
|
+
/**
|
|
55
|
+
* BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ProjectBrandingColors
|
|
58
|
+
*/
|
|
59
|
+
background_subtle_color?: string;
|
|
60
|
+
/**
|
|
61
|
+
* BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ProjectBrandingColors
|
|
64
|
+
*/
|
|
65
|
+
background_surface_color?: string;
|
|
66
|
+
/**
|
|
67
|
+
* BorderDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ProjectBrandingColors
|
|
70
|
+
*/
|
|
71
|
+
border_default_color?: string;
|
|
72
|
+
/**
|
|
73
|
+
* ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof ProjectBrandingColors
|
|
76
|
+
*/
|
|
77
|
+
error_default_color?: string;
|
|
78
|
+
/**
|
|
79
|
+
* ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof ProjectBrandingColors
|
|
82
|
+
*/
|
|
83
|
+
error_emphasis_color?: string;
|
|
84
|
+
/**
|
|
85
|
+
* ErrorMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof ProjectBrandingColors
|
|
88
|
+
*/
|
|
89
|
+
error_muted_color?: string;
|
|
90
|
+
/**
|
|
91
|
+
* ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof ProjectBrandingColors
|
|
94
|
+
*/
|
|
95
|
+
error_subtle_color?: string;
|
|
96
|
+
/**
|
|
97
|
+
* ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof ProjectBrandingColors
|
|
100
|
+
*/
|
|
101
|
+
foreground_default_color?: string;
|
|
102
|
+
/**
|
|
103
|
+
* ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof ProjectBrandingColors
|
|
106
|
+
*/
|
|
107
|
+
foreground_disabled_color?: string;
|
|
108
|
+
/**
|
|
109
|
+
* ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof ProjectBrandingColors
|
|
112
|
+
*/
|
|
113
|
+
foreground_muted_color?: string;
|
|
114
|
+
/**
|
|
115
|
+
* ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof ProjectBrandingColors
|
|
118
|
+
*/
|
|
119
|
+
foreground_on_accent_color?: string;
|
|
120
|
+
/**
|
|
121
|
+
* ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof ProjectBrandingColors
|
|
124
|
+
*/
|
|
125
|
+
foreground_on_dark_color?: string;
|
|
126
|
+
/**
|
|
127
|
+
* ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof ProjectBrandingColors
|
|
130
|
+
*/
|
|
131
|
+
foreground_on_disabled_color?: string;
|
|
132
|
+
/**
|
|
133
|
+
* ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof ProjectBrandingColors
|
|
136
|
+
*/
|
|
137
|
+
foreground_subtle_color?: string;
|
|
138
|
+
/**
|
|
139
|
+
* InputBackgroundColor is a hex color code used by the Ory Account Experience theme.
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof ProjectBrandingColors
|
|
142
|
+
*/
|
|
143
|
+
input_background_color?: string;
|
|
144
|
+
/**
|
|
145
|
+
* InputDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
146
|
+
* @type {string}
|
|
147
|
+
* @memberof ProjectBrandingColors
|
|
148
|
+
*/
|
|
149
|
+
input_disabled_color?: string;
|
|
150
|
+
/**
|
|
151
|
+
* InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.
|
|
152
|
+
* @type {string}
|
|
153
|
+
* @memberof ProjectBrandingColors
|
|
154
|
+
*/
|
|
155
|
+
input_placeholder_color?: string;
|
|
156
|
+
/**
|
|
157
|
+
* InputTextColor is a hex color code used by the Ory Account Experience theme.
|
|
158
|
+
* @type {string}
|
|
159
|
+
* @memberof ProjectBrandingColors
|
|
160
|
+
*/
|
|
161
|
+
input_text_color?: string;
|
|
162
|
+
/**
|
|
163
|
+
* Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.
|
|
164
|
+
* @type {string}
|
|
165
|
+
* @memberof ProjectBrandingColors
|
|
166
|
+
*/
|
|
167
|
+
primary_color?: string;
|
|
168
|
+
/**
|
|
169
|
+
* Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.
|
|
170
|
+
* @type {string}
|
|
171
|
+
* @memberof ProjectBrandingColors
|
|
172
|
+
*/
|
|
173
|
+
secondary_color?: string;
|
|
174
|
+
/**
|
|
175
|
+
* SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
176
|
+
* @type {string}
|
|
177
|
+
* @memberof ProjectBrandingColors
|
|
178
|
+
*/
|
|
179
|
+
success_emphasis_color?: string;
|
|
180
|
+
/**
|
|
181
|
+
* TextDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
182
|
+
* @type {string}
|
|
183
|
+
* @memberof ProjectBrandingColors
|
|
184
|
+
*/
|
|
185
|
+
text_default_color?: string;
|
|
186
|
+
/**
|
|
187
|
+
* TextDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
188
|
+
* @type {string}
|
|
189
|
+
* @memberof ProjectBrandingColors
|
|
190
|
+
*/
|
|
191
|
+
text_disabled_color?: string;
|
|
192
|
+
}
|
|
193
|
+
/**
|
|
194
|
+
* Check if a given object implements the ProjectBrandingColors interface.
|
|
195
|
+
*/
|
|
196
|
+
export declare function instanceOfProjectBrandingColors(value: object): value is ProjectBrandingColors;
|
|
197
|
+
export declare function ProjectBrandingColorsFromJSON(json: any): ProjectBrandingColors;
|
|
198
|
+
export declare function ProjectBrandingColorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectBrandingColors;
|
|
199
|
+
export declare function ProjectBrandingColorsToJSON(json: any): ProjectBrandingColors;
|
|
200
|
+
export declare function ProjectBrandingColorsToJSONTyped(value?: ProjectBrandingColors | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ory APIs
|
|
3
|
+
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1.20.10
|
|
6
|
+
* Contact: support@ory.sh
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { AccountExperienceThemeVariables } from './AccountExperienceThemeVariables';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectBrandingTheme
|
|
17
|
+
*/
|
|
18
|
+
export interface ProjectBrandingTheme {
|
|
19
|
+
/**
|
|
20
|
+
* AccentDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof ProjectBrandingTheme
|
|
23
|
+
*/
|
|
24
|
+
accent_default_color?: string;
|
|
25
|
+
/**
|
|
26
|
+
* AccentDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ProjectBrandingTheme
|
|
29
|
+
*/
|
|
30
|
+
accent_disabled_color?: string;
|
|
31
|
+
/**
|
|
32
|
+
* AccentEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof ProjectBrandingTheme
|
|
35
|
+
*/
|
|
36
|
+
accent_emphasis_color?: string;
|
|
37
|
+
/**
|
|
38
|
+
* AccentMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof ProjectBrandingTheme
|
|
41
|
+
*/
|
|
42
|
+
accent_muted_color?: string;
|
|
43
|
+
/**
|
|
44
|
+
* AccentSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof ProjectBrandingTheme
|
|
47
|
+
*/
|
|
48
|
+
accent_subtle_color?: string;
|
|
49
|
+
/**
|
|
50
|
+
* The Account Experience Theme Variables.
|
|
51
|
+
* @type {Array<AccountExperienceThemeVariables>}
|
|
52
|
+
* @memberof ProjectBrandingTheme
|
|
53
|
+
*/
|
|
54
|
+
account_experience_variables?: Array<AccountExperienceThemeVariables>;
|
|
55
|
+
/**
|
|
56
|
+
* AccountExperienceVariableStylesheet holds a reference to the current stylesheet that can be used in the AX
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof ProjectBrandingTheme
|
|
59
|
+
*/
|
|
60
|
+
account_experience_variables_stylesheet?: string;
|
|
61
|
+
/**
|
|
62
|
+
* BackgroundCanvasColor is a hex color code used by the Ory Account Experience theme.
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof ProjectBrandingTheme
|
|
65
|
+
*/
|
|
66
|
+
background_canvas_color?: string;
|
|
67
|
+
/**
|
|
68
|
+
* BackgroundSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof ProjectBrandingTheme
|
|
71
|
+
*/
|
|
72
|
+
background_subtle_color?: string;
|
|
73
|
+
/**
|
|
74
|
+
* BackgroundSurfaceColor is a hex color code used by the Ory Account Experience theme.
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof ProjectBrandingTheme
|
|
77
|
+
*/
|
|
78
|
+
background_surface_color?: string;
|
|
79
|
+
/**
|
|
80
|
+
* BorderDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof ProjectBrandingTheme
|
|
83
|
+
*/
|
|
84
|
+
border_default_color?: string;
|
|
85
|
+
/**
|
|
86
|
+
* The Customization Creation Date.
|
|
87
|
+
* @type {Date}
|
|
88
|
+
* @memberof ProjectBrandingTheme
|
|
89
|
+
*/
|
|
90
|
+
readonly created_at: Date;
|
|
91
|
+
/**
|
|
92
|
+
* ErrorDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof ProjectBrandingTheme
|
|
95
|
+
*/
|
|
96
|
+
error_default_color?: string;
|
|
97
|
+
/**
|
|
98
|
+
* ErrorEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof ProjectBrandingTheme
|
|
101
|
+
*/
|
|
102
|
+
error_emphasis_color?: string;
|
|
103
|
+
/**
|
|
104
|
+
* ErrorMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof ProjectBrandingTheme
|
|
107
|
+
*/
|
|
108
|
+
error_muted_color?: string;
|
|
109
|
+
/**
|
|
110
|
+
* ErrorSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
111
|
+
* @type {string}
|
|
112
|
+
* @memberof ProjectBrandingTheme
|
|
113
|
+
*/
|
|
114
|
+
error_subtle_color?: string;
|
|
115
|
+
/**
|
|
116
|
+
* Favicon Type
|
|
117
|
+
* The Favicon mime type.
|
|
118
|
+
* @type {string}
|
|
119
|
+
* @memberof ProjectBrandingTheme
|
|
120
|
+
*/
|
|
121
|
+
favicon_type?: string;
|
|
122
|
+
/**
|
|
123
|
+
* Favicon URL
|
|
124
|
+
* Favicon can be an https:// or base64:// URL. If the URL is not allowed, the favicon will be stored inside the Ory Network storage bucket.
|
|
125
|
+
* @type {string}
|
|
126
|
+
* @memberof ProjectBrandingTheme
|
|
127
|
+
*/
|
|
128
|
+
favicon_url?: string;
|
|
129
|
+
/**
|
|
130
|
+
* ForegroundDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
131
|
+
* @type {string}
|
|
132
|
+
* @memberof ProjectBrandingTheme
|
|
133
|
+
*/
|
|
134
|
+
foreground_default_color?: string;
|
|
135
|
+
/**
|
|
136
|
+
* ForegroundDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof ProjectBrandingTheme
|
|
139
|
+
*/
|
|
140
|
+
foreground_disabled_color?: string;
|
|
141
|
+
/**
|
|
142
|
+
* ForegroundMutedColor is a hex color code used by the Ory Account Experience theme.
|
|
143
|
+
* @type {string}
|
|
144
|
+
* @memberof ProjectBrandingTheme
|
|
145
|
+
*/
|
|
146
|
+
foreground_muted_color?: string;
|
|
147
|
+
/**
|
|
148
|
+
* ForegroundOnAccentColor is a hex color code used by the Ory Account Experience theme.
|
|
149
|
+
* @type {string}
|
|
150
|
+
* @memberof ProjectBrandingTheme
|
|
151
|
+
*/
|
|
152
|
+
foreground_on_accent_color?: string;
|
|
153
|
+
/**
|
|
154
|
+
* ForegroundOnDarkColor is a hex color code used by the Ory Account Experience theme.
|
|
155
|
+
* @type {string}
|
|
156
|
+
* @memberof ProjectBrandingTheme
|
|
157
|
+
*/
|
|
158
|
+
foreground_on_dark_color?: string;
|
|
159
|
+
/**
|
|
160
|
+
* ForegroundOnDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
161
|
+
* @type {string}
|
|
162
|
+
* @memberof ProjectBrandingTheme
|
|
163
|
+
*/
|
|
164
|
+
foreground_on_disabled_color?: string;
|
|
165
|
+
/**
|
|
166
|
+
* ForegroundSubtleColor is a hex color code used by the Ory Account Experience theme.
|
|
167
|
+
* @type {string}
|
|
168
|
+
* @memberof ProjectBrandingTheme
|
|
169
|
+
*/
|
|
170
|
+
foreground_subtle_color?: string;
|
|
171
|
+
/**
|
|
172
|
+
* The customization theme ID.
|
|
173
|
+
* @type {string}
|
|
174
|
+
* @memberof ProjectBrandingTheme
|
|
175
|
+
*/
|
|
176
|
+
readonly id: string;
|
|
177
|
+
/**
|
|
178
|
+
* InputBackgroundColor is a hex color code used by the Ory Account Experience theme.
|
|
179
|
+
* @type {string}
|
|
180
|
+
* @memberof ProjectBrandingTheme
|
|
181
|
+
*/
|
|
182
|
+
input_background_color?: string;
|
|
183
|
+
/**
|
|
184
|
+
* InputDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
185
|
+
* @type {string}
|
|
186
|
+
* @memberof ProjectBrandingTheme
|
|
187
|
+
*/
|
|
188
|
+
input_disabled_color?: string;
|
|
189
|
+
/**
|
|
190
|
+
* InputPlaceholderColor is a hex color code used by the Ory Account Experience theme.
|
|
191
|
+
* @type {string}
|
|
192
|
+
* @memberof ProjectBrandingTheme
|
|
193
|
+
*/
|
|
194
|
+
input_placeholder_color?: string;
|
|
195
|
+
/**
|
|
196
|
+
* InputTextColor is a hex color code used by the Ory Account Experience theme.
|
|
197
|
+
* @type {string}
|
|
198
|
+
* @memberof ProjectBrandingTheme
|
|
199
|
+
*/
|
|
200
|
+
input_text_color?: string;
|
|
201
|
+
/**
|
|
202
|
+
* Logo Type
|
|
203
|
+
* The Logo mime type.
|
|
204
|
+
* @type {string}
|
|
205
|
+
* @memberof ProjectBrandingTheme
|
|
206
|
+
*/
|
|
207
|
+
logo_type?: string;
|
|
208
|
+
/**
|
|
209
|
+
* Logo URL
|
|
210
|
+
* Logo can be an https:// or base64:// URL. If the URL is not allowed, the logo will be stored inside the Ory Network storage bucket.
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof ProjectBrandingTheme
|
|
213
|
+
*/
|
|
214
|
+
logo_url?: string;
|
|
215
|
+
/**
|
|
216
|
+
* The customization theme name.
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof ProjectBrandingTheme
|
|
219
|
+
*/
|
|
220
|
+
name: string;
|
|
221
|
+
/**
|
|
222
|
+
* Primary color is an hsla color value used to derive the other colors from for the Ory Account Experience theme.
|
|
223
|
+
* @type {string}
|
|
224
|
+
* @memberof ProjectBrandingTheme
|
|
225
|
+
*/
|
|
226
|
+
primary_color?: string;
|
|
227
|
+
/**
|
|
228
|
+
* The ProjectBranding ID this customization is associated with.
|
|
229
|
+
* @type {string}
|
|
230
|
+
* @memberof ProjectBrandingTheme
|
|
231
|
+
*/
|
|
232
|
+
project_branding_id: string;
|
|
233
|
+
/**
|
|
234
|
+
* Secondary color is a hsla color code used to derive the other colors from for the Ory Account Experience theme.
|
|
235
|
+
* @type {string}
|
|
236
|
+
* @memberof ProjectBrandingTheme
|
|
237
|
+
*/
|
|
238
|
+
secondary_color?: string;
|
|
239
|
+
/**
|
|
240
|
+
* SuccessEmphasisColor is a hex color code used by the Ory Account Experience theme.
|
|
241
|
+
* @type {string}
|
|
242
|
+
* @memberof ProjectBrandingTheme
|
|
243
|
+
*/
|
|
244
|
+
success_emphasis_color?: string;
|
|
245
|
+
/**
|
|
246
|
+
* TextDefaultColor is a hex color code used by the Ory Account Experience theme.
|
|
247
|
+
* @type {string}
|
|
248
|
+
* @memberof ProjectBrandingTheme
|
|
249
|
+
*/
|
|
250
|
+
text_default_color?: string;
|
|
251
|
+
/**
|
|
252
|
+
* TextDisabledColor is a hex color code used by the Ory Account Experience theme.
|
|
253
|
+
* @type {string}
|
|
254
|
+
* @memberof ProjectBrandingTheme
|
|
255
|
+
*/
|
|
256
|
+
text_disabled_color?: string;
|
|
257
|
+
/**
|
|
258
|
+
* Last Time Branding was Updated.
|
|
259
|
+
* @type {Date}
|
|
260
|
+
* @memberof ProjectBrandingTheme
|
|
261
|
+
*/
|
|
262
|
+
readonly updated_at: Date;
|
|
263
|
+
}
|
|
264
|
+
/**
|
|
265
|
+
* Check if a given object implements the ProjectBrandingTheme interface.
|
|
266
|
+
*/
|
|
267
|
+
export declare function instanceOfProjectBrandingTheme(value: object): value is ProjectBrandingTheme;
|
|
268
|
+
export declare function ProjectBrandingThemeFromJSON(json: any): ProjectBrandingTheme;
|
|
269
|
+
export declare function ProjectBrandingThemeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectBrandingTheme;
|
|
270
|
+
export declare function ProjectBrandingThemeToJSON(json: any): ProjectBrandingTheme;
|
|
271
|
+
export declare function ProjectBrandingThemeToJSONTyped(value?: Omit<ProjectBrandingTheme, 'created_at' | 'id' | 'updated_at'> | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ory APIs
|
|
3
|
+
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1.20.10
|
|
6
|
+
* Contact: support@ory.sh
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ProjectCors
|
|
16
|
+
*/
|
|
17
|
+
export interface ProjectCors {
|
|
18
|
+
/**
|
|
19
|
+
* Whether CORS is enabled for this endpoint.
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof ProjectCors
|
|
22
|
+
*/
|
|
23
|
+
enabled?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* The allowed origins. Use `*` to allow all origins. A wildcard can also be used in the subdomain, i.e. `https://*.example.com` will allow all origins on all subdomains of `example.com`.
|
|
26
|
+
* @type {Array<string>}
|
|
27
|
+
* @memberof ProjectCors
|
|
28
|
+
*/
|
|
29
|
+
origins?: Array<string>;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the ProjectCors interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfProjectCors(value: object): value is ProjectCors;
|
|
35
|
+
export declare function ProjectCorsFromJSON(json: any): ProjectCors;
|
|
36
|
+
export declare function ProjectCorsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectCors;
|
|
37
|
+
export declare function ProjectCorsToJSON(json: any): ProjectCors;
|
|
38
|
+
export declare function ProjectCorsToJSONTyped(value?: ProjectCors | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Ory APIs
|
|
3
|
+
* # Introduction Documentation for all public and administrative Ory APIs. Administrative APIs can only be accessed with a valid Personal Access Token. Public APIs are mostly used in browsers. ## SDKs This document describes the APIs available in the Ory Network. The APIs are available as SDKs for the following languages: | Language | Download SDK | Documentation | | -------------- | ---------------------------------------------------------------- | ------------------------------------------------------------------------------------ | | Dart | [pub.dev](https://pub.dev/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/dart/README.md) | | .NET | [nuget.org](https://www.nuget.org/packages/Ory.Client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/dotnet/README.md) | | Elixir | [hex.pm](https://hex.pm/packages/ory_client) | [README](https://github.com/ory/sdk/blob/master/clients/client/elixir/README.md) | | Go | [github.com](https://github.com/ory/client-go) | [README](https://github.com/ory/sdk/blob/master/clients/client/go/README.md) | | Java | [maven.org](https://search.maven.org/artifact/sh.ory/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/java/README.md) | | JavaScript | [npmjs.com](https://www.npmjs.com/package/@ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript/README.md) | | JavaScript (With fetch) | [npmjs.com](https://www.npmjs.com/package/@ory/client-fetch) | [README](https://github.com/ory/sdk/blob/master/clients/client/typescript-fetch/README.md) | | PHP | [packagist.org](https://packagist.org/packages/ory/client) | [README](https://github.com/ory/sdk/blob/master/clients/client/php/README.md) | | Python | [pypi.org](https://pypi.org/project/ory-client/) | [README](https://github.com/ory/sdk/blob/master/clients/client/python/README.md) | | Ruby | [rubygems.org](https://rubygems.org/gems/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/ruby/README.md) | | Rust | [crates.io](https://crates.io/crates/ory-client) | [README](https://github.com/ory/sdk/blob/master/clients/client/rust/README.md) |
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1.20.10
|
|
6
|
+
* Contact: support@ory.sh
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Attribute } from './Attribute';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ProjectEventsDatapoint
|
|
17
|
+
*/
|
|
18
|
+
export interface ProjectEventsDatapoint {
|
|
19
|
+
/**
|
|
20
|
+
* Event attributes with details
|
|
21
|
+
* @type {Array<Attribute>}
|
|
22
|
+
* @memberof ProjectEventsDatapoint
|
|
23
|
+
*/
|
|
24
|
+
attributes: Array<Attribute>;
|
|
25
|
+
/**
|
|
26
|
+
* Name of the event
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ProjectEventsDatapoint
|
|
29
|
+
*/
|
|
30
|
+
name: string;
|
|
31
|
+
/**
|
|
32
|
+
* Time of occurence
|
|
33
|
+
* @type {Date}
|
|
34
|
+
* @memberof ProjectEventsDatapoint
|
|
35
|
+
*/
|
|
36
|
+
timestamp: Date;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* Check if a given object implements the ProjectEventsDatapoint interface.
|
|
40
|
+
*/
|
|
41
|
+
export declare function instanceOfProjectEventsDatapoint(value: object): value is ProjectEventsDatapoint;
|
|
42
|
+
export declare function ProjectEventsDatapointFromJSON(json: any): ProjectEventsDatapoint;
|
|
43
|
+
export declare function ProjectEventsDatapointFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectEventsDatapoint;
|
|
44
|
+
export declare function ProjectEventsDatapointToJSON(json: any): ProjectEventsDatapoint;
|
|
45
|
+
export declare function ProjectEventsDatapointToJSONTyped(value?: ProjectEventsDatapoint | null, ignoreDiscriminator?: boolean): any;
|