pushwoosh-cordova-plugin 8.3.6 → 8.3.8

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.
Files changed (33) hide show
  1. package/README.md +3 -3
  2. package/README_PGB.md +1 -1
  3. package/build-extras-pushwoosh.gradle +8 -0
  4. package/package.json +1 -1
  5. package/plugin.xml +20 -23
  6. package/src/android/src/com/pushwoosh/plugin/pushnotifications/PushNotifications.java +1 -1
  7. package/src/ios/Pushwoosh.framework/Modules/module.modulemap +0 -6
  8. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWAppDelegate.h +0 -20
  9. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWGDPRManager.h +0 -46
  10. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInAppManager.h +0 -174
  11. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInbox.h +0 -147
  12. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWInlineInAppView.h +0 -26
  13. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWLog.h +0 -23
  14. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWMessaging.h +0 -20
  15. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWNotificationExtensionManager.h +0 -46
  16. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaManager.h +0 -118
  17. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PWRichMediaStyle.h +0 -122
  18. package/src/ios/Pushwoosh.framework/Versions/A/Headers/PushNotificationManager.h +0 -574
  19. package/src/ios/Pushwoosh.framework/Versions/A/Headers/Pushwoosh.h +0 -530
  20. package/src/ios/Pushwoosh.framework/Versions/A/libPushwoosh.a +0 -0
  21. package/src/ios/PushwooshInboxBundle.bundle/Info.plist +0 -0
  22. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxAttachmentViewController.nib +0 -0
  23. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxMessageViewCell.nib +0 -0
  24. package/src/ios/PushwooshInboxBundle.bundle/PWIInboxViewController.nib +0 -0
  25. package/src/ios/PushwooshInboxBundle.bundle/errorMessage@2x.png +0 -0
  26. package/src/ios/PushwooshInboxBundle.bundle/inbox_icon.png +0 -0
  27. package/src/ios/PushwooshInboxBundle.bundle/noMessage@2x.png +0 -0
  28. package/src/ios/PushwooshInboxBundle.bundle/unread.png +0 -0
  29. package/src/ios/PushwooshInboxUI.framework/Modules/module.modulemap +0 -6
  30. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxStyle.h +0 -122
  31. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PWIInboxUI.h +0 -39
  32. package/src/ios/PushwooshInboxUI.framework/Versions/A/Headers/PushwooshInboxUI.h +0 -19
  33. package/src/ios/PushwooshInboxUI.framework/Versions/A/libPushwooshInboxUI.a +0 -0
@@ -1,39 +0,0 @@
1
- //
2
- // PWIInboxUI.h
3
- // PushwooshInboxUI
4
- //
5
- // Created by Pushwoosh on 01/11/2017.
6
- // Copyright © 2017 Pushwoosh. All rights reserved.
7
- //
8
-
9
- #import <Foundation/Foundation.h>
10
- #import <UIKit/UIKit.h>
11
-
12
- @protocol PWInboxMessageProtocol;
13
-
14
- @interface PWIInboxViewController : UIViewController
15
-
16
- @property (nonatomic) void (^onMessageClickBlock)(id<PWInboxMessageProtocol> message);
17
-
18
- /**
19
- Reloads everything from scratch.
20
- */
21
- - (void)reloadData;
22
- - (instancetype)init NS_UNAVAILABLE;
23
-
24
- @end
25
-
26
- @class PWIInboxStyle;
27
- @interface PWIInboxUI : NSObject
28
-
29
- /**
30
- @return PWIInboxViewController with a specified style
31
- */
32
- + (PWIInboxViewController *)createInboxControllerWithStyle:(PWIInboxStyle *)style;
33
-
34
- /**
35
- @return PWIInboxViewController with a specified style and height of table view
36
- */
37
- + (PWIInboxViewController *)createInboxControllerWithStyle:(PWIInboxStyle *)style andContentHeight:(CGFloat)contentHeight;
38
-
39
- @end
@@ -1,19 +0,0 @@
1
- //
2
- // PushwooshInboxUI.h
3
- // PushwooshInboxUI
4
- //
5
- // Created by Pushwoosh on 01/11/2017.
6
- // Copyright © 2017 Pushwoosh. All rights reserved.
7
- //
8
-
9
- #import <UIKit/UIKit.h>
10
-
11
- //! Project version number for PushwooshInboxUI.
12
- FOUNDATION_EXPORT double PushwooshInboxUIVersionNumber;
13
-
14
- //! Project version string for PushwooshInboxUI.
15
- FOUNDATION_EXPORT NSString * const PushwooshInboxUIVersion;
16
-
17
- #import "PWIInboxUI.h"
18
- #import "PWIInboxStyle.h"
19
-