-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
120 additions
and
14 deletions.
There are no files selected for viewing
Binary file modified
BIN
-28.4 MB
(62%)
...tManagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/EstimoteFleetManagementSDK
Binary file not shown.
31 changes: 31 additions & 0 deletions
31
...SDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTBeaconBatteryLifetimesVO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
// | ||
// ESTBeaconBatteryLifetimesVO.h | ||
// EstimoteFleetManagementSDK | ||
// | ||
// Created by Łukasz Pikor on 25.06.2014. | ||
// Copyright (c) 2014 Estimote. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "ESTBeaconDefinitions.h" | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface ESTBeaconBatteryLifetimesVO : NSObject | ||
|
||
- (instancetype)initWithLifetimes:(NSDictionary *)lifetimes; | ||
|
||
- (NSString *)lifetimeForAdvertisingInterval:(int)interval; | ||
- (NSString *)lifetimeForBroadcastingPower:(int)power; | ||
- (NSString *)lifetimeForBasicPowerMode:(ESTBeaconPowerSavingMode)basic | ||
andSmart:(ESTBeaconPowerSavingMode)smart; | ||
- (NSString *)lifetimeForBroadcastingScheme:(ESTBroadcastingScheme)scheme; | ||
|
||
- (BOOL)shouldDisplayAlertForAdvertisingInterval:(int)interval; | ||
- (BOOL)shouldDisplayAlertForBroadcastingPower:(int)power; | ||
- (BOOL)shouldDisplayAlertForBasicPowerMode:(ESTBeaconPowerSavingMode)basic | ||
andSmart:(ESTBeaconPowerSavingMode)smart; | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...DK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTDeviceTypeUtilitySettings.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...SDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTEddystoneFilterURLDomain.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTFirmwareInfoV4VO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// | ||
// EstimoteSDK | ||
// EstimoteFleetManagementSDK | ||
// | ||
// Copyright (c) 2015 Estimote. All rights reserved. | ||
// | ||
|
24 changes: 24 additions & 0 deletions
24
...tSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTNearableCloudSettingsVO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Estimote Fleet Management SDK | ||
// Copyright © 2015 Estimote. All rights reserved. | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "ESTBaseVO.h" | ||
|
||
DEPRECATED_MSG_ATTRIBUTE("Deprecated since 4.31.0. Please refer to ESTDeviceDetails instead.") | ||
@interface ESTNearableCloudSettingsVO : ESTBaseVO | ||
|
||
@property (nonatomic, strong) NSString *applicationVersion; | ||
@property (nonatomic, strong) NSString *bootloaderVersion; | ||
@property (nonatomic, strong) NSString *hardwareVersion; | ||
|
||
@property (nonatomic, strong) NSNumber *power; | ||
@property (nonatomic, strong) NSNumber *advertisingInterval; | ||
|
||
@property (nonatomic, strong) NSNumber *motionOnlyEnabled; | ||
|
||
@property (nonatomic, strong) NSNumber *broadcastingScheme; | ||
@property (nonatomic, strong) NSString *eddystoneURL; | ||
|
||
- (instancetype)initWithCloudData:(NSDictionary *)data; | ||
|
||
@end |
19 changes: 19 additions & 0 deletions
19
...anagementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTNearableCloudVO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Estimote Fleet Management SDK | ||
// Copyright © 2015 Estimote. All rights reserved. | ||
|
||
#import <Foundation/Foundation.h> | ||
#import "ESTNearableCloudSettingsVO.h" | ||
#import "ESTBaseVO.h" | ||
|
||
DEPRECATED_MSG_ATTRIBUTE("Deprecated since 4.31.0. Please use ESTDeviceDetails instead.") | ||
@interface ESTNearableCloudVO : ESTBaseVO | ||
|
||
@property (nonatomic, strong) NSString *identifier; | ||
@property (nonatomic, strong) NSString *name; | ||
@property (nonatomic, strong) NSNumber *color; | ||
@property (nonatomic, strong) NSNumber *type; | ||
@property (nonatomic, strong) ESTNearableCloudSettingsVO *settings; | ||
|
||
- (instancetype)initWithCloudData:(NSDictionary *)data; | ||
|
||
@end |
2 changes: 1 addition & 1 deletion
2
...gementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTNearableFirmwareVO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...gementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTNearableHardwareVO.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// | ||
// ESTNearableHardwareVO.h | ||
// EstimoteFleetManagementSDK | ||
// | ||
// Copyright (c) 2015 Estimote. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface ESTNearableHardwareVO : NSObject | ||
|
||
@property (nonatomic, assign) NSNumber *hardwareId; | ||
@property (nonatomic, strong) NSString *hardwareName; | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...agementSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTRequestFirmwareV4.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// | ||
// EstimoteSDK | ||
// EstimoteFleetManagementSDK | ||
// | ||
// Copyright (c) 2015 Estimote. All rights reserved. | ||
// | ||
|
11 changes: 11 additions & 0 deletions
11
...DK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTRequestGetBeaconLifetimes.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// Estimote Fleet Management SDK | ||
// Copyright (c) 2015 Estimote. All rights reserved. | ||
|
||
#import "ESTRequestGetJSON.h" | ||
|
||
DEPRECATED_MSG_ATTRIBUTE("Deprecated since 4.31.0. Please use ESTRequestGetDeviceDetails instead.") | ||
@interface ESTRequestGetBeaconLifetimes : ESTRequestGetJSON | ||
|
||
@property (nonatomic) NSString *beaconUID; | ||
|
||
@end |
2 changes: 1 addition & 1 deletion
2
...ntSDK/EstimoteFleetManagementSDK.framework/Versions/A/Headers/ESTRequestNearableDetails.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters