From aca1c6602bf29de1e5e8cf9e27f7fa571e4988d1 Mon Sep 17 00:00:00 2001 From: "Adam T. Williams" Date: Mon, 29 Jul 2024 08:47:11 -0600 Subject: [PATCH] doc: describe negative matching --- internal/httpclient/api/openapi.yaml | 4 ++-- internal/httpclient/docs/OAuth2API.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/httpclient/api/openapi.yaml b/internal/httpclient/api/openapi.yaml index f2973c9421..756003acca 100644 --- a/internal/httpclient/api/openapi.yaml +++ b/internal/httpclient/api/openapi.yaml @@ -109,7 +109,7 @@ paths: minimum: 1 type: string style: form - - description: The name of the clients to filter by. Prefix "!=" to search by negation. + - description: The name of the clients to filter by. Prefix with "!=" to filter with negative matching. explode: true in: query name: client_name @@ -117,7 +117,7 @@ paths: schema: type: string style: form - - description: The owner of the clients to filter by. Prefix "!=" to search by negation. + - description: The owner of the clients to filter by. Prefix with "!=" to filter with negative matching. explode: true in: query name: owner diff --git a/internal/httpclient/docs/OAuth2API.md b/internal/httpclient/docs/OAuth2API.md index a98efff4b7..becc8dd29e 100644 --- a/internal/httpclient/docs/OAuth2API.md +++ b/internal/httpclient/docs/OAuth2API.md @@ -960,8 +960,8 @@ Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- **pageSize** | **int64** | Items per Page This is the number of items per page to return. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [default to 250] **pageToken** | **string** | Next Page Token The next page token. For details on pagination please head over to the [pagination documentation](https://www.ory.sh/docs/ecosystem/api-design#pagination). | [default to "1"] - **clientName** | **string** | The name of the clients to filter by. | - **owner** | **string** | The owner of the clients to filter by. | + **clientName** | **string** | The name of the clients to filter by. Prefix with "!=" to filter with negative matching. | + **owner** | **string** | The owner of the clients to filter by. Prefix with "!=" to filter with negative matching. | ### Return type