Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
Framework commit, version 3.50.4-beta.4, see CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianWolf-mapspeople committed Mar 22, 2024
1 parent bed5d36 commit 5ed5a1a
Show file tree
Hide file tree
Showing 20 changed files with 100 additions and 100 deletions.
2 changes: 1 addition & 1 deletion MapsIndoors.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "MapsIndoors"
s.version = "3.50.4-beta.3"
s.version = "3.50.4-beta.4"
s.summary = "Library making the MapsIndoors experience available to your iOS users."
s.description = "The MapsIndoors SDK is the idea of integrating everything at your venue, like people, goods, offices, shops, rooms and buildings with the mapping, positioning and wayfinding technologies provided in the MapsIndoors platform. We make the MapsIndoors platform available to interested businesses and/or partners. So if you think you should be one of them, please call us or send us an email. Meanwhile, you are most welcome to check out the demo project using 'pod try MapsIndoors'."

Expand Down
Binary file modified MapsIndoors.xcframework.zip
Binary file not shown.
12 changes: 6 additions & 6 deletions MapsIndoors.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,31 +8,31 @@
<key>BinaryPath</key>
<string>MapsIndoors.framework/MapsIndoors</string>
<key>LibraryIdentifier</key>
<string>ios-x86_64-simulator</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>MapsIndoors.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>MapsIndoors.framework/MapsIndoors</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-x86_64-simulator</string>
<key>LibraryPath</key>
<string>MapsIndoors.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ typedef NSString *(^JSONModelKeyMapBlock)(NSString *keyName);
* }
* </pre>
*/
@interface JSONKeyMapper : NSObject
@interface MPJSONKeyMapper : NSObject

// deprecated
@property (readonly, nonatomic) JSONModelKeyMapBlock JSONToModelKeyBlock DEPRECATED_ATTRIBUTE;
- (NSString *)convertValue:(NSString *)value isImportingToModel:(BOOL)importing DEPRECATED_MSG_ATTRIBUTE("use convertValue:");
- (instancetype)initWithDictionary:(NSDictionary *)map DEPRECATED_MSG_ATTRIBUTE("use initWithModelToJSONDictionary:");
- (instancetype)initWithJSONToModelBlock:(JSONModelKeyMapBlock)toModel modelToJSONBlock:(JSONModelKeyMapBlock)toJSON DEPRECATED_MSG_ATTRIBUTE("use initWithModelToJSONBlock:");
+ (instancetype)mapper:(JSONKeyMapper *)baseKeyMapper withExceptions:(NSDictionary *)exceptions DEPRECATED_MSG_ATTRIBUTE("use baseMapper:withModelToJSONExceptions:");
+ (instancetype)mapper:(MPJSONKeyMapper *)baseKeyMapper withExceptions:(NSDictionary *)exceptions DEPRECATED_MSG_ATTRIBUTE("use baseMapper:withModelToJSONExceptions:");
+ (instancetype)mapperFromUnderscoreCaseToCamelCase DEPRECATED_MSG_ATTRIBUTE("use mapperForSnakeCase:");
+ (instancetype)mapperFromUpperCaseToLowerCase DEPRECATED_ATTRIBUTE;

Expand Down Expand Up @@ -91,6 +91,6 @@ typedef NSString *(^JSONModelKeyMapBlock)(NSString *keyName);
* Creates a JSONKeyMapper based on a built-in JSONKeyMapper, with specific exceptions.
* Use your JSONModel property names as keys, and the JSON key names as values.
*/
+ (instancetype)baseMapper:(JSONKeyMapper *)baseKeyMapper withModelToJSONExceptions:(NSDictionary *)toJSON;
+ (instancetype)baseMapper:(MPJSONKeyMapper *)baseKeyMapper withModelToJSONExceptions:(NSDictionary *)toJSON;

@end
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ DEPRECATED_ATTRIBUTE

