Skip to content

Commit 784b8d8

Browse files
committed
SDK-479 match webSDK api naming
1 parent c832464 commit 784b8d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Branch-SDK/Branch-SDK/Branch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -951,9 +951,9 @@ typedef NS_ENUM(NSUInteger, BranchCreditHistoryOrder) {
951951

952952
#pragma mark - Query methods
953953

954-
- (void)requestCrossPlatformIdDataWithCompletion:(void(^) (BranchCrossPlatformID * _Nullable cpid))completion;
954+
- (void)crossPlatformIdDataWithCompletion:(void(^) (BranchCrossPlatformID * _Nullable cpid))completion;
955955

956-
- (void)requestLastTouchAttributedDataWithCompletion:(void(^) (BranchLastAttributedTouchData * _Nullable ltad))completion;
956+
- (void)lastTouchAttributedDataWithCompletion:(void(^) (BranchLastAttributedTouchData * _Nullable ltad))completion;
957957

958958
#pragma mark - Short Url Sync methods
959959

Branch-SDK/Branch-SDK/Branch.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1348,11 +1348,11 @@ - (BranchLinkProperties *)getLatestReferringBranchLinkProperties {
13481348

13491349
#pragma mark - Query methods
13501350

1351-
- (void)requestCrossPlatformIdDataWithCompletion:(void(^) (BranchCrossPlatformID * _Nullable cpid))completion {
1351+
- (void)crossPlatformIdDataWithCompletion:(void(^) (BranchCrossPlatformID * _Nullable cpid))completion {
13521352
[BranchCrossPlatformID requestCrossPlatformIdData:self.serverInterface key:self.class.branchKey completion:completion];
13531353
}
13541354

1355-
- (void)requestLastTouchAttributedDataWithCompletion:(void(^) (BranchLastAttributedTouchData * _Nullable ltad))completion {
1355+
- (void)lastTouchAttributedDataWithCompletion:(void(^) (BranchLastAttributedTouchData * _Nullable ltad))completion {
13561356
[BranchLastAttributedTouchData requestLastTouchAttributedData:self.serverInterface key:self.class.branchKey completion:completion];
13571357
}
13581358

0 commit comments

Comments
 (0)