Skip to content
Draft
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
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ OPENAPI_GENERATOR_IMAGE=treeverse/openapi-generator-cli:v7.0.0.1
OPENAPI_GENERATOR=$(DOCKER) run --user $(UID_GID) --rm -v $(shell pwd):/mnt $(OPENAPI_GENERATOR_IMAGE)

GOLANGCI_LINT_VERSION=v1.53.3
GOLANGCI_LINT_FLAGS=--max-same-issues=50
BUF_CLI_VERSION=v1.28.1

ifndef PACKAGE_VERSION
Expand Down
11 changes: 8 additions & 3 deletions api/swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,15 @@ components:
description: return items prefixed with this value
schema:
type: string
allowEmptyValue: true

PaginationAfter:
in: query
name: after
description: return items after this value
schema:
type: string
allowEmptyValue: true

PaginationAmount:
in: query
Expand All @@ -70,7 +72,8 @@ components:
description: delimiter used to group common prefixes by
schema:
type: string

allowEmptyValue: true

IfNoneMatch:
in: header
name: If-None-Match
Expand Down Expand Up @@ -267,11 +270,11 @@ components:
example: "main"
sample_data:
type: boolean
example: "true"
example: true
default: false
read_only:
type: boolean
example: "true"
example: true
default: false

PathList:
Expand Down Expand Up @@ -1467,6 +1470,8 @@ components:
- path: s3://my-bucket/production/collections/file1
destination: collections/file1
type: object
commit:
message: Commit message

RangeMetadata:
type: object
Expand Down
Loading