Skip to content

Commit

Permalink
Merge pull request #4 from fingerprintjs/develop
Browse files Browse the repository at this point in the history
First release PR
  • Loading branch information
Orkun committed Feb 14, 2023
2 parents 13dd12a + 4577c04 commit 9545c7a
Show file tree
Hide file tree
Showing 56 changed files with 4,346 additions and 433 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ build
.vscode
.env
.DS_Store
.openapi-generator
.openapi-generator
release/node_modules
4 changes: 3 additions & 1 deletion .openapi-generator-ignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,6 @@ git_push.sh
api/*
src/test/java/com/fingerprint/model/*
src/main/AndroidManifest.xml
.github/workflows/maven.yml
.github/workflows/maven.yml
pom.xml
src/main/AndroidManifest.xml
18 changes: 3 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
> :warning: **Work in progress**: This is a beta version of the library
<p align="center">
<a href="https://fingerprint.com">
<picture>
Expand Down Expand Up @@ -40,20 +42,6 @@ Building the API client library requires:

## Installation

To install the API client library to your local Maven repository, simply execute:

```shell
mvn clean install
```

To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:

```shell
mvn clean deploy
```

Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information.

### Maven users

Add this dependency to your project's POM:
Expand Down Expand Up @@ -87,7 +75,7 @@ Add this dependency to your project's build file:
At first generate the JAR by executing:

```shell
mvn clean package
./gradlew jar
```

Then manually install the following JARs:
Expand Down
1 change: 1 addition & 0 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ gitHost: github.com
gitRepoId: fingerprint-pro-server-api-java-sdk
gitUserId: fingerprintjs
library: jersey2
hideGenerationTimestamp: true
4 changes: 2 additions & 2 deletions docs/FingerprintApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public class FingerprintApiExample {
String requestId = "requestId_example"; // String | Filter visits by requestId
String linkedId = "linkedId_example"; // String | Filter visits by custom identifier
Integer limit = 56; // Integer | Limit scanned results
Integer before = 56; // Integer | Used to paginate results
Long before = 56L; // Long | Timestamp (in milliseconds since epoch) used to paginate results
try {
Response result = apiInstance.getVisits(visitorIdrequestIdlinkedIdlimitbefore);
System.out.println(result);
Expand All @@ -147,7 +147,7 @@ public class FingerprintApiExample {
| **requestId** | **String**| Filter visits by requestId | [optional] |
| **linkedId** | **String**| Filter visits by custom identifier | [optional] |
| **limit** | **Integer**| Limit scanned results | [optional] |
| **before** | **Integer**| Used to paginate results | [optional] |
| **before** | **Long**| Timestamp (in milliseconds since epoch) used to paginate results | [optional] |

### Return type

Expand Down
Loading

0 comments on commit 9545c7a

Please sign in to comment.