@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
65 lines (64 loc) • 2.81 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SCEventDateFilterType = exports.SCEventRecurrenceType = exports.SCEventLocationFilterType = exports.SCEventLocationType = exports.SCEventSubscriptionStatusType = exports.SCEventPrivacyType = void 0;
/**
* SCEventPrivacyType enum
*/
var SCEventPrivacyType;
(function (SCEventPrivacyType) {
SCEventPrivacyType["PUBLIC"] = "public";
SCEventPrivacyType["PRIVATE"] = "private";
})(SCEventPrivacyType = exports.SCEventPrivacyType || (exports.SCEventPrivacyType = {}));
/**
* SCGroupSubscriptionStatusType enum
*/
var SCEventSubscriptionStatusType;
(function (SCEventSubscriptionStatusType) {
SCEventSubscriptionStatusType["SUBSCRIBED"] = "subscribed";
SCEventSubscriptionStatusType["REQUESTED"] = "requested";
SCEventSubscriptionStatusType["INVITED"] = "invited";
SCEventSubscriptionStatusType["GOING"] = "going";
SCEventSubscriptionStatusType["NOT_GOING"] = "not_going";
})(SCEventSubscriptionStatusType = exports.SCEventSubscriptionStatusType || (exports.SCEventSubscriptionStatusType = {}));
/**
* SCEventLocationType enum
*/
var SCEventLocationType;
(function (SCEventLocationType) {
SCEventLocationType["PERSON"] = "in person";
SCEventLocationType["ONLINE"] = "virtual";
SCEventLocationType["LIVESTREAM"] = "live_stream";
})(SCEventLocationType = exports.SCEventLocationType || (exports.SCEventLocationType = {}));
/**
* SCEventLocationFilterType enum
*/
var SCEventLocationFilterType;
(function (SCEventLocationFilterType) {
SCEventLocationFilterType["ANY"] = "any";
SCEventLocationFilterType["PERSON"] = "in person";
SCEventLocationFilterType["ONLINE"] = "virtual";
})(SCEventLocationFilterType = exports.SCEventLocationFilterType || (exports.SCEventLocationFilterType = {}));
/**
* SCEventRecurrenceType enum
*/
var SCEventRecurrenceType;
(function (SCEventRecurrenceType) {
SCEventRecurrenceType["NEVER"] = "never";
SCEventRecurrenceType["DAILY"] = "daily";
SCEventRecurrenceType["WEEKLY"] = "weekly";
SCEventRecurrenceType["MONTHLY"] = "monthly";
})(SCEventRecurrenceType = exports.SCEventRecurrenceType || (exports.SCEventRecurrenceType = {}));
/**
* SCEventRecurrenceType enum
*/
var SCEventDateFilterType;
(function (SCEventDateFilterType) {
SCEventDateFilterType["ALL"] = "all";
SCEventDateFilterType["TODAY"] = "today";
SCEventDateFilterType["TOMORROW"] = "tomorrow";
SCEventDateFilterType["THIS_WEEK"] = "this_week";
SCEventDateFilterType["NEXT_WEEK"] = "next_week";
SCEventDateFilterType["THIS_MONTH"] = "this_month";
SCEventDateFilterType["NOT_PAST"] = "not_past";
SCEventDateFilterType["PAST"] = "past";
})(SCEventDateFilterType = exports.SCEventDateFilterType || (exports.SCEventDateFilterType = {}));