-
Notifications
You must be signed in to change notification settings - Fork 548
ServicesAccountLinking iOS xcode26.2 b2
Alex Soto edited this page Nov 18, 2025
·
1 revision
#ServicesAccountLinking.framework
diff -ruN /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ServicesAccountLinking.framework/Headers/SALResellerAccount.h /Applications/Xcode_26.2.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ServicesAccountLinking.framework/Headers/SALResellerAccount.h
--- /Applications/Xcode_26.2.0-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ServicesAccountLinking.framework/Headers/SALResellerAccount.h 2025-10-24 21:40:59
+++ /Applications/Xcode_26.2.0-beta2.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks/ServicesAccountLinking.framework/Headers/SALResellerAccount.h 2025-11-12 04:15:54
@@ -10,10 +10,10 @@
#import <Foundation/Foundation.h>
+// This C header provides backward compatibility via the SDK for both Swift and Objective-C clients.
+// All integrations should use the ``ResellerAccount`` Swift extensions regardless of OS version.
+
/// Reseller account type for linking with Apple Media & Purchases accounts.
-///
-/// This C header provides backward compatibility via the SDK for both Swift and Objective-C clients.
-/// All integrations should use the ``ResellerAccount`` Swift extensions regardless of OS version.
typedef struct {
void *_reserved;
} SALResellerAccount NS_SWIFT_NAME(ResellerAccount);
@@ -24,10 +24,13 @@
/// Registration error codes.
typedef NS_ERROR_ENUM(SALRegistrationErrorDomain, SALRegistrationError) {
/// The application is not registered as an authorized partner.
+ ///
/// Contact Apple about the channel partnership program to resolve.
SALRegistrationErrorNotEligible = 0,
- /// Registration failed. This may indicate the user is not signed into an iTunes account
+ /// Registration failed.
+ ///
+ /// This may indicate the user is not signed into an iTunes account
/// or another system error occurred. Implement retry logic with appropriate user messaging.
SALRegistrationErrorFailed = 1
} NS_SWIFT_NAME(RegistrationError);