diff --git a/Mindbox.podspec b/Mindbox.podspec index f70a93ef..3efcf23f 100644 --- a/Mindbox.podspec +++ b/Mindbox.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "Mindbox" - spec.version = "2.1.1" + spec.version = "2.1.2" spec.summary = "SDK for integration with Mindbox" spec.description = "This library allows you to integrate data transfer to Mindbox Marketing Cloud" spec.homepage = "https://github.com/mindbox-moscow/ios-sdk" diff --git a/Mindbox.xcodeproj/project.pbxproj b/Mindbox.xcodeproj/project.pbxproj index d292d125..5c25560e 100644 --- a/Mindbox.xcodeproj/project.pbxproj +++ b/Mindbox.xcodeproj/project.pbxproj @@ -1732,7 +1732,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 2.1.1; + MARKETING_VERSION = 2.1.2; PRODUCT_BUNDLE_IDENTIFIER = cloud.Mindbox; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -1760,7 +1760,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 2.1.1; + MARKETING_VERSION = 2.1.2; PRODUCT_BUNDLE_IDENTIFIER = cloud.Mindbox; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -1824,7 +1824,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 2.1.1; + MARKETING_VERSION = 2.1.2; PRODUCT_BUNDLE_IDENTIFIER = cloud.MindboxNotifications; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; @@ -1852,7 +1852,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 2.1.1; + MARKETING_VERSION = 2.1.2; PRODUCT_BUNDLE_IDENTIFIER = cloud.MindboxNotifications; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; diff --git a/Mindbox/Model/OperationBodyRequest.swift b/Mindbox/Model/OperationBodyRequest.swift index 4ca90522..09c4867d 100644 --- a/Mindbox/Model/OperationBodyRequest.swift +++ b/Mindbox/Model/OperationBodyRequest.swift @@ -32,7 +32,7 @@ open class OperationBodyRequest: OperationBodyRequestType { open func encode(to encoder: Encoder) throws { var container = encoder.container(keyedBy: CodingKeys.self) - try container.encodeIfPresent(customAction, forKey: .customAction) + try container.encodeIfPresent(customAction, forKey: .customerAction) try container.encodeIfPresent(pointOfContact, forKey: .pointOfContact) try container.encodeIfPresent(addProductToList, forKey: .addProductToList) try container.encodeIfPresent(segmentations, forKey: .segmentations) @@ -53,7 +53,7 @@ open class OperationBodyRequest: OperationBodyRequestType { } private enum CodingKeys: String, CodingKey { - case customAction + case customerAction case pointOfContact case addProductToList case segmentations diff --git a/MindboxNotifications.podspec b/MindboxNotifications.podspec index 13672d02..39b732b8 100644 --- a/MindboxNotifications.podspec +++ b/MindboxNotifications.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "MindboxNotifications" - spec.version = "2.1.1" + spec.version = "2.1.2" spec.summary = "SDK for integration notifications with Mindbox" spec.description = "This library allows you to integrate notifications and transfer them to Mindbox Marketing Cloud" spec.homepage = "https://github.com/mindbox-moscow/ios-sdk"