decentraland-ui2 0.16.0 → 0.17.0
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/dist/components/Icon/Notifications/StreamingIcon.d.ts +4 -0
- package/dist/components/Icon/Notifications/StreamingIcon.js +8 -0
- package/dist/components/Icon/Notifications/StreamingIcon.js.map +1 -0
- package/dist/components/Icon/index.d.ts +2 -1
- package/dist/components/Icon/index.js +2 -1
- package/dist/components/Icon/index.js.map +1 -1
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.i18n.d.ts +15 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.i18n.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.i18n.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.js +9 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyExpiredNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.i18n.d.ts +15 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.i18n.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.i18n.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.js +9 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyResetNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.i18n.d.ts +15 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.i18n.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.i18n.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.js +9 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingKeyRevokeNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingNotification.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.i18n.d.ts +15 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.i18n.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.i18n.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.js +9 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingPlaceUpdatedNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.d.ts +4 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.i18n.d.ts +15 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.i18n.js +16 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.i18n.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.js +9 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/StreamingTimeExceededNotification.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/types.d.ts +10 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/types.js +2 -0
- package/dist/components/Notifications/NotificationTypes/Streaming/types.js.map +1 -0
- package/dist/components/Notifications/NotificationTypes/index.d.ts +6 -1
- package/dist/components/Notifications/NotificationTypes/index.js +6 -1
- package/dist/components/Notifications/NotificationTypes/index.js.map +1 -1
- package/dist/components/Notifications/Notifications.stories.d.ts +2 -1
- package/dist/components/Notifications/Notifications.stories.js +14 -2
- package/dist/components/Notifications/Notifications.stories.js.map +1 -1
- package/dist/components/Notifications/types.d.ts +17 -2
- package/dist/components/Notifications/types.js.map +1 -1
- package/dist/components/Notifications/utils.js +6 -1
- package/dist/components/Notifications/utils.js.map +1 -1
- package/dist/data/notifications.d.ts +16 -11
- package/dist/data/notifications.js +177 -82
- package/dist/data/notifications.js.map +1 -1
- package/package.json +3 -3
@@ -123,11 +123,26 @@ type EventsStartsSoonNotificationProps = RawDecentralandNotification<Notificatio
|
|
123
123
|
}>;
|
124
124
|
type EventsStartedNotificationProps = RawDecentralandNotification<NotificationType.EVENTS_STARTED, CommonEventsMetadataProps>;
|
125
125
|
type EventsNotificationsProps = EventsStartsSoonNotificationProps | EventsStartedNotificationProps;
|
126
|
-
type
|
126
|
+
type CommonStreamingNotificationMetadataProps = {
|
127
|
+
title: string;
|
128
|
+
description: string;
|
129
|
+
position: string;
|
130
|
+
worldName: string | null;
|
131
|
+
isWorld: boolean;
|
132
|
+
url: string;
|
133
|
+
address: string;
|
134
|
+
};
|
135
|
+
type StreamingKeyResetNotificationProps = RawDecentralandNotification<NotificationType.STREAMING_KEY_RESET, CommonStreamingNotificationMetadataProps>;
|
136
|
+
type StreamingKeyRevokeNotificationProps = RawDecentralandNotification<NotificationType.STREAMING_KEY_REVOKE, CommonStreamingNotificationMetadataProps>;
|
137
|
+
type StreamingKeyExpiredNotificationProps = RawDecentralandNotification<NotificationType.STREAMING_KEY_EXPIRED, CommonStreamingNotificationMetadataProps>;
|
138
|
+
type StreamingTimeExceededNotificationProps = RawDecentralandNotification<NotificationType.STREAMING_TIME_EXCEEDED, CommonStreamingNotificationMetadataProps>;
|
139
|
+
type StreamingPlaceUpdatedNotificationProps = RawDecentralandNotification<NotificationType.STREAMING_PLACE_UPDATED, CommonStreamingNotificationMetadataProps>;
|
140
|
+
type StreamingNotificationsProps = StreamingKeyResetNotificationProps | StreamingKeyRevokeNotificationProps | StreamingKeyExpiredNotificationProps | StreamingTimeExceededNotificationProps | StreamingPlaceUpdatedNotificationProps;
|
141
|
+
type DCLNotificationProps = MarketplaceNotificationsProps | GovernanceNotificationsProps | WorldsNotificationsProps | LandNotificationsProps | RewardsNotificationProps | EventsNotificationsProps | StreamingNotificationsProps;
|
127
142
|
type CommonNotificationProps<N> = {
|
128
143
|
notification: N;
|
129
144
|
locale: NotificationLocale;
|
130
145
|
renderProfile?: (address: string) => JSX.Element | string | null;
|
131
146
|
};
|
132
147
|
export { NotificationActiveTab };
|
133
|
-
export type { NotificationLocale, RawDecentralandNotification, ItemSoldNotificationProps, RoyalitesEarnedNotificationProps, BidAcceptedNotificationProps, BidReceivedNotificationProps, GovernanceAnnouncementNotificationProps, GovernanceProposalEnactedNotificationProps, GovernanceCoauthorRequestedNotificationProps, GovernanceAuthoredProposalFinishedNotificationProps, GovernanceVotingEndedVoterNotificationProps, GovernanceNewCommentOnProposalNotificationProps, GovernanceNewCommentOnProjectUpdateNotificationProps, GovernancePitchPassedNotificationProps, GovernanceTenderPassedNotificationProps, WorldsMissingResourcesNotificationProps, WorldsAccessRestrictedNotificationProps, WorldsAccessRestoredNotificationProps, WorldsPermissionGrantedNotificationProps, WorldsPermissionRevokedNotificationProps, LandRentedNotificationProps, LandRentalEndedNotificationProps, RewardAssignedNotificationProps, RewardInProgressNotificationProps, RewardDelayedNotificationProps, CampaignOutOfStockNotificationProps, CampaignOutOfFundsNotificationProps, CampaignGasPriceHigherThanExpectedNotificationProps, EventsStartsSoonNotificationProps, EventsStartedNotificationProps, DCLNotificationProps, CommonNotificationProps, };
|
148
|
+
export type { NotificationLocale, RawDecentralandNotification, ItemSoldNotificationProps, RoyalitesEarnedNotificationProps, BidAcceptedNotificationProps, BidReceivedNotificationProps, GovernanceAnnouncementNotificationProps, GovernanceProposalEnactedNotificationProps, GovernanceCoauthorRequestedNotificationProps, GovernanceAuthoredProposalFinishedNotificationProps, GovernanceVotingEndedVoterNotificationProps, GovernanceNewCommentOnProposalNotificationProps, GovernanceNewCommentOnProjectUpdateNotificationProps, GovernancePitchPassedNotificationProps, GovernanceTenderPassedNotificationProps, WorldsMissingResourcesNotificationProps, WorldsAccessRestrictedNotificationProps, WorldsAccessRestoredNotificationProps, WorldsPermissionGrantedNotificationProps, WorldsPermissionRevokedNotificationProps, LandRentedNotificationProps, LandRentalEndedNotificationProps, RewardAssignedNotificationProps, RewardInProgressNotificationProps, RewardDelayedNotificationProps, CampaignOutOfStockNotificationProps, CampaignOutOfFundsNotificationProps, CampaignGasPriceHigherThanExpectedNotificationProps, EventsStartsSoonNotificationProps, EventsStartedNotificationProps, StreamingKeyResetNotificationProps, StreamingKeyRevokeNotificationProps, StreamingKeyExpiredNotificationProps, StreamingTimeExceededNotificationProps, StreamingPlaceUpdatedNotificationProps, StreamingNotificationsProps, DCLNotificationProps, CommonNotificationProps, };
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/Notifications/types.ts"],"names":[],"mappings":"AAEA,IAAK,qBAGJ;AAHD,WAAK,qBAAqB;IACxB,0CAAiB,CAAA;IACjB,sCAAa,CAAA;AACf,CAAC,EAHI,qBAAqB,KAArB,qBAAqB,QAGzB;
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/components/Notifications/types.ts"],"names":[],"mappings":"AAEA,IAAK,qBAGJ;AAHD,WAAK,qBAAqB;IACxB,0CAAiB,CAAA;IACjB,sCAAa,CAAA;AACf,CAAC,EAHI,qBAAqB,KAArB,qBAAqB,QAGzB;AAiXD,OAAO,EAAE,qBAAqB,EAAE,CAAA"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
2
2
|
import { NotificationType, Rarity } from "@dcl/schemas";
|
3
|
-
import { BidAcceptedNotification, BidReceivedNotification, CampaignGasPriceHigherThanExpectedNotification, CampaignOutOfFundsNotification, CampaignOutOfStockNotification, EventsStartedNotification, EventsStartsSoonNotification, GovernanceAnnouncementNotification, GovernanceAuthoredProposalFinishedNotification, GovernanceCoauthorRequestedNotification, GovernanceNewCommentOnProjectUpdateNotification, GovernanceNewCommentOnProposalNotification, GovernancePitchPassedNotification, GovernanceProposalEnactedNotification, GovernanceTenderPassedNotification, GovernanceVotingEndedVoterNotification, ItemSoldNotification, LandRentalEndedNotification, LandRentedNotification, RewardAssignedNotification, RewardDelayedNotification, RewardInProgressNotification, RoyaltiesEarnedNotification, WorldsAccessRestoredNotification, WorldsAccessRestrictedNotification, WorldsMissingResourcesNotification, WorldsPermissionGrantedNotification, WorldsPermissionRevokedNotification, } from "./NotificationTypes";
|
3
|
+
import { BidAcceptedNotification, BidReceivedNotification, CampaignGasPriceHigherThanExpectedNotification, CampaignOutOfFundsNotification, CampaignOutOfStockNotification, EventsStartedNotification, EventsStartsSoonNotification, GovernanceAnnouncementNotification, GovernanceAuthoredProposalFinishedNotification, GovernanceCoauthorRequestedNotification, GovernanceNewCommentOnProjectUpdateNotification, GovernanceNewCommentOnProposalNotification, GovernancePitchPassedNotification, GovernanceProposalEnactedNotification, GovernanceTenderPassedNotification, GovernanceVotingEndedVoterNotification, ItemSoldNotification, LandRentalEndedNotification, LandRentedNotification, RewardAssignedNotification, RewardDelayedNotification, RewardInProgressNotification, RoyaltiesEarnedNotification, StreamingKeyExpiredNotification, StreamingKeyResetNotification, StreamingKeyRevokeNotification, StreamingPlaceUpdatedNotification, StreamingTimeExceededNotification, WorldsAccessRestoredNotification, WorldsAccessRestrictedNotification, WorldsMissingResourcesNotification, WorldsPermissionGrantedNotification, WorldsPermissionRevokedNotification, } from "./NotificationTypes";
|
4
4
|
const MAXIMUM_FRACTION_DIGITS = 2;
|
5
5
|
function formatMana(mana, maximumFractionDigits = MAXIMUM_FRACTION_DIGITS) {
|
6
6
|
return (Number(mana) / 1e18).toFixed(maximumFractionDigits).toLocaleString();
|
@@ -37,6 +37,11 @@ const NotificationComponentByType = {
|
|
37
37
|
[NotificationType.REWARD_CAMPAIGN_OUT_OF_FUNDS]: CampaignOutOfFundsNotification,
|
38
38
|
[NotificationType.REWARD_CAMPAIGN_GAS_PRICE_HIGHER_THAN_EXPECTED]: CampaignGasPriceHigherThanExpectedNotification,
|
39
39
|
[NotificationType.REWARD_CAMPAIGN_OUT_OF_STOCK]: CampaignOutOfStockNotification,
|
40
|
+
[NotificationType.STREAMING_KEY_RESET]: StreamingKeyResetNotification,
|
41
|
+
[NotificationType.STREAMING_KEY_REVOKE]: StreamingKeyRevokeNotification,
|
42
|
+
[NotificationType.STREAMING_KEY_EXPIRED]: StreamingKeyExpiredNotification,
|
43
|
+
[NotificationType.STREAMING_TIME_EXCEEDED]: StreamingTimeExceededNotification,
|
44
|
+
[NotificationType.STREAMING_PLACE_UPDATED]: StreamingPlaceUpdatedNotification,
|
40
45
|
};
|
41
46
|
const CURRENT_AVAILABLE_NOTIFICATIONS = Object.keys(NotificationComponentByType);
|
42
47
|
const replaceWithValues = (str, values) => {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/components/Notifications/utils.tsx"],"names":[],"mappings":"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
|
1
|
+
{"version":3,"file":"utils.js","sourceRoot":"","sources":["../../../src/components/Notifications/utils.tsx"],"names":[],"mappings":"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"}
|
@@ -1,4 +1,9 @@
|
|
1
|
-
import { BidAcceptedNotificationProps, BidReceivedNotificationProps, CampaignGasPriceHigherThanExpectedNotificationProps, CampaignOutOfFundsNotificationProps, CampaignOutOfStockNotificationProps, EventsStartedNotificationProps, EventsStartsSoonNotificationProps, GovernanceAnnouncementNotificationProps, GovernanceAuthoredProposalFinishedNotificationProps, GovernanceCoauthorRequestedNotificationProps, GovernanceNewCommentOnProjectUpdateNotificationProps, GovernanceNewCommentOnProposalNotificationProps, GovernancePitchPassedNotificationProps, GovernanceProposalEnactedNotificationProps, GovernanceTenderPassedNotificationProps, GovernanceVotingEndedVoterNotificationProps, ItemSoldNotificationProps, LandRentalEndedNotificationProps, LandRentedNotificationProps, RewardAssignedNotificationProps, RewardDelayedNotificationProps, RewardInProgressNotificationProps, RoyalitesEarnedNotificationProps, WorldsAccessRestoredNotificationProps, WorldsAccessRestrictedNotificationProps, WorldsMissingResourcesNotificationProps, WorldsPermissionGrantedNotificationProps, WorldsPermissionRevokedNotificationProps } from "../components/Notifications/types";
|
1
|
+
import { BidAcceptedNotificationProps, BidReceivedNotificationProps, CampaignGasPriceHigherThanExpectedNotificationProps, CampaignOutOfFundsNotificationProps, CampaignOutOfStockNotificationProps, EventsStartedNotificationProps, EventsStartsSoonNotificationProps, GovernanceAnnouncementNotificationProps, GovernanceAuthoredProposalFinishedNotificationProps, GovernanceCoauthorRequestedNotificationProps, GovernanceNewCommentOnProjectUpdateNotificationProps, GovernanceNewCommentOnProposalNotificationProps, GovernancePitchPassedNotificationProps, GovernanceProposalEnactedNotificationProps, GovernanceTenderPassedNotificationProps, GovernanceVotingEndedVoterNotificationProps, ItemSoldNotificationProps, LandRentalEndedNotificationProps, LandRentedNotificationProps, RewardAssignedNotificationProps, RewardDelayedNotificationProps, RewardInProgressNotificationProps, RoyalitesEarnedNotificationProps, StreamingKeyExpiredNotificationProps, StreamingKeyResetNotificationProps, StreamingKeyRevokeNotificationProps, StreamingPlaceUpdatedNotificationProps, StreamingTimeExceededNotificationProps, WorldsAccessRestoredNotificationProps, WorldsAccessRestrictedNotificationProps, WorldsMissingResourcesNotificationProps, WorldsPermissionGrantedNotificationProps, WorldsPermissionRevokedNotificationProps } from "../components/Notifications/types";
|
2
|
+
declare const bidAcceptedNotificationData: BidAcceptedNotificationProps;
|
3
|
+
declare const bidReceivedNotificationPropsData: BidReceivedNotificationProps;
|
4
|
+
declare const campaignGasPriceHigherThanExpectedNotificationData: CampaignGasPriceHigherThanExpectedNotificationProps;
|
5
|
+
declare const campaignOutOfFundsNotificationData: CampaignOutOfFundsNotificationProps;
|
6
|
+
declare const campaignOutOfStockNotificationData: CampaignOutOfStockNotificationProps;
|
2
7
|
declare const eventStartedNotificationData: EventsStartedNotificationProps;
|
3
8
|
declare const eventStartsSoonFutureStartNotificationData: EventsStartsSoonNotificationProps;
|
4
9
|
declare const eventStartsSoonPastStartNotificationData: EventsStartsSoonNotificationProps;
|
@@ -11,22 +16,22 @@ declare const governancePitchPassedNotificationData: GovernancePitchPassedNotifi
|
|
11
16
|
declare const governanceProposalEnactedNotificationData: GovernanceProposalEnactedNotificationProps;
|
12
17
|
declare const governanceTenderPassedNotificationData: GovernanceTenderPassedNotificationProps;
|
13
18
|
declare const governanceVotingEndedVoterNotificationData: GovernanceVotingEndedVoterNotificationProps;
|
19
|
+
declare const itemSoldNotificationPropsData: ItemSoldNotificationProps;
|
14
20
|
declare const landRentalEndedNotificationData: LandRentalEndedNotificationProps;
|
15
21
|
declare const landRentedNotificationData: LandRentedNotificationProps;
|
16
|
-
declare const bidAcceptedNotificationData: BidAcceptedNotificationProps;
|
17
|
-
declare const bidReceivedNotificationPropsData: BidReceivedNotificationProps;
|
18
|
-
declare const itemSoldNotificationPropsData: ItemSoldNotificationProps;
|
19
|
-
declare const royalitesEarnedNotificationPropsData: RoyalitesEarnedNotificationProps;
|
20
22
|
declare const rewardAssignedNotificationData: RewardAssignedNotificationProps;
|
21
|
-
declare const rewardInProgressNotificationData: RewardInProgressNotificationProps;
|
22
23
|
declare const rewardDelayedNotificationData: RewardDelayedNotificationProps;
|
23
|
-
declare const
|
24
|
-
declare const
|
25
|
-
declare const
|
24
|
+
declare const rewardInProgressNotificationData: RewardInProgressNotificationProps;
|
25
|
+
declare const royalitesEarnedNotificationPropsData: RoyalitesEarnedNotificationProps;
|
26
|
+
declare const streamingKeyExpiredNotificationData: StreamingKeyExpiredNotificationProps;
|
27
|
+
declare const streamingKeyResetNotificationData: StreamingKeyResetNotificationProps;
|
28
|
+
declare const streamingKeyRevokeNotificationData: StreamingKeyRevokeNotificationProps;
|
29
|
+
declare const streamingPlaceUpdatedNotificationData: StreamingPlaceUpdatedNotificationProps;
|
30
|
+
declare const streamingTimeExceededNotificationData: StreamingTimeExceededNotificationProps;
|
26
31
|
declare const worldsAccessRestoredNotificationData: WorldsAccessRestoredNotificationProps;
|
27
32
|
declare const worldsAccessRestrictedNotificationData: WorldsAccessRestrictedNotificationProps;
|
28
33
|
declare const worldsMissingResourcesNotificationData: WorldsMissingResourcesNotificationProps;
|
29
34
|
declare const worldsPermissionGrantedNotificationPropsData: WorldsPermissionGrantedNotificationProps;
|
30
35
|
declare const worldsPermissionRevokedNotificationData: WorldsPermissionRevokedNotificationProps;
|
31
|
-
declare const allTypeOfNotifications: (ItemSoldNotificationProps | RoyalitesEarnedNotificationProps | BidAcceptedNotificationProps | BidReceivedNotificationProps | RewardAssignedNotificationProps | RewardInProgressNotificationProps | RewardDelayedNotificationProps | CampaignOutOfFundsNotificationProps | CampaignOutOfStockNotificationProps | CampaignGasPriceHigherThanExpectedNotificationProps | GovernanceAnnouncementNotificationProps | GovernanceProposalEnactedNotificationProps | GovernanceCoauthorRequestedNotificationProps | GovernanceAuthoredProposalFinishedNotificationProps | GovernanceVotingEndedVoterNotificationProps | GovernanceNewCommentOnProposalNotificationProps | GovernanceNewCommentOnProjectUpdateNotificationProps | GovernancePitchPassedNotificationProps | GovernanceTenderPassedNotificationProps | WorldsMissingResourcesNotificationProps | WorldsAccessRestrictedNotificationProps | WorldsAccessRestoredNotificationProps | WorldsPermissionGrantedNotificationProps | WorldsPermissionRevokedNotificationProps | LandRentedNotificationProps | LandRentalEndedNotificationProps | EventsStartsSoonNotificationProps | EventsStartedNotificationProps)[];
|
32
|
-
export { allTypeOfNotifications, eventStartedNotificationData, eventStartsSoonFutureStartNotificationData, eventStartsSoonPastStartNotificationData, governanceAnnouncementNotificationData, governanceAuthoredProposalFinishedNotificationData, governanceCoauthorRequestedNotificationData, governanceNewCommentOnProjectUpdateNotificationData, governanceNewCommentOnProposalNotificationData, governancePitchPassedNotificationData, governanceProposalEnactedNotificationData, governanceTenderPassedNotificationData, governanceVotingEndedVoterNotificationData, landRentalEndedNotificationData, landRentedNotificationData,
|
36
|
+
declare const allTypeOfNotifications: (ItemSoldNotificationProps | RoyalitesEarnedNotificationProps | BidAcceptedNotificationProps | BidReceivedNotificationProps | RewardAssignedNotificationProps | RewardInProgressNotificationProps | RewardDelayedNotificationProps | CampaignOutOfFundsNotificationProps | CampaignOutOfStockNotificationProps | CampaignGasPriceHigherThanExpectedNotificationProps | GovernanceAnnouncementNotificationProps | GovernanceProposalEnactedNotificationProps | GovernanceCoauthorRequestedNotificationProps | GovernanceAuthoredProposalFinishedNotificationProps | GovernanceVotingEndedVoterNotificationProps | GovernanceNewCommentOnProposalNotificationProps | GovernanceNewCommentOnProjectUpdateNotificationProps | GovernancePitchPassedNotificationProps | GovernanceTenderPassedNotificationProps | WorldsMissingResourcesNotificationProps | WorldsAccessRestrictedNotificationProps | WorldsAccessRestoredNotificationProps | WorldsPermissionGrantedNotificationProps | WorldsPermissionRevokedNotificationProps | LandRentedNotificationProps | LandRentalEndedNotificationProps | EventsStartsSoonNotificationProps | EventsStartedNotificationProps | StreamingKeyResetNotificationProps | StreamingKeyRevokeNotificationProps | StreamingKeyExpiredNotificationProps | StreamingTimeExceededNotificationProps | StreamingPlaceUpdatedNotificationProps)[];
|
37
|
+
export { allTypeOfNotifications, bidAcceptedNotificationData, bidReceivedNotificationPropsData, campaignGasPriceHigherThanExpectedNotificationData, campaignOutOfFundsNotificationData, campaignOutOfStockNotificationData, eventStartedNotificationData, eventStartsSoonFutureStartNotificationData, eventStartsSoonPastStartNotificationData, governanceAnnouncementNotificationData, governanceAuthoredProposalFinishedNotificationData, governanceCoauthorRequestedNotificationData, governanceNewCommentOnProjectUpdateNotificationData, governanceNewCommentOnProposalNotificationData, governancePitchPassedNotificationData, governanceProposalEnactedNotificationData, governanceTenderPassedNotificationData, governanceVotingEndedVoterNotificationData, itemSoldNotificationPropsData, landRentalEndedNotificationData, landRentedNotificationData, rewardAssignedNotificationData, rewardDelayedNotificationData, rewardInProgressNotificationData, royalitesEarnedNotificationPropsData, streamingKeyExpiredNotificationData, streamingKeyResetNotificationData, streamingKeyRevokeNotificationData, streamingPlaceUpdatedNotificationData, streamingTimeExceededNotificationData, worldsAccessRestoredNotificationData, worldsAccessRestrictedNotificationData, worldsMissingResourcesNotificationData, worldsPermissionGrantedNotificationPropsData, worldsPermissionRevokedNotificationData, };
|
@@ -3,6 +3,81 @@ const futureStartDate = new Date();
|
|
3
3
|
futureStartDate.setSeconds(futureStartDate.getSeconds() + 120);
|
4
4
|
const pastStartDate = new Date();
|
5
5
|
pastStartDate.setSeconds(pastStartDate.getSeconds() - 50);
|
6
|
+
const bidAcceptedNotificationData = {
|
7
|
+
id: NotificationType.BID_ACCEPTED,
|
8
|
+
read: true,
|
9
|
+
type: NotificationType.BID_ACCEPTED,
|
10
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
11
|
+
timestamp: new Date().getTime(),
|
12
|
+
metadata: {
|
13
|
+
link: "https://market.decentraland.org/contracts/0xa8ee490e4c4da48cc1653502c1a77479d4d818de/tokens/590",
|
14
|
+
image: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
15
|
+
rarity: Rarity.UNIQUE,
|
16
|
+
nftName: "Exclusive Binance Hoodie",
|
17
|
+
network: "ethereum",
|
18
|
+
category: NFTCategory.WEARABLE,
|
19
|
+
price: "78960000000000000000",
|
20
|
+
},
|
21
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
22
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
23
|
+
};
|
24
|
+
const bidReceivedNotificationPropsData = {
|
25
|
+
id: NotificationType.BID_RECEIVED,
|
26
|
+
read: true,
|
27
|
+
type: NotificationType.BID_RECEIVED,
|
28
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
29
|
+
timestamp: new Date().getTime(),
|
30
|
+
metadata: {
|
31
|
+
link: "https://market.decentraland.org/contracts/0xa8ee490e4c4da48cc1653502c1a77479d4d818de/tokens/590",
|
32
|
+
image: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
33
|
+
rarity: Rarity.UNIQUE,
|
34
|
+
nftName: "Exclusive Binance Hoodie",
|
35
|
+
network: "polygon",
|
36
|
+
category: NFTCategory.WEARABLE,
|
37
|
+
price: "78960000000000000000",
|
38
|
+
},
|
39
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
40
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
41
|
+
};
|
42
|
+
const campaignGasPriceHigherThanExpectedNotificationData = {
|
43
|
+
id: NotificationType.REWARD_CAMPAIGN_GAS_PRICE_HIGHER_THAN_EXPECTED,
|
44
|
+
read: true,
|
45
|
+
type: NotificationType.REWARD_CAMPAIGN_GAS_PRICE_HIGHER_THAN_EXPECTED,
|
46
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
47
|
+
timestamp: new Date().getTime(),
|
48
|
+
metadata: {
|
49
|
+
campaignName: "Cool Campaign",
|
50
|
+
link: "https://decentraland.zone/rewards/campaign/?id=e9b39fdb-1bf1-490a-855e-f5e6c63a4525",
|
51
|
+
},
|
52
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
53
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
54
|
+
};
|
55
|
+
const campaignOutOfFundsNotificationData = {
|
56
|
+
id: NotificationType.REWARD_CAMPAIGN_OUT_OF_FUNDS,
|
57
|
+
read: true,
|
58
|
+
type: NotificationType.REWARD_CAMPAIGN_OUT_OF_FUNDS,
|
59
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
60
|
+
timestamp: new Date().getTime(),
|
61
|
+
metadata: {
|
62
|
+
campaignName: "Cool Campaign",
|
63
|
+
link: "https://decentraland.zone/rewards/campaign/?id=e9b39fdb-1bf1-490a-855e-f5e6c63a4525",
|
64
|
+
},
|
65
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
66
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
67
|
+
};
|
68
|
+
const campaignOutOfStockNotificationData = {
|
69
|
+
id: NotificationType.REWARD_CAMPAIGN_OUT_OF_STOCK,
|
70
|
+
read: true,
|
71
|
+
type: NotificationType.REWARD_CAMPAIGN_OUT_OF_STOCK,
|
72
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
73
|
+
timestamp: new Date().getTime(),
|
74
|
+
metadata: {
|
75
|
+
campaignName: "Cool Campaign",
|
76
|
+
link: "https://decentraland.zone/rewards/campaign/?id=e9b39fdb-1bf1-490a-855e-f5e6c63a4525",
|
77
|
+
},
|
78
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
79
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
80
|
+
};
|
6
81
|
const eventStartedNotificationData = {
|
7
82
|
id: NotificationType.EVENTS_STARTED,
|
8
83
|
read: true,
|
@@ -191,6 +266,24 @@ const governanceVotingEndedVoterNotificationData = {
|
|
191
266
|
created_at: "2023-11-29T12:51:00.600Z",
|
192
267
|
updated_at: "2023-11-29T12:51:00.600Z",
|
193
268
|
};
|
269
|
+
const itemSoldNotificationPropsData = {
|
270
|
+
id: NotificationType.ITEM_SOLD,
|
271
|
+
read: true,
|
272
|
+
type: NotificationType.ITEM_SOLD,
|
273
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
274
|
+
timestamp: new Date().getTime(),
|
275
|
+
metadata: {
|
276
|
+
link: "https://market.decentraland.org/contracts/0xa8ee490e4c4da48cc1653502c1a77479d4d818de/tokens/590",
|
277
|
+
image: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
278
|
+
rarity: Rarity.LEGENDARY,
|
279
|
+
seller: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
280
|
+
nftName: "Exclusive Binance Hoodie",
|
281
|
+
network: "polygon",
|
282
|
+
category: NFTCategory.WEARABLE,
|
283
|
+
},
|
284
|
+
created_at: "2023-11-29T12:51:00.600Z",
|
285
|
+
updated_at: "2023-11-29T12:51:00.600Z",
|
286
|
+
};
|
194
287
|
const landRentalEndedNotificationData = {
|
195
288
|
id: NotificationType.LAND_RENTAL_ENDED,
|
196
289
|
read: true,
|
@@ -235,56 +328,44 @@ const landRentedNotificationData = {
|
|
235
328
|
created_at: "2023-11-29T12:51:00.600Z",
|
236
329
|
updated_at: "2023-11-29T12:51:00.600Z",
|
237
330
|
};
|
238
|
-
const
|
239
|
-
id: NotificationType.
|
331
|
+
const rewardAssignedNotificationData = {
|
332
|
+
id: NotificationType.REWARD_ASSIGNED,
|
240
333
|
read: true,
|
241
|
-
type: NotificationType.
|
334
|
+
type: NotificationType.REWARD_ASSIGNED,
|
242
335
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
243
336
|
timestamp: new Date().getTime(),
|
244
337
|
metadata: {
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
nftName: "Exclusive Binance Hoodie",
|
249
|
-
network: "ethereum",
|
250
|
-
category: NFTCategory.WEARABLE,
|
251
|
-
price: "78960000000000000000",
|
338
|
+
tokenImage: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
339
|
+
tokenRarity: Rarity.MYTHIC,
|
340
|
+
tokenName: "NJacket",
|
252
341
|
},
|
253
342
|
created_at: "2023-11-29T12:51:00.600Z",
|
254
343
|
updated_at: "2023-11-29T12:51:00.600Z",
|
255
344
|
};
|
256
|
-
const
|
257
|
-
id: NotificationType.
|
345
|
+
const rewardDelayedNotificationData = {
|
346
|
+
id: NotificationType.REWARD_DELAYED,
|
258
347
|
read: true,
|
259
|
-
type: NotificationType.
|
348
|
+
type: NotificationType.REWARD_DELAYED,
|
260
349
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
261
350
|
timestamp: new Date().getTime(),
|
262
351
|
metadata: {
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
nftName: "Exclusive Binance Hoodie",
|
267
|
-
network: "polygon",
|
268
|
-
category: NFTCategory.WEARABLE,
|
269
|
-
price: "78960000000000000000",
|
352
|
+
tokenImage: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
353
|
+
tokenRarity: Rarity.MYTHIC,
|
354
|
+
tokenName: "NJacket",
|
270
355
|
},
|
271
356
|
created_at: "2023-11-29T12:51:00.600Z",
|
272
357
|
updated_at: "2023-11-29T12:51:00.600Z",
|
273
358
|
};
|
274
|
-
const
|
275
|
-
id: NotificationType.
|
359
|
+
const rewardInProgressNotificationData = {
|
360
|
+
id: NotificationType.REWARD_IN_PROGRESS,
|
276
361
|
read: true,
|
277
|
-
type: NotificationType.
|
362
|
+
type: NotificationType.REWARD_IN_PROGRESS,
|
278
363
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
279
364
|
timestamp: new Date().getTime(),
|
280
365
|
metadata: {
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
seller: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
285
|
-
nftName: "Exclusive Binance Hoodie",
|
286
|
-
network: "polygon",
|
287
|
-
category: NFTCategory.WEARABLE,
|
366
|
+
tokenImage: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
367
|
+
tokenRarity: Rarity.MYTHIC,
|
368
|
+
tokenName: "NJacket",
|
288
369
|
},
|
289
370
|
created_at: "2023-11-29T12:51:00.600Z",
|
290
371
|
updated_at: "2023-11-29T12:51:00.600Z",
|
@@ -308,83 +389,92 @@ const royalitesEarnedNotificationPropsData = {
|
|
308
389
|
created_at: "2023-11-29T12:51:00.600Z",
|
309
390
|
updated_at: "2023-11-29T12:51:00.600Z",
|
310
391
|
};
|
311
|
-
const
|
312
|
-
id: NotificationType.
|
313
|
-
read: true,
|
314
|
-
type: NotificationType.REWARD_ASSIGNED,
|
315
|
-
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
316
|
-
timestamp: new Date().getTime(),
|
317
|
-
metadata: {
|
318
|
-
tokenImage: "https://peer.decentraland.org/lambdas/collections/contents/urn:decentraland:ethereum:collections-v1:binance_us_collection:binance_us_upper_body/thumbnail",
|
319
|
-
tokenRarity: Rarity.MYTHIC,
|
320
|
-
tokenName: "NJacket",
|
321
|
-
},
|
322
|
-
created_at: "2023-11-29T12:51:00.600Z",
|
323
|
-
updated_at: "2023-11-29T12:51:00.600Z",
|
324
|
-
};
|
325
|
-
const rewardInProgressNotificationData = {
|
326
|
-
id: NotificationType.REWARD_IN_PROGRESS,
|
392
|
+
const streamingKeyExpiredNotificationData = {
|
393
|
+
id: NotificationType.STREAMING_KEY_EXPIRED,
|
327
394
|
read: true,
|
328
|
-
type: NotificationType.
|
395
|
+
type: NotificationType.STREAMING_KEY_EXPIRED,
|
329
396
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
330
397
|
timestamp: new Date().getTime(),
|
331
398
|
metadata: {
|
332
|
-
|
333
|
-
|
334
|
-
|
399
|
+
title: "Stream Key Expired",
|
400
|
+
description: "Your stream key has expired",
|
401
|
+
position: "5,48",
|
402
|
+
worldName: "test-world.dcl.eth",
|
403
|
+
isWorld: false,
|
404
|
+
url: "https://decentraland.org/world/test-world.dcl.eth",
|
405
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
335
406
|
},
|
336
407
|
created_at: "2023-11-29T12:51:00.600Z",
|
337
408
|
updated_at: "2023-11-29T12:51:00.600Z",
|
338
409
|
};
|
339
|
-
const
|
340
|
-
id: NotificationType.
|
410
|
+
const streamingKeyResetNotificationData = {
|
411
|
+
id: NotificationType.STREAMING_KEY_RESET,
|
341
412
|
read: true,
|
342
|
-
type: NotificationType.
|
413
|
+
type: NotificationType.STREAMING_KEY_RESET,
|
343
414
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
344
415
|
timestamp: new Date().getTime(),
|
345
416
|
metadata: {
|
346
|
-
|
347
|
-
|
348
|
-
|
417
|
+
title: "Stream Key Reset",
|
418
|
+
description: "Your stream key has been reset",
|
419
|
+
position: "5,48",
|
420
|
+
worldName: "test-world.dcl.eth",
|
421
|
+
isWorld: true,
|
422
|
+
url: "https://decentraland.org/world/test-world.dcl.eth",
|
423
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
349
424
|
},
|
350
425
|
created_at: "2023-11-29T12:51:00.600Z",
|
351
426
|
updated_at: "2023-11-29T12:51:00.600Z",
|
352
427
|
};
|
353
|
-
const
|
354
|
-
id: NotificationType.
|
428
|
+
const streamingKeyRevokeNotificationData = {
|
429
|
+
id: NotificationType.STREAMING_KEY_REVOKE,
|
355
430
|
read: true,
|
356
|
-
type: NotificationType.
|
431
|
+
type: NotificationType.STREAMING_KEY_REVOKE,
|
357
432
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
358
433
|
timestamp: new Date().getTime(),
|
359
434
|
metadata: {
|
360
|
-
|
361
|
-
|
435
|
+
title: "Stream Key Revoked",
|
436
|
+
description: "Your stream key has been revoked",
|
437
|
+
position: "5,48",
|
438
|
+
worldName: "test-world.dcl.eth",
|
439
|
+
isWorld: false,
|
440
|
+
url: "https://decentraland.org/world/test-world.dcl.eth",
|
441
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
362
442
|
},
|
363
443
|
created_at: "2023-11-29T12:51:00.600Z",
|
364
444
|
updated_at: "2023-11-29T12:51:00.600Z",
|
365
445
|
};
|
366
|
-
const
|
367
|
-
id: NotificationType.
|
446
|
+
const streamingPlaceUpdatedNotificationData = {
|
447
|
+
id: NotificationType.STREAMING_PLACE_UPDATED,
|
368
448
|
read: true,
|
369
|
-
type: NotificationType.
|
449
|
+
type: NotificationType.STREAMING_PLACE_UPDATED,
|
370
450
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
371
451
|
timestamp: new Date().getTime(),
|
372
452
|
metadata: {
|
373
|
-
|
374
|
-
|
453
|
+
title: "Stream Place Updated",
|
454
|
+
description: "Your stream place has been updated",
|
455
|
+
position: "5,48",
|
456
|
+
worldName: "test-world.dcl.eth",
|
457
|
+
isWorld: true,
|
458
|
+
url: "https://decentraland.org/world/test-world.dcl.eth",
|
459
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
375
460
|
},
|
376
461
|
created_at: "2023-11-29T12:51:00.600Z",
|
377
462
|
updated_at: "2023-11-29T12:51:00.600Z",
|
378
463
|
};
|
379
|
-
const
|
380
|
-
id: NotificationType.
|
464
|
+
const streamingTimeExceededNotificationData = {
|
465
|
+
id: NotificationType.STREAMING_TIME_EXCEEDED,
|
381
466
|
read: true,
|
382
|
-
type: NotificationType.
|
467
|
+
type: NotificationType.STREAMING_TIME_EXCEEDED,
|
383
468
|
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
384
469
|
timestamp: new Date().getTime(),
|
385
470
|
metadata: {
|
386
|
-
|
387
|
-
|
471
|
+
title: "Stream Time Exceeded",
|
472
|
+
description: "Your stream time has been exceeded",
|
473
|
+
position: "5,48",
|
474
|
+
worldName: "test-world.dcl.eth",
|
475
|
+
isWorld: false,
|
476
|
+
url: "https://decentraland.org/world/test-world.dcl.eth",
|
477
|
+
address: "0x6b347a82fcac4e6a38d1fc40e3631bd8f9495e9f",
|
388
478
|
},
|
389
479
|
created_at: "2023-11-29T12:51:00.600Z",
|
390
480
|
updated_at: "2023-11-29T12:51:00.600Z",
|
@@ -441,7 +531,7 @@ const worldsPermissionGrantedNotificationPropsData = {
|
|
441
531
|
timestamp: new Date().getTime(),
|
442
532
|
metadata: {
|
443
533
|
title: "World notification",
|
444
|
-
description: "
|
534
|
+
description: "World description",
|
445
535
|
permissions: ["deployment"],
|
446
536
|
world: "meelrossi.dcl.eth",
|
447
537
|
},
|
@@ -456,7 +546,7 @@ const worldsPermissionRevokedNotificationData = {
|
|
456
546
|
timestamp: new Date().getTime(),
|
457
547
|
metadata: {
|
458
548
|
title: "World notification",
|
459
|
-
description: "
|
549
|
+
description: "World description",
|
460
550
|
permissions: ["deployment"],
|
461
551
|
world: "meelrossi.dcl.eth",
|
462
552
|
},
|
@@ -464,6 +554,11 @@ const worldsPermissionRevokedNotificationData = {
|
|
464
554
|
updated_at: "2023-11-29T12:51:00.600Z",
|
465
555
|
};
|
466
556
|
const allTypeOfNotifications = [
|
557
|
+
bidAcceptedNotificationData,
|
558
|
+
bidReceivedNotificationPropsData,
|
559
|
+
campaignGasPriceHigherThanExpectedNotificationData,
|
560
|
+
campaignOutOfFundsNotificationData,
|
561
|
+
campaignOutOfStockNotificationData,
|
467
562
|
eventStartedNotificationData,
|
468
563
|
eventStartsSoonFutureStartNotificationData,
|
469
564
|
eventStartsSoonPastStartNotificationData,
|
@@ -476,23 +571,23 @@ const allTypeOfNotifications = [
|
|
476
571
|
governanceProposalEnactedNotificationData,
|
477
572
|
governanceTenderPassedNotificationData,
|
478
573
|
governanceVotingEndedVoterNotificationData,
|
574
|
+
itemSoldNotificationPropsData,
|
479
575
|
landRentalEndedNotificationData,
|
480
576
|
landRentedNotificationData,
|
481
|
-
bidAcceptedNotificationData,
|
482
|
-
bidReceivedNotificationPropsData,
|
483
|
-
itemSoldNotificationPropsData,
|
484
|
-
royalitesEarnedNotificationPropsData,
|
485
577
|
rewardAssignedNotificationData,
|
486
|
-
rewardInProgressNotificationData,
|
487
578
|
rewardDelayedNotificationData,
|
488
|
-
|
489
|
-
|
490
|
-
|
579
|
+
rewardInProgressNotificationData,
|
580
|
+
royalitesEarnedNotificationPropsData,
|
581
|
+
streamingKeyExpiredNotificationData,
|
582
|
+
streamingKeyResetNotificationData,
|
583
|
+
streamingKeyRevokeNotificationData,
|
584
|
+
streamingPlaceUpdatedNotificationData,
|
585
|
+
streamingTimeExceededNotificationData,
|
491
586
|
worldsAccessRestoredNotificationData,
|
492
587
|
worldsAccessRestrictedNotificationData,
|
493
588
|
worldsMissingResourcesNotificationData,
|
494
589
|
worldsPermissionGrantedNotificationPropsData,
|
495
590
|
worldsPermissionRevokedNotificationData,
|
496
591
|
];
|
497
|
-
export { allTypeOfNotifications, eventStartedNotificationData, eventStartsSoonFutureStartNotificationData, eventStartsSoonPastStartNotificationData, governanceAnnouncementNotificationData, governanceAuthoredProposalFinishedNotificationData, governanceCoauthorRequestedNotificationData, governanceNewCommentOnProjectUpdateNotificationData, governanceNewCommentOnProposalNotificationData, governancePitchPassedNotificationData, governanceProposalEnactedNotificationData, governanceTenderPassedNotificationData, governanceVotingEndedVoterNotificationData, landRentalEndedNotificationData, landRentedNotificationData,
|
592
|
+
export { allTypeOfNotifications, bidAcceptedNotificationData, bidReceivedNotificationPropsData, campaignGasPriceHigherThanExpectedNotificationData, campaignOutOfFundsNotificationData, campaignOutOfStockNotificationData, eventStartedNotificationData, eventStartsSoonFutureStartNotificationData, eventStartsSoonPastStartNotificationData, governanceAnnouncementNotificationData, governanceAuthoredProposalFinishedNotificationData, governanceCoauthorRequestedNotificationData, governanceNewCommentOnProjectUpdateNotificationData, governanceNewCommentOnProposalNotificationData, governancePitchPassedNotificationData, governanceProposalEnactedNotificationData, governanceTenderPassedNotificationData, governanceVotingEndedVoterNotificationData, itemSoldNotificationPropsData, landRentalEndedNotificationData, landRentedNotificationData, rewardAssignedNotificationData, rewardDelayedNotificationData, rewardInProgressNotificationData, royalitesEarnedNotificationPropsData, streamingKeyExpiredNotificationData, streamingKeyResetNotificationData, streamingKeyRevokeNotificationData, streamingPlaceUpdatedNotificationData, streamingTimeExceededNotificationData, worldsAccessRestoredNotificationData, worldsAccessRestrictedNotificationData, worldsMissingResourcesNotificationData, worldsPermissionGrantedNotificationPropsData, worldsPermissionRevokedNotificationData, };
|
498
593
|
//# sourceMappingURL=notifications.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"notifications.js","sourceRoot":"","sources":["../../src/data/notifications.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"notifications.js","sourceRoot":"","sources":["../../src/data/notifications.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "decentraland-ui2",
|
3
|
-
"version": "0.
|
3
|
+
"version": "0.17.0",
|
4
4
|
"description": "Decentraland's UI components and styles",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -39,7 +39,7 @@
|
|
39
39
|
"dependencies": {
|
40
40
|
"@contentful/rich-text-react-renderer": "^16.0.1",
|
41
41
|
"@dcl/hooks": "^0.0.2",
|
42
|
-
"@dcl/schemas": "^
|
42
|
+
"@dcl/schemas": "^16.6.4",
|
43
43
|
"@dcl/ui-env": "^1.5.1",
|
44
44
|
"@emotion/react": "^11.11.4",
|
45
45
|
"@emotion/styled": "^11.11.5",
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"files": [
|
95
95
|
"dist"
|
96
96
|
],
|
97
|
-
"commit": "
|
97
|
+
"commit": "e7c9748f824370715f95d5e65f09fe696f9d2e40"
|
98
98
|
}
|