Skip to content

Commit

Permalink
Merge pull request #168 from Alfresco/ADST-429
Browse files Browse the repository at this point in the history
ADST-429
  • Loading branch information
gl-lovekesh authored May 13, 2024
2 parents 7bb290f + e8d79d8 commit 1f3456c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AlfrescoContent/AlfrescoContent.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.14'
s.tvos.deployment_target = '12.0'
s.swift_version = '5.0'
s.version = '0.2.65'
s.version = '0.2.66'
s.source = {:git => 'https://github.com/Alfresco/alfresco-ios-swift-api.git', :tag => 'content/'+s.version.to_s}
s.authors = {'Alfresco' => '[email protected]'}
s.license = {:type => 'Apache License Version 2.0', :file => 'AlfrescoContent/LICENSE.md'}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ public class ValueElement: Codable {
public let relatedContent, contentAvailable, link: Bool
public let mimeType, simpleType, previewStatus, thumbnailStatus: String

init(id: Int, name: String, created: String, createdBy: CreatedBy, relatedContent: Bool, contentAvailable: Bool, link: Bool, mimeType: String, simpleType: String, previewStatus: String, thumbnailStatus: String) {
public init(id: Int, name: String, created: String, createdBy: CreatedBy, relatedContent: Bool, contentAvailable: Bool, link: Bool, mimeType: String, simpleType: String, previewStatus: String, thumbnailStatus: String) {
self.id = id
self.name = name
self.created = created
Expand All @@ -650,7 +650,7 @@ public class CreatedBy: Codable {
public let id: Int
public let firstName, lastName, email: String

init(id: Int, firstName: String, lastName: String, email: String) {
public init(id: Int, firstName: String, lastName: String, email: String) {
self.id = id
self.firstName = firstName
self.lastName = lastName
Expand Down

0 comments on commit 1f3456c

Please sign in to comment.