@selfcommunity/types 0.3.5-alpha.2 → 0.4.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/index.d.ts +2 -2
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +2 -2
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/types/feed.d.ts +4 -0
- package/lib/cjs/types/feed.d.ts.map +1 -1
- package/lib/cjs/types/index.d.ts +4 -2
- package/lib/cjs/types/index.d.ts.map +1 -1
- package/lib/cjs/types/index.js +3 -2
- package/lib/cjs/types/index.js.map +1 -1
- package/lib/cjs/types/legalPage.d.ts +4 -0
- package/lib/cjs/types/legalPage.d.ts.map +1 -1
- package/lib/cjs/types/metadata.d.ts +40 -0
- package/lib/cjs/types/metadata.d.ts.map +1 -0
- package/lib/cjs/types/metadata.js +15 -0
- package/lib/cjs/types/metadata.js.map +1 -0
- package/lib/cjs/types/reaction.d.ts +26 -0
- package/lib/cjs/types/reaction.d.ts.map +1 -0
- package/lib/cjs/types/reaction.js +6 -0
- package/lib/cjs/types/reaction.js.map +1 -0
- package/lib/cjs/types/user.d.ts +0 -36
- package/lib/cjs/types/user.d.ts.map +1 -1
- package/lib/cjs/types/user.js +1 -13
- package/lib/cjs/types/user.js.map +1 -1
- package/lib/cjs/types/vote.d.ts +5 -0
- package/lib/cjs/types/vote.d.ts.map +1 -1
- package/lib/esm/index.d.ts +2 -2
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +2 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/types/feed.d.ts +4 -0
- package/lib/esm/types/feed.d.ts.map +1 -1
- package/lib/esm/types/index.d.ts +4 -2
- package/lib/esm/types/index.d.ts.map +1 -1
- package/lib/esm/types/index.js +3 -2
- package/lib/esm/types/index.js.map +1 -1
- package/lib/esm/types/legalPage.d.ts +4 -0
- package/lib/esm/types/legalPage.d.ts.map +1 -1
- package/lib/esm/types/metadata.d.ts +40 -0
- package/lib/esm/types/metadata.d.ts.map +1 -0
- package/lib/esm/types/metadata.js +12 -0
- package/lib/esm/types/metadata.js.map +1 -0
- package/lib/esm/types/reaction.d.ts +26 -0
- package/lib/esm/types/reaction.d.ts.map +1 -0
- package/lib/esm/types/reaction.js +5 -0
- package/lib/esm/types/reaction.js.map +1 -0
- package/lib/esm/types/user.d.ts +0 -36
- package/lib/esm/types/user.d.ts.map +1 -1
- package/lib/esm/types/user.js +0 -12
- package/lib/esm/types/user.js.map +1 -1
- package/lib/esm/types/vote.d.ts +5 -0
- package/lib/esm/types/vote.d.ts.map +1 -1
- package/lib/umd/types.js +1 -1
- package/lib/umd/types.js.map +1 -1
- package/package.json +2 -2
package/lib/esm/types/index.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { SCAuthTokenType } from './auth';
|
|
2
2
|
import { SCBannerType, SCBroadcastMessageBannerType, SCBroadcastMessageType } from './broadcastMessage';
|
|
3
3
|
import { SCCustomAdvPosition, SCCustomAdvType } from './customAdv';
|
|
4
|
-
import { SCUserAutocompleteType, SCUserAvatarType, SCUserBlockedSettingsType, SCUserChangeEmailType, SCUserConnectionRequestType, SCUserConnectionStatusType, SCUserCounterType, SCUserEmailTokenType, SCUserFollowedStatusType, SCUserFollowerStatusType, SCUserHiddenByStatusType, SCUserHiddenStatusType, SCUserModerationType, SCUserPermissionType, SCUserReputationType, SCUserScoreType, SCUserScoreVariation, SCUserSettingsType, SCUserStatus, SCUserType, SCUserProviderAssociationType
|
|
4
|
+
import { SCUserAutocompleteType, SCUserAvatarType, SCUserBlockedSettingsType, SCUserChangeEmailType, SCUserConnectionRequestType, SCUserConnectionStatusType, SCUserCounterType, SCUserEmailTokenType, SCUserFollowedStatusType, SCUserFollowerStatusType, SCUserHiddenByStatusType, SCUserHiddenStatusType, SCUserModerationType, SCUserPermissionType, SCUserReputationType, SCUserScoreType, SCUserScoreVariation, SCUserSettingsType, SCUserStatus, SCUserType, SCUserProviderAssociationType } from './user';
|
|
5
5
|
import { SCTagType } from './tag';
|
|
6
6
|
import { SCCategoryAudienceType, SCCategoryFollowedStatusType, SCCategoryType } from './category';
|
|
7
7
|
import { SCEmbedType } from './embed';
|
|
8
8
|
import { SCChunkMediaType, SCMediaType } from './media';
|
|
9
|
+
import { SCMetadataTypeFieldType, SCMetadataType } from './metadata';
|
|
9
10
|
import { SCContributionLocation, SCLocalityType } from './location';
|
|
10
11
|
import { SCPollChoiceType, SCPollType, SCPollVoteType } from './poll';
|
|
11
12
|
import { SCCommentsOrderBy, SCCommentType, SCCommentTypologyType } from './comment';
|
|
@@ -29,8 +30,9 @@ import { SCInviteType } from './invite';
|
|
|
29
30
|
import { SCContributeStatusType, SCContributionStatus, SCContributionType, SCFlaggedContributionType } from './contribution';
|
|
30
31
|
import { SCPlatformType } from './platform';
|
|
31
32
|
import { SCAvatarType } from './avatar';
|
|
33
|
+
import { SCReactionType } from './reaction';
|
|
32
34
|
/**
|
|
33
35
|
* Exports all types
|
|
34
36
|
*/
|
|
35
|
-
export { SCBannerType, SCBroadcastMessageBannerType, SCBroadcastMessageType, SCAuthTokenType, SCUserType, SCUserSettingsType, SCUserStatus, SCUserBlockedSettingsType, SCUserModerationType, SCUserScoreVariation, SCUserScoreType, SCUserReputationType, SCUserAutocompleteType, SCUserCounterType, SCUserChangeEmailType, SCUserAvatarType, SCUserPermissionType, SCUserFollowedStatusType, SCUserFollowerStatusType, SCUserConnectionStatusType, SCUserHiddenStatusType, SCUserHiddenByStatusType, SCUserConnectionRequestType, SCUserEmailTokenType, SCUserProviderAssociationType,
|
|
37
|
+
export { SCBannerType, SCBroadcastMessageBannerType, SCBroadcastMessageType, SCAuthTokenType, SCUserType, SCUserSettingsType, SCUserStatus, SCUserBlockedSettingsType, SCUserModerationType, SCUserScoreVariation, SCUserScoreType, SCUserReputationType, SCUserAutocompleteType, SCUserCounterType, SCUserChangeEmailType, SCUserAvatarType, SCUserPermissionType, SCUserFollowedStatusType, SCUserFollowerStatusType, SCUserConnectionStatusType, SCUserHiddenStatusType, SCUserHiddenByStatusType, SCUserConnectionRequestType, SCUserEmailTokenType, SCUserProviderAssociationType, SCMetadataTypeFieldType, SCMetadataType, SCTagType, SCCategoryType, SCCategoryAudienceType, SCCategoryFollowedStatusType, SCCustomAdvPosition, SCCustomAdvType, SCEmbedType, SCMediaType, SCChunkMediaType, SCContributionLocation, SCLocalityType, SCPollChoiceType, SCPollType, SCPollVoteType, SCFeedUnitType, SCFeedUnitActivityType, SCFeedObjectType, SCFeedPostType, SCFeedDiscussionType, SCFeedStatusType, SCFeedObjectTypologyType, SCFeedUnitActivityTypologyType, SCFeedTypologyType, SCFeedUnseenCountType, SCFeedObjectSuspendedStatusType, SCFeedObjectHideStatusType, SCFeedObjectFollowingStatusType, SCCountByCategoryType, SCCommentTypologyType, SCCommentsOrderBy, SCCommentType, SCPrivateMessageType, SCPrivateMessageStatusType, SCPrivateMessageFileType, SCMessageFileType, SCPrivateMessageUploadMediaType, SCPrivateMessageUploadThumbnailType, SCPrivateMessageUploadMediaChunkType, SCNotificationTypologyType, SCNotificationAggregatedType, SCNotificationCommentType, SCNotificationConnectionAcceptType, SCNotificationConnectionRequestType, SCNotificationPrivateMessageType, SCNotificationMentionType, SCNotificationType, SCNotificationBlockedUserType, SCNotificationCollapsedForType, SCNotificationCustomNotificationType, SCNotificationDeletedForType, SCNotificationFollowType, SCNotificationKindlyNoticeType, SCNotificationUnBlockedUserType, SCNotificationUnDeletedForType, SCNotificationUserFollowType, SCNotificationVoteUpType, SCCustomNotificationType, SCNotificationTopicType, SCNotificationUnseenCountType, SCIncubatorType, SCIncubatorSubscriptionType, SCIncubatorStatusType, SCInviteType, SCNotificationIncubatorType, SCNotificationContributionType, SCPrizeType, SCPrizeUserType, SCPrizeUserStatusType, SCUserLoyaltyPointsType, SCWebhookEndpointType, SCWebhookEndpointAttemptType, SCWebhookEndpointSecretType, SCWebhookEventsType, SCVoteType, SCFlagType, SCFlagTypeEnum, SCFlagModerationStatusType, SCCustomPageType, SCDataPortabilityType, SCPreferenceType, SCFeatureType, SSOSignInType, SSOSignUpType, SCLegalPageType, SCLegalPagePoliciesType, SCLegalPageAckType, SCContributionInsightCountersType, SCContributionInsightType, SCEmbedInsightType, SCEmbedInsightCountersType, SCUsersInsightType, SCUsersInsightCountersType, SCFlaggedContributionType, SCContributionType, SCContributionStatus, SCContributeStatusType, SCPlatformType, SCAvatarType, SCReactionType };
|
|
36
38
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAC,MAAM,QAAQ,CAAC;AACvC,OAAO,EAAC,YAAY,EAAE,4BAA4B,EAAE,sBAAsB,EAAC,MAAM,oBAAoB,CAAC;AACtG,OAAO,EAAC,mBAAmB,EAAE,eAAe,EAAC,MAAM,aAAa,CAAC;AACjE,OAAO,EACL,sBAAsB,EACtB,gBAAgB,EAChB,yBAAyB,EACzB,qBAAqB,EACrB,2BAA2B,EAC3B,0BAA0B,EAC1B,iBAAiB,EACjB,oBAAoB,EACpB,wBAAwB,EACxB,wBAAwB,EACxB,wBAAwB,EACxB,sBAAsB,EACtB,oBAAoB,EACpB,oBAAoB,EACpB,oBAAoB,EACpB,eAAe,EACf,oBAAoB,EACpB,kBAAkB,EAClB,YAAY,EACZ,UAAU,EACV,6BAA6B,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"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"}
|
package/lib/esm/types/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { SCBroadcastMessageBannerType } from './broadcastMessage';
|
|
2
2
|
import { SCCustomAdvPosition } from './customAdv';
|
|
3
|
-
import { SCUserReputationType, SCUserStatus
|
|
3
|
+
import { SCUserReputationType, SCUserStatus } from './user';
|
|
4
|
+
import { SCMetadataTypeFieldType } from './metadata';
|
|
4
5
|
import { SCCommentsOrderBy, SCCommentTypologyType } from './comment';
|
|
5
6
|
import { SCMessageFileType, SCPrivateMessageStatusType } from './privateMessage';
|
|
6
7
|
import { SCIncubatorStatusType } from './incubator';
|
|
@@ -13,5 +14,5 @@ import { SCContributeStatusType, SCContributionType } from './contribution';
|
|
|
13
14
|
/**
|
|
14
15
|
* Exports all types
|
|
15
16
|
*/
|
|
16
|
-
export { SCBroadcastMessageBannerType, SCUserStatus, SCUserReputationType,
|
|
17
|
+
export { SCBroadcastMessageBannerType, SCUserStatus, SCUserReputationType, SCMetadataTypeFieldType, SCCustomAdvPosition, SCFeedObjectTypologyType, SCFeedUnitActivityTypologyType, SCFeedTypologyType, SCCommentTypologyType, SCCommentsOrderBy, SCPrivateMessageStatusType, SCMessageFileType, SCNotificationTypologyType, SCNotificationTopicType, SCIncubatorStatusType, SCPrizeUserStatusType, SCFlagTypeEnum, SCFlagModerationStatusType, SCLegalPagePoliciesType, SCContributionType, SCContributeStatusType };
|
|
17
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAe,4BAA4B,EAAyB,MAAM,oBAAoB,CAAC;AACtG,OAAO,EAAC,mBAAmB,EAAkB,MAAM,aAAa,CAAC;AACjE,OAAO,EAeL,oBAAoB,EAIpB,YAAY,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAe,4BAA4B,EAAyB,MAAM,oBAAoB,CAAC;AACtG,OAAO,EAAC,mBAAmB,EAAkB,MAAM,aAAa,CAAC;AACjE,OAAO,EAeL,oBAAoB,EAIpB,YAAY,EAGb,MAAM,QAAQ,CAAC;AAKhB,OAAO,EAAC,uBAAuB,EAAiB,MAAM,YAAY,CAAC;AAGnE,OAAO,EAAC,iBAAiB,EAAiB,qBAAqB,EAAC,MAAM,WAAW,CAAC;AAClF,OAAO,EACL,iBAAiB,EAEjB,0BAA0B,EAK3B,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EAAC,qBAAqB,EAA+C,MAAM,aAAa,CAAC;AAEhG,OAAO,EAAc,qBAAqB,EAA2C,MAAM,SAAS,CAAC;AACrG,OAAO,EAOL,wBAAwB,EAGxB,kBAAkB,EAElB,8BAA8B,EAG/B,MAAM,QAAQ,CAAC;AAChB,OAAO,EAeL,uBAAuB,EAEvB,0BAA0B,EAM3B,MAAM,gBAAgB,CAAC;AAGxB,OAAO,EAAC,0BAA0B,EAAc,cAAc,EAAC,MAAM,QAAQ,CAAC;AAM9E,OAAO,EAAC,uBAAuB,EAAsC,MAAM,aAAa,CAAC;AAUzF,OAAO,EAAC,sBAAsB,EAAwB,kBAAkB,EAA4B,MAAM,gBAAgB,CAAC;AAI3H;;GAEG;AACH,OAAO,EAEL,4BAA4B,EAK5B,YAAY,EAKZ,oBAAoB,EAcpB,uBAAuB,EAMvB,mBAAmB,EAgBnB,wBAAwB,EACxB,8BAA8B,EAC9B,kBAAkB,EAMlB,qBAAqB,EACrB,iBAAiB,EAGjB,0BAA0B,EAE1B,iBAAiB,EAIjB,0BAA0B,EAmB1B,uBAAuB,EAIvB,qBAAqB,EAMrB,qBAAqB,EAQrB,cAAc,EACd,0BAA0B,EAQ1B,uBAAuB,EASvB,kBAAkB,EAElB,sBAAsB,EAIvB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"legalPage.d.ts","sourceRoot":"","sources":["../../../src/types/legalPage.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB;IACjC,OAAO,YAAY;IACnB,oBAAoB,QAAQ;IAC5B,OAAO,YAAY;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAC;IAC1B;;OAEG;IACH,QAAQ,EAAE,IAAI,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAC;IAC1B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"legalPage.d.ts","sourceRoot":"","sources":["../../../src/types/legalPage.ts"],"names":[],"mappings":"AAAA,oBAAY,uBAAuB;IACjC,OAAO,YAAY;IACnB,oBAAoB,QAAQ;IAC5B,OAAO,YAAY;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,gBAAgB,EAAE,MAAM,CAAC;IACzB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAC;IAC1B;;OAEG;IACH,QAAQ,EAAE,IAAI,GAAG,MAAM,CAAC;IACxB;;OAEG;IACH,UAAU,EAAE,IAAI,GAAG,MAAM,CAAC;IAC1B;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,GAAG,CAAC,EAAE,kBAAkB,CAAC;CAC1B;AAED;;GAEG;AAEH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IACX;;OAEG;IACH,WAAW,EAAE,IAAI,GAAG,MAAM,CAAC;IAC3B;;OAEG;IACH,eAAe,EAAE,IAAI,GAAG,MAAM,CAAC;IAC/B;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Metadata type field
|
|
3
|
+
*/
|
|
4
|
+
export declare enum SCMetadataTypeFieldType {
|
|
5
|
+
STRING = "string",
|
|
6
|
+
EMAIL = "email",
|
|
7
|
+
URL = "url",
|
|
8
|
+
ENUM = "enum",
|
|
9
|
+
PHONE_NUMBER = "phone_number"
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* Metadata type used to render custom fields
|
|
13
|
+
*/
|
|
14
|
+
export interface SCMetadataType {
|
|
15
|
+
/**
|
|
16
|
+
* The label of the metadata
|
|
17
|
+
*/
|
|
18
|
+
label: string;
|
|
19
|
+
/**
|
|
20
|
+
* Is the metadata mandatory for the user
|
|
21
|
+
*/
|
|
22
|
+
mandatory?: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* Is the metadata visible in signup form
|
|
25
|
+
*/
|
|
26
|
+
in_signup?: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Is metadata visible in exports
|
|
29
|
+
*/
|
|
30
|
+
in_export?: boolean;
|
|
31
|
+
/**
|
|
32
|
+
* Metadata type
|
|
33
|
+
*/
|
|
34
|
+
type?: SCMetadataTypeFieldType;
|
|
35
|
+
/**
|
|
36
|
+
* Options for the enum type
|
|
37
|
+
*/
|
|
38
|
+
type_options?: string[];
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=metadata.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metadata.d.ts","sourceRoot":"","sources":["../../../src/types/metadata.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,uBAAuB;IACjC,MAAM,WAAW;IACjB,KAAK,UAAU;IACf,GAAG,QAAQ;IACX,IAAI,SAAS;IACb,YAAY,iBAAiB;CAC9B;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB;;OAEG;IACH,IAAI,CAAC,EAAE,uBAAuB,CAAC;IAC/B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Metadata type field
|
|
3
|
+
*/
|
|
4
|
+
export var SCMetadataTypeFieldType;
|
|
5
|
+
(function (SCMetadataTypeFieldType) {
|
|
6
|
+
SCMetadataTypeFieldType["STRING"] = "string";
|
|
7
|
+
SCMetadataTypeFieldType["EMAIL"] = "email";
|
|
8
|
+
SCMetadataTypeFieldType["URL"] = "url";
|
|
9
|
+
SCMetadataTypeFieldType["ENUM"] = "enum";
|
|
10
|
+
SCMetadataTypeFieldType["PHONE_NUMBER"] = "phone_number";
|
|
11
|
+
})(SCMetadataTypeFieldType || (SCMetadataTypeFieldType = {}));
|
|
12
|
+
//# sourceMappingURL=metadata.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"metadata.js","sourceRoot":"","sources":["../../../src/types/metadata.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAN,IAAY,uBAMX;AAND,WAAY,uBAAuB;IACjC,4CAAiB,CAAA;IACjB,0CAAe,CAAA;IACf,sCAAW,CAAA;IACX,wCAAa,CAAA;IACb,wDAA6B,CAAA;AAC/B,CAAC,EANW,uBAAuB,KAAvB,uBAAuB,QAMlC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* SCReactionType interface
|
|
3
|
+
*/
|
|
4
|
+
export interface SCReactionType {
|
|
5
|
+
/**
|
|
6
|
+
* Unique integer value identifying this reaction
|
|
7
|
+
*/
|
|
8
|
+
id?: number;
|
|
9
|
+
/**
|
|
10
|
+
* The label of the reaction (unique)
|
|
11
|
+
*/
|
|
12
|
+
label?: string;
|
|
13
|
+
/**
|
|
14
|
+
* The sentiment value associated to the reaction
|
|
15
|
+
*/
|
|
16
|
+
sentiment?: number;
|
|
17
|
+
/**
|
|
18
|
+
* The image url of the reaction
|
|
19
|
+
*/
|
|
20
|
+
image?: string;
|
|
21
|
+
/**
|
|
22
|
+
* Is this reaction active?
|
|
23
|
+
*/
|
|
24
|
+
active?: boolean;
|
|
25
|
+
}
|
|
26
|
+
//# sourceMappingURL=reaction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reaction.d.ts","sourceRoot":"","sources":["../../../src/types/reaction.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IACf;;OAEG;IACH,MAAM,CAAC,EAAE,OAAO,CAAC;CAClB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"reaction.js","sourceRoot":"","sources":["../../../src/types/reaction.ts"],"names":[],"mappings":"AAAA;;GAEG"}
|
package/lib/esm/types/user.d.ts
CHANGED
|
@@ -545,40 +545,4 @@ export interface SCUserProviderAssociationType {
|
|
|
545
545
|
*/
|
|
546
546
|
metadata?: any;
|
|
547
547
|
}
|
|
548
|
-
/**
|
|
549
|
-
* User metadata type field
|
|
550
|
-
*/
|
|
551
|
-
export declare enum SCUserMetadataTypeFieldType {
|
|
552
|
-
STRING = "string",
|
|
553
|
-
EMAIL = "email",
|
|
554
|
-
URL = "url",
|
|
555
|
-
ENUM = "enum",
|
|
556
|
-
PHONE_NUMBER = "phone_number"
|
|
557
|
-
}
|
|
558
|
-
export interface SCUserMetadataType {
|
|
559
|
-
/**
|
|
560
|
-
* The label of the metadata
|
|
561
|
-
*/
|
|
562
|
-
label: string;
|
|
563
|
-
/**
|
|
564
|
-
* Is the metadata mandatory for the user
|
|
565
|
-
*/
|
|
566
|
-
mandatory?: boolean;
|
|
567
|
-
/**
|
|
568
|
-
* Is the metadata visible in signup form
|
|
569
|
-
*/
|
|
570
|
-
in_signup?: boolean;
|
|
571
|
-
/**
|
|
572
|
-
* Is metadata visible in exports
|
|
573
|
-
*/
|
|
574
|
-
in_export?: boolean;
|
|
575
|
-
/**
|
|
576
|
-
* Metadata type
|
|
577
|
-
*/
|
|
578
|
-
type?: SCUserMetadataTypeFieldType;
|
|
579
|
-
/**
|
|
580
|
-
* Options for the enum type
|
|
581
|
-
*/
|
|
582
|
-
type_options?: string[];
|
|
583
|
-
}
|
|
584
548
|
//# sourceMappingURL=user.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../src/types/user.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"user.d.ts","sourceRoot":"","sources":["../../../src/types/user.ts"],"names":[],"mappings":"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"}
|
package/lib/esm/types/user.js
CHANGED
|
@@ -30,16 +30,4 @@ export var SCUserReputationType;
|
|
|
30
30
|
SCUserReputationType[SCUserReputationType["LOSE_BY_FOLLOWER"] = -19] = "LOSE_BY_FOLLOWER";
|
|
31
31
|
SCUserReputationType[SCUserReputationType["LOSE_BY_BLOCK_ACCOUNT"] = -20] = "LOSE_BY_BLOCK_ACCOUNT";
|
|
32
32
|
})(SCUserReputationType || (SCUserReputationType = {}));
|
|
33
|
-
/**
|
|
34
|
-
* User metadata type field
|
|
35
|
-
*/
|
|
36
|
-
export var SCUserMetadataTypeFieldType;
|
|
37
|
-
(function (SCUserMetadataTypeFieldType) {
|
|
38
|
-
SCUserMetadataTypeFieldType["STRING"] = "string";
|
|
39
|
-
SCUserMetadataTypeFieldType["EMAIL"] = "email";
|
|
40
|
-
SCUserMetadataTypeFieldType["URL"] = "url";
|
|
41
|
-
SCUserMetadataTypeFieldType["ENUM"] = "enum";
|
|
42
|
-
SCUserMetadataTypeFieldType["PHONE_NUMBER"] = "phone_number";
|
|
43
|
-
})(SCUserMetadataTypeFieldType || (SCUserMetadataTypeFieldType = {}));
|
|
44
|
-
;
|
|
45
33
|
//# sourceMappingURL=user.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../src/types/user.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,8BAAc,CAAA;IACd,6BAAa,CAAA;IACb,6BAAa,CAAA;IACb,kCAAkB,CAAA;AACpB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AAuTD,MAAM,CAAN,IAAY,oBAoBX;AApBD,WAAY,oBAAoB;IAC9B,qFAAmB,CAAA;IACnB,kGAA0B,CAAA;IAC1B,wIAA6C,CAAA;IAC7C,0FAAsB,CAAA;IACtB,wHAAqC,CAAA;IACrC,0HAAsC,CAAA;IACtC,4FAAuB,CAAA;IACvB,wFAAqB,CAAA;IACrB,8FAAwB,CAAA;IACxB,wFAAqB,CAAA;IACrB,sGAA4B,CAAA;IAC5B,sGAA4B,CAAA;IAC5B,mHAAmC,CAAA;IACnC,+FAAyB,CAAA;IACzB,6HAAwC,CAAA;IACxC,+HAAyC,CAAA;IACzC,6FAAwB,CAAA;IACxB,yFAAsB,CAAA;IACtB,mGAA2B,CAAA;AAC7B,CAAC,EApBW,oBAAoB,KAApB,oBAAoB,QAoB/B
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../../../src/types/user.ts"],"names":[],"mappings":"AAMA;;GAEG;AACH,MAAM,CAAN,IAAY,YAKX;AALD,WAAY,YAAY;IACtB,8BAAc,CAAA;IACd,6BAAa,CAAA;IACb,6BAAa,CAAA;IACb,kCAAkB,CAAA;AACpB,CAAC,EALW,YAAY,KAAZ,YAAY,QAKvB;AAuTD,MAAM,CAAN,IAAY,oBAoBX;AApBD,WAAY,oBAAoB;IAC9B,qFAAmB,CAAA;IACnB,kGAA0B,CAAA;IAC1B,wIAA6C,CAAA;IAC7C,0FAAsB,CAAA;IACtB,wHAAqC,CAAA;IACrC,0HAAsC,CAAA;IACtC,4FAAuB,CAAA;IACvB,wFAAqB,CAAA;IACrB,8FAAwB,CAAA;IACxB,wFAAqB,CAAA;IACrB,sGAA4B,CAAA;IAC5B,sGAA4B,CAAA;IAC5B,mHAAmC,CAAA;IACnC,+FAAyB,CAAA;IACzB,6HAAwC,CAAA;IACxC,+HAAyC,CAAA;IACzC,6FAAwB,CAAA;IACxB,yFAAsB,CAAA;IACtB,mGAA2B,CAAA;AAC7B,CAAC,EApBW,oBAAoB,KAApB,oBAAoB,QAoB/B"}
|
package/lib/esm/types/vote.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { SCUserType } from './user';
|
|
2
|
+
import { SCReactionType } from './reaction';
|
|
2
3
|
/**
|
|
3
4
|
* SCVoteType interface
|
|
4
5
|
*/
|
|
@@ -7,6 +8,10 @@ export interface SCVoteType {
|
|
|
7
8
|
* The user who voted.
|
|
8
9
|
*/
|
|
9
10
|
user?: SCUserType;
|
|
11
|
+
/**
|
|
12
|
+
* The reaction used.
|
|
13
|
+
*/
|
|
14
|
+
reaction?: SCReactionType;
|
|
10
15
|
/**
|
|
11
16
|
* Date time of vote.
|
|
12
17
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vote.d.ts","sourceRoot":"","sources":["../../../src/types/vote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,QAAQ,CAAC;AAClC;;GAEG;AAEH,MAAM,WAAW,UAAU;IACzB;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;CAC1B"}
|
|
1
|
+
{"version":3,"file":"vote.d.ts","sourceRoot":"","sources":["../../../src/types/vote.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,QAAQ,CAAC;AAClC,OAAO,EAAC,cAAc,EAAC,MAAM,YAAY,CAAC;AAC1C;;GAEG;AAEH,MAAM,WAAW,UAAU;IACzB;;OAEG;IACH,IAAI,CAAC,EAAE,UAAU,CAAC;IAClB;;OAEG;IACH,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B;;OAEG;IACH,QAAQ,CAAC,EAAE,IAAI,GAAG,MAAM,CAAC;CAC1B"}
|
package/lib/umd/types.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
/*! For license information please see types.js.LICENSE.txt */
|
|
2
|
-
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.SelfCommunityTypes=t():e.SelfCommunityTypes=t()}(self,(()=>(()=>{"use strict";var e={852:(e,t)=>{t.__esModule=!0},401:(e,t)=>{t.__esModule=!0},665:(e,t)=>{let o;t.__esModule=!0,t.SCBroadcastMessageBannerType=void 0,t.SCBroadcastMessageBannerType=o,function(e){e.HTML="html_banner",e.NOTIFICATION="notification_banner"}(o||(t.SCBroadcastMessageBannerType=o={}))},511:(e,t)=>{t.__esModule=!0},444:(e,t)=>{let o;t.__esModule=!0,t.SCCommentsOrderBy=t.SCCommentTypologyType=void 0,t.SCCommentTypologyType="comment",t.SCCommentsOrderBy=o,function(e){e.ADDED_AT_DESC="-added_at",e.ADDED_AT_ASC="added_at",e.CONNECTION_DESC="-connection",e.CONNECTION_ASC="connection"}(o||(t.SCCommentsOrderBy=o={}))},275:(e,t)=>{let o,i;t.__esModule=!0,t.SCContributionType=t.SCContributeStatusType=void 0,t.SCContributionType=o,function(e){e.DISCUSSION="discussion",e.POST="post",e.STATUS="status",e.COMMENT="comment"}(o||(t.SCContributionType=o={})),t.SCContributeStatusType=i,function(e){e.OPEN="open",e.IGNORED="ignored",e.HIDDEN="hidden",e.DELETED="deleted"}(i||(t.SCContributeStatusType=i={}))},386:(e,t)=>{let o;t.__esModule=!0,t.SCCustomAdvPosition=void 0,t.SCCustomAdvPosition=o,function(e){e.POSITION_BELOW_TOPBAR="BELOW_TOPBAR",e.POSITION_BELOW_FEED_OBJECT="BELOW_THE_POST",e.POSITION_ABOVE_FOOTER_BAR="ABOVE_FOOTER_BAR",e.POSITION_FOOTER_STICKY="FOOTER_STICKY",e.POSITION_IN_COMMENTS="IN_POST_COMMENTS",e.POSITION_RELATED_POSTS_COLUMN="RELATED_POSTS_COLUMN",e.POSITION_FEED_SIDEBAR="TOOLS_COLUMN",e.POSITION_FEED="IN_STREAM"}(o||(t.SCCustomAdvPosition=o={}))},82:(e,t)=>{t.__esModule=!0},767:(e,t)=>{t.__esModule=!0},55:(e,t)=>{t.__esModule=!0},797:(e,t)=>{t.__esModule=!0},22:(e,t)=>{t.__esModule=!0},505:(e,t)=>{let o,i,C;t.__esModule=!0,t.SCFeedUnitActivityTypologyType=t.SCFeedTypologyType=t.SCFeedObjectTypologyType=void 0,t.SCFeedTypologyType=o,function(e){e.HOME="home",e.EXPLORE="explore"}(o||(t.SCFeedTypologyType=o={})),t.SCFeedObjectTypologyType=i,function(e){e.DISCUSSION="discussion",e.POST="post",e.STATUS="status"}(i||(t.SCFeedObjectTypologyType=i={})),t.SCFeedUnitActivityTypologyType=C,function(e){e.COMMENT="comment",e.VOTE="vote",e.POLLVOTE="pollvote",e.FOLLOW="follow"}(C||(t.SCFeedUnitActivityTypologyType=C={}))},561:(e,t)=>{let o,i;t.__esModule=!0,t.SCFlagTypeEnum=t.SCFlagModerationStatusType=void 0,t.SCFlagTypeEnum=o,function(e){e[e.SPAM=0]="SPAM",e[e.AGGRESSIVE=1]="AGGRESSIVE",e[e.VULGAR=2]="VULGAR",e[e.POOR=3]="POOR",e[e.OFFTOPIC=4]="OFFTOPIC"}(o||(t.SCFlagTypeEnum=o={})),t.SCFlagModerationStatusType=i,function(e){e.IGNORED="ignored",e.DELETED="deleted",e.HIDDEN="hidden"}(i||(t.SCFlagModerationStatusType=i={}))},947:(e,t)=>{let o;t.__esModule=!0,t.SCIncubatorStatusType=void 0,t.SCIncubatorStatusType=o,function(e){e[e.PENDING=0]="PENDING",e[e.PROPOSAL=1]="PROPOSAL",e[e.APPROVED=2]="APPROVED",e[e.IGNORED=3]="IGNORED"}(o||(t.SCIncubatorStatusType=o={}))},994:(e,t,o)=>{t.__esModule=!0;var i=o(852);t.SCAuthTokenType=i.SCAuthTokenType;var C=o(665);t.SCBannerType=C.SCBannerType,t.SCBroadcastMessageBannerType=C.SCBroadcastMessageBannerType,t.SCBroadcastMessageType=C.SCBroadcastMessageType;var S=o(386);t.SCCustomAdvPosition=S.SCCustomAdvPosition,t.SCCustomAdvType=S.SCCustomAdvType;var T=o(967);t.SCUserAutocompleteType=T.SCUserAutocompleteType,t.SCUserAvatarType=T.SCUserAvatarType,t.SCUserBlockedSettingsType=T.SCUserBlockedSettingsType,t.SCUserChangeEmailType=T.SCUserChangeEmailType,t.SCUserConnectionRequestType=T.SCUserConnectionRequestType,t.SCUserConnectionStatusType=T.SCUserConnectionStatusType,t.SCUserCounterType=T.SCUserCounterType,t.SCUserEmailTokenType=T.SCUserEmailTokenType,t.SCUserFollowedStatusType=T.SCUserFollowedStatusType,t.SCUserFollowerStatusType=T.SCUserFollowerStatusType,t.SCUserHiddenByStatusType=T.SCUserHiddenByStatusType,t.SCUserHiddenStatusType=T.SCUserHiddenStatusType,t.SCUserModerationType=T.SCUserModerationType,t.SCUserPermissionType=T.SCUserPermissionType,t.SCUserReputationType=T.SCUserReputationType,t.SCUserScoreType=T.SCUserScoreType,t.SCUserScoreVariation=T.SCUserScoreVariation,t.SCUserSettingsType=T.SCUserSettingsType,t.SCUserStatus=T.SCUserStatus,t.SCUserType=T.SCUserType,t.SCUserProviderAssociationType=T.SCUserProviderAssociationType,t.SCUserMetadataTypeFieldType=T.SCUserMetadataTypeFieldType,t.SCUserMetadataType=T.SCUserMetadataType;var n=o(549);t.SCTagType=n.SCTagType;var p=o(511);t.SCCategoryAudienceType=p.SCCategoryAudienceType,t.SCCategoryFollowedStatusType=p.SCCategoryFollowedStatusType,t.SCCategoryType=p.SCCategoryType;var y=o(797);t.SCEmbedType=y.SCEmbedType;var a=o(398);t.SCChunkMediaType=a.SCChunkMediaType,t.SCMediaType=a.SCMediaType;var s=o(714);t.SCContributionLocation=s.SCContributionLocation,t.SCLocalityType=s.SCLocalityType;var r=o(3);t.SCPollChoiceType=r.SCPollChoiceType,t.SCPollType=r.SCPollType,t.SCPollVoteType=r.SCPollVoteType;var c=o(444);t.SCCommentsOrderBy=c.SCCommentsOrderBy,t.SCCommentType=c.SCCommentType,t.SCCommentTypologyType=c.SCCommentTypologyType;var d=o(461);t.SCMessageFileType=d.SCMessageFileType,t.SCPrivateMessageFileType=d.SCPrivateMessageFileType,t.SCPrivateMessageStatusType=d.SCPrivateMessageStatusType,t.SCPrivateMessageType=d.SCPrivateMessageType,t.SCPrivateMessageUploadMediaChunkType=d.SCPrivateMessageUploadMediaChunkType,t.SCPrivateMessageUploadMediaType=d.SCPrivateMessageUploadMediaType,t.SCPrivateMessageUploadThumbnailType=d.SCPrivateMessageUploadThumbnailType;var l=o(947);t.SCIncubatorStatusType=l.SCIncubatorStatusType,t.SCIncubatorSubscriptionType=l.SCIncubatorSubscriptionType,t.SCIncubatorType=l.SCIncubatorType;var u=o(82);t.SCCustomNotificationType=u.SCCustomNotificationType;var _=o(303);t.SCPrizeType=_.SCPrizeType,t.SCPrizeUserStatusType=_.SCPrizeUserStatusType,t.SCPrizeUserType=_.SCPrizeUserType,t.SCUserLoyaltyPointsType=_.SCUserLoyaltyPointsType;var E=o(505);t.SCCountByCategoryType=E.SCCountByCategoryType,t.SCFeedDiscussionType=E.SCFeedDiscussionType,t.SCFeedObjectFollowingStatusType=E.SCFeedObjectFollowingStatusType,t.SCFeedObjectHideStatusType=E.SCFeedObjectHideStatusType,t.SCFeedObjectSuspendedStatusType=E.SCFeedObjectSuspendedStatusType,t.SCFeedObjectType=E.SCFeedObjectType,t.SCFeedObjectTypologyType=E.SCFeedObjectTypologyType,t.SCFeedPostType=E.SCFeedPostType,t.SCFeedStatusType=E.SCFeedStatusType,t.SCFeedTypologyType=E.SCFeedTypologyType,t.SCFeedUnitActivityType=E.SCFeedUnitActivityType,t.SCFeedUnitActivityTypologyType=E.SCFeedUnitActivityTypologyType,t.SCFeedUnitType=E.SCFeedUnitType,t.SCFeedUnseenCountType=E.SCFeedUnseenCountType;var N=o(768);t.SCNotificationAggregatedType=N.SCNotificationAggregatedType,t.SCNotificationBlockedUserType=N.SCNotificationBlockedUserType,t.SCNotificationCollapsedForType=N.SCNotificationCollapsedForType,t.SCNotificationCommentType=N.SCNotificationCommentType,t.SCNotificationConnectionAcceptType=N.SCNotificationConnectionAcceptType,t.SCNotificationConnectionRequestType=N.SCNotificationConnectionRequestType,t.SCNotificationContributionType=N.SCNotificationContributionType,t.SCNotificationCustomNotificationType=N.SCNotificationCustomNotificationType,t.SCNotificationDeletedForType=N.SCNotificationDeletedForType,t.SCNotificationFollowType=N.SCNotificationFollowType,t.SCNotificationIncubatorType=N.SCNotificationIncubatorType,t.SCNotificationKindlyNoticeType=N.SCNotificationKindlyNoticeType,t.SCNotificationMentionType=N.SCNotificationMentionType,t.SCNotificationPrivateMessageType=N.SCNotificationPrivateMessageType,t.SCNotificationTopicType=N.SCNotificationTopicType,t.SCNotificationType=N.SCNotificationType,t.SCNotificationTypologyType=N.SCNotificationTypologyType,t.SCNotificationUnBlockedUserType=N.SCNotificationUnBlockedUserType,t.SCNotificationUnDeletedForType=N.SCNotificationUnDeletedForType,t.SCNotificationUnseenCountType=N.SCNotificationUnseenCountType,t.SCNotificationUserFollowType=N.SCNotificationUserFollowType,t.SCNotificationVoteUpType=N.SCNotificationVoteUpType;var O=o(419);t.SCWebhookEndpointAttemptType=O.SCWebhookEndpointAttemptType,t.SCWebhookEndpointSecretType=O.SCWebhookEndpointSecretType,t.SCWebhookEndpointType=O.SCWebhookEndpointType,t.SCWebhookEventsType=O.SCWebhookEventsType;var g=o(697);t.SCVoteType=g.SCVoteType;var U=o(561);t.SCFlagModerationStatusType=U.SCFlagModerationStatusType,t.SCFlagType=U.SCFlagType,t.SCFlagTypeEnum=U.SCFlagTypeEnum;var I=o(767);t.SCCustomPageType=I.SCCustomPageType;var P=o(55);t.SCDataPortabilityType=P.SCDataPortabilityType;var F=o(903);t.SCPreferenceType=F.SCPreferenceType;var M=o(22);t.SCFeatureType=M.SCFeatureType;var A=o(469);t.SSOSignInType=A.SSOSignInType,t.SSOSignUpType=A.SSOSignUpType;var f=o(460);t.SCLegalPagePoliciesType=f.SCLegalPagePoliciesType,t.SCLegalPageAckType=f.SCLegalPageAckType,t.SCLegalPageType=f.SCLegalPageType;var L=o(291);t.SCContributionInsightCountersType=L.SCContributionInsightCountersType,t.SCContributionInsightType=L.SCContributionInsightType,t.SCEmbedInsightCountersType=L.SCEmbedInsightCountersType,t.SCEmbedInsightType=L.SCEmbedInsightType,t.SCUsersInsightCountersType=L.SCUsersInsightCountersType,t.SCUsersInsightType=L.SCUsersInsightType;var v=o(999);t.SCInviteType=v.SCInviteType;var m=o(275);t.SCContributeStatusType=m.SCContributeStatusType,t.SCContributionStatus=m.SCContributionStatus,t.SCContributionType=m.SCContributionType,t.SCFlaggedContributionType=m.SCFlaggedContributionType;var b=o(571);t.SCPlatformType=b.SCPlatformType;var D=o(401);t.SCAvatarType=D.SCAvatarType},291:(e,t)=>{t.__esModule=!0},999:(e,t)=>{t.__esModule=!0},460:(e,t)=>{let o;t.__esModule=!0,t.SCLegalPagePoliciesType=void 0,t.SCLegalPagePoliciesType=o,function(e){e.COOKIES="cookies",e.TERMS_AND_CONDITIONS="tec",e.PRIVACY="privacy"}(o||(t.SCLegalPagePoliciesType=o={}))},714:(e,t)=>{t.__esModule=!0},398:(e,t)=>{t.__esModule=!0},768:(e,t)=>{let o,i;t.__esModule=!0,t.SCNotificationTypologyType=t.SCNotificationTopicType=void 0,t.SCNotificationTypologyType=o,function(e){e.COMMENT="comment",e.NESTED_COMMENT="nested_comment",e.CONNECTION_REQUEST="connection_request",e.CONNECTION_ACCEPT="connection_accept",e.CONNECTION_REMOVE="connection_remove",e.CONNECTION_REJECT="connection_reject",e.CONNECTION_CANCEL_REJECT="connection_cancel_reject",e.CONNECTION_CANCEL_REQUEST="connection_cancel_reject",e.MENTION="mention",e.VOTE_UP="vote_up",e.FOLLOW="follow",e.PRIVATE_MESSAGE="private_message",e.DELETE_PRIVATE_MESSAGE="delete_private_message",e.DELETED_FOR_ADVERTISING="deleted_for_advertising",e.DELETED_FOR_AGGRESSIVE="deleted_for_aggressive",e.DELETED_FOR_VULGAR="deleted_for_vulgar",e.DELETED_FOR_POOR="deleted_for_poor",e.DELETED_FOR_OFFTOPIC="deleted_for_offtopic",e.UNDELETED_FOR="undeleted_for",e.COLLAPSED_FOR_ADVERTISING="collapsed_for_advertising",e.COLLAPSED_FOR_AGGRESSIVE="collapsed_for_aggressive",e.COLLAPSED_FOR_VULGAR="collapsed_for_vulgar",e.COLLAPSED_FOR_POOR="collapsed_for_poor",e.COLLAPSED_FOR_OFFTOPIC="collapsed_for_offtopic",e.USER_FOLLOW="user_follow",e.USER_UNFOLLOW="user_unfollow",e.KINDLY_NOTICE_ADVERTISING="kindly_notice_advertising",e.KINDLY_NOTICE_AGGRESSIVE="kindly_notice_aggressive",e.KINDLY_NOTICE_VULGAR="kindly_notice_vulgar",e.KINDLY_NOTICE_POOR="kindly_notice_poor",e.KINDLY_NOTICE_OFFTOPIC="kindly_notice_offtopic",e.KINDLY_NOTICE_FLAG="kindly_notice_flag",e.BLOCKED_USER="blocked_user",e.UNBLOCKED_USER="unblocked_user",e.INCUBATOR_APPROVED="incubator_approved",e.CUSTOM_NOTIFICATION="custom_notification",e.NOTIFICATION_BANNER="notification_banner",e.CONTRIBUTION="contribution"}(o||(t.SCNotificationTypologyType=o={})),t.SCNotificationTopicType=i,function(e){e.INTERACTION="interaction",e.NEWS="news"}(i||(t.SCNotificationTopicType=i={}))},571:(e,t)=>{t.__esModule=!0},3:(e,t)=>{t.__esModule=!0},903:(e,t)=>{t.__esModule=!0},461:(e,t)=>{let o,i;t.__esModule=!0,t.SCPrivateMessageStatusType=t.SCMessageFileType=void 0,t.SCPrivateMessageStatusType=o,function(e){e.CREATED="created",e.DELETED="deleted",e.HIDDEN="hidden",e.NEW="new"}(o||(t.SCPrivateMessageStatusType=o={})),t.SCMessageFileType=i,function(e){e.DOCUMENT="application/",e.IMAGE="image/",e.VIDEO="video/"}(i||(t.SCMessageFileType=i={}))},303:(e,t)=>{let o;t.__esModule=!0,t.SCPrizeUserStatusType=void 0,t.SCPrizeUserStatusType=o,function(e){e[e.PENDING=0]="PENDING",e[e.REFUSED=1]="REFUSED",e[e.SENT=2]="SENT"}(o||(t.SCPrizeUserStatusType=o={}))},469:(e,t)=>{t.__esModule=!0},549:(e,t)=>{t.__esModule=!0},967:(e,t)=>{let o,i,C;t.__esModule=!0,t.SCUserStatus=t.SCUserReputationType=t.SCUserMetadataTypeFieldType=void 0,t.SCUserStatus=o,function(e){e.APPROVED="a",e.BLOCKED="b",e.DELETED="d",e.UNREGISTERED="u"}(o||(t.SCUserStatus=o={})),t.SCUserReputationType=i,function(e){e[e.GAIN_BY_UPVOTED=1]="GAIN_BY_UPVOTED",e[e.ASSIGNED_BY_MODERATOR=10]="ASSIGNED_BY_MODERATOR",e[e.GAIN_BY_CANCELLING_CONTRIBUTE_MODERATION=11]="GAIN_BY_CANCELLING_CONTRIBUTE_MODERATION",e[e.GAIN_BY_MAKE_POST=12]="GAIN_BY_MAKE_POST",e[e.GAIN_BY_MAKE_FIRST_LEVEL_COMMENT=13]="GAIN_BY_MAKE_FIRST_LEVEL_COMMENT",e[e.GAIN_BY_MAKE_SECOND_LEVEL_COMMENT=14]="GAIN_BY_MAKE_SECOND_LEVEL_COMMENT",e[e.GAIN_BY_CONNECTION=15]="GAIN_BY_CONNECTION",e[e.GAIN_BY_APP_USED=17]="GAIN_BY_APP_USED",e[e.GAIN_BY_DAILY_VISIT=18]="GAIN_BY_DAILY_VISIT",e[e.GAIN_BY_FOLLOWER=19]="GAIN_BY_FOLLOWER",e[e.GAIN_BY_UNBLOCK_ACCOUNT=20]="GAIN_BY_UNBLOCK_ACCOUNT",e[e.LOSE_BY_UPVOTE_CANCELED=-1]="LOSE_BY_UPVOTE_CANCELED",e[e.LOSE_BY_CONTRIBUTE_MODERATION=-11]="LOSE_BY_CONTRIBUTE_MODERATION",e[e.LOSE_BY_DELETE_POST=-12]="LOSE_BY_DELETE_POST",e[e.LOSE_BY_DELETE_FIRST_LEVEL_COMMENT=-13]="LOSE_BY_DELETE_FIRST_LEVEL_COMMENT",e[e.LOSE_BY_DELETE_SECOND_LEVEL_COMMENT=-14]="LOSE_BY_DELETE_SECOND_LEVEL_COMMENT",e[e.LOSE_BY_CONNECTION=-15]="LOSE_BY_CONNECTION",e[e.LOSE_BY_FOLLOWER=-19]="LOSE_BY_FOLLOWER",e[e.LOSE_BY_BLOCK_ACCOUNT=-20]="LOSE_BY_BLOCK_ACCOUNT"}(i||(t.SCUserReputationType=i={})),t.SCUserMetadataTypeFieldType=C,function(e){e.STRING="string",e.EMAIL="email",e.URL="url",e.ENUM="enum",e.PHONE_NUMBER="phone_number"}(C||(t.SCUserMetadataTypeFieldType=C={}))},697:(e,t)=>{t.__esModule=!0},419:(e,t)=>{t.__esModule=!0}},t={};function o(i){var C=t[i];if(void 0!==C)return C.exports;var S=t[i]={exports:{}};return e[i](S,S.exports,o),S.exports}var i={};return(()=>{var e=i;e.__esModule=!0;var t=o(994);e.SCBroadcastMessageBannerType=t.SCBroadcastMessageBannerType,e.SCBannerType=t.SCBannerType,e.SCBroadcastMessageType=t.SCBroadcastMessageType,e.SCAuthTokenType=t.SCAuthTokenType,e.SCCustomAdvPosition=t.SCCustomAdvPosition,e.SCCustomAdvType=t.SCCustomAdvType,e.SCUserType=t.SCUserType,e.SCUserSettingsType=t.SCUserSettingsType,e.SCUserStatus=t.SCUserStatus,e.SCUserBlockedSettingsType=t.SCUserBlockedSettingsType,e.SCUserModerationType=t.SCUserModerationType,e.SCUserScoreVariation=t.SCUserScoreVariation,e.SCUserScoreType=t.SCUserScoreType,e.SCUserReputationType=t.SCUserReputationType,e.SCUserAutocompleteType=t.SCUserAutocompleteType,e.SCUserCounterType=t.SCUserCounterType,e.SCUserChangeEmailType=t.SCUserChangeEmailType,e.SCUserAvatarType=t.SCUserAvatarType,e.SCUserPermissionType=t.SCUserPermissionType,e.SCUserFollowedStatusType=t.SCUserFollowedStatusType,e.SCUserFollowerStatusType=t.SCUserFollowerStatusType,e.SCUserConnectionStatusType=t.SCUserConnectionStatusType,e.SCUserHiddenStatusType=t.SCUserHiddenStatusType,e.SCUserHiddenByStatusType=t.SCUserHiddenByStatusType,e.SCUserConnectionRequestType=t.SCUserConnectionRequestType,e.SCUserEmailTokenType=t.SCUserEmailTokenType,e.SCUserProviderAssociationType=t.SCUserProviderAssociationType,e.SCUserMetadataTypeFieldType=t.SCUserMetadataTypeFieldType,e.SCUserMetadataType=t.SCUserMetadataType,e.SCTagType=t.SCTagType,e.SCCategoryType=t.SCCategoryType,e.SCCategoryAudienceType=t.SCCategoryAudienceType,e.SCCategoryFollowedStatusType=t.SCCategoryFollowedStatusType,e.SCEmbedType=t.SCEmbedType,e.SCMediaType=t.SCMediaType,e.SCChunkMediaType=t.SCChunkMediaType,e.SCContributionLocation=t.SCContributionLocation,e.SCLocalityType=t.SCLocalityType,e.SCPollChoiceType=t.SCPollChoiceType,e.SCPollType=t.SCPollType,e.SCPollVoteType=t.SCPollVoteType,e.SCFeedUnitType=t.SCFeedUnitType,e.SCFeedUnitActivityType=t.SCFeedUnitActivityType,e.SCFeedObjectType=t.SCFeedObjectType,e.SCFeedPostType=t.SCFeedPostType,e.SCFeedDiscussionType=t.SCFeedDiscussionType,e.SCFeedStatusType=t.SCFeedStatusType,e.SCFeedObjectTypologyType=t.SCFeedObjectTypologyType,e.SCFeedUnitActivityTypologyType=t.SCFeedUnitActivityTypologyType,e.SCFeedTypologyType=t.SCFeedTypologyType,e.SCFeedUnseenCountType=t.SCFeedUnseenCountType,e.SCFeedObjectSuspendedStatusType=t.SCFeedObjectSuspendedStatusType,e.SCFeedObjectHideStatusType=t.SCFeedObjectHideStatusType,e.SCFeedObjectFollowingStatusType=t.SCFeedObjectFollowingStatusType,e.SCCommentTypologyType=t.SCCommentTypologyType,e.SCCommentsOrderBy=t.SCCommentsOrderBy,e.SCCommentType=t.SCCommentType,e.SCPrivateMessageType=t.SCPrivateMessageType,e.SCPrivateMessageStatusType=t.SCPrivateMessageStatusType,e.SCPrivateMessageFileType=t.SCPrivateMessageFileType,e.SCMessageFileType=t.SCMessageFileType,e.SCPrivateMessageUploadMediaType=t.SCPrivateMessageUploadMediaType,e.SCPrivateMessageUploadThumbnailType=t.SCPrivateMessageUploadThumbnailType,e.SCPrivateMessageUploadMediaChunkType=t.SCPrivateMessageUploadMediaChunkType,e.SCNotificationTypologyType=t.SCNotificationTypologyType,e.SCNotificationAggregatedType=t.SCNotificationAggregatedType,e.SCNotificationCommentType=t.SCNotificationCommentType,e.SCNotificationConnectionAcceptType=t.SCNotificationConnectionAcceptType,e.SCNotificationConnectionRequestType=t.SCNotificationConnectionRequestType,e.SCNotificationPrivateMessageType=t.SCNotificationPrivateMessageType,e.SCNotificationMentionType=t.SCNotificationMentionType,e.SCNotificationType=t.SCNotificationType,e.SCNotificationBlockedUserType=t.SCNotificationBlockedUserType,e.SCNotificationCollapsedForType=t.SCNotificationCollapsedForType,e.SCNotificationCustomNotificationType=t.SCNotificationCustomNotificationType,e.SCNotificationDeletedForType=t.SCNotificationDeletedForType,e.SCNotificationFollowType=t.SCNotificationFollowType,e.SCNotificationKindlyNoticeType=t.SCNotificationKindlyNoticeType,e.SCNotificationUnBlockedUserType=t.SCNotificationUnBlockedUserType,e.SCNotificationUnDeletedForType=t.SCNotificationUnDeletedForType,e.SCNotificationUserFollowType=t.SCNotificationUserFollowType,e.SCNotificationVoteUpType=t.SCNotificationVoteUpType,e.SCCustomNotificationType=t.SCCustomNotificationType,e.SCNotificationUnseenCountType=t.SCNotificationUnseenCountType,e.SCNotificationContributionType=t.SCNotificationContributionType,e.SCIncubatorType=t.SCIncubatorType,e.SCIncubatorSubscriptionType=t.SCIncubatorSubscriptionType,e.SCIncubatorStatusType=t.SCIncubatorStatusType,e.SCInviteType=t.SCInviteType,e.SCNotificationIncubatorType=t.SCNotificationIncubatorType,e.SCNotificationTopicType=t.SCNotificationTopicType,e.SCPrizeType=t.SCPrizeType,e.SCPrizeUserType=t.SCPrizeUserType,e.SCPrizeUserStatusType=t.SCPrizeUserStatusType,e.SCUserLoyaltyPointsType=t.SCUserLoyaltyPointsType,e.SCWebhookEndpointType=t.SCWebhookEndpointType,e.SCWebhookEndpointAttemptType=t.SCWebhookEndpointAttemptType,e.SCWebhookEndpointSecretType=t.SCWebhookEndpointSecretType,e.SCWebhookEventsType=t.SCWebhookEventsType,e.SCVoteType=t.SCVoteType,e.SCFlagType=t.SCFlagType,e.SCFlagTypeEnum=t.SCFlagTypeEnum,e.SCFlagModerationStatusType=t.SCFlagModerationStatusType,e.SCCustomPageType=t.SCCustomPageType,e.SCDataPortabilityType=t.SCDataPortabilityType,e.SCPreferenceType=t.SCPreferenceType,e.SCFeatureType=t.SCFeatureType,e.SSOSignInType=t.SSOSignInType,e.SSOSignUpType=t.SSOSignUpType,e.SCLegalPagePoliciesType=t.SCLegalPagePoliciesType,e.SCLegalPageType=t.SCLegalPageType,e.SCLegalPageAckType=t.SCLegalPageAckType,e.SCContributionInsightCountersType=t.SCContributionInsightCountersType,e.SCContributionInsightType=t.SCContributionInsightType,e.SCEmbedInsightType=t.SCEmbedInsightType,e.SCEmbedInsightCountersType=t.SCEmbedInsightCountersType,e.SCUsersInsightType=t.SCUsersInsightType,e.SCUsersInsightCountersType=t.SCUsersInsightCountersType,e.SCFlaggedContributionType=t.SCFlaggedContributionType,e.SCContributionType=t.SCContributionType,e.SCContributionStatus=t.SCContributionStatus,e.SCContributeStatusType=t.SCContributeStatusType,e.SCPlatformType=t.SCPlatformType,e.SCAvatarType=t.SCAvatarType})(),i})()));
|
|
2
|
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.SelfCommunityTypes=t():e.SelfCommunityTypes=t()}(self,(()=>(()=>{"use strict";var e={852:(e,t)=>{t.__esModule=!0},401:(e,t)=>{t.__esModule=!0},665:(e,t)=>{let o;t.__esModule=!0,t.SCBroadcastMessageBannerType=void 0,t.SCBroadcastMessageBannerType=o,function(e){e.HTML="html_banner",e.NOTIFICATION="notification_banner"}(o||(t.SCBroadcastMessageBannerType=o={}))},511:(e,t)=>{t.__esModule=!0},444:(e,t)=>{let o;t.__esModule=!0,t.SCCommentsOrderBy=t.SCCommentTypologyType=void 0,t.SCCommentTypologyType="comment",t.SCCommentsOrderBy=o,function(e){e.ADDED_AT_DESC="-added_at",e.ADDED_AT_ASC="added_at",e.CONNECTION_DESC="-connection",e.CONNECTION_ASC="connection"}(o||(t.SCCommentsOrderBy=o={}))},275:(e,t)=>{let o,i;t.__esModule=!0,t.SCContributionType=t.SCContributeStatusType=void 0,t.SCContributionType=o,function(e){e.DISCUSSION="discussion",e.POST="post",e.STATUS="status",e.COMMENT="comment"}(o||(t.SCContributionType=o={})),t.SCContributeStatusType=i,function(e){e.OPEN="open",e.IGNORED="ignored",e.HIDDEN="hidden",e.DELETED="deleted"}(i||(t.SCContributeStatusType=i={}))},386:(e,t)=>{let o;t.__esModule=!0,t.SCCustomAdvPosition=void 0,t.SCCustomAdvPosition=o,function(e){e.POSITION_BELOW_TOPBAR="BELOW_TOPBAR",e.POSITION_BELOW_FEED_OBJECT="BELOW_THE_POST",e.POSITION_ABOVE_FOOTER_BAR="ABOVE_FOOTER_BAR",e.POSITION_FOOTER_STICKY="FOOTER_STICKY",e.POSITION_IN_COMMENTS="IN_POST_COMMENTS",e.POSITION_RELATED_POSTS_COLUMN="RELATED_POSTS_COLUMN",e.POSITION_FEED_SIDEBAR="TOOLS_COLUMN",e.POSITION_FEED="IN_STREAM"}(o||(t.SCCustomAdvPosition=o={}))},82:(e,t)=>{t.__esModule=!0},767:(e,t)=>{t.__esModule=!0},55:(e,t)=>{t.__esModule=!0},797:(e,t)=>{t.__esModule=!0},22:(e,t)=>{t.__esModule=!0},505:(e,t)=>{let o,i,C;t.__esModule=!0,t.SCFeedUnitActivityTypologyType=t.SCFeedTypologyType=t.SCFeedObjectTypologyType=void 0,t.SCFeedTypologyType=o,function(e){e.HOME="home",e.EXPLORE="explore"}(o||(t.SCFeedTypologyType=o={})),t.SCFeedObjectTypologyType=i,function(e){e.DISCUSSION="discussion",e.POST="post",e.STATUS="status"}(i||(t.SCFeedObjectTypologyType=i={})),t.SCFeedUnitActivityTypologyType=C,function(e){e.COMMENT="comment",e.VOTE="vote",e.POLLVOTE="pollvote",e.FOLLOW="follow"}(C||(t.SCFeedUnitActivityTypologyType=C={}))},561:(e,t)=>{let o,i;t.__esModule=!0,t.SCFlagTypeEnum=t.SCFlagModerationStatusType=void 0,t.SCFlagTypeEnum=o,function(e){e[e.SPAM=0]="SPAM",e[e.AGGRESSIVE=1]="AGGRESSIVE",e[e.VULGAR=2]="VULGAR",e[e.POOR=3]="POOR",e[e.OFFTOPIC=4]="OFFTOPIC"}(o||(t.SCFlagTypeEnum=o={})),t.SCFlagModerationStatusType=i,function(e){e.IGNORED="ignored",e.DELETED="deleted",e.HIDDEN="hidden"}(i||(t.SCFlagModerationStatusType=i={}))},947:(e,t)=>{let o;t.__esModule=!0,t.SCIncubatorStatusType=void 0,t.SCIncubatorStatusType=o,function(e){e[e.PENDING=0]="PENDING",e[e.PROPOSAL=1]="PROPOSAL",e[e.APPROVED=2]="APPROVED",e[e.IGNORED=3]="IGNORED"}(o||(t.SCIncubatorStatusType=o={}))},994:(e,t,o)=>{t.__esModule=!0;var i=o(852);t.SCAuthTokenType=i.SCAuthTokenType;var C=o(665);t.SCBannerType=C.SCBannerType,t.SCBroadcastMessageBannerType=C.SCBroadcastMessageBannerType,t.SCBroadcastMessageType=C.SCBroadcastMessageType;var S=o(386);t.SCCustomAdvPosition=S.SCCustomAdvPosition,t.SCCustomAdvType=S.SCCustomAdvType;var T=o(967);t.SCUserAutocompleteType=T.SCUserAutocompleteType,t.SCUserAvatarType=T.SCUserAvatarType,t.SCUserBlockedSettingsType=T.SCUserBlockedSettingsType,t.SCUserChangeEmailType=T.SCUserChangeEmailType,t.SCUserConnectionRequestType=T.SCUserConnectionRequestType,t.SCUserConnectionStatusType=T.SCUserConnectionStatusType,t.SCUserCounterType=T.SCUserCounterType,t.SCUserEmailTokenType=T.SCUserEmailTokenType,t.SCUserFollowedStatusType=T.SCUserFollowedStatusType,t.SCUserFollowerStatusType=T.SCUserFollowerStatusType,t.SCUserHiddenByStatusType=T.SCUserHiddenByStatusType,t.SCUserHiddenStatusType=T.SCUserHiddenStatusType,t.SCUserModerationType=T.SCUserModerationType,t.SCUserPermissionType=T.SCUserPermissionType,t.SCUserReputationType=T.SCUserReputationType,t.SCUserScoreType=T.SCUserScoreType,t.SCUserScoreVariation=T.SCUserScoreVariation,t.SCUserSettingsType=T.SCUserSettingsType,t.SCUserStatus=T.SCUserStatus,t.SCUserType=T.SCUserType,t.SCUserProviderAssociationType=T.SCUserProviderAssociationType;var n=o(549);t.SCTagType=n.SCTagType;var p=o(511);t.SCCategoryAudienceType=p.SCCategoryAudienceType,t.SCCategoryFollowedStatusType=p.SCCategoryFollowedStatusType,t.SCCategoryType=p.SCCategoryType;var y=o(797);t.SCEmbedType=y.SCEmbedType;var a=o(398);t.SCChunkMediaType=a.SCChunkMediaType,t.SCMediaType=a.SCMediaType;var s=o(584);t.SCMetadataTypeFieldType=s.SCMetadataTypeFieldType,t.SCMetadataType=s.SCMetadataType;var r=o(714);t.SCContributionLocation=r.SCContributionLocation,t.SCLocalityType=r.SCLocalityType;var c=o(3);t.SCPollChoiceType=c.SCPollChoiceType,t.SCPollType=c.SCPollType,t.SCPollVoteType=c.SCPollVoteType;var d=o(444);t.SCCommentsOrderBy=d.SCCommentsOrderBy,t.SCCommentType=d.SCCommentType,t.SCCommentTypologyType=d.SCCommentTypologyType;var l=o(461);t.SCMessageFileType=l.SCMessageFileType,t.SCPrivateMessageFileType=l.SCPrivateMessageFileType,t.SCPrivateMessageStatusType=l.SCPrivateMessageStatusType,t.SCPrivateMessageType=l.SCPrivateMessageType,t.SCPrivateMessageUploadMediaChunkType=l.SCPrivateMessageUploadMediaChunkType,t.SCPrivateMessageUploadMediaType=l.SCPrivateMessageUploadMediaType,t.SCPrivateMessageUploadThumbnailType=l.SCPrivateMessageUploadThumbnailType;var u=o(947);t.SCIncubatorStatusType=u.SCIncubatorStatusType,t.SCIncubatorSubscriptionType=u.SCIncubatorSubscriptionType,t.SCIncubatorType=u.SCIncubatorType;var _=o(82);t.SCCustomNotificationType=_.SCCustomNotificationType;var E=o(303);t.SCPrizeType=E.SCPrizeType,t.SCPrizeUserStatusType=E.SCPrizeUserStatusType,t.SCPrizeUserType=E.SCPrizeUserType,t.SCUserLoyaltyPointsType=E.SCUserLoyaltyPointsType;var N=o(505);t.SCCountByCategoryType=N.SCCountByCategoryType,t.SCFeedDiscussionType=N.SCFeedDiscussionType,t.SCFeedObjectFollowingStatusType=N.SCFeedObjectFollowingStatusType,t.SCFeedObjectHideStatusType=N.SCFeedObjectHideStatusType,t.SCFeedObjectSuspendedStatusType=N.SCFeedObjectSuspendedStatusType,t.SCFeedObjectType=N.SCFeedObjectType,t.SCFeedObjectTypologyType=N.SCFeedObjectTypologyType,t.SCFeedPostType=N.SCFeedPostType,t.SCFeedStatusType=N.SCFeedStatusType,t.SCFeedTypologyType=N.SCFeedTypologyType,t.SCFeedUnitActivityType=N.SCFeedUnitActivityType,t.SCFeedUnitActivityTypologyType=N.SCFeedUnitActivityTypologyType,t.SCFeedUnitType=N.SCFeedUnitType,t.SCFeedUnseenCountType=N.SCFeedUnseenCountType;var O=o(768);t.SCNotificationAggregatedType=O.SCNotificationAggregatedType,t.SCNotificationBlockedUserType=O.SCNotificationBlockedUserType,t.SCNotificationCollapsedForType=O.SCNotificationCollapsedForType,t.SCNotificationCommentType=O.SCNotificationCommentType,t.SCNotificationConnectionAcceptType=O.SCNotificationConnectionAcceptType,t.SCNotificationConnectionRequestType=O.SCNotificationConnectionRequestType,t.SCNotificationContributionType=O.SCNotificationContributionType,t.SCNotificationCustomNotificationType=O.SCNotificationCustomNotificationType,t.SCNotificationDeletedForType=O.SCNotificationDeletedForType,t.SCNotificationFollowType=O.SCNotificationFollowType,t.SCNotificationIncubatorType=O.SCNotificationIncubatorType,t.SCNotificationKindlyNoticeType=O.SCNotificationKindlyNoticeType,t.SCNotificationMentionType=O.SCNotificationMentionType,t.SCNotificationPrivateMessageType=O.SCNotificationPrivateMessageType,t.SCNotificationTopicType=O.SCNotificationTopicType,t.SCNotificationType=O.SCNotificationType,t.SCNotificationTypologyType=O.SCNotificationTypologyType,t.SCNotificationUnBlockedUserType=O.SCNotificationUnBlockedUserType,t.SCNotificationUnDeletedForType=O.SCNotificationUnDeletedForType,t.SCNotificationUnseenCountType=O.SCNotificationUnseenCountType,t.SCNotificationUserFollowType=O.SCNotificationUserFollowType,t.SCNotificationVoteUpType=O.SCNotificationVoteUpType;var g=o(419);t.SCWebhookEndpointAttemptType=g.SCWebhookEndpointAttemptType,t.SCWebhookEndpointSecretType=g.SCWebhookEndpointSecretType,t.SCWebhookEndpointType=g.SCWebhookEndpointType,t.SCWebhookEventsType=g.SCWebhookEventsType;var U=o(697);t.SCVoteType=U.SCVoteType;var I=o(561);t.SCFlagModerationStatusType=I.SCFlagModerationStatusType,t.SCFlagType=I.SCFlagType,t.SCFlagTypeEnum=I.SCFlagTypeEnum;var P=o(767);t.SCCustomPageType=P.SCCustomPageType;var F=o(55);t.SCDataPortabilityType=F.SCDataPortabilityType;var M=o(903);t.SCPreferenceType=M.SCPreferenceType;var A=o(22);t.SCFeatureType=A.SCFeatureType;var f=o(469);t.SSOSignInType=f.SSOSignInType,t.SSOSignUpType=f.SSOSignUpType;var L=o(460);t.SCLegalPagePoliciesType=L.SCLegalPagePoliciesType,t.SCLegalPageAckType=L.SCLegalPageAckType,t.SCLegalPageType=L.SCLegalPageType;var v=o(291);t.SCContributionInsightCountersType=v.SCContributionInsightCountersType,t.SCContributionInsightType=v.SCContributionInsightType,t.SCEmbedInsightCountersType=v.SCEmbedInsightCountersType,t.SCEmbedInsightType=v.SCEmbedInsightType,t.SCUsersInsightCountersType=v.SCUsersInsightCountersType,t.SCUsersInsightType=v.SCUsersInsightType;var m=o(999);t.SCInviteType=m.SCInviteType;var b=o(275);t.SCContributeStatusType=b.SCContributeStatusType,t.SCContributionStatus=b.SCContributionStatus,t.SCContributionType=b.SCContributionType,t.SCFlaggedContributionType=b.SCFlaggedContributionType;var D=o(571);t.SCPlatformType=D.SCPlatformType;var R=o(401);t.SCAvatarType=R.SCAvatarType;var B=o(844);t.SCReactionType=B.SCReactionType},291:(e,t)=>{t.__esModule=!0},999:(e,t)=>{t.__esModule=!0},460:(e,t)=>{let o;t.__esModule=!0,t.SCLegalPagePoliciesType=void 0,t.SCLegalPagePoliciesType=o,function(e){e.COOKIES="cookies",e.TERMS_AND_CONDITIONS="tec",e.PRIVACY="privacy"}(o||(t.SCLegalPagePoliciesType=o={}))},714:(e,t)=>{t.__esModule=!0},398:(e,t)=>{t.__esModule=!0},584:(e,t)=>{let o;t.__esModule=!0,t.SCMetadataTypeFieldType=void 0,t.SCMetadataTypeFieldType=o,function(e){e.STRING="string",e.EMAIL="email",e.URL="url",e.ENUM="enum",e.PHONE_NUMBER="phone_number"}(o||(t.SCMetadataTypeFieldType=o={}))},768:(e,t)=>{let o,i;t.__esModule=!0,t.SCNotificationTypologyType=t.SCNotificationTopicType=void 0,t.SCNotificationTypologyType=o,function(e){e.COMMENT="comment",e.NESTED_COMMENT="nested_comment",e.CONNECTION_REQUEST="connection_request",e.CONNECTION_ACCEPT="connection_accept",e.CONNECTION_REMOVE="connection_remove",e.CONNECTION_REJECT="connection_reject",e.CONNECTION_CANCEL_REJECT="connection_cancel_reject",e.CONNECTION_CANCEL_REQUEST="connection_cancel_reject",e.MENTION="mention",e.VOTE_UP="vote_up",e.FOLLOW="follow",e.PRIVATE_MESSAGE="private_message",e.DELETE_PRIVATE_MESSAGE="delete_private_message",e.DELETED_FOR_ADVERTISING="deleted_for_advertising",e.DELETED_FOR_AGGRESSIVE="deleted_for_aggressive",e.DELETED_FOR_VULGAR="deleted_for_vulgar",e.DELETED_FOR_POOR="deleted_for_poor",e.DELETED_FOR_OFFTOPIC="deleted_for_offtopic",e.UNDELETED_FOR="undeleted_for",e.COLLAPSED_FOR_ADVERTISING="collapsed_for_advertising",e.COLLAPSED_FOR_AGGRESSIVE="collapsed_for_aggressive",e.COLLAPSED_FOR_VULGAR="collapsed_for_vulgar",e.COLLAPSED_FOR_POOR="collapsed_for_poor",e.COLLAPSED_FOR_OFFTOPIC="collapsed_for_offtopic",e.USER_FOLLOW="user_follow",e.USER_UNFOLLOW="user_unfollow",e.KINDLY_NOTICE_ADVERTISING="kindly_notice_advertising",e.KINDLY_NOTICE_AGGRESSIVE="kindly_notice_aggressive",e.KINDLY_NOTICE_VULGAR="kindly_notice_vulgar",e.KINDLY_NOTICE_POOR="kindly_notice_poor",e.KINDLY_NOTICE_OFFTOPIC="kindly_notice_offtopic",e.KINDLY_NOTICE_FLAG="kindly_notice_flag",e.BLOCKED_USER="blocked_user",e.UNBLOCKED_USER="unblocked_user",e.INCUBATOR_APPROVED="incubator_approved",e.CUSTOM_NOTIFICATION="custom_notification",e.NOTIFICATION_BANNER="notification_banner",e.CONTRIBUTION="contribution"}(o||(t.SCNotificationTypologyType=o={})),t.SCNotificationTopicType=i,function(e){e.INTERACTION="interaction",e.NEWS="news"}(i||(t.SCNotificationTopicType=i={}))},571:(e,t)=>{t.__esModule=!0},3:(e,t)=>{t.__esModule=!0},903:(e,t)=>{t.__esModule=!0},461:(e,t)=>{let o,i;t.__esModule=!0,t.SCPrivateMessageStatusType=t.SCMessageFileType=void 0,t.SCPrivateMessageStatusType=o,function(e){e.CREATED="created",e.DELETED="deleted",e.HIDDEN="hidden",e.NEW="new"}(o||(t.SCPrivateMessageStatusType=o={})),t.SCMessageFileType=i,function(e){e.DOCUMENT="application/",e.IMAGE="image/",e.VIDEO="video/"}(i||(t.SCMessageFileType=i={}))},303:(e,t)=>{let o;t.__esModule=!0,t.SCPrizeUserStatusType=void 0,t.SCPrizeUserStatusType=o,function(e){e[e.PENDING=0]="PENDING",e[e.REFUSED=1]="REFUSED",e[e.SENT=2]="SENT"}(o||(t.SCPrizeUserStatusType=o={}))},844:(e,t)=>{t.__esModule=!0},469:(e,t)=>{t.__esModule=!0},549:(e,t)=>{t.__esModule=!0},967:(e,t)=>{let o,i;t.__esModule=!0,t.SCUserStatus=t.SCUserReputationType=void 0,t.SCUserStatus=o,function(e){e.APPROVED="a",e.BLOCKED="b",e.DELETED="d",e.UNREGISTERED="u"}(o||(t.SCUserStatus=o={})),t.SCUserReputationType=i,function(e){e[e.GAIN_BY_UPVOTED=1]="GAIN_BY_UPVOTED",e[e.ASSIGNED_BY_MODERATOR=10]="ASSIGNED_BY_MODERATOR",e[e.GAIN_BY_CANCELLING_CONTRIBUTE_MODERATION=11]="GAIN_BY_CANCELLING_CONTRIBUTE_MODERATION",e[e.GAIN_BY_MAKE_POST=12]="GAIN_BY_MAKE_POST",e[e.GAIN_BY_MAKE_FIRST_LEVEL_COMMENT=13]="GAIN_BY_MAKE_FIRST_LEVEL_COMMENT",e[e.GAIN_BY_MAKE_SECOND_LEVEL_COMMENT=14]="GAIN_BY_MAKE_SECOND_LEVEL_COMMENT",e[e.GAIN_BY_CONNECTION=15]="GAIN_BY_CONNECTION",e[e.GAIN_BY_APP_USED=17]="GAIN_BY_APP_USED",e[e.GAIN_BY_DAILY_VISIT=18]="GAIN_BY_DAILY_VISIT",e[e.GAIN_BY_FOLLOWER=19]="GAIN_BY_FOLLOWER",e[e.GAIN_BY_UNBLOCK_ACCOUNT=20]="GAIN_BY_UNBLOCK_ACCOUNT",e[e.LOSE_BY_UPVOTE_CANCELED=-1]="LOSE_BY_UPVOTE_CANCELED",e[e.LOSE_BY_CONTRIBUTE_MODERATION=-11]="LOSE_BY_CONTRIBUTE_MODERATION",e[e.LOSE_BY_DELETE_POST=-12]="LOSE_BY_DELETE_POST",e[e.LOSE_BY_DELETE_FIRST_LEVEL_COMMENT=-13]="LOSE_BY_DELETE_FIRST_LEVEL_COMMENT",e[e.LOSE_BY_DELETE_SECOND_LEVEL_COMMENT=-14]="LOSE_BY_DELETE_SECOND_LEVEL_COMMENT",e[e.LOSE_BY_CONNECTION=-15]="LOSE_BY_CONNECTION",e[e.LOSE_BY_FOLLOWER=-19]="LOSE_BY_FOLLOWER",e[e.LOSE_BY_BLOCK_ACCOUNT=-20]="LOSE_BY_BLOCK_ACCOUNT"}(i||(t.SCUserReputationType=i={}))},697:(e,t)=>{t.__esModule=!0},419:(e,t)=>{t.__esModule=!0}},t={};function o(i){var C=t[i];if(void 0!==C)return C.exports;var S=t[i]={exports:{}};return e[i](S,S.exports,o),S.exports}var i={};return(()=>{var e=i;e.__esModule=!0;var t=o(994);e.SCBroadcastMessageBannerType=t.SCBroadcastMessageBannerType,e.SCBannerType=t.SCBannerType,e.SCBroadcastMessageType=t.SCBroadcastMessageType,e.SCAuthTokenType=t.SCAuthTokenType,e.SCCustomAdvPosition=t.SCCustomAdvPosition,e.SCCustomAdvType=t.SCCustomAdvType,e.SCUserType=t.SCUserType,e.SCUserSettingsType=t.SCUserSettingsType,e.SCUserStatus=t.SCUserStatus,e.SCUserBlockedSettingsType=t.SCUserBlockedSettingsType,e.SCUserModerationType=t.SCUserModerationType,e.SCUserScoreVariation=t.SCUserScoreVariation,e.SCUserScoreType=t.SCUserScoreType,e.SCUserReputationType=t.SCUserReputationType,e.SCUserAutocompleteType=t.SCUserAutocompleteType,e.SCUserCounterType=t.SCUserCounterType,e.SCUserChangeEmailType=t.SCUserChangeEmailType,e.SCUserAvatarType=t.SCUserAvatarType,e.SCUserPermissionType=t.SCUserPermissionType,e.SCUserFollowedStatusType=t.SCUserFollowedStatusType,e.SCUserFollowerStatusType=t.SCUserFollowerStatusType,e.SCUserConnectionStatusType=t.SCUserConnectionStatusType,e.SCUserHiddenStatusType=t.SCUserHiddenStatusType,e.SCUserHiddenByStatusType=t.SCUserHiddenByStatusType,e.SCUserConnectionRequestType=t.SCUserConnectionRequestType,e.SCUserEmailTokenType=t.SCUserEmailTokenType,e.SCUserProviderAssociationType=t.SCUserProviderAssociationType,e.SCMetadataTypeFieldType=t.SCMetadataTypeFieldType,e.SCMetadataType=t.SCMetadataType,e.SCTagType=t.SCTagType,e.SCCategoryType=t.SCCategoryType,e.SCCategoryAudienceType=t.SCCategoryAudienceType,e.SCCategoryFollowedStatusType=t.SCCategoryFollowedStatusType,e.SCEmbedType=t.SCEmbedType,e.SCMediaType=t.SCMediaType,e.SCChunkMediaType=t.SCChunkMediaType,e.SCContributionLocation=t.SCContributionLocation,e.SCLocalityType=t.SCLocalityType,e.SCPollChoiceType=t.SCPollChoiceType,e.SCPollType=t.SCPollType,e.SCPollVoteType=t.SCPollVoteType,e.SCFeedUnitType=t.SCFeedUnitType,e.SCFeedUnitActivityType=t.SCFeedUnitActivityType,e.SCFeedObjectType=t.SCFeedObjectType,e.SCFeedPostType=t.SCFeedPostType,e.SCFeedDiscussionType=t.SCFeedDiscussionType,e.SCFeedStatusType=t.SCFeedStatusType,e.SCFeedObjectTypologyType=t.SCFeedObjectTypologyType,e.SCFeedUnitActivityTypologyType=t.SCFeedUnitActivityTypologyType,e.SCFeedTypologyType=t.SCFeedTypologyType,e.SCFeedUnseenCountType=t.SCFeedUnseenCountType,e.SCFeedObjectSuspendedStatusType=t.SCFeedObjectSuspendedStatusType,e.SCFeedObjectHideStatusType=t.SCFeedObjectHideStatusType,e.SCFeedObjectFollowingStatusType=t.SCFeedObjectFollowingStatusType,e.SCCommentTypologyType=t.SCCommentTypologyType,e.SCCommentsOrderBy=t.SCCommentsOrderBy,e.SCCommentType=t.SCCommentType,e.SCPrivateMessageType=t.SCPrivateMessageType,e.SCPrivateMessageStatusType=t.SCPrivateMessageStatusType,e.SCPrivateMessageFileType=t.SCPrivateMessageFileType,e.SCMessageFileType=t.SCMessageFileType,e.SCPrivateMessageUploadMediaType=t.SCPrivateMessageUploadMediaType,e.SCPrivateMessageUploadThumbnailType=t.SCPrivateMessageUploadThumbnailType,e.SCPrivateMessageUploadMediaChunkType=t.SCPrivateMessageUploadMediaChunkType,e.SCNotificationTypologyType=t.SCNotificationTypologyType,e.SCNotificationAggregatedType=t.SCNotificationAggregatedType,e.SCNotificationCommentType=t.SCNotificationCommentType,e.SCNotificationConnectionAcceptType=t.SCNotificationConnectionAcceptType,e.SCNotificationConnectionRequestType=t.SCNotificationConnectionRequestType,e.SCNotificationPrivateMessageType=t.SCNotificationPrivateMessageType,e.SCNotificationMentionType=t.SCNotificationMentionType,e.SCNotificationType=t.SCNotificationType,e.SCNotificationBlockedUserType=t.SCNotificationBlockedUserType,e.SCNotificationCollapsedForType=t.SCNotificationCollapsedForType,e.SCNotificationCustomNotificationType=t.SCNotificationCustomNotificationType,e.SCNotificationDeletedForType=t.SCNotificationDeletedForType,e.SCNotificationFollowType=t.SCNotificationFollowType,e.SCNotificationKindlyNoticeType=t.SCNotificationKindlyNoticeType,e.SCNotificationUnBlockedUserType=t.SCNotificationUnBlockedUserType,e.SCNotificationUnDeletedForType=t.SCNotificationUnDeletedForType,e.SCNotificationUserFollowType=t.SCNotificationUserFollowType,e.SCNotificationVoteUpType=t.SCNotificationVoteUpType,e.SCCustomNotificationType=t.SCCustomNotificationType,e.SCNotificationUnseenCountType=t.SCNotificationUnseenCountType,e.SCNotificationContributionType=t.SCNotificationContributionType,e.SCIncubatorType=t.SCIncubatorType,e.SCIncubatorSubscriptionType=t.SCIncubatorSubscriptionType,e.SCIncubatorStatusType=t.SCIncubatorStatusType,e.SCInviteType=t.SCInviteType,e.SCNotificationIncubatorType=t.SCNotificationIncubatorType,e.SCNotificationTopicType=t.SCNotificationTopicType,e.SCPrizeType=t.SCPrizeType,e.SCPrizeUserType=t.SCPrizeUserType,e.SCPrizeUserStatusType=t.SCPrizeUserStatusType,e.SCUserLoyaltyPointsType=t.SCUserLoyaltyPointsType,e.SCWebhookEndpointType=t.SCWebhookEndpointType,e.SCWebhookEndpointAttemptType=t.SCWebhookEndpointAttemptType,e.SCWebhookEndpointSecretType=t.SCWebhookEndpointSecretType,e.SCWebhookEventsType=t.SCWebhookEventsType,e.SCVoteType=t.SCVoteType,e.SCFlagType=t.SCFlagType,e.SCFlagTypeEnum=t.SCFlagTypeEnum,e.SCFlagModerationStatusType=t.SCFlagModerationStatusType,e.SCCustomPageType=t.SCCustomPageType,e.SCDataPortabilityType=t.SCDataPortabilityType,e.SCPreferenceType=t.SCPreferenceType,e.SCFeatureType=t.SCFeatureType,e.SSOSignInType=t.SSOSignInType,e.SSOSignUpType=t.SSOSignUpType,e.SCLegalPagePoliciesType=t.SCLegalPagePoliciesType,e.SCLegalPageType=t.SCLegalPageType,e.SCLegalPageAckType=t.SCLegalPageAckType,e.SCContributionInsightCountersType=t.SCContributionInsightCountersType,e.SCContributionInsightType=t.SCContributionInsightType,e.SCEmbedInsightType=t.SCEmbedInsightType,e.SCEmbedInsightCountersType=t.SCEmbedInsightCountersType,e.SCUsersInsightType=t.SCUsersInsightType,e.SCUsersInsightCountersType=t.SCUsersInsightCountersType,e.SCFlaggedContributionType=t.SCFlaggedContributionType,e.SCContributionType=t.SCContributionType,e.SCContributionStatus=t.SCContributionStatus,e.SCContributeStatusType=t.SCContributeStatusType,e.SCPlatformType=t.SCPlatformType,e.SCAvatarType=t.SCAvatarType,e.SCReactionType=t.SCReactionType})(),i})()));
|
|
3
3
|
//# sourceMappingURL=types.js.map
|