Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.2 Release Commit #20

Merged
merged 1 commit into from
Jun 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bundles/onesignal-ngx.umd.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundles/onesignal-ngx.umd.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion esm2015/lib/onesignal-ngx.service.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion fesm2015/onesignal-ngx.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib/onesignal-ngx.service.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ export declare class OneSignal implements IOneSignal {
private processQueuedOneSignalFunctions;
private setupOneSignalIfMissing;
init(options: IInitObject): Promise<void>;
on(event: string, listener: () => void): void;
off(event: string, listener: () => void): void;
once(event: string, listener: () => void): void;
on(event: string, listener: (eventData?: any) => void): void;
off(event: string, listener: (eventData?: any) => void): void;
once(event: string, listener: (eventData?: any) => void): void;
isPushNotificationsEnabled(callback?: Action<boolean>): Promise<boolean>;
showHttpPrompt(options?: AutoPromptOptions): Promise<void>;
registerForPushNotifications(options?: RegisterOptions): Promise<void>;
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
{
"name": "onesignal-ngx",
"version": "1.0.1",
"version": "1.0.2",
"description": "This is a JavaScript module that can be used to easily include OneSignal code in a website or app that uses Angular for its front-end codebase.",
"author": "rgomezp",
"contributors": [{ "name": "Rodrigo Gomez-Palacio" }],
"contributors": [
{
"name": "Rodrigo Gomez-Palacio"
}
],
"homepage": "https://onesignal.com",
"repository": "https://github.com/OneSignal/onesignal-ngx.git",
"license": "MIT",
Expand Down