Skip to content
Open
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ The samples below show how a published SDK artifact is used:

Gradle:
```groovy
implementation 'com.docusign:iam-sdk:1.0.0-beta.9'
implementation 'com.docusign:iam-sdk:1.0.0-beta.10'
```

Maven:
```xml
<dependency>
<groupId>com.docusign</groupId>
<artifactId>iam-sdk</artifactId>
<version>1.0.0-beta.9</version>
<version>1.0.0-beta.10</version>
</dependency>
```

Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,14 @@ Based on:
### Generated
- [java v1.0.0-beta.9] .
### Releases
- [Maven Central v1.0.0-beta.9] https://central.sonatype.com/artifact/com.docusign/iam-sdk/1.0.0-beta.9 - .
- [Maven Central v1.0.0-beta.9] https://central.sonatype.com/artifact/com.docusign/iam-sdk/1.0.0-beta.9 - .

## 2026-06-04 05:02:02
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.770.0 (2.893.0) https://github.com/speakeasy-api/speakeasy
### Generated
- [java v1.0.0-beta.10] .
### Releases
- [Maven Central v1.0.0-beta.10] https://central.sonatype.com/artifact/com.docusign/iam-sdk/1.0.0-beta.10 - .
24 changes: 24 additions & 0 deletions docs/models/components/Affordance.md

Large diffs are not rendered by default.

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

The http method to use when invoking this affordance

## Example Usage

```java
import com.docusign.iam.sdk.models.components.AffordanceMethod;

AffordanceMethod value = AffordanceMethod.POST;
```


## Values

| Name | Value |
| -------- | -------- |
| `POST` | POST |
| `GET` | GET |
| `PATCH` | PATCH |
| `PUT` | PUT |
| `DELETE` | DELETE |
3 changes: 1 addition & 2 deletions docs/models/components/BulkJobActionTemplates.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------ |
| `uploadDocument` | [Optional\<BulkJobActionTemplate>](../../models/components/BulkJobActionTemplate.md) | :heavy_minus_sign: | N/A |
| `uploadMetadata` | [Optional\<BulkJobActionTemplate>](../../models/components/BulkJobActionTemplate.md) | :heavy_minus_sign: | N/A |
| `uploadDocument` | [Optional\<BulkJobActionTemplate>](../../models/components/BulkJobActionTemplate.md) | :heavy_minus_sign: | N/A |
8 changes: 4 additions & 4 deletions docs/models/components/BulkJobEmbedded.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Contains detailed information about the BulkJob including presigned upload links

## Fields

| Field | Type | Required | Description | Example |
| ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
| `documentStatusEnum` | List\<*String*> | :heavy_minus_sign: | All possible document status values | [<br/>"NOT_STARTED",<br/>"IN_PROGRESS",<br/>"CANCELED",<br/>"SUCCEEDED",<br/>"FAILED"<br/>] |
| `documents` | List\<[BulkJobEmbeddedItems](../../models/components/BulkJobEmbeddedItems.md)> | :heavy_minus_sign: | List of documents with presigned upload URLs | |
| Field | Type | Required | Description | Example |
| ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------- |
| `documentStatusEnum` | List\<*String*> | :heavy_minus_sign: | All possible document status values | [<br/>"NOT_STARTED",<br/>"IN_PROGRESS",<br/>"CANCELED",<br/>"SUCCEEDED",<br/>"SUCCEEDED_WITH_WARNINGS",<br/>"FAILED"<br/>] |
| `documents` | List\<[BulkJobEmbeddedItems](../../models/components/BulkJobEmbeddedItems.md)> | :heavy_minus_sign: | List of documents with presigned upload URLs | |
Loading