@@ -320,6 +320,7 @@ export interface Response$getReferenceItems$Status$200 {
320
320
}
321
321
export interface Parameter$searchBook {
322
322
\\" book.name\\ " : string ;
323
+ \\" from.publishedAt\\ " ?: number ;
323
324
}
324
325
export interface Response$searchBook$Status$200 {
325
326
\\" application/json\\ " : {
@@ -439,7 +440,10 @@ export class Client<RequestOption> {
439
440
const headers = {
440
441
Accept : \\" application/json\\ "
441
442
} ;
442
- return this.apiClient.request(\\ "GET\\ ", url, headers, undefined, undefined, option);
443
+ const queryParameters: QueryParameters = {
444
+ \\" from.publishedAt\\ " : { value: params .parameter [\\" from.publishedAt\\ " ], explode: false }
445
+ } ;
446
+ return this.apiClient.request(\\ "GET\\ ", url, headers, undefined, queryParameters, option);
443
447
}
444
448
public async getBookById(params: Params$getBookById, option?: RequestOption): Promise<Response$getBookById$Status$200[\\ "application/json\\ "]> {
445
449
const url = this .baseUrl + \` /get/books/\$ { params .parameter .id } \` ;
@@ -842,6 +846,7 @@ export interface Response$getReferenceItems$Status$200 {
842
846
}
843
847
export interface Parameter$searchBook {
844
848
\\" book.name\\ " : string ;
849
+ \\" from.publishedAt\\ " ?: number ;
845
850
}
846
851
export interface Response$searchBook$Status$200 {
847
852
\\" application/json\\ " : {
@@ -961,7 +966,10 @@ export class Client<RequestOption> {
961
966
const headers = {
962
967
Accept : \\" application/json\\ "
963
968
} ;
964
- return this.apiClient.request(\\ "GET\\ ", url, headers, undefined, undefined, option);
969
+ const queryParameters: QueryParameters = {
970
+ \\" from.publishedAt\\ " : { value: params .parameter [\\" from.publishedAt\\ " ], explode: false }
971
+ } ;
972
+ return this.apiClient.request(\\ "GET\\ ", url, headers, undefined, queryParameters, option);
965
973
}
966
974
public getBookById(params: Params$getBookById, option?: RequestOption): Response$getBookById$Status$200[\\ "application/json\\ "] {
967
975
const url = this .baseUrl + \` /get/books/\$ { params .parameter .id } \` ;
0 commit comments