Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import Foundation

// MARK: - GraphQLOperation

// The overrides require a feature and bugfix introduced in Swift 5.2
#if swift(>=5.2)

@available(iOS 13.0, *)
public extension GraphQLOperation {
/// Publishes the final result of the operation
Expand Down Expand Up @@ -104,3 +107,5 @@ public extension AmplifyOperation
internalResultPublisher
}
}

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import Foundation

// MARK: - AuthAttributeResendConfirmationCodeOperation

// The overrides require a feature and bugfix introduced in Swift 5.2
#if swift(>=5.2)

@available(iOS 13.0, *)
public extension AmplifyOperation
where
Expand Down Expand Up @@ -273,3 +276,5 @@ public extension AmplifyOperation
internalResultPublisher
}
}

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import Foundation

// MARK: - PredictionsIdentifyOperation

// The overrides require a feature and bugfix introduced in Swift 5.2
#if swift(>=5.2)

@available(iOS 13.0, *)
public extension AmplifyOperation
where
Expand Down Expand Up @@ -77,3 +80,5 @@ public extension AmplifyOperation
internalResultPublisher
}
}

#endif
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import Foundation

// MARK: - StorageDownloadDataOperation

// The overrides require a feature and bugfix introduced in Swift 5.2
#if swift(>=5.2)

@available(iOS 13.0, *)
public extension AmplifyInProcessReportingOperation
where
Expand Down Expand Up @@ -145,3 +148,5 @@ public extension AmplifyInProcessReportingOperation
internalInProcessPublisher
}
}

#endif