@viewcandidate/client 0.0.19 → 0.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -747,20 +747,21 @@ declare class CandidateService extends BaseService {
747
747
  * List candidates with presentations
748
748
  * @endpoint get /candidates
749
749
  * @param page Page number
750
+ * @param q Search query for typeahead filtering by name, role, email or location
750
751
  * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
751
752
  * @param reportProgress flag to report request and response progress.
752
753
  */
753
- candidateControllerGetCandidates(page?: number, observe?: 'body', reportProgress?: boolean, options?: {
754
+ candidateControllerGetCandidates(page?: number, q?: string, observe?: 'body', reportProgress?: boolean, options?: {
754
755
  httpHeaderAccept?: 'application/json';
755
756
  context?: HttpContext;
756
757
  transferCache?: boolean;
757
758
  }): Observable<APIPaginatedCandidateResponse>;
758
- candidateControllerGetCandidates(page?: number, observe?: 'response', reportProgress?: boolean, options?: {
759
+ candidateControllerGetCandidates(page?: number, q?: string, observe?: 'response', reportProgress?: boolean, options?: {
759
760
  httpHeaderAccept?: 'application/json';
760
761
  context?: HttpContext;
761
762
  transferCache?: boolean;
762
763
  }): Observable<HttpResponse<APIPaginatedCandidateResponse>>;
763
- candidateControllerGetCandidates(page?: number, observe?: 'events', reportProgress?: boolean, options?: {
764
+ candidateControllerGetCandidates(page?: number, q?: string, observe?: 'events', reportProgress?: boolean, options?: {
764
765
  httpHeaderAccept?: 'application/json';
765
766
  context?: HttpContext;
766
767
  transferCache?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@viewcandidate/client",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "description": "OpenAPI client for @viewcandidate/client",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {