Skip to content

Commit 7b3bf4d

Browse files
chore: update SDK settings
1 parent a1d9f6b commit 7b3bf4d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+352
-274
lines changed

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.1-alpha.0"
3+
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 37
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/manifoldfinance%2Fopenmev-329190dccb50da0b3ef3e3557aa4f8a11de3f9cf5756d8d16d26d403d3fac28e.yml
33
openapi_spec_hash: 9e7d2ca242318e257c7c8ccd3f00ef78
4-
config_hash: 4d99d4ed1434d647b029fa8e13c86b9f
4+
config_hash: e52584fffb72a70aea53f7afe62a8650

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To use a local version of this library from source in another project, edit the
4141
directive. This can be done through the CLI with the following:
4242

4343
```sh
44-
$ go mod edit -replace github.com/stainless-sdks/openmev-go=/path/to/openmev-go
44+
$ go mod edit -replace github.com/manifoldfinance/openmev=/path/to/openmev
4545
```
4646

4747
## Running tests

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Openmev Go API Library
22

3-
<a href="https://pkg.go.dev/github.com/stainless-sdks/openmev-go"><img src="https://pkg.go.dev/badge/github.com/stainless-sdks/openmev-go.svg" alt="Go Reference"></a>
3+
<a href="https://pkg.go.dev/github.com/manifoldfinance/openmev"><img src="https://pkg.go.dev/badge/github.com/manifoldfinance/openmev.svg" alt="Go Reference"></a>
44

55
The Openmev Go library provides convenient access to the [Openmev REST API](https://github.com/your-org/auction-system)
66
from applications written in Go.
@@ -9,18 +9,26 @@ It is generated with [Stainless](https://www.stainless.com/).
99

1010
## Installation
1111

12+
<!-- x-release-please-start-version -->
13+
1214
```go
1315
import (
14-
"github.com/stainless-sdks/openmev-go" // imported as openmev
16+
"github.com/manifoldfinance/openmev" // imported as openmev
1517
)
1618
```
1719

20+
<!-- x-release-please-end -->
21+
1822
Or to pin the version:
1923

24+
<!-- x-release-please-start-version -->
25+
2026
```sh
21-
go get -u 'github.com/stainless-sdks/openmev-go@v0.0.1-alpha.0'
27+
go get -u 'github.com/manifoldfinance/openmev@v0.0.1-alpha.0'
2228
```
2329

30+
<!-- x-release-please-end -->
31+
2432
## Requirements
2533

2634
This library requires Go 1.18+.
@@ -36,8 +44,8 @@ import (
3644
"context"
3745
"fmt"
3846

39-
"github.com/stainless-sdks/openmev-go"
40-
"github.com/stainless-sdks/openmev-go/option"
47+
"github.com/manifoldfinance/openmev"
48+
"github.com/manifoldfinance/openmev/option"
4149
)
4250

4351
func main() {
@@ -265,7 +273,7 @@ client.API.V1.Public.Auctions.GetHistory(context.TODO(), ...,
265273

266274
The request option `option.WithDebugLog(nil)` may be helpful while debugging.
267275

268-
See the [full list of request options](https://pkg.go.dev/github.com/stainless-sdks/openmev-go/option).
276+
See the [full list of request options](https://pkg.go.dev/github.com/manifoldfinance/openmev/option).
269277

270278
### Pagination
271279

@@ -471,7 +479,7 @@ This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) con
471479

472480
We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
473481

474-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/openmev-go/issues) with questions, bugs, or suggestions.
482+
We are keen for your feedback; please open an [issue](https://www.github.com/manifoldfinance/openmev/issues) with questions, bugs, or suggestions.
475483

476484
## Contributing
477485

aliases.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package openmev
44

55
import (
6-
"github.com/stainless-sdks/openmev-go/internal/apierror"
7-
"github.com/stainless-sdks/openmev-go/packages/param"
6+
"github.com/manifoldfinance/openmev/internal/apierror"
7+
"github.com/manifoldfinance/openmev/packages/param"
88
)
99

1010
// aliased to make [param.APIUnion] private when embedding

api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package openmev
44

55
import (
6-
"github.com/stainless-sdks/openmev-go/option"
6+
"github.com/manifoldfinance/openmev/option"
77
)
88

99
// APIService contains methods and other services that help with interacting with

api.md

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

apiv1.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
package openmev
44

55
import (
6-
"github.com/stainless-sdks/openmev-go/option"
6+
"github.com/manifoldfinance/openmev/option"
77
)
88

99
// APIV1Service contains methods and other services that help with interacting with

apiv1analytics.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import (
99
"net/http"
1010
"net/url"
1111

12-
"github.com/stainless-sdks/openmev-go/internal/apijson"
13-
"github.com/stainless-sdks/openmev-go/internal/apiquery"
14-
"github.com/stainless-sdks/openmev-go/internal/requestconfig"
15-
"github.com/stainless-sdks/openmev-go/option"
16-
"github.com/stainless-sdks/openmev-go/packages/param"
17-
"github.com/stainless-sdks/openmev-go/packages/respjson"
12+
"github.com/manifoldfinance/openmev/internal/apijson"
13+
"github.com/manifoldfinance/openmev/internal/apiquery"
14+
"github.com/manifoldfinance/openmev/internal/requestconfig"
15+
"github.com/manifoldfinance/openmev/option"
16+
"github.com/manifoldfinance/openmev/packages/param"
17+
"github.com/manifoldfinance/openmev/packages/respjson"
1818
)
1919

2020
// APIV1AnalyticsService contains methods and other services that help with

apiv1analytics_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/stainless-sdks/openmev-go"
12-
"github.com/stainless-sdks/openmev-go/internal/testutil"
13-
"github.com/stainless-sdks/openmev-go/option"
11+
"github.com/manifoldfinance/openmev"
12+
"github.com/manifoldfinance/openmev/internal/testutil"
13+
"github.com/manifoldfinance/openmev/option"
1414
)
1515

1616
func TestAPIV1AnalyticsGetWithOptionalParams(t *testing.T) {

0 commit comments

Comments
 (0)