Skip to content

Commit f1b2253

Browse files
authored
feat(domain): add strictSearch filter to search API (#383)
1 parent 33d0d38 commit f1b2253

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/domain/v2beta1/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1397,6 +1397,7 @@ export class RegistrarAPI extends ParentAPI {
13971397
path: `/domain/v2beta1/search-domains`,
13981398
urlParams: urlParams(
13991399
['domains', request.domains],
1400+
['strict_search', request.strictSearch],
14001401
['tlds', request.tlds],
14011402
),
14021403
},

packages/clients/src/api/domain/v2beta1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1292,6 +1292,8 @@ export type RegistrarApiSearchAvailableDomainsRequest = {
12921292
domains: Array<string>
12931293
/** Array of tlds to search on */
12941294
tlds?: Array<string>
1295+
/** Search exact match */
1296+
strictSearch: boolean
12951297
}
12961298

12971299
export type RegistrarApiCreateDomainHostRequest = {

0 commit comments

Comments
 (0)