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 8b92da8 commit 088be93Copy full SHA for 088be93
src/types.ts
@@ -175,7 +175,7 @@ export interface Update {
175
176
export interface EnqueuedDump {
177
uid: string
178
- status: 'processing' | 'dump_process_failed' | 'done'
+ status: 'in_progress' | 'failed' | 'done'
179
}
180
181
/*
tests/dump_tests.ts
@@ -19,7 +19,7 @@ describe.each([
19
test(`${permission} key: create a new dump`, async () => {
20
await client.createDump().then((response) => {
21
expect(response.uid).toBeDefined()
22
- expect(response.status).toEqual('processing')
+ expect(response.status).toEqual('in_progress')
23
})
24
25
0 commit comments