Skip to content
Open
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
28 changes: 28 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3044,6 +3044,12 @@
{
"$ref": "#/components/parameters/Operations_ListPostHashTypesParam"
},
{
"$ref": "#/components/parameters/GlobalConfigParam"
},
{
"$ref": "#/components/parameters/GlobalFilterParam"
},
{
"$ref": "#/components/parameters/GlobalGroupParam"
},
Expand Down Expand Up @@ -3956,6 +3962,12 @@
"description": "Returns the current effective options for this request, including `_config` and `_filter` overrides.",
"tags": [],
"parameters": [
{
"$ref": "#/components/parameters/GlobalConfigParam"
},
{
"$ref": "#/components/parameters/GlobalFilterParam"
},
{
"$ref": "#/components/parameters/GlobalGroupParam"
},
Expand Down Expand Up @@ -10838,6 +10850,14 @@
},
"description": "Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`)."
},
"_config": {
"type": "string",
"description": "JSON encoded config overrides applied for this call only."
},
"_filter": {
"type": "string",
"description": "JSON encoded filter overrides applied for this call only."
},
"_group": {
"type": "string",
"description": "Assign the request to a custom stats group."
Expand Down Expand Up @@ -11361,6 +11381,14 @@
"OptionsLocalRequest": {
"type": "object",
"properties": {
"_config": {
"type": "string",
"description": "JSON encoded config overrides applied for this call only."
},
"_filter": {
"type": "string",
"description": "JSON encoded filter overrides applied for this call only."
},
"_group": {
"type": "string",
"description": "Assign the request to a custom stats group."
Expand Down
16 changes: 16 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1666,6 +1666,8 @@ paths:
- $ref: "#/components/parameters/Operations_ListPostFilesOnlyParam"
- $ref: "#/components/parameters/Operations_ListPostMetadataParam"
- $ref: "#/components/parameters/Operations_ListPostHashTypesParam"
- $ref: "#/components/parameters/GlobalConfigParam"
- $ref: "#/components/parameters/GlobalFilterParam"
- $ref: "#/components/parameters/GlobalGroupParam"
- $ref: "#/components/parameters/GlobalAsyncParam"
- $ref: "#/components/parameters/PreferAsyncHeader"
Expand Down Expand Up @@ -2132,6 +2134,8 @@ paths:
description: Returns the current effective options for this request, including `_config` and `_filter` overrides.
tags: []
parameters:
- $ref: "#/components/parameters/GlobalConfigParam"
- $ref: "#/components/parameters/GlobalFilterParam"
- $ref: "#/components/parameters/GlobalGroupParam"
- $ref: "#/components/parameters/GlobalAsyncParam"
- $ref: "#/components/parameters/PreferAsyncHeader"
Expand Down Expand Up @@ -6906,6 +6910,12 @@ components:
items:
type: string
description: Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`).
_config:
type: string
description: JSON encoded config overrides applied for this call only.
_filter:
type: string
description: JSON encoded filter overrides applied for this call only.
_group:
type: string
description: Assign the request to a custom stats group.
Expand Down Expand Up @@ -7291,6 +7301,12 @@ components:
OptionsLocalRequest:
type: object
properties:
_config:
type: string
description: JSON encoded config overrides applied for this call only.
_filter:
type: string
description: JSON encoded filter overrides applied for this call only.
_group:
type: string
description: Assign the request to a custom stats group.
Expand Down
16 changes: 16 additions & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2678,6 +2678,10 @@ export interface components {
metadata?: boolean;
/** @description Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`). */
hashTypes?: string[];
/** @description JSON encoded config overrides applied for this call only. */
_config?: string;
/** @description JSON encoded filter overrides applied for this call only. */
_filter?: string;
/** @description Assign the request to a custom stats group. */
_group?: string;
/** @description Run the command asynchronously. Returns a job id immediately. */
Expand Down Expand Up @@ -2956,6 +2960,10 @@ export interface components {
[key: string]: unknown;
};
OptionsLocalRequest: {
/** @description JSON encoded config overrides applied for this call only. */
_config?: string;
/** @description JSON encoded filter overrides applied for this call only. */
_filter?: string;
/** @description Assign the request to a custom stats group. */
_group?: string;
/** @description Run the command asynchronously. Returns a job id immediately. */
Expand Down Expand Up @@ -6675,6 +6683,10 @@ export interface operations {
metadata?: components["parameters"]["Operations_ListPostMetadataParam"];
/** @description Specify one or more hash algorithms to include when `showHash` is true (e.g. `md5`). */
hashTypes?: components["parameters"]["Operations_ListPostHashTypesParam"];
/** @description JSON encoded config overrides applied for this call only. */
_config?: components["parameters"]["GlobalConfigParam"];
/** @description JSON encoded filter overrides applied for this call only. */
_filter?: components["parameters"]["GlobalFilterParam"];
/** @description Assign the request to a custom stats group. */
_group?: components["parameters"]["GlobalGroupParam"];
/** @description Run the command asynchronously. Returns a job id immediately. */
Expand Down Expand Up @@ -7268,6 +7280,10 @@ export interface operations {
optionsLocal: {
parameters: {
query?: {
/** @description JSON encoded config overrides applied for this call only. */
_config?: components["parameters"]["GlobalConfigParam"];
/** @description JSON encoded filter overrides applied for this call only. */
_filter?: components["parameters"]["GlobalFilterParam"];
/** @description Assign the request to a custom stats group. */
_group?: components["parameters"]["GlobalGroupParam"];
/** @description Run the command asynchronously. Returns a job id immediately. */
Expand Down