Skip to content

Commit 2d43aee

Browse files
chore: update SDK settings
1 parent 9c87c18 commit 2d43aee

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

+343
-265
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"
3+
}

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 42
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/imagekit-inc%2Fimagekit-3d7da4b8ef2ed30aa32c4fb3e98e498e67402e91aaa5fd4c628fc080bfe82ea1.yml
33
openapi_spec_hash: aaa50fcbccec6f2cf1165f34bc6ac886
4-
config_hash: cf9d50fe62973f4e91ef65c147aabcc1
4+
config_hash: 8183e2528fd2b25fce53f2c49e4798d8

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/imagekit-go=/path/to/imagekit-go
44+
$ go mod edit -replace github.com/imagekit-developer/imagekit-go=/path/to/imagekit-go
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
# Image Kit Go API Library
22

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

55
The Image Kit Go library provides convenient access to the [Image Kit REST API](https://imagekit.io/docs)
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/imagekit-go" // imported as imagekit
16+
"github.com/imagekit-developer/imagekit-go" // imported as imagekit
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/[email protected]'
27+
go get -u 'github.com/imagekit-developer/[email protected]'
2228
```
2329

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

2634
This library requires Go 1.18+.
@@ -38,8 +46,8 @@ import (
3846
"fmt"
3947
"io"
4048

41-
"github.com/stainless-sdks/imagekit-go"
42-
"github.com/stainless-sdks/imagekit-go/option"
49+
"github.com/imagekit-developer/imagekit-go"
50+
"github.com/imagekit-developer/imagekit-go/option"
4351
)
4452

4553
func main() {
@@ -270,7 +278,7 @@ client.Files.Upload(context.TODO(), ...,
270278

271279
The request option `option.WithDebugLog(nil)` may be helpful while debugging.
272280

273-
See the [full list of request options](https://pkg.go.dev/github.com/stainless-sdks/imagekit-go/option).
281+
See the [full list of request options](https://pkg.go.dev/github.com/imagekit-developer/imagekit-go/option).
274282

275283
### Pagination
276284

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

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

512-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/imagekit-go/issues) with questions, bugs, or suggestions.
520+
We are keen for your feedback; please open an [issue](https://www.github.com/imagekit-developer/imagekit-go/issues) with questions, bugs, or suggestions.
513521

514522
## Contributing
515523

account.go

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

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

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

accountorigin.go

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

12-
"github.com/stainless-sdks/imagekit-go/internal/apijson"
13-
shimjson "github.com/stainless-sdks/imagekit-go/internal/encoding/json"
14-
"github.com/stainless-sdks/imagekit-go/internal/requestconfig"
15-
"github.com/stainless-sdks/imagekit-go/option"
16-
"github.com/stainless-sdks/imagekit-go/packages/param"
17-
"github.com/stainless-sdks/imagekit-go/packages/respjson"
18-
"github.com/stainless-sdks/imagekit-go/shared/constant"
12+
"github.com/imagekit-developer/imagekit-go/internal/apijson"
13+
shimjson "github.com/imagekit-developer/imagekit-go/internal/encoding/json"
14+
"github.com/imagekit-developer/imagekit-go/internal/requestconfig"
15+
"github.com/imagekit-developer/imagekit-go/option"
16+
"github.com/imagekit-developer/imagekit-go/packages/param"
17+
"github.com/imagekit-developer/imagekit-go/packages/respjson"
18+
"github.com/imagekit-developer/imagekit-go/shared/constant"
1919
)
2020

2121
// AccountOriginService contains methods and other services that help with

accountorigin_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/imagekit-go"
12-
"github.com/stainless-sdks/imagekit-go/internal/testutil"
13-
"github.com/stainless-sdks/imagekit-go/option"
11+
"github.com/imagekit-developer/imagekit-go"
12+
"github.com/imagekit-developer/imagekit-go/internal/testutil"
13+
"github.com/imagekit-developer/imagekit-go/option"
1414
)
1515

1616
func TestAccountOriginNewWithOptionalParams(t *testing.T) {

accounturlendpoint.go

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

12-
"github.com/stainless-sdks/imagekit-go/internal/apijson"
13-
shimjson "github.com/stainless-sdks/imagekit-go/internal/encoding/json"
14-
"github.com/stainless-sdks/imagekit-go/internal/requestconfig"
15-
"github.com/stainless-sdks/imagekit-go/option"
16-
"github.com/stainless-sdks/imagekit-go/packages/param"
17-
"github.com/stainless-sdks/imagekit-go/packages/respjson"
18-
"github.com/stainless-sdks/imagekit-go/shared/constant"
12+
"github.com/imagekit-developer/imagekit-go/internal/apijson"
13+
shimjson "github.com/imagekit-developer/imagekit-go/internal/encoding/json"
14+
"github.com/imagekit-developer/imagekit-go/internal/requestconfig"
15+
"github.com/imagekit-developer/imagekit-go/option"
16+
"github.com/imagekit-developer/imagekit-go/packages/param"
17+
"github.com/imagekit-developer/imagekit-go/packages/respjson"
18+
"github.com/imagekit-developer/imagekit-go/shared/constant"
1919
)
2020

2121
// AccountURLEndpointService contains methods and other services that help with

accounturlendpoint_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/imagekit-go"
12-
"github.com/stainless-sdks/imagekit-go/internal/testutil"
13-
"github.com/stainless-sdks/imagekit-go/option"
11+
"github.com/imagekit-developer/imagekit-go"
12+
"github.com/imagekit-developer/imagekit-go/internal/testutil"
13+
"github.com/imagekit-developer/imagekit-go/option"
1414
)
1515

1616
func TestAccountURLEndpointNewWithOptionalParams(t *testing.T) {

accountusage.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ import (
88
"net/url"
99
"time"
1010

11-
"github.com/stainless-sdks/imagekit-go/internal/apijson"
12-
"github.com/stainless-sdks/imagekit-go/internal/apiquery"
13-
"github.com/stainless-sdks/imagekit-go/internal/requestconfig"
14-
"github.com/stainless-sdks/imagekit-go/option"
15-
"github.com/stainless-sdks/imagekit-go/packages/respjson"
11+
"github.com/imagekit-developer/imagekit-go/internal/apijson"
12+
"github.com/imagekit-developer/imagekit-go/internal/apiquery"
13+
"github.com/imagekit-developer/imagekit-go/internal/requestconfig"
14+
"github.com/imagekit-developer/imagekit-go/option"
15+
"github.com/imagekit-developer/imagekit-go/packages/respjson"
1616
)
1717

1818
// AccountUsageService contains methods and other services that help with

0 commit comments

Comments
 (0)