@pagenote/notion-database
Version:
make notion as a real-database for server
33 lines • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnSupportNotionTypes = exports.supportNotionTypesArray = exports.SupportNotionTypes = void 0;
var SupportNotionTypes;
(function (SupportNotionTypes) {
SupportNotionTypes["title"] = "title";
SupportNotionTypes["rich_text"] = "rich_text";
SupportNotionTypes["number"] = "number";
SupportNotionTypes["checkbox"] = "checkbox";
SupportNotionTypes["multi_select"] = "multi_select";
SupportNotionTypes["date"] = "date";
SupportNotionTypes["select"] = "select";
SupportNotionTypes["status"] = "status";
SupportNotionTypes["url"] = "url";
})(SupportNotionTypes = exports.SupportNotionTypes || (exports.SupportNotionTypes = {}));
exports.supportNotionTypesArray = [
SupportNotionTypes.title,
SupportNotionTypes.rich_text,
SupportNotionTypes.number,
SupportNotionTypes.checkbox,
SupportNotionTypes.multi_select,
SupportNotionTypes.date,
SupportNotionTypes.select,
SupportNotionTypes.status,
SupportNotionTypes.url
];
var UnSupportNotionTypes;
(function (UnSupportNotionTypes) {
UnSupportNotionTypes["files"] = "files";
// status = 'status',
UnSupportNotionTypes["email"] = "email";
})(UnSupportNotionTypes = exports.UnSupportNotionTypes || (exports.UnSupportNotionTypes = {}));
//# sourceMappingURL=notionType.js.map