@djangocfg/api 2.1.322 → 2.1.327

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 (293) hide show
  1. package/dist/auth-server.cjs +4265 -1169
  2. package/dist/auth-server.cjs.map +1 -1
  3. package/dist/auth-server.mjs +4265 -1159
  4. package/dist/auth-server.mjs.map +1 -1
  5. package/dist/auth.cjs +4150 -3053
  6. package/dist/auth.cjs.map +1 -1
  7. package/dist/auth.d.cts +158 -209
  8. package/dist/auth.d.ts +158 -209
  9. package/dist/auth.mjs +4139 -3042
  10. package/dist/auth.mjs.map +1 -1
  11. package/dist/clients.cjs +3932 -4031
  12. package/dist/clients.cjs.map +1 -1
  13. package/dist/clients.d.cts +2408 -2671
  14. package/dist/clients.d.ts +2408 -2671
  15. package/dist/clients.mjs +3945 -4038
  16. package/dist/clients.mjs.map +1 -1
  17. package/dist/index.cjs +4214 -2713
  18. package/dist/index.cjs.map +1 -1
  19. package/dist/index.d.cts +2758 -1828
  20. package/dist/index.d.ts +2758 -1828
  21. package/dist/index.mjs +4183 -2676
  22. package/dist/index.mjs.map +1 -1
  23. package/package.json +2 -7
  24. package/src/_api/generated/_shared/errors.ts +70 -0
  25. package/src/_api/generated/_shared/index.ts +25 -0
  26. package/src/_api/generated/_shared/logger.ts +123 -0
  27. package/src/_api/generated/_shared/storage.ts +83 -0
  28. package/src/_api/generated/_shared/validation-events.ts +52 -0
  29. package/src/_api/generated/cfg_accounts/api.ts +187 -0
  30. package/src/_api/generated/cfg_accounts/client/client.gen.ts +280 -0
  31. package/src/_api/generated/cfg_accounts/client/index.ts +25 -0
  32. package/src/_api/generated/cfg_accounts/client/types.gen.ts +217 -0
  33. package/src/_api/generated/cfg_accounts/client/utils.gen.ts +318 -0
  34. package/src/_api/generated/cfg_accounts/client.gen.ts +16 -0
  35. package/src/_api/generated/cfg_accounts/core/auth.gen.ts +41 -0
  36. package/src/_api/generated/cfg_accounts/core/bodySerializer.gen.ts +82 -0
  37. package/src/_api/generated/cfg_accounts/core/params.gen.ts +169 -0
  38. package/src/_api/generated/cfg_accounts/core/pathSerializer.gen.ts +171 -0
  39. package/src/_api/generated/cfg_accounts/core/queryKeySerializer.gen.ts +117 -0
  40. package/src/_api/generated/cfg_accounts/core/serverSentEvents.gen.ts +242 -0
  41. package/src/_api/generated/cfg_accounts/core/types.gen.ts +104 -0
  42. package/src/_api/generated/cfg_accounts/core/utils.gen.ts +140 -0
  43. package/src/_api/generated/cfg_accounts/events.ts +198 -0
  44. package/src/_api/generated/cfg_accounts/hooks/index.ts +18 -0
  45. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOauthConnectionsList.ts +26 -0
  46. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOauthDisconnectCreate.ts +24 -0
  47. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOauthGithubAuthorizeCreate.ts +24 -0
  48. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOauthGithubCallbackCreate.ts +24 -0
  49. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOauthProvidersRetrieve.ts +26 -0
  50. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOtpRequestCreate.ts +24 -0
  51. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsOtpVerifyCreate.ts +24 -0
  52. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfileAvatarCreate.ts +24 -0
  53. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfileDeleteCreate.ts +24 -0
  54. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfilePartialPartialUpdate.ts +24 -0
  55. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfilePartialUpdate.ts +24 -0
  56. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfileRetrieve.ts +26 -0
  57. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfileUpdatePartialUpdate.ts +24 -0
  58. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsProfileUpdateUpdate.ts +24 -0
  59. package/src/_api/generated/cfg_accounts/hooks/useCfgAccountsTokenRefreshCreate.ts +24 -0
  60. package/src/_api/generated/cfg_accounts/index.ts +26 -335
  61. package/src/_api/generated/cfg_accounts/schemas/AccountDeleteResponse.ts +12 -0
  62. package/src/_api/generated/cfg_accounts/schemas/CentrifugoToken.ts +14 -0
  63. package/src/_api/generated/cfg_accounts/schemas/CfgUserUpdateRequest.ts +16 -0
  64. package/src/_api/generated/cfg_accounts/schemas/OAuthAuthorizeRequestRequest.ts +12 -0
  65. package/src/_api/generated/cfg_accounts/schemas/OAuthAuthorizeResponse.ts +12 -0
  66. package/src/_api/generated/cfg_accounts/schemas/OAuthCallbackRequestRequest.ts +13 -0
  67. package/src/_api/generated/cfg_accounts/schemas/OAuthConnection.ts +19 -0
  68. package/src/_api/generated/cfg_accounts/schemas/OAuthDisconnectRequestRequest.ts +12 -0
  69. package/src/_api/generated/cfg_accounts/schemas/OAuthError.ts +12 -0
  70. package/src/_api/generated/cfg_accounts/schemas/OAuthProvidersResponse.ts +11 -0
  71. package/src/_api/generated/cfg_accounts/schemas/OAuthTokenResponse.ts +18 -0
  72. package/src/_api/generated/cfg_accounts/schemas/OTPErrorResponse.ts +13 -0
  73. package/src/_api/generated/cfg_accounts/schemas/OTPRequestRequest.ts +12 -0
  74. package/src/_api/generated/cfg_accounts/schemas/OTPRequestResponse.ts +11 -0
  75. package/src/_api/generated/cfg_accounts/schemas/OTPVerifyRequest.ts +13 -0
  76. package/src/_api/generated/cfg_accounts/schemas/OTPVerifyResponse.ts +17 -0
  77. package/src/_api/generated/cfg_accounts/schemas/PatchedCfgUserUpdateRequest.ts +16 -0
  78. package/src/_api/generated/cfg_accounts/schemas/ProviderEnum.ts +9 -0
  79. package/src/_api/generated/cfg_accounts/schemas/TokenRefresh.ts +12 -0
  80. package/src/_api/generated/cfg_accounts/schemas/TokenRefreshRequest.ts +11 -0
  81. package/src/_api/generated/cfg_accounts/{_utils/schemas/User.schema.ts → schemas/User.ts} +8 -16
  82. package/src/_api/generated/cfg_accounts/schemas/index.ts +24 -0
  83. package/src/_api/generated/cfg_accounts/sdk.gen.ts +796 -0
  84. package/src/_api/generated/cfg_accounts/types.gen.ts +764 -0
  85. package/src/_api/generated/cfg_centrifugo/api.ts +164 -0
  86. package/src/_api/generated/cfg_centrifugo/client/client.gen.ts +280 -0
  87. package/src/_api/generated/cfg_centrifugo/client/index.ts +25 -0
  88. package/src/_api/generated/cfg_centrifugo/client/types.gen.ts +217 -0
  89. package/src/_api/generated/cfg_centrifugo/client/utils.gen.ts +318 -0
  90. package/src/_api/generated/cfg_centrifugo/client.gen.ts +16 -0
  91. package/src/_api/generated/cfg_centrifugo/core/auth.gen.ts +41 -0
  92. package/src/_api/generated/cfg_centrifugo/core/bodySerializer.gen.ts +82 -0
  93. package/src/_api/generated/cfg_centrifugo/core/params.gen.ts +169 -0
  94. package/src/_api/generated/cfg_centrifugo/core/pathSerializer.gen.ts +171 -0
  95. package/src/_api/generated/cfg_centrifugo/core/queryKeySerializer.gen.ts +117 -0
  96. package/src/_api/generated/cfg_centrifugo/core/serverSentEvents.gen.ts +242 -0
  97. package/src/_api/generated/cfg_centrifugo/core/types.gen.ts +104 -0
  98. package/src/_api/generated/cfg_centrifugo/core/utils.gen.ts +140 -0
  99. package/src/_api/generated/cfg_centrifugo/events.ts +198 -0
  100. package/src/_api/generated/cfg_centrifugo/hooks/index.ts +4 -0
  101. package/src/_api/generated/cfg_centrifugo/hooks/useCfgCentrifugoAuthTokenRetrieve.ts +26 -0
  102. package/src/_api/generated/cfg_centrifugo/index.ts +26 -313
  103. package/src/_api/generated/cfg_centrifugo/schemas/ConnectionTokenResponse.ts +14 -0
  104. package/src/_api/generated/cfg_centrifugo/schemas/index.ts +4 -0
  105. package/src/_api/generated/cfg_centrifugo/sdk.gen.ts +64 -0
  106. package/src/_api/generated/cfg_centrifugo/types.gen.ts +61 -0
  107. package/src/_api/generated/cfg_totp/api.ts +181 -0
  108. package/src/_api/generated/cfg_totp/client/client.gen.ts +280 -0
  109. package/src/_api/generated/cfg_totp/client/index.ts +25 -0
  110. package/src/_api/generated/cfg_totp/client/types.gen.ts +217 -0
  111. package/src/_api/generated/cfg_totp/client/utils.gen.ts +318 -0
  112. package/src/_api/generated/cfg_totp/client.gen.ts +16 -0
  113. package/src/_api/generated/cfg_totp/core/auth.gen.ts +41 -0
  114. package/src/_api/generated/cfg_totp/core/bodySerializer.gen.ts +82 -0
  115. package/src/_api/generated/cfg_totp/core/params.gen.ts +169 -0
  116. package/src/_api/generated/cfg_totp/core/pathSerializer.gen.ts +171 -0
  117. package/src/_api/generated/cfg_totp/core/queryKeySerializer.gen.ts +117 -0
  118. package/src/_api/generated/cfg_totp/core/serverSentEvents.gen.ts +242 -0
  119. package/src/_api/generated/cfg_totp/core/types.gen.ts +104 -0
  120. package/src/_api/generated/cfg_totp/core/utils.gen.ts +140 -0
  121. package/src/_api/generated/cfg_totp/events.ts +198 -0
  122. package/src/_api/generated/cfg_totp/hooks/index.ts +12 -0
  123. package/src/_api/generated/cfg_totp/hooks/useCfgTotpBackupCodesRegenerateCreate.ts +24 -0
  124. package/src/_api/generated/cfg_totp/hooks/useCfgTotpBackupCodesRetrieve.ts +26 -0
  125. package/src/_api/generated/cfg_totp/hooks/useCfgTotpDevicesDestroy.ts +24 -0
  126. package/src/_api/generated/cfg_totp/hooks/useCfgTotpDevicesRetrieve.ts +26 -0
  127. package/src/_api/generated/cfg_totp/hooks/useCfgTotpDisableCreate.ts +24 -0
  128. package/src/_api/generated/cfg_totp/hooks/useCfgTotpSetupConfirmCreate.ts +24 -0
  129. package/src/_api/generated/cfg_totp/hooks/useCfgTotpSetupCreate.ts +24 -0
  130. package/src/_api/generated/cfg_totp/hooks/useCfgTotpVerifyBackupCreate.ts +24 -0
  131. package/src/_api/generated/cfg_totp/hooks/useCfgTotpVerifyCreate.ts +24 -0
  132. package/src/_api/generated/cfg_totp/index.ts +26 -342
  133. package/src/_api/generated/cfg_totp/schemas/BackupCodesRegenerateRequest.ts +11 -0
  134. package/src/_api/generated/cfg_totp/schemas/BackupCodesRegenerateResponse.ts +12 -0
  135. package/src/_api/generated/cfg_totp/schemas/BackupCodesStatus.ts +13 -0
  136. package/src/_api/generated/cfg_totp/schemas/ConfirmSetupRequest.ts +12 -0
  137. package/src/_api/generated/cfg_totp/schemas/ConfirmSetupResponse.ts +13 -0
  138. package/src/_api/generated/cfg_totp/schemas/DeviceList.ts +18 -0
  139. package/src/_api/generated/cfg_totp/schemas/DeviceListResponse.ts +13 -0
  140. package/src/_api/generated/cfg_totp/schemas/DeviceListStatusEnum.ts +9 -0
  141. package/src/_api/generated/cfg_totp/schemas/DisableRequest.ts +11 -0
  142. package/src/_api/generated/cfg_totp/schemas/SetupRequest.ts +11 -0
  143. package/src/_api/generated/cfg_totp/schemas/SetupResponse.ts +15 -0
  144. package/src/_api/generated/cfg_totp/{_utils/schemas/TotpVerifyUser.schema.ts → schemas/TotpVerifyUser.ts} +7 -15
  145. package/src/_api/generated/cfg_totp/schemas/VerifyBackupRequest.ts +12 -0
  146. package/src/_api/generated/cfg_totp/schemas/VerifyRequest.ts +12 -0
  147. package/src/_api/generated/cfg_totp/schemas/VerifyResponse.ts +17 -0
  148. package/src/_api/generated/cfg_totp/schemas/index.ts +18 -0
  149. package/src/_api/generated/cfg_totp/sdk.gen.ts +432 -0
  150. package/src/_api/generated/cfg_totp/types.gen.ts +479 -0
  151. package/src/_api/generated/index.ts +30 -0
  152. package/src/_api/index.ts +5 -23
  153. package/src/auth/context/AccountsContext.tsx +58 -89
  154. package/src/auth/context/AuthContext.tsx +3 -3
  155. package/src/auth/context/index.ts +2 -2
  156. package/src/auth/hooks/useDeleteAccount.ts +2 -1
  157. package/src/auth/hooks/useGithubAuth.ts +12 -11
  158. package/src/auth/hooks/useTokenRefresh.ts +6 -4
  159. package/src/auth/hooks/useTwoFactor.ts +14 -8
  160. package/src/auth/hooks/useTwoFactorSetup.ts +8 -5
  161. package/src/auth/hooks/useTwoFactorStatus.ts +3 -2
  162. package/src/auth/middlewares/tokenRefresh.ts +6 -4
  163. package/src/clients.ts +14 -51
  164. package/src/index.ts +15 -57
  165. package/src/server.ts +25 -23
  166. package/src/_api/BaseClient.ts +0 -22
  167. package/src/_api/generated/cfg_accounts/CLAUDE.md +0 -86
  168. package/src/_api/generated/cfg_accounts/_utils/fetchers/accounts.ts +0 -154
  169. package/src/_api/generated/cfg_accounts/_utils/fetchers/accounts__auth.ts +0 -95
  170. package/src/_api/generated/cfg_accounts/_utils/fetchers/accounts__oauth.ts +0 -285
  171. package/src/_api/generated/cfg_accounts/_utils/fetchers/accounts__user_profile.ts +0 -440
  172. package/src/_api/generated/cfg_accounts/_utils/fetchers/index.ts +0 -33
  173. package/src/_api/generated/cfg_accounts/_utils/hooks/accounts.ts +0 -64
  174. package/src/_api/generated/cfg_accounts/_utils/hooks/accounts__auth.ts +0 -44
  175. package/src/_api/generated/cfg_accounts/_utils/hooks/accounts__oauth.ts +0 -114
  176. package/src/_api/generated/cfg_accounts/_utils/hooks/accounts__user_profile.ts +0 -152
  177. package/src/_api/generated/cfg_accounts/_utils/hooks/index.ts +0 -33
  178. package/src/_api/generated/cfg_accounts/_utils/schemas/AccountDeleteResponse.schema.ts +0 -20
  179. package/src/_api/generated/cfg_accounts/_utils/schemas/CentrifugoToken.schema.ts +0 -22
  180. package/src/_api/generated/cfg_accounts/_utils/schemas/CfgAccountsProfileAvatarCreateRequest.schema.ts +0 -15
  181. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthAuthorizeRequestRequest.schema.ts +0 -20
  182. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthAuthorizeResponse.schema.ts +0 -20
  183. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthCallbackRequestRequest.schema.ts +0 -21
  184. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthConnection.schema.ts +0 -27
  185. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthDisconnectRequestRequest.schema.ts +0 -20
  186. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthError.schema.ts +0 -20
  187. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthProvidersResponse.schema.ts +0 -19
  188. package/src/_api/generated/cfg_accounts/_utils/schemas/OAuthTokenResponse.schema.ts +0 -46
  189. package/src/_api/generated/cfg_accounts/_utils/schemas/OTPErrorResponse.schema.ts +0 -41
  190. package/src/_api/generated/cfg_accounts/_utils/schemas/OTPRequestRequest.schema.ts +0 -20
  191. package/src/_api/generated/cfg_accounts/_utils/schemas/OTPRequestResponse.schema.ts +0 -19
  192. package/src/_api/generated/cfg_accounts/_utils/schemas/OTPVerifyRequest.schema.ts +0 -21
  193. package/src/_api/generated/cfg_accounts/_utils/schemas/OTPVerifyResponse.schema.ts +0 -45
  194. package/src/_api/generated/cfg_accounts/_utils/schemas/PatchedUserProfileUpdateRequest.schema.ts +0 -24
  195. package/src/_api/generated/cfg_accounts/_utils/schemas/TokenRefresh.schema.ts +0 -16
  196. package/src/_api/generated/cfg_accounts/_utils/schemas/TokenRefreshRequest.schema.ts +0 -15
  197. package/src/_api/generated/cfg_accounts/_utils/schemas/UserProfileUpdateRequest.schema.ts +0 -24
  198. package/src/_api/generated/cfg_accounts/_utils/schemas/index.ts +0 -41
  199. package/src/_api/generated/cfg_accounts/accounts/client.ts +0 -34
  200. package/src/_api/generated/cfg_accounts/accounts/index.ts +0 -4
  201. package/src/_api/generated/cfg_accounts/accounts/models.ts +0 -127
  202. package/src/_api/generated/cfg_accounts/accounts__auth/client.ts +0 -23
  203. package/src/_api/generated/cfg_accounts/accounts__auth/index.ts +0 -4
  204. package/src/_api/generated/cfg_accounts/accounts__auth/models.ts +0 -19
  205. package/src/_api/generated/cfg_accounts/accounts__oauth/client.ts +0 -67
  206. package/src/_api/generated/cfg_accounts/accounts__oauth/index.ts +0 -4
  207. package/src/_api/generated/cfg_accounts/accounts__oauth/models.ts +0 -127
  208. package/src/_api/generated/cfg_accounts/accounts__user_profile/client.ts +0 -94
  209. package/src/_api/generated/cfg_accounts/accounts__user_profile/index.ts +0 -4
  210. package/src/_api/generated/cfg_accounts/accounts__user_profile/models.ts +0 -98
  211. package/src/_api/generated/cfg_accounts/api-instance.ts +0 -181
  212. package/src/_api/generated/cfg_accounts/client.ts +0 -339
  213. package/src/_api/generated/cfg_accounts/enums.ts +0 -10
  214. package/src/_api/generated/cfg_accounts/errors.ts +0 -123
  215. package/src/_api/generated/cfg_accounts/http.ts +0 -160
  216. package/src/_api/generated/cfg_accounts/logger.ts +0 -261
  217. package/src/_api/generated/cfg_accounts/retry.ts +0 -177
  218. package/src/_api/generated/cfg_accounts/schema.json +0 -1576
  219. package/src/_api/generated/cfg_accounts/storage.ts +0 -163
  220. package/src/_api/generated/cfg_accounts/validation-events.ts +0 -135
  221. package/src/_api/generated/cfg_centrifugo/CLAUDE.md +0 -60
  222. package/src/_api/generated/cfg_centrifugo/_utils/fetchers/centrifugo__centrifugo_auth.ts +0 -94
  223. package/src/_api/generated/cfg_centrifugo/_utils/fetchers/index.ts +0 -30
  224. package/src/_api/generated/cfg_centrifugo/_utils/hooks/centrifugo__centrifugo_auth.ts +0 -39
  225. package/src/_api/generated/cfg_centrifugo/_utils/hooks/index.ts +0 -30
  226. package/src/_api/generated/cfg_centrifugo/_utils/schemas/ConnectionTokenResponse.schema.ts +0 -22
  227. package/src/_api/generated/cfg_centrifugo/_utils/schemas/index.ts +0 -21
  228. package/src/_api/generated/cfg_centrifugo/api-instance.ts +0 -181
  229. package/src/_api/generated/cfg_centrifugo/centrifugo__centrifugo_auth/client.ts +0 -27
  230. package/src/_api/generated/cfg_centrifugo/centrifugo__centrifugo_auth/index.ts +0 -4
  231. package/src/_api/generated/cfg_centrifugo/centrifugo__centrifugo_auth/models.ts +0 -18
  232. package/src/_api/generated/cfg_centrifugo/client.ts +0 -330
  233. package/src/_api/generated/cfg_centrifugo/errors.ts +0 -123
  234. package/src/_api/generated/cfg_centrifugo/http.ts +0 -160
  235. package/src/_api/generated/cfg_centrifugo/logger.ts +0 -261
  236. package/src/_api/generated/cfg_centrifugo/retry.ts +0 -177
  237. package/src/_api/generated/cfg_centrifugo/schema.json +0 -118
  238. package/src/_api/generated/cfg_centrifugo/storage.ts +0 -163
  239. package/src/_api/generated/cfg_centrifugo/validation-events.ts +0 -135
  240. package/src/_api/generated/cfg_totp/CLAUDE.md +0 -83
  241. package/src/_api/generated/cfg_totp/_utils/fetchers/index.ts +0 -34
  242. package/src/_api/generated/cfg_totp/_utils/fetchers/totp.ts +0 -50
  243. package/src/_api/generated/cfg_totp/_utils/fetchers/totp__backup_codes.ts +0 -153
  244. package/src/_api/generated/cfg_totp/_utils/fetchers/totp__totp_management.ts +0 -109
  245. package/src/_api/generated/cfg_totp/_utils/fetchers/totp__totp_setup.ts +0 -154
  246. package/src/_api/generated/cfg_totp/_utils/fetchers/totp__totp_verification.ts +0 -153
  247. package/src/_api/generated/cfg_totp/_utils/hooks/index.ts +0 -34
  248. package/src/_api/generated/cfg_totp/_utils/hooks/totp.ts +0 -43
  249. package/src/_api/generated/cfg_totp/_utils/hooks/totp__backup_codes.ts +0 -60
  250. package/src/_api/generated/cfg_totp/_utils/hooks/totp__totp_management.ts +0 -59
  251. package/src/_api/generated/cfg_totp/_utils/hooks/totp__totp_setup.ts +0 -64
  252. package/src/_api/generated/cfg_totp/_utils/hooks/totp__totp_verification.ts +0 -63
  253. package/src/_api/generated/cfg_totp/_utils/schemas/BackupCodesRegenerateRequest.schema.ts +0 -19
  254. package/src/_api/generated/cfg_totp/_utils/schemas/BackupCodesRegenerateResponse.schema.ts +0 -20
  255. package/src/_api/generated/cfg_totp/_utils/schemas/BackupCodesStatus.schema.ts +0 -21
  256. package/src/_api/generated/cfg_totp/_utils/schemas/ConfirmSetupRequest.schema.ts +0 -20
  257. package/src/_api/generated/cfg_totp/_utils/schemas/ConfirmSetupResponse.schema.ts +0 -21
  258. package/src/_api/generated/cfg_totp/_utils/schemas/DeviceList.schema.ts +0 -26
  259. package/src/_api/generated/cfg_totp/_utils/schemas/DeviceListResponse.schema.ts +0 -21
  260. package/src/_api/generated/cfg_totp/_utils/schemas/DisableRequest.schema.ts +0 -19
  261. package/src/_api/generated/cfg_totp/_utils/schemas/SetupRequest.schema.ts +0 -19
  262. package/src/_api/generated/cfg_totp/_utils/schemas/SetupResponse.schema.ts +0 -23
  263. package/src/_api/generated/cfg_totp/_utils/schemas/VerifyBackupRequest.schema.ts +0 -20
  264. package/src/_api/generated/cfg_totp/_utils/schemas/VerifyRequest.schema.ts +0 -20
  265. package/src/_api/generated/cfg_totp/_utils/schemas/VerifyResponse.schema.ts +0 -25
  266. package/src/_api/generated/cfg_totp/_utils/schemas/index.ts +0 -34
  267. package/src/_api/generated/cfg_totp/api-instance.ts +0 -181
  268. package/src/_api/generated/cfg_totp/client.ts +0 -342
  269. package/src/_api/generated/cfg_totp/enums.ts +0 -13
  270. package/src/_api/generated/cfg_totp/errors.ts +0 -123
  271. package/src/_api/generated/cfg_totp/http.ts +0 -160
  272. package/src/_api/generated/cfg_totp/logger.ts +0 -261
  273. package/src/_api/generated/cfg_totp/retry.ts +0 -177
  274. package/src/_api/generated/cfg_totp/schema.json +0 -910
  275. package/src/_api/generated/cfg_totp/storage.ts +0 -163
  276. package/src/_api/generated/cfg_totp/totp/client.ts +0 -24
  277. package/src/_api/generated/cfg_totp/totp/index.ts +0 -4
  278. package/src/_api/generated/cfg_totp/totp/models.ts +0 -4
  279. package/src/_api/generated/cfg_totp/totp__backup_codes/client.ts +0 -32
  280. package/src/_api/generated/cfg_totp/totp__backup_codes/index.ts +0 -4
  281. package/src/_api/generated/cfg_totp/totp__backup_codes/models.ts +0 -38
  282. package/src/_api/generated/cfg_totp/totp__totp_management/client.ts +0 -31
  283. package/src/_api/generated/cfg_totp/totp__totp_management/index.ts +0 -4
  284. package/src/_api/generated/cfg_totp/totp__totp_management/models.ts +0 -46
  285. package/src/_api/generated/cfg_totp/totp__totp_setup/client.ts +0 -33
  286. package/src/_api/generated/cfg_totp/totp__totp_setup/index.ts +0 -4
  287. package/src/_api/generated/cfg_totp/totp__totp_setup/models.ts +0 -55
  288. package/src/_api/generated/cfg_totp/totp__totp_verification/client.ts +0 -33
  289. package/src/_api/generated/cfg_totp/totp__totp_verification/index.ts +0 -4
  290. package/src/_api/generated/cfg_totp/totp__totp_verification/models.ts +0 -74
  291. package/src/_api/generated/cfg_totp/validation-events.ts +0 -135
  292. package/src/hooks/accounts.ts +0 -8
  293. package/src/hooks/index.ts +0 -10
