@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.
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,68 @@
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 { Relationship } from './Relationship';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ExpandedPermissionTree
17
+ */
18
+ export interface ExpandedPermissionTree {
19
+ /**
20
+ * The children of the node, possibly none.
21
+ * @type {Array<ExpandedPermissionTree>}
22
+ * @memberof ExpandedPermissionTree
23
+ */
24
+ children?: Array<ExpandedPermissionTree>;
25
+ /**
26
+ *
27
+ * @type {Relationship}
28
+ * @memberof ExpandedPermissionTree
29
+ */
30
+ tuple?: Relationship;
31
+ /**
32
+ * The type of the node.
33
+ * union TreeNodeUnion
34
+ * exclusion TreeNodeExclusion
35
+ * intersection TreeNodeIntersection
36
+ * leaf TreeNodeLeaf
37
+ * tuple_to_subject_set TreeNodeTupleToSubjectSet
38
+ * computed_subject_set TreeNodeComputedSubjectSet
39
+ * not TreeNodeNot
40
+ * unspecified TreeNodeUnspecified
41
+ * @type {string}
42
+ * @memberof ExpandedPermissionTree
43
+ */
44
+ type: ExpandedPermissionTreeTypeEnum;
45
+ }
46
+ /**
47
+ * @export
48
+ */
49
+ export declare const ExpandedPermissionTreeTypeEnum: {
50
+ readonly Union: "union";
51
+ readonly Exclusion: "exclusion";
52
+ readonly Intersection: "intersection";
53
+ readonly Leaf: "leaf";
54
+ readonly TupleToSubjectSet: "tuple_to_subject_set";
55
+ readonly ComputedSubjectSet: "computed_subject_set";
56
+ readonly Not: "not";
57
+ readonly Unspecified: "unspecified";
58
+ readonly UnknownDefaultOpenApi: "11184809";
59
+ };
60
+ export type ExpandedPermissionTreeTypeEnum = typeof ExpandedPermissionTreeTypeEnum[keyof typeof ExpandedPermissionTreeTypeEnum];
61
+ /**
62
+ * Check if a given object implements the ExpandedPermissionTree interface.
63
+ */
64
+ export declare function instanceOfExpandedPermissionTree(value: object): value is ExpandedPermissionTree;
65
+ export declare function ExpandedPermissionTreeFromJSON(json: any): ExpandedPermissionTree;
66
+ export declare function ExpandedPermissionTreeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpandedPermissionTree;
67
+ export declare function ExpandedPermissionTreeToJSON(json: any): ExpandedPermissionTree;
68
+ export declare function ExpandedPermissionTreeToJSONTyped(value?: ExpandedPermissionTree | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,50 @@
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 FlowError
16
+ */
17
+ export interface FlowError {
18
+ /**
19
+ * CreatedAt is a helper struct field for gobuffalo.pop.
20
+ * @type {Date}
21
+ * @memberof FlowError
22
+ */
23
+ created_at?: Date;
24
+ /**
25
+ *
26
+ * @type {object}
27
+ * @memberof FlowError
28
+ */
29
+ error?: object;
30
+ /**
31
+ * ID of the error container.
32
+ * @type {string}
33
+ * @memberof FlowError
34
+ */
35
+ id: string;
36
+ /**
37
+ * UpdatedAt is a helper struct field for gobuffalo.pop.
38
+ * @type {Date}
39
+ * @memberof FlowError
40
+ */
41
+ updated_at?: Date;
42
+ }
43
+ /**
44
+ * Check if a given object implements the FlowError interface.
45
+ */
46
+ export declare function instanceOfFlowError(value: object): value is FlowError;
47
+ export declare function FlowErrorFromJSON(json: any): FlowError;
48
+ export declare function FlowErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): FlowError;
49
+ export declare function FlowErrorToJSON(json: any): FlowError;
50
+ export declare function FlowErrorToJSONTyped(value?: FlowError | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,91 @@
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 { GenericErrorContent } from './GenericErrorContent';
13
+ /**
14
+ * Error responses are sent when an error (e.g. unauthorized, bad request, ...) occurred.
15
+ * @export
16
+ * @interface GenericError
17
+ */
18
+ export interface GenericError {
19
+ /**
20
+ * The status code
21
+ * @type {number}
22
+ * @memberof GenericError
23
+ */
24
+ code?: number;
25
+ /**
26
+ * Debug information
27
+ *
28
+ * This field is often not exposed to protect against leaking
29
+ * sensitive information.
30
+ * @type {string}
31
+ * @memberof GenericError
32
+ */
33
+ debug?: string;
34
+ /**
35
+ * Further error details
36
+ * @type {any}
37
+ * @memberof GenericError
38
+ */
39
+ details?: any | null;
40
+ /**
41
+ *
42
+ * @type {GenericErrorContent}
43
+ * @memberof GenericError
44
+ */
45
+ error?: GenericErrorContent;
46
+ /**
47
+ * The error ID
48
+ *
49
+ * Useful when trying to identify various errors in application logic.
50
+ * @type {string}
51
+ * @memberof GenericError
52
+ */
53
+ id?: string;
54
+ /**
55
+ * Error message
56
+ *
57
+ * The error's message.
58
+ * @type {string}
59
+ * @memberof GenericError
60
+ */
61
+ message: string;
62
+ /**
63
+ * A human-readable reason for the error
64
+ * @type {string}
65
+ * @memberof GenericError
66
+ */
67
+ reason?: string;
68
+ /**
69
+ * The request ID
70
+ *
71
+ * The request ID is often exposed internally in order to trace
72
+ * errors across service architectures. This is often a UUID.
73
+ * @type {string}
74
+ * @memberof GenericError
75
+ */
76
+ request?: string;
77
+ /**
78
+ * The status description
79
+ * @type {string}
80
+ * @memberof GenericError
81
+ */
82
+ status?: string;
83
+ }
84
+ /**
85
+ * Check if a given object implements the GenericError interface.
86
+ */
87
+ export declare function instanceOfGenericError(value: object): value is GenericError;
88
+ export declare function GenericErrorFromJSON(json: any): GenericError;
89
+ export declare function GenericErrorFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericError;
90
+ export declare function GenericErrorToJSON(json: any): GenericError;
91
+ export declare function GenericErrorToJSONTyped(value?: GenericError | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,73 @@
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
+ * Error response
14
+ * @export
15
+ * @interface GenericErrorContent
16
+ */
17
+ export interface GenericErrorContent {
18
+ /**
19
+ * Debug contains debug information. This is usually not available and has to be enabled.
20
+ * @type {string}
21
+ * @memberof GenericErrorContent
22
+ */
23
+ debug?: string;
24
+ /**
25
+ * Name is the error name.
26
+ * @type {string}
27
+ * @memberof GenericErrorContent
28
+ */
29
+ error?: string;
30
+ /**
31
+ * Description contains further information on the nature of the error.
32
+ * @type {string}
33
+ * @memberof GenericErrorContent
34
+ */
35
+ error_description?: string;
36
+ /**
37
+ * ID is a unique error ID.
38
+ * feature_not_available ErrFeatureNotAvailable
39
+ * quota_exceeded ErrQuotaExceeded
40
+ * @type {string}
41
+ * @memberof GenericErrorContent
42
+ */
43
+ id?: GenericErrorContentIdEnum;
44
+ /**
45
+ * Message contains the error message.
46
+ * @type {string}
47
+ * @memberof GenericErrorContent
48
+ */
49
+ message?: string;
50
+ /**
51
+ * Code represents the error status code (404, 403, 401, ...).
52
+ * @type {number}
53
+ * @memberof GenericErrorContent
54
+ */
55
+ status_code?: number;
56
+ }
57
+ /**
58
+ * @export
59
+ */
60
+ export declare const GenericErrorContentIdEnum: {
61
+ readonly FeatureNotAvailable: "feature_not_available";
62
+ readonly QuotaExceeded: "quota_exceeded";
63
+ readonly UnknownDefaultOpenApi: "11184809";
64
+ };
65
+ export type GenericErrorContentIdEnum = typeof GenericErrorContentIdEnum[keyof typeof GenericErrorContentIdEnum];
66
+ /**
67
+ * Check if a given object implements the GenericErrorContent interface.
68
+ */
69
+ export declare function instanceOfGenericErrorContent(value: object): value is GenericErrorContent;
70
+ export declare function GenericErrorContentFromJSON(json: any): GenericErrorContent;
71
+ export declare function GenericErrorContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericErrorContent;
72
+ export declare function GenericErrorContentToJSON(json: any): GenericErrorContent;
73
+ export declare function GenericErrorContentToJSONTyped(value?: GenericErrorContent | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,39 @@
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 { Money } from './Money';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GenericUsage
17
+ */
18
+ export interface GenericUsage {
19
+ /**
20
+ *
21
+ * @type {Money}
22
+ * @memberof GenericUsage
23
+ */
24
+ additional_price: Money;
25
+ /**
26
+ * IncludedUsage is the number of included items.
27
+ * @type {number}
28
+ * @memberof GenericUsage
29
+ */
30
+ included_usage: number;
31
+ }
32
+ /**
33
+ * Check if a given object implements the GenericUsage interface.
34
+ */
35
+ export declare function instanceOfGenericUsage(value: object): value is GenericUsage;
36
+ export declare function GenericUsageFromJSON(json: any): GenericUsage;
37
+ export declare function GenericUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): GenericUsage;
38
+ export declare function GenericUsageToJSON(json: any): GenericUsage;
39
+ export declare function GenericUsageToJSONTyped(value?: GenericUsage | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,33 @@
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 { AttributesCountDatapoint } from './AttributesCountDatapoint';
13
+ /**
14
+ * Response of the getAttributesCount endpoint
15
+ * @export
16
+ * @interface GetAttributesCountResponse
17
+ */
18
+ export interface GetAttributesCountResponse {
19
+ /**
20
+ * The list of data points.
21
+ * @type {Array<AttributesCountDatapoint>}
22
+ * @memberof GetAttributesCountResponse
23
+ */
24
+ readonly data: Array<AttributesCountDatapoint>;
25
+ }
26
+ /**
27
+ * Check if a given object implements the GetAttributesCountResponse interface.
28
+ */
29
+ export declare function instanceOfGetAttributesCountResponse(value: object): value is GetAttributesCountResponse;
30
+ export declare function GetAttributesCountResponseFromJSON(json: any): GetAttributesCountResponse;
31
+ export declare function GetAttributesCountResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAttributesCountResponse;
32
+ export declare function GetAttributesCountResponseToJSON(json: any): GetAttributesCountResponse;
33
+ export declare function GetAttributesCountResponseToJSONTyped(value?: Omit<GetAttributesCountResponse, 'data'> | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,32 @@
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
+ * Ory Identity Schema Location
14
+ * @export
15
+ * @interface GetManagedIdentitySchemaLocation
16
+ */
17
+ export interface GetManagedIdentitySchemaLocation {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof GetManagedIdentitySchemaLocation
22
+ */
23
+ location?: string;
24
+ }
25
+ /**
26
+ * Check if a given object implements the GetManagedIdentitySchemaLocation interface.
27
+ */
28
+ export declare function instanceOfGetManagedIdentitySchemaLocation(value: object): value is GetManagedIdentitySchemaLocation;
29
+ export declare function GetManagedIdentitySchemaLocationFromJSON(json: any): GetManagedIdentitySchemaLocation;
30
+ export declare function GetManagedIdentitySchemaLocationFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetManagedIdentitySchemaLocation;
31
+ export declare function GetManagedIdentitySchemaLocationToJSON(json: any): GetManagedIdentitySchemaLocation;
32
+ export declare function GetManagedIdentitySchemaLocationToJSONTyped(value?: GetManagedIdentitySchemaLocation | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,32 @@
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
+ * Response of the getMetricsEventAttributes endpoint
14
+ * @export
15
+ * @interface GetMetricsEventAttributesResponse
16
+ */
17
+ export interface GetMetricsEventAttributesResponse {
18
+ /**
19
+ * The list of data points.
20
+ * @type {Array<string>}
21
+ * @memberof GetMetricsEventAttributesResponse
22
+ */
23
+ readonly events: Array<string>;
24
+ }
25
+ /**
26
+ * Check if a given object implements the GetMetricsEventAttributesResponse interface.
27
+ */
28
+ export declare function instanceOfGetMetricsEventAttributesResponse(value: object): value is GetMetricsEventAttributesResponse;
29
+ export declare function GetMetricsEventAttributesResponseFromJSON(json: any): GetMetricsEventAttributesResponse;
30
+ export declare function GetMetricsEventAttributesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMetricsEventAttributesResponse;
31
+ export declare function GetMetricsEventAttributesResponseToJSON(json: any): GetMetricsEventAttributesResponse;
32
+ export declare function GetMetricsEventAttributesResponseToJSONTyped(value?: Omit<GetMetricsEventAttributesResponse, 'events'> | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,32 @@
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
+ * Response of the getMetricsEventTypes endpoint
14
+ * @export
15
+ * @interface GetMetricsEventTypesResponse
16
+ */
17
+ export interface GetMetricsEventTypesResponse {
18
+ /**
19
+ * The list of data points.
20
+ * @type {Array<string>}
21
+ * @memberof GetMetricsEventTypesResponse
22
+ */
23
+ readonly events: Array<string>;
24
+ }
25
+ /**
26
+ * Check if a given object implements the GetMetricsEventTypesResponse interface.
27
+ */
28
+ export declare function instanceOfGetMetricsEventTypesResponse(value: object): value is GetMetricsEventTypesResponse;
29
+ export declare function GetMetricsEventTypesResponseFromJSON(json: any): GetMetricsEventTypesResponse;
30
+ export declare function GetMetricsEventTypesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMetricsEventTypesResponse;
31
+ export declare function GetMetricsEventTypesResponseToJSON(json: any): GetMetricsEventTypesResponse;
32
+ export declare function GetMetricsEventTypesResponseToJSONTyped(value?: Omit<GetMetricsEventTypesResponse, 'events'> | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,33 @@
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 { Organization } from './Organization';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface GetOrganizationResponse
17
+ */
18
+ export interface GetOrganizationResponse {
19
+ /**
20
+ *
21
+ * @type {Organization}
22
+ * @memberof GetOrganizationResponse
23
+ */
24
+ organization: Organization;
25
+ }
26
+ /**
27
+ * Check if a given object implements the GetOrganizationResponse interface.
28
+ */
29
+ export declare function instanceOfGetOrganizationResponse(value: object): value is GetOrganizationResponse;
30
+ export declare function GetOrganizationResponseFromJSON(json: any): GetOrganizationResponse;
31
+ export declare function GetOrganizationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetOrganizationResponse;
32
+ export declare function GetOrganizationResponseToJSON(json: any): GetOrganizationResponse;
33
+ export declare function GetOrganizationResponseToJSONTyped(value?: GetOrganizationResponse | 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 { AttributeFilter } from './AttributeFilter';
13
+ /**
14
+ * Body of the getProjectEvents endpoint
15
+ * @export
16
+ * @interface GetProjectEventsBody
17
+ */
18
+ export interface GetProjectEventsBody {
19
+ /**
20
+ * The event name to query for
21
+ * @type {string}
22
+ * @memberof GetProjectEventsBody
23
+ */
24
+ event_name?: string;
25
+ /**
26
+ * Event attribute filters
27
+ * @type {Array<AttributeFilter>}
28
+ * @memberof GetProjectEventsBody
29
+ */
30
+ filters?: Array<AttributeFilter>;
31
+ /**
32
+ * The start RFC3339 date of the time window
33
+ * @type {Date}
34
+ * @memberof GetProjectEventsBody
35
+ */
36
+ from: Date;
37
+ /**
38
+ * Maximum number of events to return
39
+ * @type {number}
40
+ * @memberof GetProjectEventsBody
41
+ */
42
+ page_size?: number;
43
+ /**
44
+ * Pagination token to fetch next page, empty if first page
45
+ * @type {string}
46
+ * @memberof GetProjectEventsBody
47
+ */
48
+ page_token?: string;
49
+ /**
50
+ * The end RFC3339 date of the time window
51
+ * @type {Date}
52
+ * @memberof GetProjectEventsBody
53
+ */
54
+ to: Date;
55
+ }
56
+ /**
57
+ * Check if a given object implements the GetProjectEventsBody interface.
58
+ */
59
+ export declare function instanceOfGetProjectEventsBody(value: object): value is GetProjectEventsBody;
60
+ export declare function GetProjectEventsBodyFromJSON(json: any): GetProjectEventsBody;
61
+ export declare function GetProjectEventsBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetProjectEventsBody;
62
+ export declare function GetProjectEventsBodyToJSON(json: any): GetProjectEventsBody;
63
+ export declare function GetProjectEventsBodyToJSONTyped(value?: GetProjectEventsBody | null, ignoreDiscriminator?: boolean): any;