Skip to content

Commit

Permalink
chore(release): 6.0.0-test.2 [skip ci]
Browse files Browse the repository at this point in the history
## [6.0.0-test.2](v6.0.0-test.1...v6.0.0-test.2) (2024-06-26)

### Bug Fixes

* allow passing `nil` configuration to `NewAPIClient` ([2e8f03a](2e8f03a))
* use correct error type for `incognito`, `rawDeviceAttributes` and `tampering` in the `GetEvent` method ([1487938](1487938))
  • Loading branch information
semantic-release-bot committed Jun 26, 2024
1 parent cf1587e commit b0ae493
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [6.0.0-test.2](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v6.0.0-test.1...v6.0.0-test.2) (2024-06-26)


### Bug Fixes

* allow passing `nil` configuration to `NewAPIClient` ([2e8f03a](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/2e8f03adfb484232d80a7c72d98b670a54e1831a))
* use correct error type for `incognito`, `rawDeviceAttributes` and `tampering` in the `GetEvent` method ([1487938](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/1487938f431c8032689599ed2bca07d970eb88fb))

## [6.0.0-test.1](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v5.0.2...v6.0.0-test.1) (2024-06-21)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Fingerprint Pro Server API allows you to get information about visitors and abou
This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 3
- Package version: 6.0.0-test.1
- Package version: 6.0.0-test.2
- 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": "6.0.0-test.1",
"packageVersion": "6.0.0-test.2",
"gitRepoId": "fingerprint-pro-server-api-go-sdk",
"gitUserId": "fingerprintjs",
"packageName": "sdk",
Expand Down
2 changes: 1 addition & 1 deletion sdk/api_fingerprint.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
)

const IntegrationInfo = "fingerprint-pro-server-go-sdk/6.0.0-test.1"
const IntegrationInfo = "fingerprint-pro-server-go-sdk/6.0.0-test.2"

type FingerprintApiServiceInterface interface {
/*
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/6.0.0-test.1/go",
UserAgent: "Swagger-Codegen/6.0.0-test.2/go",
region: RegionUS,
}
cfg.basePath = resolveBasePath(cfg.region)
Expand Down

0 comments on commit b0ae493

Please sign in to comment.