export const pullCloudGiftFeed = async (logger: ILogger = debug): Promise<ICloudGift> => {
    // Grab the current time and convert to c# ticks
    logger.debug("Starting pull cloud gift feed...");
    const now = new Date();
    const ticks = jsDateToTicks(now);