Skip to content

Commit 4f1be4f

Browse files
authored
Merge pull request #162 from fingerprintjs/changeset-release/main
Release [changeset]
2 parents f26ee44 + ee2dda4 commit 4f1be4f

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.changeset/thick-toys-visit.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Fingerprint Pro Server Go SDK
22

3+
## 7.8.0
4+
5+
### Minor Changes
6+
7+
- Add `details` object to the `proxy` signal. This field includes the `type` of the detected proxy (`residential` or `data_center`) and the `lastSeenAt` timestamp of when an IP was last observed to show proxy-like behavior. ([b4175d0](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/b4175d0bd3b47254742c52a8642d8f6d516e6b0c))
8+
39
## 7.7.0
410

511
### Minor Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Fingerprint Server API allows you to search, update, and delete identification e
2222
This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2323

2424
- API version: 3
25-
- Package version: 7.7.0
25+
- Package version: 7.8.0
2626
- Build package: io.swagger.codegen.v3.generators.go.GoClientCodegen
2727

2828
## Requirements

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packageVersion": "7.7.0",
2+
"packageVersion": "7.8.0",
33
"gitRepoId": "fingerprint-pro-server-api-go-sdk",
44
"gitUserId": "fingerprintjs",
55
"packageName": "sdk",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint-pro-server-api-go-sdk",
3-
"version": "7.7.0",
3+
"version": "7.8.0",
44
"private": true,
55
"devDependencies": {
66
"@changesets/cli": "^2.27.8",

sdk/api_fingerprint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"strings"
1616
)
1717

18-
const IntegrationInfo = "fingerprint-pro-server-go-sdk/7.7.0"
18+
const IntegrationInfo = "fingerprint-pro-server-go-sdk/7.8.0"
1919

2020
type FingerprintApiServiceInterface interface {
2121
/*

sdk/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (c *Configuration) AddDefaultHeader(key string, value string) {
9393
func NewConfiguration() *Configuration {
9494
cfg := &Configuration{
9595
DefaultHeader: make(map[string]string),
96-
UserAgent: "Swagger-Codegen/7.7.0/go",
96+
UserAgent: "Swagger-Codegen/7.8.0/go",
9797
region: RegionUS,
9898
}
9999
cfg.basePath = resolveBasePath(cfg.region)

0 commit comments

Comments
 (0)