diff options
Diffstat (limited to 'packages/sdk/js/src')
| -rw-r--r-- | packages/sdk/js/src/gen/types.gen.ts | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/packages/sdk/js/src/gen/types.gen.ts b/packages/sdk/js/src/gen/types.gen.ts index d2b990469..59294057f 100644 --- a/packages/sdk/js/src/gen/types.gen.ts +++ b/packages/sdk/js/src/gen/types.gen.ts @@ -23,18 +23,15 @@ export type Event = type: "storage.write" } & EventStorageWrite) | ({ - type: "file.edited" - } & EventFileEdited) - | ({ - type: "server.connected" - } & EventServerConnected) - | ({ type: "permission.updated" } & EventPermissionUpdated) | ({ type: "permission.replied" } & EventPermissionReplied) | ({ + type: "file.edited" + } & EventFileEdited) + | ({ type: "session.updated" } & EventSessionUpdated) | ({ @@ -47,6 +44,9 @@ export type Event = type: "session.error" } & EventSessionError) | ({ + type: "server.connected" + } & EventServerConnected) + | ({ type: "file.watcher.updated" } & EventFileWatcherUpdated) | ({ @@ -425,20 +425,6 @@ export type EventStorageWrite = { } } -export type EventFileEdited = { - type: "file.edited" - properties: { - file: string - } -} - -export type EventServerConnected = { - type: "server.connected" - properties: { - [key: string]: unknown - } -} - export type EventPermissionUpdated = { type: "permission.updated" properties: Permission @@ -469,6 +455,13 @@ export type EventPermissionReplied = { } } +export type EventFileEdited = { + type: "file.edited" + properties: { + file: string + } +} + export type EventSessionUpdated = { type: "session.updated" properties: { @@ -530,6 +523,13 @@ export type EventSessionError = { } } +export type EventServerConnected = { + type: "server.connected" + properties: { + [key: string]: unknown + } +} + export type EventFileWatcherUpdated = { type: "file.watcher.updated" properties: { |
