Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 106x 3x 3x 1x 1x | import { API } from "aws-amplify";
import { sendGAEvent } from "@/utils/ReactGA/SendGAEvent";
export type SaveDraftPayload = {
id: string;
originalDraftId?: string;
event: string;
authority?: string;
draftData: Record<string, unknown>;
ifSeqNo?: number;
ifPrimaryTerm?: number;
};
export type SaveDraftResponse = {
message: string;
id: string;
seqNo?: number;
primaryTerm?: number;
};
export const saveDraft = async (payload: SaveDraftPayload): Promise<SaveDraftResponse> => {
try {
return await API.post("os", "/saveDraft", { body: payload });
} catch (error) {
sendGAEvent("api_error", {
error: `failure /saveDraft ${payload.id}`,
});
throw error;
}
};
|