diff --git a/ios/Temp/DictionaryRepresentationSynthesizing.swift b/ios/Temp/DictionaryRepresentationSynthesizing.swift index 7d047c72..d03cb64c 100644 --- a/ios/Temp/DictionaryRepresentationSynthesizing.swift +++ b/ios/Temp/DictionaryRepresentationSynthesizing.swift @@ -39,7 +39,7 @@ public protocol DictionaryRepresentationSynthesizing { // MARK: - DictionaryRepresentationSynthesizing+StaticDefault // --------------------------------------------------------- -extension DictionaryRepresentationSynthesizing { +public extension DictionaryRepresentationSynthesizing { // MARK: - Static Properties // ------------------------- @@ -48,26 +48,26 @@ extension DictionaryRepresentationSynthesizing { return nil; }; - public static var synthesizedDictionaryIgnore: [String] { + static var synthesizedDictionaryIgnore: [String] { return []; }; - public static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { + static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { return []; }; }; -extension DictionaryRepresentationSynthesizing where Self: StringKeyPathMapping { +public extension DictionaryRepresentationSynthesizing where Self: StringKeyPathMapping { static var synthesizedDictionaryExtraItemsKeyPathMap: StringToPartialKeyPathMap? { return self.partialKeyPathMap; }; - public static var synthesizedDictionaryIgnore: [String] { + static var synthesizedDictionaryIgnore: [String] { return []; }; - public static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { + static var synthesizedDictionaryInlinedProperties: [PartialKeyPath] { return []; }; };