app_store_connect 0.28.0 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b78497fdd27700d7861fd0c5e2e938bff62ee593d3ef05f65d37a1eda82d0312
|
4
|
+
data.tar.gz: 3a9dc6414f7a7bc6ac53f71a5fd94baeba7018e4ed37909adfd1e480cd171204
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a7ea18cca34409facbc377959a21243226dd7e53be5cf28db001cc0271b902b054c9c6b82494ac38217a28995dba93ac957e5ac928de72bcf8798c4bf8c198f
|
7
|
+
data.tar.gz: 18d57653aa3a0c14d7a15017cdab703cfb9bb853788c2bd6b84f1a3036afb8ee2c67d1d0d61f15cdd026a8289b576c2e9a194bea19aa22532bb54ca0709e718f
|
data/.github/FUNDING.yml
ADDED
data/lib/config/schema.json
CHANGED
@@ -714,6 +714,13 @@
|
|
714
714
|
"alias": "app_store_version"
|
715
715
|
},
|
716
716
|
|
717
|
+
{
|
718
|
+
"url": "https://api.appstoreconnect.apple.com/v1/appStoreVersionReleaseRequests",
|
719
|
+
"http_body_type": "AppStoreVersionReleaseRequestCreateRequest",
|
720
|
+
"http_method": "post",
|
721
|
+
"alias": "create_app_store_version_release_request"
|
722
|
+
},
|
723
|
+
|
717
724
|
{
|
718
725
|
"url": "https://api.appstoreconnect.apple.com/v1/appStoreVersionPhasedReleases",
|
719
726
|
"http_body_type": "AppStoreVersionPhasedReleaseCreateRequest",
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: app_store_connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.29.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Decot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-11-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -205,6 +205,7 @@ executables: []
|
|
205
205
|
extensions: []
|
206
206
|
extra_rdoc_files: []
|
207
207
|
files:
|
208
|
+
- ".github/FUNDING.yml"
|
208
209
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
209
210
|
- ".github/ISSUE_TEMPLATE/feature_request.md"
|
210
211
|
- ".github/workflows/default.yml"
|
@@ -224,6 +225,7 @@ files:
|
|
224
225
|
- lib/app_store_connect/app_store_version_create_request.rb
|
225
226
|
- lib/app_store_connect/app_store_version_phased_release_create_request.rb
|
226
227
|
- lib/app_store_connect/app_store_version_phased_release_update_request.rb
|
228
|
+
- lib/app_store_connect/app_store_version_release_request_create_request.rb
|
227
229
|
- lib/app_store_connect/app_store_version_update_request.rb
|
228
230
|
- lib/app_store_connect/build_update_request.rb
|
229
231
|
- lib/app_store_connect/bundle_id_capability_create_request.rb
|