We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker: svix/svix-server:v1.36.0
call: DELETE http://xxxxxxxxx:8071//api/v1/event-type/order.delivered/?expunge=true response: 204
but a list event-types always shows:
{ "data": [ { "name": "item.delivered", "description": "an item has been deliverd", "archived": false, "deprecated": false, "schemas": null, "createdAt": "2024-09-28T19:43:38.872620Z", "updatedAt": "2024-09-28T19:43:38.872620Z", "featureFlag": null }, { "name": "order.delivered", "description": "an order has been deliverd", "archived": true, "deprecated": false, "schemas": null, "createdAt": "2024-09-28T18:01:01.953404Z", "updatedAt": "2024-09-28T20:08:19.369679Z", "featureFlag": null } ], "iterator": "order.delivered", "prevIterator": "-item.delivered", "done": true }
so whatever I do, I cannot delete the "order.delivered" event-type 😢 please let me know if I am doing something wrong.
thanks!
The text was updated successfully, but these errors were encountered:
It changes it to "archived". You need to pass expunge in order to fully remove it: https://api.svix.com/docs#tag/Event-Type/operation/v1.event-type.delete
expunge
Sorry, something went wrong.
@tasn
is that wrong ????
I missed that. It looks like another feature that was built in SaaS but hasn't been backported to OSS.
@tasn so... is it save to delete it directly in the database ? or are there any dependencies ??
You can delete it in the database, it shouldn't be a problem. Though we'll also fix it first thing next week!
svix-aaron1011
Successfully merging a pull request may close this issue.
Bug Report
docker: svix/svix-server:v1.36.0
call: DELETE http://xxxxxxxxx:8071//api/v1/event-type/order.delivered/?expunge=true
response: 204
but a list event-types always shows:
so whatever I do, I cannot delete the "order.delivered" event-type 😢
please let me know if I am doing something wrong.
thanks!
The text was updated successfully, but these errors were encountered: