-
Notifications
You must be signed in to change notification settings - Fork 558
Photos macOS xcode26.5 b1
Alex Soto edited this page Mar 31, 2026
·
1 revision
#Photos.framework
diff -ruN /Applications/Xcode_26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h /Applications/Xcode_26.5.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h
--- /Applications/Xcode_26.4.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h 2026-02-27 02:05:10
+++ /Applications/Xcode_26.5.0-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Headers/PhotosTypes.h 2026-03-21 01:56:47
@@ -226,10 +226,15 @@
/// A job to retry processing.
///
- /// An retryable job has a ``PHAssetResourceUploadJob/state`` of `failed` and hasn't previously been retried.
+ /// A retryable job has a ``PHAssetResourceUploadJob/state`` of `failed` and hasn't previously been retried.
///
/// Call ``PHAssetResourceUploadJobChangeRequest/retryWithDestination:`` to retry the job.
PHAssetResourceUploadJobActionRetry = 2,
+
+ /// A job to process.
+ ///
+ /// A processable job has a ``PHAssetResourceUploadJob/state`` of `registered` or `pending`.
+ PHAssetResourceUploadJobActionProcess API_AVAILABLE(ios(26.5)) = 3,
} NS_SWIFT_NAME(PHAssetResourceUploadJob.Action) API_AVAILABLE(ios(26.1)) API_UNAVAILABLE(macos, macCatalyst, tvos, visionos);
API_AVAILABLE_END