fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.132.0 vs fastlane/swift/PrecheckfileProtocol.swift in fastlane-2.133.0

- old
+ new

@@ -1,12 +1,26 @@ protocol PrecheckfileProtocol: class { + + /// The bundle identifier of your app var appIdentifier: String { get } + + /// Your Apple ID Username var username: String { get } + + /// The ID of your App Store Connect team if you're in multiple teams var teamId: String? { get } + + /// The name of your App Store Connect team if you're in multiple teams var teamName: String? { get } + + /// The default rule level unless otherwise configured var defaultRuleLevel: String { get } + + /// Should check in-app purchases? var includeInAppPurchases: Bool { get } + + /// using text indicating that your IAP is free var freeStuffInIap: String? { get } } extension PrecheckfileProtocol { var appIdentifier: String { return "" } @@ -16,9 +30,8 @@ var defaultRuleLevel: String { return "error" } var includeInAppPurchases: Bool { return true } var freeStuffInIap: String? { return nil } } - // Please don't remove the lines below // They are used to detect outdated files -// FastlaneRunnerAPIVersion [0.9.1] +// FastlaneRunnerAPIVersion [0.9.11]