@metamask-previews/notification-services-controller 0.0.0-preview-b09c2ed
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/CHANGELOG.md +14 -0
- package/LICENSE +20 -0
- package/README.md +15 -0
- package/dist/NotificationServicesController/NotificationServicesController.js +18 -0
- package/dist/NotificationServicesController/NotificationServicesController.js.map +1 -0
- package/dist/NotificationServicesController/NotificationServicesController.mjs +18 -0
- package/dist/NotificationServicesController/NotificationServicesController.mjs.map +1 -0
- package/dist/NotificationServicesController/constants/constants.js +10 -0
- package/dist/NotificationServicesController/constants/constants.js.map +1 -0
- package/dist/NotificationServicesController/constants/constants.mjs +10 -0
- package/dist/NotificationServicesController/constants/constants.mjs.map +1 -0
- package/dist/NotificationServicesController/constants/index.js +27 -0
- package/dist/NotificationServicesController/constants/index.js.map +1 -0
- package/dist/NotificationServicesController/constants/index.mjs +27 -0
- package/dist/NotificationServicesController/constants/index.mjs.map +1 -0
- package/dist/NotificationServicesController/constants/notification-schema.js +20 -0
- package/dist/NotificationServicesController/constants/notification-schema.js.map +1 -0
- package/dist/NotificationServicesController/constants/notification-schema.mjs +20 -0
- package/dist/NotificationServicesController/constants/notification-schema.mjs.map +1 -0
- package/dist/NotificationServicesController/index.js +44 -0
- package/dist/NotificationServicesController/index.js.map +1 -0
- package/dist/NotificationServicesController/index.mjs +44 -0
- package/dist/NotificationServicesController/index.mjs.map +1 -0
- package/dist/NotificationServicesController/processors/index.js +22 -0
- package/dist/NotificationServicesController/processors/index.js.map +1 -0
- package/dist/NotificationServicesController/processors/index.mjs +22 -0
- package/dist/NotificationServicesController/processors/index.mjs.map +1 -0
- package/dist/NotificationServicesController/processors/process-feature-announcement.js +10 -0
- package/dist/NotificationServicesController/processors/process-feature-announcement.js.map +1 -0
- package/dist/NotificationServicesController/processors/process-feature-announcement.mjs +10 -0
- package/dist/NotificationServicesController/processors/process-feature-announcement.mjs.map +1 -0
- package/dist/NotificationServicesController/processors/process-notifications.js +13 -0
- package/dist/NotificationServicesController/processors/process-notifications.js.map +1 -0
- package/dist/NotificationServicesController/processors/process-notifications.mjs +13 -0
- package/dist/NotificationServicesController/processors/process-notifications.mjs.map +1 -0
- package/dist/NotificationServicesController/processors/process-onchain-notifications.js +8 -0
- package/dist/NotificationServicesController/processors/process-onchain-notifications.js.map +1 -0
- package/dist/NotificationServicesController/processors/process-onchain-notifications.mjs +8 -0
- package/dist/NotificationServicesController/processors/process-onchain-notifications.mjs.map +1 -0
- package/dist/NotificationServicesController/services/feature-announcements.js +14 -0
- package/dist/NotificationServicesController/services/feature-announcements.js.map +1 -0
- package/dist/NotificationServicesController/services/feature-announcements.mjs +14 -0
- package/dist/NotificationServicesController/services/feature-announcements.mjs.map +1 -0
- package/dist/NotificationServicesController/services/onchain-notifications.js +29 -0
- package/dist/NotificationServicesController/services/onchain-notifications.js.map +1 -0
- package/dist/NotificationServicesController/services/onchain-notifications.mjs +29 -0
- package/dist/NotificationServicesController/services/onchain-notifications.mjs.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/feature-announcement.js +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/feature-announcement.js.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/feature-announcement.mjs +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/feature-announcement.mjs.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/index.js +5 -0
- package/dist/NotificationServicesController/types/feature-announcement/index.js.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/index.mjs +5 -0
- package/dist/NotificationServicesController/types/feature-announcement/index.mjs.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-feature-announcement.js +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-feature-announcement.js.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-feature-announcement.mjs +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-feature-announcement.mjs.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-links.js +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-links.js.map +1 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-links.mjs +2 -0
- package/dist/NotificationServicesController/types/feature-announcement/type-links.mjs.map +1 -0
- package/dist/NotificationServicesController/types/index.js +12 -0
- package/dist/NotificationServicesController/types/index.js.map +1 -0
- package/dist/NotificationServicesController/types/index.mjs +12 -0
- package/dist/NotificationServicesController/types/index.mjs.map +1 -0
- package/dist/NotificationServicesController/types/notification/index.js +3 -0
- package/dist/NotificationServicesController/types/notification/index.js.map +1 -0
- package/dist/NotificationServicesController/types/notification/index.mjs +3 -0
- package/dist/NotificationServicesController/types/notification/index.mjs.map +1 -0
- package/dist/NotificationServicesController/types/notification/notification.js +2 -0
- package/dist/NotificationServicesController/types/notification/notification.js.map +1 -0
- package/dist/NotificationServicesController/types/notification/notification.mjs +2 -0
- package/dist/NotificationServicesController/types/notification/notification.mjs.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/index.js +3 -0
- package/dist/NotificationServicesController/types/on-chain-notification/index.js.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/index.mjs +3 -0
- package/dist/NotificationServicesController/types/on-chain-notification/index.mjs.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/on-chain-notification.js +2 -0
- package/dist/NotificationServicesController/types/on-chain-notification/on-chain-notification.js.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/on-chain-notification.mjs +2 -0
- package/dist/NotificationServicesController/types/on-chain-notification/on-chain-notification.mjs.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/schema.js +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/schema.js.map +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/schema.mjs +1 -0
- package/dist/NotificationServicesController/types/on-chain-notification/schema.mjs.map +1 -0
- package/dist/NotificationServicesController/types/type-utils.js +1 -0
- package/dist/NotificationServicesController/types/type-utils.js.map +1 -0
- package/dist/NotificationServicesController/types/type-utils.mjs +1 -0
- package/dist/NotificationServicesController/types/type-utils.mjs.map +1 -0
- package/dist/NotificationServicesController/types/user-storage/index.js +3 -0
- package/dist/NotificationServicesController/types/user-storage/index.js.map +1 -0
- package/dist/NotificationServicesController/types/user-storage/index.mjs +3 -0
- package/dist/NotificationServicesController/types/user-storage/index.mjs.map +1 -0
- package/dist/NotificationServicesController/types/user-storage/user-storage.js +2 -0
- package/dist/NotificationServicesController/types/user-storage/user-storage.js.map +1 -0
- package/dist/NotificationServicesController/types/user-storage/user-storage.mjs +2 -0
- package/dist/NotificationServicesController/types/user-storage/user-storage.mjs.map +1 -0
- package/dist/NotificationServicesController/utils/utils.js +32 -0
- package/dist/NotificationServicesController/utils/utils.js.map +1 -0
- package/dist/NotificationServicesController/utils/utils.mjs +32 -0
- package/dist/NotificationServicesController/utils/utils.mjs.map +1 -0
- package/dist/NotificationServicesPushController/NotificationServicesPushController.js +34 -0
- package/dist/NotificationServicesPushController/NotificationServicesPushController.js.map +1 -0
- package/dist/NotificationServicesPushController/NotificationServicesPushController.mjs +34 -0
- package/dist/NotificationServicesPushController/NotificationServicesPushController.mjs.map +1 -0
- package/dist/NotificationServicesPushController/constants.js +26 -0
- package/dist/NotificationServicesPushController/constants.js.map +1 -0
- package/dist/NotificationServicesPushController/constants.mjs +26 -0
- package/dist/NotificationServicesPushController/constants.mjs.map +1 -0
- package/dist/NotificationServicesPushController/index.js +49 -0
- package/dist/NotificationServicesPushController/index.js.map +1 -0
- package/dist/NotificationServicesPushController/index.mjs +49 -0
- package/dist/NotificationServicesPushController/index.mjs.map +1 -0
- package/dist/NotificationServicesPushController/services/endpoints.js +8 -0
- package/dist/NotificationServicesPushController/services/endpoints.js.map +1 -0
- package/dist/NotificationServicesPushController/services/endpoints.mjs +8 -0
- package/dist/NotificationServicesPushController/services/endpoints.mjs.map +1 -0
- package/dist/NotificationServicesPushController/services/push/index.js +1 -0
- package/dist/NotificationServicesPushController/services/push/index.js.map +1 -0
- package/dist/NotificationServicesPushController/services/push/index.mjs +1 -0
- package/dist/NotificationServicesPushController/services/push/index.mjs.map +1 -0
- package/dist/NotificationServicesPushController/services/push/push-web.js +37 -0
- package/dist/NotificationServicesPushController/services/push/push-web.js.map +1 -0
- package/dist/NotificationServicesPushController/services/push/push-web.mjs +37 -0
- package/dist/NotificationServicesPushController/services/push/push-web.mjs.map +1 -0
- package/dist/NotificationServicesPushController/services/services.js +43 -0
- package/dist/NotificationServicesPushController/services/services.js.map +1 -0
- package/dist/NotificationServicesPushController/services/services.mjs +43 -0
- package/dist/NotificationServicesPushController/services/services.mjs.map +1 -0
- package/dist/NotificationServicesPushController/types/firebase.js +2 -0
- package/dist/NotificationServicesPushController/types/firebase.js.map +1 -0
- package/dist/NotificationServicesPushController/types/firebase.mjs +2 -0
- package/dist/NotificationServicesPushController/types/firebase.mjs.map +1 -0
- package/dist/NotificationServicesPushController/types/index.js +3 -0
- package/dist/NotificationServicesPushController/types/index.js.map +1 -0
- package/dist/NotificationServicesPushController/types/index.mjs +3 -0
- package/dist/NotificationServicesPushController/types/index.mjs.map +1 -0
- package/dist/NotificationServicesPushController/utils/get-notification-data.js +14 -0
- package/dist/NotificationServicesPushController/utils/get-notification-data.js.map +1 -0
- package/dist/NotificationServicesPushController/utils/get-notification-data.mjs +14 -0
- package/dist/NotificationServicesPushController/utils/get-notification-data.mjs.map +1 -0
- package/dist/NotificationServicesPushController/utils/get-notification-message.js +36 -0
- package/dist/NotificationServicesPushController/utils/get-notification-message.js.map +1 -0
- package/dist/NotificationServicesPushController/utils/get-notification-message.mjs +36 -0
- package/dist/NotificationServicesPushController/utils/get-notification-message.mjs.map +1 -0
- package/dist/NotificationServicesPushController/utils/index.js +46 -0
- package/dist/NotificationServicesPushController/utils/index.js.map +1 -0
- package/dist/NotificationServicesPushController/utils/index.mjs +46 -0
- package/dist/NotificationServicesPushController/utils/index.mjs.map +1 -0
- package/dist/chunk-232HZSEV.js +7 -0
- package/dist/chunk-232HZSEV.js.map +1 -0
- package/dist/chunk-26CCETCM.mjs +70 -0
- package/dist/chunk-26CCETCM.mjs.map +1 -0
- package/dist/chunk-3F4M3OUO.mjs +119 -0
- package/dist/chunk-3F4M3OUO.mjs.map +1 -0
- package/dist/chunk-3ZS2HAEG.js +1 -0
- package/dist/chunk-3ZS2HAEG.js.map +1 -0
- package/dist/chunk-4BTNTREI.mjs +1 -0
- package/dist/chunk-4BTNTREI.mjs.map +1 -0
- package/dist/chunk-4QXAPVW3.mjs +1 -0
- package/dist/chunk-4QXAPVW3.mjs.map +1 -0
- package/dist/chunk-52CALMRA.js +28 -0
- package/dist/chunk-52CALMRA.js.map +1 -0
- package/dist/chunk-52NKJDI2.mjs +93 -0
- package/dist/chunk-52NKJDI2.mjs.map +1 -0
- package/dist/chunk-5OYPOYXZ.mjs +802 -0
- package/dist/chunk-5OYPOYXZ.mjs.map +1 -0
- package/dist/chunk-5WWCWQCE.js +214 -0
- package/dist/chunk-5WWCWQCE.js.map +1 -0
- package/dist/chunk-6B5FOWRH.js +119 -0
- package/dist/chunk-6B5FOWRH.js.map +1 -0
- package/dist/chunk-6ZDVTRRT.mjs +9 -0
- package/dist/chunk-6ZDVTRRT.mjs.map +1 -0
- package/dist/chunk-7LWR54U7.js +7 -0
- package/dist/chunk-7LWR54U7.js.map +1 -0
- package/dist/chunk-7RM3YNTD.mjs +1 -0
- package/dist/chunk-7RM3YNTD.mjs.map +1 -0
- package/dist/chunk-A2RPVX47.mjs +1 -0
- package/dist/chunk-A2RPVX47.mjs.map +1 -0
- package/dist/chunk-B25TJ7KS.js +8 -0
- package/dist/chunk-B25TJ7KS.js.map +1 -0
- package/dist/chunk-B4ECJJ5C.mjs +7 -0
- package/dist/chunk-B4ECJJ5C.mjs.map +1 -0
- package/dist/chunk-BONB66A2.mjs +14 -0
- package/dist/chunk-BONB66A2.mjs.map +1 -0
- package/dist/chunk-CQ6CGSKZ.js +35 -0
- package/dist/chunk-CQ6CGSKZ.js.map +1 -0
- package/dist/chunk-D42BBXBM.mjs +28 -0
- package/dist/chunk-D42BBXBM.mjs.map +1 -0
- package/dist/chunk-DMH4NSLF.js +1 -0
- package/dist/chunk-DMH4NSLF.js.map +1 -0
- package/dist/chunk-DNTK4U5M.js +4300 -0
- package/dist/chunk-DNTK4U5M.js.map +1 -0
- package/dist/chunk-DY4ELDRQ.js +176 -0
- package/dist/chunk-DY4ELDRQ.js.map +1 -0
- package/dist/chunk-EJ52BDLB.js +55 -0
- package/dist/chunk-EJ52BDLB.js.map +1 -0
- package/dist/chunk-EQWVJX6K.mjs +91 -0
- package/dist/chunk-EQWVJX6K.mjs.map +1 -0
- package/dist/chunk-FFQNSBPU.js +31 -0
- package/dist/chunk-FFQNSBPU.js.map +1 -0
- package/dist/chunk-G52DNXFH.mjs +1 -0
- package/dist/chunk-G52DNXFH.mjs.map +1 -0
- package/dist/chunk-GETQWOTI.js +1 -0
- package/dist/chunk-GETQWOTI.js.map +1 -0
- package/dist/chunk-GFAESVZA.js +48 -0
- package/dist/chunk-GFAESVZA.js.map +1 -0
- package/dist/chunk-HPUQYDVC.js +1 -0
- package/dist/chunk-HPUQYDVC.js.map +1 -0
- package/dist/chunk-IDO4JFV5.mjs +1 -0
- package/dist/chunk-IDO4JFV5.mjs.map +1 -0
- package/dist/chunk-IKWNHNJQ.mjs +8 -0
- package/dist/chunk-IKWNHNJQ.mjs.map +1 -0
- package/dist/chunk-IOMDG67D.mjs +7 -0
- package/dist/chunk-IOMDG67D.mjs.map +1 -0
- package/dist/chunk-IPI7BAW3.js +1 -0
- package/dist/chunk-IPI7BAW3.js.map +1 -0
- package/dist/chunk-JLHFZ2UG.mjs +31 -0
- package/dist/chunk-JLHFZ2UG.mjs.map +1 -0
- package/dist/chunk-JQ7WKFCI.mjs +1 -0
- package/dist/chunk-JQ7WKFCI.mjs.map +1 -0
- package/dist/chunk-KTQP5UDT.mjs +4300 -0
- package/dist/chunk-KTQP5UDT.mjs.map +1 -0
- package/dist/chunk-LYEXYTOI.js +14 -0
- package/dist/chunk-LYEXYTOI.js.map +1 -0
- package/dist/chunk-NJBJIZLR.js +93 -0
- package/dist/chunk-NJBJIZLR.js.map +1 -0
- package/dist/chunk-NMLYB3XT.js +149 -0
- package/dist/chunk-NMLYB3XT.js.map +1 -0
- package/dist/chunk-ODI2BTKS.mjs +55 -0
- package/dist/chunk-ODI2BTKS.mjs.map +1 -0
- package/dist/chunk-OUPWMPLU.mjs +214 -0
- package/dist/chunk-OUPWMPLU.mjs.map +1 -0
- package/dist/chunk-PGMXFZ6Y.js +207 -0
- package/dist/chunk-PGMXFZ6Y.js.map +1 -0
- package/dist/chunk-PIZCE3JD.js +243 -0
- package/dist/chunk-PIZCE3JD.js.map +1 -0
- package/dist/chunk-PNCS6GEX.mjs +1 -0
- package/dist/chunk-PNCS6GEX.mjs.map +1 -0
- package/dist/chunk-PROWNV4M.js +1 -0
- package/dist/chunk-PROWNV4M.js.map +1 -0
- package/dist/chunk-QB5IFRLA.mjs +1 -0
- package/dist/chunk-QB5IFRLA.mjs.map +1 -0
- package/dist/chunk-QTK2RMF7.mjs +29 -0
- package/dist/chunk-QTK2RMF7.mjs.map +1 -0
- package/dist/chunk-RAUV5UV4.mjs +1 -0
- package/dist/chunk-RAUV5UV4.mjs.map +1 -0
- package/dist/chunk-RQWUD2FB.mjs +48 -0
- package/dist/chunk-RQWUD2FB.mjs.map +1 -0
- package/dist/chunk-SMKJEA45.mjs +243 -0
- package/dist/chunk-SMKJEA45.mjs.map +1 -0
- package/dist/chunk-SSWX2N73.mjs +207 -0
- package/dist/chunk-SSWX2N73.mjs.map +1 -0
- package/dist/chunk-TLX5QQK5.js +9 -0
- package/dist/chunk-TLX5QQK5.js.map +1 -0
- package/dist/chunk-TT56I53C.mjs +149 -0
- package/dist/chunk-TT56I53C.mjs.map +1 -0
- package/dist/chunk-U74Q3BRP.mjs +1 -0
- package/dist/chunk-U74Q3BRP.mjs.map +1 -0
- package/dist/chunk-UIRZIKC3.mjs +187 -0
- package/dist/chunk-UIRZIKC3.mjs.map +1 -0
- package/dist/chunk-UPVIT75F.js +29 -0
- package/dist/chunk-UPVIT75F.js.map +1 -0
- package/dist/chunk-V46WVGWN.js +70 -0
- package/dist/chunk-V46WVGWN.js.map +1 -0
- package/dist/chunk-V5HMYDWE.js +1 -0
- package/dist/chunk-V5HMYDWE.js.map +1 -0
- package/dist/chunk-VC6J62JI.mjs +176 -0
- package/dist/chunk-VC6J62JI.mjs.map +1 -0
- package/dist/chunk-VE4DTN4R.mjs +35 -0
- package/dist/chunk-VE4DTN4R.mjs.map +1 -0
- package/dist/chunk-VOZ7Y2OO.js +187 -0
- package/dist/chunk-VOZ7Y2OO.js.map +1 -0
- package/dist/chunk-WRYFIWNK.js +1 -0
- package/dist/chunk-WRYFIWNK.js.map +1 -0
- package/dist/chunk-XNBTOK6G.js +802 -0
- package/dist/chunk-XNBTOK6G.js.map +1 -0
- package/dist/chunk-XZEVRYUE.js +1 -0
- package/dist/chunk-XZEVRYUE.js.map +1 -0
- package/dist/chunk-ZBNBZN5H.js +1 -0
- package/dist/chunk-ZBNBZN5H.js.map +1 -0
- package/dist/chunk-ZMNXLHAC.js +91 -0
- package/dist/chunk-ZMNXLHAC.js.map +1 -0
- package/dist/chunk-ZV3DFBO4.js +1 -0
- package/dist/chunk-ZV3DFBO4.js.map +1 -0
- package/dist/index.js +43 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +43 -0
- package/dist/index.mjs.map +1 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -0
- package/dist/types/NotificationServicesController/NotificationServicesController.d.ts +222 -0
- package/dist/types/NotificationServicesController/NotificationServicesController.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/index.d.ts +7 -0
- package/dist/types/NotificationServicesController/__fixtures__/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-feature-announcements.d.ts +15 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-feature-announcements.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-notification-trigger.d.ts +9 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-notification-trigger.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-notification-user-storage.d.ts +35 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-notification-user-storage.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-raw-notifications.d.ts +82 -0
- package/dist/types/NotificationServicesController/__fixtures__/mock-raw-notifications.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mockResponses.d.ts +28 -0
- package/dist/types/NotificationServicesController/__fixtures__/mockResponses.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/mockServices.d.ts +12 -0
- package/dist/types/NotificationServicesController/__fixtures__/mockServices.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/__fixtures__/test-utils.d.ts +14 -0
- package/dist/types/NotificationServicesController/__fixtures__/test-utils.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/constants/constants.d.ts +3 -0
- package/dist/types/NotificationServicesController/constants/constants.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/constants/index.d.ts +3 -0
- package/dist/types/NotificationServicesController/constants/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/constants/notification-schema.d.ts +42 -0
- package/dist/types/NotificationServicesController/constants/notification-schema.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/index.d.ts +6 -0
- package/dist/types/NotificationServicesController/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/processors/index.d.ts +4 -0
- package/dist/types/NotificationServicesController/processors/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/processors/process-feature-announcement.d.ts +19 -0
- package/dist/types/NotificationServicesController/processors/process-feature-announcement.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/processors/process-notifications.d.ts +19 -0
- package/dist/types/NotificationServicesController/processors/process-notifications.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/processors/process-onchain-notifications.d.ts +10 -0
- package/dist/types/NotificationServicesController/processors/process-onchain-notifications.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/services/feature-announcements.d.ts +28 -0
- package/dist/types/NotificationServicesController/services/feature-announcements.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/services/onchain-notifications.d.ts +62 -0
- package/dist/types/NotificationServicesController/services/onchain-notifications.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/feature-announcement.d.ts +30 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/feature-announcement.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/index.d.ts +4 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/type-feature-announcement.d.ts +38 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/type-feature-announcement.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/type-links.d.ts +24 -0
- package/dist/types/NotificationServicesController/types/feature-announcement/type-links.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/index.d.ts +5 -0
- package/dist/types/NotificationServicesController/types/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/notification/index.d.ts +2 -0
- package/dist/types/NotificationServicesController/types/notification/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/notification/notification.d.ts +25 -0
- package/dist/types/NotificationServicesController/types/notification/notification.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/index.d.ts +2 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/on-chain-notification.d.ts +42 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/on-chain-notification.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/schema.d.ts +283 -0
- package/dist/types/NotificationServicesController/types/on-chain-notification/schema.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/type-utils.d.ts +7 -0
- package/dist/types/NotificationServicesController/types/type-utils.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/user-storage/index.d.ts +2 -0
- package/dist/types/NotificationServicesController/types/user-storage/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/types/user-storage/user-storage.d.ts +26 -0
- package/dist/types/NotificationServicesController/types/user-storage/user-storage.d.ts.map +1 -0
- package/dist/types/NotificationServicesController/utils/utils.d.ts +144 -0
- package/dist/types/NotificationServicesController/utils/utils.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/NotificationServicesPushController.d.ts +103 -0
- package/dist/types/NotificationServicesPushController/NotificationServicesPushController.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/index.d.ts +3 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/mockResponse.d.ts +43 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/mockResponse.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/mockServices.d.ts +9 -0
- package/dist/types/NotificationServicesPushController/__fixtures__/mockServices.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/constants.d.ts +11 -0
- package/dist/types/NotificationServicesPushController/constants.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/index.d.ts +5 -0
- package/dist/types/NotificationServicesPushController/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/services/endpoints.d.ts +2 -0
- package/dist/types/NotificationServicesPushController/services/endpoints.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/services/push/index.d.ts +6 -0
- package/dist/types/NotificationServicesPushController/services/push/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/services/push/push-web.d.ts +32 -0
- package/dist/types/NotificationServicesPushController/services/push/push-web.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/services/services.d.ts +95 -0
- package/dist/types/NotificationServicesPushController/services/services.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/types/firebase.d.ts +53 -0
- package/dist/types/NotificationServicesPushController/types/firebase.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/types/index.d.ts +2 -0
- package/dist/types/NotificationServicesPushController/types/index.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/utils/get-notification-data.d.ts +42 -0
- package/dist/types/NotificationServicesPushController/utils/get-notification-data.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/utils/get-notification-message.d.ts +67 -0
- package/dist/types/NotificationServicesPushController/utils/get-notification-message.d.ts.map +1 -0
- package/dist/types/NotificationServicesPushController/utils/index.d.ts +3 -0
- package/dist/types/NotificationServicesPushController/utils/index.d.ts.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -0
- package/package.json +80 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";require('../../chunk-232HZSEV.js');
|
|
2
|
+
require('../../chunk-IPI7BAW3.js');
|
|
3
|
+
require('../../chunk-HPUQYDVC.js');
|
|
4
|
+
require('../../chunk-WRYFIWNK.js');
|
|
5
|
+
require('../../chunk-V5HMYDWE.js');
|
|
6
|
+
require('../../chunk-ZBNBZN5H.js');
|
|
7
|
+
require('../../chunk-PROWNV4M.js');
|
|
8
|
+
require('../../chunk-XZEVRYUE.js');
|
|
9
|
+
require('../../chunk-3ZS2HAEG.js');
|
|
10
|
+
require('../../chunk-ZV3DFBO4.js');
|
|
11
|
+
require('../../chunk-DMH4NSLF.js');
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import "../../chunk-B4ECJJ5C.mjs";
|
|
2
|
+
import "../../chunk-4QXAPVW3.mjs";
|
|
3
|
+
import "../../chunk-JQ7WKFCI.mjs";
|
|
4
|
+
import "../../chunk-IDO4JFV5.mjs";
|
|
5
|
+
import "../../chunk-A2RPVX47.mjs";
|
|
6
|
+
import "../../chunk-4BTNTREI.mjs";
|
|
7
|
+
import "../../chunk-QB5IFRLA.mjs";
|
|
8
|
+
import "../../chunk-U74Q3BRP.mjs";
|
|
9
|
+
import "../../chunk-G52DNXFH.mjs";
|
|
10
|
+
import "../../chunk-7RM3YNTD.mjs";
|
|
11
|
+
import "../../chunk-PNCS6GEX.mjs";
|
|
12
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/dist/NotificationServicesController/types/on-chain-notification/on-chain-notification.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";//# sourceMappingURL=schema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=schema.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";//# sourceMappingURL=type-utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=type-utils.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
var _chunkPIZCE3JDjs = require('../../chunk-PIZCE3JD.js');
|
|
15
|
+
require('../../chunk-DY4ELDRQ.js');
|
|
16
|
+
require('../../chunk-TLX5QQK5.js');
|
|
17
|
+
require('../../chunk-V46WVGWN.js');
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
exports.checkAccountsPresence = _chunkPIZCE3JDjs.checkAccountsPresence; exports.getAllUUIDs = _chunkPIZCE3JDjs.getAllUUIDs; exports.getUUIDsForAccount = _chunkPIZCE3JDjs.getUUIDsForAccount; exports.getUUIDsForAccountByKinds = _chunkPIZCE3JDjs.getUUIDsForAccountByKinds; exports.getUUIDsForKinds = _chunkPIZCE3JDjs.getUUIDsForKinds; exports.inferEnabledKinds = _chunkPIZCE3JDjs.inferEnabledKinds; exports.initializeUserStorage = _chunkPIZCE3JDjs.initializeUserStorage; exports.makeApiCall = _chunkPIZCE3JDjs.makeApiCall; exports.toggleUserStorageTriggerStatus = _chunkPIZCE3JDjs.toggleUserStorageTriggerStatus; exports.traverseUserStorageTriggers = _chunkPIZCE3JDjs.traverseUserStorageTriggers; exports.upsertAddressTriggers = _chunkPIZCE3JDjs.upsertAddressTriggers; exports.upsertTriggerTypeTriggers = _chunkPIZCE3JDjs.upsertTriggerTypeTriggers;
|
|
32
|
+
//# sourceMappingURL=utils.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
checkAccountsPresence,
|
|
3
|
+
getAllUUIDs,
|
|
4
|
+
getUUIDsForAccount,
|
|
5
|
+
getUUIDsForAccountByKinds,
|
|
6
|
+
getUUIDsForKinds,
|
|
7
|
+
inferEnabledKinds,
|
|
8
|
+
initializeUserStorage,
|
|
9
|
+
makeApiCall,
|
|
10
|
+
toggleUserStorageTriggerStatus,
|
|
11
|
+
traverseUserStorageTriggers,
|
|
12
|
+
upsertAddressTriggers,
|
|
13
|
+
upsertTriggerTypeTriggers
|
|
14
|
+
} from "../../chunk-SMKJEA45.mjs";
|
|
15
|
+
import "../../chunk-VC6J62JI.mjs";
|
|
16
|
+
import "../../chunk-6ZDVTRRT.mjs";
|
|
17
|
+
import "../../chunk-26CCETCM.mjs";
|
|
18
|
+
export {
|
|
19
|
+
checkAccountsPresence,
|
|
20
|
+
getAllUUIDs,
|
|
21
|
+
getUUIDsForAccount,
|
|
22
|
+
getUUIDsForAccountByKinds,
|
|
23
|
+
getUUIDsForKinds,
|
|
24
|
+
inferEnabledKinds,
|
|
25
|
+
initializeUserStorage,
|
|
26
|
+
makeApiCall,
|
|
27
|
+
toggleUserStorageTriggerStatus,
|
|
28
|
+
traverseUserStorageTriggers,
|
|
29
|
+
upsertAddressTriggers,
|
|
30
|
+
upsertTriggerTypeTriggers
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=utils.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunk5WWCWQCEjs = require('../chunk-5WWCWQCE.js');
|
|
4
|
+
require('../chunk-NMLYB3XT.js');
|
|
5
|
+
require('../chunk-NJBJIZLR.js');
|
|
6
|
+
require('../chunk-B25TJ7KS.js');
|
|
7
|
+
require('../chunk-DNTK4U5M.js');
|
|
8
|
+
require('../chunk-UPVIT75F.js');
|
|
9
|
+
require('../chunk-232HZSEV.js');
|
|
10
|
+
require('../chunk-IPI7BAW3.js');
|
|
11
|
+
require('../chunk-HPUQYDVC.js');
|
|
12
|
+
require('../chunk-WRYFIWNK.js');
|
|
13
|
+
require('../chunk-V5HMYDWE.js');
|
|
14
|
+
require('../chunk-ZBNBZN5H.js');
|
|
15
|
+
require('../chunk-PROWNV4M.js');
|
|
16
|
+
require('../chunk-XZEVRYUE.js');
|
|
17
|
+
require('../chunk-3ZS2HAEG.js');
|
|
18
|
+
require('../chunk-ZV3DFBO4.js');
|
|
19
|
+
require('../chunk-DMH4NSLF.js');
|
|
20
|
+
require('../chunk-XNBTOK6G.js');
|
|
21
|
+
require('../chunk-GFAESVZA.js');
|
|
22
|
+
require('../chunk-LYEXYTOI.js');
|
|
23
|
+
require('../chunk-ZMNXLHAC.js');
|
|
24
|
+
require('../chunk-52CALMRA.js');
|
|
25
|
+
require('../chunk-VOZ7Y2OO.js');
|
|
26
|
+
require('../chunk-PIZCE3JD.js');
|
|
27
|
+
require('../chunk-CQ6CGSKZ.js');
|
|
28
|
+
require('../chunk-DY4ELDRQ.js');
|
|
29
|
+
require('../chunk-TLX5QQK5.js');
|
|
30
|
+
require('../chunk-V46WVGWN.js');
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
exports.NotificationServicesPushController = _chunk5WWCWQCEjs.NotificationServicesPushController;
|
|
34
|
+
//# sourceMappingURL=NotificationServicesPushController.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
NotificationServicesPushController
|
|
3
|
+
} from "../chunk-OUPWMPLU.mjs";
|
|
4
|
+
import "../chunk-TT56I53C.mjs";
|
|
5
|
+
import "../chunk-52NKJDI2.mjs";
|
|
6
|
+
import "../chunk-IKWNHNJQ.mjs";
|
|
7
|
+
import "../chunk-KTQP5UDT.mjs";
|
|
8
|
+
import "../chunk-QTK2RMF7.mjs";
|
|
9
|
+
import "../chunk-B4ECJJ5C.mjs";
|
|
10
|
+
import "../chunk-4QXAPVW3.mjs";
|
|
11
|
+
import "../chunk-JQ7WKFCI.mjs";
|
|
12
|
+
import "../chunk-IDO4JFV5.mjs";
|
|
13
|
+
import "../chunk-A2RPVX47.mjs";
|
|
14
|
+
import "../chunk-4BTNTREI.mjs";
|
|
15
|
+
import "../chunk-QB5IFRLA.mjs";
|
|
16
|
+
import "../chunk-U74Q3BRP.mjs";
|
|
17
|
+
import "../chunk-G52DNXFH.mjs";
|
|
18
|
+
import "../chunk-7RM3YNTD.mjs";
|
|
19
|
+
import "../chunk-PNCS6GEX.mjs";
|
|
20
|
+
import "../chunk-5OYPOYXZ.mjs";
|
|
21
|
+
import "../chunk-RQWUD2FB.mjs";
|
|
22
|
+
import "../chunk-BONB66A2.mjs";
|
|
23
|
+
import "../chunk-EQWVJX6K.mjs";
|
|
24
|
+
import "../chunk-D42BBXBM.mjs";
|
|
25
|
+
import "../chunk-UIRZIKC3.mjs";
|
|
26
|
+
import "../chunk-SMKJEA45.mjs";
|
|
27
|
+
import "../chunk-VE4DTN4R.mjs";
|
|
28
|
+
import "../chunk-VC6J62JI.mjs";
|
|
29
|
+
import "../chunk-6ZDVTRRT.mjs";
|
|
30
|
+
import "../chunk-26CCETCM.mjs";
|
|
31
|
+
export {
|
|
32
|
+
NotificationServicesPushController
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=NotificationServicesPushController.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});require('../chunk-V46WVGWN.js');
|
|
2
|
+
|
|
3
|
+
// src/NotificationServicesPushController/constants.ts
|
|
4
|
+
var ENABLE_MV3 = true;
|
|
5
|
+
var PUSH_NOTIFICATIONS_SERVICE_URL = "https://push.api.cx.metamask.io";
|
|
6
|
+
var FIREBASE_API_KEY = "";
|
|
7
|
+
var FIREBASE_AUTH_DOMAIN = "";
|
|
8
|
+
var FIREBASE_STORAGE_BUCKET = "";
|
|
9
|
+
var FIREBASE_PROJECT_ID = "";
|
|
10
|
+
var FIREBASE_MESSAGING_SENDER_ID = "";
|
|
11
|
+
var FIREBASE_APP_ID = "";
|
|
12
|
+
var FIREBASE_MEASUREMENT_ID = "";
|
|
13
|
+
var VAPID_KEY = "";
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
exports.ENABLE_MV3 = ENABLE_MV3; exports.FIREBASE_API_KEY = FIREBASE_API_KEY; exports.FIREBASE_APP_ID = FIREBASE_APP_ID; exports.FIREBASE_AUTH_DOMAIN = FIREBASE_AUTH_DOMAIN; exports.FIREBASE_MEASUREMENT_ID = FIREBASE_MEASUREMENT_ID; exports.FIREBASE_MESSAGING_SENDER_ID = FIREBASE_MESSAGING_SENDER_ID; exports.FIREBASE_PROJECT_ID = FIREBASE_PROJECT_ID; exports.FIREBASE_STORAGE_BUCKET = FIREBASE_STORAGE_BUCKET; exports.PUSH_NOTIFICATIONS_SERVICE_URL = PUSH_NOTIFICATIONS_SERVICE_URL; exports.VAPID_KEY = VAPID_KEY;
|
|
26
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/NotificationServicesPushController/constants.ts"],"names":[],"mappings":";;;AAAO,IAAM,aAAa;AACnB,IAAM,iCAAiC;AAEvC,IAAM,mBAAmB;AACzB,IAAM,uBAAuB;AAC7B,IAAM,0BAA0B;AAChC,IAAM,sBAAsB;AAC5B,IAAM,+BAA+B;AACrC,IAAM,kBAAkB;AACxB,IAAM,0BAA0B;AAChC,IAAM,YAAY","sourcesContent":["export const ENABLE_MV3 = true;\nexport const PUSH_NOTIFICATIONS_SERVICE_URL = 'https://push.api.cx.metamask.io';\n\nexport const FIREBASE_API_KEY = '';\nexport const FIREBASE_AUTH_DOMAIN = '';\nexport const FIREBASE_STORAGE_BUCKET = '';\nexport const FIREBASE_PROJECT_ID = '';\nexport const FIREBASE_MESSAGING_SENDER_ID = '';\nexport const FIREBASE_APP_ID = '';\nexport const FIREBASE_MEASUREMENT_ID = '';\nexport const VAPID_KEY = '';\n"]}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import "../chunk-26CCETCM.mjs";
|
|
2
|
+
|
|
3
|
+
// src/NotificationServicesPushController/constants.ts
|
|
4
|
+
var ENABLE_MV3 = true;
|
|
5
|
+
var PUSH_NOTIFICATIONS_SERVICE_URL = "https://push.api.cx.metamask.io";
|
|
6
|
+
var FIREBASE_API_KEY = "";
|
|
7
|
+
var FIREBASE_AUTH_DOMAIN = "";
|
|
8
|
+
var FIREBASE_STORAGE_BUCKET = "";
|
|
9
|
+
var FIREBASE_PROJECT_ID = "";
|
|
10
|
+
var FIREBASE_MESSAGING_SENDER_ID = "";
|
|
11
|
+
var FIREBASE_APP_ID = "";
|
|
12
|
+
var FIREBASE_MEASUREMENT_ID = "";
|
|
13
|
+
var VAPID_KEY = "";
|
|
14
|
+
export {
|
|
15
|
+
ENABLE_MV3,
|
|
16
|
+
FIREBASE_API_KEY,
|
|
17
|
+
FIREBASE_APP_ID,
|
|
18
|
+
FIREBASE_AUTH_DOMAIN,
|
|
19
|
+
FIREBASE_MEASUREMENT_ID,
|
|
20
|
+
FIREBASE_MESSAGING_SENDER_ID,
|
|
21
|
+
FIREBASE_PROJECT_ID,
|
|
22
|
+
FIREBASE_STORAGE_BUCKET,
|
|
23
|
+
PUSH_NOTIFICATIONS_SERVICE_URL,
|
|
24
|
+
VAPID_KEY
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=constants.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/NotificationServicesPushController/constants.ts"],"sourcesContent":["export const ENABLE_MV3 = true;\nexport const PUSH_NOTIFICATIONS_SERVICE_URL = 'https://push.api.cx.metamask.io';\n\nexport const FIREBASE_API_KEY = '';\nexport const FIREBASE_AUTH_DOMAIN = '';\nexport const FIREBASE_STORAGE_BUCKET = '';\nexport const FIREBASE_PROJECT_ID = '';\nexport const FIREBASE_MESSAGING_SENDER_ID = '';\nexport const FIREBASE_APP_ID = '';\nexport const FIREBASE_MEASUREMENT_ID = '';\nexport const VAPID_KEY = '';\n"],"mappings":";;;AAAO,IAAM,aAAa;AACnB,IAAM,iCAAiC;AAEvC,IAAM,mBAAmB;AACzB,IAAM,uBAAuB;AAC7B,IAAM,0BAA0B;AAChC,IAAM,sBAAsB;AAC5B,IAAM,+BAA+B;AACrC,IAAM,kBAAkB;AACxB,IAAM,0BAA0B;AAChC,IAAM,YAAY;","names":[]}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunk6B5FOWRHjs = require('../chunk-6B5FOWRH.js');
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
var _chunkFFQNSBPUjs = require('../chunk-FFQNSBPU.js');
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
var _chunk7LWR54U7js = require('../chunk-7LWR54U7.js');
|
|
10
|
+
require('../chunk-GETQWOTI.js');
|
|
11
|
+
require('../chunk-PGMXFZ6Y.js');
|
|
12
|
+
require('../chunk-EJ52BDLB.js');
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
var _chunk5WWCWQCEjs = require('../chunk-5WWCWQCE.js');
|
|
16
|
+
require('../chunk-NMLYB3XT.js');
|
|
17
|
+
require('../chunk-NJBJIZLR.js');
|
|
18
|
+
require('../chunk-B25TJ7KS.js');
|
|
19
|
+
require('../chunk-DNTK4U5M.js');
|
|
20
|
+
require('../chunk-UPVIT75F.js');
|
|
21
|
+
require('../chunk-232HZSEV.js');
|
|
22
|
+
require('../chunk-IPI7BAW3.js');
|
|
23
|
+
require('../chunk-HPUQYDVC.js');
|
|
24
|
+
require('../chunk-WRYFIWNK.js');
|
|
25
|
+
require('../chunk-V5HMYDWE.js');
|
|
26
|
+
require('../chunk-ZBNBZN5H.js');
|
|
27
|
+
require('../chunk-PROWNV4M.js');
|
|
28
|
+
require('../chunk-XZEVRYUE.js');
|
|
29
|
+
require('../chunk-3ZS2HAEG.js');
|
|
30
|
+
require('../chunk-ZV3DFBO4.js');
|
|
31
|
+
require('../chunk-DMH4NSLF.js');
|
|
32
|
+
require('../chunk-XNBTOK6G.js');
|
|
33
|
+
require('../chunk-GFAESVZA.js');
|
|
34
|
+
require('../chunk-LYEXYTOI.js');
|
|
35
|
+
require('../chunk-ZMNXLHAC.js');
|
|
36
|
+
require('../chunk-52CALMRA.js');
|
|
37
|
+
require('../chunk-VOZ7Y2OO.js');
|
|
38
|
+
require('../chunk-PIZCE3JD.js');
|
|
39
|
+
require('../chunk-CQ6CGSKZ.js');
|
|
40
|
+
require('../chunk-DY4ELDRQ.js');
|
|
41
|
+
require('../chunk-TLX5QQK5.js');
|
|
42
|
+
require('../chunk-V46WVGWN.js');
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
exports.Mocks = _chunk6B5FOWRHjs.fixtures_exports; exports.NotificationServicesPushController = _chunk5WWCWQCEjs.NotificationServicesPushController; exports.Types = _chunk7LWR54U7js.types_exports; exports.Utils = _chunkFFQNSBPUjs.utils_exports;
|
|
49
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import {
|
|
2
|
+
fixtures_exports
|
|
3
|
+
} from "../chunk-3F4M3OUO.mjs";
|
|
4
|
+
import {
|
|
5
|
+
utils_exports
|
|
6
|
+
} from "../chunk-JLHFZ2UG.mjs";
|
|
7
|
+
import {
|
|
8
|
+
types_exports
|
|
9
|
+
} from "../chunk-IOMDG67D.mjs";
|
|
10
|
+
import "../chunk-RAUV5UV4.mjs";
|
|
11
|
+
import "../chunk-SSWX2N73.mjs";
|
|
12
|
+
import "../chunk-ODI2BTKS.mjs";
|
|
13
|
+
import {
|
|
14
|
+
NotificationServicesPushController
|
|
15
|
+
} from "../chunk-OUPWMPLU.mjs";
|
|
16
|
+
import "../chunk-TT56I53C.mjs";
|
|
17
|
+
import "../chunk-52NKJDI2.mjs";
|
|
18
|
+
import "../chunk-IKWNHNJQ.mjs";
|
|
19
|
+
import "../chunk-KTQP5UDT.mjs";
|
|
20
|
+
import "../chunk-QTK2RMF7.mjs";
|
|
21
|
+
import "../chunk-B4ECJJ5C.mjs";
|
|
22
|
+
import "../chunk-4QXAPVW3.mjs";
|
|
23
|
+
import "../chunk-JQ7WKFCI.mjs";
|
|
24
|
+
import "../chunk-IDO4JFV5.mjs";
|
|
25
|
+
import "../chunk-A2RPVX47.mjs";
|
|
26
|
+
import "../chunk-4BTNTREI.mjs";
|
|
27
|
+
import "../chunk-QB5IFRLA.mjs";
|
|
28
|
+
import "../chunk-U74Q3BRP.mjs";
|
|
29
|
+
import "../chunk-G52DNXFH.mjs";
|
|
30
|
+
import "../chunk-7RM3YNTD.mjs";
|
|
31
|
+
import "../chunk-PNCS6GEX.mjs";
|
|
32
|
+
import "../chunk-5OYPOYXZ.mjs";
|
|
33
|
+
import "../chunk-RQWUD2FB.mjs";
|
|
34
|
+
import "../chunk-BONB66A2.mjs";
|
|
35
|
+
import "../chunk-EQWVJX6K.mjs";
|
|
36
|
+
import "../chunk-D42BBXBM.mjs";
|
|
37
|
+
import "../chunk-UIRZIKC3.mjs";
|
|
38
|
+
import "../chunk-SMKJEA45.mjs";
|
|
39
|
+
import "../chunk-VE4DTN4R.mjs";
|
|
40
|
+
import "../chunk-VC6J62JI.mjs";
|
|
41
|
+
import "../chunk-6ZDVTRRT.mjs";
|
|
42
|
+
import "../chunk-26CCETCM.mjs";
|
|
43
|
+
export {
|
|
44
|
+
fixtures_exports as Mocks,
|
|
45
|
+
NotificationServicesPushController,
|
|
46
|
+
types_exports as Types,
|
|
47
|
+
utils_exports as Utils
|
|
48
|
+
};
|
|
49
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
var _chunkB25TJ7KSjs = require('../../chunk-B25TJ7KS.js');
|
|
4
|
+
require('../../chunk-V46WVGWN.js');
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
exports.REGISTRATION_TOKENS_ENDPOINT = _chunkB25TJ7KSjs.REGISTRATION_TOKENS_ENDPOINT;
|
|
8
|
+
//# sourceMappingURL=endpoints.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
var _chunkNJBJIZLRjs = require('../../../chunk-NJBJIZLR.js');
|
|
7
|
+
require('../../../chunk-DNTK4U5M.js');
|
|
8
|
+
require('../../../chunk-UPVIT75F.js');
|
|
9
|
+
require('../../../chunk-232HZSEV.js');
|
|
10
|
+
require('../../../chunk-IPI7BAW3.js');
|
|
11
|
+
require('../../../chunk-HPUQYDVC.js');
|
|
12
|
+
require('../../../chunk-WRYFIWNK.js');
|
|
13
|
+
require('../../../chunk-V5HMYDWE.js');
|
|
14
|
+
require('../../../chunk-ZBNBZN5H.js');
|
|
15
|
+
require('../../../chunk-PROWNV4M.js');
|
|
16
|
+
require('../../../chunk-XZEVRYUE.js');
|
|
17
|
+
require('../../../chunk-3ZS2HAEG.js');
|
|
18
|
+
require('../../../chunk-ZV3DFBO4.js');
|
|
19
|
+
require('../../../chunk-DMH4NSLF.js');
|
|
20
|
+
require('../../../chunk-XNBTOK6G.js');
|
|
21
|
+
require('../../../chunk-GFAESVZA.js');
|
|
22
|
+
require('../../../chunk-LYEXYTOI.js');
|
|
23
|
+
require('../../../chunk-ZMNXLHAC.js');
|
|
24
|
+
require('../../../chunk-52CALMRA.js');
|
|
25
|
+
require('../../../chunk-VOZ7Y2OO.js');
|
|
26
|
+
require('../../../chunk-PIZCE3JD.js');
|
|
27
|
+
require('../../../chunk-CQ6CGSKZ.js');
|
|
28
|
+
require('../../../chunk-DY4ELDRQ.js');
|
|
29
|
+
require('../../../chunk-TLX5QQK5.js');
|
|
30
|
+
require('../../../chunk-V46WVGWN.js');
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
exports.createRegToken = _chunkNJBJIZLRjs.createRegToken; exports.deleteRegToken = _chunkNJBJIZLRjs.deleteRegToken; exports.listenToPushNotificationsClicked = _chunkNJBJIZLRjs.listenToPushNotificationsClicked; exports.listenToPushNotificationsReceived = _chunkNJBJIZLRjs.listenToPushNotificationsReceived;
|
|
37
|
+
//# sourceMappingURL=push-web.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"names":[],"mappings":""}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import {
|
|
2
|
+
createRegToken,
|
|
3
|
+
deleteRegToken,
|
|
4
|
+
listenToPushNotificationsClicked,
|
|
5
|
+
listenToPushNotificationsReceived
|
|
6
|
+
} from "../../../chunk-52NKJDI2.mjs";
|
|
7
|
+
import "../../../chunk-KTQP5UDT.mjs";
|
|
8
|
+
import "../../../chunk-QTK2RMF7.mjs";
|
|
9
|
+
import "../../../chunk-B4ECJJ5C.mjs";
|
|
10
|
+
import "../../../chunk-4QXAPVW3.mjs";
|
|
11
|
+
import "../../../chunk-JQ7WKFCI.mjs";
|
|
12
|
+
import "../../../chunk-IDO4JFV5.mjs";
|
|
13
|
+
import "../../../chunk-A2RPVX47.mjs";
|
|
14
|
+
import "../../../chunk-4BTNTREI.mjs";
|
|
15
|
+
import "../../../chunk-QB5IFRLA.mjs";
|
|
16
|
+
import "../../../chunk-U74Q3BRP.mjs";
|
|
17
|
+
import "../../../chunk-G52DNXFH.mjs";
|
|
18
|
+
import "../../../chunk-7RM3YNTD.mjs";
|
|
19
|
+
import "../../../chunk-PNCS6GEX.mjs";
|
|
20
|
+
import "../../../chunk-5OYPOYXZ.mjs";
|
|
21
|
+
import "../../../chunk-RQWUD2FB.mjs";
|
|
22
|
+
import "../../../chunk-BONB66A2.mjs";
|
|
23
|
+
import "../../../chunk-EQWVJX6K.mjs";
|
|
24
|
+
import "../../../chunk-D42BBXBM.mjs";
|
|
25
|
+
import "../../../chunk-UIRZIKC3.mjs";
|
|
26
|
+
import "../../../chunk-SMKJEA45.mjs";
|
|
27
|
+
import "../../../chunk-VE4DTN4R.mjs";
|
|
28
|
+
import "../../../chunk-VC6J62JI.mjs";
|
|
29
|
+
import "../../../chunk-6ZDVTRRT.mjs";
|
|
30
|
+
import "../../../chunk-26CCETCM.mjs";
|
|
31
|
+
export {
|
|
32
|
+
createRegToken,
|
|
33
|
+
deleteRegToken,
|
|
34
|
+
listenToPushNotificationsClicked,
|
|
35
|
+
listenToPushNotificationsReceived
|
|
36
|
+
};
|
|
37
|
+
//# sourceMappingURL=push-web.mjs.map
|