Mirror of https://github.com/roostorg/coop github.com/roostorg/coop
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 65 lines 1.3 kB view raw
1export { 2 ItemTypeKind, 3 ItemSchema, 4 ItemTypeSchemaVariant, 5 ItemType, 6 UserItemType, 7 ContentItemType, 8 ThreadItemType, 9 UserSchemaFieldRoles, 10 ThreadSchemaFieldRoles, 11 ContentSchemaFieldRoles, 12 SchemaFieldRoles, 13 ItemTypeIdentifier, 14 ItemTypeSelector, 15 FieldRoleToScalarType, 16} from './types/itemTypes.js'; 17 18export { 19 RuleType, 20 RuleStatus, 21 RuleAlarmStatus, 22 ConditionInput, 23 CoopInput, 24 ValueComparator, 25 ConditionConjunction, 26 Condition, 27 ConditionSet, 28 LeafCondition, 29 ConditionSignalInfo, 30} from './types/rules.js'; 31 32export { 33 ConditionCompletionOutcome, 34 ConditionFailureOutcome, 35 ConditionOutcome, 36 ConditionCompletionMetadata, 37 ConditionFailureMetadata, 38 ConditionResult, 39 ConditionWithResult, 40 ConditionSetWithResult, 41 LeafConditionWithResult, 42} from './types/conditionResults.js'; 43 44export { 45 Action, 46 ActionType, 47 CustomAction, 48 EnqueueToMrtAction, 49} from './types/actions.js'; 50 51export { Policy, PolicyType } from './types/policies.js'; 52 53export { UserPenaltySeverity } from './types/shared.js'; 54 55export { 56 ModerationConfigService, 57 ModerationConfigErrorType, 58} from './moderationConfigService.js'; 59 60export { 61 makeRuleNameExistsError, 62 makeRuleIsMissingContentTypeError, 63 makeRuleHasRunningBacktestsError, 64 makeLocationBankNameExistsError, 65} from './errors.js';