You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Fix RunCollectionListOptions status type (#681)
Fixes the problem with invalid type `RunCollectionListOptions` of
`RunCollectionClient.list` parameter `options`
`'TIMING_OUT' | 'TIMED_OUT'` -> `'TIMING-OUT' | 'TIMED-OUT'`
effectively changes it from
`'READY' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'ABORTING' | 'ABORTED' |
'TIMING_OUT' | 'TIMED_OUT'`
to
`'READY' | 'RUNNING' | 'SUCCEEDED' | 'FAILED' | 'ABORTING' | 'ABORTED' |
'TIMING-OUT' | 'TIMED-OUT'`
The reason for the bug is simple — `ACT_JOB_STATUSES` has super
misleading key names :)
see
[ACT_JOB_STATUSES](https://github.com/apify/apify-shared-js/blob/37169fcbbd013ee45a6484adcf83ce1135057b4b/packages/consts/src/consts.ts#L30)
0 commit comments