@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.
Files changed (554) hide show
  1. package/README.md +457 -263
  2. package/index.cjs.js +16665 -3810
  3. package/index.esm.js +16644 -3789
  4. package/package.json +6 -7
  5. package/src/index.d.ts +4 -11
  6. package/src/lib/factories/index.d.ts +1 -0
  7. package/src/lib/factories/mkKratos.d.ts +292 -0
  8. package/src/lib/flows/index.d.ts +6 -7
  9. package/src/lib/flows/login/chooseMethodForm/ChooseMethodFormWrapper.d.ts +46 -0
  10. package/src/lib/flows/login/chooseMethodForm/chooseMethodFormContext.d.ts +10 -0
  11. package/src/lib/flows/login/chooseMethodForm/fields/Identifier.d.ts +6 -0
  12. package/src/lib/flows/login/chooseMethodForm/fields/Oidc.d.ts +13 -0
  13. package/src/lib/flows/login/chooseMethodForm/fields/Passkey.d.ts +9 -0
  14. package/src/lib/flows/login/chooseMethodForm/fields/Password.d.ts +6 -0
  15. package/src/lib/flows/login/chooseMethodForm/fields/index.d.ts +4 -0
  16. package/src/lib/flows/login/chooseMethodForm/index.d.ts +1 -0
  17. package/src/lib/flows/login/chooseMethodForm/types.d.ts +4 -0
  18. package/src/lib/flows/login/chooseMethodForm/usePasswordForm.d.ts +34 -0
  19. package/src/lib/flows/login/hooks/index.d.ts +5 -0
  20. package/src/lib/flows/login/hooks/queryKeys.d.ts +1 -0
  21. package/src/lib/flows/login/hooks/useCreateLoginFlow.d.ts +5 -0
  22. package/src/lib/flows/login/hooks/useExistingIdentifierFromFlow.d.ts +1 -0
  23. package/src/lib/flows/login/hooks/useGetLoginFlow.d.ts +2 -0
  24. package/src/lib/flows/login/hooks/useLoginFlowContext.d.ts +11 -0
  25. package/src/lib/flows/login/hooks/useUpdateLoginFlow.d.ts +2 -0
  26. package/src/lib/flows/login/index.d.ts +5 -0
  27. package/src/lib/flows/login/loginFlow.d.ts +58 -0
  28. package/src/lib/flows/login/secondFactorEmailForm/SecondFactorEmailFormWrapper.d.ts +21 -0
  29. package/src/lib/flows/login/secondFactorEmailForm/fields/Code.d.ts +6 -0
  30. package/src/lib/flows/login/secondFactorEmailForm/fields/Resend.d.ts +6 -0
  31. package/src/lib/flows/login/secondFactorEmailForm/fields/index.d.ts +2 -0
  32. package/src/lib/flows/login/secondFactorEmailForm/index.d.ts +1 -0
  33. package/src/lib/flows/login/secondFactorEmailForm/secondFactorEmailFormContext.d.ts +10 -0
  34. package/src/lib/flows/login/secondFactorEmailForm/types.d.ts +3 -0
  35. package/src/lib/flows/login/secondFactorEmailForm/useCodeForm.d.ts +25 -0
  36. package/src/lib/flows/login/secondFactorForm/SecondFactorFormWrapper.d.ts +33 -0
  37. package/src/lib/flows/login/secondFactorForm/fields/Email.d.ts +6 -0
  38. package/src/lib/flows/login/secondFactorForm/fields/Totp.d.ts +6 -0
  39. package/src/lib/flows/login/secondFactorForm/fields/index.d.ts +2 -0
  40. package/src/lib/flows/login/secondFactorForm/index.d.ts +1 -0
  41. package/src/lib/flows/login/secondFactorForm/secondFactorFormContext.d.ts +10 -0
  42. package/src/lib/flows/login/secondFactorForm/types.d.ts +3 -0
  43. package/src/lib/flows/login/secondFactorForm/useTotpForm.d.ts +25 -0
  44. package/src/lib/flows/login/types.d.ts +6 -0
  45. package/src/lib/flows/logout/index.d.ts +1 -0
  46. package/src/lib/flows/logout/useLogout.d.ts +32 -0
  47. package/src/lib/flows/recovery/codeForm/CodeFormWrapper.d.ts +17 -0
  48. package/src/lib/flows/recovery/codeForm/codeFormContext.d.ts +10 -0
  49. package/src/lib/flows/recovery/codeForm/fields/Code.d.ts +6 -0
  50. package/src/lib/flows/recovery/codeForm/fields/index.d.ts +1 -0
  51. package/src/lib/flows/recovery/codeForm/index.d.ts +1 -0
  52. package/src/lib/flows/recovery/codeForm/types.d.ts +3 -0
  53. package/src/lib/flows/recovery/codeForm/useCodeForm.d.ts +24 -0
  54. package/src/lib/flows/recovery/emailForm/EmailFormWrapper.d.ts +17 -0
  55. package/src/lib/flows/recovery/emailForm/emailFormContext.d.ts +10 -0
  56. package/src/lib/flows/recovery/emailForm/fields/Email.d.ts +6 -0
  57. package/src/lib/flows/recovery/emailForm/fields/index.d.ts +1 -0
  58. package/src/lib/flows/recovery/emailForm/index.d.ts +1 -0
  59. package/src/lib/flows/recovery/emailForm/types.d.ts +3 -0
  60. package/src/lib/flows/recovery/emailForm/useEmailForm.d.ts +24 -0
  61. package/src/lib/flows/recovery/hooks/index.d.ts +4 -0
  62. package/src/lib/flows/recovery/hooks/queryKeys.d.ts +1 -0
  63. package/src/lib/flows/recovery/hooks/useCreateRecoveryFlow.d.ts +3 -0
  64. package/src/lib/flows/recovery/hooks/useGetRecoveryFlow.d.ts +2 -0
  65. package/src/lib/flows/recovery/hooks/useRecoveryFlowContext.d.ts +11 -0
  66. package/src/lib/flows/recovery/hooks/useUpdateRecoveryFlow.d.ts +2 -0
  67. package/src/lib/flows/recovery/index.d.ts +4 -0
  68. package/src/lib/flows/recovery/recoveryFlow.d.ts +49 -0
  69. package/src/lib/flows/recovery/types.d.ts +5 -0
  70. package/src/lib/flows/registration/chooseMethodForm/ChooseMethodFormWrapper.d.ts +27 -0
  71. package/src/lib/flows/registration/chooseMethodForm/chooseMethodFormContext.d.ts +10 -0
  72. package/src/lib/flows/registration/chooseMethodForm/fields/Passkey.d.ts +10 -0
  73. package/src/lib/flows/registration/chooseMethodForm/fields/Password.d.ts +6 -0
  74. package/src/lib/flows/registration/chooseMethodForm/fields/PasswordConfirmation.d.ts +9 -0
  75. package/src/lib/flows/registration/chooseMethodForm/fields/ReturnToTraitsForm.d.ts +6 -0
  76. package/src/lib/flows/registration/chooseMethodForm/fields/index.d.ts +4 -0
  77. package/src/lib/flows/registration/chooseMethodForm/index.d.ts +1 -0
  78. package/src/lib/flows/registration/chooseMethodForm/types.d.ts +4 -0
  79. package/src/lib/flows/registration/chooseMethodForm/useChooseMethodForm.d.ts +35 -0
  80. package/src/lib/flows/registration/hooks/index.d.ts +4 -0
  81. package/src/lib/flows/registration/hooks/queryKeys.d.ts +1 -0
  82. package/src/lib/flows/registration/hooks/useCreateRegistrationFlow.d.ts +3 -0
  83. package/src/lib/flows/registration/hooks/useGetRegistrationFlow.d.ts +2 -0
  84. package/src/lib/flows/registration/hooks/useRegistrationFlowContext.d.ts +15 -0
  85. package/src/lib/flows/registration/hooks/useUpdateRegistrationFlow.d.ts +2 -0
  86. package/src/lib/flows/registration/index.d.ts +4 -0
  87. package/src/lib/flows/registration/registrationFlow.d.ts +61 -0
  88. package/src/lib/flows/registration/traitsForm/TraitsFormWrapper.d.ts +33 -0
  89. package/src/lib/flows/registration/traitsForm/fields/Oidc.d.ts +13 -0
  90. package/src/lib/flows/registration/traitsForm/fields/Trait.d.ts +8 -0
  91. package/src/lib/flows/registration/traitsForm/fields/index.d.ts +2 -0
  92. package/src/lib/flows/registration/traitsForm/index.d.ts +1 -0
  93. package/src/lib/flows/registration/traitsForm/traitsFormContext.d.ts +10 -0
  94. package/src/lib/flows/registration/traitsForm/useTraitsForm.d.ts +27 -0
  95. package/src/lib/flows/registration/types.d.ts +4 -0
  96. package/src/lib/flows/settings/hooks/index.d.ts +4 -0
  97. package/src/lib/flows/settings/hooks/queryKeys.d.ts +1 -0
  98. package/src/lib/flows/settings/hooks/useCreateSettingsFlow.d.ts +1 -0
  99. package/src/lib/flows/settings/hooks/useGetSettingsFlow.d.ts +2 -0
  100. package/src/lib/flows/settings/hooks/useSettingsFlowContext.d.ts +13 -0
  101. package/src/lib/flows/settings/hooks/useUpdateSettingsFlow.d.ts +2 -0
  102. package/src/lib/flows/settings/index.d.ts +8 -0
  103. package/src/lib/flows/settings/newPasswordForm/NewPasswordFormWrapper.d.ts +24 -0
  104. package/src/lib/flows/settings/newPasswordForm/fields/Password.d.ts +6 -0
  105. package/src/lib/flows/settings/newPasswordForm/fields/PasswordConfirmation.d.ts +9 -0
  106. package/src/lib/flows/settings/newPasswordForm/fields/index.d.ts +2 -0
  107. package/src/lib/flows/settings/newPasswordForm/index.d.ts +1 -0
  108. package/src/lib/flows/settings/newPasswordForm/newPasswordFormContext.d.ts +10 -0
  109. package/src/lib/flows/settings/newPasswordForm/types.d.ts +4 -0
  110. package/src/lib/flows/settings/newPasswordForm/useNewPasswordForm.d.ts +35 -0
  111. package/src/lib/flows/settings/oidcForm/OidcFormWrapper.d.ts +15 -0
  112. package/src/lib/flows/settings/oidcForm/fields/Oidc.d.ts +12 -0
  113. package/src/lib/flows/settings/oidcForm/fields/index.d.ts +1 -0
  114. package/src/lib/flows/settings/oidcForm/index.d.ts +2 -0
  115. package/src/lib/flows/settings/oidcForm/providers.d.ts +3 -0
  116. package/src/lib/flows/settings/passkeysForm/PasskeysFormWrapper.d.ts +18 -0
  117. package/src/lib/flows/settings/passkeysForm/fields/AddPasskey.d.ts +6 -0
  118. package/src/lib/flows/settings/passkeysForm/fields/index.d.ts +1 -0
  119. package/src/lib/flows/settings/passkeysForm/hooks/index.d.ts +1 -0
  120. package/src/lib/flows/settings/passkeysForm/hooks/usePasskeys.d.ts +5 -0
  121. package/src/lib/flows/settings/passkeysForm/index.d.ts +1 -0
  122. package/src/lib/flows/settings/settingsFlow.d.ts +72 -0
  123. package/src/lib/flows/settings/totpForm/TotpFormFormWrapper.d.ts +38 -0
  124. package/src/lib/flows/settings/totpForm/fields/Code.d.ts +6 -0
  125. package/src/lib/flows/settings/totpForm/fields/Unlink.d.ts +6 -0
  126. package/src/lib/flows/settings/totpForm/fields/index.d.ts +2 -0
  127. package/src/lib/flows/settings/totpForm/index.d.ts +1 -0
  128. package/src/lib/flows/settings/totpForm/totpFormContext.d.ts +10 -0
  129. package/src/lib/flows/settings/totpForm/types.d.ts +3 -0
  130. package/src/lib/flows/settings/totpForm/useTotpForm.d.ts +26 -0
  131. package/src/lib/flows/settings/traitsForm/TraitsFormWrapper.d.ts +27 -0
  132. package/src/lib/flows/settings/traitsForm/fields/Trait.d.ts +8 -0
  133. package/src/lib/flows/settings/traitsForm/fields/index.d.ts +1 -0
  134. package/src/lib/flows/settings/traitsForm/index.d.ts +1 -0
  135. package/src/lib/flows/settings/traitsForm/traitsFormContext.d.ts +10 -0
  136. package/src/lib/flows/settings/traitsForm/types.d.ts +3 -0
  137. package/src/lib/flows/settings/traitsForm/useTraitsForm.d.ts +27 -0
  138. package/src/lib/flows/settings/types.d.ts +4 -0
  139. package/src/lib/flows/verification/emailVerificationForm/EmailVerificationFormWrapper.d.ts +21 -0
  140. package/src/lib/flows/verification/emailVerificationForm/emailVerificationFormContext.d.ts +10 -0
  141. package/src/lib/flows/verification/emailVerificationForm/fields/Code.d.ts +6 -0
  142. package/src/lib/flows/verification/emailVerificationForm/fields/Resend.d.ts +6 -0
  143. package/src/lib/flows/verification/emailVerificationForm/fields/index.d.ts +2 -0
  144. package/src/lib/flows/verification/emailVerificationForm/index.d.ts +1 -0
  145. package/src/lib/flows/verification/emailVerificationForm/types.d.ts +3 -0
  146. package/src/lib/flows/verification/emailVerificationForm/useEmailVerificationForm.d.ts +25 -0
  147. package/src/lib/flows/verification/hooks/index.d.ts +4 -0
  148. package/src/lib/flows/verification/hooks/queryKeys.d.ts +1 -0
  149. package/src/lib/flows/verification/hooks/useCreateVerificationFlow.d.ts +3 -0
  150. package/src/lib/flows/verification/hooks/useGetVerificationFlow.d.ts +2 -0
  151. package/src/lib/flows/verification/hooks/useUpdateVerificationFlow.d.ts +2 -0
  152. package/src/lib/flows/verification/hooks/useVerificationFlowContext.d.ts +13 -0
  153. package/src/lib/flows/verification/index.d.ts +4 -0
  154. package/src/lib/flows/verification/types.d.ts +3 -0
  155. package/src/lib/flows/verification/verificationFlow.d.ts +41 -0
  156. package/src/lib/hooks/index.d.ts +4 -0
  157. package/src/lib/hooks/useFlowManager.d.ts +10 -0
  158. package/src/lib/hooks/useFormErrors.d.ts +2 -0
  159. package/src/lib/hooks/useKratosClientContext.d.ts +12 -0
  160. package/src/lib/hooks/useKratosSessionContext.d.ts +13 -0
  161. package/src/lib/kratos/api.generated/apis/CourierApi.d.ts +86 -0
  162. package/src/lib/kratos/api.generated/apis/EventsApi.d.ts +133 -0
  163. package/src/lib/kratos/api.generated/apis/FrontendApi.d.ts +979 -0
  164. package/src/lib/kratos/api.generated/apis/IdentityApi.d.ts +630 -0
  165. package/src/lib/kratos/api.generated/apis/JwkApi.d.ts +227 -0
  166. package/src/lib/kratos/api.generated/apis/MetadataApi.d.ts +49 -0
  167. package/src/lib/kratos/api.generated/apis/OAuth2Api.d.ts +830 -0
  168. package/src/lib/kratos/api.generated/apis/OidcApi.d.ts +232 -0
  169. package/src/lib/kratos/api.generated/apis/PermissionApi.d.ts +228 -0
  170. package/src/lib/kratos/api.generated/apis/ProjectApi.d.ts +511 -0
  171. package/src/lib/kratos/api.generated/apis/RelationshipApi.d.ts +212 -0
  172. package/src/lib/kratos/api.generated/apis/WellknownApi.d.ts +49 -0
  173. package/src/lib/kratos/api.generated/apis/WorkspaceApi.d.ts +244 -0
  174. package/src/lib/kratos/api.generated/apis/index.d.ts +13 -0
  175. package/src/lib/kratos/api.generated/index.d.ts +3 -0
  176. package/src/lib/kratos/api.generated/models/AcceptOAuth2ConsentRequest.d.ts +71 -0
  177. package/src/lib/kratos/api.generated/models/AcceptOAuth2ConsentRequestSession.d.ts +42 -0
  178. package/src/lib/kratos/api.generated/models/AcceptOAuth2LoginRequest.d.ts +105 -0
  179. package/src/lib/kratos/api.generated/models/AccountExperienceColors.d.ts +884 -0
  180. package/src/lib/kratos/api.generated/models/AccountExperienceConfiguration.d.ts +145 -0
  181. package/src/lib/kratos/api.generated/models/AccountExperienceThemeVariables.d.ts +572 -0
  182. package/src/lib/kratos/api.generated/models/ActiveProjectInConsole.d.ts +34 -0
  183. package/src/lib/kratos/api.generated/models/AddProjectToWorkspaceBody.d.ts +66 -0
  184. package/src/lib/kratos/api.generated/models/Attribute.d.ts +38 -0
  185. package/src/lib/kratos/api.generated/models/AttributeFilter.d.ts +59 -0
  186. package/src/lib/kratos/api.generated/models/AttributesCountDatapoint.d.ts +38 -0
  187. package/src/lib/kratos/api.generated/models/AuthenticatorAssuranceLevel.d.ts +34 -0
  188. package/src/lib/kratos/api.generated/models/BatchCheckPermissionBody.d.ts +33 -0
  189. package/src/lib/kratos/api.generated/models/BatchCheckPermissionResult.d.ts +33 -0
  190. package/src/lib/kratos/api.generated/models/BatchPatchIdentitiesResponse.d.ts +33 -0
  191. package/src/lib/kratos/api.generated/models/BillingPeriodBucket.d.ts +46 -0
  192. package/src/lib/kratos/api.generated/models/CheckOplSyntaxResult.d.ts +33 -0
  193. package/src/lib/kratos/api.generated/models/CheckPermissionResult.d.ts +32 -0
  194. package/src/lib/kratos/api.generated/models/CheckPermissionResultWithError.d.ts +38 -0
  195. package/src/lib/kratos/api.generated/models/CloudAccount.d.ts +50 -0
  196. package/src/lib/kratos/api.generated/models/ConsistencyRequestParameters.d.ts +60 -0
  197. package/src/lib/kratos/api.generated/models/ContinueWith.d.ts +36 -0
  198. package/src/lib/kratos/api.generated/models/ContinueWithRecoveryUi.d.ts +48 -0
  199. package/src/lib/kratos/api.generated/models/ContinueWithRecoveryUiFlow.d.ts +40 -0
  200. package/src/lib/kratos/api.generated/models/ContinueWithRedirectBrowserTo.d.ts +47 -0
  201. package/src/lib/kratos/api.generated/models/ContinueWithSetOrySessionToken.d.ts +47 -0
  202. package/src/lib/kratos/api.generated/models/ContinueWithSettingsUi.d.ts +48 -0
  203. package/src/lib/kratos/api.generated/models/ContinueWithSettingsUiFlow.d.ts +40 -0
  204. package/src/lib/kratos/api.generated/models/ContinueWithVerificationUi.d.ts +48 -0
  205. package/src/lib/kratos/api.generated/models/ContinueWithVerificationUiFlow.d.ts +46 -0
  206. package/src/lib/kratos/api.generated/models/CourierMessageStatus.d.ts +28 -0
  207. package/src/lib/kratos/api.generated/models/CourierMessageType.d.ts +26 -0
  208. package/src/lib/kratos/api.generated/models/CreateCustomDomainBody.d.ts +56 -0
  209. package/src/lib/kratos/api.generated/models/CreateEventStreamBody.d.ts +52 -0
  210. package/src/lib/kratos/api.generated/models/CreateFedcmFlowResponse.d.ts +39 -0
  211. package/src/lib/kratos/api.generated/models/CreateIdentityBody.d.ts +105 -0
  212. package/src/lib/kratos/api.generated/models/CreateInviteResponse.d.ts +39 -0
  213. package/src/lib/kratos/api.generated/models/CreateJsonWebKeySet.d.ts +53 -0
  214. package/src/lib/kratos/api.generated/models/CreateProjectApiKeyRequest.d.ts +42 -0
  215. package/src/lib/kratos/api.generated/models/CreateProjectBody.d.ts +84 -0
  216. package/src/lib/kratos/api.generated/models/CreateProjectBranding.d.ts +63 -0
  217. package/src/lib/kratos/api.generated/models/CreateProjectMemberInviteBody.d.ts +32 -0
  218. package/src/lib/kratos/api.generated/models/CreateProjectNormalizedPayload.d.ts +1903 -0
  219. package/src/lib/kratos/api.generated/models/CreateRecoveryCodeForIdentityBody.d.ts +49 -0
  220. package/src/lib/kratos/api.generated/models/CreateRecoveryLinkForIdentityBody.d.ts +43 -0
  221. package/src/lib/kratos/api.generated/models/CreateRelationshipBody.d.ts +59 -0
  222. package/src/lib/kratos/api.generated/models/CreateSubscriptionBody.d.ts +78 -0
  223. package/src/lib/kratos/api.generated/models/CreateSubscriptionCommon.d.ts +72 -0
  224. package/src/lib/kratos/api.generated/models/CreateVerifiableCredentialRequestBody.d.ts +45 -0
  225. package/src/lib/kratos/api.generated/models/CreateWorkspaceApiKeyBody.d.ts +40 -0
  226. package/src/lib/kratos/api.generated/models/CreateWorkspaceBody.d.ts +32 -0
  227. package/src/lib/kratos/api.generated/models/CreateWorkspaceMemberInviteBody.d.ts +49 -0
  228. package/src/lib/kratos/api.generated/models/CreateWorkspaceSubscriptionBody.d.ts +72 -0
  229. package/src/lib/kratos/api.generated/models/CredentialSupportedDraft00.d.ts +58 -0
  230. package/src/lib/kratos/api.generated/models/CustomDomain.d.ts +121 -0
  231. package/src/lib/kratos/api.generated/models/DeleteMySessionsCount.d.ts +32 -0
  232. package/src/lib/kratos/api.generated/models/EmailTemplateData.d.ts +39 -0
  233. package/src/lib/kratos/api.generated/models/EmailTemplateDataBody.d.ts +38 -0
  234. package/src/lib/kratos/api.generated/models/ErrorAuthenticatorAssuranceLevelNotSatisfied.d.ts +39 -0
  235. package/src/lib/kratos/api.generated/models/ErrorBrowserLocationChangeRequired.d.ts +39 -0
  236. package/src/lib/kratos/api.generated/models/ErrorFlowReplaced.d.ts +39 -0
  237. package/src/lib/kratos/api.generated/models/ErrorGeneric.d.ts +33 -0
  238. package/src/lib/kratos/api.generated/models/ErrorOAuth2.d.ts +60 -0
  239. package/src/lib/kratos/api.generated/models/EventStream.d.ts +62 -0
  240. package/src/lib/kratos/api.generated/models/ExpandedPermissionTree.d.ts +68 -0
  241. package/src/lib/kratos/api.generated/models/FlowError.d.ts +50 -0
  242. package/src/lib/kratos/api.generated/models/GenericError.d.ts +91 -0
  243. package/src/lib/kratos/api.generated/models/GenericErrorContent.d.ts +73 -0
  244. package/src/lib/kratos/api.generated/models/GenericUsage.d.ts +39 -0
  245. package/src/lib/kratos/api.generated/models/GetAttributesCountResponse.d.ts +33 -0
  246. package/src/lib/kratos/api.generated/models/GetManagedIdentitySchemaLocation.d.ts +32 -0
  247. package/src/lib/kratos/api.generated/models/GetMetricsEventAttributesResponse.d.ts +32 -0
  248. package/src/lib/kratos/api.generated/models/GetMetricsEventTypesResponse.d.ts +32 -0
  249. package/src/lib/kratos/api.generated/models/GetOrganizationResponse.d.ts +33 -0
  250. package/src/lib/kratos/api.generated/models/GetProjectEventsBody.d.ts +63 -0
  251. package/src/lib/kratos/api.generated/models/GetProjectEventsResponse.d.ts +39 -0
  252. package/src/lib/kratos/api.generated/models/GetProjectMetricsResponse.d.ts +33 -0
  253. package/src/lib/kratos/api.generated/models/GetSessionActivityResponse.d.ts +33 -0
  254. package/src/lib/kratos/api.generated/models/GetVersion200Response.d.ts +32 -0
  255. package/src/lib/kratos/api.generated/models/HealthNotReadyStatus.d.ts +34 -0
  256. package/src/lib/kratos/api.generated/models/HealthStatus.d.ts +32 -0
  257. package/src/lib/kratos/api.generated/models/Identity.d.ts +135 -0
  258. package/src/lib/kratos/api.generated/models/IdentityCredentials.d.ts +91 -0
  259. package/src/lib/kratos/api.generated/models/IdentityCredentialsCode.d.ts +33 -0
  260. package/src/lib/kratos/api.generated/models/IdentityCredentialsCodeAddress.d.ts +38 -0
  261. package/src/lib/kratos/api.generated/models/IdentityCredentialsOidc.d.ts +33 -0
  262. package/src/lib/kratos/api.generated/models/IdentityCredentialsOidcProvider.d.ts +68 -0
  263. package/src/lib/kratos/api.generated/models/IdentityCredentialsPassword.d.ts +40 -0
  264. package/src/lib/kratos/api.generated/models/IdentityPatch.d.ts +43 -0
  265. package/src/lib/kratos/api.generated/models/IdentityPatchResponse.d.ts +61 -0
  266. package/src/lib/kratos/api.generated/models/IdentitySchemaContainer.d.ts +38 -0
  267. package/src/lib/kratos/api.generated/models/IdentitySchemaPreset.d.ts +38 -0
  268. package/src/lib/kratos/api.generated/models/IdentityWithCredentials.d.ts +47 -0
  269. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidc.d.ts +33 -0
  270. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidcConfig.d.ts +33 -0
  271. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsOidcConfigProvider.d.ts +50 -0
  272. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsPassword.d.ts +33 -0
  273. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsPasswordConfig.d.ts +44 -0
  274. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSaml.d.ts +33 -0
  275. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSamlConfig.d.ts +33 -0
  276. package/src/lib/kratos/api.generated/models/IdentityWithCredentialsSamlConfigProvider.d.ts +44 -0
  277. package/src/lib/kratos/api.generated/models/InternalGetProjectBrandingBody.d.ts +32 -0
  278. package/src/lib/kratos/api.generated/models/InternalIsAXWelcomeScreenEnabledForProjectBody.d.ts +38 -0
  279. package/src/lib/kratos/api.generated/models/InternalIsOwnerForProjectBySlugBody.d.ts +60 -0
  280. package/src/lib/kratos/api.generated/models/InternalIsOwnerForProjectBySlugResponse.d.ts +32 -0
  281. package/src/lib/kratos/api.generated/models/IntrospectedOAuth2Token.d.ts +132 -0
  282. package/src/lib/kratos/api.generated/models/InviteTokenBody.d.ts +36 -0
  283. package/src/lib/kratos/api.generated/models/Invoice.d.ts +68 -0
  284. package/src/lib/kratos/api.generated/models/InvoiceDataV1.d.ts +101 -0
  285. package/src/lib/kratos/api.generated/models/IsOwnerForProjectBySlug.d.ts +38 -0
  286. package/src/lib/kratos/api.generated/models/JsonPatch.d.ts +69 -0
  287. package/src/lib/kratos/api.generated/models/JsonWebKey.d.ts +153 -0
  288. package/src/lib/kratos/api.generated/models/JsonWebKeySet.d.ts +39 -0
  289. package/src/lib/kratos/api.generated/models/KetoNamespace.d.ts +38 -0
  290. package/src/lib/kratos/api.generated/models/LineItemV1.d.ts +62 -0
  291. package/src/lib/kratos/api.generated/models/ListEventStreams.d.ts +33 -0
  292. package/src/lib/kratos/api.generated/models/ListInvoicesResponse.d.ts +45 -0
  293. package/src/lib/kratos/api.generated/models/ListOrganizationsResponse.d.ts +45 -0
  294. package/src/lib/kratos/api.generated/models/ListWorkspaceProjects.d.ts +45 -0
  295. package/src/lib/kratos/api.generated/models/ListWorkspaces.d.ts +45 -0
  296. package/src/lib/kratos/api.generated/models/LoginFlow.d.ts +183 -0
  297. package/src/lib/kratos/api.generated/models/LoginFlowState.d.ts +27 -0
  298. package/src/lib/kratos/api.generated/models/LogoutFlow.d.ts +40 -0
  299. package/src/lib/kratos/api.generated/models/ManagedIdentitySchema.d.ts +76 -0
  300. package/src/lib/kratos/api.generated/models/ManagedIdentitySchemaValidationResult.d.ts +38 -0
  301. package/src/lib/kratos/api.generated/models/MemberInvite.d.ts +114 -0
  302. package/src/lib/kratos/api.generated/models/Message.d.ts +131 -0
  303. package/src/lib/kratos/api.generated/models/MessageDispatch.d.ts +75 -0
  304. package/src/lib/kratos/api.generated/models/MetricsDatapoint.d.ts +38 -0
  305. package/src/lib/kratos/api.generated/models/Money.d.ts +44 -0
  306. package/src/lib/kratos/api.generated/models/Namespace.d.ts +32 -0
  307. package/src/lib/kratos/api.generated/models/NeedsPrivilegedSessionError.d.ts +39 -0
  308. package/src/lib/kratos/api.generated/models/NormalizedProject.d.ts +151 -0
  309. package/src/lib/kratos/api.generated/models/NormalizedProjectRevision.d.ts +1853 -0
  310. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionCourierChannel.d.ts +127 -0
  311. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionHook.d.ts +134 -0
  312. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionIdentitySchema.d.ts +96 -0
  313. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionSAMLProvider.d.ts +100 -0
  314. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionScimClient.d.ts +89 -0
  315. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionThirdPartyProvider.d.ts +243 -0
  316. package/src/lib/kratos/api.generated/models/NormalizedProjectRevisionTokenizerTemplate.d.ts +74 -0
  317. package/src/lib/kratos/api.generated/models/OAuth2Client.d.ts +415 -0
  318. package/src/lib/kratos/api.generated/models/OAuth2ClientTokenLifespans.d.ts +86 -0
  319. package/src/lib/kratos/api.generated/models/OAuth2ConsentRequest.d.ts +122 -0
  320. package/src/lib/kratos/api.generated/models/OAuth2ConsentRequestOpenIDConnectContext.d.ts +81 -0
  321. package/src/lib/kratos/api.generated/models/OAuth2ConsentSession.d.ts +95 -0
  322. package/src/lib/kratos/api.generated/models/OAuth2ConsentSessionExpiresAt.d.ts +56 -0
  323. package/src/lib/kratos/api.generated/models/OAuth2LoginRequest.d.ts +92 -0
  324. package/src/lib/kratos/api.generated/models/OAuth2LogoutRequest.d.ts +75 -0
  325. package/src/lib/kratos/api.generated/models/OAuth2RedirectTo.d.ts +32 -0
  326. package/src/lib/kratos/api.generated/models/OAuth2TokenExchange.d.ts +65 -0
  327. package/src/lib/kratos/api.generated/models/OidcConfiguration.d.ts +292 -0
  328. package/src/lib/kratos/api.generated/models/OidcUserInfo.d.ts +140 -0
  329. package/src/lib/kratos/api.generated/models/Organization.d.ts +62 -0
  330. package/src/lib/kratos/api.generated/models/OrganizationBody.d.ts +38 -0
  331. package/src/lib/kratos/api.generated/models/Pagination.d.ts +44 -0
  332. package/src/lib/kratos/api.generated/models/PaginationHeaders.d.ts +44 -0
  333. package/src/lib/kratos/api.generated/models/ParseError.d.ts +45 -0
  334. package/src/lib/kratos/api.generated/models/PatchIdentitiesBody.d.ts +35 -0
  335. package/src/lib/kratos/api.generated/models/PerformNativeLogoutBody.d.ts +34 -0
  336. package/src/lib/kratos/api.generated/models/PermissionsOnWorkspace.d.ts +34 -0
  337. package/src/lib/kratos/api.generated/models/Plan.d.ts +38 -0
  338. package/src/lib/kratos/api.generated/models/PlanDetails.d.ts +77 -0
  339. package/src/lib/kratos/api.generated/models/PostCheckPermissionBody.d.ts +59 -0
  340. package/src/lib/kratos/api.generated/models/PostCheckPermissionOrErrorBody.d.ts +59 -0
  341. package/src/lib/kratos/api.generated/models/Project.d.ts +141 -0
  342. package/src/lib/kratos/api.generated/models/ProjectApiKey.d.ts +76 -0
  343. package/src/lib/kratos/api.generated/models/ProjectBranding.d.ts +63 -0
  344. package/src/lib/kratos/api.generated/models/ProjectBrandingColors.d.ts +200 -0
  345. package/src/lib/kratos/api.generated/models/ProjectBrandingTheme.d.ts +271 -0
  346. package/src/lib/kratos/api.generated/models/ProjectCors.d.ts +38 -0
  347. package/src/lib/kratos/api.generated/models/ProjectEventsDatapoint.d.ts +45 -0
  348. package/src/lib/kratos/api.generated/models/ProjectHost.d.ts +44 -0
  349. package/src/lib/kratos/api.generated/models/ProjectMember.d.ts +56 -0
  350. package/src/lib/kratos/api.generated/models/ProjectMetadata.d.ts +150 -0
  351. package/src/lib/kratos/api.generated/models/ProjectServiceIdentity.d.ts +32 -0
  352. package/src/lib/kratos/api.generated/models/ProjectServiceOAuth2.d.ts +32 -0
  353. package/src/lib/kratos/api.generated/models/ProjectServicePermission.d.ts +32 -0
  354. package/src/lib/kratos/api.generated/models/ProjectServices.d.ts +47 -0
  355. package/src/lib/kratos/api.generated/models/Provider.d.ts +84 -0
  356. package/src/lib/kratos/api.generated/models/QuotaUsage.d.ts +149 -0
  357. package/src/lib/kratos/api.generated/models/RFC6749ErrorJson.d.ts +56 -0
  358. package/src/lib/kratos/api.generated/models/RecoveryCodeForIdentity.d.ts +48 -0
  359. package/src/lib/kratos/api.generated/models/RecoveryFlow.d.ts +104 -0
  360. package/src/lib/kratos/api.generated/models/RecoveryFlowState.d.ts +27 -0
  361. package/src/lib/kratos/api.generated/models/RecoveryIdentityAddress.d.ts +56 -0
  362. package/src/lib/kratos/api.generated/models/RecoveryLinkForIdentity.d.ts +42 -0
  363. package/src/lib/kratos/api.generated/models/RegistrationFlow.d.ts +154 -0
  364. package/src/lib/kratos/api.generated/models/RegistrationFlowState.d.ts +27 -0
  365. package/src/lib/kratos/api.generated/models/RejectOAuth2Request.d.ts +61 -0
  366. package/src/lib/kratos/api.generated/models/RelationQuery.d.ts +59 -0
  367. package/src/lib/kratos/api.generated/models/Relationship.d.ts +59 -0
  368. package/src/lib/kratos/api.generated/models/RelationshipNamespaces.d.ts +33 -0
  369. package/src/lib/kratos/api.generated/models/RelationshipPatch.d.ts +48 -0
  370. package/src/lib/kratos/api.generated/models/Relationships.d.ts +41 -0
  371. package/src/lib/kratos/api.generated/models/SchemaPatch.d.ts +38 -0
  372. package/src/lib/kratos/api.generated/models/SelfServiceFlowExpiredError.d.ts +53 -0
  373. package/src/lib/kratos/api.generated/models/Session.d.ts +99 -0
  374. package/src/lib/kratos/api.generated/models/SessionActivityDatapoint.d.ts +44 -0
  375. package/src/lib/kratos/api.generated/models/SessionAuthenticationMethod.d.ts +73 -0
  376. package/src/lib/kratos/api.generated/models/SessionDevice.d.ts +50 -0
  377. package/src/lib/kratos/api.generated/models/SetActiveProjectInConsoleBody.d.ts +36 -0
  378. package/src/lib/kratos/api.generated/models/SetCustomDomainBody.d.ts +56 -0
  379. package/src/lib/kratos/api.generated/models/SetEventStreamBody.d.ts +52 -0
  380. package/src/lib/kratos/api.generated/models/SetProject.d.ts +52 -0
  381. package/src/lib/kratos/api.generated/models/SetProjectBrandingThemeBody.d.ts +63 -0
  382. package/src/lib/kratos/api.generated/models/SettingsFlow.d.ts +116 -0
  383. package/src/lib/kratos/api.generated/models/SettingsFlowState.d.ts +26 -0
  384. package/src/lib/kratos/api.generated/models/SourcePosition.d.ts +38 -0
  385. package/src/lib/kratos/api.generated/models/SubjectSet.d.ts +44 -0
  386. package/src/lib/kratos/api.generated/models/Subscription.d.ts +147 -0
  387. package/src/lib/kratos/api.generated/models/SuccessfulCodeExchangeResponse.d.ts +46 -0
  388. package/src/lib/kratos/api.generated/models/SuccessfulNativeLogin.d.ts +56 -0
  389. package/src/lib/kratos/api.generated/models/SuccessfulNativeRegistration.d.ts +65 -0
  390. package/src/lib/kratos/api.generated/models/SuccessfulProjectUpdate.d.ts +48 -0
  391. package/src/lib/kratos/api.generated/models/TaxLineItem.d.ts +38 -0
  392. package/src/lib/kratos/api.generated/models/TimeInterval.d.ts +38 -0
  393. package/src/lib/kratos/api.generated/models/TokenPagination.d.ts +44 -0
  394. package/src/lib/kratos/api.generated/models/TokenPaginationHeaders.d.ts +44 -0
  395. package/src/lib/kratos/api.generated/models/TokenPaginationRequestParameters.d.ts +47 -0
  396. package/src/lib/kratos/api.generated/models/TokenPaginationResponseHeaders.d.ts +54 -0
  397. package/src/lib/kratos/api.generated/models/TrustOAuth2JwtGrantIssuer.d.ts +63 -0
  398. package/src/lib/kratos/api.generated/models/TrustedOAuth2JwtGrantIssuer.d.ts +75 -0
  399. package/src/lib/kratos/api.generated/models/TrustedOAuth2JwtGrantJsonWebKey.d.ts +38 -0
  400. package/src/lib/kratos/api.generated/models/UiContainer.d.ts +52 -0
  401. package/src/lib/kratos/api.generated/models/UiNode.d.ts +113 -0
  402. package/src/lib/kratos/api.generated/models/UiNodeAnchorAttributes.d.ts +73 -0
  403. package/src/lib/kratos/api.generated/models/UiNodeAttributes.d.ts +39 -0
  404. package/src/lib/kratos/api.generated/models/UiNodeDivisionAttributes.d.ts +74 -0
  405. package/src/lib/kratos/api.generated/models/UiNodeImageAttributes.d.ts +78 -0
  406. package/src/lib/kratos/api.generated/models/UiNodeInputAttributes.d.ts +229 -0
  407. package/src/lib/kratos/api.generated/models/UiNodeMeta.d.ts +34 -0
  408. package/src/lib/kratos/api.generated/models/UiNodeScriptAttributes.d.ts +104 -0
  409. package/src/lib/kratos/api.generated/models/UiNodeTextAttributes.d.ts +65 -0
  410. package/src/lib/kratos/api.generated/models/UiText.d.ts +63 -0
  411. package/src/lib/kratos/api.generated/models/UpdateFedcmFlowBody.d.ts +51 -0
  412. package/src/lib/kratos/api.generated/models/UpdateIdentityBody.d.ts +78 -0
  413. package/src/lib/kratos/api.generated/models/UpdateLoginFlowBody.d.ts +48 -0
  414. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithCodeMethod.d.ts +70 -0
  415. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithIdentifierFirstMethod.d.ts +50 -0
  416. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithLookupSecretMethod.d.ts +44 -0
  417. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithOidcMethod.d.ts +92 -0
  418. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithPasskeyMethod.d.ts +46 -0
  419. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithPasswordMethod.d.ts +63 -0
  420. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithSamlMethod.d.ts +52 -0
  421. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithTotpMethod.d.ts +50 -0
  422. package/src/lib/kratos/api.generated/models/UpdateLoginFlowWithWebAuthnMethod.d.ts +58 -0
  423. package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowBody.d.ts +27 -0
  424. package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowWithCodeMethod.d.ts +80 -0
  425. package/src/lib/kratos/api.generated/models/UpdateRecoveryFlowWithLinkMethod.d.ts +69 -0
  426. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowBody.d.ts +42 -0
  427. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithCodeMethod.d.ts +64 -0
  428. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithOidcMethod.d.ts +92 -0
  429. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithPasskeyMethod.d.ts +61 -0
  430. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithPasswordMethod.d.ts +58 -0
  431. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithProfileMethod.d.ts +76 -0
  432. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithSamlMethod.d.ts +58 -0
  433. package/src/lib/kratos/api.generated/models/UpdateRegistrationFlowWithWebAuthnMethod.d.ts +69 -0
  434. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowBody.d.ts +45 -0
  435. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithLookupMethod.d.ts +70 -0
  436. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithOidcMethod.d.ts +90 -0
  437. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithPasskeyMethod.d.ts +57 -0
  438. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithPasswordMethod.d.ts +52 -0
  439. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithProfileMethod.d.ts +56 -0
  440. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithSamlMethod.d.ts +84 -0
  441. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithTotpMethod.d.ts +60 -0
  442. package/src/lib/kratos/api.generated/models/UpdateSettingsFlowWithWebAuthnMethod.d.ts +71 -0
  443. package/src/lib/kratos/api.generated/models/UpdateSubscriptionBody.d.ts +55 -0
  444. package/src/lib/kratos/api.generated/models/UpdateVerificationFlowBody.d.ts +27 -0
  445. package/src/lib/kratos/api.generated/models/UpdateVerificationFlowWithCodeMethod.d.ts +80 -0
  446. package/src/lib/kratos/api.generated/models/UpdateVerificationFlowWithLinkMethod.d.ts +69 -0
  447. package/src/lib/kratos/api.generated/models/UpdateWorkspaceBody.d.ts +32 -0
  448. package/src/lib/kratos/api.generated/models/Usage.d.ts +33 -0
  449. package/src/lib/kratos/api.generated/models/VerifiableCredentialPrimingResponse.d.ts +74 -0
  450. package/src/lib/kratos/api.generated/models/VerifiableCredentialProof.d.ts +38 -0
  451. package/src/lib/kratos/api.generated/models/VerifiableCredentialResponse.d.ts +38 -0
  452. package/src/lib/kratos/api.generated/models/VerifiableIdentityAddress.d.ts +85 -0
  453. package/src/lib/kratos/api.generated/models/VerificationFlow.d.ts +101 -0
  454. package/src/lib/kratos/api.generated/models/VerificationFlowState.d.ts +27 -0
  455. package/src/lib/kratos/api.generated/models/Version.d.ts +32 -0
  456. package/src/lib/kratos/api.generated/models/Warning.d.ts +38 -0
  457. package/src/lib/kratos/api.generated/models/Workspace.d.ts +62 -0
  458. package/src/lib/kratos/api.generated/models/WorkspaceApiKey.d.ts +76 -0
  459. package/src/lib/kratos/api.generated/models/index.d.ts +283 -0
  460. package/src/lib/kratos/api.generated/runtime.d.ts +182 -0
  461. package/src/lib/kratos/contrib/continueWith.d.ts +51 -0
  462. package/src/lib/kratos/contrib/error.d.ts +87 -0
  463. package/src/lib/kratos/contrib/flowTypes.d.ts +9 -0
  464. package/src/lib/kratos/contrib/index.d.ts +6 -0
  465. package/src/lib/kratos/contrib/ui.d.ts +63 -0
  466. package/src/lib/kratos/contrib/urlHelpers.d.ts +25 -0
  467. package/src/lib/kratos/contrib/utils.d.ts +32 -0
  468. package/src/lib/kratos/index.d.ts +2 -0
  469. package/src/lib/sessionManager/baseSessionManager.d.ts +50 -27
  470. package/src/lib/sessionManager/index.d.ts +1 -0
  471. package/src/lib/sessionManager/types.d.ts +10 -0
  472. package/src/lib/types/index.d.ts +17 -0
  473. package/src/lib/utils/assertion.d.ts +9 -0
  474. package/src/lib/utils/errors.d.ts +386 -0
  475. package/src/lib/utils/fields.d.ts +9 -0
  476. package/src/lib/utils/flow.d.ts +46 -0
  477. package/src/lib/utils/form.d.ts +12 -0
  478. package/src/lib/utils/index.d.ts +9 -0
  479. package/src/lib/utils/passkeys/credential.d.ts +13 -0
  480. package/src/lib/utils/passkeys/helpers.d.ts +2 -0
  481. package/src/lib/utils/passkeys/index.d.ts +4 -0
  482. package/src/lib/utils/passkeys/types.d.ts +31 -0
  483. package/src/lib/utils/query.d.ts +3 -0
  484. package/src/lib/utils/searchQuery.d.ts +6 -0
  485. package/src/lib/utils/traits.d.ts +5 -0
  486. package/src/lib/cards/index.d.ts +0 -2
  487. package/src/lib/cards/userAuthCard.d.ts +0 -62
  488. package/src/lib/cards/userSettingsCard.d.ts +0 -36
  489. package/src/lib/createKratosClient.d.ts +0 -19
  490. package/src/lib/defaultComponents/DefaultButtonComponent/index.d.ts +0 -2
  491. package/src/lib/defaultComponents/DefaultCheckboxComponent/index.d.ts +0 -2
  492. package/src/lib/defaultComponents/DefaultImageComponent/index.d.ts +0 -2
  493. package/src/lib/defaultComponents/DefaultInputComponent/index.d.ts +0 -2
  494. package/src/lib/defaultComponents/DefaultLinkComponent/index.d.ts +0 -2
  495. package/src/lib/defaultComponents/DefaultMessageComponent/index.d.ts +0 -2
  496. package/src/lib/defaultComponents/DefaultMessageFormatComponent/index.d.ts +0 -2
  497. package/src/lib/defaultComponents/DefaultTextComponent/index.d.ts +0 -2
  498. package/src/lib/defaultComponents/DefaultUiMessagesComponent/index.d.ts +0 -2
  499. package/src/lib/defaultComponents.d.ts +0 -2
  500. package/src/lib/flows/useLoginFlow.d.ts +0 -50
  501. package/src/lib/flows/useLogoutFlow.d.ts +0 -33
  502. package/src/lib/flows/useReauthenticationFlow.d.ts +0 -31
  503. package/src/lib/flows/useRecoveryFlow.d.ts +0 -47
  504. package/src/lib/flows/useRegistrationFlow.d.ts +0 -47
  505. package/src/lib/flows/useSettingsFlow.d.ts +0 -47
  506. package/src/lib/flows/useVerificationFlow.d.ts +0 -47
  507. package/src/lib/helpers/errorMessages.d.ts +0 -7
  508. package/src/lib/helpers/filterFlowNodes.d.ts +0 -7
  509. package/src/lib/helpers/formattedMessage.d.ts +0 -4
  510. package/src/lib/helpers/getNodeLabel.d.ts +0 -2
  511. package/src/lib/helpers/node.d.ts +0 -7
  512. package/src/lib/helpers/useScriptNodes.d.ts +0 -5
  513. package/src/lib/helpers/userAuthForm.d.ts +0 -31
  514. package/src/lib/kratosContext.d.ts +0 -29
  515. package/src/lib/kratosContextProvider.d.ts +0 -34
  516. package/src/lib/sections/authCodeSection.d.ts +0 -14
  517. package/src/lib/sections/identifierFirstLoginSection.d.ts +0 -8
  518. package/src/lib/sections/linkSection.d.ts +0 -14
  519. package/src/lib/sections/loginSection.d.ts +0 -8
  520. package/src/lib/sections/lookupSecretSettingsSection.d.ts +0 -8
  521. package/src/lib/sections/oidcSection.d.ts +0 -8
  522. package/src/lib/sections/oidcSettingsSection.d.ts +0 -8
  523. package/src/lib/sections/passkeySettingsSection.d.ts +0 -8
  524. package/src/lib/sections/passwordSettingsSection.d.ts +0 -8
  525. package/src/lib/sections/passwordlessSection.d.ts +0 -8
  526. package/src/lib/sections/profileLoginSection.d.ts +0 -8
  527. package/src/lib/sections/profileRegistrationSection.d.ts +0 -8
  528. package/src/lib/sections/profileSettingsSection.d.ts +0 -8
  529. package/src/lib/sections/registrationSection.d.ts +0 -8
  530. package/src/lib/sections/totpSettingsSection.d.ts +0 -8
  531. package/src/lib/types/components.d.ts +0 -78
  532. package/src/lib/types/enums/errorId.d.ts +0 -16
  533. package/src/lib/types/enums/errorValidation.d.ts +0 -30
  534. package/src/lib/types/enums/errorValidationLogin.d.ts +0 -9
  535. package/src/lib/types/enums/errorValidationRecovery.d.ts +0 -9
  536. package/src/lib/types/enums/errorValidationRegistration.d.ts +0 -4
  537. package/src/lib/types/enums/errorValidationSettings.d.ts +0 -4
  538. package/src/lib/types/enums/errorValidationVerification.d.ts +0 -9
  539. package/src/lib/types/enums/index.d.ts +0 -14
  540. package/src/lib/types/enums/infoNodeLabel.d.ts +0 -14
  541. package/src/lib/types/enums/infoSelfServiceLogin.d.ts +0 -16
  542. package/src/lib/types/enums/infoSelfServiceRecovery.d.ts +0 -6
  543. package/src/lib/types/enums/infoSelfServiceRegistration.d.ts +0 -7
  544. package/src/lib/types/enums/infoSelfServiceSettings.d.ts +0 -21
  545. package/src/lib/types/enums/infoSelfServiceVerification.d.ts +0 -6
  546. package/src/lib/types/enums/misc.d.ts +0 -10
  547. package/src/lib/types/responseError.d.ts +0 -2
  548. package/src/lib/types/useHandleFlowError.d.ts +0 -13
  549. package/src/lib/utils/filterNodesByGroups.d.ts +0 -22
  550. package/src/lib/utils/getNodeInputType.d.ts +0 -1
  551. package/src/lib/utils/handleCancelError.d.ts +0 -2
  552. package/src/lib/utils/helpers.d.ts +0 -11
  553. package/src/lib/utils/typeGuards.d.ts +0 -24
  554. package/src/lib/utils/variables.d.ts +0 -4
