Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove redundant client_ids parameter from getAll() methood of clientsManager #1076

Merged
merged 4 commits into from
Jan 28, 2025
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
4 changes: 0 additions & 4 deletions src/management/__generated/managers/clients-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,10 +170,6 @@ export class ClientsManager extends BaseAPI {
key: 'app_type',
config: {},
},
{
key: 'client_ids',
config: {},
},
{
key: 'q',
config: {},
Expand Down
9 changes: 3 additions & 6 deletions src/management/__generated/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5138,6 +5138,8 @@
*/
export interface GetClients200ResponseOneOf1 {
/**
* Opaque identifier for use with the <i>from</i> query parameter for the next page of results.<br/>This identifier is valid for 24 hours.
*
*/
next: string;
/**
Expand Down Expand Up @@ -12016,7 +12018,7 @@
/**
*
*/
export interface PostFormsRequestNodesInnerAnyOf2ConfigComponentsInnerAnyOf2AnyOf13Config {}

Check warning on line 12021 in src/management/__generated/models/index.ts

View workflow job for this annotation

GitHub Actions / Build and Test (18.17)

An empty interface is equivalent to `{}`

Check warning on line 12021 in src/management/__generated/models/index.ts

View workflow job for this annotation

GitHub Actions / Build and Test (20.3)

An empty interface is equivalent to `{}`
/**
*
*/
Expand Down Expand Up @@ -16878,12 +16880,7 @@
*/
app_type?: string;
/**
* A comma separated list of client_ids used to filter the returned clients
*
*/
client_ids?: string;
/**
* Query in <a href ="http://www.lucenetutorial.com/lucene-query-syntax.html">Lucene query string syntax</a>.
* Advanced Query in <a href="http://www.lucenetutorial.com/lucene-query-syntax.html">Lucene</a> syntax.<br /><b>Permitted Queries</b>:<br /><ul><li><i>client_grant.organization_id:{organization_id}</i></li><li><i>client_grant.allow_any_organization:true</i></li></ul><b>Additional Restrictions</b>:<br /><ul><li>Cannot be used in combination with other filters</li><li>Requires use of the <i>from</i> and <i>take</i> paging parameters (checkpoint paginatinon)</li><li>Reduced rate limits apply. See <a href="https://auth0.com/docs/troubleshoot/customer-support/operational-policies/rate-limit-policy/rate-limit-configurations/enterprise-public">Rate Limit Configurations</a></li></ul><i><b>Note</b>: Recent updates may not be immediately reflected in query results</i>
*
*/
q?: string;
Expand Down
1 change: 0 additions & 1 deletion test/management/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,6 @@ describe('ClientsManager', () => {
is_global: true,
is_first_party: false,
app_type: 'web,mobile',
client_ids: 'client1,client2,client3',
q: 'name:John AND email:john@example.com',
};

Expand Down
Loading