export const pullBitbookPostCloudFeed = async (logger: ILogger = debug): Promise<ICloudBitbookPost> => {
    // Grab the current time and convert to C# ticks
    logger.debug("Starting pull bitbook post cloud feed...");
    const now = new Date();
    const ticks = jsDateToTicks(now);