@leancodepl/kratos 8.6.0 → 9.1.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,292 @@
|
|
|
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 { CredentialSupportedDraft00 } from './CredentialSupportedDraft00';
|
|
13
|
+
/**
|
|
14
|
+
* Includes links to several endpoints (for example `/oauth2/token`) and exposes information on supported signature algorithms
|
|
15
|
+
* among others.
|
|
16
|
+
* @export
|
|
17
|
+
* @interface OidcConfiguration
|
|
18
|
+
*/
|
|
19
|
+
export interface OidcConfiguration {
|
|
20
|
+
/**
|
|
21
|
+
* OAuth 2.0 Authorization Endpoint URL
|
|
22
|
+
* @type {string}
|
|
23
|
+
* @memberof OidcConfiguration
|
|
24
|
+
*/
|
|
25
|
+
authorization_endpoint: string;
|
|
26
|
+
/**
|
|
27
|
+
* OpenID Connect Back-Channel Logout Session Required
|
|
28
|
+
*
|
|
29
|
+
* Boolean value specifying whether the OP can pass a sid (session ID) Claim in the Logout Token to identify the RP
|
|
30
|
+
* session with the OP. If supported, the sid Claim is also included in ID Tokens issued by the OP
|
|
31
|
+
* @type {boolean}
|
|
32
|
+
* @memberof OidcConfiguration
|
|
33
|
+
*/
|
|
34
|
+
backchannel_logout_session_supported?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
* OpenID Connect Back-Channel Logout Supported
|
|
37
|
+
*
|
|
38
|
+
* Boolean value specifying whether the OP supports back-channel logout, with true indicating support.
|
|
39
|
+
* @type {boolean}
|
|
40
|
+
* @memberof OidcConfiguration
|
|
41
|
+
*/
|
|
42
|
+
backchannel_logout_supported?: boolean;
|
|
43
|
+
/**
|
|
44
|
+
* OpenID Connect Claims Parameter Parameter Supported
|
|
45
|
+
*
|
|
46
|
+
* Boolean value specifying whether the OP supports use of the claims parameter, with true indicating support.
|
|
47
|
+
* @type {boolean}
|
|
48
|
+
* @memberof OidcConfiguration
|
|
49
|
+
*/
|
|
50
|
+
claims_parameter_supported?: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* OpenID Connect Supported Claims
|
|
53
|
+
*
|
|
54
|
+
* JSON array containing a list of the Claim Names of the Claims that the OpenID Provider MAY be able to supply
|
|
55
|
+
* values for. Note that for privacy or other reasons, this might not be an exhaustive list.
|
|
56
|
+
* @type {Array<string>}
|
|
57
|
+
* @memberof OidcConfiguration
|
|
58
|
+
*/
|
|
59
|
+
claims_supported?: Array<string>;
|
|
60
|
+
/**
|
|
61
|
+
* OAuth 2.0 PKCE Supported Code Challenge Methods
|
|
62
|
+
*
|
|
63
|
+
* JSON array containing a list of Proof Key for Code Exchange (PKCE) [RFC7636] code challenge methods supported
|
|
64
|
+
* by this authorization server.
|
|
65
|
+
* @type {Array<string>}
|
|
66
|
+
* @memberof OidcConfiguration
|
|
67
|
+
*/
|
|
68
|
+
code_challenge_methods_supported?: Array<string>;
|
|
69
|
+
/**
|
|
70
|
+
* OpenID Connect Verifiable Credentials Endpoint
|
|
71
|
+
*
|
|
72
|
+
* Contains the URL of the Verifiable Credentials Endpoint.
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof OidcConfiguration
|
|
75
|
+
*/
|
|
76
|
+
credentials_endpoint_draft_00?: string;
|
|
77
|
+
/**
|
|
78
|
+
* OpenID Connect Verifiable Credentials Supported
|
|
79
|
+
*
|
|
80
|
+
* JSON array containing a list of the Verifiable Credentials supported by this authorization server.
|
|
81
|
+
* @type {Array<CredentialSupportedDraft00>}
|
|
82
|
+
* @memberof OidcConfiguration
|
|
83
|
+
*/
|
|
84
|
+
credentials_supported_draft_00?: Array<CredentialSupportedDraft00>;
|
|
85
|
+
/**
|
|
86
|
+
* OpenID Connect End-Session Endpoint
|
|
87
|
+
*
|
|
88
|
+
* URL at the OP to which an RP can perform a redirect to request that the End-User be logged out at the OP.
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof OidcConfiguration
|
|
91
|
+
*/
|
|
92
|
+
end_session_endpoint?: string;
|
|
93
|
+
/**
|
|
94
|
+
* OpenID Connect Front-Channel Logout Session Required
|
|
95
|
+
*
|
|
96
|
+
* Boolean value specifying whether the OP can pass iss (issuer) and sid (session ID) query parameters to identify
|
|
97
|
+
* the RP session with the OP when the frontchannel_logout_uri is used. If supported, the sid Claim is also
|
|
98
|
+
* included in ID Tokens issued by the OP.
|
|
99
|
+
* @type {boolean}
|
|
100
|
+
* @memberof OidcConfiguration
|
|
101
|
+
*/
|
|
102
|
+
frontchannel_logout_session_supported?: boolean;
|
|
103
|
+
/**
|
|
104
|
+
* OpenID Connect Front-Channel Logout Supported
|
|
105
|
+
*
|
|
106
|
+
* Boolean value specifying whether the OP supports HTTP-based logout, with true indicating support.
|
|
107
|
+
* @type {boolean}
|
|
108
|
+
* @memberof OidcConfiguration
|
|
109
|
+
*/
|
|
110
|
+
frontchannel_logout_supported?: boolean;
|
|
111
|
+
/**
|
|
112
|
+
* OAuth 2.0 Supported Grant Types
|
|
113
|
+
*
|
|
114
|
+
* JSON array containing a list of the OAuth 2.0 Grant Type values that this OP supports.
|
|
115
|
+
* @type {Array<string>}
|
|
116
|
+
* @memberof OidcConfiguration
|
|
117
|
+
*/
|
|
118
|
+
grant_types_supported?: Array<string>;
|
|
119
|
+
/**
|
|
120
|
+
* OpenID Connect Default ID Token Signing Algorithms
|
|
121
|
+
*
|
|
122
|
+
* Algorithm used to sign OpenID Connect ID Tokens.
|
|
123
|
+
* @type {Array<string>}
|
|
124
|
+
* @memberof OidcConfiguration
|
|
125
|
+
*/
|
|
126
|
+
id_token_signed_response_alg: Array<string>;
|
|
127
|
+
/**
|
|
128
|
+
* OpenID Connect Supported ID Token Signing Algorithms
|
|
129
|
+
*
|
|
130
|
+
* JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for the ID Token
|
|
131
|
+
* to encode the Claims in a JWT.
|
|
132
|
+
* @type {Array<string>}
|
|
133
|
+
* @memberof OidcConfiguration
|
|
134
|
+
*/
|
|
135
|
+
id_token_signing_alg_values_supported: Array<string>;
|
|
136
|
+
/**
|
|
137
|
+
* OpenID Connect Issuer URL
|
|
138
|
+
*
|
|
139
|
+
* An URL using the https scheme with no query or fragment component that the OP asserts as its IssuerURL Identifier.
|
|
140
|
+
* If IssuerURL discovery is supported , this value MUST be identical to the issuer value returned
|
|
141
|
+
* by WebFinger. This also MUST be identical to the iss Claim value in ID Tokens issued from this IssuerURL.
|
|
142
|
+
* @type {string}
|
|
143
|
+
* @memberof OidcConfiguration
|
|
144
|
+
*/
|
|
145
|
+
issuer: string;
|
|
146
|
+
/**
|
|
147
|
+
* OpenID Connect Well-Known JSON Web Keys URL
|
|
148
|
+
*
|
|
149
|
+
* URL of the OP's JSON Web Key Set [JWK] document. This contains the signing key(s) the RP uses to validate
|
|
150
|
+
* signatures from the OP. The JWK Set MAY also contain the Server's encryption key(s), which are used by RPs
|
|
151
|
+
* to encrypt requests to the Server. When both signing and encryption keys are made available, a use (Key Use)
|
|
152
|
+
* parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage.
|
|
153
|
+
* Although some algorithms allow the same key to be used for both signatures and encryption, doing so is
|
|
154
|
+
* NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of
|
|
155
|
+
* keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate.
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof OidcConfiguration
|
|
158
|
+
*/
|
|
159
|
+
jwks_uri: string;
|
|
160
|
+
/**
|
|
161
|
+
* OpenID Connect Dynamic Client Registration Endpoint URL
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof OidcConfiguration
|
|
164
|
+
*/
|
|
165
|
+
registration_endpoint?: string;
|
|
166
|
+
/**
|
|
167
|
+
* OpenID Connect Supported Request Object Signing Algorithms
|
|
168
|
+
*
|
|
169
|
+
* JSON array containing a list of the JWS signing algorithms (alg values) supported by the OP for Request Objects,
|
|
170
|
+
* which are described in Section 6.1 of OpenID Connect Core 1.0 [OpenID.Core]. These algorithms are used both when
|
|
171
|
+
* the Request Object is passed by value (using the request parameter) and when it is passed by reference
|
|
172
|
+
* (using the request_uri parameter).
|
|
173
|
+
* @type {Array<string>}
|
|
174
|
+
* @memberof OidcConfiguration
|
|
175
|
+
*/
|
|
176
|
+
request_object_signing_alg_values_supported?: Array<string>;
|
|
177
|
+
/**
|
|
178
|
+
* OpenID Connect Request Parameter Supported
|
|
179
|
+
*
|
|
180
|
+
* Boolean value specifying whether the OP supports use of the request parameter, with true indicating support.
|
|
181
|
+
* @type {boolean}
|
|
182
|
+
* @memberof OidcConfiguration
|
|
183
|
+
*/
|
|
184
|
+
request_parameter_supported?: boolean;
|
|
185
|
+
/**
|
|
186
|
+
* OpenID Connect Request URI Parameter Supported
|
|
187
|
+
*
|
|
188
|
+
* Boolean value specifying whether the OP supports use of the request_uri parameter, with true indicating support.
|
|
189
|
+
* @type {boolean}
|
|
190
|
+
* @memberof OidcConfiguration
|
|
191
|
+
*/
|
|
192
|
+
request_uri_parameter_supported?: boolean;
|
|
193
|
+
/**
|
|
194
|
+
* OpenID Connect Requires Request URI Registration
|
|
195
|
+
*
|
|
196
|
+
* Boolean value specifying whether the OP requires any request_uri values used to be pre-registered
|
|
197
|
+
* using the request_uris registration parameter.
|
|
198
|
+
* @type {boolean}
|
|
199
|
+
* @memberof OidcConfiguration
|
|
200
|
+
*/
|
|
201
|
+
require_request_uri_registration?: boolean;
|
|
202
|
+
/**
|
|
203
|
+
* OAuth 2.0 Supported Response Modes
|
|
204
|
+
*
|
|
205
|
+
* JSON array containing a list of the OAuth 2.0 response_mode values that this OP supports.
|
|
206
|
+
* @type {Array<string>}
|
|
207
|
+
* @memberof OidcConfiguration
|
|
208
|
+
*/
|
|
209
|
+
response_modes_supported?: Array<string>;
|
|
210
|
+
/**
|
|
211
|
+
* OAuth 2.0 Supported Response Types
|
|
212
|
+
*
|
|
213
|
+
* JSON array containing a list of the OAuth 2.0 response_type values that this OP supports. Dynamic OpenID
|
|
214
|
+
* Providers MUST support the code, id_token, and the token id_token Response Type values.
|
|
215
|
+
* @type {Array<string>}
|
|
216
|
+
* @memberof OidcConfiguration
|
|
217
|
+
*/
|
|
218
|
+
response_types_supported: Array<string>;
|
|
219
|
+
/**
|
|
220
|
+
* OAuth 2.0 Token Revocation URL
|
|
221
|
+
*
|
|
222
|
+
* URL of the authorization server's OAuth 2.0 revocation endpoint.
|
|
223
|
+
* @type {string}
|
|
224
|
+
* @memberof OidcConfiguration
|
|
225
|
+
*/
|
|
226
|
+
revocation_endpoint?: string;
|
|
227
|
+
/**
|
|
228
|
+
* OAuth 2.0 Supported Scope Values
|
|
229
|
+
*
|
|
230
|
+
* JSON array containing a list of the OAuth 2.0 [RFC6749] scope values that this server supports. The server MUST
|
|
231
|
+
* support the openid scope value. Servers MAY choose not to advertise some supported scope values even when this parameter is used
|
|
232
|
+
* @type {Array<string>}
|
|
233
|
+
* @memberof OidcConfiguration
|
|
234
|
+
*/
|
|
235
|
+
scopes_supported?: Array<string>;
|
|
236
|
+
/**
|
|
237
|
+
* OpenID Connect Supported Subject Types
|
|
238
|
+
*
|
|
239
|
+
* JSON array containing a list of the Subject Identifier types that this OP supports. Valid types include
|
|
240
|
+
* pairwise and public.
|
|
241
|
+
* @type {Array<string>}
|
|
242
|
+
* @memberof OidcConfiguration
|
|
243
|
+
*/
|
|
244
|
+
subject_types_supported: Array<string>;
|
|
245
|
+
/**
|
|
246
|
+
* OAuth 2.0 Token Endpoint URL
|
|
247
|
+
* @type {string}
|
|
248
|
+
* @memberof OidcConfiguration
|
|
249
|
+
*/
|
|
250
|
+
token_endpoint: string;
|
|
251
|
+
/**
|
|
252
|
+
* OAuth 2.0 Supported Client Authentication Methods
|
|
253
|
+
*
|
|
254
|
+
* JSON array containing a list of Client Authentication methods supported by this Token Endpoint. The options are
|
|
255
|
+
* client_secret_post, client_secret_basic, client_secret_jwt, and private_key_jwt, as described in Section 9 of OpenID Connect Core 1.0
|
|
256
|
+
* @type {Array<string>}
|
|
257
|
+
* @memberof OidcConfiguration
|
|
258
|
+
*/
|
|
259
|
+
token_endpoint_auth_methods_supported?: Array<string>;
|
|
260
|
+
/**
|
|
261
|
+
* OpenID Connect Userinfo URL
|
|
262
|
+
*
|
|
263
|
+
* URL of the OP's UserInfo Endpoint.
|
|
264
|
+
* @type {string}
|
|
265
|
+
* @memberof OidcConfiguration
|
|
266
|
+
*/
|
|
267
|
+
userinfo_endpoint?: string;
|
|
268
|
+
/**
|
|
269
|
+
* OpenID Connect User Userinfo Signing Algorithm
|
|
270
|
+
*
|
|
271
|
+
* Algorithm used to sign OpenID Connect Userinfo Responses.
|
|
272
|
+
* @type {Array<string>}
|
|
273
|
+
* @memberof OidcConfiguration
|
|
274
|
+
*/
|
|
275
|
+
userinfo_signed_response_alg: Array<string>;
|
|
276
|
+
/**
|
|
277
|
+
* OpenID Connect Supported Userinfo Signing Algorithm
|
|
278
|
+
*
|
|
279
|
+
* JSON array containing a list of the JWS [JWS] signing algorithms (alg values) [JWA] supported by the UserInfo Endpoint to encode the Claims in a JWT [JWT].
|
|
280
|
+
* @type {Array<string>}
|
|
281
|
+
* @memberof OidcConfiguration
|
|
282
|
+
*/
|
|
283
|
+
userinfo_signing_alg_values_supported?: Array<string>;
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Check if a given object implements the OidcConfiguration interface.
|
|
287
|
+
*/
|
|
288
|
+
export declare function instanceOfOidcConfiguration(value: object): value is OidcConfiguration;
|
|
289
|
+
export declare function OidcConfigurationFromJSON(json: any): OidcConfiguration;
|
|
290
|
+
export declare function OidcConfigurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): OidcConfiguration;
|
|
291
|
+
export declare function OidcConfigurationToJSON(json: any): OidcConfiguration;
|
|
292
|
+
export declare function OidcConfigurationToJSONTyped(value?: OidcConfiguration | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,140 @@
|
|
|
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
|
+
* OpenID Connect Userinfo
|
|
14
|
+
* @export
|
|
15
|
+
* @interface OidcUserInfo
|
|
16
|
+
*/
|
|
17
|
+
export interface OidcUserInfo {
|
|
18
|
+
/**
|
|
19
|
+
* End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates.
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OidcUserInfo
|
|
22
|
+
*/
|
|
23
|
+
birthdate?: string;
|
|
24
|
+
/**
|
|
25
|
+
* End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The RP MUST NOT rely upon this value being unique, as discussed in Section 5.7.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OidcUserInfo
|
|
28
|
+
*/
|
|
29
|
+
email?: string;
|
|
30
|
+
/**
|
|
31
|
+
* True if the End-User's e-mail address has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating.
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof OidcUserInfo
|
|
34
|
+
*/
|
|
35
|
+
email_verified?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
* Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof OidcUserInfo
|
|
40
|
+
*/
|
|
41
|
+
family_name?: string;
|
|
42
|
+
/**
|
|
43
|
+
* End-User's gender. Values defined by this specification are female and male. Other values MAY be used when neither of the defined values are applicable.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof OidcUserInfo
|
|
46
|
+
*/
|
|
47
|
+
gender?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters.
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof OidcUserInfo
|
|
52
|
+
*/
|
|
53
|
+
given_name?: string;
|
|
54
|
+
/**
|
|
55
|
+
* End-User's locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well.
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof OidcUserInfo
|
|
58
|
+
*/
|
|
59
|
+
locale?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used.
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof OidcUserInfo
|
|
64
|
+
*/
|
|
65
|
+
middle_name?: string;
|
|
66
|
+
/**
|
|
67
|
+
* End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences.
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof OidcUserInfo
|
|
70
|
+
*/
|
|
71
|
+
name?: string;
|
|
72
|
+
/**
|
|
73
|
+
* Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael.
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof OidcUserInfo
|
|
76
|
+
*/
|
|
77
|
+
nickname?: string;
|
|
78
|
+
/**
|
|
79
|
+
* End-User's preferred telephone number. E.164 [E.164] is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678.
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof OidcUserInfo
|
|
82
|
+
*/
|
|
83
|
+
phone_number?: string;
|
|
84
|
+
/**
|
|
85
|
+
* True if the End-User's phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof OidcUserInfo
|
|
88
|
+
*/
|
|
89
|
+
phone_number_verified?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User.
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof OidcUserInfo
|
|
94
|
+
*/
|
|
95
|
+
picture?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Non-unique shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace.
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof OidcUserInfo
|
|
100
|
+
*/
|
|
101
|
+
preferred_username?: string;
|
|
102
|
+
/**
|
|
103
|
+
* URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User.
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof OidcUserInfo
|
|
106
|
+
*/
|
|
107
|
+
profile?: string;
|
|
108
|
+
/**
|
|
109
|
+
* Subject - Identifier for the End-User at the IssuerURL.
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof OidcUserInfo
|
|
112
|
+
*/
|
|
113
|
+
sub?: string;
|
|
114
|
+
/**
|
|
115
|
+
* Time the End-User's information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time.
|
|
116
|
+
* @type {number}
|
|
117
|
+
* @memberof OidcUserInfo
|
|
118
|
+
*/
|
|
119
|
+
updated_at?: number;
|
|
120
|
+
/**
|
|
121
|
+
* URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with.
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof OidcUserInfo
|
|
124
|
+
*/
|
|
125
|
+
website?: string;
|
|
126
|
+
/**
|
|
127
|
+
* String from zoneinfo [zoneinfo] time zone database representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles.
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof OidcUserInfo
|
|
130
|
+
*/
|
|
131
|
+
zoneinfo?: string;
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Check if a given object implements the OidcUserInfo interface.
|
|
135
|
+
*/
|
|
136
|
+
export declare function instanceOfOidcUserInfo(value: object): value is OidcUserInfo;
|
|
137
|
+
export declare function OidcUserInfoFromJSON(json: any): OidcUserInfo;
|
|
138
|
+
export declare function OidcUserInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): OidcUserInfo;
|
|
139
|
+
export declare function OidcUserInfoToJSON(json: any): OidcUserInfo;
|
|
140
|
+
export declare function OidcUserInfoToJSONTyped(value?: OidcUserInfo | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,62 @@
|
|
|
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
|
+
* B2B SSO Organization
|
|
14
|
+
* @export
|
|
15
|
+
* @interface Organization
|
|
16
|
+
*/
|
|
17
|
+
export interface Organization {
|
|
18
|
+
/**
|
|
19
|
+
* The organization's creation date.
|
|
20
|
+
* @type {Date}
|
|
21
|
+
* @memberof Organization
|
|
22
|
+
*/
|
|
23
|
+
readonly created_at: Date;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {Array<string>}
|
|
27
|
+
* @memberof Organization
|
|
28
|
+
*/
|
|
29
|
+
domains: Array<string>;
|
|
30
|
+
/**
|
|
31
|
+
* The organization's ID.
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof Organization
|
|
34
|
+
*/
|
|
35
|
+
id: string;
|
|
36
|
+
/**
|
|
37
|
+
* The organization's human-readable label.
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof Organization
|
|
40
|
+
*/
|
|
41
|
+
label: string;
|
|
42
|
+
/**
|
|
43
|
+
* The project's ID.
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof Organization
|
|
46
|
+
*/
|
|
47
|
+
project_id: string;
|
|
48
|
+
/**
|
|
49
|
+
* The last time the organization was updated.
|
|
50
|
+
* @type {Date}
|
|
51
|
+
* @memberof Organization
|
|
52
|
+
*/
|
|
53
|
+
readonly updated_at: Date;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Check if a given object implements the Organization interface.
|
|
57
|
+
*/
|
|
58
|
+
export declare function instanceOfOrganization(value: object): value is Organization;
|
|
59
|
+
export declare function OrganizationFromJSON(json: any): Organization;
|
|
60
|
+
export declare function OrganizationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Organization;
|
|
61
|
+
export declare function OrganizationToJSON(json: any): Organization;
|
|
62
|
+
export declare function OrganizationToJSONTyped(value?: Omit<Organization, 'created_at' | '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
|
+
* Create B2B SSO Organization Request Body
|
|
14
|
+
* @export
|
|
15
|
+
* @interface OrganizationBody
|
|
16
|
+
*/
|
|
17
|
+
export interface OrganizationBody {
|
|
18
|
+
/**
|
|
19
|
+
* Domains contains the list of organization's domains.
|
|
20
|
+
* @type {Array<string>}
|
|
21
|
+
* @memberof OrganizationBody
|
|
22
|
+
*/
|
|
23
|
+
domains?: Array<string>;
|
|
24
|
+
/**
|
|
25
|
+
* Label contains the organization's label.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof OrganizationBody
|
|
28
|
+
*/
|
|
29
|
+
label?: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the OrganizationBody interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfOrganizationBody(value: object): value is OrganizationBody;
|
|
35
|
+
export declare function OrganizationBodyFromJSON(json: any): OrganizationBody;
|
|
36
|
+
export declare function OrganizationBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrganizationBody;
|
|
37
|
+
export declare function OrganizationBodyToJSON(json: any): OrganizationBody;
|
|
38
|
+
export declare function OrganizationBodyToJSONTyped(value?: OrganizationBody | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,44 @@
|
|
|
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 Pagination
|
|
16
|
+
*/
|
|
17
|
+
export interface Pagination {
|
|
18
|
+
/**
|
|
19
|
+
* Items per page
|
|
20
|
+
*
|
|
21
|
+
* This is the number of items per page to return.
|
|
22
|
+
* For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
|
|
23
|
+
* @type {number}
|
|
24
|
+
* @memberof Pagination
|
|
25
|
+
*/
|
|
26
|
+
page_size?: number;
|
|
27
|
+
/**
|
|
28
|
+
* Next Page Token
|
|
29
|
+
*
|
|
30
|
+
* The next page token.
|
|
31
|
+
* For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof Pagination
|
|
34
|
+
*/
|
|
35
|
+
page_token?: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the Pagination interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfPagination(value: object): value is Pagination;
|
|
41
|
+
export declare function PaginationFromJSON(json: any): Pagination;
|
|
42
|
+
export declare function PaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Pagination;
|
|
43
|
+
export declare function PaginationToJSON(json: any): Pagination;
|
|
44
|
+
export declare function PaginationToJSONTyped(value?: Pagination | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,44 @@
|
|
|
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 PaginationHeaders
|
|
16
|
+
*/
|
|
17
|
+
export interface PaginationHeaders {
|
|
18
|
+
/**
|
|
19
|
+
* The link header contains pagination links.
|
|
20
|
+
*
|
|
21
|
+
* For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
|
|
22
|
+
*
|
|
23
|
+
* in: header
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof PaginationHeaders
|
|
26
|
+
*/
|
|
27
|
+
link?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The total number of clients.
|
|
30
|
+
*
|
|
31
|
+
* in: header
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof PaginationHeaders
|
|
34
|
+
*/
|
|
35
|
+
x_total_count?: string;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the PaginationHeaders interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfPaginationHeaders(value: object): value is PaginationHeaders;
|
|
41
|
+
export declare function PaginationHeadersFromJSON(json: any): PaginationHeaders;
|
|
42
|
+
export declare function PaginationHeadersFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationHeaders;
|
|
43
|
+
export declare function PaginationHeadersToJSON(json: any): PaginationHeaders;
|
|
44
|
+
export declare function PaginationHeadersToJSONTyped(value?: PaginationHeaders | null, ignoreDiscriminator?: boolean): any;
|