diff --git a/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/CharacterText.xcscheme b/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/CharacterText.xcscheme new file mode 100644 index 0000000..be9790f --- /dev/null +++ b/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/CharacterText.xcscheme @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/xcschememanagement.plist b/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..db39eac --- /dev/null +++ b/CharacterText.xcodeproj/xcuserdata/natashatherobot.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,27 @@ + + + + + SchemeUserState + + CharacterText.xcscheme + + orderHint + 0 + + + SuppressBuildableAutocreation + + AF7BB31E195C749600E46AF2 + + primary + + + AF7BB330195C749600E46AF2 + + primary + + + + + diff --git a/CharacterText.xcworkspace/xcshareddata/CharacterText.xccheckout b/CharacterText.xcworkspace/xcshareddata/CharacterText.xccheckout new file mode 100644 index 0000000..589c8d1 --- /dev/null +++ b/CharacterText.xcworkspace/xcshareddata/CharacterText.xccheckout @@ -0,0 +1,41 @@ + + + + + IDESourceControlProjectFavoriteDictionaryKey + + IDESourceControlProjectIdentifier + 3217EBBE-11A0-4C10-9972-D779A8AC3569 + IDESourceControlProjectName + CharacterText + IDESourceControlProjectOriginsDictionary + + B762B879E1986148CFB9935B4BCC2FFABE987B82 + github.com:NatashaTheRobot/CharacterText.git + + IDESourceControlProjectPath + CharacterText.xcworkspace + IDESourceControlProjectRelativeInstallPathDictionary + + B762B879E1986148CFB9935B4BCC2FFABE987B82 + .. + + IDESourceControlProjectURL + github.com:NatashaTheRobot/CharacterText.git + IDESourceControlProjectVersion + 111 + IDESourceControlProjectWCCIdentifier + B762B879E1986148CFB9935B4BCC2FFABE987B82 + IDESourceControlProjectWCConfigurations + + + IDESourceControlRepositoryExtensionIdentifierKey + public.vcs.git + IDESourceControlWCCIdentifierKey + B762B879E1986148CFB9935B4BCC2FFABE987B82 + IDESourceControlWCCName + CharacterText + + + + diff --git a/CharacterText.xcworkspace/xcuserdata/natashatherobot.xcuserdatad/UserInterfaceState.xcuserstate b/CharacterText.xcworkspace/xcuserdata/natashatherobot.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..865c328 Binary files /dev/null and b/CharacterText.xcworkspace/xcuserdata/natashatherobot.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/CharacterText/Classes/CharacterLabel/CharacterLabel.swift b/CharacterText/Classes/CharacterLabel/CharacterLabel.swift index 1d3ced1..13f7550 100644 --- a/CharacterText/Classes/CharacterLabel/CharacterLabel.swift +++ b/CharacterText/Classes/CharacterLabel/CharacterLabel.swift @@ -60,7 +60,7 @@ class CharacterLabel: UILabel, NSLayoutManagerDelegate { } set { - let wordRange = NSMakeRange(0, newValue.utf16count) + let wordRange = NSMakeRange(0, newValue.utf16Count) var attributedText = NSMutableAttributedString(string: newValue) attributedText.addAttribute(NSForegroundColorAttributeName , value:self.textColor, range:wordRange) attributedText.addAttribute(NSFontAttributeName , value:self.font, range:wordRange) @@ -92,10 +92,15 @@ class CharacterLabel: UILabel, NSLayoutManagerDelegate { } - init(frame: CGRect) { + override init(frame: CGRect) { super.init(frame: frame) setupLayoutManager() } + + required init(coder aDecoder: NSCoder) { + super.init(coder: aDecoder) + setupLayoutManager() + } override func awakeFromNib() { super.awakeFromNib() @@ -117,41 +122,40 @@ class CharacterLabel: UILabel, NSLayoutManagerDelegate { func calculateTextLayers() { characterTextLayers.removeAll(keepCapacity: false) - if let attributedText = textStorage.string? { - - let wordRange = NSMakeRange(0, attributedText.utf16count); - let attributedString = self.internalAttributedText(); - let layoutRect = layoutManager.usedRectForTextContainer(textContainer); + let attributedText = textStorage.string + + let wordRange = NSMakeRange(0, attributedText.utf16Count) + let attributedString = self.internalAttributedText() + let layoutRect = layoutManager.usedRectForTextContainer(textContainer) + + for var index = wordRange.location; index < wordRange.length+wordRange.location; index += 0 { + let glyphRange = NSMakeRange(index, 1); + let characterRange = layoutManager.characterRangeForGlyphRange(glyphRange, actualGlyphRange:nil); + let textContainer = layoutManager.textContainerForGlyphAtIndex(index, effectiveRange: nil) + var glyphRect = layoutManager.boundingRectForGlyphRange(glyphRange, inTextContainer: textContainer!) + var location = layoutManager.locationForGlyphAtIndex(index) + var kerningRange = layoutManager.rangeOfNominallySpacedGlyphsContainingIndex(index); - for var index = wordRange.location; index < wordRange.length+wordRange.location; index += 0 { - let glyphRange = NSMakeRange(index, 1); - let characterRange = layoutManager.characterRangeForGlyphRange(glyphRange, actualGlyphRange:nil); - let textContainer = layoutManager.textContainerForGlyphAtIndex(index, effectiveRange: nil); - var glyphRect = layoutManager.boundingRectForGlyphRange(glyphRange, inTextContainer: textContainer); - var location = layoutManager.locationForGlyphAtIndex(index); - var kerningRange = layoutManager.rangeOfNominallySpacedGlyphsContainingIndex(index); - - if kerningRange.length > 1 && kerningRange.location == index { - if countElements(characterTextLayers) > 0 { - var previousLayer = characterTextLayers[characterTextLayers.endIndex-1] - var frame = previousLayer.frame - frame.size.width += CGRectGetMaxX(glyphRect)-CGRectGetMaxX(frame) - previousLayer.frame = frame - } + if kerningRange.length > 1 && kerningRange.location == index { + if countElements(characterTextLayers) > 0 { + var previousLayer = characterTextLayers[characterTextLayers.endIndex-1] + var frame = previousLayer.frame + frame.size.width += CGRectGetMaxX(glyphRect)-CGRectGetMaxX(frame) + previousLayer.frame = frame } - - - glyphRect.origin.y += location.y-(glyphRect.height/2)+(self.bounds.size.height/2)-(layoutRect.size.height/2); - - - var textLayer = CATextLayer(frame: glyphRect, string: attributedString.attributedSubstringFromRange(characterRange)); - initialTextLayerAttributes(textLayer) - - layer.addSublayer(textLayer); - characterTextLayers.append(textLayer); - - index += characterRange.length; } + + + glyphRect.origin.y += location.y-(glyphRect.height/2)+(self.bounds.size.height/2)-(layoutRect.size.height/2); + + + var textLayer = CATextLayer(frame: glyphRect, string: attributedString.attributedSubstringFromRange(characterRange)); + initialTextLayerAttributes(textLayer) + + layer.addSublayer(textLayer); + characterTextLayers.append(textLayer); + + index += characterRange.length; } } @@ -160,7 +164,7 @@ class CharacterLabel: UILabel, NSLayoutManagerDelegate { } func internalAttributedText() -> NSMutableAttributedString! { - let wordRange = NSMakeRange(0, textStorage.string.utf16count); + let wordRange = NSMakeRange(0, textStorage.string.utf16Count) var attributedText = NSMutableAttributedString(string: textStorage.string); attributedText.addAttribute(kCTForegroundColorAttributeName , value:self.textColor.CGColor, range:wordRange); attributedText.addAttribute(kCTFontAttributeName , value:self.font, range:wordRange); diff --git a/CharacterText/Classes/CharacterLabel/CharacterTextView.swift b/CharacterText/Classes/CharacterLabel/CharacterTextView.swift index 44211b2..9060160 100644 --- a/CharacterText/Classes/CharacterLabel/CharacterTextView.swift +++ b/CharacterText/Classes/CharacterLabel/CharacterTextView.swift @@ -41,10 +41,15 @@ class CharacterTextView: UITextView, NSLayoutManagerDelegate { } - init(frame: CGRect, textContainer: NSTextContainer!) { + override init(frame: CGRect, textContainer: NSTextContainer!) { super.init(frame: frame, textContainer: textContainer); setupLayoutManager(); } + + required init(coder aDecoder: NSCoder) { + super.init(coder: aDecoder) + setupLayoutManager() + } override func awakeFromNib() { super.awakeFromNib(); @@ -68,7 +73,7 @@ class CharacterTextView: UITextView, NSLayoutManagerDelegate { let glyphRange = NSMakeRange(index, 1); let characterRange = layoutManager.characterRangeForGlyphRange(glyphRange, actualGlyphRange:nil); let textContainer = layoutManager.textContainerForGlyphAtIndex(index, effectiveRange: nil); - var glyphRect = layoutManager.boundingRectForGlyphRange(glyphRange, inTextContainer: textContainer); + var glyphRect = layoutManager.boundingRectForGlyphRange(glyphRange, inTextContainer: textContainer!); var location = layoutManager.locationForGlyphAtIndex(index); var kerningRange = layoutManager.rangeOfNominallySpacedGlyphsContainingIndex(index); diff --git a/CharacterText/Classes/Flickr/FlickrCollectionViewCell.swift b/CharacterText/Classes/Flickr/FlickrCollectionViewCell.swift index 3a6bb19..029ccc4 100644 --- a/CharacterText/Classes/Flickr/FlickrCollectionViewCell.swift +++ b/CharacterText/Classes/Flickr/FlickrCollectionViewCell.swift @@ -12,10 +12,15 @@ class FlickrCollectionViewCell: UICollectionViewCell { var photoImageView: UIImageView! var darkenMask: UIView! - init(frame: CGRect) { + override init(frame: CGRect) { super.init(frame: frame) initialSetup() } + + required init(coder aDecoder: NSCoder) { + super.init(coder: aDecoder) + initialSetup() + } override func awakeFromNib() { super.awakeFromNib() @@ -24,7 +29,7 @@ class FlickrCollectionViewCell: UICollectionViewCell { func configure(flickrPhoto: FlickrPhoto) { photoImageView.alpha = 0 - photoImageView.setImageWithURL(flickrPhoto.photoURL) { image, error, cacheType in + photoImageView.sd_setImageWithURL(flickrPhoto.photoURL) { (image, error, cacheType, url) -> Void in switch cacheType { case SDImageCacheType.Memory: self.photoImageView.alpha = 1 @@ -34,6 +39,7 @@ class FlickrCollectionViewCell: UICollectionViewCell { } } } + } func initialSetup() { diff --git a/CharacterText/Classes/Utilities/CLMLayerAnimation.swift b/CharacterText/Classes/Utilities/CLMLayerAnimation.swift index 6a0ab0c..ea4477b 100644 --- a/CharacterText/Classes/Utilities/CLMLayerAnimation.swift +++ b/CharacterText/Classes/Utilities/CLMLayerAnimation.swift @@ -87,7 +87,7 @@ class CLMLayerAnimation: NSObject { } if animations.count > 0 { - animationGroup = CAAnimationGroup() + animationGroup = CAAnimationGroup() as CAAnimationGroup animationGroup!.animations = animations } diff --git a/CharacterText/Classes/ViewControllers/ViewController.swift b/CharacterText/Classes/ViewControllers/ViewController.swift index ac17fb1..23ea3a4 100644 --- a/CharacterText/Classes/ViewControllers/ViewController.swift +++ b/CharacterText/Classes/ViewControllers/ViewController.swift @@ -10,7 +10,7 @@ import UIKit class ViewController: UIViewController, UICollectionViewDataSource, UICollectionViewDelegate { - @IBOutlet var collectionView: UICollectionView + @IBOutlet var collectionView: UICollectionView! var dataArray = Array() var characterLabel: MotionLabel!; @@ -26,7 +26,7 @@ class ViewController: UIViewController, UICollectionViewDataSource, UICollection FlickrKit.sharedFlickrKit().initializeWithAPIKey("334626934a41897193b6a0613f1c94a0", sharedSecret: "b0132e5cfd44574b") let flickrKit = FlickrKit.sharedFlickrKit() flickrKit.call(FKFlickrInterestingnessGetList()) { response, error in - if response { + if let response = response { var photoUrls = Array() var photos: NSDictionary = response["photos"] as NSDictionary; var photoArray: NSArray = photos["photo"] as NSArray; @@ -54,13 +54,12 @@ class ViewController: UIViewController, UICollectionViewDataSource, UICollection characterLabel.text = "You" self.view.addSubview(characterLabel) } - - func collectionView(collectionView: UICollectionView!, numberOfItemsInSection section: Int) -> Int { + + func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int { return dataArray.count } - func collectionView(collectionView: UICollectionView!, cellForItemAtIndexPath indexPath: NSIndexPath!) -> UICollectionViewCell - { + func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell { var collectionViewCell : FlickrCollectionViewCell! = collectionView.dequeueReusableCellWithReuseIdentifier("FlickrCollectionViewCell", forIndexPath: indexPath) as FlickrCollectionViewCell collectionViewCell.configure(dataArray[indexPath.row]) diff --git a/Podfile.lock b/Podfile.lock index d1cdda5..d86219c 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -1,15 +1,15 @@ PODS: - - FlickrKit (1.0.3) - - SDWebImage (3.6): + - FlickrKit (1.0.4) + - SDWebImage (3.7.1): - SDWebImage/Core - - SDWebImage/Core (3.6) + - SDWebImage/Core (3.7.1) DEPENDENCIES: - FlickrKit - SDWebImage SPEC CHECKSUMS: - FlickrKit: 884ea0173b3f8a1f56fd418f2ae635a03a852294 - SDWebImage: c6989652c1cdf27cbdf3f56957e2030f825af5bc + FlickrKit: 1bbc5c91f065fa0d7ce4119c5d5c63a9241eea73 + SDWebImage: 116e88633b5b416ea0ca4b334a4ac59cf72dd38d COCOAPODS: 0.33.1 diff --git a/Pods/BuildHeaders/SDWebImage/UIImageView+HighlightedWebCache.h b/Pods/BuildHeaders/SDWebImage/UIImageView+HighlightedWebCache.h new file mode 120000 index 0000000..b05c09f --- /dev/null +++ b/Pods/BuildHeaders/SDWebImage/UIImageView+HighlightedWebCache.h @@ -0,0 +1 @@ +../../SDWebImage/SDWebImage/UIImageView+HighlightedWebCache.h \ No newline at end of file diff --git a/Pods/BuildHeaders/SDWebImage/UIView+WebCacheOperation.h b/Pods/BuildHeaders/SDWebImage/UIView+WebCacheOperation.h new file mode 120000 index 0000000..3486fa4 --- /dev/null +++ b/Pods/BuildHeaders/SDWebImage/UIView+WebCacheOperation.h @@ -0,0 +1 @@ +../../SDWebImage/SDWebImage/UIView+WebCacheOperation.h \ No newline at end of file diff --git a/Pods/FlickrKit/Classes/DevedUpKit/FKDUDefaultDiskCache.m b/Pods/FlickrKit/Classes/DevedUpKit/FKDUDefaultDiskCache.m index 36ec936..d5be2c5 100755 --- a/Pods/FlickrKit/Classes/DevedUpKit/FKDUDefaultDiskCache.m +++ b/Pods/FlickrKit/Classes/DevedUpKit/FKDUDefaultDiskCache.m @@ -149,7 +149,7 @@ - (NSUInteger) currentSizeOfCache { } self.cacheSize = totalSize; - NSLog(@"cache size is: %d", _cacheSize); + NSLog(@"cache size is: %lu", (unsigned long)_cacheSize); } return self.cacheSize; } @@ -183,11 +183,11 @@ - (void) emptyTheCache { - (NSString *) trimTheCache { NSAssert(![NSThread currentThread].isMainThread, @"should be in background"); NSUInteger targetBytes = self.maxDiskCacheSize * 0.75; - NSLog(@"Checking disk cache size. Limit %i bytes", targetBytes); - NSString *size = [NSString stringWithFormat:@"%i", [self currentSizeOfCache]]; + NSLog(@"Checking disk cache size. Limit %lu bytes", (unsigned long)targetBytes); + NSString *size = [NSString stringWithFormat:@"%lu", (unsigned long)[self currentSizeOfCache]]; if ([self currentSizeOfCache] > targetBytes) { - NSLog(@"Time to clean the cache! size is: %@, %d", [self cacheDir], [self currentSizeOfCache]); + NSLog(@"Time to clean the cache! size is: %@, %lu", [self cacheDir], (unsigned long)[self currentSizeOfCache]); NSError *error = nil; NSArray *dirContents = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:[self cacheDir] error:&error]; if (!error) { @@ -204,7 +204,7 @@ - (NSString *) trimTheCache { [[NSFileManager defaultManager] removeItemAtPath:[sortedDirContents lastObject] error:nil]; [sortedDirContents removeLastObject]; } - NSLog(@"Remaining cache size: %d, target size: %d", self.cacheSize, targetBytes); + NSLog(@"Remaining cache size: %lu, target size: %lu", (unsigned long)self.cacheSize, (unsigned long)targetBytes); } } NSLog(@"Finished checking disk cache"); diff --git a/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.h b/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.h index a01d5b2..813fc8f 100644 --- a/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.h +++ b/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.h @@ -12,4 +12,9 @@ + (void) writeMultipartStartString:(NSString *)startString imageStream:(NSInputStream *)imageInputStream toOutputStream:(NSOutputStream *)outputStream closingString:(NSString *)closingString; ++ (void)writeMultipartWithAssetURL:(NSURL*)assetURL + startString:(NSString *)startString + imageFile:(NSString *)imageFile + toOutputStream:(NSOutputStream *)outputStream + closingString:(NSString *)closingString; @end diff --git a/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.m b/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.m index b5b95cf..e62a8c1 100644 --- a/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.m +++ b/Pods/FlickrKit/Classes/DevedUpKit/FKDUStreamUtil.m @@ -8,6 +8,8 @@ #import "FKDUStreamUtil.h" +#import + @implementation FKDUStreamUtil + (void) writeMultipartStartString:(NSString *)startString imageStream:(NSInputStream *)imageInputStream toOutputStream:(NSOutputStream *)outputStream closingString:(NSString *)closingString { @@ -48,4 +50,78 @@ + (void) writeMultipartStartString:(NSString *)startString imageStream:(NSInputS [outputStream close]; } ++ (void)writeMultipartWithAssetURL:(NSURL*)assetURL + startString:(NSString *)startString + imageFile:(NSString *)imageFile + toOutputStream:(NSOutputStream *)outputStream + closingString:(NSString *)closingString { + + // finish up the formdata + NSOutputStream *startStream = [NSOutputStream outputStreamToFileAtPath:imageFile append:NO]; + [startStream open]; + + NSData *openingData = [startString dataUsingEncoding:NSUTF8StringEncoding]; + NSInteger startwriteLength = [openingData length]; + NSInteger startactualWrittenLength = [startStream write:[openingData bytes] maxLength:startwriteLength]; + + [startStream close]; + NSAssert(startactualWrittenLength == startwriteLength, @"Start string not writtern"); + + dispatch_semaphore_t sema = dispatch_semaphore_create(0); + ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init]; + + dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT,0), ^{ + [library assetForURL:assetURL resultBlock:^(ALAsset *asset) { + ALAssetRepresentation *representation = [asset defaultRepresentation]; + NSOutputStream *mediaStream = [NSOutputStream outputStreamToFileAtPath:imageFile append:YES]; + [mediaStream open]; + + NSUInteger bufferSize = 65536; + NSUInteger read = 0, offset = 0, written = 0; + uint8_t *buff = (uint8_t *)malloc(sizeof(uint8_t)*bufferSize); + NSError *err = nil; + + do { + read = [representation getBytes:buff fromOffset:offset length:bufferSize error:&err]; + written = [mediaStream write:buff maxLength:read]; + offset += read; + if (err != nil) { + NSLog(@"ERROR!!:%@",err); + [mediaStream close]; + free(buff); + return; + } + if (read != written) { + NSLog(@"ERROR!!%@",@"Couldn't prepare data for upload!"); + [mediaStream close]; + free(buff); + return; + } + } while (read != 0); + + free(buff); + [mediaStream close]; + + dispatch_semaphore_signal(sema); + } failureBlock:^(NSError *error) { + dispatch_semaphore_signal(sema); + }]; + }); + dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER); + +#if OS_OBJECT_USE_OBJC!=1 + dispatch_release(sema); +#endif + + NSOutputStream *endStream = [NSOutputStream outputStreamToFileAtPath:imageFile append:YES]; + [endStream open]; + + NSData *closingData = [closingString dataUsingEncoding:NSUTF8StringEncoding]; + NSInteger writeLength = [closingData length]; + NSInteger actualWrittenLength = [endStream write:[closingData bytes] maxLength:writeLength]; + + [endStream close]; + NSAssert(actualWrittenLength == writeLength, @"Closing string not written"); +} + @end diff --git a/Pods/FlickrKit/Classes/FlickrKit.h b/Pods/FlickrKit/Classes/FlickrKit.h index 8817e7d..f736330 100644 --- a/Pods/FlickrKit/Classes/FlickrKit.h +++ b/Pods/FlickrKit/Classes/FlickrKit.h @@ -96,5 +96,7 @@ - (FKImageUploadNetworkOperation *) uploadImage:(UIImage *)image args:(NSDictionary *)args completion:(FKAPIImageUploadCompletion)completion; +- (FKImageUploadNetworkOperation *) uploadAssetURL:(NSURL *)assetURL args:(NSDictionary *)args completion:(FKAPIImageUploadCompletion)completion; + @end diff --git a/Pods/FlickrKit/Classes/FlickrKit/FlickrKit.m b/Pods/FlickrKit/Classes/FlickrKit/FlickrKit.m index d1b4c5f..37ac72d 100644 --- a/Pods/FlickrKit/Classes/FlickrKit/FlickrKit.m +++ b/Pods/FlickrKit/Classes/FlickrKit/FlickrKit.m @@ -458,4 +458,12 @@ - (FKImageUploadNetworkOperation *) uploadImage:(UIImage *)image args:(NSDiction return imageUpload; } +- (FKImageUploadNetworkOperation *) uploadAssetURL:(NSURL *)assetURL args:(NSDictionary *)args completion:(FKAPIImageUploadCompletion)completion { + FKImageUploadNetworkOperation *imageUpload = [[FKImageUploadNetworkOperation alloc] initWithAssetURL:assetURL + arguments:args + completion:completion]; + [[FKDUNetworkController sharedController] execute:imageUpload]; + return imageUpload; +} + @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.h b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.h index e9af73b..b436629 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.h @@ -2,7 +2,7 @@ // FKFlickrActivityUserComments.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrActivityUserCommentsError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrActivityUserCommentsError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrActivityUserCommentsError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrActivityUserCommentsError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrActivityUserCommentsError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrActivityUserCommentsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrActivityUserCommentsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrActivityUserCommentsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrActivityUserCommentsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrActivityUserCommentsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrActivityUserCommentsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,41 +34,41 @@ Returns a list of recent activity on photos commented on by the calling user. - - A set of photos - - yay - - - - - A photo - - test - nice - - + + + A set of photos + + yay + + + + + A photo + + test + nice + + */ @interface FKFlickrActivityUserComments : NSObject /* Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.m b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.m index f0c5cd3..f1140f3 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserComments.m @@ -2,7 +2,7 @@ // FKFlickrActivityUserComments.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrActivityUserComments + + - (BOOL) needsLogin { return YES; } @@ -55,6 +57,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrActivityUserCommentsError_SSLIsRequired: + return @"SSL is required"; case FKFlickrActivityUserCommentsError_InvalidSignature: return @"Invalid signature"; case FKFlickrActivityUserCommentsError_MissingSignature: @@ -67,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrActivityUserCommentsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrActivityUserCommentsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrActivityUserCommentsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrActivityUserCommentsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.h index e820615..e808c99 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.h @@ -2,7 +2,7 @@ // FKFlickrActivityUserPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrActivityUserPhotosError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrActivityUserPhotosError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrActivityUserPhotosError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrActivityUserPhotosError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrActivityUserPhotosError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrActivityUserPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrActivityUserPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrActivityUserPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrActivityUserPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrActivityUserPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrActivityUserPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,47 +34,47 @@ Returns a list of recent activity on photos belonging to the calling user. Do Response: - - - A set of photos - - yay - - - - - A photo - - test - nice - - + + + A set of photos + + yay + + + + + A photo + + test + nice + + */ @interface FKFlickrActivityUserPhotos : NSObject /* The timeframe in which to return updates for. This can be specified in days ('2d') or hours ('4h'). The default behavoir is to return changes since the beginning of the previous user session. */ -@property (nonatomic, strong) NSString *timeframe; +@property (nonatomic, copy) NSString *timeframe; /* Number of items to return per page. If this argument is omitted, it defaults to 10. The maximum allowed value is 50. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.m b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.m index c515f34..a0d7d03 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Activity/FKFlickrActivityUserPhotos.m @@ -2,7 +2,7 @@ // FKFlickrActivityUserPhotos.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrActivityUserPhotos + + - (BOOL) needsLogin { return YES; } @@ -58,6 +60,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrActivityUserPhotosError_SSLIsRequired: + return @"SSL is required"; case FKFlickrActivityUserPhotosError_InvalidSignature: return @"Invalid signature"; case FKFlickrActivityUserPhotosError_MissingSignature: @@ -70,6 +74,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrActivityUserPhotosError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrActivityUserPhotosError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrActivityUserPhotosError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrActivityUserPhotosError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.h index cd51b4b..37fa27c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.h @@ -2,7 +2,7 @@ // FKFlickrAuthCheckToken.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrAuthCheckTokenError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrAuthCheckTokenError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthCheckTokenError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthCheckTokenError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthCheckTokenError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthCheckTokenError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthCheckTokenError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,17 +31,17 @@ Returns the credentials attached to an authentication token. This call must - 976598454353455 - read - + + 976598454353455 + read + */ @interface FKFlickrAuthCheckToken : NSObject /* The authentication token to check. */ -@property (nonatomic, strong) NSString *auth_token; /* (Required) */ +@property (nonatomic, copy) NSString *auth_token; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.m index 645dfd9..81597aa 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthCheckToken.m @@ -2,7 +2,7 @@ // FKFlickrAuthCheckToken.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthCheckToken + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthCheckTokenError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthCheckTokenError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthCheckTokenError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthCheckTokenError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.h index 2bd8a54..d2fa01e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.h @@ -2,7 +2,7 @@ // FKFlickrAuthGetFrob.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrAuthGetFrobError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrAuthGetFrobError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthGetFrobError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthGetFrobError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthGetFrobError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthGetFrobError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthGetFrobError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.m index 3c1d7e5..27b6d2d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFrob.m @@ -2,7 +2,7 @@ // FKFlickrAuthGetFrob.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthGetFrob + + - (BOOL) needsLogin { return NO; } @@ -57,6 +59,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthGetFrobError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthGetFrobError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthGetFrobError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthGetFrobError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.h index cf80b7e..b0a86b5 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.h @@ -2,7 +2,7 @@ // FKFlickrAuthGetFullToken.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrAuthGetFullTokenError_MinitokenNotFound = 1, /* The passed mini-token was not valid. */ FKFlickrAuthGetFullTokenError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthGetFullTokenError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthGetFullTokenError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthGetFullTokenError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthGetFullTokenError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthGetFullTokenError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,17 +31,17 @@ Get the full authentication token for a mini-token. This method call must be Response: - - 976598454353455 - write - + + 976598454353455 + write + */ @interface FKFlickrAuthGetFullToken : NSObject /* The mini-token typed in by a user. It should be 9 digits long. It may optionally contain dashes. */ -@property (nonatomic, strong) NSString *mini_token; /* (Required) */ +@property (nonatomic, copy) NSString *mini_token; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.m index 4d803c1..846b78a 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetFullToken.m @@ -2,7 +2,7 @@ // FKFlickrAuthGetFullToken.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthGetFullToken + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthGetFullTokenError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthGetFullTokenError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthGetFullTokenError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthGetFullTokenError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.h index 39e178a..b79dc35 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.h @@ -2,7 +2,7 @@ // FKFlickrAuthGetToken.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -16,6 +16,7 @@ typedef enum { FKFlickrAuthGetTokenError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrAuthGetTokenError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthGetTokenError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthGetTokenError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthGetTokenError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthGetTokenError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthGetTokenError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,17 +33,17 @@ Returns the auth token for the given frob, if one has been attached. This met Response: - - 976598454353455 - write - + + 976598454353455 + write + */ @interface FKFlickrAuthGetToken : NSObject /* The frob to check. */ -@property (nonatomic, strong) NSString *frob; /* (Required) */ +@property (nonatomic, copy) NSString *frob; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.m index be2943b..4ef7d60 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/FKFlickrAuthGetToken.m @@ -2,7 +2,7 @@ // FKFlickrAuthGetToken.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthGetToken + + - (BOOL) needsLogin { return NO; } @@ -66,6 +68,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthGetTokenError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthGetTokenError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthGetTokenError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthGetTokenError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.h index 462110e..7a95ede 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.h @@ -2,7 +2,7 @@ // FKFlickrAuthOauthCheckToken.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrAuthOauthCheckTokenError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrAuthOauthCheckTokenError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthOauthCheckTokenError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthOauthCheckTokenError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthOauthCheckTokenError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthOauthCheckTokenError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthOauthCheckTokenError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,17 +31,17 @@ Returns the credentials attached to an OAuth authentication token. Response: - - 72157627611980735-09e87c3024f733da - write - + + 72157627611980735-09e87c3024f733da + write + */ @interface FKFlickrAuthOauthCheckToken : NSObject /* The OAuth authentication token to check. */ -@property (nonatomic, strong) NSString *oauth_token; /* (Required) */ +@property (nonatomic, copy) NSString *oauth_token; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.m index d8c227f..6f3fba0 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthCheckToken.m @@ -2,7 +2,7 @@ // FKFlickrAuthOauthCheckToken.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthOauthCheckToken + + - (BOOL) needsLogin { return NO; } @@ -64,6 +66,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthOauthCheckTokenError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthOauthCheckTokenError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthOauthCheckTokenError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthOauthCheckTokenError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.h b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.h index 536fc2a..48ab6e6 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.h @@ -2,7 +2,7 @@ // FKFlickrAuthOauthGetAccessToken.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrAuthOauthGetAccessTokenError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrAuthOauthGetAccessTokenError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrAuthOauthGetAccessTokenError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrAuthOauthGetAccessTokenError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrAuthOauthGetAccessTokenError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrAuthOauthGetAccessTokenError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrAuthOauthGetAccessTokenError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,8 +31,8 @@ Exchange an auth token from the old Authentication API, to an OAuth access token Response: - - + + */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.m b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.m index 7aa321a..853fbd6 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Auth/Oauth/FKFlickrAuthOauthGetAccessToken.m @@ -2,7 +2,7 @@ // FKFlickrAuthOauthGetAccessToken.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrAuthOauthGetAccessToken + + - (BOOL) needsLogin { return NO; } @@ -57,6 +59,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrAuthOauthGetAccessTokenError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrAuthOauthGetAccessTokenError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrAuthOauthGetAccessTokenError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrAuthOauthGetAccessTokenError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.h index 881e881..a455a84 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.h @@ -2,7 +2,7 @@ // FKFlickrBlogsGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrBlogsGetListError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrBlogsGetListError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrBlogsGetListError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrBlogsGetListError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrBlogsGetListError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrBlogsGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrBlogsGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrBlogsGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrBlogsGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrBlogsGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrBlogsGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,18 +35,18 @@ Get a list of configured blogs for the calling user. Response: - - - + + + */ @interface FKFlickrBlogsGetList : NSObject /* Optionally only return blogs for a given service id. You can get a list of from flickr.blogs.getServices(). */ -@property (nonatomic, strong) NSString *service; +@property (nonatomic, copy) NSString *service; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.m index d4e6899..895ca32 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetList.m @@ -2,7 +2,7 @@ // FKFlickrBlogsGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrBlogsGetList + + - (BOOL) needsLogin { return YES; } @@ -52,6 +54,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrBlogsGetListError_SSLIsRequired: + return @"SSL is required"; case FKFlickrBlogsGetListError_InvalidSignature: return @"Invalid signature"; case FKFlickrBlogsGetListError_MissingSignature: @@ -64,6 +68,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrBlogsGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrBlogsGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrBlogsGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrBlogsGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.h b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.h index 0dd95c0..f8a7fb9 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.h @@ -2,7 +2,7 @@ // FKFlickrBlogsGetServices.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrBlogsGetServicesError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrBlogsGetServicesError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrBlogsGetServicesError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrBlogsGetServicesError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrBlogsGetServicesError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrBlogsGetServicesError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,18 +29,18 @@ Return a list of Flickr supported blogging services Response: - -Blogger -Typepad -Movable Type -LiveJournal -Wordpress -MetaWeblogAPI -Manila -AtomAPI -BloggerAPI -Vox -Twitter + +Blogger +Typepad +Movable Type +LiveJournal +Wordpress +MetaWeblogAPI +Manila +AtomAPI +BloggerAPI +Vox +Twitter */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.m b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.m index 2d8cfa9..e0fd9e3 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsGetServices.m @@ -2,7 +2,7 @@ // FKFlickrBlogsGetServices.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrBlogsGetServices + + - (BOOL) needsLogin { return NO; } @@ -53,6 +55,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrBlogsGetServicesError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrBlogsGetServicesError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrBlogsGetServicesError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrBlogsGetServicesError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.h b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.h index 540d56d..26f99a9 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.h @@ -2,7 +2,7 @@ // FKFlickrBlogsPostPhoto.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,12 +15,14 @@ typedef enum { FKFlickrBlogsPostPhotoError_PhotoNotFound = 2, /* The photo id was not the id of a public photo */ FKFlickrBlogsPostPhotoError_PasswordNeeded = 3, /* A password is not stored for the blog and one was not passed with the request */ FKFlickrBlogsPostPhotoError_BlogPostFailed = 4, /* The blog posting failed (a blogging API failure of some sort) */ + FKFlickrBlogsPostPhotoError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrBlogsPostPhotoError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrBlogsPostPhotoError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrBlogsPostPhotoError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrBlogsPostPhotoError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrBlogsPostPhotoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrBlogsPostPhotoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrBlogsPostPhotoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrBlogsPostPhotoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrBlogsPostPhotoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrBlogsPostPhotoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -40,22 +42,22 @@ typedef enum { @interface FKFlickrBlogsPostPhoto : NSObject /* The id of the blog to post to. */ -@property (nonatomic, strong) NSString *blog_id; +@property (nonatomic, copy) NSString *blog_id; /* The id of the photo to blog */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The blog post title */ -@property (nonatomic, strong) NSString *title; /* (Required) */ +@property (nonatomic, copy) NSString *title; /* (Required) */ /* The blog post body */ -@property (nonatomic, strong) NSString *description; /* (Required) */ +@property (copy) NSString *description; /* (Required) */ /* The password for the blog (used when the blog does not have a stored password). */ -@property (nonatomic, strong) NSString *blog_password; +@property (nonatomic, copy) NSString *blog_password; /* A Flickr supported blogging service. Instead of passing a blog id you can pass a service id and we'll post to the first blog of that service we find. */ -@property (nonatomic, strong) NSString *service; +@property (nonatomic, copy) NSString *service; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.m b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.m index db6c83c..d44cf6a 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Blogs/FKFlickrBlogsPostPhoto.m @@ -2,7 +2,7 @@ // FKFlickrBlogsPostPhoto.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,9 @@ @implementation FKFlickrBlogsPostPhoto + +@synthesize description = _description; + - (BOOL) needsLogin { return YES; } @@ -87,6 +90,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Password needed"; case FKFlickrBlogsPostPhotoError_BlogPostFailed: return @"Blog post failed"; + case FKFlickrBlogsPostPhotoError_SSLIsRequired: + return @"SSL is required"; case FKFlickrBlogsPostPhotoError_InvalidSignature: return @"Invalid signature"; case FKFlickrBlogsPostPhotoError_MissingSignature: @@ -99,6 +104,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrBlogsPostPhotoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrBlogsPostPhotoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrBlogsPostPhotoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrBlogsPostPhotoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.h b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.h index 6ee236a..881197d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.h @@ -2,7 +2,7 @@ // FKFlickrCamerasGetBrandModels.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrCamerasGetBrandModelsError_BrandNotFound = 1, /* Unable to find the given brand ID. */ FKFlickrCamerasGetBrandModelsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrCamerasGetBrandModelsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrCamerasGetBrandModelsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrCamerasGetBrandModelsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrCamerasGetBrandModelsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrCamerasGetBrandModelsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,29 +30,29 @@ Retrieve all the models for a given camera brand. Response: - - - - iPhone 9000 -
- 22.0 - 3.0 - 40.5 - Flash -
- - http://farm3.staticflickr.com/1234/cameras/123456_model_small_123456.jpg - http://farm3.staticflickr.com/1234/cameras/123456_model_large_123456.jpg - -
-
+ + + + iPhone 9000 +
+ 22.0 + 3.0 + 40.5 + Flash +
+ + http://farm3.staticflickr.com/1234/cameras/123456_model_small_123456.jpg + http://farm3.staticflickr.com/1234/cameras/123456_model_large_123456.jpg + +
+
*/ @interface FKFlickrCamerasGetBrandModels : NSObject /* The ID of the requested brand (as returned from flickr.cameras.getBrands). */ -@property (nonatomic, strong) NSString *brand; /* (Required) */ +@property (nonatomic, copy) NSString *brand; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.m b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.m index 3c006a6..6cdcffd 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrandModels.m @@ -2,7 +2,7 @@ // FKFlickrCamerasGetBrandModels.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrCamerasGetBrandModels + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrCamerasGetBrandModelsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrCamerasGetBrandModelsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrCamerasGetBrandModelsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrCamerasGetBrandModelsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.h b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.h index aaf5c66..44801ce 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.h @@ -2,7 +2,7 @@ // FKFlickrCamerasGetBrands.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrCamerasGetBrandsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrCamerasGetBrandsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrCamerasGetBrandsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrCamerasGetBrandsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrCamerasGetBrandsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrCamerasGetBrandsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,12 +29,12 @@ Returns all the brands of cameras that Flickr knows about. Response: - - - Canon - Nikon - Apple - + + + Canon + Nikon + Apple + */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.m b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.m index 2649903..fdb7b45 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Cameras/FKFlickrCamerasGetBrands.m @@ -2,7 +2,7 @@ // FKFlickrCamerasGetBrands.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrCamerasGetBrands + + - (BOOL) needsLogin { return NO; } @@ -53,6 +55,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrCamerasGetBrandsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrCamerasGetBrandsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrCamerasGetBrandsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrCamerasGetBrandsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.h index 274f51f..e8aadf5 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrCollectionsGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrCollectionsGetInfoError_CollectionNotFound = 1, /* The requested collection could not be found or is not visible to the calling user. */ + FKFlickrCollectionsGetInfoError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrCollectionsGetInfoError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrCollectionsGetInfoError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrCollectionsGetInfoError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrCollectionsGetInfoError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrCollectionsGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrCollectionsGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrCollectionsGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrCollectionsGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrCollectionsGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrCollectionsGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,22 +35,22 @@ Returns information for a single collection. Currently can only be called by th Response: - -All My Photos -Photos! - - - - -.... - + +All My Photos +Photos! + + + + +.... + */ @interface FKFlickrCollectionsGetInfo : NSObject /* The ID of the collection to fetch information for. */ -@property (nonatomic, strong) NSString *collection_id; /* (Required) */ +@property (nonatomic, copy) NSString *collection_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.m index 6e09b4f..68f1098 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrCollectionsGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrCollectionsGetInfo + + - (BOOL) needsLogin { return YES; } @@ -58,6 +60,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrCollectionsGetInfoError_CollectionNotFound: return @"Collection not found"; + case FKFlickrCollectionsGetInfoError_SSLIsRequired: + return @"SSL is required"; case FKFlickrCollectionsGetInfoError_InvalidSignature: return @"Invalid signature"; case FKFlickrCollectionsGetInfoError_MissingSignature: @@ -70,6 +74,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrCollectionsGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrCollectionsGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrCollectionsGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrCollectionsGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.h b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.h index 369eafc..19a873b 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.h @@ -2,7 +2,7 @@ // FKFlickrCollectionsGetTree.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrCollectionsGetTreeError_CollectionNotFound = 2, /* The specified collection does not exist. */ FKFlickrCollectionsGetTreeError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrCollectionsGetTreeError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrCollectionsGetTreeError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrCollectionsGetTreeError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrCollectionsGetTreeError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrCollectionsGetTreeError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -31,22 +32,22 @@ A nested tree of collections, and the collections and sets they contain. Response: - - - - - + + + + + */ @interface FKFlickrCollectionsGetTree : NSObject /* The ID of the collection to fetch a tree for, or zero to fetch the root collection. Defaults to zero. */ -@property (nonatomic, strong) NSString *collection_id; +@property (nonatomic, copy) NSString *collection_id; /* The ID of the account to fetch the collection tree for. Deafults to the calling user. */ -@property (nonatomic, strong) NSString *user_id; +@property (nonatomic, copy) NSString *user_id; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.m b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.m index f83b315..0380f42 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Collections/FKFlickrCollectionsGetTree.m @@ -2,7 +2,7 @@ // FKFlickrCollectionsGetTree.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrCollectionsGetTree + + - (BOOL) needsLogin { return NO; } @@ -63,6 +65,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrCollectionsGetTreeError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrCollectionsGetTreeError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrCollectionsGetTreeError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrCollectionsGetTreeError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.h b/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.h index de06c9e..d8bb2be 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.h @@ -2,7 +2,7 @@ // FKFlickrCommonsGetInstitutions.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrCommonsGetInstitutionsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrCommonsGetInstitutionsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrCommonsGetInstitutionsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrCommonsGetInstitutionsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrCommonsGetInstitutionsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrCommonsGetInstitutionsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,17 +29,17 @@ Retrieves a list of the current Commons institutions. Response: - - - - Institution - - http://example.com/ - http://example.com/commons/license - http://flickr.com/photos/institution - - - + + + + Institution + + http://example.com/ + http://example.com/commons/license + http://flickr.com/photos/institution + + + */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.m b/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.m index 905339d..995c86c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Commons/FKFlickrCommonsGetInstitutions.m @@ -2,7 +2,7 @@ // FKFlickrCommonsGetInstitutions.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrCommonsGetInstitutions + + - (BOOL) needsLogin { return NO; } @@ -53,6 +55,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrCommonsGetInstitutionsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrCommonsGetInstitutionsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrCommonsGetInstitutionsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrCommonsGetInstitutionsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.h index 9cb876f..075b8a7 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.h @@ -2,7 +2,7 @@ // FKFlickrContactsGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrContactsGetListError_InvalidSortParameter = 1, /* The possible values are: name and time. */ + FKFlickrContactsGetListError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrContactsGetListError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrContactsGetListError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrContactsGetListError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrContactsGetListError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrContactsGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrContactsGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrContactsGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrContactsGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrContactsGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrContactsGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,46 +35,46 @@ Get a list of contacts for the calling user. Response: - - - - + + + + */ @interface FKFlickrContactsGetList : NSObject -/* An optional filter of the results. The following values are valid:
-  -
-
friends
-
Only contacts who are friends (and not family)
- -
family
-
Only contacts who are family (and not friends)
- -
both
-
Only contacts who are both friends and family
- -
neither
-
Only contacts who are neither friends nor family
+/* An optional filter of the results. The following values are valid:
+  +
+
friends
+
Only contacts who are friends (and not family)
+ +
family
+
Only contacts who are family (and not friends)
+ +
both
+
Only contacts who are both friends and family
+ +
neither
+
Only contacts who are neither friends nor family
*/ -@property (nonatomic, strong) NSString *filter; +@property (nonatomic, copy) NSString *filter; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; /* Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The order in which to sort the returned contacts. Defaults to name. The possible values are: name and time. */ -@property (nonatomic, strong) NSString *sort; +@property (nonatomic, copy) NSString *sort; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.m index 30635ad..6651f55 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetList.m @@ -2,7 +2,7 @@ // FKFlickrContactsGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrContactsGetList + + - (BOOL) needsLogin { return YES; } @@ -63,6 +65,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrContactsGetListError_InvalidSortParameter: return @"Invalid sort parameter."; + case FKFlickrContactsGetListError_SSLIsRequired: + return @"SSL is required"; case FKFlickrContactsGetListError_InvalidSignature: return @"Invalid signature"; case FKFlickrContactsGetListError_MissingSignature: @@ -75,6 +79,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrContactsGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrContactsGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrContactsGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrContactsGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.h b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.h index 3d3beed..2d39daa 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.h @@ -2,7 +2,7 @@ // FKFlickrContactsGetListRecentlyUploaded.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrContactsGetListRecentlyUploadedError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrContactsGetListRecentlyUploadedError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrContactsGetListRecentlyUploadedError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrContactsGetListRecentlyUploadedError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrContactsGetListRecentlyUploadedError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrContactsGetListRecentlyUploadedError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrContactsGetListRecentlyUploadedError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrContactsGetListRecentlyUploadedError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrContactsGetListRecentlyUploadedError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrContactsGetListRecentlyUploadedError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrContactsGetListRecentlyUploadedError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -27,8 +29,8 @@ typedef enum { /* -Return a list of contacts for a user who have recently uploaded photos along with the total count of photos uploaded.

- +Return a list of contacts for a user who have recently uploaded photos along with the total count of photos uploaded.

+ This method is still considered experimental. We don't plan for it to change or to go away but so long as this notice is present you should write your code accordingly. @@ -37,19 +39,19 @@ This method is still considered experimental. We don't plan for it to change or */ @interface FKFlickrContactsGetListRecentlyUploaded : NSObject -/* Limits the resultset to contacts that have uploaded photos since this date. The date should be in the form of a Unix timestamp. - +/* Limits the resultset to contacts that have uploaded photos since this date. The date should be in the form of a Unix timestamp. + The default offset is (1) hour and the maximum (24) hours. */ -@property (nonatomic, strong) NSString *date_lastupload; - -/* Limit the result set to all contacts or only those who are friends or family. Valid options are: - -
    -
  • ff friends and family
  • -
  • all all your contacts
  • -
+@property (nonatomic, copy) NSString *date_lastupload; + +/* Limit the result set to all contacts or only those who are friends or family. Valid options are: + +
    +
  • ff friends and family
  • +
  • all all your contacts
  • +
Default value is "all". */ -@property (nonatomic, strong) NSString *filter; +@property (nonatomic, copy) NSString *filter; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.m b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.m index 87b68be..bb4604e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetListRecentlyUploaded.m @@ -2,7 +2,7 @@ // FKFlickrContactsGetListRecentlyUploaded.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrContactsGetListRecentlyUploaded + + - (BOOL) needsLogin { return YES; } @@ -55,6 +57,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrContactsGetListRecentlyUploadedError_SSLIsRequired: + return @"SSL is required"; case FKFlickrContactsGetListRecentlyUploadedError_InvalidSignature: return @"Invalid signature"; case FKFlickrContactsGetListRecentlyUploadedError_MissingSignature: @@ -67,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrContactsGetListRecentlyUploadedError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrContactsGetListRecentlyUploadedError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrContactsGetListRecentlyUploadedError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrContactsGetListRecentlyUploadedError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.h b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.h index 43b0387..5a45169 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.h @@ -2,7 +2,7 @@ // FKFlickrContactsGetPublicList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrContactsGetPublicListError_UserNotFound = 1, /* The specified user NSID was not a valid user. */ FKFlickrContactsGetPublicListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrContactsGetPublicListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrContactsGetPublicListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrContactsGetPublicListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrContactsGetPublicListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrContactsGetPublicListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,26 +31,23 @@ Get the contact list for a user. Response: - - - - + + + + */ @interface FKFlickrContactsGetPublicList : NSObject /* The NSID of the user to fetch the contact list for. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ +@property (nonatomic, copy) NSString *user_id; /* (Required) */ /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; /* Number of photos to return per page. If this argument is omitted, it defaults to 1000. The maximum allowed value is 1000. */ -@property (nonatomic, strong) NSString *per_page; - -/* Include additional information for each contact, such as realname, is_friend, is_family, path_alias and location. */ -@property (nonatomic, strong) NSString *show_more; +@property (nonatomic, copy) NSString *per_page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.m b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.m index 224a0b7..3019c1c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetPublicList.m @@ -2,7 +2,7 @@ // FKFlickrContactsGetPublicList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrContactsGetPublicList + + - (BOOL) needsLogin { return NO; } @@ -56,9 +58,6 @@ - (NSDictionary *) args { if(self.per_page) { [args setValue:self.per_page forKey:@"per_page"]; } - if(self.show_more) { - [args setValue:self.show_more forKey:@"show_more"]; - } return [args copy]; } @@ -71,6 +70,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrContactsGetPublicListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrContactsGetPublicListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrContactsGetPublicListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrContactsGetPublicListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.h b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.h index d73a50c..cf1aeb4 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.h @@ -2,7 +2,7 @@ // FKFlickrContactsGetTaggingSuggestions.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrContactsGetTaggingSuggestionsError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrContactsGetTaggingSuggestionsError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrContactsGetTaggingSuggestionsError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrContactsGetTaggingSuggestionsError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrContactsGetTaggingSuggestionsError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrContactsGetTaggingSuggestionsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrContactsGetTaggingSuggestionsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrContactsGetTaggingSuggestionsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrContactsGetTaggingSuggestionsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrContactsGetTaggingSuggestionsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrContactsGetTaggingSuggestionsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,26 +34,20 @@ Get suggestions for tagging people in photos based on the calling user's contact Response: - - - - + + + + */ @interface FKFlickrContactsGetTaggingSuggestions : NSObject -/* Return calling user in the list of suggestions. Default: true. */ -@property (nonatomic, strong) NSString *include_self; - -/* Include suggestions from the user's address book. Default: false */ -@property (nonatomic, strong) NSString *include_address_book; - /* Number of contacts to return per page. If this argument is omitted, all contacts will be returned. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.m b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.m index 389ef4e..29b7557 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Contacts/FKFlickrContactsGetTaggingSuggestions.m @@ -2,7 +2,7 @@ // FKFlickrContactsGetTaggingSuggestions.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrContactsGetTaggingSuggestions + + - (BOOL) needsLogin { return YES; } @@ -43,12 +45,6 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; - if(self.include_self) { - [args setValue:self.include_self forKey:@"include_self"]; - } - if(self.include_address_book) { - [args setValue:self.include_address_book forKey:@"include_address_book"]; - } if(self.per_page) { [args setValue:self.per_page forKey:@"per_page"]; } @@ -61,6 +57,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrContactsGetTaggingSuggestionsError_SSLIsRequired: + return @"SSL is required"; case FKFlickrContactsGetTaggingSuggestionsError_InvalidSignature: return @"Invalid signature"; case FKFlickrContactsGetTaggingSuggestionsError_MissingSignature: @@ -73,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrContactsGetTaggingSuggestionsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrContactsGetTaggingSuggestionsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrContactsGetTaggingSuggestionsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrContactsGetTaggingSuggestionsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.h b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.h index e63b463..611c2f7 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.h @@ -2,7 +2,7 @@ // FKFlickrFavoritesAdd.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,12 +15,14 @@ typedef enum { FKFlickrFavoritesAddError_PhotoIsOwnedByYou = 2, /* The photo belongs to the user and so cannot be added to their favorites. */ FKFlickrFavoritesAddError_PhotoIsAlreadyInFavorites = 3, /* The photo is already in the user's list of favorites. */ FKFlickrFavoritesAddError_UserCannotSeePhoto = 4, /* The user does not have permission to add the photo to their favorites. */ + FKFlickrFavoritesAddError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrFavoritesAddError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrFavoritesAddError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrFavoritesAddError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrFavoritesAddError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrFavoritesAddError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrFavoritesAddError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrFavoritesAddError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrFavoritesAddError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrFavoritesAddError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrFavoritesAddError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -40,7 +42,7 @@ Adds a photo to a user's favorites list. @interface FKFlickrFavoritesAdd : NSObject /* The id of the photo to add to the user's favorites. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.m b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.m index de50203..39c6453 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesAdd.m @@ -2,7 +2,7 @@ // FKFlickrFavoritesAdd.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrFavoritesAdd + + - (BOOL) needsLogin { return YES; } @@ -64,6 +66,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Photo is already in favorites"; case FKFlickrFavoritesAddError_UserCannotSeePhoto: return @"User cannot see photo"; + case FKFlickrFavoritesAddError_SSLIsRequired: + return @"SSL is required"; case FKFlickrFavoritesAddError_InvalidSignature: return @"Invalid signature"; case FKFlickrFavoritesAddError_MissingSignature: @@ -76,6 +80,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrFavoritesAddError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrFavoritesAddError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrFavoritesAddError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrFavoritesAddError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.h b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.h index 029223d..871456d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.h @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetContext.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -16,6 +16,7 @@ typedef enum { FKFlickrFavoritesGetContextError_PhotoNotAFavorite = 3, /* The specified photo is not a favorite of the specified user. */ FKFlickrFavoritesGetContextError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrFavoritesGetContextError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrFavoritesGetContextError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrFavoritesGetContextError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrFavoritesGetContextError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrFavoritesGetContextError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,31 +33,22 @@ Returns next and previous favorites for a photo in a user's favorites. Response: - -3 - - + +3 + + */ @interface FKFlickrFavoritesGetContext : NSObject /* The id of the photo to fetch the context for. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The user who counts the photo as a favorite. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ - -/* */ -@property (nonatomic, strong) NSString *num_prev; - -/* */ -@property (nonatomic, strong) NSString *num_next; - -/* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_z, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *user_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.m b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.m index 410fe2c..acf9ce0 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetContext.m @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetContext.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrFavoritesGetContext + + - (BOOL) needsLogin { return NO; } @@ -57,15 +59,6 @@ - (NSDictionary *) args { if(self.user_id) { [args setValue:self.user_id forKey:@"user_id"]; } - if(self.num_prev) { - [args setValue:self.num_prev forKey:@"num_prev"]; - } - if(self.num_next) { - [args setValue:self.num_next forKey:@"num_next"]; - } - if(self.extras) { - [args setValue:self.extras forKey:@"extras"]; - } return [args copy]; } @@ -82,6 +75,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrFavoritesGetContextError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrFavoritesGetContextError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrFavoritesGetContextError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrFavoritesGetContextError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.h index 5318bd1..5ba8535 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.h @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrFavoritesGetListError_UserNotFound = 1, /* The specified user NSID was not a valid flickr user. */ + FKFlickrFavoritesGetListError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrFavoritesGetListError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrFavoritesGetListError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrFavoritesGetListError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrFavoritesGetListError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrFavoritesGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrFavoritesGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrFavoritesGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrFavoritesGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrFavoritesGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrFavoritesGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -37,25 +39,22 @@ Returns a list of the user's favorite photos. Only photos which the calling user @interface FKFlickrFavoritesGetList : NSObject /* The NSID of the user to fetch the favorites list for. If this argument is omitted, the favorites list for the calling user is returned. */ -@property (nonatomic, strong) NSString *user_id; - -/* */ -@property (nonatomic, strong) NSString *jump_to; +@property (nonatomic, copy) NSString *user_id; /* Minimum date that a photo was favorited on. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *min_fave_date; +@property (nonatomic, copy) NSString *min_fave_date; /* Maximum date that a photo was favorited on. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *max_fave_date; +@property (nonatomic, copy) NSString *max_fave_date; /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.m index 42fab6a..98c52cd 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetList.m @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrFavoritesGetList + + - (BOOL) needsLogin { return YES; } @@ -46,9 +48,6 @@ - (NSDictionary *) args { if(self.user_id) { [args setValue:self.user_id forKey:@"user_id"]; } - if(self.jump_to) { - [args setValue:self.jump_to forKey:@"jump_to"]; - } if(self.min_fave_date) { [args setValue:self.min_fave_date forKey:@"min_fave_date"]; } @@ -72,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrFavoritesGetListError_UserNotFound: return @"User not found"; + case FKFlickrFavoritesGetListError_SSLIsRequired: + return @"SSL is required"; case FKFlickrFavoritesGetListError_InvalidSignature: return @"Invalid signature"; case FKFlickrFavoritesGetListError_MissingSignature: @@ -84,6 +85,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrFavoritesGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrFavoritesGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrFavoritesGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrFavoritesGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.h b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.h index 5dcc830..50ec030 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.h @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetPublicList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrFavoritesGetPublicListError_UserNotFound = 1, /* The specified user NSID was not a valid flickr user. */ FKFlickrFavoritesGetPublicListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrFavoritesGetPublicListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrFavoritesGetPublicListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrFavoritesGetPublicListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrFavoritesGetPublicListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrFavoritesGetPublicListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,25 +34,22 @@ Returns a list of favorite public photos for the given user. @interface FKFlickrFavoritesGetPublicList : NSObject /* The user to fetch the favorites list for. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ - -/* */ -@property (nonatomic, strong) NSString *jump_to; +@property (nonatomic, copy) NSString *user_id; /* (Required) */ /* Minimum date that a photo was favorited on. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *min_fave_date; +@property (nonatomic, copy) NSString *min_fave_date; /* Maximum date that a photo was favorited on. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *max_fave_date; +@property (nonatomic, copy) NSString *max_fave_date; /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.m b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.m index ce36ce8..e41c3be 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesGetPublicList.m @@ -2,7 +2,7 @@ // FKFlickrFavoritesGetPublicList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrFavoritesGetPublicList + + - (BOOL) needsLogin { return NO; } @@ -50,9 +52,6 @@ - (NSDictionary *) args { if(self.user_id) { [args setValue:self.user_id forKey:@"user_id"]; } - if(self.jump_to) { - [args setValue:self.jump_to forKey:@"jump_to"]; - } if(self.min_fave_date) { [args setValue:self.min_fave_date forKey:@"min_fave_date"]; } @@ -80,6 +79,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrFavoritesGetPublicListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrFavoritesGetPublicListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrFavoritesGetPublicListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrFavoritesGetPublicListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.h b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.h index 40dbeb3..521366f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.h @@ -2,7 +2,7 @@ // FKFlickrFavoritesRemove.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,12 +14,14 @@ typedef enum { FKFlickrFavoritesRemoveError_PhotoNotInFavorites = 1, /* The photo id passed was not in the user's favorites. */ FKFlickrFavoritesRemoveError_CannotRemovePhotoFromThatUsersFavorites = 2, /* user_id was passed as an argument, but photo_id is not owned by the authenticated user. */ FKFlickrFavoritesRemoveError_UserNotFound = 3, /* Invalid user_id argument. */ + FKFlickrFavoritesRemoveError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrFavoritesRemoveError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrFavoritesRemoveError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrFavoritesRemoveError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrFavoritesRemoveError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrFavoritesRemoveError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrFavoritesRemoveError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrFavoritesRemoveError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrFavoritesRemoveError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrFavoritesRemoveError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrFavoritesRemoveError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -39,10 +41,7 @@ Removes a photo from a user's favorites list. @interface FKFlickrFavoritesRemove : NSObject /* The id of the photo to remove from the user's favorites. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ - -/* NSID of the user whose favorites the photo should be removed from. This only works if the calling user owns the photo. */ -@property (nonatomic, strong) NSString *user_id; +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.m b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.m index 26fdd02..543b56d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Favorites/FKFlickrFavoritesRemove.m @@ -2,7 +2,7 @@ // FKFlickrFavoritesRemove.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrFavoritesRemove + + - (BOOL) needsLogin { return YES; } @@ -50,9 +52,6 @@ - (NSDictionary *) args { if(self.photo_id) { [args setValue:self.photo_id forKey:@"photo_id"]; } - if(self.user_id) { - [args setValue:self.user_id forKey:@"user_id"]; - } return [args copy]; } @@ -65,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Cannot remove photo from that user's favorites"; case FKFlickrFavoritesRemoveError_UserNotFound: return @"User not found"; + case FKFlickrFavoritesRemoveError_SSLIsRequired: + return @"SSL is required"; case FKFlickrFavoritesRemoveError_InvalidSignature: return @"Invalid signature"; case FKFlickrFavoritesRemoveError_MissingSignature: @@ -77,6 +78,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrFavoritesRemoveError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrFavoritesRemoveError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrFavoritesRemoveError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrFavoritesRemoveError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.h index 84c1e90..80ee13c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesAddPhoto.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -16,12 +16,14 @@ typedef enum { FKFlickrGalleriesAddPhotoError_InvalidPhotoID = 3, /* The requested photo could not be found. */ FKFlickrGalleriesAddPhotoError_InvalidComment = 4, /* The comment body could not be validated. */ FKFlickrGalleriesAddPhotoError_FailedToAddPhoto = 5, /* Unable to add the photo to the gallery. */ + FKFlickrGalleriesAddPhotoError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGalleriesAddPhotoError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGalleriesAddPhotoError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGalleriesAddPhotoError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGalleriesAddPhotoError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGalleriesAddPhotoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesAddPhotoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesAddPhotoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesAddPhotoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesAddPhotoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesAddPhotoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -41,13 +43,13 @@ Add a photo to a gallery. @interface FKFlickrGalleriesAddPhoto : NSObject /* The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like flickr.galleries.getList, and flickr.galleries.getListForPhoto. */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ /* The photo ID to add to the gallery */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* A short comment or story to accompany the photo. */ -@property (nonatomic, strong) NSString *comment; +@property (nonatomic, copy) NSString *comment; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.m index 22fa9c0..90fe33c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesAddPhoto.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesAddPhoto.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesAddPhoto + + - (BOOL) needsLogin { return YES; } @@ -76,6 +78,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid comment"; case FKFlickrGalleriesAddPhotoError_FailedToAddPhoto: return @"Failed to add photo"; + case FKFlickrGalleriesAddPhotoError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGalleriesAddPhotoError_InvalidSignature: return @"Invalid signature"; case FKFlickrGalleriesAddPhotoError_MissingSignature: @@ -88,6 +92,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesAddPhotoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesAddPhotoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesAddPhotoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesAddPhotoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.h index 860f097..7bcc8f8 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesCreate.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,12 +14,14 @@ typedef enum { FKFlickrGalleriesCreateError_RequiredParameterMissing = 1, /* One or more of the required parameters was missing from your API call. */ FKFlickrGalleriesCreateError_InvalidTitleOrDescription = 2, /* The title or the description could not be validated. */ FKFlickrGalleriesCreateError_FailedToAddGallery = 3, /* There was a problem creating the gallery. */ + FKFlickrGalleriesCreateError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGalleriesCreateError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGalleriesCreateError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGalleriesCreateError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGalleriesCreateError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGalleriesCreateError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesCreateError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesCreateError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesCreateError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesCreateError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesCreateError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -36,20 +38,23 @@ The ID of the newly created gallery, and its URL. Response: - + */ @interface FKFlickrGalleriesCreate : NSObject /* The name of the gallery */ -@property (nonatomic, strong) NSString *title; /* (Required) */ +@property (nonatomic, copy) NSString *title; /* (Required) */ /* A short description for the gallery */ -@property (nonatomic, strong) NSString *description; /* (Required) */ +@property (copy) NSString *description; /* (Required) */ /* The first photo to add to your gallery */ -@property (nonatomic, strong) NSString *primary_photo_id; +@property (nonatomic, copy) NSString *primary_photo_id; + +/* Get the result in the same format as galleries.getList */ +@property (nonatomic, copy) NSString *full_result; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.m index a840c5c..f8416f2 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesCreate.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesCreate.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,9 @@ @implementation FKFlickrGalleriesCreate + +@synthesize description = _description; + - (BOOL) needsLogin { return YES; } @@ -60,6 +63,9 @@ - (NSDictionary *) args { if(self.primary_photo_id) { [args setValue:self.primary_photo_id forKey:@"primary_photo_id"]; } + if(self.full_result) { + [args setValue:self.full_result forKey:@"full_result"]; + } return [args copy]; } @@ -72,6 +78,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid title or description"; case FKFlickrGalleriesCreateError_FailedToAddGallery: return @"Failed to add gallery"; + case FKFlickrGalleriesCreateError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGalleriesCreateError_InvalidSignature: return @"Invalid signature"; case FKFlickrGalleriesCreateError_MissingSignature: @@ -84,6 +92,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesCreateError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesCreateError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesCreateError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesCreateError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.h index b0e60d1..789de6d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditMeta.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,12 +13,14 @@ typedef enum { FKFlickrGalleriesEditMetaError_RequiredParameterMissing = 1, /* One or more required parameters was missing from your request. */ FKFlickrGalleriesEditMetaError_InvalidTitleOrDescription = 2, /* The title or description arguments could not be validated. */ + FKFlickrGalleriesEditMetaError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGalleriesEditMetaError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGalleriesEditMetaError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGalleriesEditMetaError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGalleriesEditMetaError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGalleriesEditMetaError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesEditMetaError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesEditMetaError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesEditMetaError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesEditMetaError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesEditMetaError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -38,13 +40,13 @@ Modify the meta-data for a gallery. @interface FKFlickrGalleriesEditMeta : NSObject /* The gallery ID to update. */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ /* The new title for the gallery. */ -@property (nonatomic, strong) NSString *title; /* (Required) */ +@property (nonatomic, copy) NSString *title; /* (Required) */ /* The new description for the gallery. */ -@property (nonatomic, strong) NSString *description; +@property (copy) NSString *description; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.m index e6f1e1b..35d055f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditMeta.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditMeta.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,9 @@ @implementation FKFlickrGalleriesEditMeta + +@synthesize description = _description; + - (BOOL) needsLogin { return YES; } @@ -70,6 +73,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Required parameter missing"; case FKFlickrGalleriesEditMetaError_InvalidTitleOrDescription: return @"Invalid title or description"; + case FKFlickrGalleriesEditMetaError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGalleriesEditMetaError_InvalidSignature: return @"Invalid signature"; case FKFlickrGalleriesEditMetaError_MissingSignature: @@ -82,6 +87,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesEditMetaError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesEditMetaError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesEditMetaError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesEditMetaError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.h index 23c029e..ff05233 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditPhoto.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrGalleriesEditPhotoError_InvalidGalleryID = 1, /* That gallery could not be found. */ + FKFlickrGalleriesEditPhotoError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGalleriesEditPhotoError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGalleriesEditPhotoError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGalleriesEditPhotoError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGalleriesEditPhotoError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGalleriesEditPhotoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesEditPhotoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesEditPhotoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesEditPhotoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesEditPhotoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesEditPhotoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -37,13 +39,13 @@ Edit the comment for a gallery photo. @interface FKFlickrGalleriesEditPhoto : NSObject /* The ID of the gallery to add a photo to. Note: this is the compound ID returned in methods like flickr.galleries.getList, and flickr.galleries.getListForPhoto. */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ /* The photo ID to add to the gallery. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The updated comment the photo. */ -@property (nonatomic, strong) NSString *comment; /* (Required) */ +@property (nonatomic, copy) NSString *comment; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.m index ba05996..971af7e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhoto.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditPhoto.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesEditPhoto + + - (BOOL) needsLogin { return YES; } @@ -72,6 +74,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrGalleriesEditPhotoError_InvalidGalleryID: return @"Invalid gallery ID"; + case FKFlickrGalleriesEditPhotoError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGalleriesEditPhotoError_InvalidSignature: return @"Invalid signature"; case FKFlickrGalleriesEditPhotoError_MissingSignature: @@ -84,6 +88,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesEditPhotoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesEditPhotoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesEditPhotoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesEditPhotoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.h index cdbd809..dd45c77 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrGalleriesEditPhotosError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGalleriesEditPhotosError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGalleriesEditPhotosError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGalleriesEditPhotosError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGalleriesEditPhotosError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGalleriesEditPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesEditPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesEditPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesEditPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesEditPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesEditPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -36,13 +38,13 @@ Modify the photos in a gallery. Use this method to add, remove and re-order phot @interface FKFlickrGalleriesEditPhotos : NSObject /* The id of the gallery to modify. The gallery must belong to the calling user. */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ /* The id of the photo to use as the 'primary' photo for the gallery. This id must also be passed along in photo_ids list argument. */ -@property (nonatomic, strong) NSString *primary_photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *primary_photo_id; /* (Required) */ /* A comma-delimited list of photo ids to include in the gallery. They will appear in the set in the order sent. This list must contain the primary photo id. This list of photos replaces the existing list. */ -@property (nonatomic, strong) NSString *photo_ids; /* (Required) */ +@property (nonatomic, copy) NSString *photo_ids; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.m index bbf73bd..97695d5 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesEditPhotos.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesEditPhotos.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesEditPhotos + + - (BOOL) needsLogin { return YES; } @@ -70,6 +72,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrGalleriesEditPhotosError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGalleriesEditPhotosError_InvalidSignature: return @"Invalid signature"; case FKFlickrGalleriesEditPhotosError_MissingSignature: @@ -82,6 +86,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesEditPhotosError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesEditPhotosError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesEditPhotosError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesEditPhotosError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.h index 2f5d22f..a0b6346 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrGalleriesGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,19 +29,19 @@ typedef enum { Response: - - Cat Pictures I've Sent To Kevin Collins - + + Cat Pictures I've Sent To Kevin Collins + */ @interface FKFlickrGalleriesGetInfo : NSObject /* The gallery ID you are requesting information for. */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.m index 939abca..da1d87f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesGetInfo + + - (BOOL) needsLogin { return NO; } @@ -60,6 +62,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.h index 35ae49a..7b928ed 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrGalleriesGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,38 +29,41 @@ Return the list of galleries created by a user. Sorted from newest to oldest. Response: - - - I like me some black & white - black and whites - - - People Sleeping in Libraries - - + + + I like me some black & white + black and whites + + + People Sleeping in Libraries + + */ @interface FKFlickrGalleriesGetList : NSObject /* The NSID of the user to get a galleries list for. If none is specified, the calling user is assumed. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ +@property (nonatomic, copy) NSString *user_id; /* (Required) */ /* Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; + +/* A comma-delimited list of extra information to fetch for the primary photo. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o */ +@property (nonatomic, copy) NSString *primary_photo_extras; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.m index 828c19c..6181972 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetList.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesGetList + + - (BOOL) needsLogin { return NO; } @@ -56,6 +58,9 @@ - (NSDictionary *) args { if(self.page) { [args setValue:self.page forKey:@"page"]; } + if(self.primary_photo_extras) { + [args setValue:self.primary_photo_extras forKey:@"primary_photo_extras"]; + } return [args copy]; } @@ -66,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.h index d60bc46..dac5a63 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetListForPhoto.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrGalleriesGetListForPhotoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesGetListForPhotoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesGetListForPhotoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesGetListForPhotoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesGetListForPhotoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesGetListForPhotoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,38 +29,38 @@ Return the list of galleries to which a photo has been added. Galleries are ret Response: - - - Vivitar Ultra Wide & Slim Selection - The cheap and cheerful camera that isn't quite as cheap as it used to be. - - - Awesome Pics - - + + + Vivitar Ultra Wide & Slim Selection + The cheap and cheerful camera that isn't quite as cheap as it used to be. + + + Awesome Pics + + */ @interface FKFlickrGalleriesGetListForPhoto : NSObject /* The ID of the photo to fetch a list of galleries for. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* Number of galleries to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.m index 260e07d..99e7f99 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetListForPhoto.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetListForPhoto.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesGetListForPhoto + + - (BOOL) needsLogin { return NO; } @@ -66,6 +68,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesGetListForPhotoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesGetListForPhotoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesGetListForPhotoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesGetListForPhotoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.h index 5bf2ec1..aed1f5f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.h @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrGalleriesGetPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGalleriesGetPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGalleriesGetPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGalleriesGetPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGalleriesGetPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGalleriesGetPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,29 +30,29 @@ Returns a - - best cat picture ever! - - + + + best cat picture ever! + + */ @interface FKFlickrGalleriesGetPhotos : NSObject /* The ID of the gallery of photos to return */ -@property (nonatomic, strong) NSString *gallery_id; /* (Required) */ +@property (nonatomic, copy) NSString *gallery_id; /* (Required) */ /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.m b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.m index b7cacd5..e5a2a1e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Galleries/FKFlickrGalleriesGetPhotos.m @@ -2,7 +2,7 @@ // FKFlickrGalleriesGetPhotos.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGalleriesGetPhotos + + - (BOOL) needsLogin { return NO; } @@ -69,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGalleriesGetPhotosError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGalleriesGetPhotosError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGalleriesGetPhotosError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGalleriesGetPhotosError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.h index 5dc494b..deac6d8 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesAdd.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,15 +12,17 @@ typedef enum { FKFlickrGroupsDiscussRepliesAddError_TopicNotFound = 1, /* The topic_id is invalid. */ - FKFlickrGroupsDiscussRepliesAddError_CannotPostToGroup = 2, /* Either this account is not a member of the group, or discussion in this group is disabled. + FKFlickrGroupsDiscussRepliesAddError_CannotPostToGroup = 2, /* Either this account is not a member of the group, or discussion in this group is disabled. */ FKFlickrGroupsDiscussRepliesAddError_MissingRequiredArguments = 3, /* The topic_id and message are required. */ + FKFlickrGroupsDiscussRepliesAddError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsDiscussRepliesAddError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsDiscussRepliesAddError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsDiscussRepliesAddError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsDiscussRepliesAddError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsDiscussRepliesAddError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussRepliesAddError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussRepliesAddError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussRepliesAddError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussRepliesAddError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussRepliesAddError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -39,11 +41,14 @@ Post a new reply to a group discussion topic. */ @interface FKFlickrGroupsDiscussRepliesAdd : NSObject +/* Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID of the topic to post a comment to. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ /* The message to post to the topic. */ -@property (nonatomic, strong) NSString *message; /* (Required) */ +@property (nonatomic, copy) NSString *message; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.m index 7ffba54..cfb433b 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesAdd.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesAdd.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussRepliesAdd + + - (BOOL) needsLogin { return YES; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -51,6 +57,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -69,6 +78,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Cannot post to group"; case FKFlickrGroupsDiscussRepliesAddError_MissingRequiredArguments: return @"Missing required arguments"; + case FKFlickrGroupsDiscussRepliesAddError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsDiscussRepliesAddError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsDiscussRepliesAddError_MissingSignature: @@ -81,6 +92,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussRepliesAddError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussRepliesAddError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussRepliesAddError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussRepliesAddError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.h index d509088..da9aa9c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesDelete.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,12 +14,14 @@ typedef enum { FKFlickrGroupsDiscussRepliesDeleteError_TopicNotFound = 1, /* The topic_id is invalid. */ FKFlickrGroupsDiscussRepliesDeleteError_ReplyNotFound = 2, /* The reply_id is invalid. */ FKFlickrGroupsDiscussRepliesDeleteError_CannotDeleteReply = 3, /* Replies can only be edited by their owner. */ + FKFlickrGroupsDiscussRepliesDeleteError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsDiscussRepliesDeleteError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsDiscussRepliesDeleteError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsDiscussRepliesDeleteError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsDiscussRepliesDeleteError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsDiscussRepliesDeleteError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussRepliesDeleteError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussRepliesDeleteError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussRepliesDeleteError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussRepliesDeleteError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussRepliesDeleteError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -38,11 +40,14 @@ Delete a reply from a group topic. */ @interface FKFlickrGroupsDiscussRepliesDelete : NSObject +/* Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID of the topic the post is in. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ /* The ID of the reply to delete. */ -@property (nonatomic, strong) NSString *reply_id; /* (Required) */ +@property (nonatomic, copy) NSString *reply_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.m index 690e6a8..78b9a71 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesDelete.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesDelete.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussRepliesDelete + + - (BOOL) needsLogin { return YES; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -51,6 +57,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -69,6 +78,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Reply not found"; case FKFlickrGroupsDiscussRepliesDeleteError_CannotDeleteReply: return @"Cannot delete reply"; + case FKFlickrGroupsDiscussRepliesDeleteError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsDiscussRepliesDeleteError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsDiscussRepliesDeleteError_MissingSignature: @@ -81,6 +92,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussRepliesDeleteError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussRepliesDeleteError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussRepliesDeleteError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussRepliesDeleteError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.h index 328c3b9..e0da4b9 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesEdit.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -16,12 +16,14 @@ typedef enum { FKFlickrGroupsDiscussRepliesEditError_MissingRequiredArguments = 3, /* The topic_id and reply_id are required. */ FKFlickrGroupsDiscussRepliesEditError_CannotEditReply = 4, /* Replies can only be edited by their owner. */ FKFlickrGroupsDiscussRepliesEditError_CannotPostToGroup = 5, /* Either this account is not a member of the group, or discussion in this group is disabled. */ + FKFlickrGroupsDiscussRepliesEditError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsDiscussRepliesEditError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsDiscussRepliesEditError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsDiscussRepliesEditError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsDiscussRepliesEditError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsDiscussRepliesEditError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussRepliesEditError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussRepliesEditError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussRepliesEditError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussRepliesEditError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussRepliesEditError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -40,14 +42,17 @@ Edit a topic reply. */ @interface FKFlickrGroupsDiscussRepliesEdit : NSObject +/* Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID of the topic the post is in. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ /* The ID of the reply post to edit. */ -@property (nonatomic, strong) NSString *reply_id; /* (Required) */ +@property (nonatomic, copy) NSString *reply_id; /* (Required) */ /* The message to edit the post with. */ -@property (nonatomic, strong) NSString *message; /* (Required) */ +@property (nonatomic, copy) NSString *message; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.m index 38e95a4..c05361f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesEdit.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesEdit.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussRepliesEdit + + - (BOOL) needsLogin { return YES; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -55,6 +61,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -80,6 +89,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Cannot edit reply"; case FKFlickrGroupsDiscussRepliesEditError_CannotPostToGroup: return @"Cannot post to group"; + case FKFlickrGroupsDiscussRepliesEditError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsDiscussRepliesEditError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsDiscussRepliesEditError_MissingSignature: @@ -92,6 +103,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussRepliesEditError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussRepliesEditError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussRepliesEditError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussRepliesEditError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.h index e221eca..fff8dc8 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrGroupsDiscussRepliesGetInfoError_ReplyNotFound = 2, /* The reply_id is invalid */ FKFlickrGroupsDiscussRepliesGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussRepliesGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussRepliesGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussRepliesGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussRepliesGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussRepliesGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,21 +31,24 @@ Get information on a group topic reply. Response: - - - - ...well, too bad. - + + + + ...well, too bad. + */ @interface FKFlickrGroupsDiscussRepliesGetInfo : NSObject +/* Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID of the topic the post is in. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ /* The ID of the reply to fetch. */ -@property (nonatomic, strong) NSString *reply_id; /* (Required) */ +@property (nonatomic, copy) NSString *reply_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.m index bafb78f..0078109 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussRepliesGetInfo + + - (BOOL) needsLogin { return NO; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -51,6 +57,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -71,6 +80,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussRepliesGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussRepliesGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussRepliesGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussRepliesGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.h index 6f74ddd..c7e9074 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrGroupsDiscussRepliesGetListError_TopicNotFound = 1, /* The topic_id is invalid. */ FKFlickrGroupsDiscussRepliesGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussRepliesGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussRepliesGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussRepliesGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussRepliesGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussRepliesGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,42 +30,45 @@ Get a list of replies from a group discussion topic. Response: - - - - <div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5080874079/" title="Star Wars 1 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4035/5080874079_684cf874e0_m.jpg" width="240" height="180" alt="Star Wars 1 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467846/" title="Star Wars 2 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4071/5081467846_2eec86176d_m.jpg" width="240" height="180" alt="Star Wars 2 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467886/" title="Star Wars 3 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4021/5081467886_d8cca6c8e8_m.jpg" width="240" height="180" alt="Star Wars 3 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467910/" title="Star Wars 4 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4084/5081467910_274bb11fdc_m.jpg" width="240" height="180" alt="Star Wars 4 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467948/" title="Star Wars 5 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4154/5081467948_1a5f200bc0_m.jpg" width="240" height="180" alt="Star Wars 5 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - - - *LOL* The universe is full of <a href="http://www.flickr.com/groups/visualstory/discuss/72157622533160886/">giant furry space monsters</a> it seems! Love it. - - - Great work. Good focus on different aspects of scene in each frame. Funny ending-- even better that I didn't notice the cat right away! Being a hopeless Trekkie, I was wondering why Han was doing the Vulcan death grip on one of his allies.... - - - On a scale of 1 to 10 of awesome. This is a 15 - - + + + + <div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5080874079/" title="Star Wars 1 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4035/5080874079_684cf874e0_m.jpg" width="240" height="180" alt="Star Wars 1 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467846/" title="Star Wars 2 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4071/5081467846_2eec86176d_m.jpg" width="240" height="180" alt="Star Wars 2 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467886/" title="Star Wars 3 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4021/5081467886_d8cca6c8e8_m.jpg" width="240" height="180" alt="Star Wars 3 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467910/" title="Star Wars 4 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4084/5081467910_274bb11fdc_m.jpg" width="240" height="180" alt="Star Wars 4 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467948/" title="Star Wars 5 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4154/5081467948_1a5f200bc0_m.jpg" width="240" height="180" alt="Star Wars 5 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + + + *LOL* The universe is full of <a href="http://www.flickr.com/groups/visualstory/discuss/72157622533160886/">giant furry space monsters</a> it seems! Love it. + + + Great work. Good focus on different aspects of scene in each frame. Funny ending-- even better that I didn't notice the cat right away! Being a hopeless Trekkie, I was wondering why Han was doing the Vulcan death grip on one of his allies.... + + + On a scale of 1 to 10 of awesome. This is a 15 + + */ @interface FKFlickrGroupsDiscussRepliesGetList : NSObject +/* Pass in the group id to where the topic belongs. Can be NSID or group alias. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get faster performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID of the topic to fetch replies for. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; /* (Required) */ +@property (nonatomic, copy) NSString *per_page; /* (Required) */ /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.m index 78eec51..afaac5e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Replies/FKFlickrGroupsDiscussRepliesGetList.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussRepliesGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussRepliesGetList + + - (BOOL) needsLogin { return NO; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -51,6 +57,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -72,6 +81,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussRepliesGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussRepliesGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussRepliesGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussRepliesGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.h index e4b7d45..d548802 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsAdd.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,17 +11,19 @@ #import "FKFlickrAPIMethod.h" typedef enum { - FKFlickrGroupsDiscussTopicsAddError_GroupNotFound = 1, /* The group by that ID does not exist + FKFlickrGroupsDiscussTopicsAddError_GroupNotFound = 1, /* The group by that ID does not exist */ FKFlickrGroupsDiscussTopicsAddError_CannotPostToGroup = 2, /* Either this account is not a member of the group, or discussion in this group is disabled. */ FKFlickrGroupsDiscussTopicsAddError_MessageIsTooLong = 3, /* The post message is too long. */ FKFlickrGroupsDiscussTopicsAddError_MissingRequiredArguments = 4, /* Subject and message are required. */ + FKFlickrGroupsDiscussTopicsAddError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsDiscussTopicsAddError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsDiscussTopicsAddError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsDiscussTopicsAddError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsDiscussTopicsAddError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsDiscussTopicsAddError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussTopicsAddError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussTopicsAddError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussTopicsAddError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussTopicsAddError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussTopicsAddError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -40,15 +42,15 @@ Post a new discussion topic to a group. */ @interface FKFlickrGroupsDiscussTopicsAdd : NSObject -/* The NSID of the group to add a topic to. +/* The NSID or path alias of the group to add a topic to. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* The topic subject. */ -@property (nonatomic, strong) NSString *subject; /* (Required) */ +@property (nonatomic, copy) NSString *subject; /* (Required) */ /* The topic message. */ -@property (nonatomic, strong) NSString *message; /* (Required) */ +@property (nonatomic, copy) NSString *message; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.m index 94856db..4429e00 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsAdd.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsAdd.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussTopicsAdd + + - (BOOL) needsLogin { return YES; } @@ -78,6 +80,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Message is too long"; case FKFlickrGroupsDiscussTopicsAddError_MissingRequiredArguments: return @"Missing required arguments"; + case FKFlickrGroupsDiscussTopicsAddError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsDiscussTopicsAddError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsDiscussTopicsAddError_MissingSignature: @@ -90,6 +94,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussTopicsAddError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussTopicsAddError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussTopicsAddError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussTopicsAddError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.h index 9e8a7f2..7d883e8 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrGroupsDiscussTopicsGetInfoError_TopicNotFound = 1, /* The topic_id is invalid */ FKFlickrGroupsDiscussTopicsGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussTopicsGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussTopicsGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussTopicsGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussTopicsGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussTopicsGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,18 +30,21 @@ Get information about a group discussion topic. Response: - - - - Is anyone still around in this group? - + + + + Is anyone still around in this group? + */ @interface FKFlickrGroupsDiscussTopicsGetInfo : NSObject +/* NSID or group alias of the group to which the topic belongs. Making this parameter optional for legacy reasons, but it is highly recommended to pass this in to get better performance. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ + /* The ID for the topic to edit. */ -@property (nonatomic, strong) NSString *topic_id; /* (Required) */ +@property (nonatomic, copy) NSString *topic_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.m index 1d4c2d1..8ec217b 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussTopicsGetInfo + + - (BOOL) needsLogin { return NO; } @@ -31,6 +33,10 @@ - (NSString *) name { - (BOOL) isValid:(NSError **)error { BOOL valid = YES; NSMutableString *errorDescription = [[NSMutableString alloc] initWithString:@"You are missing required params: "]; + if(!self.group_id) { + valid = NO; + [errorDescription appendString:@"'group_id', "]; + } if(!self.topic_id) { valid = NO; [errorDescription appendString:@"'topic_id', "]; @@ -47,6 +53,9 @@ - (BOOL) isValid:(NSError **)error { - (NSDictionary *) args { NSMutableDictionary *args = [NSMutableDictionary dictionary]; + if(self.group_id) { + [args setValue:self.group_id forKey:@"group_id"]; + } if(self.topic_id) { [args setValue:self.topic_id forKey:@"topic_id"]; } @@ -62,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussTopicsGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussTopicsGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussTopicsGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussTopicsGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.h index bab9d3b..59a381a 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.h @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrGroupsDiscussTopicsGetListError_GroupNotFound = 1, /* The group_id is invalid */ FKFlickrGroupsDiscussTopicsGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsDiscussTopicsGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsDiscussTopicsGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsDiscussTopicsGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsDiscussTopicsGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsDiscussTopicsGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,44 +30,44 @@ Get a list of discussion topics in a group. Response: - - - - <div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5080874079/" title="Star Wars 1 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4035/5080874079_684cf874e0_m.jpg" width="240" height="180" alt="Star Wars 1 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467846/" title="Star Wars 2 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4071/5081467846_2eec86176d_m.jpg" width="240" height="180" alt="Star Wars 2 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467886/" title="Star Wars 3 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4021/5081467886_d8cca6c8e8_m.jpg" width="240" height="180" alt="Star Wars 3 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467910/" title="Star Wars 4 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4084/5081467910_274bb11fdc_m.jpg" width="240" height="180" alt="Star Wars 4 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - -<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467948/" title="Star Wars 5 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4154/5081467948_1a5f200bc0_m.jpg" width="240" height="180" alt="Star Wars 5 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> - - - <a href="http://www.flickr.com/photos/nokinrocks/7120495637/"><img class="notsowide" src="http://farm9.staticflickr.com/8005/7120495637_fec0382b4b_n.jpg" width="320" height="256" alt="Step It Up" /></a> - -<a href="http://www.flickr.com/photos/nokinrocks/7122908705/"><img class="notsowide" src="http://farm8.staticflickr.com/7259/7122908705_3bef338378_n.jpg" width="240" height="320" alt="P1050351" /></a> - -<a href="http://www.flickr.com/photos/nokinrocks/7122922123/"><img class="notsowide" src="http://farm8.staticflickr.com/7052/7122922123_2bfcb6707c_n.jpg" width="214" height="320" alt="Frog On A Log" /></a> - -<a href="http://www.flickr.com/photos/nokinrocks/7122929521/"><img class="notsowide" src="http://farm8.staticflickr.com/7047/7122929521_8ffebdd424_n.jpg" width="320" height="200" alt="P1050397" /></a> - -<a href="http://www.flickr.com/photos/nokinrocks/7122916999/"><img class="notsowide" src="http://farm8.staticflickr.com/7200/7122916999_a7328f9dcc_n.jpg" width="320" height="261" alt="P1050361" /></a> - - + + + + <div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5080874079/" title="Star Wars 1 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4035/5080874079_684cf874e0_m.jpg" width="240" height="180" alt="Star Wars 1 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467846/" title="Star Wars 2 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4071/5081467846_2eec86176d_m.jpg" width="240" height="180" alt="Star Wars 2 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467886/" title="Star Wars 3 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4021/5081467886_d8cca6c8e8_m.jpg" width="240" height="180" alt="Star Wars 3 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467910/" title="Star Wars 4 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4084/5081467910_274bb11fdc_m.jpg" width="240" height="180" alt="Star Wars 4 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + +<div><span class="photo_container pc_m bbml_img"><a href="/photos/53930889@N04/5081467948/" title="Star Wars 5 by Smallportfolio_jm08"><img class="notsowide" src="http://farm5.staticflickr.com/4154/5081467948_1a5f200bc0_m.jpg" width="240" height="180" alt="Star Wars 5 by Smallportfolio_jm08" class="pc_img" border="0" /></a></span></div> + + + <a href="http://www.flickr.com/photos/nokinrocks/7120495637/"><img class="notsowide" src="http://farm9.staticflickr.com/8005/7120495637_fec0382b4b_n.jpg" width="320" height="256" alt="Step It Up" /></a> + +<a href="http://www.flickr.com/photos/nokinrocks/7122908705/"><img class="notsowide" src="http://farm8.staticflickr.com/7259/7122908705_3bef338378_n.jpg" width="240" height="320" alt="P1050351" /></a> + +<a href="http://www.flickr.com/photos/nokinrocks/7122922123/"><img class="notsowide" src="http://farm8.staticflickr.com/7052/7122922123_2bfcb6707c_n.jpg" width="214" height="320" alt="Frog On A Log" /></a> + +<a href="http://www.flickr.com/photos/nokinrocks/7122929521/"><img class="notsowide" src="http://farm8.staticflickr.com/7047/7122929521_8ffebdd424_n.jpg" width="320" height="200" alt="P1050397" /></a> + +<a href="http://www.flickr.com/photos/nokinrocks/7122916999/"><img class="notsowide" src="http://farm8.staticflickr.com/7200/7122916999_a7328f9dcc_n.jpg" width="320" height="261" alt="P1050361" /></a> + + */ @interface FKFlickrGroupsDiscussTopicsGetList : NSObject -/* The NSID of the group to fetch information for. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +/* The NSID or path alias of the group to fetch information for. */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.m index 6906cd2..783816e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Discuss/Topics/FKFlickrGroupsDiscussTopicsGetList.m @@ -2,7 +2,7 @@ // FKFlickrGroupsDiscussTopicsGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsDiscussTopicsGetList + + - (BOOL) needsLogin { return NO; } @@ -68,6 +70,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsDiscussTopicsGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsDiscussTopicsGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsDiscussTopicsGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsDiscussTopicsGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.h index f89d8b7..1aa8a19 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.h @@ -2,7 +2,7 @@ // FKFlickrGroupsBrowse.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrGroupsBrowseError_CategoryNotFound = 1, /* The value passed for cat_id was not a valid category id. */ + FKFlickrGroupsBrowseError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsBrowseError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsBrowseError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsBrowseError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsBrowseError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsBrowseError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsBrowseError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsBrowseError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsBrowseError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsBrowseError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsBrowseError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,27 +32,27 @@ typedef enum { Browse the group category tree, finding groups and sub-categories. -

The count attribute of the subcat element gives the number of groups inside the subcat.

- +

The count attribute of the subcat element gives the number of groups inside the subcat.

+

The members attribute of the group element gives the total number of members in the group. The online attribute gives a count of the members who are currently online. The inchat attribute gives a count of the number of people in the group's chat, regardless of whether they are members of the group.

Response: - - - - - - + + + + + + */ @interface FKFlickrGroupsBrowse : NSObject /* The category id to fetch a list of groups and sub-categories for. If not specified, it defaults to zero, the root of the category tree. */ -@property (nonatomic, strong) NSString *cat_id; +@property (nonatomic, copy) NSString *cat_id; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.m index d7a3629..365da5c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsBrowse.m @@ -2,7 +2,7 @@ // FKFlickrGroupsBrowse.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsBrowse + + - (BOOL) needsLogin { return YES; } @@ -54,6 +56,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrGroupsBrowseError_CategoryNotFound: return @"Category not found"; + case FKFlickrGroupsBrowseError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsBrowseError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsBrowseError_MissingSignature: @@ -66,6 +70,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsBrowseError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsBrowseError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsBrowseError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsBrowseError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.h index 432fa33..e9d057f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrGroupsGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,8 +12,10 @@ typedef enum { FKFlickrGroupsGetInfoError_GroupNotFound = 1, /* The group NSID passed did not refer to a group that the calling user can see - either an invalid group is or a group that can't be seen by the calling user. */ + FKFlickrGroupsGetInfoError_GroupIsPrivate = 2, /* This is a private group. */ FKFlickrGroupsGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,25 +31,28 @@ Get information about a group. Response: - - GNEverybody - The group for GNE players - 69 - 3 - - + + GNEverybody + The group for GNE players + 69 + 3 + + */ @interface FKFlickrGroupsGetInfo : NSObject /* The NSID of the group to fetch information for. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ -/* The language of the group name and description to fetch. If the language is not found, the primary language of the group will be returned. +/* The path alias of the group. One of this or the group_id param is required */ +@property (nonatomic, copy) NSString *group_path_alias; +/* The language of the group name and description to fetch. If the language is not found, the primary language of the group will be returned. + Valid values are the same as
in feeds. */ -@property (nonatomic, strong) NSString *lang; +@property (nonatomic, copy) NSString *lang; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.m index ca2f1ab..8af4635 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrGroupsGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsGetInfo + + - (BOOL) needsLogin { return NO; } @@ -50,6 +52,9 @@ - (NSDictionary *) args { if(self.group_id) { [args setValue:self.group_id forKey:@"group_id"]; } + if(self.group_path_alias) { + [args setValue:self.group_path_alias forKey:@"group_path_alias"]; + } if(self.lang) { [args setValue:self.lang forKey:@"lang"]; } @@ -61,10 +66,14 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrGroupsGetInfoError_GroupNotFound: return @"Group not found"; + case FKFlickrGroupsGetInfoError_GroupIsPrivate: + return @"Group is private"; case FKFlickrGroupsGetInfoError_InvalidAPIKey: return @"Invalid API Key"; case FKFlickrGroupsGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.h index 1f92aca..fa3e1e3 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.h @@ -2,7 +2,7 @@ // FKFlickrGroupsJoin.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -18,12 +18,15 @@ typedef enum { FKFlickrGroupsJoinError_MembershipInGroupIsByInvitationOnly = 5, /* Use flickr.groups.joinRequest to contact the administrations for an invitation. */ FKFlickrGroupsJoinError_UserMustAcceptTheGroupRulesBeforeJoining = 6, /* The user must read and accept the rules before joining. Please see the accept_rules argument for this method. */ FKFlickrGroupsJoinError_AccountInMaximumNumberOfGroups = 10, /* The account is a member of the maximum number of groups. */ + FKFlickrGroupsJoinError_UserUnableToJoin = 11, /* This user is unable to join this group. */ + FKFlickrGroupsJoinError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsJoinError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsJoinError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsJoinError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsJoinError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsJoinError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsJoinError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsJoinError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsJoinError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsJoinError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsJoinError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -43,10 +46,10 @@ Join a public group as a member. @interface FKFlickrGroupsJoin : NSObject /* The NSID of the Group in question */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). */ -@property (nonatomic, strong) NSString *accept_rules; +@property (nonatomic, copy) NSString *accept_rules; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.m index f8291b5..0f986b1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoin.m @@ -2,7 +2,7 @@ // FKFlickrGroupsJoin.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsJoin + + - (BOOL) needsLogin { return YES; } @@ -73,6 +75,10 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"User must accept the group rules before joining"; case FKFlickrGroupsJoinError_AccountInMaximumNumberOfGroups: return @"Account in maximum number of groups"; + case FKFlickrGroupsJoinError_UserUnableToJoin: + return @"User unable to join"; + case FKFlickrGroupsJoinError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsJoinError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsJoinError_MissingSignature: @@ -85,6 +91,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsJoinError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsJoinError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsJoinError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsJoinError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.h index ac0de2a..0023854 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.h @@ -2,7 +2,7 @@ // FKFlickrGroupsJoinRequest.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -18,12 +18,14 @@ typedef enum { FKFlickrGroupsJoinRequestError_GroupIsPublicAndOpen = 5, /* The group does not require an invitation to join, please use flickr.groups.join. */ FKFlickrGroupsJoinRequestError_UserMustAcceptTheGroupRulesBeforeJoining = 6, /* The user must read and accept the rules before joining. Please see the accept_rules argument for this method. */ FKFlickrGroupsJoinRequestError_UserHasAlreadyRequestedToJoinThatGroup = 7, /* A request has already been sent and is pending approval. */ + FKFlickrGroupsJoinRequestError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsJoinRequestError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsJoinRequestError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsJoinRequestError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsJoinRequestError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsJoinRequestError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsJoinRequestError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsJoinRequestError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsJoinRequestError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsJoinRequestError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsJoinRequestError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -43,13 +45,13 @@ Request to join a group that is invitation-only. @interface FKFlickrGroupsJoinRequest : NSObject /* The NSID of the group to request joining. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* Message to the administrators. */ -@property (nonatomic, strong) NSString *message; /* (Required) */ +@property (nonatomic, copy) NSString *message; /* (Required) */ /* If the group has rules, they must be displayed to the user prior to joining. Passing a true value for this argument specifies that the application has displayed the group rules to the user, and that the user has agreed to them. (See flickr.groups.getInfo). */ -@property (nonatomic, strong) NSString *accept_rules; /* (Required) */ +@property (nonatomic, copy) NSString *accept_rules; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.m index 403bfb9..8f974c6 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsJoinRequest.m @@ -2,7 +2,7 @@ // FKFlickrGroupsJoinRequest.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsJoinRequest + + - (BOOL) needsLogin { return YES; } @@ -84,6 +86,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"User must accept the group rules before joining"; case FKFlickrGroupsJoinRequestError_UserHasAlreadyRequestedToJoinThatGroup: return @"User has already requested to join that group"; + case FKFlickrGroupsJoinRequestError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsJoinRequestError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsJoinRequestError_MissingSignature: @@ -96,6 +100,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsJoinRequestError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsJoinRequestError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsJoinRequestError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsJoinRequestError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.h index 472e596..5199b66 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.h @@ -2,7 +2,7 @@ // FKFlickrGroupsLeave.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,12 +14,14 @@ typedef enum { FKFlickrGroupsLeaveError_RequiredArgumentsMissing = 1, /* The group_id doesn't exist */ FKFlickrGroupsLeaveError_GroupDoesNotExist = 2, /* The group by that ID does not exist */ FKFlickrGroupsLeaveError_AccountIsNotInThatGroup = 3, /* The user is not a member of the group that was specified */ + FKFlickrGroupsLeaveError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsLeaveError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsLeaveError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsLeaveError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsLeaveError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsLeaveError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsLeaveError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsLeaveError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsLeaveError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsLeaveError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsLeaveError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,10 +32,10 @@ typedef enum { /* -Leave a group. - -

If the user is the only administrator left, and there are other members, the oldest member will be promoted to administrator. - +Leave a group. + +

If the user is the only administrator left, and there are other members, the oldest member will be promoted to administrator. +

If the user is the last person in the group, the group will be deleted. @@ -43,10 +45,10 @@ Leave a group. @interface FKFlickrGroupsLeave : NSObject /* The NSID of the Group to leave */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* Delete all photos by this user from the group */ -@property (nonatomic, strong) NSString *delete_photos; +@property (nonatomic, copy) NSString *delete_photos; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.m index 4873711..cbe5477 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsLeave.m @@ -2,7 +2,7 @@ // FKFlickrGroupsLeave.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsLeave + + - (BOOL) needsLogin { return YES; } @@ -65,6 +67,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Group does not exist"; case FKFlickrGroupsLeaveError_AccountIsNotInThatGroup: return @"Account is not in that group"; + case FKFlickrGroupsLeaveError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsLeaveError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsLeaveError_MissingSignature: @@ -77,6 +81,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsLeaveError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsLeaveError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsLeaveError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsLeaveError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.h index 96efac8..020e8e1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.h @@ -2,7 +2,7 @@ // FKFlickrGroupsSearch.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrGroupsSearchError_NoTextPassed = 1, /* The required text argument was ommited. */ FKFlickrGroupsSearchError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsSearchError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsSearchError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsSearchError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsSearchError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsSearchError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,30 +30,30 @@ Search for groups. 18+ groups will only be returned for authenticated calls wher Response: - - - - - - + + + + + + */ @interface FKFlickrGroupsSearch : NSObject /* The text to search for. */ -@property (nonatomic, strong) NSString *text; /* (Required) */ +@property (nonatomic, copy) NSString *text; /* (Required) */ /* Number of groups to return per page. If this argument is ommited, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is ommited, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.m index 4635c5a..9f21be1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/FKFlickrGroupsSearch.m @@ -2,7 +2,7 @@ // FKFlickrGroupsSearch.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsSearch + + - (BOOL) needsLogin { return NO; } @@ -68,6 +70,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsSearchError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsSearchError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsSearchError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsSearchError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.h index f4f5993..3748b99 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.h @@ -2,7 +2,7 @@ // FKFlickrGroupsMembersGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrGroupsMembersGetListError_GroupNotFound = 1, /* */ + FKFlickrGroupsMembersGetListError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsMembersGetListError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsMembersGetListError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsMembersGetListError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsMembersGetListError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsMembersGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsMembersGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsMembersGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsMembersGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsMembersGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsMembersGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,34 +35,34 @@ Get a list of the members of a group. The call must be signed on behalf of a Fl Response: - - - - - -... + + + + + +... */ @interface FKFlickrGroupsMembersGetList : NSObject /* Return a list of members for this group. The group must be viewable by the Flickr member on whose behalf the API call is made. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ - -/* Comma separated list of member types -
    -
  • 2: member
  • -
  • 3: moderator
  • -
  • 4: admin
  • -
+@property (nonatomic, copy) NSString *group_id; /* (Required) */ + +/* Comma separated list of member types +
    +
  • 2: member
  • +
  • 3: moderator
  • +
  • 4: admin
  • +
By default returns all types. (Returning super rare member type "1: narwhal" isn't supported by this API method) */ -@property (nonatomic, strong) NSString *membertypes; +@property (nonatomic, copy) NSString *membertypes; /* Number of members to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.m index 908c20b..c079fbb 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Members/FKFlickrGroupsMembersGetList.m @@ -2,7 +2,7 @@ // FKFlickrGroupsMembersGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsMembersGetList + + - (BOOL) needsLogin { return YES; } @@ -67,6 +69,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrGroupsMembersGetListError_GroupNotFound: return @"Group not found"; + case FKFlickrGroupsMembersGetListError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsMembersGetListError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsMembersGetListError_MissingSignature: @@ -79,6 +83,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsMembersGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsMembersGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsMembersGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsMembersGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.h index 6c7666e..84c7276 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.h @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsAdd.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -20,12 +20,14 @@ typedef enum { FKFlickrGroupsPoolsAddError_YourPhotoHasAlreadyBeenAddedToThePendingQueueForThisPool = 7, /* The pool is moderated, and the photo has already been added to the Pending Queue. */ FKFlickrGroupsPoolsAddError_ContentNotAllowed = 8, /* The content has been disallowed from the pool by the group admin(s). */ FKFlickrGroupsPoolsAddError_MaximumNumberOfPhotosInGroupPool = 10, /* A group pool has reached the upper limit for the number of photos allowed. */ + FKFlickrGroupsPoolsAddError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsPoolsAddError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsPoolsAddError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsPoolsAddError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsPoolsAddError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsPoolsAddError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsPoolsAddError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsPoolsAddError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsPoolsAddError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsPoolsAddError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsPoolsAddError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -45,10 +47,10 @@ Add a photo to a group's pool. @interface FKFlickrGroupsPoolsAdd : NSObject /* The id of the photo to add to the group pool. The photo must belong to the calling user. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The NSID of the group who's pool the photo is to be added to. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.m index 0165fdc..203c4cf 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsAdd.m @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsAdd.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsPoolsAdd + + - (BOOL) needsLogin { return YES; } @@ -81,6 +83,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Content not allowed"; case FKFlickrGroupsPoolsAddError_MaximumNumberOfPhotosInGroupPool: return @"Maximum number of photos in Group Pool"; + case FKFlickrGroupsPoolsAddError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsPoolsAddError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsPoolsAddError_MissingSignature: @@ -93,6 +97,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsPoolsAddError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsPoolsAddError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsPoolsAddError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsPoolsAddError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.h index 075de48..1476ea8 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.h @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetContext.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -16,6 +16,7 @@ typedef enum { FKFlickrGroupsPoolsGetContextError_GroupNotFound = 3, /* The specified group nsid was not a valid group or the caller does not have permission to view the group's pool. */ FKFlickrGroupsPoolsGetContextError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsPoolsGetContextError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsPoolsGetContextError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsPoolsGetContextError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsPoolsGetContextError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsPoolsGetContextError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -32,28 +33,19 @@ Returns next and previous photos for a photo in a group pool. Response: - - + */ @interface FKFlickrGroupsPoolsGetContext : NSObject /* The id of the photo to fetch the context for. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The nsid of the group who's pool to fetch the photo's context for. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ - -/* */ -@property (nonatomic, strong) NSString *num_prev; - -/* */ -@property (nonatomic, strong) NSString *num_next; - -/* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_z, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *group_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.m index f0a7e76..6c7eb78 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetContext.m @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetContext.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsPoolsGetContext + + - (BOOL) needsLogin { return NO; } @@ -57,15 +59,6 @@ - (NSDictionary *) args { if(self.group_id) { [args setValue:self.group_id forKey:@"group_id"]; } - if(self.num_prev) { - [args setValue:self.num_prev forKey:@"num_prev"]; - } - if(self.num_next) { - [args setValue:self.num_next forKey:@"num_next"]; - } - if(self.extras) { - [args setValue:self.extras forKey:@"extras"]; - } return [args copy]; } @@ -82,6 +75,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsPoolsGetContextError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsPoolsGetContextError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsPoolsGetContextError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsPoolsGetContextError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.h index 33317fc..b7cfe7e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.h @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetGroups.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrGroupsPoolsGetGroupsError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsPoolsGetGroupsError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsPoolsGetGroupsError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsPoolsGetGroupsError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsPoolsGetGroupsError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsPoolsGetGroupsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsPoolsGetGroupsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsPoolsGetGroupsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsPoolsGetGroupsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsPoolsGetGroupsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsPoolsGetGroupsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,23 +35,23 @@ Returns a list of groups to which you can add photos. Response: - - - - + + + + */ @interface FKFlickrGroupsPoolsGetGroups : NSObject /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; /* Number of groups to return per page. If this argument is omitted, it defaults to 400. The maximum allowed value is 400. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.m index 858377c..3fdd884 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetGroups.m @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetGroups.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsPoolsGetGroups + + - (BOOL) needsLogin { return YES; } @@ -55,6 +57,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrGroupsPoolsGetGroupsError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsPoolsGetGroupsError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsPoolsGetGroupsError_MissingSignature: @@ -67,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsPoolsGetGroupsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsPoolsGetGroupsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsPoolsGetGroupsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsPoolsGetGroupsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.h index c922c4a..f76f81e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.h @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,8 +14,10 @@ typedef enum { FKFlickrGroupsPoolsGetPhotosError_GroupNotFound = 1, /* The group id passed was not a valid group id. */ FKFlickrGroupsPoolsGetPhotosError_YouDontHavePermissionToViewThisPool = 2, /* The logged in user (if any) does not have permission to view the pool for this group. */ FKFlickrGroupsPoolsGetPhotosError_UnknownUser = 3, /* The user specified by user_id does not exist. */ + FKFlickrGroupsPoolsGetPhotosError_GroupOrpoolIsMemberOnly = 4, /* */ FKFlickrGroupsPoolsGetPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsPoolsGetPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsPoolsGetPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsPoolsGetPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsPoolsGetPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsPoolsGetPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -31,36 +33,33 @@ Returns a list of pool photos for a given group, based on the permissions of the Response: - - + + */ @interface FKFlickrGroupsPoolsGetPhotos : NSObject /* The id of the group who's pool you which to get the photo list for. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ /* A tag to filter the pool with. At the moment only one tag at a time is supported. */ -@property (nonatomic, strong) NSString *tags; +@property (nonatomic, copy) NSString *tags; /* The nsid of a user. Specifiying this parameter will retrieve for you only those photos that the user has contributed to the group pool. */ -@property (nonatomic, strong) NSString *user_id; - -/* */ -@property (nonatomic, strong) NSString *jump_to; +@property (nonatomic, copy) NSString *user_id; /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.m index 0059fc6..04ab0a1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsGetPhotos.m @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsGetPhotos.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsPoolsGetPhotos + + - (BOOL) needsLogin { return NO; } @@ -56,9 +58,6 @@ - (NSDictionary *) args { if(self.user_id) { [args setValue:self.user_id forKey:@"user_id"]; } - if(self.jump_to) { - [args setValue:self.jump_to forKey:@"jump_to"]; - } if(self.extras) { [args setValue:self.extras forKey:@"extras"]; } @@ -80,10 +79,14 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"You don't have permission to view this pool"; case FKFlickrGroupsPoolsGetPhotosError_UnknownUser: return @"Unknown user"; + case FKFlickrGroupsPoolsGetPhotosError_GroupOrpoolIsMemberOnly: + return @"Group/pool is member only"; case FKFlickrGroupsPoolsGetPhotosError_InvalidAPIKey: return @"Invalid API Key"; case FKFlickrGroupsPoolsGetPhotosError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsPoolsGetPhotosError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsPoolsGetPhotosError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsPoolsGetPhotosError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.h b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.h index 18fa057..2bf779c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.h @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsRemove.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,12 +14,14 @@ typedef enum { FKFlickrGroupsPoolsRemoveError_GroupNotFound = 1, /* The group_id passed did not refer to a valid group. */ FKFlickrGroupsPoolsRemoveError_PhotoNotInPool = 2, /* The photo_id passed was not a valid id of a photo in the group pool. */ FKFlickrGroupsPoolsRemoveError_InsufficientPermissionToRemovePhoto = 3, /* The calling user doesn't own the photo and is not an administrator of the group, so may not remove the photo from the pool. */ + FKFlickrGroupsPoolsRemoveError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrGroupsPoolsRemoveError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrGroupsPoolsRemoveError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrGroupsPoolsRemoveError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrGroupsPoolsRemoveError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrGroupsPoolsRemoveError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrGroupsPoolsRemoveError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrGroupsPoolsRemoveError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrGroupsPoolsRemoveError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrGroupsPoolsRemoveError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrGroupsPoolsRemoveError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -39,10 +41,10 @@ Remove a photo from a group pool. @interface FKFlickrGroupsPoolsRemove : NSObject /* The id of the photo to remove from the group pool. The photo must either be owned by the calling user of the calling user must be an administrator of the group. */ -@property (nonatomic, strong) NSString *photo_id; /* (Required) */ +@property (nonatomic, copy) NSString *photo_id; /* (Required) */ /* The NSID of the group who's pool the photo is to removed from. */ -@property (nonatomic, strong) NSString *group_id; /* (Required) */ +@property (nonatomic, copy) NSString *group_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.m b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.m index 0a745e8..d8a055c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Groups/Pools/FKFlickrGroupsPoolsRemove.m @@ -2,7 +2,7 @@ // FKFlickrGroupsPoolsRemove.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrGroupsPoolsRemove + + - (BOOL) needsLogin { return YES; } @@ -69,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Photo not in pool"; case FKFlickrGroupsPoolsRemoveError_InsufficientPermissionToRemovePhoto: return @"Insufficient permission to remove photo"; + case FKFlickrGroupsPoolsRemoveError_SSLIsRequired: + return @"SSL is required"; case FKFlickrGroupsPoolsRemoveError_InvalidSignature: return @"Invalid signature"; case FKFlickrGroupsPoolsRemoveError_MissingSignature: @@ -81,6 +85,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrGroupsPoolsRemoveError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrGroupsPoolsRemoveError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrGroupsPoolsRemoveError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrGroupsPoolsRemoveError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.h index fca92f3..9ca4d5e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.h @@ -2,7 +2,7 @@ // FKFlickrInterestingnessGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrInterestingnessGetListError_NotAValidDateString = 1, /* The date string passed did not validate. All dates must be formatted : YYYY-MM-DD */ FKFlickrInterestingnessGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrInterestingnessGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrInterestingnessGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrInterestingnessGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrInterestingnessGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrInterestingnessGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -33,19 +34,16 @@ Returns the list of interesting photos for the most recent day or a user-specifi @interface FKFlickrInterestingnessGetList : NSObject /* A specific date, formatted as YYYY-MM-DD, to return interesting photos for. */ -@property (nonatomic, strong) NSString *date; - -/* Always ask the pandas for interesting photos. This is a temporary argument to allow developers to update their code. */ -@property (nonatomic, strong) NSString *use_panda; +@property (nonatomic, copy) NSString *date; /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.m index 7d4b493..945a8f3 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Interestingness/FKFlickrInterestingnessGetList.m @@ -2,7 +2,7 @@ // FKFlickrInterestingnessGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrInterestingnessGetList + + - (BOOL) needsLogin { return NO; } @@ -46,9 +48,6 @@ - (NSDictionary *) args { if(self.date) { [args setValue:self.date forKey:@"date"]; } - if(self.use_panda) { - [args setValue:self.use_panda forKey:@"use_panda"]; - } if(self.extras) { [args setValue:self.extras forKey:@"extras"]; } @@ -70,6 +69,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrInterestingnessGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrInterestingnessGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrInterestingnessGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrInterestingnessGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.h b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.h index 15690d0..a7a7872 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.h @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetNamespaces.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrMachinetagsGetNamespacesError_NotAValidPredicate = 1, /* Missing or invalid predicate argument. */ FKFlickrMachinetagsGetNamespacesError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrMachinetagsGetNamespacesError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrMachinetagsGetNamespacesError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrMachinetagsGetNamespacesError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrMachinetagsGetNamespacesError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrMachinetagsGetNamespacesError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,26 +31,26 @@ Return a list of unique namespaces, optionally limited by a given predicate, in Response: - - aero - flickr - geo - taxonomy - upcoming - + + aero + flickr + geo + taxonomy + upcoming + */ @interface FKFlickrMachinetagsGetNamespaces : NSObject /* Limit the list of namespaces returned to those that have the following predicate. */ -@property (nonatomic, strong) NSString *predicate; +@property (nonatomic, copy) NSString *predicate; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.m b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.m index 8b5a92a..7368fd1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetNamespaces.m @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetNamespaces.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrMachinetagsGetNamespaces + + - (BOOL) needsLogin { return NO; } @@ -64,6 +66,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrMachinetagsGetNamespacesError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrMachinetagsGetNamespacesError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrMachinetagsGetNamespacesError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrMachinetagsGetNamespacesError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.h b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.h index 971dbae..59de280 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.h @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetPairs.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrMachinetagsGetPairsError_NotAValidPredicate = 2, /* Missing or invalid predicate argument. */ FKFlickrMachinetagsGetPairsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrMachinetagsGetPairsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrMachinetagsGetPairsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrMachinetagsGetPairsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrMachinetagsGetPairsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrMachinetagsGetPairsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,27 +31,27 @@ Return a list of unique namespace and predicate pairs, optionally limited by pre Response: - - aero:airline - aero:icao - aero:model - aero:tail + + aero:airline + aero:icao + aero:model + aero:tail */ @interface FKFlickrMachinetagsGetPairs : NSObject /* Limit the list of pairs returned to those that have the following namespace. */ -@property (nonatomic, strong) NSString *namespace; +@property (nonatomic, copy) NSString *namespace; /* Limit the list of pairs returned to those that have the following predicate. */ -@property (nonatomic, strong) NSString *predicate; +@property (nonatomic, copy) NSString *predicate; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.m b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.m index c8dc9fc..61de5bf 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPairs.m @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetPairs.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrMachinetagsGetPairs + + - (BOOL) needsLogin { return NO; } @@ -69,6 +71,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrMachinetagsGetPairsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrMachinetagsGetPairsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrMachinetagsGetPairsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrMachinetagsGetPairsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.h b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.h index a400c8c..030537d 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.h @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetPredicates.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrMachinetagsGetPredicatesError_NotAValidNamespace = 1, /* Missing or invalid namespace argument. */ FKFlickrMachinetagsGetPredicatesError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrMachinetagsGetPredicatesError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrMachinetagsGetPredicatesError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrMachinetagsGetPredicatesError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrMachinetagsGetPredicatesError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrMachinetagsGetPredicatesError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,24 +30,24 @@ Return a list of unique predicates, optionally limited by a given namespace. Response: - - elbow - face - hand - + + elbow + face + hand + */ @interface FKFlickrMachinetagsGetPredicates : NSObject /* Limit the list of predicates returned to those that have the following namespace. */ -@property (nonatomic, strong) NSString *namespace; +@property (nonatomic, copy) NSString *namespace; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.m b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.m index bebd393..1d7a675 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetPredicates.m @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetPredicates.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrMachinetagsGetPredicates + + - (BOOL) needsLogin { return NO; } @@ -64,6 +66,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrMachinetagsGetPredicatesError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrMachinetagsGetPredicatesError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrMachinetagsGetPredicatesError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrMachinetagsGetPredicatesError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.h b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.h index adf172d..3307e08 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.h @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetRecentValues.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrMachinetagsGetRecentValuesError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrMachinetagsGetRecentValuesError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrMachinetagsGetRecentValuesError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrMachinetagsGetRecentValuesError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrMachinetagsGetRecentValuesError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrMachinetagsGetRecentValuesError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -28,24 +29,24 @@ Fetch recently used (or created) machine tags values. Response: - - maui chaff flower - - + + maui chaff flower + + */ @interface FKFlickrMachinetagsGetRecentValues : NSObject /* A namespace that all values should be restricted to. */ -@property (nonatomic, strong) NSString *namespace; +@property (nonatomic, copy) NSString *namespace; /* A predicate that all values should be restricted to. */ -@property (nonatomic, strong) NSString *predicate; +@property (nonatomic, copy) NSString *predicate; /* Only return machine tags values that have been added since this timestamp, in epoch seconds. */ -@property (nonatomic, strong) NSString *added_since; +@property (nonatomic, copy) NSString *added_since; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.m b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.m index 3c4d56f..85ef6a4 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetRecentValues.m @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetRecentValues.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrMachinetagsGetRecentValues + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrMachinetagsGetRecentValuesError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrMachinetagsGetRecentValuesError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrMachinetagsGetRecentValuesError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrMachinetagsGetRecentValuesError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.h b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.h index 87315a3..780fea7 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.h @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetValues.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrMachinetagsGetValuesError_NotAValidPredicate = 2, /* Missing or invalid predicate argument. */ FKFlickrMachinetagsGetValuesError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrMachinetagsGetValuesError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrMachinetagsGetValuesError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrMachinetagsGetValuesError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrMachinetagsGetValuesError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrMachinetagsGetValuesError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -30,29 +31,26 @@ Return a list of unique values for a namespace and predicate. Response: - - 123 - 456 - 789 + + 123 + 456 + 789 */ @interface FKFlickrMachinetagsGetValues : NSObject /* The namespace that all values should be restricted to. */ -@property (nonatomic, strong) NSString *namespace; /* (Required) */ +@property (nonatomic, copy) NSString *namespace; /* (Required) */ /* The predicate that all values should be restricted to. */ -@property (nonatomic, strong) NSString *predicate; /* (Required) */ +@property (nonatomic, copy) NSString *predicate; /* (Required) */ /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; - -/* Minimum usage count. */ -@property (nonatomic, strong) NSString *usage; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.m b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.m index d0aa1dd..1cd1331 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Machinetags/FKFlickrMachinetagsGetValues.m @@ -2,7 +2,7 @@ // FKFlickrMachinetagsGetValues.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrMachinetagsGetValues + + - (BOOL) needsLogin { return NO; } @@ -63,9 +65,6 @@ - (NSDictionary *) args { if(self.page) { [args setValue:self.page forKey:@"page"]; } - if(self.usage) { - [args setValue:self.usage forKey:@"usage"]; - } return [args copy]; } @@ -80,6 +79,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrMachinetagsGetValuesError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrMachinetagsGetValuesError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrMachinetagsGetValuesError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrMachinetagsGetValuesError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.h b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.h index e50c53c..17af89c 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.h @@ -2,7 +2,7 @@ // FKFlickrPandaGetList.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,6 +13,7 @@ typedef enum { FKFlickrPandaGetListError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPandaGetListError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPandaGetListError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPandaGetListError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPandaGetListError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPandaGetListError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -23,17 +24,17 @@ typedef enum { /* -Return a list of Flickr pandas, from whom you can request photos using the flickr.panda.getPhotos API method. -

+Return a list of Flickr pandas, from whom you can request photos using the flickr.panda.getPhotos API method. +

More information about the pandas can be found on the dev blog. Response: - - ling ling - hsing hsing - wang wang + + ling ling + hsing hsing + wang wang */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.m b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.m index 89fd47b..b4f6b18 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetList.m @@ -2,7 +2,7 @@ // FKFlickrPandaGetList.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPandaGetList + + - (BOOL) needsLogin { return NO; } @@ -53,6 +55,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPandaGetListError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPandaGetListError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPandaGetListError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPandaGetListError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.h index 47e22e6..b609281 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.h @@ -2,7 +2,7 @@ // FKFlickrPandaGetPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -15,6 +15,7 @@ typedef enum { FKFlickrPandaGetPhotosError_UnknownPanda = 2, /* You requested a panda we haven't met yet. */ FKFlickrPandaGetPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPandaGetPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPandaGetPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPandaGetPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPandaGetPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPandaGetPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -25,44 +26,44 @@ typedef enum { /* -Ask the Flickr Pandas for a list of recent public (and "safe") photos. -

+Ask the Flickr Pandas for a list of recent public (and "safe") photos. +

More information about the pandas can be found on the dev blog. When calling this API method please ensure that your code uses the lastupdate and interval attributes to determine when to request new photos. lastupdate is a Unix timestamp indicating when the list of photos was generated and interval is the number of seconds to wait before polling the Flickr API again. Response: - - - - + + + + */ @interface FKFlickrPandaGetPhotos : NSObject -/* The name of the panda to ask for photos from. There are currently three pandas named:

- - - +/* The name of the panda to ask for photos from. There are currently three pandas named:

+ + +
You can fetch a list of all the current pandas using the flickr.panda.getList API method. */ -@property (nonatomic, strong) NSString *panda_name; /* (Required) */ +@property (nonatomic, copy) NSString *panda_name; /* (Required) */ /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: description, license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; /* Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500. */ -@property (nonatomic, strong) NSString *per_page; +@property (nonatomic, copy) NSString *per_page; /* The page of results to return. If this argument is omitted, it defaults to 1. */ -@property (nonatomic, strong) NSString *page; +@property (nonatomic, copy) NSString *page; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.m b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.m index 7067ac4..f1e5895 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.m +++ b/Pods/FlickrKit/Classes/Model/Generated/Panda/FKFlickrPandaGetPhotos.m @@ -2,7 +2,7 @@ // FKFlickrPandaGetPhotos.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPandaGetPhotos + + - (BOOL) needsLogin { return NO; } @@ -73,6 +75,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPandaGetPhotosError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPandaGetPhotosError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPandaGetPhotosError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPandaGetPhotosError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.h index e24471b..c879479 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.h @@ -2,7 +2,7 @@ // FKFlickrPeopleFindByEmail.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrPeopleFindByEmailError_UserNotFound = 1, /* No user with the supplied email address was found. */ FKFlickrPeopleFindByEmailError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleFindByEmailError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleFindByEmailError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleFindByEmailError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleFindByEmailError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleFindByEmailError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,15 +30,15 @@ Return a user's NSID, given their email address Response: - - Stewart + + Stewart */ @interface FKFlickrPeopleFindByEmail : NSObject /* The email address of the user to find (may be primary or secondary). */ -@property (nonatomic, strong) NSString *find_email; /* (Required) */ +@property (nonatomic, copy) NSString *find_email; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.m b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.m index d441177..af8177a 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.m +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByEmail.m @@ -2,7 +2,7 @@ // FKFlickrPeopleFindByEmail.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPeopleFindByEmail + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPeopleFindByEmailError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPeopleFindByEmailError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPeopleFindByEmailError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPeopleFindByEmailError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.h index 0f487da..27246d0 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.h @@ -2,7 +2,7 @@ // FKFlickrPeopleFindByUsername.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrPeopleFindByUsernameError_UserNotFound = 1, /* No user with the supplied username was found. */ FKFlickrPeopleFindByUsernameError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleFindByUsernameError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleFindByUsernameError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleFindByUsernameError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleFindByUsernameError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleFindByUsernameError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,15 +30,15 @@ Return a user's NSID, given their username. Response: - - Stewart + + Stewart */ @interface FKFlickrPeopleFindByUsername : NSObject /* The username of the user to lookup. */ -@property (nonatomic, strong) NSString *username; /* (Required) */ +@property (nonatomic, copy) NSString *username; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.m b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.m index a22f575..238d533 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.m +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleFindByUsername.m @@ -2,7 +2,7 @@ // FKFlickrPeopleFindByUsername.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPeopleFindByUsername + + - (BOOL) needsLogin { return NO; } @@ -62,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPeopleFindByUsernameError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPeopleFindByUsernameError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPeopleFindByUsernameError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPeopleFindByUsernameError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.h index 1bc9b21..328d1d1 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.h @@ -2,7 +2,7 @@ // FKFlickrPeopleGetGroups.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,12 +12,14 @@ typedef enum { FKFlickrPeopleGetGroupsError_UserNotFound = 1, /* The user id passed did not match a Flickr user. */ + FKFlickrPeopleGetGroupsError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrPeopleGetGroupsError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrPeopleGetGroupsError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrPeopleGetGroupsError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrPeopleGetGroupsError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrPeopleGetGroupsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleGetGroupsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleGetGroupsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleGetGroupsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleGetGroupsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleGetGroupsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -34,21 +36,21 @@ The admin attribute indicates whether the user is an administrator of the group. Response: - - - - - + + + + + */ @interface FKFlickrPeopleGetGroups : NSObject /* The NSID of the user to fetch groups for. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ +@property (nonatomic, copy) NSString *user_id; /* (Required) */ /* A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: privacy, throttle, restrictions */ -@property (nonatomic, strong) NSString *extras; +@property (nonatomic, copy) NSString *extras; @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.m b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.m index 8e158eb..a2000c3 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.m +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetGroups.m @@ -2,7 +2,7 @@ // FKFlickrPeopleGetGroups.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPeopleGetGroups + + - (BOOL) needsLogin { return YES; } @@ -61,6 +63,8 @@ - (NSString *) descriptionForError:(NSInteger)error { switch(error) { case FKFlickrPeopleGetGroupsError_UserNotFound: return @"User not found"; + case FKFlickrPeopleGetGroupsError_SSLIsRequired: + return @"SSL is required"; case FKFlickrPeopleGetGroupsError_InvalidSignature: return @"Invalid signature"; case FKFlickrPeopleGetGroupsError_MissingSignature: @@ -73,6 +77,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPeopleGetGroupsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPeopleGetGroupsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPeopleGetGroupsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPeopleGetGroupsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.h index f2c815d..5a58c8e 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.h @@ -2,7 +2,7 @@ // FKFlickrPeopleGetInfo.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -14,6 +14,7 @@ typedef enum { FKFlickrPeopleGetInfoError_UserNotFound = 1, /* The user id passed did not match a Flickr user. */ FKFlickrPeopleGetInfoError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleGetInfoError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleGetInfoError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleGetInfoError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleGetInfoError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleGetInfoError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -26,42 +27,33 @@ typedef enum { Get information about a user. -

The firstdate element contains the unix timestamp of the first photo uploaded by the user. The firstdatetaken element contains the mysql datetime of the first photo taken by the user.

-

The iconserver element is used to build the url to the users' buddyicon - for more information please read the buddyicon guide.

-

-If the API call is authenticated contact information will also be returned as attributes on the person element. contact, friend, and family are boolean flags describing the relationship between the authenticated user, and the person currently being inspected. revcontact, revfriend, and revfamily is the reciprocal relationship. +

The firstdate element contains the unix timestamp of the first photo uploaded by the user. The firstdatetaken element contains the mysql datetime of the first photo taken by the user.

+

The iconserver element is used to build the url to the users' buddyicon - for more information please read the buddyicon guide.

+

+If the API call is authenticated contact information will also be returned as attributes on the person element. contact, friend, and family are boolean flags describing the relationship between the authenticated user, and the person currently being inspected. revcontact, revfriend, and revfamily is the reciprocal relationship.

Response: - - bees - Cal Henderson - eea6cd28e3d0003ab51b0058a684d94980b727ac - Vancouver, Canada - http://www.flickr.com/photos/bees/ - http://www.flickr.com/people/bees/ - - 1071510391 - 1900-09-02 09:11:24 - 449 - + + bees + Cal Henderson + eea6cd28e3d0003ab51b0058a684d94980b727ac + Vancouver, Canada + http://www.flickr.com/photos/bees/ + http://www.flickr.com/people/bees/ + + 1071510391 + 1900-09-02 09:11:24 + 449 + */ @interface FKFlickrPeopleGetInfo : NSObject /* The NSID of the user to fetch information about. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ - -/* As an alternative to user_id, load a member based on URL, either photos or people URL. */ -@property (nonatomic, strong) NSString *url; /* (Required) */ - -/* If set to 1, it checks if the user is connected to Facebook and returns that information back. */ -@property (nonatomic, strong) NSString *fb_connected; - -/* If set to 1, it returns the storage information about the user, like the storage used and storage available. */ -@property (nonatomic, strong) NSString *storage; +@property (nonatomic, copy) NSString *user_id; /* (Required) */ @end diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.m b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.m index 2ddc484..2e17267 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.m +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetInfo.m @@ -2,7 +2,7 @@ // FKFlickrPeopleGetInfo.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPeopleGetInfo + + - (BOOL) needsLogin { return NO; } @@ -35,10 +37,6 @@ - (BOOL) isValid:(NSError **)error { valid = NO; [errorDescription appendString:@"'user_id', "]; } - if(!self.url) { - valid = NO; - [errorDescription appendString:@"'url', "]; - } if(error != NULL) { if(!valid) { @@ -54,15 +52,6 @@ - (NSDictionary *) args { if(self.user_id) { [args setValue:self.user_id forKey:@"user_id"]; } - if(self.url) { - [args setValue:self.url forKey:@"url"]; - } - if(self.fb_connected) { - [args setValue:self.fb_connected forKey:@"fb_connected"]; - } - if(self.storage) { - [args setValue:self.storage forKey:@"storage"]; - } return [args copy]; } @@ -75,6 +64,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPeopleGetInfoError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPeopleGetInfoError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPeopleGetInfoError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPeopleGetInfoError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.h index 6c7c17a..d85a907 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.h @@ -2,7 +2,7 @@ // FKFlickrPeopleGetLimits.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -11,12 +11,14 @@ #import "FKFlickrAPIMethod.h" typedef enum { + FKFlickrPeopleGetLimitsError_SSLIsRequired = 95, /* SSL is required to access the Flickr API. */ FKFlickrPeopleGetLimitsError_InvalidSignature = 96, /* The passed signature was invalid. */ FKFlickrPeopleGetLimitsError_MissingSignature = 97, /* The call required signing but no signature was sent. */ FKFlickrPeopleGetLimitsError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ FKFlickrPeopleGetLimitsError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrPeopleGetLimitsError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleGetLimitsError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleGetLimitsError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleGetLimitsError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleGetLimitsError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleGetLimitsError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -29,20 +31,20 @@ typedef enum { Returns the photo and video limits that apply to the calling user account. -
    -
  • photos/@maxdisplaypx: maximum size in pixels for photos displayed on the site (0 means that no limit is in place). No limit is placed on the dimension of photos uploaded.
  • -
  • photos/@maxupload: maximum file size in bytes for photo uploads.
  • -
  • videos/@maxduration: maximum duration in seconds of a video.
  • -
  • videos/@maxupload: maximum file size in bytes for video uploads.
  • -
- +
    +
  • photos/@maxdisplaypx: maximum size in pixels for photos displayed on the site (0 means that no limit is in place). No limit is placed on the dimension of photos uploaded.
  • +
  • photos/@maxupload: maximum file size in bytes for photo uploads.
  • +
  • videos/@maxduration: maximum duration in seconds of a video.
  • +
  • videos/@maxupload: maximum file size in bytes for video uploads.
  • +
+

For more details, see the documentation about limits.

Response: - - - + + + */ diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.m b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.m index 09f89f7..57737f5 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.m +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetLimits.m @@ -2,7 +2,7 @@ // FKFlickrPeopleGetLimits.m // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -12,6 +12,8 @@ @implementation FKFlickrPeopleGetLimits + + - (BOOL) needsLogin { return YES; } @@ -49,6 +51,8 @@ - (NSDictionary *) args { - (NSString *) descriptionForError:(NSInteger)error { switch(error) { + case FKFlickrPeopleGetLimitsError_SSLIsRequired: + return @"SSL is required"; case FKFlickrPeopleGetLimitsError_InvalidSignature: return @"Invalid signature"; case FKFlickrPeopleGetLimitsError_MissingSignature: @@ -61,6 +65,8 @@ - (NSString *) descriptionForError:(NSInteger)error { return @"Invalid API Key"; case FKFlickrPeopleGetLimitsError_ServiceCurrentlyUnavailable: return @"Service currently unavailable"; + case FKFlickrPeopleGetLimitsError_WriteOperationFailed: + return @"Write operation failed"; case FKFlickrPeopleGetLimitsError_FormatXXXNotFound: return @"Format \"xxx\" not found"; case FKFlickrPeopleGetLimitsError_MethodXXXNotFound: diff --git a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetPhotos.h b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetPhotos.h index 9680e09..da6315f 100644 --- a/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetPhotos.h +++ b/Pods/FlickrKit/Classes/Model/Generated/People/FKFlickrPeopleGetPhotos.h @@ -2,7 +2,7 @@ // FKFlickrPeopleGetPhotos.h // FlickrKit // -// Generated by FKAPIBuilder on 12 Jun, 2013 at 17:19. +// Generated by FKAPIBuilder on 19 Sep, 2014 at 10:49. // Copyright (c) 2013 DevedUp Ltd. All rights reserved. http://www.devedup.com // // DO NOT MODIFY THIS FILE - IT IS MACHINE GENERATED @@ -13,12 +13,9 @@ typedef enum { FKFlickrPeopleGetPhotosError_RequiredArgumentsMissing = 1, /* */ FKFlickrPeopleGetPhotosError_UnknownUser = 2, /* A user_id was passed which did not match a valid flickr user. */ - FKFlickrPeopleGetPhotosError_InvalidSignature = 96, /* The passed signature was invalid. */ - FKFlickrPeopleGetPhotosError_MissingSignature = 97, /* The call required signing but no signature was sent. */ - FKFlickrPeopleGetPhotosError_LoginFailedOrInvalidAuthToken = 98, /* The login details or auth token passed were invalid. */ - FKFlickrPeopleGetPhotosError_UserNotLoggedInOrInsufficientPermissions = 99, /* The method requires user authentication but the user was not logged in, or the authenticated method call did not have the required permissions. */ FKFlickrPeopleGetPhotosError_InvalidAPIKey = 100, /* The API key passed was not valid or has expired. */ FKFlickrPeopleGetPhotosError_ServiceCurrentlyUnavailable = 105, /* The requested service is temporarily unavailable. */ + FKFlickrPeopleGetPhotosError_WriteOperationFailed = 106, /* The requested operation failed due to a temporary issue. */ FKFlickrPeopleGetPhotosError_FormatXXXNotFound = 111, /* The requested response format was not found. */ FKFlickrPeopleGetPhotosError_MethodXXXNotFound = 112, /* The requested method was not found. */ FKFlickrPeopleGetPhotosError_InvalidSOAPEnvelope = 114, /* The SOAP envelope send in the request could not be parsed. */ @@ -38,61 +35,61 @@ Return photos from the given user's photostream. Only photos visible to the call @interface FKFlickrPeopleGetPhotos : NSObject /* The NSID of the user who's photos to return. A value of "me" will return the calling user's photos. */ -@property (nonatomic, strong) NSString *user_id; /* (Required) */ - -/* Safe search setting: - -
    -
  • 1 for safe.
  • -
  • 2 for moderate.
  • -
  • 3 for restricted.
  • -
- +@property (nonatomic, copy) NSString *user_id; /* (Required) */ + +/* Safe search setting: + +
    +
  • 1 for safe.
  • +
  • 2 for moderate.
  • +
  • 3 for restricted.
  • +
+ (Please note: Un-authed calls can only see Safe content.) */ -@property (nonatomic, strong) NSString *safe_search; +@property (nonatomic, copy) NSString *safe_search; /* Minimum upload date. Photos with an upload date greater than or equal to this value will be returned. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *min_upload_date; +@property (nonatomic, copy) NSString *min_upload_date; /* Maximum upload date. Photos with an upload date less than or equal to this value will be returned. The date should be in the form of a unix timestamp. */ -@property (nonatomic, strong) NSString *max_upload_date; +@property (nonatomic, copy) NSString *max_upload_date; /* Minimum taken date. Photos with an taken date greater than or equal to this value will be returned. The date should be in the form of a mysql datetime. */ -@property (nonatomic, strong) NSString *min_taken_date; +@property (nonatomic, copy) NSString *min_taken_date; /* Maximum taken date. Photos with an taken date less than or equal to this value will be returned. The date should be in the form of a mysql datetime. */ -@property (nonatomic, strong) NSString *max_taken_date; - -/* Content Type setting: -