@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
|
@@ -158,8 +158,8 @@
|
|
|
158
158
|
"signature": "d93031677bd533b0d737b02da0f81a7135139631ed9f453455f50061cc40181d"
|
|
159
159
|
},
|
|
160
160
|
"../../core/lib-esm/singleton/Auth/types.d.ts": {
|
|
161
|
-
"version": "
|
|
162
|
-
"signature": "
|
|
161
|
+
"version": "d870ef185bd9e57959c1f3c2ff2cca2d1543243fb4878e52133dae9f92d90385",
|
|
162
|
+
"signature": "d870ef185bd9e57959c1f3c2ff2cca2d1543243fb4878e52133dae9f92d90385"
|
|
163
163
|
},
|
|
164
164
|
"../../core/lib-esm/clients/endpoints/getDnsSuffix.d.ts": {
|
|
165
165
|
"version": "68947051891fb1dde45efbcc0f562b501658b16f5140d2899c6ffd5746c6a2cc",
|
|
@@ -198,8 +198,8 @@
|
|
|
198
198
|
"signature": "8c542877559cd6f411ab47e35a3acb905c0b220461153cf3d5da6ac865cd2245"
|
|
199
199
|
},
|
|
200
200
|
"../../../node_modules/@types/events/index.d.ts": {
|
|
201
|
-
"version": "
|
|
202
|
-
"signature": "
|
|
201
|
+
"version": "93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e",
|
|
202
|
+
"signature": "93d28b4eb12c68fccc1f2fc04a4ef83ea3b2a03b18055d3bf29cab267aa7042e"
|
|
203
203
|
},
|
|
204
204
|
"../../../node_modules/@types/node/inspector.d.ts": {
|
|
205
205
|
"version": "7e49dbf1543b3ee54853ade4c5e9fa460b6a4eca967efe6bf943e0c505d087ed",
|
|
@@ -362,8 +362,8 @@
|
|
|
362
362
|
"signature": "9a7a67ed77e685f0f4fef0b79154fa0645951404e374de8d4cc57dadc864c136"
|
|
363
363
|
},
|
|
364
364
|
"../../../node_modules/@smithy/types/dist-types/ts3.4/profile.d.ts": {
|
|
365
|
-
"version": "
|
|
366
|
-
"signature": "
|
|
365
|
+
"version": "9c93143d00286876a7770ac8af26def9f9760c86dc813b3604a61da1692b1225",
|
|
366
|
+
"signature": "9c93143d00286876a7770ac8af26def9f9760c86dc813b3604a61da1692b1225"
|
|
367
367
|
},
|
|
368
368
|
"../../../node_modules/@smithy/types/dist-types/ts3.4/serde.d.ts": {
|
|
369
369
|
"version": "4f2cfc8b1c9ff5e1f96fcfff8f136181a36ad346e7b6646c7d417c2c21a2bb46",
|
|
@@ -717,10 +717,6 @@
|
|
|
717
717
|
"version": "0c25f785089696f525f26d37c5cbd6656175dc7eb2c331fcbaa34ff4af0424dc",
|
|
718
718
|
"signature": "0c25f785089696f525f26d37c5cbd6656175dc7eb2c331fcbaa34ff4af0424dc"
|
|
719
719
|
},
|
|
720
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": {
|
|
721
|
-
"version": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831",
|
|
722
|
-
"signature": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831"
|
|
723
|
-
},
|
|
724
720
|
"../../core/lib-esm/singleton/Geo/types.d.ts": {
|
|
725
721
|
"version": "0496344cca8596e5fcfbcf489ea39fd6ea82a4d6a010f968685edf5b4f6c2533",
|
|
726
722
|
"signature": "0496344cca8596e5fcfbcf489ea39fd6ea82a4d6a010f968685edf5b4f6c2533"
|
|
@@ -729,10 +725,6 @@
|
|
|
729
725
|
"version": "9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96",
|
|
730
726
|
"signature": "9b1f66012e58888f1bd2f5b8b749784d7d592ad7d5ac48972511e2e942161e96"
|
|
731
727
|
},
|
|
732
|
-
"../../core/lib-esm/I18n/types.d.ts": {
|
|
733
|
-
"version": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76",
|
|
734
|
-
"signature": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76"
|
|
735
|
-
},
|
|
736
728
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts": {
|
|
737
729
|
"version": "ee9f33d464c617286d9d10d95ae291234dc1a312668adedbf01d5bf781fa0d48",
|
|
738
730
|
"signature": "ee9f33d464c617286d9d10d95ae291234dc1a312668adedbf01d5bf781fa0d48"
|
|
@@ -745,9 +737,13 @@
|
|
|
745
737
|
"version": "d62b916d820b8c130bf1fac10b43576e54fd7adf63535ef4f74e85c73cf59cb2",
|
|
746
738
|
"signature": "d62b916d820b8c130bf1fac10b43576e54fd7adf63535ef4f74e85c73cf59cb2"
|
|
747
739
|
},
|
|
740
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": {
|
|
741
|
+
"version": "2d7a0242ee0f800cc80aca2e29dabb43a39cad63c1994fe5240995e1c3592863",
|
|
742
|
+
"signature": "2d7a0242ee0f800cc80aca2e29dabb43a39cad63c1994fe5240995e1c3592863"
|
|
743
|
+
},
|
|
748
744
|
"../../core/lib-esm/singleton/types.d.ts": {
|
|
749
|
-
"version": "
|
|
750
|
-
"signature": "
|
|
745
|
+
"version": "b71dcec228296664b1099cb99d82154471041d0461161d176e7e51a8c68b7d82",
|
|
746
|
+
"signature": "b71dcec228296664b1099cb99d82154471041d0461161d176e7e51a8c68b7d82"
|
|
751
747
|
},
|
|
752
748
|
"../../core/lib-esm/singleton/Auth/index.d.ts": {
|
|
753
749
|
"version": "702d32653e4f248e6abac940c03a9f1ab1cf87bbde61493e1a491648cc7f73bf",
|
|
@@ -805,6 +801,10 @@
|
|
|
805
801
|
"version": "09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795",
|
|
806
802
|
"signature": "09f8c424b8d8394a44bf731306d0022eef5f9b18845cb796da2cc4d4d49b5795"
|
|
807
803
|
},
|
|
804
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": {
|
|
805
|
+
"version": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831",
|
|
806
|
+
"signature": "bcc28b438afa3aa02efe07bfefe080cb1f5fbb8d1525371c5a689b1dda2b5831"
|
|
807
|
+
},
|
|
808
808
|
"../../core/lib-esm/Cache/types/cache.d.ts": {
|
|
809
809
|
"version": "ef4138bc245bc4ed576257593d7624aada0d052689a8f9055fc1606d8085ca6d",
|
|
810
810
|
"signature": "ef4138bc245bc4ed576257593d7624aada0d052689a8f9055fc1606d8085ca6d"
|
|
@@ -825,6 +825,10 @@
|
|
|
825
825
|
"version": "2a311097017321ade6eb04b9e12b53e4a51cb07fa37b6ead35ac832b33ad27d3",
|
|
826
826
|
"signature": "2a311097017321ade6eb04b9e12b53e4a51cb07fa37b6ead35ac832b33ad27d3"
|
|
827
827
|
},
|
|
828
|
+
"../../core/lib-esm/I18n/types.d.ts": {
|
|
829
|
+
"version": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76",
|
|
830
|
+
"signature": "5067e5e3fd2990550510443981e456d48c85dd04669b1ac98246fe7e1de8dd76"
|
|
831
|
+
},
|
|
828
832
|
"../../core/lib-esm/I18n/index.d.ts": {
|
|
829
833
|
"version": "3cdc09269c30f50499132846639d826e03fb74007685505c5f0ce9691f627f75",
|
|
830
834
|
"signature": "3cdc09269c30f50499132846639d826e03fb74007685505c5f0ce9691f627f75"
|
|
@@ -850,8 +854,8 @@
|
|
|
850
854
|
"signature": "fbf60648061688363789fe5933399ce8fcf8832c7ea9237746e29e0b0b7bedaf"
|
|
851
855
|
},
|
|
852
856
|
"../../core/lib-esm/index.d.ts": {
|
|
853
|
-
"version": "
|
|
854
|
-
"signature": "
|
|
857
|
+
"version": "6b7583787f85102c2714731b76c6e02fa4e2146bf8a57bdabc06f4762e3970f7",
|
|
858
|
+
"signature": "6b7583787f85102c2714731b76c6e02fa4e2146bf8a57bdabc06f4762e3970f7"
|
|
855
859
|
},
|
|
856
860
|
"../lib-esm/inAppMessaging/types/inputs.d.ts": {
|
|
857
861
|
"version": "f6fdedea1cd54909d2a718d58299aaf6afd1d683488826bcc89d8bf9dc98b878",
|
|
@@ -914,8 +918,8 @@
|
|
|
914
918
|
"signature": "4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288"
|
|
915
919
|
},
|
|
916
920
|
"../../rtn-push-notification/node_modules/@types/prop-types/index.d.ts": {
|
|
917
|
-
"version": "
|
|
918
|
-
"signature": "
|
|
921
|
+
"version": "8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e",
|
|
922
|
+
"signature": "8c6aac56e9dddb1f02d8e75478b79da0d25a1d0e38e75d5b8947534f61f3785e"
|
|
919
923
|
},
|
|
920
924
|
"../../rtn-push-notification/node_modules/@types/scheduler/tracing.d.ts": {
|
|
921
925
|
"version": "5f8f00356f6a82e21493b2d57b2178f11b00cf8960df00bd37bdcae24c9333ca",
|
|
@@ -1025,13 +1029,17 @@
|
|
|
1025
1029
|
"version": "df131c302b5601ee77d3c2ba9b96218b4bbf6699810be6c683b5fb2846f4540a",
|
|
1026
1030
|
"signature": "df131c302b5601ee77d3c2ba9b96218b4bbf6699810be6c683b5fb2846f4540a"
|
|
1027
1031
|
},
|
|
1032
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": {
|
|
1033
|
+
"version": "2f7f4cca4bcd8cb2fa2bf6c56e45cd3a40cdc44f1a39b1fc287c5f4e9c6044e0",
|
|
1034
|
+
"signature": "2f7f4cca4bcd8cb2fa2bf6c56e45cd3a40cdc44f1a39b1fc287c5f4e9c6044e0"
|
|
1035
|
+
},
|
|
1028
1036
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts": {
|
|
1029
|
-
"version": "
|
|
1030
|
-
"signature": "
|
|
1037
|
+
"version": "87251e3fc049ef168b1614a3df40c604ac877e6d50be6fd144836102d61b6966",
|
|
1038
|
+
"signature": "87251e3fc049ef168b1614a3df40c604ac877e6d50be6fd144836102d61b6966"
|
|
1031
1039
|
},
|
|
1032
1040
|
"../../react-native/lib-esm/index.d.ts": {
|
|
1033
|
-
"version": "
|
|
1034
|
-
"signature": "
|
|
1041
|
+
"version": "70b833382ab69f46a4dd4e9a572fefdb0c80a3344936ca8914775f58ebada6d1",
|
|
1042
|
+
"signature": "70b833382ab69f46a4dd4e9a572fefdb0c80a3344936ca8914775f58ebada6d1"
|
|
1035
1043
|
},
|
|
1036
1044
|
"../lib-esm/pushNotifications/types/pushNotifications.d.ts": {
|
|
1037
1045
|
"version": "efa3b59989e7118a035d3d654e070106d8962206352a8f776831bee6e5970e61",
|
|
@@ -1138,8 +1146,8 @@
|
|
|
1138
1146
|
"signature": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
|
|
1139
1147
|
},
|
|
1140
1148
|
"../../../node_modules/@types/uuid/index.d.ts": {
|
|
1141
|
-
"version": "
|
|
1142
|
-
"signature": "
|
|
1149
|
+
"version": "7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d",
|
|
1150
|
+
"signature": "7d2b7fe4adb76d8253f20e4dbdce044f1cdfab4902ec33c3604585f553883f7d"
|
|
1143
1151
|
},
|
|
1144
1152
|
"../../core/lib-esm/utils/amplifyUuid/index.d.ts": {
|
|
1145
1153
|
"version": "7299856f9e001e93d9c8b8844d9a2d6838756c5fdddfb65cd3456ade4e94cd1c",
|
|
@@ -1261,9 +1269,21 @@
|
|
|
1261
1269
|
"version": "92395e3e6898e201a167d96559042af069933f1a96662305bdc01fda3627bfbf",
|
|
1262
1270
|
"signature": "92395e3e6898e201a167d96559042af069933f1a96662305bdc01fda3627bfbf"
|
|
1263
1271
|
},
|
|
1272
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": {
|
|
1273
|
+
"version": "3eb29fe3517a6419a6e2714ff35ddcbf2a9b28f25d366a06f66596154ea1dc40",
|
|
1274
|
+
"signature": "3eb29fe3517a6419a6e2714ff35ddcbf2a9b28f25d366a06f66596154ea1dc40"
|
|
1275
|
+
},
|
|
1276
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": {
|
|
1277
|
+
"version": "8e4d32325135c680f916d32c4b34a0c364b3b58c8b5eb8e6ae1d272809740b6b",
|
|
1278
|
+
"signature": "8e4d32325135c680f916d32c4b34a0c364b3b58c8b5eb8e6ae1d272809740b6b"
|
|
1279
|
+
},
|
|
1280
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": {
|
|
1281
|
+
"version": "db7e79a9081ed04e99775ce9774935f4138b1e7ec73c47e4a9316ab7d1b656da",
|
|
1282
|
+
"signature": "db7e79a9081ed04e99775ce9774935f4138b1e7ec73c47e4a9316ab7d1b656da"
|
|
1283
|
+
},
|
|
1264
1284
|
"../../core/lib-esm/libraryUtils.d.ts": {
|
|
1265
|
-
"version": "
|
|
1266
|
-
"signature": "
|
|
1285
|
+
"version": "d284e143535d02c2ce1cbe759e15495cb5d71849ebb710cde01281358c9b7082",
|
|
1286
|
+
"signature": "d284e143535d02c2ce1cbe759e15495cb5d71849ebb710cde01281358c9b7082"
|
|
1267
1287
|
},
|
|
1268
1288
|
"../../core/lib-esm/providers/pinpoint/apis/flushEvents.d.ts": {
|
|
1269
1289
|
"version": "a9d4da746359dcf4837047e41f43a0e6afccd945cbdf3054090e42121c40bd67",
|
|
@@ -1298,8 +1318,8 @@
|
|
|
1298
1318
|
"signature": "62bf55d37c97afd5f20b2927f275a1382995d89b30c656566ac672cfa1a260eb"
|
|
1299
1319
|
},
|
|
1300
1320
|
"../lib-esm/inAppMessaging/providers/pinpoint/apis/identifyUser.d.ts": {
|
|
1301
|
-
"version": "
|
|
1302
|
-
"signature": "
|
|
1321
|
+
"version": "c3fa174da51a730b5893a3384c35991cd7c0948f039785fa4ab745ab773ce8b9",
|
|
1322
|
+
"signature": "c3fa174da51a730b5893a3384c35991cd7c0948f039785fa4ab745ab773ce8b9"
|
|
1303
1323
|
},
|
|
1304
1324
|
"../lib-esm/inAppMessaging/providers/pinpoint/apis/syncMessages.d.ts": {
|
|
1305
1325
|
"version": "7871facb4dd935a555e88865696881a19c273136d576b09136c352a209f67f2e",
|
|
@@ -1433,30 +1453,14 @@
|
|
|
1433
1453
|
"version": "7440aea50a1fcc211d7c32ef787ed787b3ad857c7a01ad848b0a288f8bed5849",
|
|
1434
1454
|
"signature": "7440aea50a1fcc211d7c32ef787ed787b3ad857c7a01ad848b0a288f8bed5849"
|
|
1435
1455
|
},
|
|
1436
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts": {
|
|
1437
|
-
"version": "5abccc4104a6c04f148a420abdf39e3571791a9be411a32b1c2ecfe1519783c5",
|
|
1438
|
-
"signature": "5abccc4104a6c04f148a420abdf39e3571791a9be411a32b1c2ecfe1519783c5"
|
|
1439
|
-
},
|
|
1440
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts": {
|
|
1441
|
-
"version": "99ff9de9e3243d6c81fef95e888c16c3437cc50a2e2d770b44e9f2bca2660635",
|
|
1442
|
-
"signature": "99ff9de9e3243d6c81fef95e888c16c3437cc50a2e2d770b44e9f2bca2660635"
|
|
1443
|
-
},
|
|
1444
|
-
"../lib-esm/inAppMessaging/sessionTracker/index.d.ts": {
|
|
1445
|
-
"version": "e5636d50777203ee7a8023f22f2a113d2104ef73f92f495e6551777d4f0f2873",
|
|
1446
|
-
"signature": "e5636d50777203ee7a8023f22f2a113d2104ef73f92f495e6551777d4f0f2873"
|
|
1447
|
-
},
|
|
1448
1456
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts": {
|
|
1449
|
-
"version": "
|
|
1450
|
-
"signature": "
|
|
1457
|
+
"version": "236ee7899423c26929d6316d5f1e846932248af203bc80d381d308c91a220ddf",
|
|
1458
|
+
"signature": "236ee7899423c26929d6316d5f1e846932248af203bc80d381d308c91a220ddf"
|
|
1451
1459
|
},
|
|
1452
1460
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/index.d.ts": {
|
|
1453
1461
|
"version": "ede029113f00e5d328295efb87a36dcc936d3f9863430e71ad64fb55bf1607d1",
|
|
1454
1462
|
"signature": "ede029113f00e5d328295efb87a36dcc936d3f9863430e71ad64fb55bf1607d1"
|
|
1455
1463
|
},
|
|
1456
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.native.d.ts": {
|
|
1457
|
-
"version": "135317c6d0f528d59df2ebc2cdcd73a3f7820582dc8bb19c5a13de5d8f2d1982",
|
|
1458
|
-
"signature": "135317c6d0f528d59df2ebc2cdcd73a3f7820582dc8bb19c5a13de5d8f2d1982"
|
|
1459
|
-
},
|
|
1460
1464
|
"../lib-esm/inAppMessaging/utils/statusHelpers.d.ts": {
|
|
1461
1465
|
"version": "d762da420e28ab0ff86b4e8d2495a74c96ccddc2662e4f6ec32e4862e7f90f46",
|
|
1462
1466
|
"signature": "d762da420e28ab0ff86b4e8d2495a74c96ccddc2662e4f6ec32e4862e7f90f46"
|
|
@@ -1550,8 +1554,8 @@
|
|
|
1550
1554
|
"signature": "bb096f7158dda6ac8616e588c0d5b6f50ecde6f25506979f2fccb1215e1cbd29"
|
|
1551
1555
|
},
|
|
1552
1556
|
"../lib-esm/pushNotifications/errors/errorHelpers.d.ts": {
|
|
1553
|
-
"version": "
|
|
1554
|
-
"signature": "
|
|
1557
|
+
"version": "b8a0a22ef0e04d92b238196292a89fbeecef3a0e957638b5e7d7904265221bc8",
|
|
1558
|
+
"signature": "b8a0a22ef0e04d92b238196292a89fbeecef3a0e957638b5e7d7904265221bc8"
|
|
1555
1559
|
},
|
|
1556
1560
|
"../lib-esm/pushNotifications/errors/index.d.ts": {
|
|
1557
1561
|
"version": "861275e40aa7b7c207bf35a2e2497932d61a1da50b49a463b0693aff24a20565",
|
|
@@ -1561,18 +1565,6 @@
|
|
|
1561
1565
|
"version": "aaf703c869c71b98798dcb05a32e7b48f10cdd72a711c6897b4a14cd7044a77f",
|
|
1562
1566
|
"signature": "aaf703c869c71b98798dcb05a32e7b48f10cdd72a711c6897b4a14cd7044a77f"
|
|
1563
1567
|
},
|
|
1564
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts": {
|
|
1565
|
-
"version": "570fc9ab71a23bfa2aa0f383dfbd9a17f69ce79ab42515cd05f9165a0dec9e06",
|
|
1566
|
-
"signature": "570fc9ab71a23bfa2aa0f383dfbd9a17f69ce79ab42515cd05f9165a0dec9e06"
|
|
1567
|
-
},
|
|
1568
|
-
"../lib-esm/pushNotifications/Platform/index.d.ts": {
|
|
1569
|
-
"version": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb",
|
|
1570
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
1571
|
-
},
|
|
1572
|
-
"../lib-esm/pushNotifications/Platform/index.native.d.ts": {
|
|
1573
|
-
"version": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb",
|
|
1574
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
1575
|
-
},
|
|
1576
1568
|
"../lib-esm/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.d.ts": {
|
|
1577
1569
|
"version": "45e2b4d35310ddffc2a6f4b6d525bf91b9c8a322b3914c3a8e5930b32b5b5d3e",
|
|
1578
1570
|
"signature": "45e2b4d35310ddffc2a6f4b6d525bf91b9c8a322b3914c3a8e5930b32b5b5d3e"
|
|
@@ -1633,25 +1625,29 @@
|
|
|
1633
1625
|
"version": "2e7fc29fed48b8334fac2aaf4dd4b5f5c725a947aae6dfa1d3ad86cd5e8433fc",
|
|
1634
1626
|
"signature": "2e7fc29fed48b8334fac2aaf4dd4b5f5c725a947aae6dfa1d3ad86cd5e8433fc"
|
|
1635
1627
|
},
|
|
1636
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/
|
|
1628
|
+
"../lib-esm/pushNotifications/providers/pinpoint/utils/index.d.ts": {
|
|
1629
|
+
"version": "bab2902aeadb4f2aeb1e65e64429b054555977b0aac0a9243e19e578654cce43",
|
|
1630
|
+
"signature": "bab2902aeadb4f2aeb1e65e64429b054555977b0aac0a9243e19e578654cce43"
|
|
1631
|
+
},
|
|
1632
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts": {
|
|
1637
1633
|
"version": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534",
|
|
1638
1634
|
"signature": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534"
|
|
1639
1635
|
},
|
|
1640
|
-
"../lib-esm/pushNotifications/
|
|
1636
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts": {
|
|
1641
1637
|
"version": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c",
|
|
1642
1638
|
"signature": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"
|
|
1643
1639
|
},
|
|
1644
|
-
"../lib-esm/pushNotifications/
|
|
1640
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts": {
|
|
1645
1641
|
"version": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af",
|
|
1646
1642
|
"signature": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af"
|
|
1647
1643
|
},
|
|
1648
|
-
"../lib-esm/pushNotifications/
|
|
1644
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts": {
|
|
1649
1645
|
"version": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130",
|
|
1650
1646
|
"signature": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130"
|
|
1651
1647
|
},
|
|
1652
|
-
"../lib-esm/pushNotifications/
|
|
1653
|
-
"version": "
|
|
1654
|
-
"signature": "
|
|
1648
|
+
"../lib-esm/pushNotifications/utils/index.d.ts": {
|
|
1649
|
+
"version": "e5264a003f274eab7072d4bd547733eaf907653a8cff54fd643f336ee916b88c",
|
|
1650
|
+
"signature": "e5264a003f274eab7072d4bd547733eaf907653a8cff54fd643f336ee916b88c"
|
|
1655
1651
|
},
|
|
1656
1652
|
"../src/index.ts": {
|
|
1657
1653
|
"version": "f2a51c5206ed94982ba1f33fbffcee7d546b77bf55764ca88c9037b68ca6bfcf",
|
|
@@ -1830,28 +1826,12 @@
|
|
|
1830
1826
|
"signature": "8dcd8273655aef81be9c273e532a55f56032c7907b20f8ed4d069f7eec44ace8"
|
|
1831
1827
|
},
|
|
1832
1828
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts": {
|
|
1833
|
-
"version": "
|
|
1829
|
+
"version": "83623c35234fc4c3c988c8db5b6feacf32a3d4cd4a84cee42b70d4a9b1aab9c6",
|
|
1834
1830
|
"signature": "725d92b659432e75a979eba2d0868d88e9dec75a88901990587604a6d7c25286"
|
|
1835
1831
|
},
|
|
1836
|
-
"../../../node_modules/@types/lodash/noop.d.ts": {
|
|
1837
|
-
"version": "4a84fa3822ee632d323357894fc65d741594004f528b4929d1e3bff35ef0ff22",
|
|
1838
|
-
"signature": "4a84fa3822ee632d323357894fc65d741594004f528b4929d1e3bff35ef0ff22"
|
|
1839
|
-
},
|
|
1840
|
-
"../src/inAppMessaging/sessionTracker/types.ts": {
|
|
1841
|
-
"version": "5c454e59eee5097b287752e508e206f0aa41c3d5fe063a74c8a0e958be9df7a0",
|
|
1842
|
-
"signature": "5abccc4104a6c04f148a420abdf39e3571791a9be411a32b1c2ecfe1519783c5"
|
|
1843
|
-
},
|
|
1844
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts": {
|
|
1845
|
-
"version": "15fe2572e3d336583a2719c4b05d26321b32883927585f52b81f0e4328003aa9",
|
|
1846
|
-
"signature": "99ff9de9e3243d6c81fef95e888c16c3437cc50a2e2d770b44e9f2bca2660635"
|
|
1847
|
-
},
|
|
1848
|
-
"../src/inAppMessaging/sessionTracker/index.ts": {
|
|
1849
|
-
"version": "0ad12e8032c9ed8833becee1ade6cfabbb70f7ecf863d220219d70a41c0f4f5a",
|
|
1850
|
-
"signature": "e5636d50777203ee7a8023f22f2a113d2104ef73f92f495e6551777d4f0f2873"
|
|
1851
|
-
},
|
|
1852
1832
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": {
|
|
1853
|
-
"version": "
|
|
1854
|
-
"signature": "
|
|
1833
|
+
"version": "5e01a966df43c5f37c02ddfaa5508cd34b976036ef11c2e9e76d04999f88b5a7",
|
|
1834
|
+
"signature": "236ee7899423c26929d6316d5f1e846932248af203bc80d381d308c91a220ddf"
|
|
1855
1835
|
},
|
|
1856
1836
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts": {
|
|
1857
1837
|
"version": "381df4d40ded4e04fbb66fee4a314c9fe7faf92b2193f96d434dd5427ec06040",
|
|
@@ -1866,8 +1846,8 @@
|
|
|
1866
1846
|
"signature": "92255367c9126ac82453cc75d46991b8b5e086e7573a7100c192b0ae390b4e6c"
|
|
1867
1847
|
},
|
|
1868
1848
|
"../src/inAppMessaging/providers/pinpoint/apis/identifyUser.ts": {
|
|
1869
|
-
"version": "
|
|
1870
|
-
"signature": "
|
|
1849
|
+
"version": "fd320befb33152acd91456de040f09554c135bd858d5c416300ee1b862dfa7be",
|
|
1850
|
+
"signature": "c3fa174da51a730b5893a3384c35991cd7c0948f039785fa4ab745ab773ce8b9"
|
|
1871
1851
|
},
|
|
1872
1852
|
"../src/inAppMessaging/providers/pinpoint/apis/syncMessages.ts": {
|
|
1873
1853
|
"version": "20ca25b8d0cce275c2ef776dc8f25829abf0b4001b62f3ec110c4c0b7c6409b6",
|
|
@@ -1886,7 +1866,7 @@
|
|
|
1886
1866
|
"signature": "fc0c39455483528bd731d54b36aede83efded2f8d823fc20e142cd9bfffe5b09"
|
|
1887
1867
|
},
|
|
1888
1868
|
"../src/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.ts": {
|
|
1889
|
-
"version": "
|
|
1869
|
+
"version": "28cd78ffae68014aaed03d454930d522ba9ace33484d89ecd5aea150ea829aad",
|
|
1890
1870
|
"signature": "49bea981b6b7669c6b67d10d1e452d5d27f4e73e4684891be292218c1903fae9"
|
|
1891
1871
|
},
|
|
1892
1872
|
"../src/inAppMessaging/providers/pinpoint/apis/onMessageReceived.ts": {
|
|
@@ -1925,10 +1905,6 @@
|
|
|
1925
1905
|
"version": "9f6be572065de2b6d3346ca0c9af57757990f50a14ce8cd2762025ab7e88db1e",
|
|
1926
1906
|
"signature": "7ecf008d0a15998131a6f9ec89d0793b39ad2dfe8f5b75384578711aaa962778"
|
|
1927
1907
|
},
|
|
1928
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts": {
|
|
1929
|
-
"version": "64b1827dac271767b4e7811d136a68d2d74c61968322f50c0a23f79fa9ae94b9",
|
|
1930
|
-
"signature": "135317c6d0f528d59df2ebc2cdcd73a3f7820582dc8bb19c5a13de5d8f2d1982"
|
|
1931
|
-
},
|
|
1932
1908
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts": {
|
|
1933
1909
|
"version": "b2e464b70adeb2fc15bd2e9747f78cf0bb673f0866d92f6eff1fa1b1d6bce148",
|
|
1934
1910
|
"signature": "97a8233b509454a27c5dc553a44331c0ca8173bdd731d900537dfd10cec9a4df"
|
|
@@ -1973,9 +1949,29 @@
|
|
|
1973
1949
|
"version": "03e74eccd61f5d2bb3c619428fbbbe7742614adff778a714f33121e78b1972bb",
|
|
1974
1950
|
"signature": "bb096f7158dda6ac8616e588c0d5b6f50ecde6f25506979f2fccb1215e1cbd29"
|
|
1975
1951
|
},
|
|
1952
|
+
"../src/pushNotifications/utils/initializationManager.ts": {
|
|
1953
|
+
"version": "158641e71c481ec9638a247a6d1bd256d085847b542b0f0720ce08f34c9d3217",
|
|
1954
|
+
"signature": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534"
|
|
1955
|
+
},
|
|
1956
|
+
"../src/pushNotifications/utils/resolveConfig.ts": {
|
|
1957
|
+
"version": "81e727a2e1dbc5824d59af1a6933da9f140e85ce834f0ffb59b9da86854c1af9",
|
|
1958
|
+
"signature": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"
|
|
1959
|
+
},
|
|
1960
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": {
|
|
1961
|
+
"version": "f11ab317e661a063481806bcd35b61d255ddd3aa546b0d6ce77d512d5104ee22",
|
|
1962
|
+
"signature": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af"
|
|
1963
|
+
},
|
|
1964
|
+
"../src/pushNotifications/utils/tokenManager.ts": {
|
|
1965
|
+
"version": "3c0712e42a63c9dd13ab4d8410117db059265b64fa7a39447334d36b20870281",
|
|
1966
|
+
"signature": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130"
|
|
1967
|
+
},
|
|
1968
|
+
"../src/pushNotifications/utils/index.ts": {
|
|
1969
|
+
"version": "d235a0d98e66f68f27ead5b18ec23eb03c276f8f1ee1fc5db25ebc621ce5d76e",
|
|
1970
|
+
"signature": "e5264a003f274eab7072d4bd547733eaf907653a8cff54fd643f336ee916b88c"
|
|
1971
|
+
},
|
|
1976
1972
|
"../src/pushNotifications/errors/errorHelpers.ts": {
|
|
1977
|
-
"version": "
|
|
1978
|
-
"signature": "
|
|
1973
|
+
"version": "8c6b78608419e06734b656bc3ff7d62fa2ffa1f2981ba97b972f403fcfb5ed1e",
|
|
1974
|
+
"signature": "b8a0a22ef0e04d92b238196292a89fbeecef3a0e957638b5e7d7904265221bc8"
|
|
1979
1975
|
},
|
|
1980
1976
|
"../src/pushNotifications/errors/index.ts": {
|
|
1981
1977
|
"version": "b5e2fff6a8c2764d2dc89f34e32c8f92c10c53cd10bb0dd21bda1eb340823e9f",
|
|
@@ -2025,28 +2021,16 @@
|
|
|
2025
2021
|
"version": "797a551d09f52f1cd75aecc9a3025da87d0b10e42992c3b494f30ad444ab9f84",
|
|
2026
2022
|
"signature": "aaf703c869c71b98798dcb05a32e7b48f10cdd72a711c6897b4a14cd7044a77f"
|
|
2027
2023
|
},
|
|
2028
|
-
"../src/pushNotifications/Platform/types.ts": {
|
|
2029
|
-
"version": "5ff3cba4204b3aa2e3695be943fea7f16b71b0370326993f7305c8e0206c7ed0",
|
|
2030
|
-
"signature": "570fc9ab71a23bfa2aa0f383dfbd9a17f69ce79ab42515cd05f9165a0dec9e06"
|
|
2031
|
-
},
|
|
2032
|
-
"../src/pushNotifications/Platform/index.native.ts": {
|
|
2033
|
-
"version": "791abfb2895a98a169fbdab6daac458480f6dad48efd66942288cf996271beda",
|
|
2034
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
2035
|
-
},
|
|
2036
|
-
"../src/pushNotifications/Platform/index.ts": {
|
|
2037
|
-
"version": "696b8b917014f7fabab822d58da4bd6aa603a7f7c82378085efde389f0319d05",
|
|
2038
|
-
"signature": "f2b5bfae2d479822a4ee2af054ecaf806bcd21fd39156ab2dd7a511a7d2a1beb"
|
|
2039
|
-
},
|
|
2040
2024
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": {
|
|
2041
|
-
"version": "
|
|
2025
|
+
"version": "96ae679391bfe4c6ba25e390c9ec93bd49b0fe8fcad94b43aa9207a5a6692fc5",
|
|
2042
2026
|
"signature": "45e2b4d35310ddffc2a6f4b6d525bf91b9c8a322b3914c3a8e5930b32b5b5d3e"
|
|
2043
2027
|
},
|
|
2044
2028
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": {
|
|
2045
|
-
"version": "
|
|
2029
|
+
"version": "a6aaf5b228354591fb1bf1e2d19b60d7d39a35406082775b8223d0c09aa2055f",
|
|
2046
2030
|
"signature": "c1bd91ed2b3bb2dc0bde4a7a053d1604d03193d6fcefd49998914e863e388d69"
|
|
2047
2031
|
},
|
|
2048
2032
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": {
|
|
2049
|
-
"version": "
|
|
2033
|
+
"version": "93e5aaf1ff890efb862d11be1864748fb6620012b2ed4974469b3089f54c0a72",
|
|
2050
2034
|
"signature": "e4c4b6da0f811132e16d6cb2807454da77e7ad43f0551c8d4bccc905bdfa3edf"
|
|
2051
2035
|
},
|
|
2052
2036
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts": {
|
|
@@ -2057,64 +2041,48 @@
|
|
|
2057
2041
|
"version": "2bc354632f4cb54d62187847845d113df897e02fb2ad27d3f8ba42673a4cdeb6",
|
|
2058
2042
|
"signature": "6ff8a46c080a0ac56b3188c8ff030a028bcdceb26e289f282ae53b927ac0cace"
|
|
2059
2043
|
},
|
|
2060
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts": {
|
|
2061
|
-
"version": "956186911ce5540539553f81f917a73b95922a11a4c10429fe95074a82b57b2f",
|
|
2062
|
-
"signature": "1fe1288b9e015da068a4af1d898cc8a55e91f63d0ff362de1f43cdd04e8a80af"
|
|
2063
|
-
},
|
|
2064
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts": {
|
|
2065
|
-
"version": "1a0b4cdb91f6ca5fc148ac49dac5c8c677d34562d09bf8b10344a816189f44c4",
|
|
2066
|
-
"signature": "8d76f3727475c6c147dbaa7a952910a83de7e96c23021d7625cdef98c95c206c"
|
|
2067
|
-
},
|
|
2068
2044
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts": {
|
|
2069
|
-
"version": "
|
|
2045
|
+
"version": "cd677c927e03004bd796cf4df49aeee9cb54bd1f2e313e2d7e13c11b657c7f0e",
|
|
2070
2046
|
"signature": "4d60787aee62600d3dad04cfeda41e9c89041b9dc12b2505dca0e56f8edc75e9"
|
|
2071
2047
|
},
|
|
2072
2048
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts": {
|
|
2073
2049
|
"version": "9662f5df051391c3e365af5da22d251c032f2e13dcdcbe55a726490ccff8e3cf",
|
|
2074
2050
|
"signature": "2e7fc29fed48b8334fac2aaf4dd4b5f5c725a947aae6dfa1d3ad86cd5e8433fc"
|
|
2075
2051
|
},
|
|
2076
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts": {
|
|
2077
|
-
"version": "158641e71c481ec9638a247a6d1bd256d085847b542b0f0720ce08f34c9d3217",
|
|
2078
|
-
"signature": "168806bdd11d76f835c54f997085c185f10b92c9729a020bd0be4c604b21c534"
|
|
2079
|
-
},
|
|
2080
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts": {
|
|
2081
|
-
"version": "3c0712e42a63c9dd13ab4d8410117db059265b64fa7a39447334d36b20870281",
|
|
2082
|
-
"signature": "d0fa85cbdbabae972a6b29475470561197699593464ad8ea299ef4afe9c06130"
|
|
2083
|
-
},
|
|
2084
2052
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": {
|
|
2085
|
-
"version": "
|
|
2086
|
-
"signature": "
|
|
2053
|
+
"version": "d02911d46982d49604a49b4bbf2ad0010a9bb4368d6b4f6e8be7d1ffabd34c3b",
|
|
2054
|
+
"signature": "bab2902aeadb4f2aeb1e65e64429b054555977b0aac0a9243e19e578654cce43"
|
|
2087
2055
|
},
|
|
2088
2056
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": {
|
|
2089
|
-
"version": "
|
|
2057
|
+
"version": "b683e2cf5480756d1956d99775d04c20cb8cc85ef391a765f4d3fc37d3f4811b",
|
|
2090
2058
|
"signature": "c26b143eaa8907b35b081872c3e66658892ee4e3e1f28dbefa4553158d11d87a"
|
|
2091
2059
|
},
|
|
2092
2060
|
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.ts": {
|
|
2093
|
-
"version": "
|
|
2061
|
+
"version": "298a091a7f85c1b698fd1ec85d835958221d18983b21d8dc2891e7dd90aef4c4",
|
|
2094
2062
|
"signature": "f8fcb7c00fe11e64211391ed99510ad99ce841ce22a0e1ffd8aca692af1340ef"
|
|
2095
2063
|
},
|
|
2096
2064
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": {
|
|
2097
|
-
"version": "
|
|
2065
|
+
"version": "d9069ca94336e7e240106217ce922365b45cb7cfcade9b83a55444591fde7a54",
|
|
2098
2066
|
"signature": "1f7f0dcf189b9c61984841e573089a1d91020656f5c7e8df95d64b665a5dcfee"
|
|
2099
2067
|
},
|
|
2100
2068
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": {
|
|
2101
|
-
"version": "
|
|
2069
|
+
"version": "bc456be51fbe08827e5e494459a5f9593c406e94783e72e77451ff976259b2a0",
|
|
2102
2070
|
"signature": "77b55923bf9bc9d437a8cb002015c569d51b477f1aafcef9fc201d6e2a55e0ac"
|
|
2103
2071
|
},
|
|
2104
2072
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": {
|
|
2105
|
-
"version": "
|
|
2073
|
+
"version": "28d57a2c57488c11d7d9595d2d7e21795cc97e885b349157619d124d29752a92",
|
|
2106
2074
|
"signature": "9af8aed9f05986bc23163b97c45018063287b74ae2af7408988c1924e9fde603"
|
|
2107
2075
|
},
|
|
2108
2076
|
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": {
|
|
2109
|
-
"version": "
|
|
2077
|
+
"version": "9cd7361f86ef35c23dc33b88f6bea8ca2b465851a0f63cb1a0975efc86f20602",
|
|
2110
2078
|
"signature": "d533e44ea5994815ff85942f5b4ed12938f18b620ea5ef90d3fb8138b48ecf33"
|
|
2111
2079
|
},
|
|
2112
2080
|
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": {
|
|
2113
|
-
"version": "
|
|
2081
|
+
"version": "3fad56a3691c246d769db39af48413cd06e37f7ad5631d98ce9d047702192cba",
|
|
2114
2082
|
"signature": "2effa6ef6f64c562518bf3a722bf9de4fe6758d43c4070001f6121cc7b9ed8e2"
|
|
2115
2083
|
},
|
|
2116
2084
|
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": {
|
|
2117
|
-
"version": "
|
|
2085
|
+
"version": "cb222e30495e15d4dd9be349ddf99ed5b69b80af7ba36b29f8db84ea8d3dd05f",
|
|
2118
2086
|
"signature": "e7872636b25aa97b54b21950c24b9366917098fd9a9d39cdb37f4a1c30ee9be2"
|
|
2119
2087
|
}
|
|
2120
2088
|
},
|
|
@@ -3125,10 +3093,6 @@
|
|
|
3125
3093
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3126
3094
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3127
3095
|
],
|
|
3128
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
3129
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3130
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3131
|
-
],
|
|
3132
3096
|
"../../core/lib-esm/singleton/Geo/types.d.ts": [
|
|
3133
3097
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3134
3098
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -3137,10 +3101,6 @@
|
|
|
3137
3101
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3138
3102
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3139
3103
|
],
|
|
3140
|
-
"../../core/lib-esm/I18n/types.d.ts": [
|
|
3141
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
3142
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3143
|
-
],
|
|
3144
3104
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts": [
|
|
3145
3105
|
"../../core/lib-esm/providers/pinpoint/types/index.d.ts",
|
|
3146
3106
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -3157,15 +3117,18 @@
|
|
|
3157
3117
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3158
3118
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3159
3119
|
],
|
|
3120
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": [
|
|
3121
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3122
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3123
|
+
],
|
|
3160
3124
|
"../../core/lib-esm/singleton/types.d.ts": [
|
|
3161
3125
|
"../../core/lib-esm/singleton/API/types.d.ts",
|
|
3162
3126
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
3163
3127
|
"../../core/lib-esm/singleton/Auth/types.d.ts",
|
|
3164
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
3165
3128
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
3166
3129
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
3167
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
3168
3130
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
3131
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
3169
3132
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3170
3133
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3171
3134
|
],
|
|
@@ -3247,6 +3210,10 @@
|
|
|
3247
3210
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3248
3211
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3249
3212
|
],
|
|
3213
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
3214
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3215
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3216
|
+
],
|
|
3250
3217
|
"../../core/lib-esm/Cache/types/cache.d.ts": [
|
|
3251
3218
|
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
3252
3219
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -3274,6 +3241,10 @@
|
|
|
3274
3241
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3275
3242
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3276
3243
|
],
|
|
3244
|
+
"../../core/lib-esm/I18n/types.d.ts": [
|
|
3245
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3246
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3247
|
+
],
|
|
3277
3248
|
"../../core/lib-esm/I18n/index.d.ts": [
|
|
3278
3249
|
"../../core/lib-esm/I18n/types.d.ts",
|
|
3279
3250
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -3314,6 +3285,7 @@
|
|
|
3314
3285
|
"../../core/lib-esm/types/index.d.ts",
|
|
3315
3286
|
"../../core/lib-esm/storage/index.d.ts",
|
|
3316
3287
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
3288
|
+
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
3317
3289
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
3318
3290
|
"../../core/lib-esm/Logger/index.d.ts",
|
|
3319
3291
|
"../../core/lib-esm/ServiceWorker/index.d.ts",
|
|
@@ -3542,6 +3514,11 @@
|
|
|
3542
3514
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3543
3515
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3544
3516
|
],
|
|
3517
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": [
|
|
3518
|
+
"../../rtn-push-notification/node_modules/@types/react-native/index.d.ts",
|
|
3519
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3520
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3521
|
+
],
|
|
3545
3522
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts": [
|
|
3546
3523
|
"../../react-native/lib-esm/moduleLoaders/loadAmplifyPushNotification.d.ts",
|
|
3547
3524
|
"../../react-native/lib-esm/moduleLoaders/loadAsyncStorage.d.ts",
|
|
@@ -3550,6 +3527,7 @@
|
|
|
3550
3527
|
"../../react-native/lib-esm/moduleLoaders/loadUrlPolyfill.d.ts",
|
|
3551
3528
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
3552
3529
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
3530
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
3553
3531
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3554
3532
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3555
3533
|
],
|
|
@@ -3851,6 +3829,20 @@
|
|
|
3851
3829
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3852
3830
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3853
3831
|
],
|
|
3832
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": [
|
|
3833
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3834
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3835
|
+
],
|
|
3836
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": [
|
|
3837
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
3838
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3839
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3840
|
+
],
|
|
3841
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": [
|
|
3842
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
3843
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
3844
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
3845
|
+
],
|
|
3854
3846
|
"../../core/lib-esm/libraryUtils.d.ts": [
|
|
3855
3847
|
"../../core/lib-esm/utils/index.d.ts",
|
|
3856
3848
|
"../../core/lib-esm/parseAWSExports.d.ts",
|
|
@@ -3875,6 +3867,8 @@
|
|
|
3875
3867
|
"../../core/lib-esm/Hub/index.d.ts",
|
|
3876
3868
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
3877
3869
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
3870
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
3871
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
3878
3872
|
"../../../node_modules/@types/node/base.d.ts",
|
|
3879
3873
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3880
3874
|
],
|
|
@@ -4127,25 +4121,10 @@
|
|
|
4127
4121
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4128
4122
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4129
4123
|
],
|
|
4130
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts": [
|
|
4131
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4132
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4133
|
-
],
|
|
4134
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts": [
|
|
4135
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
4136
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4137
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4138
|
-
],
|
|
4139
|
-
"../lib-esm/inAppMessaging/sessionTracker/index.d.ts": [
|
|
4140
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts",
|
|
4141
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
4142
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4143
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4144
|
-
],
|
|
4145
4124
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts": [
|
|
4146
4125
|
"../lib-esm/inAppMessaging/types/index.d.ts",
|
|
4147
4126
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
4148
|
-
"
|
|
4127
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4149
4128
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4150
4129
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4151
4130
|
],
|
|
@@ -4158,11 +4137,6 @@
|
|
|
4158
4137
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4159
4138
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4160
4139
|
],
|
|
4161
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.native.d.ts": [
|
|
4162
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
4163
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4164
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4165
|
-
],
|
|
4166
4140
|
"../lib-esm/inAppMessaging/utils/statusHelpers.d.ts": [
|
|
4167
4141
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4168
4142
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -4313,20 +4287,6 @@
|
|
|
4313
4287
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4314
4288
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4315
4289
|
],
|
|
4316
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts": [
|
|
4317
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4318
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4319
|
-
],
|
|
4320
|
-
"../lib-esm/pushNotifications/Platform/index.d.ts": [
|
|
4321
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts",
|
|
4322
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4323
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4324
|
-
],
|
|
4325
|
-
"../lib-esm/pushNotifications/Platform/index.native.d.ts": [
|
|
4326
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts",
|
|
4327
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4328
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4329
|
-
],
|
|
4330
4290
|
"../lib-esm/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.d.ts": [
|
|
4331
4291
|
"../lib-esm/pushNotifications/providers/pinpoint/types/index.d.ts",
|
|
4332
4292
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -4401,31 +4361,35 @@
|
|
|
4401
4361
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4402
4362
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4403
4363
|
],
|
|
4404
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/
|
|
4364
|
+
"../lib-esm/pushNotifications/providers/pinpoint/utils/index.d.ts": [
|
|
4365
|
+
"../lib-esm/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.d.ts",
|
|
4366
|
+
"../lib-esm/pushNotifications/providers/pinpoint/utils/getChannelType.d.ts",
|
|
4367
|
+
"../lib-esm/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.d.ts",
|
|
4368
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
4369
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4370
|
+
],
|
|
4371
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts": [
|
|
4405
4372
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4406
4373
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4407
4374
|
],
|
|
4408
|
-
"../lib-esm/pushNotifications/
|
|
4375
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts": [
|
|
4409
4376
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4410
4377
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4411
4378
|
],
|
|
4412
|
-
"../lib-esm/pushNotifications/
|
|
4379
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts": [
|
|
4413
4380
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4414
4381
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4415
4382
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4416
4383
|
],
|
|
4417
|
-
"../lib-esm/pushNotifications/
|
|
4384
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts": [
|
|
4418
4385
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4419
4386
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4420
4387
|
],
|
|
4421
|
-
"../lib-esm/pushNotifications/
|
|
4422
|
-
"../lib-esm/pushNotifications/
|
|
4423
|
-
"../lib-esm/pushNotifications/
|
|
4424
|
-
"../lib-esm/pushNotifications/
|
|
4425
|
-
"../lib-esm/pushNotifications/
|
|
4426
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveConfig.d.ts",
|
|
4427
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveCredentials.d.ts",
|
|
4428
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/tokenManager.d.ts",
|
|
4388
|
+
"../lib-esm/pushNotifications/utils/index.d.ts": [
|
|
4389
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts",
|
|
4390
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts",
|
|
4391
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts",
|
|
4392
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts",
|
|
4429
4393
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4430
4394
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4431
4395
|
],
|
|
@@ -4824,36 +4788,13 @@
|
|
|
4824
4788
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4825
4789
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4826
4790
|
],
|
|
4827
|
-
"../../../node_modules/@types/lodash/noop.d.ts": [
|
|
4828
|
-
"../../../node_modules/@types/lodash/index.d.ts",
|
|
4829
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4830
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4831
|
-
],
|
|
4832
|
-
"../src/inAppMessaging/sessionTracker/types.ts": [
|
|
4833
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4834
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4835
|
-
],
|
|
4836
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts": [
|
|
4837
|
-
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4838
|
-
"../../core/lib-esm/index.d.ts",
|
|
4839
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
4840
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
4841
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4842
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4843
|
-
],
|
|
4844
|
-
"../src/inAppMessaging/sessionTracker/index.ts": [
|
|
4845
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts",
|
|
4846
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
4847
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
4848
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4849
|
-
],
|
|
4850
4791
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": [
|
|
4851
4792
|
"../src/inAppMessaging/types/index.ts",
|
|
4852
4793
|
"../src/inAppMessaging/providers/pinpoint/types/index.ts",
|
|
4853
4794
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
4854
4795
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
4855
4796
|
"../../core/lib-esm/index.d.ts",
|
|
4856
|
-
"
|
|
4797
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4857
4798
|
"../../../node_modules/@types/node/base.d.ts",
|
|
4858
4799
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4859
4800
|
],
|
|
@@ -4924,7 +4865,7 @@
|
|
|
4924
4865
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4925
4866
|
],
|
|
4926
4867
|
"../src/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.ts": [
|
|
4927
|
-
"
|
|
4868
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
4928
4869
|
"../src/inAppMessaging/types/index.ts",
|
|
4929
4870
|
"../src/eventListeners/index.ts",
|
|
4930
4871
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
@@ -5006,13 +4947,6 @@
|
|
|
5006
4947
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5007
4948
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5008
4949
|
],
|
|
5009
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts": [
|
|
5010
|
-
"../../core/lib-esm/index.d.ts",
|
|
5011
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
5012
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
5013
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5014
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5015
|
-
],
|
|
5016
4950
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts": [
|
|
5017
4951
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5018
4952
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5078,8 +5012,37 @@
|
|
|
5078
5012
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5079
5013
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5080
5014
|
],
|
|
5015
|
+
"../src/pushNotifications/utils/initializationManager.ts": [
|
|
5016
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5017
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5018
|
+
],
|
|
5019
|
+
"../src/pushNotifications/utils/resolveConfig.ts": [
|
|
5020
|
+
"../../core/lib-esm/index.d.ts",
|
|
5021
|
+
"../src/pushNotifications/errors/index.ts",
|
|
5022
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5023
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5024
|
+
],
|
|
5025
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": [
|
|
5026
|
+
"../../core/lib-esm/index.d.ts",
|
|
5027
|
+
"../src/pushNotifications/errors/index.ts",
|
|
5028
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5029
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5030
|
+
],
|
|
5031
|
+
"../src/pushNotifications/utils/tokenManager.ts": [
|
|
5032
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5033
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5034
|
+
],
|
|
5035
|
+
"../src/pushNotifications/utils/index.ts": [
|
|
5036
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
5037
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
5038
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
5039
|
+
"../src/pushNotifications/utils/tokenManager.ts",
|
|
5040
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
5041
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
5042
|
+
],
|
|
5081
5043
|
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
5082
5044
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
5045
|
+
"../src/pushNotifications/utils/index.ts",
|
|
5083
5046
|
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
5084
5047
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5085
5048
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5172,34 +5135,23 @@
|
|
|
5172
5135
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5173
5136
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5174
5137
|
],
|
|
5175
|
-
"../src/pushNotifications/Platform/types.ts": [
|
|
5176
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5177
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5178
|
-
],
|
|
5179
|
-
"../src/pushNotifications/Platform/index.native.ts": [
|
|
5180
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
5181
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5182
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5183
|
-
],
|
|
5184
|
-
"../src/pushNotifications/Platform/index.ts": [
|
|
5185
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
5186
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5187
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5188
|
-
],
|
|
5189
5138
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": [
|
|
5190
5139
|
"../../react-native/lib-esm/index.d.ts",
|
|
5140
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5191
5141
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5192
5142
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5193
5143
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5194
5144
|
],
|
|
5195
5145
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": [
|
|
5196
5146
|
"../../react-native/lib-esm/index.d.ts",
|
|
5147
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5197
5148
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5198
5149
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5199
5150
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5200
5151
|
],
|
|
5201
5152
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": [
|
|
5202
5153
|
"../../react-native/lib-esm/index.d.ts",
|
|
5154
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5203
5155
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5204
5156
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5205
5157
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5218,18 +5170,6 @@
|
|
|
5218
5170
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5219
5171
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5220
5172
|
],
|
|
5221
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts": [
|
|
5222
|
-
"../../core/lib-esm/index.d.ts",
|
|
5223
|
-
"../src/pushNotifications/errors/index.ts",
|
|
5224
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5225
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5226
|
-
],
|
|
5227
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts": [
|
|
5228
|
-
"../../core/lib-esm/index.d.ts",
|
|
5229
|
-
"../src/pushNotifications/errors/index.ts",
|
|
5230
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5231
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5232
|
-
],
|
|
5233
5173
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts": [
|
|
5234
5174
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
5235
5175
|
"../../core/lib-esm/index.d.ts",
|
|
@@ -5237,8 +5177,7 @@
|
|
|
5237
5177
|
"../src/pushNotifications/types/index.ts",
|
|
5238
5178
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts",
|
|
5239
5179
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
5240
|
-
"../src/pushNotifications/
|
|
5241
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
5180
|
+
"../src/pushNotifications/utils/index.ts",
|
|
5242
5181
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5243
5182
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5244
5183
|
],
|
|
@@ -5247,28 +5186,18 @@
|
|
|
5247
5186
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5248
5187
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5249
5188
|
],
|
|
5250
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts": [
|
|
5251
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5252
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5253
|
-
],
|
|
5254
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts": [
|
|
5255
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
5256
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5257
|
-
],
|
|
5258
5189
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": [
|
|
5259
5190
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
5260
5191
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
5261
5192
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts",
|
|
5262
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
5263
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
5264
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
5265
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts",
|
|
5266
5193
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5267
5194
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5268
5195
|
],
|
|
5269
5196
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": [
|
|
5270
5197
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
5271
5198
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
5199
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5200
|
+
"../src/pushNotifications/utils/index.ts",
|
|
5272
5201
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
5273
5202
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5274
5203
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -5280,42 +5209,49 @@
|
|
|
5280
5209
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
5281
5210
|
"../../react-native/lib-esm/index.d.ts",
|
|
5282
5211
|
"../src/eventListeners/index.ts",
|
|
5212
|
+
"../src/pushNotifications/utils/index.ts",
|
|
5283
5213
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
5284
5214
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5285
5215
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5286
5216
|
],
|
|
5287
5217
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": [
|
|
5288
5218
|
"../src/eventListeners/index.ts",
|
|
5219
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5289
5220
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5290
5221
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5291
5222
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5292
5223
|
],
|
|
5293
5224
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": [
|
|
5294
5225
|
"../src/eventListeners/index.ts",
|
|
5226
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5295
5227
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5296
5228
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5297
5229
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5298
5230
|
],
|
|
5299
5231
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": [
|
|
5300
5232
|
"../src/eventListeners/index.ts",
|
|
5233
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5301
5234
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5302
5235
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5303
5236
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5304
5237
|
],
|
|
5305
5238
|
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": [
|
|
5306
5239
|
"../src/eventListeners/index.ts",
|
|
5240
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5307
5241
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5308
5242
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5309
5243
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5310
5244
|
],
|
|
5311
5245
|
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": [
|
|
5312
5246
|
"../../react-native/lib-esm/index.d.ts",
|
|
5247
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5313
5248
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5314
5249
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5315
5250
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5316
5251
|
],
|
|
5317
5252
|
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": [
|
|
5318
5253
|
"../../react-native/lib-esm/index.d.ts",
|
|
5254
|
+
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
5319
5255
|
"../src/pushNotifications/providers/pinpoint/types/index.ts",
|
|
5320
5256
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5321
5257
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5473,7 +5409,7 @@
|
|
|
5473
5409
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts": [
|
|
5474
5410
|
"../lib-esm/inAppMessaging/types/index.d.ts",
|
|
5475
5411
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
5476
|
-
"
|
|
5412
|
+
"../../core/lib-esm/libraryUtils.d.ts",
|
|
5477
5413
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5478
5414
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5479
5415
|
],
|
|
@@ -5641,10 +5577,6 @@
|
|
|
5641
5577
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.d.ts",
|
|
5642
5578
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getChannelType.d.ts",
|
|
5643
5579
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.d.ts",
|
|
5644
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/initializationManager.d.ts",
|
|
5645
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveConfig.d.ts",
|
|
5646
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveCredentials.d.ts",
|
|
5647
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/tokenManager.d.ts",
|
|
5648
5580
|
"../../../node_modules/@types/node/base.d.ts",
|
|
5649
5581
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5650
5582
|
],
|
|
@@ -5835,6 +5767,7 @@
|
|
|
5835
5767
|
"../../core/lib-esm/types/index.d.ts",
|
|
5836
5768
|
"../../core/lib-esm/storage/index.d.ts",
|
|
5837
5769
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
5770
|
+
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
5838
5771
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
5839
5772
|
"../../core/lib-esm/Logger/index.d.ts",
|
|
5840
5773
|
"../../core/lib-esm/ServiceWorker/index.d.ts",
|
|
@@ -5847,20 +5780,79 @@
|
|
|
5847
5780
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts": [
|
|
5848
5781
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
5849
5782
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
5850
|
-
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts"
|
|
5851
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
5852
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
5853
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
5854
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts"
|
|
5783
|
+
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts"
|
|
5855
5784
|
],
|
|
5856
5785
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts": [
|
|
5857
5786
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5858
5787
|
],
|
|
5859
|
-
"../src/pushNotifications/
|
|
5788
|
+
"../src/pushNotifications/utils/resolveCredentials.ts": [
|
|
5789
|
+
"../../core/lib-esm/libraryUtils.d.ts"
|
|
5790
|
+
],
|
|
5791
|
+
"../src/pushNotifications/utils/index.ts": [
|
|
5792
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
5793
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
5794
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
5795
|
+
"../src/pushNotifications/utils/tokenManager.ts"
|
|
5796
|
+
],
|
|
5797
|
+
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
5860
5798
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
5861
5799
|
],
|
|
5862
|
-
"../src/
|
|
5863
|
-
"../src/
|
|
5800
|
+
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": [
|
|
5801
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5802
|
+
],
|
|
5803
|
+
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": [
|
|
5804
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5805
|
+
],
|
|
5806
|
+
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": [
|
|
5807
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5808
|
+
],
|
|
5809
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": [
|
|
5810
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5811
|
+
],
|
|
5812
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": [
|
|
5813
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5814
|
+
],
|
|
5815
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": [
|
|
5816
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5817
|
+
],
|
|
5818
|
+
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": [
|
|
5819
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5820
|
+
],
|
|
5821
|
+
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": [
|
|
5822
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5823
|
+
],
|
|
5824
|
+
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": [
|
|
5825
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5826
|
+
],
|
|
5827
|
+
"../src/pushNotifications/errors/index.ts": [
|
|
5828
|
+
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
5829
|
+
"../src/pushNotifications/errors/errorHelpers.ts"
|
|
5830
|
+
],
|
|
5831
|
+
"../src/pushNotifications/index.ts": [
|
|
5832
|
+
"../src/pushNotifications/providers/pinpoint/index.ts",
|
|
5833
|
+
"../src/pushNotifications/types/index.ts",
|
|
5834
|
+
"../src/pushNotifications/errors/index.ts"
|
|
5835
|
+
],
|
|
5836
|
+
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts": [
|
|
5837
|
+
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5838
|
+
],
|
|
5839
|
+
"../src/pushNotifications/providers/pinpoint/apis/index.ts": [
|
|
5840
|
+
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.ts",
|
|
5841
|
+
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.ts",
|
|
5842
|
+
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.ts",
|
|
5843
|
+
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts",
|
|
5844
|
+
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.ts",
|
|
5845
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.ts",
|
|
5846
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.ts",
|
|
5847
|
+
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.ts",
|
|
5848
|
+
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.ts",
|
|
5849
|
+
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.ts",
|
|
5850
|
+
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.ts"
|
|
5851
|
+
],
|
|
5852
|
+
"../src/pushNotifications/providers/pinpoint/index.ts": [
|
|
5853
|
+
"../src/pushNotifications/providers/pinpoint/apis/index.ts",
|
|
5854
|
+
"../src/pushNotifications/providers/pinpoint/types/inputs.ts",
|
|
5855
|
+
"../src/pushNotifications/providers/pinpoint/types/outputs.ts"
|
|
5864
5856
|
],
|
|
5865
5857
|
"../src/inAppMessaging/providers/pinpoint/apis/index.ts": [
|
|
5866
5858
|
"../src/inAppMessaging/providers/pinpoint/apis/identifyUser.ts",
|
|
@@ -5891,7 +5883,7 @@
|
|
|
5891
5883
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts": [
|
|
5892
5884
|
"../../core/lib-esm/awsClients/pinpoint/index.d.ts",
|
|
5893
5885
|
"../src/inAppMessaging/types/index.ts",
|
|
5894
|
-
"
|
|
5886
|
+
"../../core/lib-esm/libraryUtils.d.ts"
|
|
5895
5887
|
],
|
|
5896
5888
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts": [
|
|
5897
5889
|
"../src/inAppMessaging/providers/pinpoint/utils/resolveConfig.ts",
|
|
@@ -5904,13 +5896,6 @@
|
|
|
5904
5896
|
"../../core/lib-esm/providers/pinpoint/index.d.ts",
|
|
5905
5897
|
"../src/inAppMessaging/types/index.ts"
|
|
5906
5898
|
],
|
|
5907
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts": [
|
|
5908
|
-
"../src/inAppMessaging/sessionTracker/types.ts"
|
|
5909
|
-
],
|
|
5910
|
-
"../src/inAppMessaging/sessionTracker/index.ts": [
|
|
5911
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts",
|
|
5912
|
-
"../src/inAppMessaging/sessionTracker/types.ts"
|
|
5913
|
-
],
|
|
5914
5899
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts": [
|
|
5915
5900
|
"../../core/lib-esm/index.d.ts",
|
|
5916
5901
|
"../src/inAppMessaging/providers/pinpoint/types/index.ts",
|
|
@@ -5936,32 +5921,9 @@
|
|
|
5936
5921
|
"../src/pushNotifications/types/index.ts",
|
|
5937
5922
|
"../../core/lib-esm/providers/pinpoint/index.d.ts"
|
|
5938
5923
|
],
|
|
5939
|
-
"../src/pushNotifications/index.ts": [
|
|
5940
|
-
"../src/pushNotifications/providers/pinpoint/index.ts",
|
|
5941
|
-
"../src/pushNotifications/types/index.ts",
|
|
5942
|
-
"../src/pushNotifications/errors/index.ts"
|
|
5943
|
-
],
|
|
5944
5924
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.ts": [
|
|
5945
5925
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5946
5926
|
],
|
|
5947
|
-
"../src/pushNotifications/providers/pinpoint/apis/index.ts": [
|
|
5948
|
-
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.ts",
|
|
5949
|
-
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.ts",
|
|
5950
|
-
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.ts",
|
|
5951
|
-
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts",
|
|
5952
|
-
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.ts",
|
|
5953
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.ts",
|
|
5954
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.ts",
|
|
5955
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.ts",
|
|
5956
|
-
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.ts",
|
|
5957
|
-
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.ts",
|
|
5958
|
-
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.ts"
|
|
5959
|
-
],
|
|
5960
|
-
"../src/pushNotifications/providers/pinpoint/index.ts": [
|
|
5961
|
-
"../src/pushNotifications/providers/pinpoint/apis/index.ts",
|
|
5962
|
-
"../src/pushNotifications/providers/pinpoint/types/inputs.ts",
|
|
5963
|
-
"../src/pushNotifications/providers/pinpoint/types/outputs.ts"
|
|
5964
|
-
],
|
|
5965
5927
|
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.ts": [
|
|
5966
5928
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5967
5929
|
],
|
|
@@ -5982,33 +5944,6 @@
|
|
|
5982
5944
|
"../src/pushNotifications/providers/pinpoint/types/options.ts",
|
|
5983
5945
|
"../src/pushNotifications/providers/pinpoint/types/pushNotifications.ts"
|
|
5984
5946
|
],
|
|
5985
|
-
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.native.ts": [
|
|
5986
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5987
|
-
],
|
|
5988
|
-
"../src/pushNotifications/providers/pinpoint/apis/requestPermissions.native.ts": [
|
|
5989
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5990
|
-
],
|
|
5991
|
-
"../src/pushNotifications/providers/pinpoint/apis/onTokenReceived.native.ts": [
|
|
5992
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5993
|
-
],
|
|
5994
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInForeground.native.ts": [
|
|
5995
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5996
|
-
],
|
|
5997
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationReceivedInBackground.native.ts": [
|
|
5998
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
5999
|
-
],
|
|
6000
|
-
"../src/pushNotifications/providers/pinpoint/apis/onNotificationOpened.native.ts": [
|
|
6001
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6002
|
-
],
|
|
6003
|
-
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts": [
|
|
6004
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6005
|
-
],
|
|
6006
|
-
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts": [
|
|
6007
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6008
|
-
],
|
|
6009
|
-
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts": [
|
|
6010
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6011
|
-
],
|
|
6012
5947
|
"../src/pushNotifications/providers/pinpoint/apis/setBadgeCount.ts": [
|
|
6013
5948
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6014
5949
|
],
|
|
@@ -6021,9 +5956,6 @@
|
|
|
6021
5956
|
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.ts": [
|
|
6022
5957
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6023
5958
|
],
|
|
6024
|
-
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts": [
|
|
6025
|
-
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6026
|
-
],
|
|
6027
5959
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.ts": [
|
|
6028
5960
|
"../src/pushNotifications/providers/pinpoint/types/index.ts"
|
|
6029
5961
|
],
|
|
@@ -6137,19 +6069,14 @@
|
|
|
6137
6069
|
"../../core/lib-esm/Hub/index.d.ts",
|
|
6138
6070
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
6139
6071
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
6072
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
6073
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
6140
6074
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6141
6075
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6142
6076
|
],
|
|
6143
6077
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts": [
|
|
6144
6078
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
6145
6079
|
],
|
|
6146
|
-
"../src/pushNotifications/errors/errorHelpers.ts": [
|
|
6147
|
-
"../../core/lib-esm/libraryUtils.d.ts"
|
|
6148
|
-
],
|
|
6149
|
-
"../src/pushNotifications/errors/index.ts": [
|
|
6150
|
-
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
6151
|
-
"../src/pushNotifications/errors/errorHelpers.ts"
|
|
6152
|
-
],
|
|
6153
6080
|
"../src/pushNotifications/errors/PushNotificationError.ts": [
|
|
6154
6081
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
6155
6082
|
],
|
|
@@ -6178,11 +6105,19 @@
|
|
|
6178
6105
|
"../src/inAppMessaging/errors/InAppMessagingError.ts": [
|
|
6179
6106
|
"../../core/lib-esm/libraryUtils.d.ts"
|
|
6180
6107
|
],
|
|
6181
|
-
"../lib-esm/pushNotifications/
|
|
6108
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts": [
|
|
6182
6109
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
6183
6110
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6184
6111
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6185
6112
|
],
|
|
6113
|
+
"../lib-esm/pushNotifications/utils/index.d.ts": [
|
|
6114
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts",
|
|
6115
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts",
|
|
6116
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts",
|
|
6117
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts",
|
|
6118
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
6119
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
6120
|
+
],
|
|
6186
6121
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.d.ts": [
|
|
6187
6122
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
6188
6123
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -6333,11 +6268,10 @@
|
|
|
6333
6268
|
"../../core/lib-esm/singleton/API/types.d.ts",
|
|
6334
6269
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
6335
6270
|
"../../core/lib-esm/singleton/Auth/types.d.ts",
|
|
6336
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
6337
6271
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
6338
6272
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
6339
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
6340
6273
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
6274
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
6341
6275
|
"../../../node_modules/@types/node/base.d.ts",
|
|
6342
6276
|
"../../../node_modules/@types/node/index.d.ts"
|
|
6343
6277
|
],
|
|
@@ -7085,22 +7019,11 @@
|
|
|
7085
7019
|
"../../../node_modules/@types/node/inspector.d.ts",
|
|
7086
7020
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7087
7021
|
],
|
|
7088
|
-
"../src/pushNotifications/Platform/index.ts": [
|
|
7089
|
-
"../src/pushNotifications/Platform/types.ts"
|
|
7090
|
-
],
|
|
7091
|
-
"../src/pushNotifications/Platform/index.native.ts": [
|
|
7092
|
-
"../src/pushNotifications/Platform/types.ts"
|
|
7093
|
-
],
|
|
7094
7022
|
"../../../node_modules/@types/lodash/flatten.d.ts": [
|
|
7095
7023
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
7096
7024
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7097
7025
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7098
7026
|
],
|
|
7099
|
-
"../../../node_modules/@types/lodash/noop.d.ts": [
|
|
7100
|
-
"../../../node_modules/@types/lodash/index.d.ts",
|
|
7101
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7102
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7103
|
-
],
|
|
7104
7027
|
"../../../node_modules/@types/lodash/isEmpty.d.ts": [
|
|
7105
7028
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
7106
7029
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -7321,15 +7244,15 @@
|
|
|
7321
7244
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7322
7245
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7323
7246
|
],
|
|
7324
|
-
"../lib-esm/pushNotifications/
|
|
7247
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts": [
|
|
7325
7248
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7326
7249
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7327
7250
|
],
|
|
7328
|
-
"../lib-esm/pushNotifications/
|
|
7251
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts": [
|
|
7329
7252
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7330
7253
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7331
7254
|
],
|
|
7332
|
-
"../lib-esm/pushNotifications/
|
|
7255
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts": [
|
|
7333
7256
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7334
7257
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7335
7258
|
],
|
|
@@ -7341,20 +7264,6 @@
|
|
|
7341
7264
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7342
7265
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7343
7266
|
],
|
|
7344
|
-
"../lib-esm/pushNotifications/Platform/index.native.d.ts": [
|
|
7345
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts",
|
|
7346
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7347
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7348
|
-
],
|
|
7349
|
-
"../lib-esm/pushNotifications/Platform/index.d.ts": [
|
|
7350
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts",
|
|
7351
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7352
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7353
|
-
],
|
|
7354
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts": [
|
|
7355
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7356
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7357
|
-
],
|
|
7358
7267
|
"../lib-esm/pushNotifications/providers/pinpoint/types/analytics.d.ts": [
|
|
7359
7268
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7360
7269
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -7368,39 +7277,33 @@
|
|
|
7368
7277
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7369
7278
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7370
7279
|
],
|
|
7371
|
-
"../lib-esm/inAppMessaging/
|
|
7372
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
7280
|
+
"../lib-esm/inAppMessaging/providers/pinpoint/utils/resolveConfig.d.ts": [
|
|
7373
7281
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7374
7282
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7375
7283
|
],
|
|
7376
|
-
"../lib-esm/inAppMessaging/
|
|
7377
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts",
|
|
7378
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
7284
|
+
"../lib-esm/inAppMessaging/providers/pinpoint/utils/constants.d.ts": [
|
|
7379
7285
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7380
7286
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7381
7287
|
],
|
|
7382
|
-
"../lib-esm/inAppMessaging/
|
|
7383
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
7288
|
+
"../lib-esm/inAppMessaging/providers/pinpoint/apis/initializeInAppMessaging.d.ts": [
|
|
7384
7289
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7385
7290
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7386
7291
|
],
|
|
7387
|
-
"../lib-esm/inAppMessaging/
|
|
7292
|
+
"../lib-esm/inAppMessaging/providers/pinpoint/apis/syncMessages.d.ts": [
|
|
7388
7293
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7389
7294
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7390
7295
|
],
|
|
7391
|
-
"
|
|
7296
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts": [
|
|
7297
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
7392
7298
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7393
7299
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7394
7300
|
],
|
|
7395
|
-
"
|
|
7301
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts": [
|
|
7302
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
7396
7303
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7397
7304
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7398
7305
|
],
|
|
7399
|
-
"
|
|
7400
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7401
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7402
|
-
],
|
|
7403
|
-
"../lib-esm/inAppMessaging/providers/pinpoint/apis/syncMessages.d.ts": [
|
|
7306
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts": [
|
|
7404
7307
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7405
7308
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7406
7309
|
],
|
|
@@ -7639,6 +7542,12 @@
|
|
|
7639
7542
|
"../../react-native/lib-esm/moduleLoaders/loadUrlPolyfill.d.ts",
|
|
7640
7543
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
7641
7544
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
7545
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
7546
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
7547
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
7548
|
+
],
|
|
7549
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts": [
|
|
7550
|
+
"../../rtn-push-notification/node_modules/@types/react-native/index.d.ts",
|
|
7642
7551
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7643
7552
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7644
7553
|
],
|
|
@@ -7880,6 +7789,10 @@
|
|
|
7880
7789
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7881
7790
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7882
7791
|
],
|
|
7792
|
+
"../../core/lib-esm/I18n/types.d.ts": [
|
|
7793
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
7794
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
7795
|
+
],
|
|
7883
7796
|
"../../core/lib-esm/Cache/index.d.ts": [
|
|
7884
7797
|
"../../core/lib-esm/Cache/StorageCache.d.ts",
|
|
7885
7798
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -7907,6 +7820,10 @@
|
|
|
7907
7820
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7908
7821
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7909
7822
|
],
|
|
7823
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
7824
|
+
"../../../node_modules/@types/node/base.d.ts",
|
|
7825
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
7826
|
+
],
|
|
7910
7827
|
"../../core/lib-esm/storage/index.d.ts": [
|
|
7911
7828
|
"../../core/lib-esm/storage/DefaultStorage.d.ts",
|
|
7912
7829
|
"../../core/lib-esm/storage/KeyValueStorage.d.ts",
|
|
@@ -7939,7 +7856,7 @@
|
|
|
7939
7856
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7940
7857
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7941
7858
|
],
|
|
7942
|
-
"../../core/lib-esm/
|
|
7859
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts": [
|
|
7943
7860
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7944
7861
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7945
7862
|
],
|
|
@@ -7951,10 +7868,6 @@
|
|
|
7951
7868
|
"../../../node_modules/@types/node/base.d.ts",
|
|
7952
7869
|
"../../../node_modules/@types/node/index.d.ts"
|
|
7953
7870
|
],
|
|
7954
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts": [
|
|
7955
|
-
"../../../node_modules/@types/node/base.d.ts",
|
|
7956
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
7957
|
-
],
|
|
7958
7871
|
"../../core/lib-esm/providers/personalize/types/index.d.ts": [
|
|
7959
7872
|
"../../core/lib-esm/providers/personalize/types/personalize.d.ts",
|
|
7960
7873
|
"../../../node_modules/@types/node/base.d.ts",
|
|
@@ -8295,13 +8208,12 @@
|
|
|
8295
8208
|
"../../core/lib-esm/providers/personalize/types/personalize.d.ts",
|
|
8296
8209
|
"../../core/lib-esm/providers/personalize/types/index.d.ts",
|
|
8297
8210
|
"../../core/lib-esm/singleton/Analytics/types.d.ts",
|
|
8298
|
-
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
8299
8211
|
"../../core/lib-esm/singleton/Geo/types.d.ts",
|
|
8300
8212
|
"../../core/lib-esm/singleton/Storage/types.d.ts",
|
|
8301
|
-
"../../core/lib-esm/I18n/types.d.ts",
|
|
8302
8213
|
"../../core/lib-esm/singleton/Notifications/InAppMessaging/types.d.ts",
|
|
8303
8214
|
"../../core/lib-esm/singleton/Notifications/PushNotification/types.d.ts",
|
|
8304
8215
|
"../../core/lib-esm/singleton/Notifications/types.d.ts",
|
|
8216
|
+
"../../core/lib-esm/singleton/Interactions/types.d.ts",
|
|
8305
8217
|
"../../core/lib-esm/singleton/types.d.ts",
|
|
8306
8218
|
"../../core/lib-esm/singleton/Auth/index.d.ts",
|
|
8307
8219
|
"../../core/lib-esm/singleton/Amplify.d.ts",
|
|
@@ -8317,11 +8229,13 @@
|
|
|
8317
8229
|
"../../core/lib-esm/storage/SessionStorage.d.ts",
|
|
8318
8230
|
"../../core/lib-esm/storage/CookieStorage.d.ts",
|
|
8319
8231
|
"../../core/lib-esm/storage/index.d.ts",
|
|
8232
|
+
"../../core/lib-esm/singleton/Cache/types.d.ts",
|
|
8320
8233
|
"../../core/lib-esm/Cache/types/cache.d.ts",
|
|
8321
8234
|
"../../core/lib-esm/Cache/types/index.d.ts",
|
|
8322
8235
|
"../../core/lib-esm/Cache/StorageCacheCommon.d.ts",
|
|
8323
8236
|
"../../core/lib-esm/Cache/StorageCache.d.ts",
|
|
8324
8237
|
"../../core/lib-esm/Cache/index.d.ts",
|
|
8238
|
+
"../../core/lib-esm/I18n/types.d.ts",
|
|
8325
8239
|
"../../core/lib-esm/I18n/index.d.ts",
|
|
8326
8240
|
"../../core/lib-esm/Logger/logger-interface.d.ts",
|
|
8327
8241
|
"../../core/lib-esm/Logger/ConsoleLogger.d.ts",
|
|
@@ -8372,6 +8286,7 @@
|
|
|
8372
8286
|
"../../react-native/lib-esm/moduleLoaders/loadGetRandomValues.d.ts",
|
|
8373
8287
|
"../../../node_modules/@types/base-64/index.d.ts",
|
|
8374
8288
|
"../../react-native/lib-esm/moduleLoaders/loadBase64.d.ts",
|
|
8289
|
+
"../../react-native/lib-esm/moduleLoaders/loadAppState.d.ts",
|
|
8375
8290
|
"../../react-native/lib-esm/moduleLoaders/index.d.ts",
|
|
8376
8291
|
"../../react-native/lib-esm/index.d.ts",
|
|
8377
8292
|
"../lib-esm/pushNotifications/types/pushNotifications.d.ts",
|
|
@@ -8431,6 +8346,9 @@
|
|
|
8431
8346
|
"../../core/lib-esm/utils/convert/base64/base64Encoder.d.ts",
|
|
8432
8347
|
"../../core/lib-esm/utils/convert/index.d.ts",
|
|
8433
8348
|
"../../core/lib-esm/utils/globalHelpers/index.d.ts",
|
|
8349
|
+
"../../core/lib-esm/utils/sessionListener/types.d.ts",
|
|
8350
|
+
"../../core/lib-esm/utils/sessionListener/SessionListener.d.ts",
|
|
8351
|
+
"../../core/lib-esm/utils/sessionListener/index.d.ts",
|
|
8434
8352
|
"../../core/lib-esm/libraryUtils.d.ts",
|
|
8435
8353
|
"../../core/lib-esm/providers/pinpoint/apis/flushEvents.d.ts",
|
|
8436
8354
|
"../../core/lib-esm/providers/pinpoint/apis/index.d.ts",
|
|
@@ -8474,12 +8392,8 @@
|
|
|
8474
8392
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/resolveConfig.d.ts",
|
|
8475
8393
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/resolveCredentials.d.ts",
|
|
8476
8394
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/userAgent.d.ts",
|
|
8477
|
-
"../lib-esm/inAppMessaging/sessionTracker/types.d.ts",
|
|
8478
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.d.ts",
|
|
8479
|
-
"../lib-esm/inAppMessaging/sessionTracker/index.d.ts",
|
|
8480
8395
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.d.ts",
|
|
8481
8396
|
"../lib-esm/inAppMessaging/providers/pinpoint/utils/index.d.ts",
|
|
8482
|
-
"../lib-esm/inAppMessaging/sessionTracker/SessionTracker.native.d.ts",
|
|
8483
8397
|
"../lib-esm/inAppMessaging/utils/statusHelpers.d.ts",
|
|
8484
8398
|
"../lib-esm/inAppMessaging/utils/index.d.ts",
|
|
8485
8399
|
"../lib-esm/pushNotifications/providers/pinpoint/types/analytics.d.ts",
|
|
@@ -8506,9 +8420,6 @@
|
|
|
8506
8420
|
"../lib-esm/pushNotifications/errors/errorHelpers.d.ts",
|
|
8507
8421
|
"../lib-esm/pushNotifications/errors/index.d.ts",
|
|
8508
8422
|
"../lib-esm/pushNotifications/index.d.ts",
|
|
8509
|
-
"../lib-esm/pushNotifications/Platform/types.d.ts",
|
|
8510
|
-
"../lib-esm/pushNotifications/Platform/index.d.ts",
|
|
8511
|
-
"../lib-esm/pushNotifications/Platform/index.native.d.ts",
|
|
8512
8423
|
"../lib-esm/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.d.ts",
|
|
8513
8424
|
"../lib-esm/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.d.ts",
|
|
8514
8425
|
"../lib-esm/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.d.ts",
|
|
@@ -8524,11 +8435,12 @@
|
|
|
8524
8435
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.d.ts",
|
|
8525
8436
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getChannelType.d.ts",
|
|
8526
8437
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.d.ts",
|
|
8527
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/initializationManager.d.ts",
|
|
8528
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveConfig.d.ts",
|
|
8529
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/resolveCredentials.d.ts",
|
|
8530
|
-
"../lib-esm/pushNotifications/providers/pinpoint/utils/tokenManager.d.ts",
|
|
8531
8438
|
"../lib-esm/pushNotifications/providers/pinpoint/utils/index.d.ts",
|
|
8439
|
+
"../lib-esm/pushNotifications/utils/initializationManager.d.ts",
|
|
8440
|
+
"../lib-esm/pushNotifications/utils/resolveConfig.d.ts",
|
|
8441
|
+
"../lib-esm/pushNotifications/utils/resolveCredentials.d.ts",
|
|
8442
|
+
"../lib-esm/pushNotifications/utils/tokenManager.d.ts",
|
|
8443
|
+
"../lib-esm/pushNotifications/utils/index.d.ts",
|
|
8532
8444
|
"../src/index.ts",
|
|
8533
8445
|
"../../../node_modules/tslib/tslib.d.ts",
|
|
8534
8446
|
"../src/inAppMessaging/types/options.ts",
|
|
@@ -8574,10 +8486,6 @@
|
|
|
8574
8486
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
8575
8487
|
"../../../node_modules/@types/lodash/isEmpty.d.ts",
|
|
8576
8488
|
"../src/inAppMessaging/providers/pinpoint/utils/helpers.ts",
|
|
8577
|
-
"../../../node_modules/@types/lodash/noop.d.ts",
|
|
8578
|
-
"../src/inAppMessaging/sessionTracker/types.ts",
|
|
8579
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.ts",
|
|
8580
|
-
"../src/inAppMessaging/sessionTracker/index.ts",
|
|
8581
8489
|
"../src/inAppMessaging/providers/pinpoint/utils/messageProcessingHelpers.ts",
|
|
8582
8490
|
"../src/inAppMessaging/providers/pinpoint/utils/index.ts",
|
|
8583
8491
|
"../src/inAppMessaging/utils/statusHelpers.ts",
|
|
@@ -8597,7 +8505,6 @@
|
|
|
8597
8505
|
"../src/inAppMessaging/providers/pinpoint/index.ts",
|
|
8598
8506
|
"../src/inAppMessaging/index.ts",
|
|
8599
8507
|
"../src/inAppMessaging/providers/index.ts",
|
|
8600
|
-
"../src/inAppMessaging/sessionTracker/SessionTracker.native.ts",
|
|
8601
8508
|
"../src/pushNotifications/providers/pinpoint/types/analytics.ts",
|
|
8602
8509
|
"../src/pushNotifications/providers/pinpoint/types/options.ts",
|
|
8603
8510
|
"../src/pushNotifications/providers/pinpoint/types/inputs.ts",
|
|
@@ -8609,6 +8516,11 @@
|
|
|
8609
8516
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.ts",
|
|
8610
8517
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.ts",
|
|
8611
8518
|
"../src/pushNotifications/errors/PushNotificationError.ts",
|
|
8519
|
+
"../src/pushNotifications/utils/initializationManager.ts",
|
|
8520
|
+
"../src/pushNotifications/utils/resolveConfig.ts",
|
|
8521
|
+
"../src/pushNotifications/utils/resolveCredentials.ts",
|
|
8522
|
+
"../src/pushNotifications/utils/tokenManager.ts",
|
|
8523
|
+
"../src/pushNotifications/utils/index.ts",
|
|
8612
8524
|
"../src/pushNotifications/errors/errorHelpers.ts",
|
|
8613
8525
|
"../src/pushNotifications/errors/index.ts",
|
|
8614
8526
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.ts",
|
|
@@ -8622,20 +8534,13 @@
|
|
|
8622
8534
|
"../src/pushNotifications/providers/pinpoint/apis/index.ts",
|
|
8623
8535
|
"../src/pushNotifications/providers/pinpoint/index.ts",
|
|
8624
8536
|
"../src/pushNotifications/index.ts",
|
|
8625
|
-
"../src/pushNotifications/Platform/types.ts",
|
|
8626
|
-
"../src/pushNotifications/Platform/index.native.ts",
|
|
8627
|
-
"../src/pushNotifications/Platform/index.ts",
|
|
8628
8537
|
"../src/pushNotifications/providers/pinpoint/apis/getBadgeCount.native.ts",
|
|
8629
8538
|
"../src/pushNotifications/providers/pinpoint/apis/getLaunchNotification.native.ts",
|
|
8630
8539
|
"../src/pushNotifications/providers/pinpoint/apis/getPermissionStatus.native.ts",
|
|
8631
8540
|
"../src/pushNotifications/providers/pinpoint/utils/getAnalyticsEvent.ts",
|
|
8632
8541
|
"../src/pushNotifications/providers/pinpoint/utils/getChannelType.ts",
|
|
8633
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveCredentials.ts",
|
|
8634
|
-
"../src/pushNotifications/providers/pinpoint/utils/resolveConfig.ts",
|
|
8635
8542
|
"../src/pushNotifications/providers/pinpoint/utils/createMessageEventRecorder.ts",
|
|
8636
8543
|
"../src/pushNotifications/providers/pinpoint/utils/getPushNotificationUserAgentString.ts",
|
|
8637
|
-
"../src/pushNotifications/providers/pinpoint/utils/initializationManager.ts",
|
|
8638
|
-
"../src/pushNotifications/providers/pinpoint/utils/tokenManager.ts",
|
|
8639
8544
|
"../src/pushNotifications/providers/pinpoint/utils/index.ts",
|
|
8640
8545
|
"../src/pushNotifications/providers/pinpoint/apis/identifyUser.native.ts",
|
|
8641
8546
|
"../src/pushNotifications/providers/pinpoint/apis/initializePushNotifications.native.ts",
|