Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #14 from magiclabs/rominhalltari-sc-89558-getmetad…
Browse files Browse the repository at this point in the history
…ata-getinfo-for-all-mobile-sdks

Refactor: Use `UserInfo` instead of `UserMetadata`
  • Loading branch information
romin-halltari authored Nov 22, 2023
2 parents 3261b73 + 961daf2 commit 0e5561c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions MagicExt-OAuth.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Pod::Spec.new do |s|
s.name = 'MagicExt-OAuth'
s.version = '2.0.0'
s.version = '3.0.0'
s.summary = 'Magic IOS Extension - OAuth'

s.description = <<-DESC
Expand All @@ -21,7 +21,7 @@ TODO: Add long description of the pod here.

s.source_files = 'Sources/MagicExt-OAuth/**/*'

s.dependency 'MagicSDK', '~> 9.0'
s.dependency 'MagicSDK', '~> 10.0'

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end
4 changes: 2 additions & 2 deletions MagicExt-OIDC.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Pod::Spec.new do |s|
s.name = 'MagicExt-OIDC'
s.version = '2.0.0'
s.version = '2.0.1'
s.summary = 'Magic IOS Extension - OIDC'

s.description = <<-DESC
Expand All @@ -21,7 +21,7 @@ TODO: Add long description of the pod here.

s.source_files = 'Sources/MagicExt-OIDC/**/*'

s.dependency 'MagicSDK', '~> 9.0'
s.dependency 'MagicSDK', '~> 10.0'

s.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
end
2 changes: 1 addition & 1 deletion Sources/MagicExt-OAuth/Types/OAuthResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ public struct OauthPartialResult: Codable {
}
public struct MagicPartialResult: Codable {
public let idToken: String;
public let userMetadata: UserMetadata;
public let userInfo: UserInfo;
}

0 comments on commit 0e5561c

Please sign in to comment.