// deprecated
+ (NSMutableArray *)arrayOfModelsFromDictionaries:(NSArray *)array DEPRECATED_MSG_ATTRIBUTE("use arrayOfModelsFromDictionaries:error:");
+ (void)setGlobalKeyMapper:(JSONKeyMapper *)globalKeyMapper DEPRECATED_MSG_ATTRIBUTE("override +keyMapper in a base model class instead");
+ (void)setGlobalKeyMapper:(MPJSONKeyMapper *)globalKeyMapper DEPRECATED_MSG_ATTRIBUTE("override +keyMapper in a base model class instead");
+ (NSString *)protocolForArrayProperty:(NSString *)propertyName DEPRECATED_MSG_ATTRIBUTE("use classForCollectionProperty:");
- (void)mergeFromDictionary:(NSDictionary *)dict useKeyMapping:(BOOL)useKeyMapping DEPRECATED_MSG_ATTRIBUTE("use mergeFromDictionary:useKeyMapping:error:");
- (NSString *)indexPropertyName DEPRECATED_ATTRIBUTE;
Expand All @@ -137,7 +137,7 @@ DEPRECATED_ATTRIBUTE
* or a property type in your model is not supported by JSONValueTransformer and its categories
* @see initWithString:usingEncoding:error: for use of custom text encodings
*/
- (instancetype)initWithString:(NSString *)string error:(JSONModelError **)err;
- (instancetype)initWithString:(NSString *)string error:(MPJSONModelError **)err;

/**
* Create a new model instance and initialize it with the JSON from a text parameter using the given encoding.
Expand All @@ -147,7 +147,7 @@ DEPRECATED_ATTRIBUTE
* @exception JSONModelTypeNotAllowedException thrown when unsupported type is found in the incoming JSON,
* or a property type in your model is not supported by JSONValueTransformer and its categories
*/
- (instancetype)initWithString:(NSString *)string usingEncoding:(NSStringEncoding)encoding error:(JSONModelError **)err;
- (instancetype)initWithString:(NSString *)string usingEncoding:(NSStringEncoding)encoding error:(MPJSONModelError **)err;

/** @name Exporting model contents */

Expand Down Expand Up @@ -231,7 +231,7 @@ DEPRECATED_ATTRIBUTE
* Overwrite in your models if your property names don't match your JSON key names.
* Lookup JSONKeyMapper docs for more details.
*/
+ (JSONKeyMapper *)keyMapper;
+ (MPJSONKeyMapper *)keyMapper;

/**
* Indicates whether the property with the given name is Optional.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#import <Foundation/Foundation.h>

/////////////////////////////////////////////////////////////////////////////////////////////
typedef NS_ENUM(int, kJSONModelErrorTypes)
typedef NS_ENUM(int, kMPJSONModelErrorTypes)
{
kJSONModelErrorInvalidData = 1,
kJSONModelErrorBadResponse = 2,
Expand All @@ -17,37 +17,37 @@ typedef NS_ENUM(int, kJSONModelErrorTypes)

/////////////////////////////////////////////////////////////////////////////////////////////
/** The domain name used for the JSONModelError instances */
extern NSString *const JSONModelErrorDomain;
extern NSString *const MPJSONModelErrorDomain;

/**
* If the model JSON input misses keys that are required, check the
* userInfo dictionary of the JSONModelError instance you get back -
* under the kJSONModelMissingKeys key you will find a list of the
* names of the missing keys.
*/
extern NSString *const kJSONModelMissingKeys;
extern NSString *const kMPJSONModelMissingKeys;

/**
* If JSON input has a different type than expected by the model, check the
* userInfo dictionary of the JSONModelError instance you get back -
* under the kJSONModelTypeMismatch key you will find a description
* of the mismatched types.
*/
extern NSString *const kJSONModelTypeMismatch;
extern NSString *const kMPJSONModelTypeMismatch;

/**
* If an error occurs in a nested model, check the userInfo dictionary of
* the JSONModelError instance you get back - under the kJSONModelKeyPath
* key you will find key-path at which the error occurred.
*/
extern NSString *const kJSONModelKeyPath;
extern NSString *const kMPJSONModelKeyPath;

/////////////////////////////////////////////////////////////////////////////////////////////
/**
* Custom NSError subclass with shortcut methods for creating
* the common JSONModel errors
*/
@interface JSONModelError : NSError
@interface MPJSONModelError : NSError

@property (strong, nonatomic) NSHTTPURLResponse *httpResponse;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ extern BOOL isNull(id value);
* JSON types into your target class property classes, and vice versa.
* One static copy is create and store in the JSONModel class scope.
*/
@interface JSONValueTransformer : NSObject
@interface MPJSONValueTransformer : NSObject

