@wasserstoff/tribes-sdk
Version:
SDK for integrating with Tribes by Astrix platform on any EVM compatible chain
35 lines (34 loc) • 1.11 kB
JavaScript
;
/**
* Content types based on the PostMinter contract
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.PostType = exports.InteractionType = void 0;
/**
* Post interaction types
*/
var InteractionType;
(function (InteractionType) {
InteractionType["LIKE"] = "LIKE";
InteractionType["COMMENT"] = "COMMENT";
InteractionType["SHARE"] = "SHARE";
InteractionType["BOOKMARK"] = "BOOKMARK";
InteractionType["REPORT"] = "REPORT";
InteractionType["REPLY"] = "REPLY";
InteractionType["MENTION"] = "MENTION";
InteractionType["REPOST"] = "REPOST";
InteractionType["TIP"] = "TIP";
})(InteractionType || (exports.InteractionType = InteractionType = {}));
/**
* Post types
*/
var PostType;
(function (PostType) {
PostType["TEXT"] = "TEXT";
PostType["RICH_MEDIA"] = "RICH_MEDIA";
PostType["EVENT"] = "EVENT";
PostType["POLL"] = "POLL";
PostType["PROJECT_UPDATE"] = "PROJECT_UPDATE";
PostType["COMMUNITY_UPDATE"] = "COMMUNITY_UPDATE";
PostType["ENCRYPTED"] = "ENCRYPTED";
})(PostType || (exports.PostType = PostType = {}));