Sha256: b52b393e18e6db2f51582a3cf698d0477948462a2bdfa23141b2bd854c133587
Contents?: true
Size: 1.5 KB
Versions: 12
Compression:
Stored size: 1.5 KB
Contents
require_relative 'module' require 'spaceship' module Deliver # Set the app's pricing class UploadPriceTier def upload(options) return unless options[:price_tier] price_tier = options[:price_tier].to_s app = Deliver.cache[:app] attributes = {} # Check App update method to understand how to use territory_ids. territory_ids = nil # nil won't update app's territory_ids, empty array would remove app from sale. # As of 2020-09-14: # Official App Store Connect does not have an endpoint to get app prices for an app # Need to get prices from the app's relationships # Prices from app's relationship doess not have price tier so need to fetch app price with price tier relationship app_prices = app.prices if app_prices.first app_price = Spaceship::ConnectAPI.get_app_price(app_price_id: app_prices.first.id, includes: "priceTier").first old_price = app_price.price_tier.id else UI.message("App has no prices yet... Enabling all countries in App Store Connect") territory_ids = Spaceship::ConnectAPI::Territory.all.map(&:id) attributes[:availableInNewTerritories] = true end if price_tier == old_price UI.success("Price Tier unchanged (tier #{old_price})") return end app.update(attributes: attributes, app_price_tier_id: price_tier, territory_ids: territory_ids) UI.success("Successfully updated the pricing from #{old_price} to #{price_tier}") end end end
Version data entries
12 entries across 12 versions & 2 rubygems