@wasserstoff/tribes-sdk
Version:
SDK for integrating with Tribes by Astrix platform on any EVM compatible chain
19 lines (18 loc) • 706 B
JavaScript
;
/**
* Organization types for Tribes by Astrix SDK
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrganizationEventType = void 0;
/**
* Organization event types
*/
var OrganizationEventType;
(function (OrganizationEventType) {
OrganizationEventType["CREATED"] = "CREATED";
OrganizationEventType["UPDATED"] = "UPDATED";
OrganizationEventType["TRIBE_ADDED"] = "TRIBE_ADDED";
OrganizationEventType["TRIBE_REMOVED"] = "TRIBE_REMOVED";
OrganizationEventType["MEMBER_ADDED"] = "MEMBER_ADDED";
OrganizationEventType["MEMBER_REMOVED"] = "MEMBER_REMOVED";
})(OrganizationEventType || (exports.OrganizationEventType = OrganizationEventType = {}));