Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

Commit d5a1fc3

Browse files
committed
init
1 parent 7f0753b commit d5a1fc3

24 files changed

Lines changed: 3045 additions & 1517 deletions

fern/fern.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "method-security",
3-
"version": "0.43.8"
3+
"version": "0.57.26"
44
}

fern/generators.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ groups:
33
local:
44
generators:
55
- name: fernapi/fern-go-sdk
6-
version: 0.26.0
6+
version: 0.37.2
77
config:
88
importpath: github.com/Method-Security/methodwebtest/generated/go
99
output:
@@ -12,14 +12,14 @@ groups:
1212
pypi-local:
1313
generators:
1414
- name: fernapi/fern-pydantic-model
15-
version: 1.4.3
15+
version: 1.4.7
1616
output:
1717
location: local-file-system
1818
path: ../generated/python
1919
pypi-test:
2020
generators:
2121
- name: fernapi/fern-pydantic-model
22-
version: 1.4.3
22+
version: 1.4.7
2323
config:
2424
package_name: methodwebtest
2525
output:
@@ -30,7 +30,7 @@ groups:
3030
pypi:
3131
generators:
3232
- name: fernapi/fern-pydantic-model
33-
version: 1.4.3
33+
version: 1.4.7
3434
config:
3535
package_name: methodwebtest
3636
output:

generated/go/client/client.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,23 @@ package client
44

55
import (
66
core "github.com/Method-Security/methodwebtest/generated/go/core"
7+
internal "github.com/Method-Security/methodwebtest/generated/go/internal"
78
option "github.com/Method-Security/methodwebtest/generated/go/option"
89
http "net/http"
910
)
1011

1112
type Client struct {
1213
baseURL string
13-
caller *core.Caller
14+
caller *internal.Caller
1415
header http.Header
1516
}
1617

1718
func NewClient(opts ...option.RequestOption) *Client {
1819
options := core.NewRequestOptions(opts...)
1920
return &Client{
2021
baseURL: options.BaseURL,
21-
caller: core.NewCaller(
22-
&core.CallerParams{
22+
caller: internal.NewCaller(
23+
&internal.CallerParams{
2324
Client: options.HTTPClient,
2425
MaxAttempts: options.MaxAttempts,
2526
},

0 commit comments

Comments
 (0)