@@ -42,14 +42,15 @@ export class DefaultService extends BaseService {
4242 * @param ids Ids
4343 * @param filter Filter
4444 * @param country Filter
45+ * @param tags Tags
4546 * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
4647 * @param reportProgress flag to report request and response progress.
4748 * @param options additional options
4849 */
49- public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'body' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < Response > ;
50- public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'response' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpResponse < Response > > ;
51- public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'events' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpEvent < Response > > ;
52- public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe : any = 'body' , reportProgress : boolean = false , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < any > {
50+ public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'body' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < Response > ;
51+ public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'response' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpResponse < Response > > ;
52+ public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'events' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpEvent < Response > > ;
53+ public searchExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe : any = 'body' , reportProgress : boolean = false , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < any > {
5354
5455 let localVarQueryParameters = new OpenApiHttpParams ( this . encoder ) ;
5556
@@ -80,6 +81,15 @@ export class DefaultService extends BaseService {
8081 ) ;
8182
8283
84+ localVarQueryParameters = this . addToHttpParams (
85+ localVarQueryParameters ,
86+ 'tags' ,
87+ < any > tags ,
88+ QueryParamStyle . Form ,
89+ true ,
90+ ) ;
91+
92+
8393 let localVarHeaders = this . defaultHeaders ;
8494
8595 const localVarHttpHeaderAcceptSelected : string | undefined = options ?. httpHeaderAccept ?? this . configuration . selectHeaderAccept ( [
@@ -126,14 +136,15 @@ export class DefaultService extends BaseService {
126136 * @param ids Ids
127137 * @param filter Filter
128138 * @param country Filter
139+ * @param tags Tags
129140 * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
130141 * @param reportProgress flag to report request and response progress.
131142 * @param options additional options
132143 */
133- public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'body' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < Response > ;
134- public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'response' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpResponse < Response > > ;
135- public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe ?: 'events' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpEvent < Response > > ;
136- public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , observe : any = 'body' , reportProgress : boolean = false , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < any > {
144+ public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'body' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < Response > ;
145+ public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'response' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpResponse < Response > > ;
146+ public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe ?: 'events' , reportProgress ?: boolean , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < HttpEvent < Response > > ;
147+ public searchNotExplode ( ids ?: Array < number > , filter ?: Filter , country ?: string , tags ?: Set < string > , observe : any = 'body' , reportProgress : boolean = false , options ?: { httpHeaderAccept ?: 'application/json' , context ?: HttpContext , transferCache ?: boolean } ) : Observable < any > {
137148
138149 let localVarQueryParameters = new OpenApiHttpParams ( this . encoder ) ;
139150
@@ -164,6 +175,15 @@ export class DefaultService extends BaseService {
164175 ) ;
165176
166177
178+ localVarQueryParameters = this . addToHttpParams (
179+ localVarQueryParameters ,
180+ 'tags' ,
181+ < any > tags ,
182+ QueryParamStyle . Form ,
183+ false ,
184+ ) ;
185+
186+
167187 let localVarHeaders = this . defaultHeaders ;
168188
169189 const localVarHttpHeaderAcceptSelected : string | undefined = options ?. httpHeaderAccept ?? this . configuration . selectHeaderAccept ( [
0 commit comments