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 6314385 commit 93f18a8Copy full SHA for 93f18a8
src/services/CallbackService.ts
@@ -32,7 +32,7 @@ export class CallbackService {
32
return {
33
item: await this.eqp.packageService.getPackageByItemId(updateInfo.item_id),
34
submission: await this.eqp.packageService.getPackageBySubmissionId(updateInfo.submission_id),
35
- status: updateInfo.current_status,
+ status: updateInfo.eqp_status,
36
flow: updateInfo.eqp_flow
37
};
38
}
src/types/callbacks.ts
@@ -17,7 +17,7 @@ export interface EQPStatusUpdateEvent extends RawCallbackEvent {
17
submission_id: string;
18
item_id: string;
19
eqp_flow: string;
20
- current_status: string;
+ eqp_status: string;
21
22
23
0 commit comments