Skip to content

make query optional if all params are optional #1092

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

Merged
merged 2 commits into from
May 8, 2023
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
110 changes: 55 additions & 55 deletions examples/digital-ocean-api.ts

Large diffs are not rendered by default.

969 changes: 496 additions & 473 deletions examples/github-api-next.ts

Large diffs are not rendered by default.

59 changes: 49 additions & 10 deletions examples/github-api-next.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9865,6 +9865,7 @@ paths:
- forks
- sources
- member
default: all
- name: sort
description: The property to sort the results by.
in: query
Expand Down Expand Up @@ -20740,6 +20741,16 @@ paths:
are made to respect this upon creation. Assigned by IP if not
provided.
type: string
geo:
description: The geographic area for this codespace. If not specified,
the value is assigned by IP. This property replaces `location`,
which is being deprecated.
type: string
enum:
- EuropeWest
- SoutheastAsia
- UsEast
- UsWest
client_ip:
description: IP for location auto-detection when proxying a request
type: string
Expand Down Expand Up @@ -25214,10 +25225,6 @@ paths:
sha:
type: string
description: The SHA1 value for this reference.
key:
type: string
examples:
- '"refs/heads/newbranch"'
required:
- ref
- sha
Expand Down Expand Up @@ -30820,6 +30827,16 @@ paths:
are made to respect this upon creation. Assigned by IP if not
provided.
type: string
geo:
description: The geographic area for this codespace. If not specified,
the value is assigned by IP. This property replaces `location`,
which is being deprecated.
type: string
enum:
- EuropeWest
- SoutheastAsia
- UsEast
- UsWest
client_ip:
description: IP for location auto-detection when proxying a request
type: string
Expand Down Expand Up @@ -30995,9 +31012,10 @@ paths:
- RIGHT
line:
type: integer
description: The line of the blob in the pull request diff that
the comment applies to. For a multi-line comment, the last line
of the range that your comment applies to.
description: "**Required unless using `subject_type:file`**. The
line of the blob in the pull request diff that the comment applies
to. For a multi-line comment, the last line of the range that
your comment applies to."
start_line:
type: integer
description: '**Required when using multi-line comments unless using
Expand Down Expand Up @@ -31036,7 +31054,6 @@ paths:
- body
- commit_id
- path
- line
examples:
example-for-a-multi-line-comment:
summary: Example for a multi-line comment
Expand Down Expand Up @@ -33966,6 +33983,8 @@ paths:
Returns the total commit counts for the `owner` and total commit counts in `all`. `all` is everyone combined, including the `owner` in the last 52 weeks. If you'd like to get the commit counts for non-owners, you can subtract `owner` from `all`.

The array order is oldest week (index 0) to most recent week.

The most recent week is seven days ago at UTC midnight to today at UTC midnight.
tags:
- repos
operationId: repos/get-participation-stats
Expand Down Expand Up @@ -37594,7 +37613,7 @@ paths:
get:
summary: Get the authenticated user
description: |-
If the authenticated user is authenticated through basic authentication or OAuth with the `user` scope, then the response lists public and private profile information.
If the authenticated user is authenticated with an OAuth token with the `user` scope, then the response lists public and private profile information.

If the authenticated user is authenticated through OAuth without the `user` scope, then the response lists only public profile information.
tags:
Expand Down Expand Up @@ -37935,6 +37954,16 @@ paths:
efforts are made to respect this upon creation. Assigned by
IP if not provided.
type: string
geo:
description: The geographic area for this codespace. If not specified,
the value is assigned by IP. This property replaces `location`,
which is being deprecated.
type: string
enum:
- EuropeWest
- SoutheastAsia
- UsEast
- UsWest
client_ip:
description: IP for location auto-detection when proxying a request
type: string
Expand Down Expand Up @@ -37984,6 +38013,16 @@ paths:
efforts are made to respect this upon creation. Assigned by
IP if not provided.
type: string
geo:
description: The geographic area for this codespace. If not specified,
the value is assigned by IP. This property replaces `location`,
which is being deprecated.
type: string
enum:
- EuropeWest
- SoutheastAsia
- UsEast
- UsWest
machine:
description: Machine type to use for this codespace
type: string
Expand All @@ -38002,7 +38041,7 @@ paths:
value:
repository_id: 1
ref: main
location: WestUs2
geo: UsWest
responses:
'201':
description: Response when the codespace was successfully created
Expand Down
Loading