@@ -1,109 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- /**
4
- * Typed fetchers for TOTP Management
5
- *
6
- * Universal functions that work in any environment:
7
- * - Next.js (App Router / Pages Router / Server Components)
8
- * - React Native
9
- * - Node.js backend
10
- *
11
- * These fetchers use Zod schemas for runtime validation.
12
- *
13
- * Usage:
14
- * ```typescript
15
- * // Configure API once (in your app entry point)
16
- * import { configureAPI } from '../../api-instance'
17
- * configureAPI({ baseUrl: 'https://api.example.com' })
18
- *
19
- * // Then use fetchers anywhere
20
- * const users = await getUsers({ page: 1 })
21
- *
22
- * // With SWR
23
- * const { data } = useSWR(['users', params], () => getUsers(params))
24
- *
25
- * // With React Query
26
- * const { data } = useQuery(['users', params], () => getUsers(params))
27
- *
28
- * // In Server Component or SSR (pass custom client)
29
- * import { API } from '../../index'
30
- * const api = new API('https://api.example.com')
31
- * const users = await getUsers({ page: 1 }, api)
32
- * ```
33
- */
34
- import { consola } from 'consola'
35
- import { DeviceListResponseSchema, type DeviceListResponse } from '../schemas/DeviceListResponse.schema'
36
- import { DisableRequestSchema, type DisableRequest } from '../schemas/DisableRequest.schema'
37
- import { getAPIInstance } from '../../api-instance'
38
-
39
- /**
40
- * API operation
41
- *
42
- * @method GET
43
- * @path /cfg/totp/devices/
44
- */
45
- export async function getTotpDevicesRetrieve( client?: any
46
- ): Promise<DeviceListResponse> {
47
- const api = client || getAPIInstance()
48
- const response = await api.totp_management.totpDevicesRetrieve()
49
- try {
50
- return DeviceListResponseSchema.parse(response)
51
- } catch (error) {
52
- // Zod validation error - log detailed information
53
- consola.error('❌ Zod Validation Failed');
54
- consola.box(`getTotpDevicesRetrieve\nPath: /cfg/totp/devices/\nMethod: GET`);
55
-
56
- if (error instanceof Error && 'issues' in error && Array.isArray((error as any).issues)) {
57
- consola.error('Validation Issues:');
58
- (error as any).issues.forEach((issue: any, index: number) => {
59
- consola.error(` ${index + 1}. ${issue.path.join('.') || 'root'}`);
60
- consola.error(` ├─ Message: ${issue.message}`);
61
- if (issue.expected) consola.error(` ├─ Expected: ${issue.expected}`);
62
- if (issue.received) consola.error(` └─ Received: ${issue.received}`);
63
- });
64
- }
65
-
66
- consola.error('Response data:', response);
67
-
68
- // Dispatch browser CustomEvent (only if window is defined)
69
- if (typeof window !== 'undefined' && error instanceof Error && 'issues' in error) {
70
- try {
71
- const event = new CustomEvent('zod-validation-error', {
72
- detail: {
73
- operation: 'getTotpDevicesRetrieve',
74
- path: '/cfg/totp/devices/',
75
- method: 'GET',
76
- error: error,
77
- response: response,
78
- timestamp: new Date(),
79
- },
80
- bubbles: true,
81
- cancelable: false,
82
- });
83
- window.dispatchEvent(event);
84
- } catch (eventError) {
85
- // Silently fail - event dispatch should never crash the app
86
- consola.warn('Failed to dispatch validation error event:', eventError);
87
- }
88
- }
89
-
90
- // Re-throw the error
91
- throw error;
92
- }
93
- }
94
-
95
-
96
- /**
97
- * API operation
98
- *
99
- * @method POST
100
- * @path /cfg/totp/disable/
101
- */
102
- export async function createTotpDisableCreate( data: DisableRequest, client?: any
103
- ): Promise<any> {
104
- const api = client || getAPIInstance()
105
- const response = await api.totp_management.totpDisableCreate(data)
106
- return response
107
- }
108
-
109
-
@@ -1,154 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- /**
4
- * Typed fetchers for TOTP Setup
5
- *
6
- * Universal functions that work in any environment:
7
- * - Next.js (App Router / Pages Router / Server Components)
8
- * - React Native
9
- * - Node.js backend
10
- *
11
- * These fetchers use Zod schemas for runtime validation.
12
- *
13
- * Usage:
14
- * ```typescript
15
- * // Configure API once (in your app entry point)
16
- * import { configureAPI } from '../../api-instance'
17
- * configureAPI({ baseUrl: 'https://api.example.com' })
18
- *
19
- * // Then use fetchers anywhere
20
- * const users = await getUsers({ page: 1 })
21
- *
22
- * // With SWR
23
- * const { data } = useSWR(['users', params], () => getUsers(params))
24
- *
25
- * // With React Query
26
- * const { data } = useQuery(['users', params], () => getUsers(params))
27
- *
28
- * // In Server Component or SSR (pass custom client)
29
- * import { API } from '../../index'
30
- * const api = new API('https://api.example.com')
31
- * const users = await getUsers({ page: 1 }, api)
32
- * ```
33
- */
34
- import { consola } from 'consola'
35
- import { ConfirmSetupRequestSchema, type ConfirmSetupRequest } from '../schemas/ConfirmSetupRequest.schema'
36
- import { ConfirmSetupResponseSchema, type ConfirmSetupResponse } from '../schemas/ConfirmSetupResponse.schema'
37
- import { SetupRequestSchema, type SetupRequest } from '../schemas/SetupRequest.schema'
38
- import { SetupResponseSchema, type SetupResponse } from '../schemas/SetupResponse.schema'
39
- import { getAPIInstance } from '../../api-instance'
40
-
41
- /**
42
- * API operation
43
- *
44
- * @method POST
45
- * @path /cfg/totp/setup/
46
- */
47
- export async function createTotpSetupCreate( data: SetupRequest, client?: any
48
- ): Promise<SetupResponse> {
49
- const api = client || getAPIInstance()
50
- const response = await api.totp_setup.create(data)
51
- try {
52
- return SetupResponseSchema.parse(response)
53
- } catch (error) {
54
- // Zod validation error - log detailed information
55
- consola.error('❌ Zod Validation Failed');
56
- consola.box(`createTotpSetupCreate\nPath: /cfg/totp/setup/\nMethod: POST`);
57
-
58
- if (error instanceof Error && 'issues' in error && Array.isArray((error as any).issues)) {
59
- consola.error('Validation Issues:');
60
- (error as any).issues.forEach((issue: any, index: number) => {
61
- consola.error(` ${index + 1}. ${issue.path.join('.') || 'root'}`);
62
- consola.error(` ├─ Message: ${issue.message}`);
63
- if (issue.expected) consola.error(` ├─ Expected: ${issue.expected}`);
64
- if (issue.received) consola.error(` └─ Received: ${issue.received}`);
65
- });
66
- }
67
-
68
- consola.error('Response data:', response);
69
-
70
- // Dispatch browser CustomEvent (only if window is defined)
71
- if (typeof window !== 'undefined' && error instanceof Error && 'issues' in error) {
72
- try {
73
- const event = new CustomEvent('zod-validation-error', {
74
- detail: {
75
- operation: 'createTotpSetupCreate',
76
- path: '/cfg/totp/setup/',
77
- method: 'POST',
78
- error: error,
79
- response: response,
80
- timestamp: new Date(),
81
- },
82
- bubbles: true,
83
- cancelable: false,
84
- });
85
- window.dispatchEvent(event);
86
- } catch (eventError) {
87
- // Silently fail - event dispatch should never crash the app
88
- consola.warn('Failed to dispatch validation error event:', eventError);
89
- }
90
- }
91
-
92
- // Re-throw the error
93
- throw error;
94
- }
95
- }
96
-
97
-
98
- /**
99
- * API operation
100
- *
101
- * @method POST
102
- * @path /cfg/totp/setup/confirm/
103
- */
104
- export async function createTotpSetupConfirmCreate( data: ConfirmSetupRequest, client?: any
105
- ): Promise<ConfirmSetupResponse> {
106
- const api = client || getAPIInstance()
107
- const response = await api.totp_setup.confirmCreate(data)
108
- try {
109
- return ConfirmSetupResponseSchema.parse(response)
110
- } catch (error) {
111
- // Zod validation error - log detailed information
112
- consola.error('❌ Zod Validation Failed');
113
- consola.box(`createTotpSetupConfirmCreate\nPath: /cfg/totp/setup/confirm/\nMethod: POST`);
114
-
115
- if (error instanceof Error && 'issues' in error && Array.isArray((error as any).issues)) {
116
- consola.error('Validation Issues:');
117
- (error as any).issues.forEach((issue: any, index: number) => {
118
- consola.error(` ${index + 1}. ${issue.path.join('.') || 'root'}`);
119
- consola.error(` ├─ Message: ${issue.message}`);
120
- if (issue.expected) consola.error(` ├─ Expected: ${issue.expected}`);
121
- if (issue.received) consola.error(` └─ Received: ${issue.received}`);
122
- });
123
- }
124
-
125
- consola.error('Response data:', response);
126
-
127
- // Dispatch browser CustomEvent (only if window is defined)
128
- if (typeof window !== 'undefined' && error instanceof Error && 'issues' in error) {
129
- try {
130
- const event = new CustomEvent('zod-validation-error', {
131
- detail: {
132
- operation: 'createTotpSetupConfirmCreate',
133
- path: '/cfg/totp/setup/confirm/',
134
- method: 'POST',
135
- error: error,
136
- response: response,
137
- timestamp: new Date(),
138
- },
139
- bubbles: true,
140
- cancelable: false,
141
- });
142
- window.dispatchEvent(event);
143
- } catch (eventError) {
144
- // Silently fail - event dispatch should never crash the app
145
- consola.warn('Failed to dispatch validation error event:', eventError);
146
- }
147
- }
148
-
149
- // Re-throw the error
150
- throw error;
151
- }
152
- }
153
-
154
-
@@ -1,153 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- /**
4
- * Typed fetchers for TOTP Verification
5
- *
6
- * Universal functions that work in any environment:
7
- * - Next.js (App Router / Pages Router / Server Components)
8
- * - React Native
9
- * - Node.js backend
10
- *
11
- * These fetchers use Zod schemas for runtime validation.
12
- *
13
- * Usage:
14
- * ```typescript
15
- * // Configure API once (in your app entry point)
16
- * import { configureAPI } from '../../api-instance'
17
- * configureAPI({ baseUrl: 'https://api.example.com' })
18
- *
19
- * // Then use fetchers anywhere
20
- * const users = await getUsers({ page: 1 })
21
- *
22
- * // With SWR
23
- * const { data } = useSWR(['users', params], () => getUsers(params))
24
- *
25
- * // With React Query
26
- * const { data } = useQuery(['users', params], () => getUsers(params))
27
- *
28
- * // In Server Component or SSR (pass custom client)
29
- * import { API } from '../../index'
30
- * const api = new API('https://api.example.com')
31
- * const users = await getUsers({ page: 1 }, api)
32
- * ```
33
- */
34
- import { consola } from 'consola'
35
- import { VerifyBackupRequestSchema, type VerifyBackupRequest } from '../schemas/VerifyBackupRequest.schema'
36
- import { VerifyRequestSchema, type VerifyRequest } from '../schemas/VerifyRequest.schema'
37
- import { VerifyResponseSchema, type VerifyResponse } from '../schemas/VerifyResponse.schema'
38
- import { getAPIInstance } from '../../api-instance'
39
-
40
- /**
41
- * API operation
42
- *
43
- * @method POST
44
- * @path /cfg/totp/verify/
45
- */
46
- export async function createTotpVerifyCreate( data: VerifyRequest, client?: any
47
- ): Promise<VerifyResponse> {
48
- const api = client || getAPIInstance()
49
- const response = await api.totp_verification.totpVerifyCreate(data)
50
- try {
51
- return VerifyResponseSchema.parse(response)
52
- } catch (error) {
53
- // Zod validation error - log detailed information
54
- consola.error('❌ Zod Validation Failed');
55
- consola.box(`createTotpVerifyCreate\nPath: /cfg/totp/verify/\nMethod: POST`);
56
-
57
- if (error instanceof Error && 'issues' in error && Array.isArray((error as any).issues)) {
58
- consola.error('Validation Issues:');
59
- (error as any).issues.forEach((issue: any, index: number) => {
60
- consola.error(` ${index + 1}. ${issue.path.join('.') || 'root'}`);
61
- consola.error(` ├─ Message: ${issue.message}`);
62
- if (issue.expected) consola.error(` ├─ Expected: ${issue.expected}`);
63
- if (issue.received) consola.error(` └─ Received: ${issue.received}`);
64
- });
65
- }
66
-
67
- consola.error('Response data:', response);
68
-
69
- // Dispatch browser CustomEvent (only if window is defined)
70
- if (typeof window !== 'undefined' && error instanceof Error && 'issues' in error) {
71
- try {
72
- const event = new CustomEvent('zod-validation-error', {
73
- detail: {
74
- operation: 'createTotpVerifyCreate',
75
- path: '/cfg/totp/verify/',
76
- method: 'POST',
77
- error: error,
78
- response: response,
79
- timestamp: new Date(),
80
- },
81
- bubbles: true,
82
- cancelable: false,
83
- });
84
- window.dispatchEvent(event);
85
- } catch (eventError) {
86
- // Silently fail - event dispatch should never crash the app
87
- consola.warn('Failed to dispatch validation error event:', eventError);
88
- }
89
- }
90
-
91
- // Re-throw the error
92
- throw error;
93
- }
94
- }
95
-
96
-
97
- /**
98
- * API operation
99
- *
100
- * @method POST
101
- * @path /cfg/totp/verify/backup/
102
- */
103
- export async function createTotpVerifyBackupCreate( data: VerifyBackupRequest, client?: any
104
- ): Promise<VerifyResponse> {
105
- const api = client || getAPIInstance()
106
- const response = await api.totp_verification.totpVerifyBackupCreate(data)
107
- try {
108
- return VerifyResponseSchema.parse(response)
109
- } catch (error) {
110
- // Zod validation error - log detailed information
111
- consola.error('❌ Zod Validation Failed');
112
- consola.box(`createTotpVerifyBackupCreate\nPath: /cfg/totp/verify/backup/\nMethod: POST`);
113
-
114
- if (error instanceof Error && 'issues' in error && Array.isArray((error as any).issues)) {
115
- consola.error('Validation Issues:');
116
- (error as any).issues.forEach((issue: any, index: number) => {
117
- consola.error(` ${index + 1}. ${issue.path.join('.') || 'root'}`);
118
- consola.error(` ├─ Message: ${issue.message}`);
119
- if (issue.expected) consola.error(` ├─ Expected: ${issue.expected}`);
120
- if (issue.received) consola.error(` └─ Received: ${issue.received}`);
121
- });
122
- }
123
-
124
- consola.error('Response data:', response);
125
-
126
- // Dispatch browser CustomEvent (only if window is defined)
127
- if (typeof window !== 'undefined' && error instanceof Error && 'issues' in error) {
128
- try {
129
- const event = new CustomEvent('zod-validation-error', {
130
- detail: {
131
- operation: 'createTotpVerifyBackupCreate',
132
- path: '/cfg/totp/verify/backup/',
133
- method: 'POST',
134
- error: error,
135
- response: response,
136
- timestamp: new Date(),
137
- },
138
- bubbles: true,
139
- cancelable: false,
140
- });
141
- window.dispatchEvent(event);
142
- } catch (eventError) {
143
- // Silently fail - event dispatch should never crash the app
144
- consola.warn('Failed to dispatch validation error event:', eventError);
145
- }
146
- }
147
-
148
- // Re-throw the error
149
- throw error;
150
- }
151
- }
152
-
153
-
@@ -1,34 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- 'use client';
4
-
5
- /**
6
- * SWR Hooks - React data fetching hooks
7
- *
8
- * Auto-generated from OpenAPI specification.
9
- * Powered by SWR for automatic caching and revalidation.
10
- *
11
- * Features:
12
- * - Automatic caching and deduplication
13
- * - Revalidation on focus/reconnect
14
- * - Optimistic updates
15
- * - Type-safe parameters and responses
16
- *
17
- * Usage:
18
- * ```typescript
19
- * import * as hooks from './hooks'
20
- *
21
- * // Query hooks (GET)
22
- * const { data, error, isLoading } = hooks.useUsers({ page: 1 })
23
- *
24
- * // Mutation hooks (POST/PUT/PATCH/DELETE)
25
- * const createUser = hooks.useCreateUser()
26
- * await createUser({ name: 'John' })
27
- * ```
28
- */
29
-
30
- export * from './totp__backup_codes'
31
- export * from './totp__totp_management'
32
- export * from './totp__totp_setup'
33
- export * from './totp__totp_verification'
34
- export * from './totp'
@@ -1,43 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- 'use client';
4
-
5
- /**
6
- * SWR Hooks for Totp
7
- *
8
- * React hooks powered by SWR for data fetching with automatic caching,
9
- * revalidation, and optimistic updates.
10
- *
11
- * Usage:
12
- * ```typescript
13
- * // Query hooks (GET)
14
- * const { data, error, isLoading } = useUsers({ page: 1 })
15
- *
16
- * // Mutation hooks (POST/PUT/PATCH/DELETE)
17
- * const createUser = useCreateUser()
18
- * await createUser({ name: 'John', email: 'john@example.com' })
19
- * ```
20
- */
21
- import { useSWRConfig } from 'swr'
22
- import * as Fetchers from '../fetchers/totp'
23
- import type { API } from '../../index'
24
-
25
- /**
26
- * API operation
27
- *
28
- * @method DELETE
29
- * @path /cfg/totp/devices/{id}/
30
- */
31
- export function useDeleteTotpDevicesDestroy() {
32
- const { mutate } = useSWRConfig()
33
-
34
- return async (id: string, client?: API): Promise<void> => {
35
- const result = await Fetchers.deleteTotpDevicesDestroy(id, client)
36
- // Revalidate related queries
37
- mutate('cfg-totp-devices')
38
- mutate('cfg-totp-device')
39
- return result
40
- }
41
- }
42
-
43
-
@@ -1,60 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- 'use client';
4
-
5
- /**
6
- * SWR Hooks for Backup Codes
7
- *
8
- * React hooks powered by SWR for data fetching with automatic caching,
9
- * revalidation, and optimistic updates.
10
- *
11
- * Usage:
12
- * ```typescript
13
- * // Query hooks (GET)
14
- * const { data, error, isLoading } = useUsers({ page: 1 })
15
- *
16
- * // Mutation hooks (POST/PUT/PATCH/DELETE)
17
- * const createUser = useCreateUser()
18
- * await createUser({ name: 'John', email: 'john@example.com' })
19
- * ```
20
- */
21
- import useSWR from 'swr'
22
- import { useSWRConfig } from 'swr'
23
- import * as Fetchers from '../fetchers/totp__backup_codes'
24
- import type { API } from '../../index'
25
- import type { BackupCodesRegenerateRequest } from '../schemas/BackupCodesRegenerateRequest.schema'
26
- import type { BackupCodesRegenerateResponse } from '../schemas/BackupCodesRegenerateResponse.schema'
27
- import type { BackupCodesStatus } from '../schemas/BackupCodesStatus.schema'
28
-
29
- /**
30
- * API operation
31
- *
32
- * @method GET
33
- * @path /cfg/totp/backup-codes/
34
- */
35
- export function useTotpBackupCodesRetrieve(client?: API): ReturnType<typeof useSWR<BackupCodesStatus>> {
36
- return useSWR<BackupCodesStatus>(
37
- 'cfg-totp-backup-code',
38
- () => Fetchers.getTotpBackupCodesRetrieve(client)
39
- )
40
- }
41
-
42
-
43
- /**
44
- * API operation
45
- *
46
- * @method POST
47
- * @path /cfg/totp/backup-codes/regenerate/
48
- */
49
- export function useCreateTotpBackupCodesRegenerateCreate() {
50
- const { mutate } = useSWRConfig()
51
-
52
- return async (data: BackupCodesRegenerateRequest, client?: API): Promise<BackupCodesRegenerateResponse> => {
53
- const result = await Fetchers.createTotpBackupCodesRegenerateCreate(data, client)
54
- // Revalidate related queries
55
- mutate('cfg-totp-backup-codes-regenerate')
56
- return result
57
- }
58
- }
59
-
60
-
@@ -1,59 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- 'use client';
4
-
5
- /**
6
- * SWR Hooks for TOTP Management
7
- *
8
- * React hooks powered by SWR for data fetching with automatic caching,
9
- * revalidation, and optimistic updates.
10
- *
11
- * Usage:
12
- * ```typescript
13
- * // Query hooks (GET)
14
- * const { data, error, isLoading } = useUsers({ page: 1 })
15
- *
16
- * // Mutation hooks (POST/PUT/PATCH/DELETE)
17
- * const createUser = useCreateUser()
18
- * await createUser({ name: 'John', email: 'john@example.com' })
19
- * ```
20
- */
21
- import useSWR from 'swr'
22
- import { useSWRConfig } from 'swr'
23
- import * as Fetchers from '../fetchers/totp__totp_management'
24
- import type { API } from '../../index'
25
- import type { DeviceListResponse } from '../schemas/DeviceListResponse.schema'
26
- import type { DisableRequest } from '../schemas/DisableRequest.schema'
27
-
28
- /**
29
- * API operation
30
- *
31
- * @method GET
32
- * @path /cfg/totp/devices/
33
- */
34
- export function useTotpDevicesRetrieve(client?: API): ReturnType<typeof useSWR<DeviceListResponse>> {
35
- return useSWR<DeviceListResponse>(
36
- 'cfg-totp-device',
37
- () => Fetchers.getTotpDevicesRetrieve(client)
38
- )
39
- }
40
-
41
-
42
- /**
43
- * API operation
44
- *
45
- * @method POST
46
- * @path /cfg/totp/disable/
47
- */
48
- export function useCreateTotpDisableCreate() {
49
- const { mutate } = useSWRConfig()
50
-
51
- return async (data: DisableRequest, client?: API): Promise<any> => {
52
- const result = await Fetchers.createTotpDisableCreate(data, client)
53
- // Revalidate related queries
54
- mutate('cfg-totp-disable')
55
- return result
56
- }
57
- }
58
-
59
-
@@ -1,64 +0,0 @@
1
- // @ts-nocheck
2
- // Auto-generated by DjangoCFG - see CLAUDE.md
3
- 'use client';
4
-
5
- /**
6
- * SWR Hooks for TOTP Setup
7
- *
8
- * React hooks powered by SWR for data fetching with automatic caching,
9
- * revalidation, and optimistic updates.
10
- *
11
- * Usage:
12
- * ```typescript
13
- * // Query hooks (GET)
14
- * const { data, error, isLoading } = useUsers({ page: 1 })
15
- *
16
- * // Mutation hooks (POST/PUT/PATCH/DELETE)
17
- * const createUser = useCreateUser()
18
- * await createUser({ name: 'John', email: 'john@example.com' })
19
- * ```
20
- */
21
- import { useSWRConfig } from 'swr'
22
- import * as Fetchers from '../fetchers/totp__totp_setup'
23
- import type { API } from '../../index'
24
- import type { ConfirmSetupRequest } from '../schemas/ConfirmSetupRequest.schema'
25
- import type { ConfirmSetupResponse } from '../schemas/ConfirmSetupResponse.schema'
26
- import type { SetupRequest } from '../schemas/SetupRequest.schema'
27
- import type { SetupResponse } from '../schemas/SetupResponse.schema'
28
-
29
- /**
30
- * API operation
31
- *
32
- * @method POST
33
- * @path /cfg/totp/setup/
34
- */
35
- export function useCreateTotpSetupCreate() {
36
- const { mutate } = useSWRConfig()
37
-
38
- return async (data: SetupRequest, client?: API): Promise<SetupResponse> => {
39
- const result = await Fetchers.createTotpSetupCreate(data, client)
40
- // Revalidate related queries
41
- mutate('cfg-totp-setup')
42
- return result
43
- }
44
- }
45
-
46
-
47
- /**
48
- * API operation
49
- *
50
- * @method POST
51
- * @path /cfg/totp/setup/confirm/
52
- */
53
- export function useCreateTotpSetupConfirmCreate() {
54
- const { mutate } = useSWRConfig()
55
-
56
- return async (data: ConfirmSetupRequest, client?: API): Promise<ConfirmSetupResponse> => {
57
- const result = await Fetchers.createTotpSetupConfirmCreate(data, client)
58
- // Revalidate related queries
59
- mutate('cfg-totp-setup-confirm')
60
- return result
61
- }
62
- }
63
-
64
-