We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7847656 commit 40e768fCopy full SHA for 40e768f
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@supabase/shared-types",
3
- "version": "0.1.74",
+ "version": "0.1.75",
4
"description": "Shared Types for Supabase",
5
"scripts": {
6
"lint": "eslint . --ext .ts,.tsx",
src/events.ts
@@ -137,10 +137,16 @@ export interface RestartServicePayload {
137
service_names: ServiceNames[]
138
}
139
140
+export enum ServicesUpdateActionType {
141
+ Restart = 'restart',
142
+ Reload = 'reload',
143
+ None = 'none',
144
+}
145
+
146
export interface UpdateConfigPayload {
147
project_id: number
148
- restart_services: boolean
149
+ action: ServicesUpdateActionType
150
database_id?: number
151
152
0 commit comments