import { PushPress } from "@pushpress/pushpress";
const pushPress = new PushPress();
async function run() {
await pushPress.checkinCreatedEvent({
data: {
id: "chk_12345",
customer: "usr_12345",
company: "cli_12345",
name: "My Class",
typeId: "cit_12345",
type: {
id: "cit_12345",
name: "Group HIIT Training",
},
timestamp: 1672531200000,
role: "attendee",
},
created: 420989,
event: "checkin.created",
});
}
run();