Skip to content
This repository was archived by the owner on Nov 23, 2024. It is now read-only.

Commit bba8024

Browse files
committed
Merge pull request #118 from zendesk/patching-1.5.0.1
Pushing up patch for 1.5.0.1
2 parents 83c83e4 + dc609f6 commit bba8024

File tree

41 files changed

+70
-68
lines changed

Some content is hidden

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

41 files changed

+70
-68
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
:warning: *Use of this software is subject to important terms and conditions as set forth in the License file* :warning:
22

3-
# Zendesk Mobile SDK for iOS 1.5.0.1
3+
# Zendesk Mobile SDK for iOS 1.5.1.1
44

55
Zendesk SDK for mobile is a quick, convenient way to get customer support into your mobile apps. With just a few lines of code, you can provide your end users with an easy way to get in touch from any mobile app.
66

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

SampleApp/SampleApp/Frameworks/ZendeskProviderSDK.framework/Headers/ZendeskProviderSDK.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* ZendeskProviderSDK.h
44
* ZendeskProviderSDK
55
*
6-
* Created by Zendesk on 11/19/2015
6+
* Created by Zendesk on 11/24/2015
77
*
88
* Copyright (c) 2015 Zendesk. All rights reserved.
99
*
Binary file not shown.
Binary file not shown.
Binary file not shown.

SampleApp/SampleApp/Frameworks/ZendeskProviderSDK.framework/_CodeSignature/CodeResources

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,15 +282,15 @@
282282
</data>
283283
<key>Headers/ZendeskProviderSDK.h</key>
284284
<data>
285-
G1fRpECgSPY9Gt4xrdtlpRZw7D0=
285+
NC83yS64/ak1nKot6GsBXeJ9Fvw=
286286
</data>
287287
<key>Headers/ZendeskSDKConstants.h</key>
288288
<data>
289289
Y05PNWdNp37xHdHI99XDxV9lUl4=
290290
</data>
291291
<key>Info.plist</key>
292292
<data>
293-
XPg+1nAYQget9Ed/LA9+eH6+tfY=
293+
HKVTzuwNXnqU0dQV08QeXoTwcO4=
294294
</data>
295295
<key>Modules/module.modulemap</key>
296296
<data>
@@ -577,7 +577,7 @@
577577
</data>
578578
<key>Headers/ZendeskProviderSDK.h</key>
579579
<data>
580-
G1fRpECgSPY9Gt4xrdtlpRZw7D0=
580+
NC83yS64/ak1nKot6GsBXeJ9Fvw=
581581
</data>
582582
<key>Headers/ZendeskSDKConstants.h</key>
583583
<data>
Binary file not shown.

SampleApp/SampleApp/Frameworks/ZendeskSDK.framework/Headers/ZDKCreateRequestViewController.h

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@
1717

1818
#import <UIKit/UIKit.h>
1919
#import <MobileCoreServices/MobileCoreServices.h>
20-
#import <ZendeskProviderSDK/ZendeskProviderSDK.h>
2120

2221
#import "ZDKUITextViewDelegate.h"
2322
#import "ZDKUIViewController.h"
2423
#import "ZDKUITextView.h"
2524

25+
26+
typedef void (^ZDKCreateRequestSuccess) (id result);
27+
typedef void (^ZDKCreateRequestError) (NSError *error);
28+
29+
2630
@class ZDKCreateRequestView;
2731

2832
/**
@@ -44,15 +48,15 @@
4448
*
4549
* @since 0.9.3.1
4650
*/
47-
@property (nonatomic, copy) ZDKAPISuccess onSuccess;
51+
@property (nonatomic, copy) ZDKCreateRequestSuccess onSuccess;
4852

4953

5054
/**
5155
* API error block, called after a request creation error.
5256
*
5357
* @since 0.9.3.1
5458
*/
55-
@property (nonatomic, copy) ZDKAPIError onError;
59+
@property (nonatomic, copy) ZDKCreateRequestError onError;
5660

5761

5862
/**
@@ -72,8 +76,8 @@
7276
* @param error the request object this comment is for
7377
* @return the instance
7478
*/
75-
- (instancetype) initWithSuccess:(ZDKAPISuccess)success
76-
andError:(ZDKAPIError)error;
79+
- (instancetype) initWithSuccess:(ZDKCreateRequestSuccess)success
80+
andError:(ZDKCreateRequestError)error;
7781

7882

7983
@end

0 commit comments

Comments
 (0)