Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
205 changes: 184 additions & 21 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
java:
version: 2.16.71
version: 2.16.72
additionalDependencies:
- testImplementation:org.junit.jupiter:junit-jupiter:5.10.0
- implementation:com.auth0:java-jwt:4.5.0
Expand Down
10 changes: 5 additions & 5 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ sources:
- 1.0.0
openapi:
sourceNamespace: openapi
sourceRevisionDigest: sha256:93e0903f00b2901074db9fb3e0bb594c4998b2d67226c4734e17f539f71054e0
sourceBlobDigest: sha256:f33259ec2fd1d25774a1710bb82eb7b7cffb9b5ec8744769b80c7adb50f76c18
sourceRevisionDigest: sha256:fb56864f571ef556d43e637ad15cc8e215b76aa1b87c44daccddbe9695049da1
sourceBlobDigest: sha256:d8b3507dea6f0d13ba40d661be4568e504e248943ac004bf4c5e9ee37d6db583
tags:
- latest
- 1.0.0
Expand All @@ -25,10 +25,10 @@ targets:
java:
source: openapi
sourceNamespace: openapi
sourceRevisionDigest: sha256:93e0903f00b2901074db9fb3e0bb594c4998b2d67226c4734e17f539f71054e0
sourceBlobDigest: sha256:f33259ec2fd1d25774a1710bb82eb7b7cffb9b5ec8744769b80c7adb50f76c18
sourceRevisionDigest: sha256:fb56864f571ef556d43e637ad15cc8e215b76aa1b87c44daccddbe9695049da1
sourceBlobDigest: sha256:d8b3507dea6f0d13ba40d661be4568e504e248943ac004bf4c5e9ee37d6db583
codeSamplesNamespace: openapi-java-code-samples
codeSamplesRevisionDigest: sha256:88578f70ee1e9510bad8b77ae569e376805f51fff888d7e74b2b93dadb9c81ce
codeSamplesRevisionDigest: sha256:600341573925407a7d005f091cc404eb84bd727ac3d8e9d7fa35999b30a67094
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.gr4vy:sdk:2.16.71'
implementation 'com.gr4vy:sdk:2.16.72'
```

Maven:
```xml
<dependency>
<groupId>com.gr4vy</groupId>
<artifactId>sdk</artifactId>
<version>2.16.71</version>
<version>2.16.72</version>
</dependency>
```

Expand Down Expand Up @@ -355,6 +355,7 @@ Async support is available for:
* [googlePay](docs/sdks/sessions/README.md#googlepay) - Create a Google Pay session
* [applePay](docs/sdks/sessions/README.md#applepay) - Create a Apple Pay session
* [paze](docs/sdks/sessions/README.md#paze) - Create a Paze session
* [pazeMobileSessionReview](docs/sdks/sessions/README.md#pazemobilesessionreview) - Review a Paze session
* [clickToPay](docs/sdks/sessions/README.md#clicktopay) - Create a Click to Pay session

### [GiftCards](docs/sdks/giftcards/README.md)
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -1548,4 +1548,14 @@ Based on:
### Generated
- [java v2.16.71] .
### Releases
- [Maven Central v2.16.71] https://central.sonatype.com/artifact/com.gr4vy/sdk/2.16.71 - .
- [Maven Central v2.16.71] https://central.sonatype.com/artifact/com.gr4vy/sdk/2.16.71 - .

## 2026-05-21 13:51:09
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.763.5 (2.884.11) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v2.16.72] .
### Releases
- [Maven Central v2.16.72] https://central.sonatype.com/artifact/com.gr4vy/sdk/2.16.72 - .
23 changes: 23 additions & 0 deletions docs/models/components/Paymentcardbrand.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Paymentcardbrand

Card brand.

## Example Usage

```java
import com.gr4vy.sdk.models.components.Paymentcardbrand;

Paymentcardbrand value = Paymentcardbrand.VISA;

// Open enum: use .of() to create instances from custom string values
Paymentcardbrand custom = Paymentcardbrand.of("custom_value");
```


## Values

| Name | Value |
| ------------ | ------------ |
| `VISA` | VISA |
| `MASTERCARD` | MASTERCARD |
| `DISCOVER` | DISCOVER |
23 changes: 23 additions & 0 deletions docs/models/components/Paymentcardnetwork.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Paymentcardnetwork

Card network.

## Example Usage

```java
import com.gr4vy.sdk.models.components.Paymentcardnetwork;

Paymentcardnetwork value = Paymentcardnetwork.VISA;

// Open enum: use .of() to create instances from custom string values
Paymentcardnetwork custom = Paymentcardnetwork.of("custom_value");
```


## Values

| Name | Value |
| ------------ | ------------ |
| `VISA` | VISA |
| `MASTERCARD` | MASTERCARD |
| `DISCOVER` | DISCOVER |
22 changes: 22 additions & 0 deletions docs/models/components/Paymentcardtype.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Paymentcardtype

Card type.

## Example Usage

```java
import com.gr4vy.sdk.models.components.Paymentcardtype;

