Skip to content

Commit

Permalink
chore(release): 1.2.0 [skip ci]
Browse files Browse the repository at this point in the history
## [1.2.0](v1.1.0...v1.2.0) (2022-10-24)

### Features

* update schema to support url field for botd result ([5e0ec6c](5e0ec6c))

### Documentation

* **README:** add different region to code example ([3986d6d](3986d6d))
* **README:** add region section ([a2342cd](a2342cd))
  • Loading branch information
semantic-release-bot committed Oct 24, 2022
1 parent 4c55c03 commit 6b1a6b7
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
## [1.2.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v1.1.0...v1.2.0) (2022-10-24)


### Features

* update schema to support url field for botd result ([5e0ec6c](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/5e0ec6c9c65ec79e20dfbb062c6a7471215852cd))


### Documentation

* **README:** add different region to code example ([3986d6d](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/3986d6df1306666bb03812be05c408ed91ecf0d9))
* **README:** add region section ([a2342cd](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/a2342cdc0451982ee5c33bd46704d193a263ddd1))

## [1.1.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v1.0.2...v1.1.0) (2022-09-19)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Fingerprint Pro Server API provides a way for validating visitors’ data issued
This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 3
- Package version: 1.1.0
- Package version: 1.2.0
- Build package: io.swagger.codegen.v3.generators.go.GoClientCodegen

## Requirements.
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"packageVersion": "1.1.0",
"packageVersion": "1.2.0",
"gitRepoId": "fingerprint-pro-server-api-go-sdk",
"gitUserId": "fingerprintjs",
"packageName": "sdk",
Expand Down
4 changes: 2 additions & 2 deletions sdk/api_fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (a *FingerprintApiService) GetEvent(ctx context.Context, requestId string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}

localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.1.0")
localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.2.0")
// to determine the Content-Type header
localVarHttpContentTypes := []string{}

Expand Down Expand Up @@ -186,7 +186,7 @@ func (a *FingerprintApiService) GetVisits(ctx context.Context, visitorId string,
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}

localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.1.0")
localVarQueryParams.Add("ii", "fingerprint-pro-server-go-sdk/1.2.0")
if localVarOptionals != nil {

if localVarOptionals.RequestId.IsSet() {
Expand Down
2 changes: 1 addition & 1 deletion sdk/configuration.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (c *Configuration) AddDefaultHeader(key string, value string) {
func NewConfiguration() *Configuration {
cfg := &Configuration{
DefaultHeader: make(map[string]string),
UserAgent: "Swagger-Codegen/1.1.0/go",
UserAgent: "Swagger-Codegen/1.2.0/go",
region: RegionUS,
}
cfg.basePath = resolveBasePath(cfg.region)
Expand Down

0 comments on commit 6b1a6b7

Please sign in to comment.