Skip to content

Commit 706edd6

Browse files
authored
Merge pull request #278 from netlify/feat/add-pagination
feat: add pagination support
2 parents 309feb2 + 9f301e0 commit 706edd6

11 files changed

+600
-6
lines changed

go.mod

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@ go 1.13
55
require (
66
github.com/Azure/go-autorest/autorest v0.10.1
77
github.com/cenkalti/backoff/v4 v4.0.2
8-
github.com/go-openapi/errors v0.19.4
9-
github.com/go-openapi/runtime v0.19.15
10-
github.com/go-openapi/strfmt v0.19.5
11-
github.com/go-openapi/swag v0.19.9
12-
github.com/go-openapi/validate v0.19.8
8+
github.com/go-openapi/errors v0.19.9
9+
github.com/go-openapi/runtime v0.19.24
10+
github.com/go-openapi/strfmt v0.19.11
11+
github.com/go-openapi/swag v0.19.12
12+
github.com/go-openapi/validate v0.20.0
1313
github.com/go-swagger/go-swagger v0.23.0
1414
github.com/kyoh86/richgo v0.3.3
15+
github.com/mitchellh/mapstructure v1.4.0 // indirect
1516
github.com/myitcv/gobin v0.0.14
1617
github.com/rsc/goversion v1.2.0
1718
github.com/sirupsen/logrus v1.6.0
18-
github.com/stretchr/testify v1.5.1
19+
github.com/stretchr/testify v1.6.1
20+
go.mongodb.org/mongo-driver v1.4.4 // indirect
21+
golang.org/x/net v0.0.0-20201224014010-6772e930b67b // indirect
22+
gopkg.in/yaml.v2 v2.4.0 // indirect
1923
)

go.sum

Lines changed: 87 additions & 0 deletions
Large diffs are not rendered by default.

go/plumbing/operations/list_account_audit_events_parameters.go

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/plumbing/operations/list_form_submission_parameters.go

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/plumbing/operations/list_form_submissions_parameters.go

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/plumbing/operations/list_site_builds_parameters.go

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)