fastlane 2.221.0 → 2.222.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +92 -92
- data/deliver/lib/deliver/options.rb +2 -2
- data/deliver/lib/deliver/runner.rb +2 -2
- data/deliver/lib/deliver/submit_for_review.rb +0 -77
- data/fastlane/lib/fastlane/actions/app_store_build_number.rb +1 -1
- data/fastlane/lib/fastlane/actions/docs/upload_to_app_store.md.erb +4 -3
- data/fastlane/lib/fastlane/actions/download_dsyms.rb +2 -2
- data/fastlane/lib/fastlane/actions/ensure_git_status_clean.rb +16 -1
- data/fastlane/lib/fastlane/actions/latest_testflight_build_number.rb +1 -1
- data/fastlane/lib/fastlane/actions/set_changelog.rb +3 -3
- data/fastlane/lib/fastlane/fast_file.rb +3 -1
- data/fastlane/lib/fastlane/version.rb +1 -1
- data/fastlane/swift/Deliverfile.swift +1 -1
- data/fastlane/swift/DeliverfileProtocol.swift +2 -2
- data/fastlane/swift/Fastlane.swift +7 -7
- data/fastlane/swift/Gymfile.swift +1 -1
- data/fastlane/swift/GymfileProtocol.swift +1 -1
- data/fastlane/swift/Matchfile.swift +1 -1
- data/fastlane/swift/MatchfileProtocol.swift +1 -1
- data/fastlane/swift/Precheckfile.swift +1 -1
- data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
- data/fastlane/swift/Scanfile.swift +1 -1
- data/fastlane/swift/ScanfileProtocol.swift +1 -1
- data/fastlane/swift/Screengrabfile.swift +1 -1
- data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
- data/fastlane/swift/Snapshotfile.swift +1 -1
- data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
- data/fastlane/swift/formatting/Brewfile.lock.json +17 -17
- data/gym/lib/gym/generators/build_command_generator.rb +1 -1
- data/spaceship/lib/spaceship/connect_api/models/app.rb +10 -0
- data/spaceship/lib/spaceship/connect_api/models/app_availability.rb +23 -0
- data/spaceship/lib/spaceship/connect_api/models/app_store_version.rb +1 -19
- data/spaceship/lib/spaceship/connect_api/models/territory_availability.rb +62 -0
- data/spaceship/lib/spaceship/connect_api/tunes/tunes.rb +9 -45
- data/spaceship/lib/spaceship/connect_api.rb +2 -1
- data/spaceship/lib/spaceship/tunes/app_submission.rb +0 -19
- data/spaceship/lib/spaceship/tunes/application.rb +1 -1
- data/spaceship/lib/spaceship/tunes/tunes_client.rb +2 -0
- data/trainer/lib/trainer/test_parser.rb +27 -2
- metadata +25 -24
- data/spaceship/lib/spaceship/connect_api/models/idfa_declaration.rb +0 -43
@@ -1,43 +0,0 @@
|
|
1
|
-
require_relative '../model'
|
2
|
-
module Spaceship
|
3
|
-
class ConnectAPI
|
4
|
-
class IdfaDeclaration
|
5
|
-
include Spaceship::ConnectAPI::Model
|
6
|
-
|
7
|
-
attr_accessor :serves_ads
|
8
|
-
attr_accessor :attributes_app_installation_to_previous_ad
|
9
|
-
attr_accessor :attributes_action_with_previous_ad
|
10
|
-
attr_accessor :honors_limited_ad_tracking
|
11
|
-
|
12
|
-
module AppStoreAgeRating
|
13
|
-
FOUR_PLUS = "FOUR_PLUS"
|
14
|
-
end
|
15
|
-
|
16
|
-
attr_mapping({
|
17
|
-
"servesAds" => "serves_ads",
|
18
|
-
"attributesAppInstallationToPreviousAd" => "attributes_app_installation_to_previous_ad",
|
19
|
-
"attributesActionWithPreviousAd" => "attributes_action_with_previous_ad",
|
20
|
-
"honorsLimitedAdTracking" => "honors_limited_ad_tracking"
|
21
|
-
})
|
22
|
-
|
23
|
-
def self.type
|
24
|
-
return "idfaDeclarations"
|
25
|
-
end
|
26
|
-
|
27
|
-
#
|
28
|
-
# API
|
29
|
-
#
|
30
|
-
|
31
|
-
def update(client: nil, attributes: nil)
|
32
|
-
client ||= Spaceship::ConnectAPI
|
33
|
-
attributes = reverse_attr_mapping(attributes)
|
34
|
-
client.patch_idfa_declaration(idfa_declaration_id: id, attributes: attributes)
|
35
|
-
end
|
36
|
-
|
37
|
-
def delete!(client: nil)
|
38
|
-
client ||= Spaceship::ConnectAPI
|
39
|
-
client.delete_idfa_declaration(idfa_declaration_id: id)
|
40
|
-
end
|
41
|
-
end
|
42
|
-
end
|
43
|
-
end
|