academe-kit 0.15.0 → 0.16.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -4585,6 +4585,16 @@ function createUserService(apiClient) {
4585
4585
  body,
4586
4586
  });
4587
4587
  },
4588
+ /**
4589
+ * Consulta o status de uma criação assíncrona de usuário, a partir do
4590
+ * requestId devolvido pelo POST /users. Traz o `username` (login) gerado
4591
+ * pelo worker — útil quando o usuário foi criado sem email.
4592
+ */
4593
+ getUserCreationRequest(requestId) {
4594
+ return apiClient.GET("/user-creation-requests/{requestId}", {
4595
+ params: { path: { requestId } },
4596
+ });
4597
+ },
4588
4598
  /**
4589
4599
  * Update user information
4590
4600
  */