Skip to content

Commit 16597f9

Browse files
committed
Binaries for 5.0.0-beta-05
1 parent debec30 commit 16597f9

File tree

178 files changed

+3076
-26429
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+3076
-26429
lines changed

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/Info.plist

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,19 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64_x86_64-maccatalyst</string>
9+
<string>ios-arm64</string>
1010
<key>LibraryPath</key>
1111
<string>OneSignalCore.framework</string>
1212
<key>SupportedArchitectures</key>
1313
<array>
1414
<string>arm64</string>
15-
<string>x86_64</string>
1615
</array>
1716
<key>SupportedPlatform</key>
1817
<string>ios</string>
19-
<key>SupportedPlatformVariant</key>
20-
<string>maccatalyst</string>
2118
</dict>
2219
<dict>
2320
<key>LibraryIdentifier</key>
24-
<string>ios-arm64_x86_64-simulator</string>
21+
<string>ios-arm64_x86_64-maccatalyst</string>
2522
<key>LibraryPath</key>
2623
<string>OneSignalCore.framework</string>
2724
<key>SupportedArchitectures</key>
@@ -32,19 +29,22 @@
3229
<key>SupportedPlatform</key>
3330
<string>ios</string>
3431
<key>SupportedPlatformVariant</key>
35-
<string>simulator</string>
32+
<string>maccatalyst</string>
3633
</dict>
3734
<dict>
3835
<key>LibraryIdentifier</key>
39-
<string>ios-arm64</string>
36+
<string>ios-arm64_x86_64-simulator</string>
4037
<key>LibraryPath</key>
4138
<string>OneSignalCore.framework</string>
4239
<key>SupportedArchitectures</key>
4340
<array>
4441
<string>arm64</string>
42+
<string>x86_64</string>
4543
</array>
4644
<key>SupportedPlatform</key>
4745
<string>ios</string>
46+
<key>SupportedPlatformVariant</key>
47+
<string>simulator</string>
4848
</dict>
4949
</array>
5050
<key>CFBundlePackageType</key>

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OSDialogInstanceManager.h

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
1-
//
2-
// OSDialogPresenter.h
3-
// OneSignal
4-
//
5-
// Created by Elliot Mawby on 11/2/22.
6-
// Copyright © 2022 Hiptic. All rights reserved.
7-
//
1+
/*
2+
Modified MIT License
3+
4+
Copyright 2022 OneSignal
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
1. The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
2. All copies of substantial portions of the Software may only be used in connection
17+
with services provided by OneSignal.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
THE SOFTWARE.
26+
*/
827

928
#import <Foundation/Foundation.h>
1029

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OSInAppMessages.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
@property (strong, nonatomic, nonnull) NSString *messageId;
3535

36-
// Convert the object into a NSDictionary
36+
// Dictionary of properties available on OSInAppMessage only
3737
- (NSDictionary *_Nonnull)jsonRepresentation;
3838

