@aws-amplify/notifications 2.0.1-console-preview.5a31ca1.0 → 2.0.1-console-preview.8f82e46.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/in-app-messaging/package.json +7 -0
- package/in-app-messaging/pinpoint/package.json +7 -0
- package/lib/inAppMessaging/index.d.ts +1 -1
- package/lib/inAppMessaging/index.js.map +1 -1
- package/lib/inAppMessaging/providers/index.d.ts +2 -1
- package/lib/inAppMessaging/providers/index.js +11 -11
- package/lib/inAppMessaging/providers/index.js.map +1 -1
- package/lib/inAppMessaging/providers/pinpoint/index.d.ts +1 -0
- package/lib/inAppMessaging/providers/pinpoint/types/index.d.ts +2 -1
- package/lib/inAppMessaging/providers/pinpoint/types/index.js.map +1 -1
- package/lib/inAppMessaging/types/index.d.ts +1 -1
- package/lib-esm/inAppMessaging/index.d.ts +1 -1
- package/lib-esm/inAppMessaging/index.js.map +1 -1
- package/lib-esm/inAppMessaging/providers/index.d.ts +2 -1
- package/lib-esm/inAppMessaging/providers/index.js +1 -1
- package/lib-esm/inAppMessaging/providers/index.js.map +1 -1
- package/lib-esm/inAppMessaging/providers/pinpoint/index.d.ts +1 -0
- package/lib-esm/inAppMessaging/providers/pinpoint/types/index.d.ts +2 -1
- package/lib-esm/inAppMessaging/providers/pinpoint/types/index.js.map +1 -1
- package/lib-esm/inAppMessaging/types/index.d.ts +1 -1
- package/package.json +7 -5
- package/push-notifications/package.json +7 -0
- package/push-notifications/pinpoint/package.json +7 -0
- package/src/inAppMessaging/index.ts +12 -0
- package/src/inAppMessaging/providers/index.ts +24 -1
- package/src/inAppMessaging/providers/pinpoint/index.ts +15 -0
- package/src/inAppMessaging/providers/pinpoint/types/index.ts +11 -0
- package/src/inAppMessaging/types/index.ts +3 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-amplify/notifications/in-app-messaging",
|
|
3
|
+
"main": "../lib/inAppMessaging/providers/index.js",
|
|
4
|
+
"browser": "../lib-esm/inAppMessaging/providers/index.js",
|
|
5
|
+
"module": "../lib-esm/inAppMessaging/providers/index.js",
|
|
6
|
+
"typings": "../lib-esm/inAppMessaging/providers/index.d.ts"
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-amplify/notifications/in-app-messaging/pinpoint",
|
|
3
|
+
"main": "../../lib/inAppMessaging/providers/pinpoint/index.js",
|
|
4
|
+
"browser": "../../lib-esm/inAppMessaging/providers/pinpoint/index.js",
|
|
5
|
+
"module": "../../lib-esm/inAppMessaging/providers/pinpoint/index.js",
|
|
6
|
+
"typings": "../../lib-esm/inAppMessaging/providers/pinpoint/index.d.ts"
|
|
7
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './providers/pinpoint';
|
|
1
|
+
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './providers/pinpoint';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inAppMessaging/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inAppMessaging/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,iDAuB8B;AAtB7B,kCAAA,YAAY,CAAA;AACZ,kCAAA,YAAY,CAAA;AACZ,mCAAA,aAAa,CAAA;AACb,wCAAA,kBAAkB,CAAA;AAClB,8CAAA,wBAAwB,CAAA;AACxB,uCAAA,iBAAiB,CAAA;AACjB,wCAAA,kBAAkB,CAAA;AAClB,wCAAA,kBAAkB,CAAA;AAClB,0CAAA,oBAAoB,CAAA;AACpB,8CAAA,wBAAwB,CAAA"}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './pinpoint
|
|
1
|
+
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './pinpoint';
|
|
2
|
+
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, InAppMessageButton, InAppMessageImage, InAppMessageStyle, } from '../types';
|
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
3
3
|
// SPDX-License-Identifier: Apache-2.0
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
var
|
|
6
|
-
exports.identifyUser =
|
|
7
|
-
exports.syncMessages =
|
|
8
|
-
exports.dispatchEvent =
|
|
9
|
-
exports.setConflictHandler =
|
|
10
|
-
exports.initializeInAppMessaging =
|
|
11
|
-
exports.onMessageReceived =
|
|
12
|
-
exports.onMessageDisplayed =
|
|
13
|
-
exports.onMessageDismissed =
|
|
14
|
-
exports.onMessageActionTaken =
|
|
15
|
-
exports.notifyMessageInteraction =
|
|
5
|
+
var pinpoint_1 = require("./pinpoint");
|
|
6
|
+
exports.identifyUser = pinpoint_1.identifyUser;
|
|
7
|
+
exports.syncMessages = pinpoint_1.syncMessages;
|
|
8
|
+
exports.dispatchEvent = pinpoint_1.dispatchEvent;
|
|
9
|
+
exports.setConflictHandler = pinpoint_1.setConflictHandler;
|
|
10
|
+
exports.initializeInAppMessaging = pinpoint_1.initializeInAppMessaging;
|
|
11
|
+
exports.onMessageReceived = pinpoint_1.onMessageReceived;
|
|
12
|
+
exports.onMessageDisplayed = pinpoint_1.onMessageDisplayed;
|
|
13
|
+
exports.onMessageDismissed = pinpoint_1.onMessageDismissed;
|
|
14
|
+
exports.onMessageActionTaken = pinpoint_1.onMessageActionTaken;
|
|
15
|
+
exports.notifyMessageInteraction = pinpoint_1.notifyMessageInteraction;
|
|
16
16
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/inAppMessaging/providers/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/inAppMessaging/providers/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,uCAuBoB;AAtBnB,kCAAA,YAAY,CAAA;AACZ,kCAAA,YAAY,CAAA;AACZ,mCAAA,aAAa,CAAA;AACb,wCAAA,kBAAkB,CAAA;AAClB,8CAAA,wBAAwB,CAAA;AACxB,uCAAA,iBAAiB,CAAA;AACjB,wCAAA,kBAAkB,CAAA;AAClB,wCAAA,kBAAkB,CAAA;AAClB,0CAAA,oBAAoB,CAAA;AACpB,8CAAA,wBAAwB,CAAA"}
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './apis';
|
|
2
|
+
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './types';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { UpdateEndpointException } from './errors';
|
|
2
|
-
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, } from './inputs';
|
|
2
|
+
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, } from './inputs';
|
|
3
|
+
export { OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './outputs';
|
|
3
4
|
export { IdentifyUserOptions } from './options';
|
|
4
5
|
export { PinpointMessageEvent, MetricsComparator, InAppMessageCounts, InAppMessageCountMap, DailyInAppMessageCounter, InAppMessageConflictHandler, OnMessageInteractionEventHandler, } from './types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/inAppMessaging/providers/pinpoint/types/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,mCAAmD;AAA1C,2CAAA,uBAAuB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/inAppMessaging/providers/pinpoint/types/index.ts"],"names":[],"mappings":";AAAA,qEAAqE;AACrE,sCAAsC;;AAEtC,mCAAmD;AAA1C,2CAAA,uBAAuB,CAAA;AAkBhC,iCAQiB;AAPhB,uCAAA,oBAAoB,CAAA"}
|
|
@@ -2,4 +2,4 @@ export { InAppMessagingServiceOptions } from './options';
|
|
|
2
2
|
export { InAppMessagingIdentifyUserInput } from './inputs';
|
|
3
3
|
export { InAppMessagingConfig } from './config';
|
|
4
4
|
export { InAppMessageInteractionEvent, InAppMessagingEvent } from './event';
|
|
5
|
-
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, } from './message';
|
|
5
|
+
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, InAppMessageButton, InAppMessageImage, InAppMessageStyle, } from './message';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './providers/pinpoint';
|
|
1
|
+
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './providers/pinpoint';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inAppMessaging/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EACN,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/inAppMessaging/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EACN,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,GAaxB,MAAM,sBAAsB,CAAC"}
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './pinpoint
|
|
1
|
+
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './pinpoint';
|
|
2
|
+
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, InAppMessageButton, InAppMessageImage, InAppMessageStyle, } from '../types';
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
2
2
|
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './pinpoint
|
|
3
|
+
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './pinpoint';
|
|
4
4
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/inAppMessaging/providers/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EACN,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/inAppMessaging/providers/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EACN,YAAY,EACZ,YAAY,EACZ,aAAa,EACb,kBAAkB,EAClB,wBAAwB,EACxB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACpB,wBAAwB,GAaxB,MAAM,YAAY,CAAC"}
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export { identifyUser, syncMessages, dispatchEvent, setConflictHandler, initializeInAppMessaging, onMessageReceived, onMessageDisplayed, onMessageDismissed, onMessageActionTaken, notifyMessageInteraction, } from './apis';
|
|
2
|
+
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './types';
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { UpdateEndpointException } from './errors';
|
|
2
|
-
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, } from './inputs';
|
|
2
|
+
export { IdentifyUserInput, DispatchEventInput, SetConflictHandlerInput, OnMessageActionTakenInput, OnMessageDismissedInput, OnMessageDisplayedInput, OnMessageReceivedInput, NotifyMessageInteractionInput, } from './inputs';
|
|
3
|
+
export { OnMessageReceivedOutput, OnMessageActionTakenOutput, OnMessageDismissedOutput, OnMessageDisplayedOutput, } from './outputs';
|
|
3
4
|
export { IdentifyUserOptions } from './options';
|
|
4
5
|
export { PinpointMessageEvent, MetricsComparator, InAppMessageCounts, InAppMessageCountMap, DailyInAppMessageCounter, InAppMessageConflictHandler, OnMessageInteractionEventHandler, } from './types';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/inAppMessaging/providers/pinpoint/types/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/inAppMessaging/providers/pinpoint/types/index.ts"],"names":[],"mappings":"AAAA,qEAAqE;AACrE,sCAAsC;AAEtC,OAAO,EAAE,uBAAuB,EAAE,MAAM,UAAU,CAAC;AAkBnD,OAAO,EACN,oBAAoB,GAOpB,MAAM,SAAS,CAAC"}
|
|
@@ -2,4 +2,4 @@ export { InAppMessagingServiceOptions } from './options';
|
|
|
2
2
|
export { InAppMessagingIdentifyUserInput } from './inputs';
|
|
3
3
|
export { InAppMessagingConfig } from './config';
|
|
4
4
|
export { InAppMessageInteractionEvent, InAppMessagingEvent } from './event';
|
|
5
|
-
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, } from './message';
|
|
5
|
+
export { InAppMessage, InAppMessageAction, InAppMessageContent, InAppMessageLayout, InAppMessageTextAlign, InAppMessageButton, InAppMessageImage, InAppMessageStyle, } from './message';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/notifications",
|
|
3
|
-
"version": "2.0.1-console-preview.
|
|
3
|
+
"version": "2.0.1-console-preview.8f82e46.0+8f82e46",
|
|
4
4
|
"description": "Notifications category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -89,21 +89,23 @@
|
|
|
89
89
|
"files": [
|
|
90
90
|
"lib",
|
|
91
91
|
"lib-esm",
|
|
92
|
-
"src"
|
|
92
|
+
"src",
|
|
93
|
+
"in-app-messaging",
|
|
94
|
+
"push-notifications"
|
|
93
95
|
],
|
|
94
96
|
"dependencies": {
|
|
95
97
|
"lodash": "^4.17.21"
|
|
96
98
|
},
|
|
97
99
|
"peerDependencies": {
|
|
98
|
-
"@aws-amplify/core": "6.0.1-console-preview.
|
|
100
|
+
"@aws-amplify/core": "6.0.1-console-preview.8f82e46.0+8f82e46"
|
|
99
101
|
},
|
|
100
102
|
"devDependencies": {
|
|
101
|
-
"@aws-amplify/core": "6.0.1-console-preview.
|
|
103
|
+
"@aws-amplify/core": "6.0.1-console-preview.8f82e46.0+8f82e46",
|
|
102
104
|
"@babel/core": "7.15.5",
|
|
103
105
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
|
104
106
|
"@babel/plugin-proposal-private-methods": "^7.0.0",
|
|
105
107
|
"@babel/plugin-proposal-private-property-in-object": "^7.0.0",
|
|
106
108
|
"metro-react-native-babel-preset": "^0.66.2"
|
|
107
109
|
},
|
|
108
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "8f82e460c4cdb9e52e0ba7ed8aea90f627a27693"
|
|
109
111
|
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-amplify/notifications/push-notifications",
|
|
3
|
+
"main": "../lib/pushNotifications/providers/index.js",
|
|
4
|
+
"browser": "../lib-esm/pushNotifications/providers/index.js",
|
|
5
|
+
"module": "../lib-esm/pushNotifications/providers/index.js",
|
|
6
|
+
"typings": "../lib-esm/pushNotifications/providers/index.d.ts"
|
|
7
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aws-amplify/notifications/push-notifications/pinpoint",
|
|
3
|
+
"main": "../../lib/pushNotifications/providers/pinpoint/index.js",
|
|
4
|
+
"browser": "../../lib-esm/pushNotifications/providers/pinpoint/index.js",
|
|
5
|
+
"module": "../../lib-esm/pushNotifications/providers/pinpoint/index.js",
|
|
6
|
+
"typings": "../../lib-esm/pushNotifications/providers/pinpoint/index.d.ts"
|
|
7
|
+
}
|
|
@@ -12,4 +12,16 @@ export {
|
|
|
12
12
|
onMessageDismissed,
|
|
13
13
|
onMessageActionTaken,
|
|
14
14
|
notifyMessageInteraction,
|
|
15
|
+
IdentifyUserInput,
|
|
16
|
+
DispatchEventInput,
|
|
17
|
+
SetConflictHandlerInput,
|
|
18
|
+
OnMessageActionTakenInput,
|
|
19
|
+
OnMessageDismissedInput,
|
|
20
|
+
OnMessageDisplayedInput,
|
|
21
|
+
OnMessageReceivedInput,
|
|
22
|
+
NotifyMessageInteractionInput,
|
|
23
|
+
OnMessageReceivedOutput,
|
|
24
|
+
OnMessageActionTakenOutput,
|
|
25
|
+
OnMessageDismissedOutput,
|
|
26
|
+
OnMessageDisplayedOutput,
|
|
15
27
|
} from './providers/pinpoint';
|
|
@@ -12,4 +12,27 @@ export {
|
|
|
12
12
|
onMessageDismissed,
|
|
13
13
|
onMessageActionTaken,
|
|
14
14
|
notifyMessageInteraction,
|
|
15
|
-
|
|
15
|
+
IdentifyUserInput,
|
|
16
|
+
DispatchEventInput,
|
|
17
|
+
SetConflictHandlerInput,
|
|
18
|
+
OnMessageActionTakenInput,
|
|
19
|
+
OnMessageDismissedInput,
|
|
20
|
+
OnMessageDisplayedInput,
|
|
21
|
+
OnMessageReceivedInput,
|
|
22
|
+
NotifyMessageInteractionInput,
|
|
23
|
+
OnMessageReceivedOutput,
|
|
24
|
+
OnMessageActionTakenOutput,
|
|
25
|
+
OnMessageDismissedOutput,
|
|
26
|
+
OnMessageDisplayedOutput,
|
|
27
|
+
} from './pinpoint';
|
|
28
|
+
|
|
29
|
+
export {
|
|
30
|
+
InAppMessage,
|
|
31
|
+
InAppMessageAction,
|
|
32
|
+
InAppMessageContent,
|
|
33
|
+
InAppMessageLayout,
|
|
34
|
+
InAppMessageTextAlign,
|
|
35
|
+
InAppMessageButton,
|
|
36
|
+
InAppMessageImage,
|
|
37
|
+
InAppMessageStyle,
|
|
38
|
+
} from '../types';
|
|
@@ -13,3 +13,18 @@ export {
|
|
|
13
13
|
onMessageActionTaken,
|
|
14
14
|
notifyMessageInteraction,
|
|
15
15
|
} from './apis';
|
|
16
|
+
|
|
17
|
+
export {
|
|
18
|
+
IdentifyUserInput,
|
|
19
|
+
DispatchEventInput,
|
|
20
|
+
SetConflictHandlerInput,
|
|
21
|
+
OnMessageActionTakenInput,
|
|
22
|
+
OnMessageDismissedInput,
|
|
23
|
+
OnMessageDisplayedInput,
|
|
24
|
+
OnMessageReceivedInput,
|
|
25
|
+
NotifyMessageInteractionInput,
|
|
26
|
+
OnMessageReceivedOutput,
|
|
27
|
+
OnMessageActionTakenOutput,
|
|
28
|
+
OnMessageDismissedOutput,
|
|
29
|
+
OnMessageDisplayedOutput,
|
|
30
|
+
} from './types';
|
|
@@ -6,7 +6,18 @@ export {
|
|
|
6
6
|
IdentifyUserInput,
|
|
7
7
|
DispatchEventInput,
|
|
8
8
|
SetConflictHandlerInput,
|
|
9
|
+
OnMessageActionTakenInput,
|
|
10
|
+
OnMessageDismissedInput,
|
|
11
|
+
OnMessageDisplayedInput,
|
|
12
|
+
OnMessageReceivedInput,
|
|
13
|
+
NotifyMessageInteractionInput,
|
|
9
14
|
} from './inputs';
|
|
15
|
+
export {
|
|
16
|
+
OnMessageReceivedOutput,
|
|
17
|
+
OnMessageActionTakenOutput,
|
|
18
|
+
OnMessageDismissedOutput,
|
|
19
|
+
OnMessageDisplayedOutput,
|
|
20
|
+
} from './outputs';
|
|
10
21
|
export { IdentifyUserOptions } from './options';
|
|
11
22
|
export {
|
|
12
23
|
PinpointMessageEvent,
|