@property (strong, nonatomic, readonly) NSDictionary *primitivesNames;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@


// Auto-generated file - Do not modify
#define MI_SDK_VERSION @"3.50.4-beta.3"
#define MI_SDK_VERSION @"3.50.4-beta.4"
#define MI_SDK_VERSION_MAJOR 3
#define MI_SDK_VERSION_MINOR 50
#define MI_SDK_VERSION_PATCH 4
#define MI_SDK_VERSION_LABEL @"beta.3"
#define MI_SDK_VERSION_LABEL @"beta.4"
Binary file not shown.
Binary file modified MapsIndoors.xcframework/ios-arm64/MapsIndoors.framework/MapsIndoors
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -123,161 +123,161 @@
},
"ConstValues": [
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "StringLiteral",
"offset": 1072,
"length": 2,
"value": "\"\""
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 1630,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 2274,
"length": 4,
"value": "true"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 2560,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 2605,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 2745,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 3407,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 3433,
"length": 4,
"value": "true"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 3463,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 3821,
"length": 4,
"value": "true"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 3851,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "StringLiteral",
"offset": 5039,
"length": 28,
"value": "\"com.mapspeople.mapsindoors\""
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 6833,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 6872,
"length": 4,
"value": "true"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 8551,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 8593,
"length": 4,
"value": "true"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9100,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9628,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9661,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9693,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9728,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "BooleanLiteral",
"offset": 9763,
"length": 5,
"value": "false"
},
{
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/0\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"filePath": "\/Users\/ciuser\/builds\/hR_k36Qo\/1\/MapsIndoors\/SDK\/MISDKIOS\/Source\/ObjC\/Private\/models\/MPDisplayRuleManager.swift",
"kind": "IntegerLiteral",
"offset": 10091,
"length": 1,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ typedef NSString *(^JSONModelKeyMapBlock)(NSString *keyName);
* }
* </pre>
*/
@interface JSONKeyMapper : NSObject
@interface MPJSONKeyMapper : NSObject

// deprecated
@property (readonly, nonatomic) JSONModelKeyMapBlock JSONToModelKeyBlock DEPRECATED_ATTRIBUTE;
- (NSString *)convertValue:(NSString *)value isImportingToModel:(BOOL)importing DEPRECATED_MSG_ATTRIBUTE("use convertValue:");
- (instancetype)initWithDictionary:(NSDictionary *)map DEPRECATED_MSG_ATTRIBUTE("use initWithModelToJSONDictionary:");
- (instancetype)initWithJSONToModelBlock:(JSONModelKeyMapBlock)toModel modelToJSONBlock:(JSONModelKeyMapBlock)toJSON DEPRECATED_MSG_ATTRIBUTE("use initWithModelToJSONBlock:");
+ (instancetype)mapper:(JSONKeyMapper *)baseKeyMapper withExceptions:(NSDictionary *)exceptions DEPRECATED_MSG_ATTRIBUTE("use baseMapper:withModelToJSONExceptions:");
+ (instancetype)mapper:(MPJSONKeyMapper *)baseKeyMapper withExceptions:(NSDictionary *)exceptions DEPRECATED_MSG_ATTRIBUTE("use baseMapper:withModelToJSONExceptions:");
+ (instancetype)mapperFromUnderscoreCaseToCamelCase DEPRECATED_MSG_ATTRIBUTE("use mapperForSnakeCase:");
+ (instancetype)mapperFromUpperCaseToLowerCase DEPRECATED_ATTRIBUTE;

Expand Down Expand Up @@ -91,6 +91,6 @@ typedef NSString *(^JSONModelKeyMapBlock)(NSString *keyName);
* Creates a JSONKeyMapper based on a built-in JSONKeyMapper, with specific exceptions.
* Use your JSONModel property names as keys, and the JSON key names as values.
*/
+ (instancetype)baseMapper:(JSONKeyMapper *)baseKeyMapper withModelToJSONExceptions:(NSDictionary *)toJSON;
+ (instancetype)baseMapper:(MPJSONKeyMapper *)baseKeyMapper withModelToJSONExceptions:(NSDictionary *)toJSON;

@end
Loading

0 comments on commit 5ed5a1a

Please sign in to comment.