pilot/lib/pilot/options.rb in fastlane-2.98.0 vs pilot/lib/pilot/options.rb in fastlane-2.99.0

- old
+ new

@@ -81,11 +81,11 @@ is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :apple_id, short_option: "-p", env_name: "PILOT_APPLE_ID", - description: "The unique App ID provided by iTunes Connect", + description: "The unique App ID provided by App Store Connect", optional: true, code_gen_sensitive: true, default_value: ENV["TESTFLIGHT_APPLE_ID"], default_value_dynamic: true), FastlaneCore::ConfigItem.new(key: :distribute_external, @@ -128,20 +128,20 @@ default_value: "./testers.csv", optional: true), FastlaneCore::ConfigItem.new(key: :wait_processing_interval, short_option: "-k", env_name: "PILOT_WAIT_PROCESSING_INTERVAL", - description: "Interval in seconds to wait for iTunes Connect processing", + description: "Interval in seconds to wait for App Store Connect processing", default_value: 30, type: Integer, verify_block: proc do |value| UI.user_error!("Please enter a valid positive number of seconds") unless value.to_i > 0 end), FastlaneCore::ConfigItem.new(key: :team_id, short_option: "-q", env_name: "PILOT_TEAM_ID", - description: "The ID of your iTunes Connect team if you're in multiple teams", + description: "The ID of your App Store Connect team if you're in multiple teams", optional: true, is_string: false, # as we also allow integers, which we convert to strings anyway code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id), default_value_dynamic: true, @@ -149,10 +149,10 @@ ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :team_name, short_option: "-r", env_name: "PILOT_TEAM_NAME", - description: "The name of your iTunes Connect team if you're in multiple teams", + description: "The name of your App Store Connect team if you're in multiple teams", optional: true, code_gen_sensitive: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name), default_value_dynamic: true, verify_block: proc do |value|