@@ -118,7 +118,7 @@ -(NSNumber*) updatePetWithCompletionBlock: (SWGPet*) body
118
118
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[@" application/json" , @" application/xml" ]];
119
119
120
120
// Authentication setting
121
- NSArray *authSettings = @[];
121
+ NSArray *authSettings = @[@" petstore_auth " ];
122
122
123
123
id bodyParam = nil ;
124
124
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -196,7 +196,7 @@ -(NSNumber*) addPetWithCompletionBlock: (SWGPet*) body
196
196
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[@" application/json" , @" application/xml" ]];
197
197
198
198
// Authentication setting
199
- NSArray *authSettings = @[];
199
+ NSArray *authSettings = @[@" petstore_auth " ];
200
200
201
201
id bodyParam = nil ;
202
202
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -280,7 +280,7 @@ -(NSNumber*) findPetsByStatusWithCompletionBlock: (NSArray* /* NSString */) stat
280
280
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[]];
281
281
282
282
// Authentication setting
283
- NSArray *authSettings = @[];
283
+ NSArray *authSettings = @[@" petstore_auth " ];
284
284
285
285
id bodyParam = nil ;
286
286
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -364,7 +364,7 @@ -(NSNumber*) findPetsByTagsWithCompletionBlock: (NSArray* /* NSString */) tags
364
364
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[]];
365
365
366
366
// Authentication setting
367
- NSArray *authSettings = @[];
367
+ NSArray *authSettings = @[@" petstore_auth " ];
368
368
369
369
id bodyParam = nil ;
370
370
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -450,7 +450,7 @@ -(NSNumber*) getPetByIdWithCompletionBlock: (NSNumber*) petId
450
450
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[]];
451
451
452
452
// Authentication setting
453
- NSArray *authSettings = @[];
453
+ NSArray *authSettings = @[@" petstore_auth " , @" api_key " ];
454
454
455
455
id bodyParam = nil ;
456
456
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -542,7 +542,7 @@ -(NSNumber*) updatePetWithFormWithCompletionBlock: (NSString*) petId
542
542
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[@" application/x-www-form-urlencoded" ]];
543
543
544
544
// Authentication setting
545
- NSArray *authSettings = @[];
545
+ NSArray *authSettings = @[@" petstore_auth " ];
546
546
547
547
id bodyParam = nil ;
548
548
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -646,7 +646,7 @@ -(NSNumber*) deletePetWithCompletionBlock: (NSNumber*) petId
646
646
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[]];
647
647
648
648
// Authentication setting
649
- NSArray *authSettings = @[];
649
+ NSArray *authSettings = @[@" petstore_auth " ];
650
650
651
651
id bodyParam = nil ;
652
652
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
@@ -738,7 +738,7 @@ -(NSNumber*) uploadFileWithCompletionBlock: (NSNumber*) petId
738
738
NSString *requestContentType = [SWGApiClient selectHeaderContentType: @[@" multipart/form-data" ]];
739
739
740
740
// Authentication setting
741
- NSArray *authSettings = @[];
741
+ NSArray *authSettings = @[@" petstore_auth " ];
742
742
743
743
id bodyParam = nil ;
744
744
NSMutableDictionary *formParams = [[NSMutableDictionary alloc ] init ];
0 commit comments