Skip to content

chore: 🐝 Update SDK - Generate SDK 1.0.0-beta.6 #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 3, 2025
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
350 changes: 347 additions & 3 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 @@ -18,7 +18,7 @@ generation:
oAuth2PasswordEnabled: false
sdkHooksConfigAccess: true
java:
version: 1.0.0-beta.5
version: 1.0.0-beta.6
additionalDependencies:
- testImplementation:org.junit.jupiter:junit-jupiter:5.10.0
- implementation:com.auth0:java-jwt:4.5.0
Expand Down
12 changes: 6 additions & 6 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ sources:
- 1.0.0
openapi:
sourceNamespace: openapi
sourceRevisionDigest: sha256:d508ddf668dbe8af6ca27728bc3cb3ae37b90adc29cd0ae4df1945d840a3b66c
sourceBlobDigest: sha256:2eb1d80aa5e27997c3663da76dddb7809d6cfaeb98451fd6ff56a686035769a8
sourceRevisionDigest: sha256:6b3dc3631928863a66a1608e5a573d65f61faf3f1eea7bb466f895d31ae01077
sourceBlobDigest: sha256:e292563575fcc151f2be97051458c6e5ad35e1ebe9acd96c3fb5dd862b2130c1
tags:
- latest
- speakeasy-sdk-regen-1748951350
- speakeasy-sdk-regen-1748954136
- 1.0.0
targets:
gr-4-vy:
Expand All @@ -26,10 +26,10 @@ targets:
java:
source: openapi
sourceNamespace: openapi
sourceRevisionDigest: sha256:d508ddf668dbe8af6ca27728bc3cb3ae37b90adc29cd0ae4df1945d840a3b66c
sourceBlobDigest: sha256:2eb1d80aa5e27997c3663da76dddb7809d6cfaeb98451fd6ff56a686035769a8
sourceRevisionDigest: sha256:6b3dc3631928863a66a1608e5a573d65f61faf3f1eea7bb466f895d31ae01077
sourceBlobDigest: sha256:e292563575fcc151f2be97051458c6e5ad35e1ebe9acd96c3fb5dd862b2130c1
codeSamplesNamespace: openapi-java-code-samples
codeSamplesRevisionDigest: sha256:8bbc6a73fea2335ba4096176d2276a3a559855686522c0e233100d998282f09e
codeSamplesRevisionDigest: sha256:2725a21b3096f3bce2bc3144ed6844807d9d9a2bebd5e82d2e4bad599a76e7bc
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.gr4vy:sdk:1.0.0-beta.5'
implementation 'com.gr4vy:sdk:1.0.0-beta.6'
```

Maven:
```xml
<dependency>
<groupId>com.gr4vy</groupId>
<artifactId>sdk</artifactId>
<version>1.0.0-beta.5</version>
<version>1.0.0-beta.6</version>
</dependency>
```

Expand Down Expand Up @@ -386,6 +386,23 @@ try {

* [get](docs/sdks/refunds/README.md#get) - Get refund

### [reports()](docs/sdks/reports/README.md)

* [list](docs/sdks/reports/README.md#list) - List configured reports
* [create](docs/sdks/reports/README.md#create) - Add a report
* [get](docs/sdks/reports/README.md#get) - Get a report
* [put](docs/sdks/reports/README.md#put) - Update a report

#### [reports().executions()](docs/sdks/executions/README.md)

* [list](docs/sdks/executions/README.md#list) - List executions for report
* [url](docs/sdks/executions/README.md#url) - Create URL for executed report

### [reportsExecutions()](docs/sdks/reportsexecutions/README.md)

* [list](docs/sdks/reportsexecutions/README.md#list) - List executed reports
* [get](docs/sdks/reportsexecutions/README.md#get) - Get executed report

### [transactions()](docs/sdks/transactions/README.md)

* [list](docs/sdks/transactions/README.md#list) - List transactions
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,14 @@ Based on:
### Generated
- [java v1.0.0-beta.5] .
### Releases
- [Maven Central v1.0.0-beta.5] https://central.sonatype.com/artifact/com.gr4vy/sdk/1.0.0-beta.5 - .
- [Maven Central v1.0.0-beta.5] https://central.sonatype.com/artifact/com.gr4vy/sdk/1.0.0-beta.5 - .

## 2025-06-03 12:35:18
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.555.0 (2.618.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v1.0.0-beta.6] .
### Releases
- [Maven Central v1.0.0-beta.6] https://central.sonatype.com/artifact/com.gr4vy/sdk/1.0.0-beta.6 - .
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ publishing {
// https://github.com/gradle/gradle/issues/18619
groupId = "com.gr4vy"
artifactId = "sdk"
version = "1.0.0-beta.5"
version = "1.0.0-beta.6"

from components.java

Expand Down
11 changes: 11 additions & 0 deletions docs/models/components/CollectionReport.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CollectionReport


## Fields

| Field | Type | Required | Description | Example |
| -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- | -------------------------------------------------- |
| `items` | List\<[Report](../../models/components/Report.md)> | :heavy_check_mark: | A list of items returned for this request. | |
| `limit` | *Optional\<Long>* | :heavy_minus_sign: | The number of items for this page. | 20 |
| `nextCursor` | *JsonNullable\<String>* | :heavy_minus_sign: | The cursor pointing at the next page of items. | ZXhhbXBsZTE |
| `previousCursor` | *JsonNullable\<String>* | :heavy_minus_sign: | The cursor pointing at the previous page of items. | Xkjss7asS |
11 changes: 11 additions & 0 deletions docs/models/components/CollectionReportExecution.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# CollectionReportExecution


## Fields

| Field | Type | Required | Description | Example |
| -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- | -------------------------------------------------------------------- |
| `items` | List\<[ReportExecution](../../models/components/ReportExecution.md)> | :heavy_check_mark: | A list of items returned for this request. | |
| `limit` | *Optional\<Long>* | :heavy_minus_sign: | The number of items for this page. | 20 |
| `nextCursor` | *JsonNullable\<String>* | :heavy_minus_sign: | The cursor pointing at the next page of items. | ZXhhbXBsZTE |
| `previousCursor` | *JsonNullable\<String>* | :heavy_minus_sign: | The cursor pointing at the previous page of items. | Xkjss7asS |
9 changes: 9 additions & 0 deletions docs/models/components/DetailedSettlementReportSpec.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# DetailedSettlementReportSpec


## Fields

| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- | ---------------------------------------------------------------------------- |
| `model` | *Optional\<String>* | :heavy_minus_sign: | The report model type. | detailed_settlement |
| `params` | Map\<String, *Object*> | :heavy_check_mark: | The parameters for the detailed settlement report model. | {<br/>"filters": {<br/>"ingested_at": {<br/>"end": "day_end",<br/>"start": "day_start"<br/>}<br/>}<br/>} |
23 changes: 23 additions & 0 deletions docs/models/components/Report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Report


## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
| `type` | *Optional\<String>* | :heavy_minus_sign: | Always `report`. | report |
| `id` | *String* | :heavy_check_mark: | The unique ID for the report. | a1b2c3d4-5678-90ab-cdef-1234567890ab |
| `merchantAccountId` | *String* | :heavy_check_mark: | The merchant account ID this report belongs to. | merchant-account-12345 |
| `name` | *String* | :heavy_check_mark: | The name of the report. | Monthly Transaction Report |
| `creatorId` | *JsonNullable\<String>* | :heavy_minus_sign: | The ID of the user who created the report. | d290f1ee-6c54-4b01-90e6-d701748f0851 |
| `creatorDisplayName` | *JsonNullable\<String>* | :heavy_minus_sign: | The display name of the report creator. | Jane Doe |
| `creatorType` | [JsonNullable\<ReportCreatorType>](../../models/components/ReportCreatorType.md) | :heavy_minus_sign: | The type of the report creator. | user |
| `createdAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | The date this report was created at. | 2024-05-30T12:34:56.000Z |
| `updatedAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_check_mark: | The date this report was last updated. | 2024-05-30T13:00:00.000Z |
| `nextExecutionAt` | [OffsetDateTime](https://docs.oracle.com/javase/8/docs/api/java/time/OffsetDateTime.html) | :heavy_minus_sign: | The next scheduled execution time for the report. | 2024-06-01T00:00:00.000Z |
| `description` | *JsonNullable\<String>* | :heavy_minus_sign: | A description of the report. | Monthly transaction summary for May 2024. |
| `schedule` | [ReportSchedule](../../models/components/ReportSchedule.md) | :heavy_check_mark: | N/A | |
| `scheduleEnabled` | *boolean* | :heavy_check_mark: | Whether the report schedule is enabled. | true |
| `scheduleTimezone` | *String* | :heavy_check_mark: | The timezone for the report schedule. | UTC |
| `spec` | [ReportSpec](../../models/components/ReportSpec.md) | :heavy_check_mark: | N/A | |
| `latestExecution` | [JsonNullable\<ReportExecutionSummary>](../../models/components/ReportExecutionSummary.md) | :heavy_minus_sign: | The latest execution summary for the report. | |
Loading