-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new endpoints and remove MixPanel (#123)
* Remove MixPanel as a dependency [RM-167] * Add phased release management endpoints [RA-313] * Fix endpoint errors [RA-336] * Make the gem Rails 6.0 compatible [RA-336] * Add build update endpoint [RA-364] * Small fixes (tests, documentation)
- Loading branch information
Zoltán Ormándi
authored
Oct 28, 2022
1 parent
348ccb7
commit 69d3a39
Showing
13 changed files
with
107 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
lib/app_store_connect/app_store_version_phased_release_create_request.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'app_store_connect/create_request' | ||
|
||
module AppStoreConnect | ||
class AppStoreVersionPhasedReleaseCreateRequest < CreateRequest | ||
data do | ||
type 'appStoreVersionPhasedReleases' | ||
|
||
attributes do | ||
property :phased_release_state | ||
end | ||
end | ||
end | ||
end |
16 changes: 16 additions & 0 deletions
16
lib/app_store_connect/app_store_version_phased_release_update_request.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'app_store_connect/create_request' | ||
|
||
module AppStoreConnect | ||
class AppStoreVersionPhasedReleaseUpdateRequest < CreateRequest | ||
data do | ||
id | ||
type 'appStoreVersionPhasedReleases' | ||
|
||
attributes do | ||
property :phased_release_state | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'app_store_connect/create_request' | ||
|
||
module AppStoreConnect | ||
class BuildUpdateRequest < CreateRequest | ||
data do | ||
id | ||
type 'builds' | ||
|
||
attributes do | ||
property :expired | ||
property :uses_non_exempt_encryption | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters