Skip to content

Commit f994f1f

Browse files
Release 14.1.0
1 parent e93b746 commit f994f1f

File tree

110 files changed

+85
-16
lines changed

Some content is hidden

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

110 files changed

+85
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions

Intercom.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'Intercom'
3-
s.version = '14.0.7'
3+
s.version = '14.1.0'
44
s.summary = 'The Intercom iOS SDK, for integrating Intercom into your iOS application.'
55
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
66
s.authors = {"Brian Boyle"=>"[email protected]", "Mike McNamara"=>"[email protected]", "Katherine Brennan"=>"[email protected]", "Himanshi Goyal"=>"[email protected]", "Niamh Coleman"=>"[email protected]"}

Intercom.xcframework/Info.plist

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>ios-arm64_x86_64-simulator</string>
9+
<string>ios-arm64</string>
1010
<key>LibraryPath</key>
1111
<string>Intercom.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>simulator</string>
2118
</dict>
2219
<dict>
2320
<key>LibraryIdentifier</key>
24-
<string>ios-arm64</string>
21+
<string>ios-arm64_x86_64-simulator</string>
2522
<key>LibraryPath</key>
2623
<string>Intercom.framework</string>
2724
<key>SupportedArchitectures</key>
2825
<array>
2926
<string>arm64</string>
27+
<string>x86_64</string>
3028
</array>
3129
<key>SupportedPlatform</key>
3230
<string>ios</string>
31+
<key>SupportedPlatformVariant</key>
32+
<string>simulator</string>
3333
</dict>
3434
</array>
3535
<key>CFBundlePackageType</key>

Intercom.xcframework/ios-arm64/Intercom.framework/Headers/ICMHelpCenterCollection.h

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,21 @@ NS_SWIFT_NAME(HelpCenterCollection)
3737
*/
3838
@property (nonatomic, assign) NSInteger articleCount;
3939

40+
/**
41+
The number of collection inside this collection.
42+
*/
43+
@property (nonatomic, assign) NSInteger collectionCount;
44+
45+
- (instancetype)initWithCollectionId:(NSString *)collectionId
46+
title:(NSString *)title
47+
summary:(nullable NSString *)summary
48+
articleCount:(NSInteger)articleCount DEPRECATED_MSG_ATTRIBUTE("'-initWithCollectionId:title:summary:articleCount:' intializer is deprecated and will be removed in a future release. Use '-initWithCollectionId:title:summary:articleCount:collectionCount:' instead.");
49+
4050
- (instancetype)initWithCollectionId:(NSString *)collectionId
4151
title:(NSString *)title
4252
summary:(nullable NSString *)summary
43-
articleCount:(NSInteger)articleCount;
53+
articleCount:(NSInteger)articleCount
54+
collectionCount:(NSInteger)collectionCount;
4455

4556
@end
4657

Intercom.xcframework/ios-arm64/Intercom.framework/Headers/ICMHelpCenterCollectionContent.h

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
#import <Foundation/Foundation.h>
1010
@class ICMHelpCenterArticle;
1111
@class ICMHelpCenterSection;
12+
@class ICMHelpCenterCollection;
1213
@class ICMHelpCenterArticleAuthor;
1314

1415
NS_ASSUME_NONNULL_BEGIN
@@ -45,21 +46,38 @@ NS_SWIFT_NAME(HelpCenterCollectionContent)
4546
@property (nonatomic, assign) NSInteger articleCount;
4647

4748
/**
49+
@deprecated
4850
The sections contained in this collection.
4951
*/
50-
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections;
52+
@property (nonatomic, strong) NSArray<ICMHelpCenterSection *> *sections DEPRECATED_MSG_ATTRIBUTE("'sections' property is deprecated and will be removed in a future release. Use 'collections' instead.");
53+
54+
/**
55+
The collections contained inside this collection.
56+
*/
57+
@property (nonatomic, strong) NSArray<ICMHelpCenterCollection *> *collections;
5158

5259
/**
5360
The authors of articles in this collection.
5461
*/
5562
@property (nonatomic, copy) NSArray<ICMHelpCenterArticleAuthor *> *authors;
5663

64+
/**
65+
@deprecated
66+
*/
5767
- (instancetype)initWithCollectionId:(NSString *)collectionId
5868
title:(NSString *)title
5969
summary:(nullable NSString *)summary
6070
articles:(NSArray<ICMHelpCenterArticle *> *)articles
6171
articleCount:(NSInteger)articleCount
6272
sections:(NSArray<ICMHelpCenterSection *> *)sections
73+
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors DEPRECATED_MSG_ATTRIBUTE("'initWithCollectionId:title:summary:articles:articleCount:sections:authors:' is deprecated and will be removed in a future release. Use 'initWithCollectionId:title:summary:articles:articleCount:collections:authors:' instead.");
74+
75+
- (instancetype)initWithCollectionId:(NSString *)collectionId
76+
title:(NSString *)title
77+
summary:(nullable NSString *)summary
78+
articles:(NSArray<ICMHelpCenterArticle *> *)articles
79+
articleCount:(NSInteger)articleCount
80+
collections:(NSArray<ICMHelpCenterCollection *> *)collections
6381
authors:(NSArray<ICMHelpCenterArticleAuthor *> *)authors;
6482

6583

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
346 KB
Binary file not shown.
6.23 KB
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)