Philip Korsholm
7bddb58542
feat: Update authentication middleware ( #6447 )
...
* authentication middleware update
* disable customer authentication
* call correct feature flag method
* fix authentication middleware for store/customers
* fix integration tests and add middleware for admin customers
* update seeders
* customer groups fix
* add authentication middleware for all admin endpoints
* Feat(medusa, user): require authentication for invite accept (#6448 )
* initial invite token validation for authentication invocation
* remove invite auth
* remove unused import
* cleanup tests
* refactor to auth instead of auth_user
* pr feedback
* update authenticatedRequest type
* update store authenticated endpoints
* update routes with type
* fix build
* fix build
* fix build
* use auth middleware for api-keys
2024-02-27 13:50:18 +08:00
Oli Juhl
ede221d4f7
feat(cart): POST /store/carts ( #6273 )
...
Depends on #6262
2024-02-05 15:15:15 +00:00
Sebastian Rindom
7903a15e0f
feat(customer): Add create and retrieve customer from store side ( #6267 )
...
**What**
- GET /store/customers/me
- POST /store/customers
- Workflow for customer account creation
- Authentication middleware on customer routes
2024-01-31 11:58:29 +00:00
Sebastian Rindom
f41877ef61
feat(customer): add customer group customer management ( #6276 )
...
**What**
- GET /admin/customer-groups/:id/customers
- POST /admin/customer-groups/:id/customers/batch
- POST /admin/customer-groups/:id/customers/remove
Workflows
2024-01-31 10:24:22 +00:00
Sebastian Rindom
ca0e0631af
feat(customer): add customer group management apis ( #6233 )
...
**What**
```
POST /admin/customer-groups
POST /admin/customer-groups/:id
GET /admin/customer-groups/:id
DELETE /admin/customer-groups/:id
```
- Workflows
2024-01-30 19:37:53 +00:00