@aws-amplify/notifications 2.0.1-console-preview.8d88eef.0 → 2.0.1-console-preview.be08038.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/lib/inAppMessaging/providers/pinpoint/apis/identifyUser.d.ts +4 -4
- package/lib/inAppMessaging/providers/pinpoint/apis/identifyUser.js +4 -4
- package/lib/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.js +8 -10
- package/lib/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts +1 -1
- package/lib/pushNotifications/errors/errorHelpers.d.ts +1 -0
- package/lib/pushNotifications/errors/errorHelpers.js +4 -0
- package/lib/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.js +7 -3
- package/lib/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.js +2 -0
- package/lib/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.js +2 -0
- package/lib/pushNotifications/providers/pinpoint/apis/identifyUser.native.js +8 -4
- package/lib/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.js +8 -7
- package/lib/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.js +2 -0
- package/lib/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.js +5 -1
- package/lib/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.js +5 -1
- package/lib/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.js +2 -0
- package/lib/pushNotifications/providers/pinpoint/apis/requestPermissions.native.js +2 -0
- package/lib/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.js +5 -1
- package/lib/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.js +3 -4
- package/lib/pushNotifications/providers/pinpoint/utils/index.d.ts +0 -4
- package/lib/pushNotifications/providers/pinpoint/utils/index.js +0 -10
- package/lib/pushNotifications/utils/index.d.ts +4 -0
- package/lib/pushNotifications/utils/index.js +14 -0
- package/lib/pushNotifications/{providers/pinpoint/utils → utils}/resolveConfig.js +1 -1
- package/lib/pushNotifications/{providers/pinpoint/utils → utils}/resolveCredentials.js +1 -1
- package/lib/tsconfig.build.tsbuildinfo +330 -425
- package/lib-esm/inAppMessaging/providers/pinpoint/apis/identifyUser.d.ts +4 -4
- package/lib-esm/inAppMessaging/providers/pinpoint/apis/identifyUser.js +4 -4
- package/lib-esm/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.js +3 -4
- package/lib-esm/inAppMessaging/providers/pinpoint/utils/helpers.js +1 -1
- package/lib-esm/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts +1 -1
- package/lib-esm/pushNotifications/errors/errorHelpers.d.ts +1 -0
- package/lib-esm/pushNotifications/errors/errorHelpers.js +4 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.js +7 -3
- package/lib-esm/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.js +2 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.js +2 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/identifyUser.native.js +6 -2
- package/lib-esm/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.js +2 -1
- package/lib-esm/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.js +2 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.js +5 -1
- package/lib-esm/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.js +5 -1
- package/lib-esm/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.js +2 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/requestPermissions.native.js +2 -0
- package/lib-esm/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.js +5 -1
- package/lib-esm/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.js +1 -2
- package/lib-esm/pushNotifications/providers/pinpoint/utils/index.d.ts +0 -4
- package/lib-esm/pushNotifications/providers/pinpoint/utils/index.js +0 -4
- package/lib-esm/pushNotifications/utils/index.d.ts +4 -0
- package/lib-esm/pushNotifications/utils/index.js +6 -0
- package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/resolveConfig.js +1 -1
- package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/resolveCredentials.js +1 -1
- package/lib-esm/tsconfig.build.tsbuildinfo +228 -233
- package/package.json +4 -4
- package/src/inAppMessaging/providers/pinpoint/apis/identifyUser.ts +4 -4
- package/src/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.ts +3 -4
- package/src/inAppMessaging/providers/pinpoint/utils/helpers.ts +1 -3
- package/src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts +1 -1
- package/src/pushNotifications/errors/errorHelpers.ts +5 -0
- package/src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts +5 -1
- package/src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts +5 -2
- package/src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts +5 -2
- package/src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts +4 -6
- package/src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.ts +5 -3
- package/src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts +5 -2
- package/src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts +5 -1
- package/src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts +5 -1
- package/src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts +5 -2
- package/src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts +5 -2
- package/src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts +5 -1
- package/src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts +1 -2
- package/src/pushNotifications/providers/pinpoint/utils/index.ts +0 -4
- package/src/pushNotifications/utils/index.ts +7 -0
- package/src/pushNotifications/{providers/pinpoint/utils → utils}/resolveConfig.ts +1 -1
- package/src/pushNotifications/{providers/pinpoint/utils → utils}/resolveCredentials.ts +1 -1
- package/lib/inAppMessaging/sessionTracker/SessionTracker.d.ts +0 -9
- package/lib/inAppMessaging/sessionTracker/SessionTracker.js +0 -67
- package/lib/inAppMessaging/sessionTracker/SessionTracker.native.d.ts +0 -10
- package/lib/inAppMessaging/sessionTracker/SessionTracker.native.js +0 -52
- package/lib/inAppMessaging/sessionTracker/index.d.ts +0 -3
- package/lib/inAppMessaging/sessionTracker/index.js +0 -7
- package/lib/inAppMessaging/sessionTracker/types.d.ts +0 -6
- package/lib/inAppMessaging/sessionTracker/types.js +0 -4
- package/lib/pushNotifications/Platform/index.d.ts +0 -2
- package/lib/pushNotifications/Platform/index.js +0 -25
- package/lib/pushNotifications/Platform/index.native.d.ts +0 -2
- package/lib/pushNotifications/Platform/index.native.js +0 -7
- package/lib/pushNotifications/Platform/types.d.ts +0 -5
- package/lib/pushNotifications/Platform/types.js +0 -4
- package/lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts +0 -9
- package/lib-esm/inAppMessaging/sessionTracker/SessionTracker.js +0 -64
- package/lib-esm/inAppMessaging/sessionTracker/SessionTracker.native.d.ts +0 -10
- package/lib-esm/inAppMessaging/sessionTracker/SessionTracker.native.js +0 -49
- package/lib-esm/inAppMessaging/sessionTracker/index.d.ts +0 -3
- package/lib-esm/inAppMessaging/sessionTracker/index.js +0 -4
- package/lib-esm/inAppMessaging/sessionTracker/types.d.ts +0 -6
- package/lib-esm/inAppMessaging/sessionTracker/types.js +0 -2
- package/lib-esm/pushNotifications/Platform/index.d.ts +0 -2
- package/lib-esm/pushNotifications/Platform/index.js +0 -23
- package/lib-esm/pushNotifications/Platform/index.native.d.ts +0 -2
- package/lib-esm/pushNotifications/Platform/index.native.js +0 -5
- package/lib-esm/pushNotifications/Platform/types.d.ts +0 -5
- package/lib-esm/pushNotifications/Platform/types.js +0 -2
- package/src/inAppMessaging/sessionTracker/SessionTracker.native.ts +0 -60
- package/src/inAppMessaging/sessionTracker/SessionTracker.ts +0 -78
- package/src/inAppMessaging/sessionTracker/index.ts +0 -6
- package/src/inAppMessaging/sessionTracker/types.ts +0 -11
- package/src/pushNotifications/Platform/index.native.ts +0 -9
- package/src/pushNotifications/Platform/index.ts +0 -22
- package/src/pushNotifications/Platform/types.ts +0 -15
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/initializationManager.d.ts +0 -0
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/initializationManager.js +0 -0
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/resolveConfig.d.ts +0 -0
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/resolveCredentials.d.ts +0 -0
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/tokenManager.d.ts +0 -0
- /package/lib/pushNotifications/{providers/pinpoint/utils → utils}/tokenManager.js +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/initializationManager.d.ts +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/initializationManager.js +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/resolveConfig.d.ts +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/resolveCredentials.d.ts +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/tokenManager.d.ts +0 -0
- /package/lib-esm/pushNotifications/{providers/pinpoint/utils → utils}/tokenManager.js +0 -0
- /package/src/pushNotifications/{providers/pinpoint/utils → utils}/initializationManager.ts +0 -0
- /package/src/pushNotifications/{providers/pinpoint/utils → utils}/tokenManager.ts +0 -0
|
@@ -162,8 +162,8 @@
|
|
|
162
162
|
"signature": "d93031677bd533b0d737b02da0f81a7135139631ed9f453455f50061cc40181d"
|
|
163
163
|
},
|
|
164
164
|
"../../core/lib-esm/singleton/Auth/types.d.ts": {
|
|
165
|
-
"version": "
|
|
166
|
-
"signature": "
|
|
165
|
+
"version": "d870ef185bd9e57959c1f3c2ff2cca2d1543243fb4878e52133dae9f92d90385",
|
|
166
|
+
"signature": "d870ef185bd9e57959c1f3c2ff2cca2d1543243fb4878e52133dae9f92d90385"
|
|
167
167
|
},
|
|
168
168
|
"../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts": {
|
|
169
169
|
"version": "68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc",
|
|
@@ -202,8 +202,8 @@
|
|
|
202
202
|
"signature": "8c542877559cd6f411ab47e35a3acb905c0b220461153cf3d5da6ac865cd2245"
|
|
203
203
|
},
|
|
204
204
|
"../../../node_modules/@types/events/index.d.ts": {
|
|
205
|
-
"version": "
|
|
206
|
-
"signature": "
|
|
205
|
+
"version": "93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e",
|
|
206
|
+
"signature": "93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e"
|
|
207
207
|
},
|
|
208
208
|
"../../../node_modules/@types/node/inspector.d.ts": {
|
|
209
209
|
"version": "7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",
|
|
@@ -366,8 +366,8 @@
|
|
|
366
366
|
"signature": "9a7a67ed77e685f0f4fef0b79154fa0645951404e374de8d4cc57dadc864c136"
|
|
367
367
|
},
|
|
368
368
|
"../../../node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts": {
|
|
369
|
-
"version": "
|
|
370
|
-
"signature": "
|
|
369
|
+
"version": "9c93143d00286876a7770ac8af26def9f9760c86dc813b3604a61da1692b1225",
|
|
370
|
+
"signature": "9c93143d00286876a7770ac8af26def9f9760c86dc813b3604a61da1692b1225"
|
|
371
371
|
},
|
|
372
372
|
"../../../node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts": {
|
|
373
373
|
"version": "4f2cfc8b1c9ff5e1f96fcfff8f136181a36ad346e7b6646c7d417c2c21a2bb46",
|
|
@@ -721,10 +721,6 @@
|
|
|
721
721
|
"version": "0c25f785089696f525f26d37c5cbd6656175dc7eb2c331fcbaa34ff4af0424dc",
|
|
722
722
|
"signature": "0c25f785089696f525f26d37c5cbd6656175dc7eb2c331fcbaa34ff4af0424dc"
|
|
723
723
|
},
|
|
724
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": {
|
|
725
|
-
"version": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831",
|
|
726
|
-
"signature": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831"
|
|
727
|
-
},
|
|
728
724
|
"../../core/lib-esm/singleton/Geo/types.d.ts": {
|
|
729
725
|
"version": "0496344cca8596e5fcfbcf489ea39fd6ea82a4d6a010f968685edf5b4f6c2533",
|
|
730
726
|
"signature": "0496344cca8596e5fcfbcf489ea39fd6ea82a4d6a010f968685edf5b4f6c2533"
|
|
@@ -733,10 +729,6 @@
|
|
|
733
729
|
"version": "9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96",
|
|
734
730
|
"signature": "9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96"
|
|
735
731
|
},
|
|
736
|
-
"../../core/lib-esm/I18n/types.d.ts": {
|
|
737
|
-
"version": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76",
|
|
738
|
-
"signature": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76"
|
|
739
|
-
},
|
|
740
732
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts": {
|
|
741
733
|
"version": "ee9f33d464c617286d9d10d95ae291234dc1a312668adedbf01d5bf781fa0d48",
|
|
742
734
|
"signature": "ee9f33d464c617286d9d10d95ae291234dc1a312668adedbf01d5bf781fa0d48"
|
|
@@ -749,9 +741,13 @@
|
|
|
749
741
|
"version": "d62b916d820b8c130bf1fac10b43576e54fd7adf63535ef4f74e85c73cf59cb2",
|
|
750
742
|
"signature": "d62b916d820b8c130bf1fac10b43576e54fd7adf63535ef4f74e85c73cf59cb2"
|
|
751
743
|
},
|
|
744
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": {
|
|
745
|
+
"version": "2d7a0242ee0f800cc80aca2e29dabb43a39cad63c1994fe5240995e1c3592863",
|
|
746
|
+
"signature": "2d7a0242ee0f800cc80aca2e29dabb43a39cad63c1994fe5240995e1c3592863"
|
|
747
|
+
},
|
|
752
748
|
"../../core/lib-esm/singleton/types.d.ts": {
|
|
753
|
-
"version": "
|
|
754
|
-
"signature": "
|
|
749
|
+
"version": "b71dcec228296664b1099cb99d82154471041d0461161d176e7e51a8c68b7d82",
|
|
750
|
+
"signature": "b71dcec228296664b1099cb99d82154471041d0461161d176e7e51a8c68b7d82"
|
|
755
751
|
},
|
|
756
752
|
"../../core/lib-esm/singleton/Auth/index.d.ts": {
|
|
757
753
|
"version": "702d32653e4f248e6abac940c03a9f1ab1cf87bbde61493e1a491648cc7f73bf",
|
|
@@ -809,6 +805,10 @@
|
|
|
809
805
|
"version": "09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795",
|
|
810
806
|
"signature": "09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795"
|
|
811
807
|
},
|
|
808
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": {
|
|
809
|
+
"version": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831",
|
|
810
|
+
"signature": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831"
|
|
811
|
+
},
|
|
812
812
|
"../../core/lib-esm/Cache/types/cache.d.ts": {
|
|
813
813
|
"version": "ef4138bc245bc4ed576257593d7624aada0d052689a8f9055fc1606d8085ca6d",
|
|
814
814
|
"signature": "ef4138bc245bc4ed576257593d7624aada0d052689a8f9055fc1606d8085ca6d"
|
|
@@ -829,6 +829,10 @@
|
|
|
829
829
|
"version": "2a311097017321ade6eb04b9e12b53e4a51cb07fa37b6ead35ac832b33ad27d3",
|
|
830
830
|
"signature": "2a311097017321ade6eb04b9e12b53e4a51cb07fa37b6ead35ac832b33ad27d3"
|
|
831
831
|
},
|
|
832
|
+
"../../core/lib-esm/I18n/types.d.ts": {
|
|
833
|
+
"version": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76",
|
|
834
|
+
"signature": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76"
|
|
835
|
+
},
|
|
832
836
|
"../../core/lib-esm/I18n/index.d.ts": {
|
|
833
837
|
"version": "3cdc09269c30f50499132846639d826e03fb74007685505c5f0ce9691f627f75",
|
|
834
838
|
"signature": "3cdc09269c30f50499132846639d826e03fb74007685505c5f0ce9691f627f75"
|
|
@@ -854,8 +858,8 @@
|
|
|
854
858
|
"signature": "fbf60648061688363789fe5933399ce8fcf8832c7ea9237746e29e0b0b7bedaf"
|
|
855
859
|
},
|
|
856
860
|
"../../core/lib-esm/index.d.ts": {
|
|
857
|
-
"version": "
|
|
858
|
-
"signature": "
|
|
861
|
+
"version": "6b7583787f85102c2714731b76c6e02fa4e2146bf8a57bdabc06f4762e3970f7",
|
|
862
|
+
"signature": "6b7583787f85102c2714731b76c6e02fa4e2146bf8a57bdabc06f4762e3970f7"
|
|
859
863
|
},
|
|
860
864
|
"../src/inAppMessaging/types/inputs.ts": {
|
|
861
865
|
"version": "7430f48ae8e64fc74a89da882ebbececadc73f4cc17cc30ff4327931419f31a7",
|
|
@@ -918,8 +922,8 @@
|
|
|
918
922
|
"signature": "4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288"
|
|
919
923
|
},
|
|
920
924
|
"../../rtn-push-notification/node_modules/@types/prop-types/index.d.ts": {
|
|
921
|
-
"version": "
|
|
922
|
-
"signature": "
|
|
925
|
+
"version": "8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e",
|
|
926
|
+
"signature": "8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e"
|
|
923
927
|
},
|
|
924
928
|
"../../rtn-push-notification/node_modules/@types/scheduler/tracing.d.ts": {
|
|
925
929
|
"version": "5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",
|
|
@@ -1029,13 +1033,17 @@
|
|
|
1029
1033
|
"version": "df131c302b5601ee77d3c2ba9b96218b4bbf6699810be6c683b5fb2846f4540a",
|
|
1030
1034
|
"signature": "df131c302b5601ee77d3c2ba9b96218b4bbf6699810be6c683b5fb2846f4540a"
|
|
1031
1035
|
},
|
|
1036
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": {
|
|
1037
|
+
"version": "2f7f4cca4bcd8cb2fa2bf6c56e45cd3a40cdc44f1a39b1fc287c5f4e9c6044e0",
|
|
1038
|
+
"signature": "2f7f4cca4bcd8cb2fa2bf6c56e45cd3a40cdc44f1a39b1fc287c5f4e9c6044e0"
|
|
1039
|
+
},
|
|
1032
1040
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts": {
|
|
1033
|
-
"version": "
|
|
1034
|
-
"signature": "
|
|
1041
|
+
"version": "87251e3fc049ef168b1614a3df40c604ac877e6d50be6fd144836102d61b6966",
|
|
1042
|
+
"signature": "87251e3fc049ef168b1614a3df40c604ac877e6d50be6fd144836102d61b6966"
|
|
1035
1043
|
},
|
|
1036
1044
|
"../../react-native/lib-esm/index.d.ts": {
|
|
1037
|
-
"version": "
|
|
1038
|
-
"signature": "
|
|
1045
|
+
"version": "70b833382ab69f46a4dd4e9a572fefdb0c80a3344936ca8914775f58ebada6d1",
|
|
1046
|
+
"signature": "70b833382ab69f46a4dd4e9a572fefdb0c80a3344936ca8914775f58ebada6d1"
|
|
1039
1047
|
},
|
|
1040
1048
|
"../src/pushNotifications/types/pushNotifications.ts": {
|
|
1041
1049
|
"version": "a550b614fbbf9b0b64abd6c810490c81f49477c062fdaafc389d1491a473d852",
|
|
@@ -1134,8 +1142,8 @@
|
|
|
1134
1142
|
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
1135
1143
|
},
|
|
1136
1144
|
"../../../node_modules/@types/uuid/index.d.ts": {
|
|
1137
|
-
"version": "
|
|
1138
|
-
"signature": "
|
|
1145
|
+
"version": "7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",
|
|
1146
|
+
"signature": "7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d"
|
|
1139
1147
|
},
|
|
1140
1148
|
"../../core/lib-esm/utils/amplifyUuid/index.d.ts": {
|
|
1141
1149
|
"version": "7299856f9e001e93d9c8b8844d9a2d6838756c5fdddfb65cd3456ade4e94cd1c",
|
|
@@ -1257,9 +1265,21 @@
|
|
|
1257
1265
|
"version": "92395e3e6898e201a167d96559042af069933f1a96662305bdc01fda3627bfbf",
|
|
1258
1266
|
"signature": "92395e3e6898e201a167d96559042af069933f1a96662305bdc01fda3627bfbf"
|
|
1259
1267
|
},
|
|
1268
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": {
|
|
1269
|
+
"version": "3eb29fe3517a6419a6e2714ff35ddcbf2a9b28f25d366a06f66596154ea1dc40",
|
|
1270
|
+
"signature": "3eb29fe3517a6419a6e2714ff35ddcbf2a9b28f25d366a06f66596154ea1dc40"
|
|
1271
|
+
},
|
|
1272
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": {
|
|
1273
|
+
"version": "8e4d32325135c680f916d32c4b34a0c364b3b58c8b5eb8e6ae1d272809740b6b",
|
|
1274
|
+
"signature": "8e4d32325135c680f916d32c4b34a0c364b3b58c8b5eb8e6ae1d272809740b6b"
|
|
1275
|
+
},
|
|
1276
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": {
|
|
1277
|
+
"version": "db7e79a9081ed04e99775ce9774935f4138b1e7ec73c47e4a9316ab7d1b656da",
|
|
1278
|
+
"signature": "db7e79a9081ed04e99775ce9774935f4138b1e7ec73c47e4a9316ab7d1b656da"
|
|
1279
|
+
},
|
|
1260
1280
|
"../../core/lib-esm/libraryUtils.d.ts": {
|
|
1261
|
-
"version": "
|
|
1262
|
-
"signature": "
|
|
1281
|
+
"version": "d284e143535d02c2ce1cbe759e15495cb5d71849ebb710cde01281358c9b7082",
|
|
1282
|
+
"signature": "d284e143535d02c2ce1cbe759e15495cb5d71849ebb710cde01281358c9b7082"
|
|
1263
1283
|
},
|
|
1264
1284
|
"../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts": {
|
|
1265
1285
|
"version": "c8f473175c782e22659804e6e6039048ace9114f074fc17e75a39b1c0f36127d",
|
|
@@ -1434,28 +1454,12 @@
|
|
|
1434
1454
|
"signature": "8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8"
|
|
1435
1455
|
},
|
|
1436
1456
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts": {
|
|
1437
|
-
"version": "
|
|
1457
|
+
"version": "83623c35234fc4c3c988c8db5b6feacf32a3d4cd4a84cee42b70d4a9b1aab9c6",
|
|
1438
1458
|
"signature": "725d92b659432e75a979eba2d0868d88e9dec75a88901990587604a6d7c25286"
|
|
1439
1459
|
},
|
|
1440
|
-
"../../../node_modules/@types/lodash/noop.d.ts": {
|
|
1441
|
-
"version": "4a84fa3822ee632d323357894fc65d741594004f528b4929d1e3bff35ef0ff22",
|
|
1442
|
-
"signature": "4a84fa3822ee632d323357894fc65d741594004f528b4929d1e3bff35ef0ff22"
|
|
1443
|
-
},
|
|
1444
|
-
"../src/inAppMessaging/sessionTracker/types.ts": {
|
|
1445
|
-
"version": "5c454e59eee5097b287752e508e206f0aa41c3d5fe063a74c8a0e958be9df7a0",
|
|
1446
|
-
"signature": "5abccc4104a6c04f148a420abdf39e3571791a9be411a32b1c2ecfe1519783c5"
|
|
1447
|
-
},
|
|
1448
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts": {
|
|
1449
|
-
"version": "15fe2572e3d336583a2719c4b05d26321b32883927585f52b81f0e4328003aa9",
|
|
1450
|
-
"signature": "99ff9de9e3243d6c81fef95e888c16c3437cc50a2e2d770b44e9f2bca2660635"
|
|
1451
|
-
},
|
|
1452
|
-
"../src/inAppMessaging/sessionTracker/index.ts": {
|
|
1453
|
-
"version": "0ad12e8032c9ed8833becee1ade6cfabbb70f7ecf863d220219d70a41c0f4f5a",
|
|
1454
|
-
"signature": "e5636d50777203ee7a8023f22f2a113d2104ef73f92f495e6551777d4f0f2873"
|
|
1455
|
-
},
|
|
1456
1460
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": {
|
|
1457
|
-
"version": "
|
|
1458
|
-
"signature": "
|
|
1461
|
+
"version": "5e01a966df43c5f37c02ddfaa5508cd34b976036ef11c2e9e76d04999f88b5a7",
|
|
1462
|
+
"signature": "236ee7899423c26929d6316d5f1e846932248af203bc80d381d308c91a220ddf"
|
|
1459
1463
|
},
|
|
1460
1464
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts": {
|
|
1461
1465
|
"version": "381df4d40ded4e04fbb66fee4a314c9fe7faf92b2193f96d434dd5427ec06040",
|
|
@@ -1470,8 +1474,8 @@
|
|
|
1470
1474
|
"signature": "92255367c9126ac82453cc75d46991b8b5e086e7573a7100c192b0ae390b4e6c"
|
|
1471
1475
|
},
|
|
1472
1476
|
"../src/inAppMessaging/providers/pinpoint/apis/identifyUser.ts": {
|
|
1473
|
-
"version": "
|
|
1474
|
-
"signature": "
|
|
1477
|
+
"version": "fd320befb33152acd91456de040f09554c135bd858d5c416300ee1b862dfa7be",
|
|
1478
|
+
"signature": "c3fa174da51a730b5893a3384c35991cd7c0948f039785fa4ab745ab773ce8b9"
|
|
1475
1479
|
},
|
|
1476
1480
|
"../src/inAppMessaging/providers/pinpoint/apis/syncMessages.ts": {
|
|
1477
1481
|
"version": "20ca25b8d0cce275c2ef776dc8f25829abf0b4001b62f3ec110c4c0b7c6409b6",
|
|
@@ -1490,7 +1494,7 @@
|
|
|
1490
1494
|
"signature": "fc0c39455483528bd731d54b36aede83efded2f8d823fc20e142cd9bfffe5b09"
|
|
1491
1495
|
},
|
|
1492
1496
|
"../src/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.ts": {
|
|
1493
|
-
"version": "
|
|
1497
|
+
"version": "28cd78ffae68014aaed03d454930d522ba9ace33484d89ecd5aea150ea829aad",
|
|
1494
1498
|
"signature": "49bea981b6b7669c6b67d10d1e452d5d27f4e73e4684891be292218c1903fae9"
|
|
1495
1499
|
},
|
|
1496
1500
|
"../src/inAppMessaging/providers/pinpoint/apis/onMessageReceived.ts": {
|
|
@@ -1529,10 +1533,6 @@
|
|
|
1529
1533
|
"version": "9f6be572065de2b6d3346ca0c9af57757990f50a14ce8cd2762025ab7e88db1e",
|
|
1530
1534
|
"signature": "7ecf008d0a15998131a6f9ec89d0793b39ad2dfe8f5b75384578711aaa962778"
|
|
1531
1535
|
},
|
|
1532
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts": {
|
|
1533
|
-
"version": "64b1827dac271767b4e7811d136a68d2d74c61968322f50c0a23f79fa9ae94b9",
|
|
1534
|
-
"signature": "135317c6d0f528d59df2ebc2cdcd73a3f7820582dc8bb19c5a13de5d8f2d1982"
|
|
1535
|
-
},
|
|
1536
1536
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts": {
|
|
1537
1537
|
"version": "b2e464b70adeb2fc15bd2e9747f78cf0bb673f0866d92f6eff1fa1b1d6bce148",
|
|
1538
1538
|
"signature": "97a8233b509454a27c5dc553a44331c0ca8173bdd731d900537dfd10cec9a4df"
|
|
@@ -1577,9 +1577,29 @@
|
|
|
1577
1577
|
"version": "03e74eccd61f5d2bb3c619428fbbbe7742614adff778a714f33121e78b1972bb",
|
|
1578
1578
|
"signature": "bb096f7158dda6ac8616e588c0d5b6f50ecde6f25506979f2fccb1215e1cbd29"
|
|
1579
1579
|
},
|
|
1580
|
+
"../src/pushNotifications/utils/initializationManager.ts": {
|
|
1581
|
+
"version": "158641e71c481ec9638a247a6d1bd256d085847b542b0f0720ce08f34c9d3217",
|
|
1582
|
+
"signature": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534"
|
|
1583
|
+
},
|
|
1584
|
+
"../src/pushNotifications/utils/resolveConfig.ts": {
|
|
1585
|
+
"version": "81e727a2e1dbc5824d59af1a6933da9f140e85ce834f0ffb59b9da86854c1af9",
|
|
1586
|
+
"signature": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"
|
|
1587
|
+
},
|
|
1588
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": {
|
|
1589
|
+
"version": "f11ab317e661a063481806bcd35b61d255ddd3aa546b0d6ce77d512d5104ee22",
|
|
1590
|
+
"signature": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af"
|
|
1591
|
+
},
|
|
1592
|
+
"../src/pushNotifications/utils/tokenManager.ts": {
|
|
1593
|
+
"version": "3c0712e42a63c9dd13ab4d8410117db059265b64fa7a39447334d36b20870281",
|
|
1594
|
+
"signature": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130"
|
|
1595
|
+
},
|
|
1596
|
+
"../src/pushNotifications/utils/index.ts": {
|
|
1597
|
+
"version": "d235a0d98e66f68f27ead5b18ec23eb03c276f8f1ee1fc5db25ebc621ce5d76e",
|
|
1598
|
+
"signature": "e5264a003f274eab7072d4bd547733eaf907653a8cff54fd643f336ee916b88c"
|
|
1599
|
+
},
|
|
1580
1600
|
"../src/pushNotifications/errors/errorHelpers.ts": {
|
|
1581
|
-
"version": "
|
|
1582
|
-
"signature": "
|
|
1601
|
+
"version": "8c6b78608419e06734b656bc3ff7d62fa2ffa1f2981ba97b972f403fcfb5ed1e",
|
|
1602
|
+
"signature": "b8a0a22ef0e04d92b238196292a89fbeecef3a0e957638b5e7d7904265221bc8"
|
|
1583
1603
|
},
|
|
1584
1604
|
"../src/pushNotifications/errors/index.ts": {
|
|
1585
1605
|
"version": "b5e2fff6a8c2764d2dc89f34e32c8f92c10c53cd10bb0dd21bda1eb340823e9f",
|
|
@@ -1629,28 +1649,16 @@
|
|
|
1629
1649
|
"version": "797a551d09f52f1cd75aecc9a3025da87d0b10e42992c3b494f30ad444ab9f84",
|
|
1630
1650
|
"signature": "aaf703c869c71b98798dcb05a32e7b48f10cdd72a711c6897b4a14cd7044a77f"
|
|
1631
1651
|
},
|
|
1632
|
-
"../src/pushNotifications/Platform/types.ts": {
|
|
1633
|
-
"version": "5ff3cba4204b3aa2e3695be943fea7f16b71b0370326993f7305c8e0206c7ed0",
|
|
1634
|
-
"signature": "570fc9ab71a23bfa2aa0f383dfbd9a17f69ce79ab42515cd05f9165a0dec9e06"
|
|
1635
|
-
},
|
|
1636
|
-
"../src/pushNotifications/Platform/index.native.ts": {
|
|
1637
|
-
"version": "791abfb2895a98a169fbdab6daac458480f6dad48efd66942288cf996271beda",
|
|
1638
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
1639
|
-
},
|
|
1640
|
-
"../src/pushNotifications/Platform/index.ts": {
|
|
1641
|
-
"version": "696b8b917014f7fabab822d58da4bd6aa603a7f7c82378085efde389f0319d05",
|
|
1642
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
1643
|
-
},
|
|
1644
1652
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": {
|
|
1645
|
-
"version": "
|
|
1653
|
+
"version": "96ae679391bfe4c6ba25e390c9ec93bd49b0fe8fcad94b43aa9207a5a6692fc5",
|
|
1646
1654
|
"signature": "45e2b4d35310ddffc2a6f4b6d525bf91b9c8a322b3914c3a8e5930b32b5b5d3e"
|
|
1647
1655
|
},
|
|
1648
1656
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": {
|
|
1649
|
-
"version": "
|
|
1657
|
+
"version": "a6aaf5b228354591fb1bf1e2d19b60d7d39a35406082775b8223d0c09aa2055f",
|
|
1650
1658
|
"signature": "c1bd91ed2b3bb2dc0bde4a7a053d1604d03193d6fcefd49998914e863e388d69"
|
|
1651
1659
|
},
|
|
1652
1660
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": {
|
|
1653
|
-
"version": "
|
|
1661
|
+
"version": "93e5aaf1ff890efb862d11be1864748fb6620012b2ed4974469b3089f54c0a72",
|
|
1654
1662
|
"signature": "e4c4b6da0f811132e16d6cb2807454da77e7ad43f0551c8d4bccc905bdfa3edf"
|
|
1655
1663
|
},
|
|
1656
1664
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts": {
|
|
@@ -1661,64 +1669,48 @@
|
|
|
1661
1669
|
"version": "2bc354632f4cb54d62187847845d113df897e02fb2ad27d3f8ba42673a4cdeb6",
|
|
1662
1670
|
"signature": "6ff8a46c080a0ac56b3188c8ff030a028bcdceb26e289f282ae53b927ac0cace"
|
|
1663
1671
|
},
|
|
1664
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts": {
|
|
1665
|
-
"version": "956186911ce5540539553f81f917a73b95922a11a4c10429fe95074a82b57b2f",
|
|
1666
|
-
"signature": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af"
|
|
1667
|
-
},
|
|
1668
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts": {
|
|
1669
|
-
"version": "1a0b4cdb91f6ca5fc148ac49dac5c8c677d34562d09bf8b10344a816189f44c4",
|
|
1670
|
-
"signature": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"
|
|
1671
|
-
},
|
|
1672
1672
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts": {
|
|
1673
|
-
"version": "
|
|
1673
|
+
"version": "cd677c927e03004bd796cf4df49aeee9cb54bd1f2e313e2d7e13c11b657c7f0e",
|
|
1674
1674
|
"signature": "4d60787aee62600d3dad04cfeda41e9c89041b9dc12b2505dca0e56f8edc75e9"
|
|
1675
1675
|
},
|
|
1676
1676
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts": {
|
|
1677
1677
|
"version": "9662f5df051391c3e365af5da22d251c032f2e13dcdcbe55a726490ccff8e3cf",
|
|
1678
1678
|
"signature": "2e7fc29fed48b8334fac2aaf4dd4b5f5c725a947aae6dfa1d3ad86cd5e8433fc"
|
|
1679
1679
|
},
|
|
1680
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts": {
|
|
1681
|
-
"version": "158641e71c481ec9638a247a6d1bd256d085847b542b0f0720ce08f34c9d3217",
|
|
1682
|
-
"signature": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534"
|
|
1683
|
-
},
|
|
1684
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts": {
|
|
1685
|
-
"version": "3c0712e42a63c9dd13ab4d8410117db059265b64fa7a39447334d36b20870281",
|
|
1686
|
-
"signature": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130"
|
|
1687
|
-
},
|
|
1688
1680
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": {
|
|
1689
|
-
"version": "
|
|
1690
|
-
"signature": "
|
|
1681
|
+
"version": "d02911d46982d49604a49b4bbf2ad0010a9bb4368d6b4f6e8be7d1ffabd34c3b",
|
|
1682
|
+
"signature": "bab2902aeadb4f2aeb1e65e64429b054555977b0aac0a9243e19e578654cce43"
|
|
1691
1683
|
},
|
|
1692
1684
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": {
|
|
1693
|
-
"version": "
|
|
1685
|
+
"version": "b683e2cf5480756d1956d99775d04c20cb8cc85ef391a765f4d3fc37d3f4811b",
|
|
1694
1686
|
"signature": "c26b143eaa8907b35b081872c3e66658892ee4e3e1f28dbefa4553158d11d87a"
|
|
1695
1687
|
},
|
|
1696
1688
|
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.ts": {
|
|
1697
|
-
"version": "
|
|
1689
|
+
"version": "298a091a7f85c1b698fd1ec85d835958221d18983b21d8dc2891e7dd90aef4c4",
|
|
1698
1690
|
"signature": "f8fcb7c00fe11e64211391ed99510ad99ce841ce22a0e1ffd8aca692af1340ef"
|
|
1699
1691
|
},
|
|
1700
1692
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": {
|
|
1701
|
-
"version": "
|
|
1693
|
+
"version": "d9069ca94336e7e240106217ce922365b45cb7cfcade9b83a55444591fde7a54",
|
|
1702
1694
|
"signature": "1f7f0dcf189b9c61984841e573089a1d91020656f5c7e8df95d64b665a5dcfee"
|
|
1703
1695
|
},
|
|
1704
1696
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": {
|
|
1705
|
-
"version": "
|
|
1697
|
+
"version": "bc456be51fbe08827e5e494459a5f9593c406e94783e72e77451ff976259b2a0",
|
|
1706
1698
|
"signature": "77b55923bf9bc9d437a8cb002015c569d51b477f1aafcef9fc201d6e2a55e0ac"
|
|
1707
1699
|
},
|
|
1708
1700
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": {
|
|
1709
|
-
"version": "
|
|
1701
|
+
"version": "28d57a2c57488c11d7d9595d2d7e21795cc97e885b349157619d124d29752a92",
|
|
1710
1702
|
"signature": "9af8aed9f05986bc23163b97c45018063287b74ae2af7408988c1924e9fde603"
|
|
1711
1703
|
},
|
|
1712
1704
|
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": {
|
|
1713
|
-
"version": "
|
|
1705
|
+
"version": "9cd7361f86ef35c23dc33b88f6bea8ca2b465851a0f63cb1a0975efc86f20602",
|
|
1714
1706
|
"signature": "d533e44ea5994815ff85942f5b4ed12938f18b620ea5ef90d3fb8138b48ecf33"
|
|
1715
1707
|
},
|
|
1716
1708
|
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": {
|
|
1717
|
-
"version": "
|
|
1709
|
+
"version": "3fad56a3691c246d769db39af48413cd06e37f7ad5631d98ce9d047702192cba",
|
|
1718
1710
|
"signature": "2effa6ef6f64c562518bf3a722bf9de4fe6758d43c4070001f6121cc7b9ed8e2"
|
|
1719
1711
|
},
|
|
1720
1712
|
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": {
|
|
1721
|
-
"version": "
|
|
1713
|
+
"version": "cb222e30495e15d4dd9be349ddf99ed5b69b80af7ba36b29f8db84ea8d3dd05f",
|
|
1722
1714
|
"signature": "e7872636b25aa97b54b21950c24b9366917098fd9a9d39cdb37f4a1c30ee9be2"
|
|
1723
1715
|
}
|
|
1724
1716
|
},
|
|
@@ -2733,10 +2725,6 @@
|
|
|
2733
2725
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2734
2726
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2735
2727
|
],
|
|
2736
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
2737
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
2738
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
2739
|
-
],
|
|
2740
2728
|
"../../core/lib-esm/singleton/Geo/types.d.ts": [
|
|
2741
2729
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2742
2730
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -2745,10 +2733,6 @@
|
|
|
2745
2733
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2746
2734
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2747
2735
|
],
|
|
2748
|
-
"../../core/lib-esm/I18n/types.d.ts": [
|
|
2749
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
2750
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
2751
|
-
],
|
|
2752
2736
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts": [
|
|
2753
2737
|
"../../core/lib-esm/providers/pinpoint/types/index.d.ts",
|
|
2754
2738
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -2765,15 +2749,18 @@
|
|
|
2765
2749
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2766
2750
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2767
2751
|
],
|
|
2752
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": [
|
|
2753
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
2754
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
2755
|
+
],
|
|
2768
2756
|
"../../core/lib-esm/singleton/types.d.ts": [
|
|
2769
2757
|
"../../core/lib-esm/singleton/API/types.d.ts",
|
|
2770
2758
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
2771
2759
|
"../../core/lib-esm/singleton/Auth/types.d.ts",
|
|
2772
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
2773
2760
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
2774
2761
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
2775
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
2776
2762
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
2763
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
2777
2764
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2778
2765
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2779
2766
|
],
|
|
@@ -2855,6 +2842,10 @@
|
|
|
2855
2842
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2856
2843
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2857
2844
|
],
|
|
2845
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
2846
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
2847
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
2848
|
+
],
|
|
2858
2849
|
"../../core/lib-esm/Cache/types/cache.d.ts": [
|
|
2859
2850
|
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
2860
2851
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -2882,6 +2873,10 @@
|
|
|
2882
2873
|
"../../../node_modules/@types/node/base.d.ts",
|
|
2883
2874
|
"../../../node_modules/@types/node/index.d.ts"
|
|
2884
2875
|
],
|
|
2876
|
+
"../../core/lib-esm/I18n/types.d.ts": [
|
|
2877
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
2878
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
2879
|
+
],
|
|
2885
2880
|
"../../core/lib-esm/I18n/index.d.ts": [
|
|
2886
2881
|
"../../core/lib-esm/I18n/types.d.ts",
|
|
2887
2882
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -2922,6 +2917,7 @@
|
|
|
2922
2917
|
"../../core/lib-esm/types/index.d.ts",
|
|
2923
2918
|
"../../core/lib-esm/storage/index.d.ts",
|
|
2924
2919
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
2920
|
+
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
2925
2921
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
2926
2922
|
"../../core/lib-esm/Logger/index.d.ts",
|
|
2927
2923
|
"../../core/lib-esm/ServiceWorker/index.d.ts",
|
|
@@ -3150,6 +3146,11 @@
|
|
|
3150
3146
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3151
3147
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3152
3148
|
],
|
|
3149
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": [
|
|
3150
|
+
"../../rtn-push-notification/node_modules/@types/react-native/index.d.ts",
|
|
3151
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3152
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3153
|
+
],
|
|
3153
3154
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts": [
|
|
3154
3155
|
"../../react-native/lib-esm/moduleLoaders/loadAmplifyPushNotification.d.ts",
|
|
3155
3156
|
"../../react-native/lib-esm/moduleLoaders/loadAsyncStorage.d.ts",
|
|
@@ -3158,6 +3159,7 @@
|
|
|
3158
3159
|
"../../react-native/lib-esm/moduleLoaders/loadUrlPolyfill.d.ts",
|
|
3159
3160
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
3160
3161
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
3162
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
3161
3163
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3162
3164
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3163
3165
|
],
|
|
@@ -3449,6 +3451,20 @@
|
|
|
3449
3451
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3450
3452
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3451
3453
|
],
|
|
3454
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": [
|
|
3455
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3456
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3457
|
+
],
|
|
3458
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": [
|
|
3459
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
3460
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3461
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3462
|
+
],
|
|
3463
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": [
|
|
3464
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
3465
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3466
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3467
|
+
],
|
|
3452
3468
|
"../../core/lib-esm/libraryUtils.d.ts": [
|
|
3453
3469
|
"../../core/lib-esm/utils/index.d.ts",
|
|
3454
3470
|
"../../core/lib-esm/parseAWSExports.d.ts",
|
|
@@ -3473,6 +3489,8 @@
|
|
|
3473
3489
|
"../../core/lib-esm/Hub/index.d.ts",
|
|
3474
3490
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
3475
3491
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
3492
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
3493
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
3476
3494
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3477
3495
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3478
3496
|
],
|
|
@@ -3876,36 +3894,13 @@
|
|
|
3876
3894
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3877
3895
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3878
3896
|
],
|
|
3879
|
-
"../../../node_modules/@types/lodash/noop.d.ts": [
|
|
3880
|
-
"../../../node_modules/@types/lodash/index.d.ts",
|
|
3881
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3882
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3883
|
-
],
|
|
3884
|
-
"../src/inAppMessaging/sessionTracker/types.ts": [
|
|
3885
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3886
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3887
|
-
],
|
|
3888
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts": [
|
|
3889
|
-
"../../core/lib-esm/libraryUtils.d.ts",
|
|
3890
|
-
"../../core/lib-esm/index.d.ts",
|
|
3891
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
3892
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
3893
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3894
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3895
|
-
],
|
|
3896
|
-
"../src/inAppMessaging/sessionTracker/index.ts": [
|
|
3897
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts",
|
|
3898
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
3899
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3900
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3901
|
-
],
|
|
3902
3897
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": [
|
|
3903
3898
|
"../src/inAppMessaging/types/index.ts",
|
|
3904
3899
|
"../src/inAppMessaging/providers/pinpoint/types/index.ts",
|
|
3905
3900
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
3906
3901
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
3907
3902
|
"../../core/lib-esm/index.d.ts",
|
|
3908
|
-
"
|
|
3903
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
3909
3904
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3910
3905
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3911
3906
|
],
|
|
@@ -3976,7 +3971,7 @@
|
|
|
3976
3971
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3977
3972
|
],
|
|
3978
3973
|
"../src/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.ts": [
|
|
3979
|
-
"
|
|
3974
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
3980
3975
|
"../src/inAppMessaging/types/index.ts",
|
|
3981
3976
|
"../src/eventListeners/index.ts",
|
|
3982
3977
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
@@ -4058,13 +4053,6 @@
|
|
|
4058
4053
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4059
4054
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4060
4055
|
],
|
|
4061
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts": [
|
|
4062
|
-
"../../core/lib-esm/index.d.ts",
|
|
4063
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
4064
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
4065
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4066
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4067
|
-
],
|
|
4068
4056
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts": [
|
|
4069
4057
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4070
4058
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -4130,8 +4118,37 @@
|
|
|
4130
4118
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4131
4119
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4132
4120
|
],
|
|
4121
|
+
"../src/pushNotifications/utils/initializationManager.ts": [
|
|
4122
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4123
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4124
|
+
],
|
|
4125
|
+
"../src/pushNotifications/utils/resolveConfig.ts": [
|
|
4126
|
+
"../../core/lib-esm/index.d.ts",
|
|
4127
|
+
"../src/pushNotifications/errors/index.ts",
|
|
4128
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4129
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4130
|
+
],
|
|
4131
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": [
|
|
4132
|
+
"../../core/lib-esm/index.d.ts",
|
|
4133
|
+
"../src/pushNotifications/errors/index.ts",
|
|
4134
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4135
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4136
|
+
],
|
|
4137
|
+
"../src/pushNotifications/utils/tokenManager.ts": [
|
|
4138
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4139
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4140
|
+
],
|
|
4141
|
+
"../src/pushNotifications/utils/index.ts": [
|
|
4142
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
4143
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
4144
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
4145
|
+
"../src/pushNotifications/utils/tokenManager.ts",
|
|
4146
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4147
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4148
|
+
],
|
|
4133
4149
|
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
4134
4150
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4151
|
+
"../src/pushNotifications/utils/index.ts",
|
|
4135
4152
|
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
4136
4153
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4137
4154
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -4224,34 +4241,23 @@
|
|
|
4224
4241
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4225
4242
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4226
4243
|
],
|
|
4227
|
-
"../src/pushNotifications/Platform/types.ts": [
|
|
4228
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4229
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4230
|
-
],
|
|
4231
|
-
"../src/pushNotifications/Platform/index.native.ts": [
|
|
4232
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
4233
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4234
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4235
|
-
],
|
|
4236
|
-
"../src/pushNotifications/Platform/index.ts": [
|
|
4237
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
4238
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4239
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4240
|
-
],
|
|
4241
4244
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": [
|
|
4242
4245
|
"../../react-native/lib-esm/index.d.ts",
|
|
4246
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4243
4247
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4244
4248
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4245
4249
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4246
4250
|
],
|
|
4247
4251
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": [
|
|
4248
4252
|
"../../react-native/lib-esm/index.d.ts",
|
|
4253
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4249
4254
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4250
4255
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4251
4256
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4252
4257
|
],
|
|
4253
4258
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": [
|
|
4254
4259
|
"../../react-native/lib-esm/index.d.ts",
|
|
4260
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4255
4261
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4256
4262
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4257
4263
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -4270,18 +4276,6 @@
|
|
|
4270
4276
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4271
4277
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4272
4278
|
],
|
|
4273
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts": [
|
|
4274
|
-
"../../core/lib-esm/index.d.ts",
|
|
4275
|
-
"../src/pushNotifications/errors/index.ts",
|
|
4276
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4277
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4278
|
-
],
|
|
4279
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts": [
|
|
4280
|
-
"../../core/lib-esm/index.d.ts",
|
|
4281
|
-
"../src/pushNotifications/errors/index.ts",
|
|
4282
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4283
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4284
|
-
],
|
|
4285
4279
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts": [
|
|
4286
4280
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
4287
4281
|
"../../core/lib-esm/index.d.ts",
|
|
@@ -4289,8 +4283,7 @@
|
|
|
4289
4283
|
"../src/pushNotifications/types/index.ts",
|
|
4290
4284
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts",
|
|
4291
4285
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
4292
|
-
"../src/pushNotifications/
|
|
4293
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
4286
|
+
"../src/pushNotifications/utils/index.ts",
|
|
4294
4287
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4295
4288
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4296
4289
|
],
|
|
@@ -4299,28 +4292,18 @@
|
|
|
4299
4292
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4300
4293
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4301
4294
|
],
|
|
4302
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts": [
|
|
4303
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4304
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4305
|
-
],
|
|
4306
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts": [
|
|
4307
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4308
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4309
|
-
],
|
|
4310
4295
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": [
|
|
4311
4296
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
4312
4297
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
4313
4298
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts",
|
|
4314
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
4315
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
4316
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
4317
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts",
|
|
4318
4299
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4319
4300
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4320
4301
|
],
|
|
4321
4302
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": [
|
|
4322
4303
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4323
4304
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
4305
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4306
|
+
"../src/pushNotifications/utils/index.ts",
|
|
4324
4307
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
4325
4308
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4326
4309
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -4332,42 +4315,49 @@
|
|
|
4332
4315
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
4333
4316
|
"../../react-native/lib-esm/index.d.ts",
|
|
4334
4317
|
"../src/eventListeners/index.ts",
|
|
4318
|
+
"../src/pushNotifications/utils/index.ts",
|
|
4335
4319
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
4336
4320
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4337
4321
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4338
4322
|
],
|
|
4339
4323
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": [
|
|
4340
4324
|
"../src/eventListeners/index.ts",
|
|
4325
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4341
4326
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4342
4327
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4343
4328
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4344
4329
|
],
|
|
4345
4330
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": [
|
|
4346
4331
|
"../src/eventListeners/index.ts",
|
|
4332
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4347
4333
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4348
4334
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4349
4335
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4350
4336
|
],
|
|
4351
4337
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": [
|
|
4352
4338
|
"../src/eventListeners/index.ts",
|
|
4339
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4353
4340
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4354
4341
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4355
4342
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4356
4343
|
],
|
|
4357
4344
|
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": [
|
|
4358
4345
|
"../src/eventListeners/index.ts",
|
|
4346
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4359
4347
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4360
4348
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4361
4349
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4362
4350
|
],
|
|
4363
4351
|
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": [
|
|
4364
4352
|
"../../react-native/lib-esm/index.d.ts",
|
|
4353
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4365
4354
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4366
4355
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4367
4356
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4368
4357
|
],
|
|
4369
4358
|
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": [
|
|
4370
4359
|
"../../react-native/lib-esm/index.d.ts",
|
|
4360
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
4371
4361
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
4372
4362
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4373
4363
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -4548,7 +4538,7 @@
|
|
|
4548
4538
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": [
|
|
4549
4539
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
4550
4540
|
"../src/inAppMessaging/types/index.ts",
|
|
4551
|
-
"
|
|
4541
|
+
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4552
4542
|
],
|
|
4553
4543
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts": [
|
|
4554
4544
|
"../src/inAppMessaging/providers/pinpoint/utils/resolveConfig.ts",
|
|
@@ -4642,11 +4632,7 @@
|
|
|
4642
4632
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": [
|
|
4643
4633
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
4644
4634
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
4645
|
-
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts"
|
|
4646
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
4647
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
4648
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
4649
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts"
|
|
4635
|
+
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts"
|
|
4650
4636
|
],
|
|
4651
4637
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": [
|
|
4652
4638
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
@@ -4769,24 +4755,28 @@
|
|
|
4769
4755
|
"../../core/lib-esm/types/index.d.ts",
|
|
4770
4756
|
"../../core/lib-esm/storage/index.d.ts",
|
|
4771
4757
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
4758
|
+
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
4772
4759
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
4773
4760
|
"../../core/lib-esm/Logger/index.d.ts",
|
|
4774
4761
|
"../../core/lib-esm/ServiceWorker/index.d.ts",
|
|
4775
4762
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4776
4763
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4777
4764
|
],
|
|
4778
|
-
"../src/pushNotifications/
|
|
4765
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": [
|
|
4779
4766
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4780
4767
|
],
|
|
4781
|
-
"../src/
|
|
4782
|
-
"../src/
|
|
4768
|
+
"../src/pushNotifications/utils/index.ts": [
|
|
4769
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
4770
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
4771
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
4772
|
+
"../src/pushNotifications/utils/tokenManager.ts"
|
|
4783
4773
|
],
|
|
4784
|
-
"../src/
|
|
4785
|
-
"
|
|
4774
|
+
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
4775
|
+
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4786
4776
|
],
|
|
4787
|
-
"../src/
|
|
4788
|
-
"../src/
|
|
4789
|
-
"../src/
|
|
4777
|
+
"../src/pushNotifications/errors/index.ts": [
|
|
4778
|
+
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
4779
|
+
"../src/pushNotifications/errors/errorHelpers.ts"
|
|
4790
4780
|
],
|
|
4791
4781
|
"../src/inAppMessaging/providers/pinpoint/utils/resolveCredentials.ts": [
|
|
4792
4782
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
@@ -4825,19 +4815,14 @@
|
|
|
4825
4815
|
"../../core/lib-esm/Hub/index.d.ts",
|
|
4826
4816
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
4827
4817
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
4818
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
4819
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
4828
4820
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4829
4821
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4830
4822
|
],
|
|
4831
4823
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts": [
|
|
4832
4824
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4833
4825
|
],
|
|
4834
|
-
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
4835
|
-
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4836
|
-
],
|
|
4837
|
-
"../src/pushNotifications/errors/index.ts": [
|
|
4838
|
-
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
4839
|
-
"../src/pushNotifications/errors/errorHelpers.ts"
|
|
4840
|
-
],
|
|
4841
4826
|
"../src/pushNotifications/errors/PushNotificationError.ts": [
|
|
4842
4827
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
4843
4828
|
],
|
|
@@ -4941,11 +4926,10 @@
|
|
|
4941
4926
|
"../../core/lib-esm/singleton/API/types.d.ts",
|
|
4942
4927
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
4943
4928
|
"../../core/lib-esm/singleton/Auth/types.d.ts",
|
|
4944
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
4945
4929
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
4946
4930
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
4947
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
4948
4931
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
4932
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
4949
4933
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4950
4934
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4951
4935
|
],
|
|
@@ -5693,22 +5677,11 @@
|
|
|
5693
5677
|
"../../../node_modules/@types/node/inspector.d.ts",
|
|
5694
5678
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5695
5679
|
],
|
|
5696
|
-
"../src/pushNotifications/Platform/index.ts": [
|
|
5697
|
-
"../src/pushNotifications/Platform/types.ts"
|
|
5698
|
-
],
|
|
5699
|
-
"../src/pushNotifications/Platform/index.native.ts": [
|
|
5700
|
-
"../src/pushNotifications/Platform/types.ts"
|
|
5701
|
-
],
|
|
5702
5680
|
"../../../node_modules/@types/lodash/flatten.d.ts": [
|
|
5703
5681
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
5704
5682
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5705
5683
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5706
5684
|
],
|
|
5707
|
-
"../../../node_modules/@types/lodash/noop.d.ts": [
|
|
5708
|
-
"../../../node_modules/@types/lodash/index.d.ts",
|
|
5709
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5710
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5711
|
-
],
|
|
5712
5685
|
"../../../node_modules/@types/lodash/isEmpty.d.ts": [
|
|
5713
5686
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
5714
5687
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -5922,6 +5895,20 @@
|
|
|
5922
5895
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5923
5896
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5924
5897
|
],
|
|
5898
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": [
|
|
5899
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
5900
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5901
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5902
|
+
],
|
|
5903
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": [
|
|
5904
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
5905
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5906
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5907
|
+
],
|
|
5908
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": [
|
|
5909
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5910
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5911
|
+
],
|
|
5925
5912
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts": [
|
|
5926
5913
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5927
5914
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -6155,6 +6142,12 @@
|
|
|
6155
6142
|
"../../react-native/lib-esm/moduleLoaders/loadUrlPolyfill.d.ts",
|
|
6156
6143
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
6157
6144
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
6145
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
6146
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
6147
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
6148
|
+
],
|
|
6149
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": [
|
|
6150
|
+
"../../rtn-push-notification/node_modules/@types/react-native/index.d.ts",
|
|
6158
6151
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6159
6152
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6160
6153
|
],
|
|
@@ -6380,6 +6373,10 @@
|
|
|
6380
6373
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6381
6374
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6382
6375
|
],
|
|
6376
|
+
"../../core/lib-esm/I18n/types.d.ts": [
|
|
6377
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
6378
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
6379
|
+
],
|
|
6383
6380
|
"../../core/lib-esm/Cache/index.d.ts": [
|
|
6384
6381
|
"../../core/lib-esm/Cache/StorageCache.d.ts",
|
|
6385
6382
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -6407,6 +6404,10 @@
|
|
|
6407
6404
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6408
6405
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6409
6406
|
],
|
|
6407
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
6408
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
6409
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
6410
|
+
],
|
|
6410
6411
|
"../../core/lib-esm/storage/index.d.ts": [
|
|
6411
6412
|
"../../core/lib-esm/storage/DefaultStorage.d.ts",
|
|
6412
6413
|
"../../core/lib-esm/storage/KeyValueStorage.d.ts",
|
|
@@ -6439,7 +6440,7 @@
|
|
|
6439
6440
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6440
6441
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6441
6442
|
],
|
|
6442
|
-
"../../core/lib-esm/
|
|
6443
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": [
|
|
6443
6444
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6444
6445
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6445
6446
|
],
|
|
@@ -6451,10 +6452,6 @@
|
|
|
6451
6452
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6452
6453
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6453
6454
|
],
|
|
6454
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
6455
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
6456
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
6457
|
-
],
|
|
6458
6455
|
"../../core/lib-esm/providers/personalize/types/index.d.ts": [
|
|
6459
6456
|
"../../core/lib-esm/providers/personalize/types/personalize.d.ts",
|
|
6460
6457
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -6796,13 +6793,12 @@
|
|
|
6796
6793
|
"../../core/lib-esm/providers/personalize/types/personalize.d.ts",
|
|
6797
6794
|
"../../core/lib-esm/providers/personalize/types/index.d.ts",
|
|
6798
6795
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
6799
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
6800
6796
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
6801
6797
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
6802
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
6803
6798
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts",
|
|
6804
6799
|
"../../core/lib-esm/singleton/Notifications/PushNotification/types.d.ts",
|
|
6805
6800
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
6801
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
6806
6802
|
"../../core/lib-esm/singleton/types.d.ts",
|
|
6807
6803
|
"../../core/lib-esm/singleton/Auth/index.d.ts",
|
|
6808
6804
|
"../../core/lib-esm/singleton/Amplify.d.ts",
|
|
@@ -6818,11 +6814,13 @@
|
|
|
6818
6814
|
"../../core/lib-esm/storage/SessionStorage.d.ts",
|
|
6819
6815
|
"../../core/lib-esm/storage/CookieStorage.d.ts",
|
|
6820
6816
|
"../../core/lib-esm/storage/index.d.ts",
|
|
6817
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
6821
6818
|
"../../core/lib-esm/Cache/types/cache.d.ts",
|
|
6822
6819
|
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
6823
6820
|
"../../core/lib-esm/Cache/StorageCacheCommon.d.ts",
|
|
6824
6821
|
"../../core/lib-esm/Cache/StorageCache.d.ts",
|
|
6825
6822
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
6823
|
+
"../../core/lib-esm/I18n/types.d.ts",
|
|
6826
6824
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
6827
6825
|
"../../core/lib-esm/Logger/logger-interface.d.ts",
|
|
6828
6826
|
"../../core/lib-esm/Logger/ConsoleLogger.d.ts",
|
|
@@ -6873,6 +6871,7 @@
|
|
|
6873
6871
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
6874
6872
|
"../../../node_modules/@types/base-64/index.d.ts",
|
|
6875
6873
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
6874
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
6876
6875
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts",
|
|
6877
6876
|
"../../react-native/lib-esm/index.d.ts",
|
|
6878
6877
|
"../src/pushNotifications/types/pushNotifications.ts",
|
|
@@ -6930,6 +6929,9 @@
|
|
|
6930
6929
|
"../../core/lib-esm/utils/convert/base64/base64Encoder.d.ts",
|
|
6931
6930
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
6932
6931
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
6932
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
6933
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
6934
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
6933
6935
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
6934
6936
|
"../../core/lib-esm/providers/pinpoint/apis/updateEndpoint.d.ts",
|
|
6935
6937
|
"../../core/lib-esm/providers/pinpoint/apis/record.d.ts",
|
|
@@ -6975,10 +6977,6 @@
|
|
|
6975
6977
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
6976
6978
|
"../../../node_modules/@types/lodash/isEmpty.d.ts",
|
|
6977
6979
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
6978
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
6979
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
6980
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts",
|
|
6981
|
-
"../src/inAppMessaging/sessionTracker/index.ts",
|
|
6982
6980
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts",
|
|
6983
6981
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts",
|
|
6984
6982
|
"../src/inAppMessaging/utils/statusHelpers.ts",
|
|
@@ -6998,7 +6996,6 @@
|
|
|
6998
6996
|
"../src/inAppMessaging/providers/pinpoint/index.ts",
|
|
6999
6997
|
"../src/inAppMessaging/index.ts",
|
|
7000
6998
|
"../src/inAppMessaging/providers/index.ts",
|
|
7001
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts",
|
|
7002
6999
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts",
|
|
7003
7000
|
"../src/pushNotifications/providers/pinpoint/types/options.ts",
|
|
7004
7001
|
"../src/pushNotifications/providers/pinpoint/types/inputs.ts",
|
|
@@ -7010,6 +7007,11 @@
|
|
|
7010
7007
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.ts",
|
|
7011
7008
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.ts",
|
|
7012
7009
|
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
7010
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
7011
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
7012
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
7013
|
+
"../src/pushNotifications/utils/tokenManager.ts",
|
|
7014
|
+
"../src/pushNotifications/utils/index.ts",
|
|
7013
7015
|
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
7014
7016
|
"../src/pushNotifications/errors/index.ts",
|
|
7015
7017
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts",
|
|
@@ -7023,20 +7025,13 @@
|
|
|
7023
7025
|
"../src/pushNotifications/providers/pinpoint/apis/index.ts",
|
|
7024
7026
|
"../src/pushNotifications/providers/pinpoint/index.ts",
|
|
7025
7027
|
"../src/pushNotifications/index.ts",
|
|
7026
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
7027
|
-
"../src/pushNotifications/Platform/index.native.ts",
|
|
7028
|
-
"../src/pushNotifications/Platform/index.ts",
|
|
7029
7028
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts",
|
|
7030
7029
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts",
|
|
7031
7030
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts",
|
|
7032
7031
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts",
|
|
7033
7032
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
7034
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
7035
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
7036
7033
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
7037
7034
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts",
|
|
7038
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
7039
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts",
|
|
7040
7035
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
7041
7036
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts",
|
|
7042
7037
|
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.ts",
|