3939
@end
@@ -78,18 +78,22 @@ typedef NS_ENUM(NSUInteger, OSInAppMessageActionUrlType) {
7878

7979
@interface OSInAppMessageWillDisplayEvent : NSObject
8080
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
81+
- (NSDictionary *_Nonnull)jsonRepresentation;
8182
@end
8283

8384
@interface OSInAppMessageDidDisplayEvent : NSObject
8485
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
86+
- (NSDictionary *_Nonnull)jsonRepresentation;
8587
@end
8688

8789
@interface OSInAppMessageWillDismissEvent : NSObject
8890
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
91+
- (NSDictionary *_Nonnull)jsonRepresentation;
8992
@end
9093

9194
@interface OSInAppMessageDidDismissEvent : NSObject
9295
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
96+
- (NSDictionary *_Nonnull)jsonRepresentation;
9397
@end
9498

9599
@interface OSInAppMessageClickEvent : NSObject

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OSNetworkingUtils.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,18 @@
2929

3030
// NS_ASSUME_NONNULL_BEGIN
3131

32+
typedef NS_ENUM(NSInteger, OSResponseStatusType) {
33+
OSResponseStatusInvalid = 0,
34+
OSResponseStatusRetryable,
35+
OSResponseStatusUnauthorized,
36+
OSResponseStatusMissing,
37+
OSResponseStatusConflict
38+
};
39+
3240
@interface OSNetworkingUtils : NSObject
3341

3442
+ (NSNumber*)getNetType;
43+
+ (OSResponseStatusType)getResponseStatusType:(NSInteger)statusCode;
3544

3645
@end
3746

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/Headers/OneSignalCommonDefines.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
// "*" in comment line ending comment means the string value has not been changed
4747
// App
4848

49-
#define ONESIGNAL_VERSION @"050000-beta-04"
49+
#define ONESIGNAL_VERSION @"050000-beta-05"
5050

5151
#define OSUD_APP_ID @"GT_APP_ID" // * OSUD_APP_ID
5252
#define OSUD_REGISTERED_WITH_APPLE @"GT_REGISTERED_WITH_APPLE" // * OSUD_REGISTERED_WITH_APPLE
@@ -73,7 +73,6 @@
7373

7474
// Notification
7575
#define OSUD_LAST_MESSAGE_OPENED @"GT_LAST_MESSAGE_OPENED_" // * OSUD_MOST_RECENT_NOTIFICATION_OPENED
76-
#define OSUD_NOTIFICATION_OPEN_LAUNCH_URL @"ONESIGNAL_INAPP_LAUNCH_URL" // * OSUD_NOTIFICATION_OPEN_LAUNCH_URL
7776
#define OSUD_TEMP_CACHED_NOTIFICATION_MEDIA @"OSUD_TEMP_CACHED_NOTIFICATION_MEDIA" // OSUD_TEMP_CACHED_NOTIFICATION_MEDIA
7877
// Remote Params
7978
#define OSUD_LOCATION_ENABLED @"OSUD_LOCATION_ENABLED"

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64/OneSignalCore.framework/_CodeSignature/CodeResources

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
</data>
2323
<key>Headers/OSDialogInstanceManager.h</key>
2424
<data>
25-
PnoiGb2/H8T+q91po5vPVhJMXnA=
25+
e5mWq3a0PQfTjU5ei4329nYUfwc=
2626
</data>
2727
<key>Headers/OSInAppMessages.h</key>
2828
<data>
29-
kLOYPt+CCWi1xnLW2MlfLbW5zTs=
29+
IR0wqr+0bgd4ZnDqeU0WgCPaQTo=
3030
</data>
3131
<key>Headers/OSJSONHandling.h</key>
3232
<data>
@@ -42,7 +42,7 @@
4242
</data>
4343
<key>Headers/OSNetworkingUtils.h</key>
4444
<data>
45-
LwlsUTJlqWyOXjg5jrd2MiXaYUI=
45+
x0y2o36axCWvOHRlZxY5hsZ4jmw=
4646
</data>
4747
<key>Headers/OSNotification+Internal.h</key>
4848
<data>
@@ -78,7 +78,7 @@
7878
</data>
7979
<key>Headers/OneSignalCommonDefines.h</key>
8080
<data>
81-
+N7k2jIA3ZaBhEztcix73b02a20=
81+
uHYlD8bJiNKR8QzLmqwEWAI97aI=
8282
</data>
8383
<key>Headers/OneSignalConfigManager.h</key>
8484
<data>
@@ -126,7 +126,7 @@
126126
</data>
127127
<key>Info.plist</key>
128128
<data>
129-
L6p44oaeRTfpPlKUSAeu5FAg51s=
129+
Lyjp8I+wDo/kAOMMY6qAvVZwsYE=
130130
</data>
131131
<key>Modules/module.modulemap</key>
132132
<data>
@@ -167,14 +167,14 @@
167167
<dict>
168168
<key>hash2</key>
169169
<data>
170-
VHQRipAjzHtXPkUXXH4YvMFBZS9BgNyDe0llpuFstT8=
170+
TZyL4I0k2RDNt3IPxABcOPcjrjywMJ0x1SZXMXeiqxA=
171171
</data>
172172
</dict>
173173
<key>Headers/OSInAppMessages.h</key>
174174
<dict>
175175
<key>hash2</key>
176176
<data>
177-
VVEqvqs8Gzc3GkvFEX3QgAqaIgKK/CuLd3DzILUGY10=
177+
bqHvuK40s5I7ykwwB/ucIDu8LyZcKLMOGagHfuOpUKY=
178178
</data>
179179
</dict>
180180
<key>Headers/OSJSONHandling.h</key>
@@ -202,7 +202,7 @@
202202
<dict>
203203
<key>hash2</key>
204204
<data>
205-
ItFeaL2odYTkJOQJKL87zSdrc69fJx36bv6/fi0gBDQ=
205+
ZGA1WvJrfJUvBvSHYQC2gW9v2qpNNy33Dm9rbTNxWPM=
206206
</data>
207207
</dict>
208208
<key>Headers/OSNotification+Internal.h</key>
@@ -265,7 +265,7 @@
265265
<dict>
266266
<key>hash2</key>
267267
<data>
268-
ENsLsP7gO776lLDSfWvmQHzU0aItDxEwA1eqaGh2aXM=
268+
dmtJ19jPyMhNxQvmD+4cxNgXxOVOEX8vJm2u/G1oF30=
269269
</data>
270270
</dict>
271271
<key>Headers/OneSignalConfigManager.h</key>

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Headers/OSDialogInstanceManager.h

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,29 @@
1-
//
2-
// OSDialogPresenter.h
3-
// OneSignal
4-
//
5-
// Created by Elliot Mawby on 11/2/22.
6-
// Copyright © 2022 Hiptic. All rights reserved.
7-
//
1+
/*
2+
Modified MIT License
3+
4+
Copyright 2022 OneSignal
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
1. The above copyright notice and this permission notice shall be included in
14+
all copies or substantial portions of the Software.
15+
16+
2. All copies of substantial portions of the Software may only be used in connection
17+
with services provided by OneSignal.
18+
19+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25+
THE SOFTWARE.
26+
*/
827

928
#import <Foundation/Foundation.h>
1029

iOS_SDK/OneSignalSDK/OneSignal_Core/OneSignalCore.xcframework/ios-arm64_x86_64-maccatalyst/OneSignalCore.framework/Versions/A/Headers/OSInAppMessages.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
@property (strong, nonatomic, nonnull) NSString *messageId;
3535

36-
// Convert the object into a NSDictionary
36+
// Dictionary of properties available on OSInAppMessage only
3737
- (NSDictionary *_Nonnull)jsonRepresentation;
3838

3939
@end
@@ -78,18 +78,22 @@ typedef NS_ENUM(NSUInteger, OSInAppMessageActionUrlType) {
7878

7979
@interface OSInAppMessageWillDisplayEvent : NSObject
8080
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
81+
- (NSDictionary *_Nonnull)jsonRepresentation;
8182
@end
8283

8384
@interface OSInAppMessageDidDisplayEvent : NSObject
8485
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
86+
- (NSDictionary *_Nonnull)jsonRepresentation;
8587
@end
8688

8789
@interface OSInAppMessageWillDismissEvent : NSObject
8890
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
91+
- (NSDictionary *_Nonnull)jsonRepresentation;
8992
@end
9093

9194
@interface OSInAppMessageDidDismissEvent : NSObject
9295
@property (nonatomic, readonly, nonnull) OSInAppMessage *message;
96+
- (NSDictionary *_Nonnull)jsonRepresentation;
9397
@end
9498

9599
@interface OSInAppMessageClickEvent : NSObject

0 commit comments

Comments
 (0)