Skip to content

Commit 523e2c7

Browse files
committed
1.8.4
1 parent c56e1f7 commit 523e2c7

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

dist/leanplum.d.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,11 @@ export interface OpenURLAction {
142142
parentCampaignId?: number;
143143
URL: string;
144144
}
145-
export type Action = ChainMessage | OpenURLAction;
145+
export interface RegisterForPushAction {
146+
__name__: 'Register For Push';
147+
parentCampaignId?: number;
148+
}
149+
export type Action = ChainMessage | OpenURLAction | RegisterForPushAction;
146150
export type SimpleHandler = () => void;
147151
export type StatusHandler = (success: boolean) => void;
148152
export type UserAttributes = any;

dist/leanplum.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/leanplum.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
},
4545
"name": "leanplum-sdk",
4646
"description": "This is the JavaScript SDK for Leanplum, allowing developers to access and integrate the functionality of Leanplum with applications and devices through JavaScript and HTML5. Leanplum is an application development platform that provides mobile A/B testing, messaging functionality, personalization, and more features for applications. ## Installation Add leanplum.js to your project: ```javascript <script type=\"text/javascript\" src=\"leanplum.js\"></script> ``` ## Usage Initialize Leanplum.",
47-
"version": "1.8.3",
47+
"version": "1.8.4",
4848
"main": "dist/leanplum.min.js",
4949
"types": "dist/leanplum.d.ts",
5050
"directories": {

src/Constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default {
3535
REGISTER_DEVICE: 'registerDevice',
3636
},
3737

38-
SDK_VERSION: '1.8.3',
38+
SDK_VERSION: '1.8.4',
3939

4040
CLIENT: 'js',
4141

0 commit comments

Comments
 (0)