Skip to content

Commit

Permalink
sdk v1.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelavoyan committed Dec 18, 2023
1 parent 7095bc4 commit f14aa44
Show file tree
Hide file tree
Showing 21 changed files with 944 additions and 5,942 deletions.
Binary file modified Frameworks/VCL.xcframework/ios-arm64/VCL.framework/Info.plist
Binary file not shown.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,6 @@ public struct VCLFinalizeOffersDescriptor {
public let approvedOfferIds: [Swift.String]
public let rejectedOfferIds: [Swift.String]
public init(credentialManifest: VCLCredentialManifest, offers: VCLOffers, approvedOfferIds: [Swift.String], rejectedOfferIds: [Swift.String])
public var payload: [Swift.String : Any?] {
get
}
public var aud: Swift.String {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var finalizeOffersUri: Swift.String {
get
}
public var serviceTypes: VCLServiceTypes {
get
}
public func generateRequestBody(jwt: VCLJwt) -> [Swift.String : Any?]
public struct CodingKeys {
public static let KeyExchangeId: Swift.String
Expand All @@ -93,8 +75,7 @@ public class VCLCredentialManifestDescriptor {
final public let pushDelegate: VCLPushDelegate?
final public let did: Swift.String?
final public let vendorOriginContext: Swift.String?
final public let deepLink: VCLDeepLink?
public init(uri: Swift.String?, issuingType: VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil, deepLink: VCLDeepLink? = nil)
public init(uri: Swift.String?, issuingType: VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil)
public var endpoint: Swift.String? {
get
}
Expand Down Expand Up @@ -221,8 +202,7 @@ public struct VCLCredentialManifest {
public let jwt: VCLJwt
public let vendorOriginContext: Swift.String?
public let verifiedProfile: VCLVerifiedProfile
public let deepLink: VCLDeepLink?
public init(jwt: VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCLVerifiedProfile, deepLink: VCLDeepLink? = nil)
public init(jwt: VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCLVerifiedProfile)
public var iss: Swift.String {
get
}
Expand All @@ -232,9 +212,6 @@ public struct VCLCredentialManifest {
public var issuerId: Swift.String {
get
}
public var aud: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
Expand Down Expand Up @@ -438,10 +415,6 @@ public enum VCLErrorCode : Swift.String {
case InvalidCredentialSubjectType
case InvalidCredentialSubjectContext
case IssuerUnexpectedPermissionFailure
case MismatchedRequestIssuerDid
case MismatchedOfferIssuerDid
case MismatchedCredentialIssuerDid
case MismatchedPresentationRequestInspectorDid
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down Expand Up @@ -523,18 +496,6 @@ public struct VCLGenerateOffersDescriptor {
public let offerHashes: [Swift.String]?
public let identificationVerifiableCredentials: [VCLVerifiableCredential]?
public init(credentialManifest: VCLCredentialManifest, types: [Swift.String]? = nil, offerHashes: [Swift.String]? = nil, identificationVerifiableCredentials: [VCLVerifiableCredential]? = nil)
public var payload: [Swift.String : Any?] {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var checkOffersUri: Swift.String {
get
}
public struct CodingKeys {
public static let KeyDid: Swift.String
public static let KeyExchangeId: Swift.String
Expand Down Expand Up @@ -947,20 +908,6 @@ public class VCLCredentialManifestDescriptorByDeepLink : VCLCredentialManifestDe
public init(deepLink: VCLDeepLink, issuingType: VCLIssuingType = VCLIssuingType.Career)
@objc deinit
}
public struct VCLOffer {
public let payload: [Swift.String : Any]
public var issuerId: Swift.String {
get
}
public var id: Swift.String {
get
}
public struct CodingKeys {
public static let KeyId: Swift.String
public static let KeyDid: Swift.String
public static let KeyIssuer: Swift.String
}
}
public struct VCLOrganization {
public let payload: [Swift.String : Any]
public init(payload: [Swift.String : Any])
Expand Down Expand Up @@ -999,11 +946,11 @@ public struct VCLPublicJwk {
}
public struct VCLOffers {
public let payload: [Swift.String : Any]
public let all: [VCLOffer]
public let all: [[Swift.String : Any]]
public let responseCode: Swift.Int
public let sessionToken: VCLToken
public let challenge: Swift.String
public init(payload: [Swift.String : Any], all: [VCLOffer], responseCode: Swift.Int, sessionToken: VCLToken, challenge: Swift.String)
public init(payload: [Swift.String : Any], all: [[Swift.String : Any]], responseCode: Swift.Int, sessionToken: VCLToken, challenge: Swift.String)
public struct CodingKeys {
public static let KeyOffers: Swift.String
public static let KeyChallenge: Swift.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,6 @@ public struct VCLFinalizeOffersDescriptor {
public let approvedOfferIds: [Swift.String]
public let rejectedOfferIds: [Swift.String]
public init(credentialManifest: VCL.VCLCredentialManifest, offers: VCL.VCLOffers, approvedOfferIds: [Swift.String], rejectedOfferIds: [Swift.String])
public var payload: [Swift.String : Any?] {
get
}
public var aud: Swift.String {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var finalizeOffersUri: Swift.String {
get
}
public var serviceTypes: VCL.VCLServiceTypes {
get
}
public func generateRequestBody(jwt: VCL.VCLJwt) -> [Swift.String : Any?]
public struct CodingKeys {
public static let KeyExchangeId: Swift.String
Expand All @@ -93,8 +75,7 @@ public class VCLCredentialManifestDescriptor {
final public let pushDelegate: VCL.VCLPushDelegate?
final public let did: Swift.String?
final public let vendorOriginContext: Swift.String?
final public let deepLink: VCL.VCLDeepLink?
public init(uri: Swift.String?, issuingType: VCL.VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCL.VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil, deepLink: VCL.VCLDeepLink? = nil)
public init(uri: Swift.String?, issuingType: VCL.VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCL.VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil)
public var endpoint: Swift.String? {
get
}
Expand Down Expand Up @@ -221,8 +202,7 @@ public struct VCLCredentialManifest {
public let jwt: VCL.VCLJwt
public let vendorOriginContext: Swift.String?
public let verifiedProfile: VCL.VCLVerifiedProfile
public let deepLink: VCL.VCLDeepLink?
public init(jwt: VCL.VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCL.VCLVerifiedProfile, deepLink: VCL.VCLDeepLink? = nil)
public init(jwt: VCL.VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCL.VCLVerifiedProfile)
public var iss: Swift.String {
get
}
Expand All @@ -232,9 +212,6 @@ public struct VCLCredentialManifest {
public var issuerId: Swift.String {
get
}
public var aud: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
Expand Down Expand Up @@ -438,10 +415,6 @@ public enum VCLErrorCode : Swift.String {
case InvalidCredentialSubjectType
case InvalidCredentialSubjectContext
case IssuerUnexpectedPermissionFailure
case MismatchedRequestIssuerDid
case MismatchedOfferIssuerDid
case MismatchedCredentialIssuerDid
case MismatchedPresentationRequestInspectorDid
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down Expand Up @@ -523,18 +496,6 @@ public struct VCLGenerateOffersDescriptor {
public let offerHashes: [Swift.String]?
public let identificationVerifiableCredentials: [VCL.VCLVerifiableCredential]?
public init(credentialManifest: VCL.VCLCredentialManifest, types: [Swift.String]? = nil, offerHashes: [Swift.String]? = nil, identificationVerifiableCredentials: [VCL.VCLVerifiableCredential]? = nil)
public var payload: [Swift.String : Any?] {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var checkOffersUri: Swift.String {
get
}
public struct CodingKeys {
public static let KeyDid: Swift.String
public static let KeyExchangeId: Swift.String
Expand Down Expand Up @@ -947,20 +908,6 @@ public class VCLCredentialManifestDescriptorByDeepLink : VCL.VCLCredentialManife
public init(deepLink: VCL.VCLDeepLink, issuingType: VCL.VCLIssuingType = VCLIssuingType.Career)
@objc deinit
}
public struct VCLOffer {
public let payload: [Swift.String : Any]
public var issuerId: Swift.String {
get
}
public var id: Swift.String {
get
}
public struct CodingKeys {
public static let KeyId: Swift.String
public static let KeyDid: Swift.String
public static let KeyIssuer: Swift.String
}
}
public struct VCLOrganization {
public let payload: [Swift.String : Any]
public init(payload: [Swift.String : Any])
Expand Down Expand Up @@ -999,11 +946,11 @@ public struct VCLPublicJwk {
}
public struct VCLOffers {
public let payload: [Swift.String : Any]
public let all: [VCL.VCLOffer]
public let all: [[Swift.String : Any]]
public let responseCode: Swift.Int
public let sessionToken: VCL.VCLToken
public let challenge: Swift.String
public init(payload: [Swift.String : Any], all: [VCL.VCLOffer], responseCode: Swift.Int, sessionToken: VCL.VCLToken, challenge: Swift.String)
public init(payload: [Swift.String : Any], all: [[Swift.String : Any]], responseCode: Swift.Int, sessionToken: VCL.VCLToken, challenge: Swift.String)
public struct CodingKeys {
public static let KeyOffers: Swift.String
public static let KeyChallenge: Swift.String
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,24 +58,6 @@ public struct VCLFinalizeOffersDescriptor {
public let approvedOfferIds: [Swift.String]
public let rejectedOfferIds: [Swift.String]
public init(credentialManifest: VCLCredentialManifest, offers: VCLOffers, approvedOfferIds: [Swift.String], rejectedOfferIds: [Swift.String])
public var payload: [Swift.String : Any?] {
get
}
public var aud: Swift.String {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var finalizeOffersUri: Swift.String {
get
}
public var serviceTypes: VCLServiceTypes {
get
}
public func generateRequestBody(jwt: VCLJwt) -> [Swift.String : Any?]
public struct CodingKeys {
public static let KeyExchangeId: Swift.String
Expand All @@ -93,8 +75,7 @@ public class VCLCredentialManifestDescriptor {
final public let pushDelegate: VCLPushDelegate?
final public let did: Swift.String?
final public let vendorOriginContext: Swift.String?
final public let deepLink: VCLDeepLink?
public init(uri: Swift.String?, issuingType: VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil, deepLink: VCLDeepLink? = nil)
public init(uri: Swift.String?, issuingType: VCLIssuingType = VCLIssuingType.Career, credentialTypes: [Swift.String]? = nil, pushDelegate: VCLPushDelegate? = nil, vendorOriginContext: Swift.String? = nil)
public var endpoint: Swift.String? {
get
}
Expand Down Expand Up @@ -221,8 +202,7 @@ public struct VCLCredentialManifest {
public let jwt: VCLJwt
public let vendorOriginContext: Swift.String?
public let verifiedProfile: VCLVerifiedProfile
public let deepLink: VCLDeepLink?
public init(jwt: VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCLVerifiedProfile, deepLink: VCLDeepLink? = nil)
public init(jwt: VCLJwt, vendorOriginContext: Swift.String? = nil, verifiedProfile: VCLVerifiedProfile)
public var iss: Swift.String {
get
}
Expand All @@ -232,9 +212,6 @@ public struct VCLCredentialManifest {
public var issuerId: Swift.String {
get
}
public var aud: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
Expand Down Expand Up @@ -438,10 +415,6 @@ public enum VCLErrorCode : Swift.String {
case InvalidCredentialSubjectType
case InvalidCredentialSubjectContext
case IssuerUnexpectedPermissionFailure
case MismatchedRequestIssuerDid
case MismatchedOfferIssuerDid
case MismatchedCredentialIssuerDid
case MismatchedPresentationRequestInspectorDid
public init?(rawValue: Swift.String)
public typealias RawValue = Swift.String
public var rawValue: Swift.String {
Expand Down Expand Up @@ -523,18 +496,6 @@ public struct VCLGenerateOffersDescriptor {
public let offerHashes: [Swift.String]?
public let identificationVerifiableCredentials: [VCLVerifiableCredential]?
public init(credentialManifest: VCLCredentialManifest, types: [Swift.String]? = nil, offerHashes: [Swift.String]? = nil, identificationVerifiableCredentials: [VCLVerifiableCredential]? = nil)
public var payload: [Swift.String : Any?] {
get
}
public var issuerId: Swift.String {
get
}
public var exchangeId: Swift.String {
get
}
public var checkOffersUri: Swift.String {
get
}
public struct CodingKeys {
public static let KeyDid: Swift.String
public static let KeyExchangeId: Swift.String
Expand Down Expand Up @@ -947,20 +908,6 @@ public class VCLCredentialManifestDescriptorByDeepLink : VCLCredentialManifestDe
public init(deepLink: VCLDeepLink, issuingType: VCLIssuingType = VCLIssuingType.Career)
@objc deinit
}
public struct VCLOffer {
public let payload: [Swift.String : Any]
public var issuerId: Swift.String {
get
}
public var id: Swift.String {
get
}
public struct CodingKeys {
public static let KeyId: Swift.String
public static let KeyDid: Swift.String
public static let KeyIssuer: Swift.String
}
}
public struct VCLOrganization {
public let payload: [Swift.String : Any]
public init(payload: [Swift.String : Any])
Expand Down Expand Up @@ -999,11 +946,11 @@ public struct VCLPublicJwk {
}
public struct VCLOffers {
public let payload: [Swift.String : Any]
public let all: [VCLOffer]
public let all: [[Swift.String : Any]]
public let responseCode: Swift.Int
public let sessionToken: VCLToken
public let challenge: Swift.String
public init(payload: [Swift.String : Any], all: [VCLOffer], responseCode: Swift.Int, sessionToken: VCLToken, challenge: Swift.String)
public init(payload: [Swift.String : Any], all: [[Swift.String : Any]], responseCode: Swift.Int, sessionToken: VCLToken, challenge: Swift.String)
public struct CodingKeys {
public static let KeyOffers: Swift.String
public static let KeyChallenge: Swift.String
Expand Down
Loading

0 comments on commit f14aa44

Please sign in to comment.