Skip to content

Commit 2cb5f95

Browse files
chore: update SDK settings
1 parent e89b37b commit 2cb5f95

20 files changed

Lines changed: 36 additions & 32 deletions

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
release_doctor:
1010
name: release doctor
1111
runs-on: ubuntu-latest
12-
if: github.repository == 'stainless-sdks/context.dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
12+
if: github.repository == 'context-dot-dev/context-dev-cli' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1313

1414
steps:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 25
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-0253523aec437a0e9c67c3386fa25ed52ebbcc0073c907f0aa3586d8010d2e9d.yml
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/context-dev/context.dev-508b6e971e1d1da37221163ee6625a7f348c96a0ddbf1ea2a8dc17b6cdfb74c3.yml
33
openapi_spec_hash: 5cf86ed865b01dfe3a159a45315ebb49
4-
config_hash: 2b6e4424b446fe1bf93359ba758c83ed
4+
config_hash: eebf67a9c2ccfe2641980c154d7a698e

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ The official CLI for the [Context Dev REST API](https://docs.context.dev/).
44

55
It is generated with [Stainless](https://www.stainless.com/).
66

7+
<!-- x-release-please-start-version -->
8+
79
## Installation
810

911
### Installing with Go
1012

1113
To test or install the CLI locally, you need [Go](https://go.dev/doc/install) version 1.22 or later installed.
1214

1315
```sh
14-
go install 'github.com/stainless-sdks/context.dev-cli/cmd/context-dev@latest'
16+
go install 'github.com/context-dot-dev/context-dev-cli/cmd/context-dev@latest'
1517
```
1618

1719
Once you have run `go install`, the binary is placed in your Go bin directory:
@@ -26,6 +28,8 @@ If commands aren't found after installation, add the Go bin directory to your PA
2628
export PATH="$PATH:$(go env GOPATH)/bin"
2729
```
2830

31+
<!-- x-release-please-end -->
32+
2933
### Running Locally
3034

3135
After cloning the git repository for this project, you can use the

cmd/context-dev/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"os"
1111
"slices"
1212

13+
"github.com/context-dot-dev/context-dev-cli/pkg/cmd"
1314
"github.com/context-dot-dev/context-go-sdk"
14-
"github.com/stainless-sdks/context.dev-cli/pkg/cmd"
1515
"github.com/tidwall/gjson"
1616
"github.com/urfave/cli/v3"
1717
)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/stainless-sdks/context.dev-cli
1+
module github.com/context-dot-dev/context-dev-cli
22

33
go 1.25
44

pkg/cmd/ai.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"context"
77
"fmt"
88

9+
"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
10+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
911
"github.com/context-dot-dev/context-go-sdk"
1012
"github.com/context-dot-dev/context-go-sdk/option"
11-
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
12-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
1313
"github.com/tidwall/gjson"
1414
"github.com/urfave/cli/v3"
1515
)

pkg/cmd/ai_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package cmd
55
import (
66
"testing"
77

8-
"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
9-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
8+
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
9+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
1010
)
1111

1212
func TestAIAIQuery(t *testing.T) {

pkg/cmd/brand.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ import (
66
"context"
77
"fmt"
88

9+
"github.com/context-dot-dev/context-dev-cli/internal/apiquery"
10+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
911
"github.com/context-dot-dev/context-go-sdk"
1012
"github.com/context-dot-dev/context-go-sdk/option"
11-
"github.com/stainless-sdks/context.dev-cli/internal/apiquery"
12-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
1313
"github.com/tidwall/gjson"
1414
"github.com/urfave/cli/v3"
1515
)

pkg/cmd/brand_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package cmd
55
import (
66
"testing"
77

8-
"github.com/stainless-sdks/context.dev-cli/internal/mocktest"
8+
"github.com/context-dot-dev/context-dev-cli/internal/mocktest"
99
)
1010

1111
func TestBrandRetrieve(t *testing.T) {

pkg/cmd/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"slices"
1313
"strings"
1414

15-
"github.com/stainless-sdks/context.dev-cli/internal/autocomplete"
16-
"github.com/stainless-sdks/context.dev-cli/internal/requestflag"
15+
"github.com/context-dot-dev/context-dev-cli/internal/autocomplete"
16+
"github.com/context-dot-dev/context-dev-cli/internal/requestflag"
1717
docs "github.com/urfave/cli-docs/v3"
1818
"github.com/urfave/cli/v3"
1919
)

0 commit comments

Comments
 (0)