@drip_sync/drip
Version:
Scalable incremental sync for MongoDB aggregation pipelines
14 lines (13 loc) • 546 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.zodDripMetadata = exports.MetadataCollectionName = void 0;
const zod_1 = __importDefault(require("zod"));
exports.MetadataCollectionName = "_drip_metadata_v1";
exports.zodDripMetadata = zod_1.default.object({
// The name of the collection
_id: zod_1.default.string(),
resumeToken: zod_1.default.unknown(),
});