We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 870bf5f + aef8459 commit d5120f1Copy full SHA for d5120f1
src/api.ts
@@ -17,6 +17,7 @@ import {
17
CompanyUserProfileSkill,
18
CompanyUserProjectAssignment,
19
CompanyUserSkill,
20
+ Keyword,
21
Project,
22
ProjectAssignment,
23
ProjectAssignmentEdit,
@@ -441,4 +442,10 @@ export class Api {
441
442
)
443
.json<void>();
444
}
445
+
446
+ keywordSearch(term: string) {
447
+ return this.client
448
+ .get(`v0.1/companies/${this.company.id}/keywords/search/${term}`)
449
+ .json<Keyword[]>();
450
+ }
451
src/service.ts
@@ -483,4 +483,8 @@ export class CinodeService {
483
skillId
484
);
485
486
487
+ async keywordSearch(term: string) {
488
+ return await this.api.keywordSearch(term);
489
490
0 commit comments