@@ -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 TaxLineItem
16
+ */
17
+ export interface TaxLineItem {
18
+ /**
19
+ *
20
+ * @type {number}
21
+ * @memberof TaxLineItem
22
+ */
23
+ amount_in_cent?: number;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof TaxLineItem
28
+ */
29
+ title?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the TaxLineItem interface.
33
+ */
34
+ export declare function instanceOfTaxLineItem(value: object): value is TaxLineItem;
35
+ export declare function TaxLineItemFromJSON(json: any): TaxLineItem;
36
+ export declare function TaxLineItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): TaxLineItem;
37
+ export declare function TaxLineItemToJSON(json: any): TaxLineItem;
38
+ export declare function TaxLineItemToJSONTyped(value?: TaxLineItem | 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 TimeInterval
16
+ */
17
+ export interface TimeInterval {
18
+ /**
19
+ * The end of the time period.
20
+ * @type {Date}
21
+ * @memberof TimeInterval
22
+ */
23
+ end: Date;
24
+ /**
25
+ * The start of the time period.
26
+ * @type {Date}
27
+ * @memberof TimeInterval
28
+ */
29
+ start: Date;
30
+ }
31
+ /**
32
+ * Check if a given object implements the TimeInterval interface.
33
+ */
34
+ export declare function instanceOfTimeInterval(value: object): value is TimeInterval;
35
+ export declare function TimeIntervalFromJSON(json: any): TimeInterval;
36
+ export declare function TimeIntervalFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeInterval;
37
+ export declare function TimeIntervalToJSON(json: any): TimeInterval;
38
+ export declare function TimeIntervalToJSONTyped(value?: TimeInterval | 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 TokenPagination
16
+ */
17
+ export interface TokenPagination {
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 TokenPagination
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 TokenPagination
34
+ */
35
+ page_token?: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the TokenPagination interface.
39
+ */
40
+ export declare function instanceOfTokenPagination(value: object): value is TokenPagination;
41
+ export declare function TokenPaginationFromJSON(json: any): TokenPagination;
42
+ export declare function TokenPaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenPagination;
43
+ export declare function TokenPaginationToJSON(json: any): TokenPagination;
44
+ export declare function TokenPaginationToJSONTyped(value?: TokenPagination | 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 TokenPaginationHeaders
16
+ */
17
+ export interface TokenPaginationHeaders {
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 TokenPaginationHeaders
26
+ */
27
+ link?: string;
28
+ /**
29
+ * The total number of clients.
30
+ *
31
+ * in: header
32
+ * @type {string}
33
+ * @memberof TokenPaginationHeaders
34
+ */
35
+ x_total_count?: string;
36
+ }
37
+ /**
38
+ * Check if a given object implements the TokenPaginationHeaders interface.
39
+ */
40
+ export declare function instanceOfTokenPaginationHeaders(value: object): value is TokenPaginationHeaders;
41
+ export declare function TokenPaginationHeadersFromJSON(json: any): TokenPaginationHeaders;
42
+ export declare function TokenPaginationHeadersFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenPaginationHeaders;
43
+ export declare function TokenPaginationHeadersToJSON(json: any): TokenPaginationHeaders;
44
+ export declare function TokenPaginationHeadersToJSONTyped(value?: TokenPaginationHeaders | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,47 @@
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
+ * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:
14
+ * `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel="{page}"`
15
+ *
16
+ * For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
17
+ * @export
18
+ * @interface TokenPaginationRequestParameters
19
+ */
20
+ export interface TokenPaginationRequestParameters {
21
+ /**
22
+ * Items per Page
23
+ *
24
+ * This is the number of items per page to return.
25
+ * For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
26
+ * @type {number}
27
+ * @memberof TokenPaginationRequestParameters
28
+ */
29
+ page_size?: number;
30
+ /**
31
+ * Next Page Token
32
+ *
33
+ * The next page token.
34
+ * For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
35
+ * @type {string}
36
+ * @memberof TokenPaginationRequestParameters
37
+ */
38
+ page_token?: string;
39
+ }
40
+ /**
41
+ * Check if a given object implements the TokenPaginationRequestParameters interface.
42
+ */
43
+ export declare function instanceOfTokenPaginationRequestParameters(value: object): value is TokenPaginationRequestParameters;
44
+ export declare function TokenPaginationRequestParametersFromJSON(json: any): TokenPaginationRequestParameters;
45
+ export declare function TokenPaginationRequestParametersFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenPaginationRequestParameters;
46
+ export declare function TokenPaginationRequestParametersToJSON(json: any): TokenPaginationRequestParameters;
47
+ export declare function TokenPaginationRequestParametersToJSONTyped(value?: TokenPaginationRequestParameters | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,54 @@
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
+ * The `Link` HTTP header contains multiple links (`first`, `next`, `last`, `previous`) formatted as:
14
+ * `<https://{project-slug}.projects.oryapis.com/admin/clients?page_size={limit}&page_token={offset}>; rel="{page}"`
15
+ *
16
+ * For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination).
17
+ * @export
18
+ * @interface TokenPaginationResponseHeaders
19
+ */
20
+ export interface TokenPaginationResponseHeaders {
21
+ /**
22
+ * The Link HTTP Header
23
+ *
24
+ * The `Link` header contains a comma-delimited list of links to the following pages:
25
+ *
26
+ * first: The first page of results.
27
+ * next: The next page of results.
28
+ * prev: The previous page of results.
29
+ * last: The last page of results.
30
+ *
31
+ * Pages are omitted if they do not exist. For example, if there is no next page, the `next` link is omitted. Examples:
32
+ *
33
+ * </clients?page_size=5&page_token=0>; rel="first",</clients?page_size=5&page_token=15>; rel="next",</clients?page_size=5&page_token=5>; rel="prev",</clients?page_size=5&page_token=20>; rel="last"
34
+ * @type {string}
35
+ * @memberof TokenPaginationResponseHeaders
36
+ */
37
+ link?: string;
38
+ /**
39
+ * The X-Total-Count HTTP Header
40
+ *
41
+ * The `X-Total-Count` header contains the total number of items in the collection.
42
+ * @type {number}
43
+ * @memberof TokenPaginationResponseHeaders
44
+ */
45
+ x_total_count?: number;
46
+ }
47
+ /**
48
+ * Check if a given object implements the TokenPaginationResponseHeaders interface.
49
+ */
50
+ export declare function instanceOfTokenPaginationResponseHeaders(value: object): value is TokenPaginationResponseHeaders;
51
+ export declare function TokenPaginationResponseHeadersFromJSON(json: any): TokenPaginationResponseHeaders;
52
+ export declare function TokenPaginationResponseHeadersFromJSONTyped(json: any, ignoreDiscriminator: boolean): TokenPaginationResponseHeaders;
53
+ export declare function TokenPaginationResponseHeadersToJSON(json: any): TokenPaginationResponseHeaders;
54
+ export declare function TokenPaginationResponseHeadersToJSONTyped(value?: TokenPaginationResponseHeaders | null, ignoreDiscriminator?: boolean): any;
@@ -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 { JsonWebKey } from './JsonWebKey';
13
+ /**
14
+ * Trust OAuth2 JWT Bearer Grant Type Issuer Request Body
15
+ * @export
16
+ * @interface TrustOAuth2JwtGrantIssuer
17
+ */
18
+ export interface TrustOAuth2JwtGrantIssuer {
19
+ /**
20
+ * The "allow_any_subject" indicates that the issuer is allowed to have any principal as the subject of the JWT.
21
+ * @type {boolean}
22
+ * @memberof TrustOAuth2JwtGrantIssuer
23
+ */
24
+ allow_any_subject?: boolean;
25
+ /**
26
+ * The "expires_at" indicates, when grant will expire, so we will reject assertion from "issuer" targeting "subject".
27
+ * @type {Date}
28
+ * @memberof TrustOAuth2JwtGrantIssuer
29
+ */
30
+ expires_at: Date;
31
+ /**
32
+ * The "issuer" identifies the principal that issued the JWT assertion (same as "iss" claim in JWT).
33
+ * @type {string}
34
+ * @memberof TrustOAuth2JwtGrantIssuer
35
+ */
36
+ issuer: string;
37
+ /**
38
+ *
39
+ * @type {JsonWebKey}
40
+ * @memberof TrustOAuth2JwtGrantIssuer
41
+ */
42
+ jwk: JsonWebKey;
43
+ /**
44
+ * The "scope" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])
45
+ * @type {Array<string>}
46
+ * @memberof TrustOAuth2JwtGrantIssuer
47
+ */
48
+ scope: Array<string>;
49
+ /**
50
+ * The "subject" identifies the principal that is the subject of the JWT.
51
+ * @type {string}
52
+ * @memberof TrustOAuth2JwtGrantIssuer
53
+ */
54
+ subject?: string;
55
+ }
56
+ /**
57
+ * Check if a given object implements the TrustOAuth2JwtGrantIssuer interface.
58
+ */
59
+ export declare function instanceOfTrustOAuth2JwtGrantIssuer(value: object): value is TrustOAuth2JwtGrantIssuer;
60
+ export declare function TrustOAuth2JwtGrantIssuerFromJSON(json: any): TrustOAuth2JwtGrantIssuer;
61
+ export declare function TrustOAuth2JwtGrantIssuerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrustOAuth2JwtGrantIssuer;
62
+ export declare function TrustOAuth2JwtGrantIssuerToJSON(json: any): TrustOAuth2JwtGrantIssuer;
63
+ export declare function TrustOAuth2JwtGrantIssuerToJSONTyped(value?: TrustOAuth2JwtGrantIssuer | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,75 @@
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 { TrustedOAuth2JwtGrantJsonWebKey } from './TrustedOAuth2JwtGrantJsonWebKey';
13
+ /**
14
+ * OAuth2 JWT Bearer Grant Type Issuer Trust Relationship
15
+ * @export
16
+ * @interface TrustedOAuth2JwtGrantIssuer
17
+ */
18
+ export interface TrustedOAuth2JwtGrantIssuer {
19
+ /**
20
+ * The "allow_any_subject" indicates that the issuer is allowed to have any principal as the subject of the JWT.
21
+ * @type {boolean}
22
+ * @memberof TrustedOAuth2JwtGrantIssuer
23
+ */
24
+ allow_any_subject?: boolean;
25
+ /**
26
+ * The "created_at" indicates, when grant was created.
27
+ * @type {Date}
28
+ * @memberof TrustedOAuth2JwtGrantIssuer
29
+ */
30
+ created_at?: Date;
31
+ /**
32
+ * The "expires_at" indicates, when grant will expire, so we will reject assertion from "issuer" targeting "subject".
33
+ * @type {Date}
34
+ * @memberof TrustedOAuth2JwtGrantIssuer
35
+ */
36
+ expires_at?: Date;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof TrustedOAuth2JwtGrantIssuer
41
+ */
42
+ id?: string;
43
+ /**
44
+ * The "issuer" identifies the principal that issued the JWT assertion (same as "iss" claim in JWT).
45
+ * @type {string}
46
+ * @memberof TrustedOAuth2JwtGrantIssuer
47
+ */
48
+ issuer?: string;
49
+ /**
50
+ *
51
+ * @type {TrustedOAuth2JwtGrantJsonWebKey}
52
+ * @memberof TrustedOAuth2JwtGrantIssuer
53
+ */
54
+ public_key?: TrustedOAuth2JwtGrantJsonWebKey;
55
+ /**
56
+ * The "scope" contains list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749])
57
+ * @type {Array<string>}
58
+ * @memberof TrustedOAuth2JwtGrantIssuer
59
+ */
60
+ scope?: Array<string>;
61
+ /**
62
+ * The "subject" identifies the principal that is the subject of the JWT.
63
+ * @type {string}
64
+ * @memberof TrustedOAuth2JwtGrantIssuer
65
+ */
66
+ subject?: string;
67
+ }
68
+ /**
69
+ * Check if a given object implements the TrustedOAuth2JwtGrantIssuer interface.
70
+ */
71
+ export declare function instanceOfTrustedOAuth2JwtGrantIssuer(value: object): value is TrustedOAuth2JwtGrantIssuer;
72
+ export declare function TrustedOAuth2JwtGrantIssuerFromJSON(json: any): TrustedOAuth2JwtGrantIssuer;
73
+ export declare function TrustedOAuth2JwtGrantIssuerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrustedOAuth2JwtGrantIssuer;
74
+ export declare function TrustedOAuth2JwtGrantIssuerToJSON(json: any): TrustedOAuth2JwtGrantIssuer;
75
+ export declare function TrustedOAuth2JwtGrantIssuerToJSONTyped(value?: TrustedOAuth2JwtGrantIssuer | 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
+ * OAuth2 JWT Bearer Grant Type Issuer Trusted JSON Web Key
14
+ * @export
15
+ * @interface TrustedOAuth2JwtGrantJsonWebKey
16
+ */
17
+ export interface TrustedOAuth2JwtGrantJsonWebKey {
18
+ /**
19
+ * The "key_id" is key unique identifier (same as kid header in jws/jwt).
20
+ * @type {string}
21
+ * @memberof TrustedOAuth2JwtGrantJsonWebKey
22
+ */
23
+ kid?: string;
24
+ /**
25
+ * The "set" is basically a name for a group(set) of keys. Will be the same as "issuer" in grant.
26
+ * @type {string}
27
+ * @memberof TrustedOAuth2JwtGrantJsonWebKey
28
+ */
29
+ set?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the TrustedOAuth2JwtGrantJsonWebKey interface.
33
+ */
34
+ export declare function instanceOfTrustedOAuth2JwtGrantJsonWebKey(value: object): value is TrustedOAuth2JwtGrantJsonWebKey;
35
+ export declare function TrustedOAuth2JwtGrantJsonWebKeyFromJSON(json: any): TrustedOAuth2JwtGrantJsonWebKey;
36
+ export declare function TrustedOAuth2JwtGrantJsonWebKeyFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrustedOAuth2JwtGrantJsonWebKey;
37
+ export declare function TrustedOAuth2JwtGrantJsonWebKeyToJSON(json: any): TrustedOAuth2JwtGrantJsonWebKey;
38
+ export declare function TrustedOAuth2JwtGrantJsonWebKeyToJSONTyped(value?: TrustedOAuth2JwtGrantJsonWebKey | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,52 @@
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 { UiText } from './UiText';
13
+ import type { UiNode } from './UiNode';
14
+ /**
15
+ * Container represents a HTML Form. The container can work with both HTTP Form and JSON requests
16
+ * @export
17
+ * @interface UiContainer
18
+ */
19
+ export interface UiContainer {
20
+ /**
21
+ * Action should be used as the form action URL `<form action="{{ .Action }}" method="post">`.
22
+ * @type {string}
23
+ * @memberof UiContainer
24
+ */
25
+ action: string;
26
+ /**
27
+ *
28
+ * @type {Array<UiText>}
29
+ * @memberof UiContainer
30
+ */
31
+ messages?: Array<UiText>;
32
+ /**
33
+ * Method is the form method (e.g. POST)
34
+ * @type {string}
35
+ * @memberof UiContainer
36
+ */
37
+ method: string;
38
+ /**
39
+ *
40
+ * @type {Array<UiNode>}
41
+ * @memberof UiContainer
42
+ */
43
+ nodes: Array<UiNode>;
44
+ }
45
+ /**
46
+ * Check if a given object implements the UiContainer interface.
47
+ */
48
+ export declare function instanceOfUiContainer(value: object): value is UiContainer;
49
+ export declare function UiContainerFromJSON(json: any): UiContainer;
50
+ export declare function UiContainerFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiContainer;
51
+ export declare function UiContainerToJSON(json: any): UiContainer;
52
+ export declare function UiContainerToJSONTyped(value?: UiContainer | null, ignoreDiscriminator?: boolean): any;