Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions src/management/__generated/managers/custom-domains-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,19 @@ export class CustomDomainsManager extends BaseAPI {
config: {},
},
{
key: 'domain_metadata_filter',
key: 'q',
config: {},
},
{
key: 'domain_name_filter',
key: 'fields',
config: {},
},
{
key: 'include_fields',
config: {},
},
{
key: 'sort',
config: {},
},
]);
Expand Down
18 changes: 14 additions & 4 deletions src/management/__generated/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21721,15 +21721,25 @@ export interface GetCustomDomainsRequest {
*/
from?: string;
/**
* Optional filter on domain_metadata.
* Query in <a href ="http://www.lucenetutorial.com/lucene-query-syntax.html">Lucene query string syntax</a>.
*
*/
domain_metadata_filter?: string;
q?: string;
/**
* Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields. Not yet supported
*
*/
fields?: string;
/**
* Optional filter on domain_name.
* Whether specified fields are to be included (true) or excluded (false).
*
*/
domain_name_filter?: string;
include_fields?: boolean;
/**
* Field to sort by. Only domain is supported at this time
*
*/
sort?: string;
}
/**
*
Expand Down