Skip to content

Commit

Permalink
Add CertificateType
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Decot committed Jul 4, 2019
1 parent 4b3f1a9 commit d6dc280
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lib/config/api.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
{
"Type": {
"CertificateType": {
"type": "enum",
"values": [
"OS_DEVELOPMENT",
"IOS_DISTRIBUTION",
"MAC_APP_DISTRIBUTION",
"MAC_INSTALLER_DISTRIBUTION",
"MAC_APP_DEVELOPMENT",
"DEVELOPER_ID_KEXT",
"DEVELOPER_ID_APPLICATION"
]
},
"BundleIdPlatform": {
"type": "enum",
"values": [
Expand Down
5 changes: 5 additions & 0 deletions spec/app_store_connect/type/certificate_type_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

RSpec.describe AppStoreConnect::Type::CertificateType do
it_should_behave_like :type, parent: AppStoreConnect::Type::Enum
end

0 comments on commit d6dc280

Please sign in to comment.