Paymentcardtype value = Paymentcardtype.CREDIT;

// Open enum: use .of() to create instances from custom string values
Paymentcardtype custom = Paymentcardtype.of("custom_value");
```


## Values

| Name | Value |
| -------- | -------- |
| `CREDIT` | CREDIT |
| `DEBIT` | DEBIT |
15 changes: 15 additions & 0 deletions docs/models/components/PazeBillingAddress.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# PazeBillingAddress


## Fields

| Field | Type | Required | Description |
| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- |
| `name` | *Optional\<String>* | :heavy_check_mark: | Name of the organization or entity at the address. |
| `line1` | *String* | :heavy_check_mark: | Line 1 of the address. |
| `line2` | *Optional\<String>* | :heavy_check_mark: | Line 2 of the address. |
| `line3` | *Optional\<String>* | :heavy_check_mark: | Line 3 of the address. |
| `city` | *String* | :heavy_check_mark: | City. |
| `state` | *String* | :heavy_check_mark: | State or region. |
| `zip` | *String* | :heavy_check_mark: | Postal code. |
| `countryCode` | *Optional\<String>* | :heavy_check_mark: | ISO 3166-1 alpha-2 country code. |
14 changes: 14 additions & 0 deletions docs/models/components/PazeConsumer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# PazeConsumer


## Fields

| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| `firstName` | *Optional\<String>* | :heavy_check_mark: | First name of the consumer. | Team |
| `lastName` | *Optional\<String>* | :heavy_check_mark: | Last name of the consumer. | Integrations |
| `fullName` | *String* | :heavy_check_mark: | Full name of the consumer. | Team Integrations |
| `countryCode` | *Optional\<String>* | :heavy_check_mark: | ISO 3166-1 alpha-2 country code. | US |
| `languageCode` | *Optional\<String>* | :heavy_check_mark: | ISO 639-1 language code associated with the wallet. | EN |
| `emailAddress` | *String* | :heavy_check_mark: | Email address of the consumer. | integrations@gr4vy.com |
| `mobileNumber` | [Optional\<PazeMobileNumber>](../../models/components/PazeMobileNumber.md) | :heavy_check_mark: | N/A | |
9 changes: 9 additions & 0 deletions docs/models/components/PazeDeliveryContactDetails.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# PazeDeliveryContactDetails


## Fields

| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| `contactFullName` | *Optional\<String>* | :heavy_check_mark: | Consumer-provided name of the contact person. | Team Integrations |
| `contactPhoneNumber` | [Optional\<PazeMobileNumber>](../../models/components/PazeMobileNumber.md) | :heavy_check_mark: | N/A | |
10 changes: 10 additions & 0 deletions docs/models/components/PazeDigitalCardData.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# PazeDigitalCardData


## Fields

| Field | Type | Required | Description | Example |
| ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------- |
| `artUri` | *String* | :heavy_check_mark: | URI hosting the card art image. | https://sandbox.assets.vims.visa.com/vims/cardart/8f64614def1a41d39ea8acae4616bf6f_imageC |
| `artHeight` | *long* | :heavy_check_mark: | Card art height in pixels. | 50 |
| `artWidth` | *long* | :heavy_check_mark: | Card art width in pixels. | 80 |
17 changes: 17 additions & 0 deletions docs/models/components/PazeMaskedCard.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# PazeMaskedCard


## Fields

| Field | Type | Required | Description | Example |
| --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------- |
| `panLastFour` | *String* | :heavy_check_mark: | Last four digits of the PAN. | 2121 |
| `paymentAccountReference` | *String* | :heavy_check_mark: | Payment Account Reference (PAR). A non-financial reference assigned to each unique PAN. | V0010013023108318841413393850 |
| `panExpirationMonth` | *Optional\<String>* | :heavy_check_mark: | 2-digit PAN expiration month. | 05 |
| `panExpirationYear` | *Optional\<String>* | :heavy_check_mark: | 4-digit PAN expiration year. | 2032 |
| `paymentCardDescriptor` | *String* | :heavy_check_mark: | Free-form string used for card or program recognition. | Visa Hero Card |
| `paymentCardType` | [Paymentcardtype](../../models/components/Paymentcardtype.md) | :heavy_check_mark: | Card type. | CREDIT |
| `paymentCardBrand` | [Paymentcardbrand](../../models/components/Paymentcardbrand.md) | :heavy_check_mark: | Card brand. | VISA |
| `paymentCardNetwork` | [Paymentcardnetwork](../../models/components/Paymentcardnetwork.md) | :heavy_check_mark: | Card network. | VISA |
| `digitalCardData` | [PazeDigitalCardData](../../models/components/PazeDigitalCardData.md) | :heavy_check_mark: | N/A | |
| `billingAddress` | [Optional\<PazeBillingAddress>](../../models/components/PazeBillingAddress.md) | :heavy_check_mark: | N/A | |
Loading
Loading