Skip to content

Commit 15a6b00

Browse files
feat(api): manual updates
1 parent b4bf821 commit 15a6b00

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

+441
-363
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: 41
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/knock%2Fknock-mapi-ac77322b6a49514e5add3944d4a1c83cfa9eebc8f0d83fb4e0d3538823be1fad.yml
33
openapi_spec_hash: 3773026857f48ace6938850a61023805
4-
config_hash: 6f2ced086b09d946ca5d4ab452c55b8e
4+
config_hash: 643ed3f0dab73b4c79c1657cc34ef298

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/knock-mapi-go=/path/to/knock-mapi-go
44+
$ go mod edit -replace github.com/knocklabs/knock-mgmt-go=/path/to/knock-mgmt-go
4545
```
4646

4747
## Running tests

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- x-release-please-start-version -->
44

5-
<a href="https://pkg.go.dev/github.com/stainless-sdks/knock-mapi-go"><img src="https://pkg.go.dev/badge/github.com/stainless-sdks/knock-mapi-go.svg" alt="Go Reference"></a>
5+
<a href="https://pkg.go.dev/github.com/knocklabs/knock-mgmt-go"><img src="https://pkg.go.dev/badge/github.com/knocklabs/knock-mgmt-go.svg" alt="Go Reference"></a>
66

77
<!-- x-release-please-end -->
88

@@ -13,18 +13,26 @@ It is generated with [Stainless](https://www.stainless.com/).
1313

1414
## Installation
1515

16+
<!-- x-release-please-start-version -->
17+
1618
```go
1719
import (
18-
"github.com/stainless-sdks/knock-mapi-go" // imported as knockmapi
20+
"github.com/knocklabs/knock-mgmt-go" // imported as knockmapi
1921
)
2022
```
2123

24+
<!-- x-release-please-end -->
25+
2226
Or to pin the version:
2327

28+
<!-- x-release-please-start-version -->
29+
2430
```sh
25-
go get -u 'github.com/stainless-sdks/knock-mapi[email protected]'
31+
go get -u 'github.com/knocklabs/knock-mgmt[email protected]'
2632
```
2733

34+
<!-- x-release-please-end -->
35+
2836
## Requirements
2937

3038
This library requires Go 1.22+.
@@ -40,8 +48,8 @@ import (
4048
"context"
4149
"fmt"
4250

43-
"github.com/stainless-sdks/knock-mapi-go"
44-
"github.com/stainless-sdks/knock-mapi-go/option"
51+
"github.com/knocklabs/knock-mgmt-go"
52+
"github.com/knocklabs/knock-mgmt-go/option"
4553
)
4654

4755
func main() {
@@ -270,7 +278,7 @@ client.Workflows.List(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/knock-mapi-go/option).
281+
See the [full list of request options](https://pkg.go.dev/github.com/knocklabs/knock-mgmt-go/option).
274282

275283
### Pagination
276284

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

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

516-
We are keen for your feedback; please open an [issue](https://www.github.com/stainless-sdks/knock-mapi-go/issues) with questions, bugs, or suggestions.
524+
We are keen for your feedback; please open an [issue](https://www.github.com/knocklabs/knock-mgmt-go/issues) with questions, bugs, or suggestions.
517525

518526
## Contributing
519527

aliases.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
package knockmapi
44

55
import (
6-
"github.com/stainless-sdks/knock-mapi-go/internal/apierror"
7-
"github.com/stainless-sdks/knock-mapi-go/packages/param"
8-
"github.com/stainless-sdks/knock-mapi-go/shared"
6+
"github.com/knocklabs/knock-mgmt-go/internal/apierror"
7+
"github.com/knocklabs/knock-mgmt-go/packages/param"
8+
"github.com/knocklabs/knock-mgmt-go/shared"
99
)
1010

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

api.md

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

apikey.go

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

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

1818
// APIKeyService contains methods and other services that help with interacting

apikey_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/knock-mapi-go"
12-
"github.com/stainless-sdks/knock-mapi-go/internal/testutil"
13-
"github.com/stainless-sdks/knock-mapi-go/option"
11+
"github.com/knocklabs/knock-mgmt-go"
12+
"github.com/knocklabs/knock-mgmt-go/internal/testutil"
13+
"github.com/knocklabs/knock-mgmt-go/option"
1414
)
1515

1616
func TestAPIKeyExchange(t *testing.T) {

auth.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"net/http"
88
"slices"
99

10-
"github.com/stainless-sdks/knock-mapi-go/internal/apijson"
11-
"github.com/stainless-sdks/knock-mapi-go/internal/requestconfig"
12-
"github.com/stainless-sdks/knock-mapi-go/option"
13-
"github.com/stainless-sdks/knock-mapi-go/packages/respjson"
10+
"github.com/knocklabs/knock-mgmt-go/internal/apijson"
11+
"github.com/knocklabs/knock-mgmt-go/internal/requestconfig"
12+
"github.com/knocklabs/knock-mgmt-go/option"
13+
"github.com/knocklabs/knock-mgmt-go/packages/respjson"
1414
)
1515

1616
// AuthService contains methods and other services that help with interacting with

auth_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/knock-mapi-go"
12-
"github.com/stainless-sdks/knock-mapi-go/internal/testutil"
13-
"github.com/stainless-sdks/knock-mapi-go/option"
11+
"github.com/knocklabs/knock-mgmt-go"
12+
"github.com/knocklabs/knock-mgmt-go/internal/testutil"
13+
"github.com/knocklabs/knock-mgmt-go/option"
1414
)
1515

1616
func TestAuthVerify(t *testing.T) {

0 commit comments

Comments
 (0)