Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Oct 11, 2024
1 parent abb1d3c commit f36fe6c
Show file tree
Hide file tree
Showing 336 changed files with 458 additions and 397 deletions.
6 changes: 3 additions & 3 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ docs/DocumentsApi.md
docs/DocumentsCompressRequest.md
docs/DocumentsCompressResponse.md
docs/DocusignConfig.md
docs/DocusignEmbed.md
docs/DocusignEnvironment.md
docs/DocusignInPerson.md
docs/DocusignSigner.md
docs/DocusignSigningMethod.md
docs/ESignatureApi.md
Expand Down Expand Up @@ -592,8 +592,8 @@ src/main/java/com/formkiq/client/model/DocumentWorkflowStatus.java
src/main/java/com/formkiq/client/model/DocumentsCompressRequest.java
src/main/java/com/formkiq/client/model/DocumentsCompressResponse.java
src/main/java/com/formkiq/client/model/DocusignConfig.java
src/main/java/com/formkiq/client/model/DocusignEmbed.java
src/main/java/com/formkiq/client/model/DocusignEnvironment.java
src/main/java/com/formkiq/client/model/DocusignInPerson.java
src/main/java/com/formkiq/client/model/DocusignSigner.java
src/main/java/com/formkiq/client/model/DocusignSigningMethod.java
src/main/java/com/formkiq/client/model/Error.java
Expand Down Expand Up @@ -971,8 +971,8 @@ src/test/java/com/formkiq/client/model/DocumentWorkflowTest.java
src/test/java/com/formkiq/client/model/DocumentsCompressRequestTest.java
src/test/java/com/formkiq/client/model/DocumentsCompressResponseTest.java
src/test/java/com/formkiq/client/model/DocusignConfigTest.java
src/test/java/com/formkiq/client/model/DocusignEmbedTest.java
src/test/java/com/formkiq/client/model/DocusignEnvironmentTest.java
src/test/java/com/formkiq/client/model/DocusignInPersonTest.java
src/test/java/com/formkiq/client/model/DocusignSignerTest.java
src/test/java/com/formkiq/client/model/DocusignSigningMethodTest.java
src/test/java/com/formkiq/client/model/ErrorTest.java
Expand Down
20 changes: 13 additions & 7 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19308,9 +19308,9 @@ components:
description: Docusign Signing Method
enum:
- EMAIL
- EMBED
- INPERSON
type: string
DocusignEmbed:
DocusignInPerson:
example:
returnUrl: returnUrl
properties:
Expand All @@ -19321,12 +19321,14 @@ components:
AddDocusignRequest:
example:
signers:
- name: name
- clientUserId: clientUserId
name: name
email: email
- name: name
- clientUserId: clientUserId
name: name
email: email
environment: PRODUCTION
embed:
inperson:
returnUrl: returnUrl
signingMethod: EMAIL
emailSubject: emailSubject
Expand All @@ -19343,15 +19345,16 @@ components:
items:
$ref: '#/components/schemas/DocusignSigner'
type: array
embed:
$ref: '#/components/schemas/DocusignEmbed'
inperson:
$ref: '#/components/schemas/DocusignInPerson'
required:
- environment
- signers
- signingMethod
type: object
DocusignSigner:
example:
clientUserId: clientUserId
name: name
email: email
properties:
Expand All @@ -19361,6 +19364,9 @@ components:
email:
description: Email of Signer
type: string
clientUserId:
description: Specifies unique identifier for signer (required if using InPerson)
type: string
required:
- name
type: object
Expand Down
2 changes: 1 addition & 1 deletion docs/AddDocusignRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
|**environment** | **DocusignEnvironment** | | |
|**signingMethod** | **DocusignSigningMethod** | | |
|**signers** | [**List<DocusignSigner>**](DocusignSigner.md) | List of DocuSign Signers | |
|**embed** | [**DocusignEmbed**](DocusignEmbed.md) | | [optional] |
|**inperson** | [**DocusignInPerson**](DocusignInPerson.md) | | [optional] |



13 changes: 13 additions & 0 deletions docs/DocusignInPerson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@


# DocusignInPerson


## Properties

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**returnUrl** | **String** | Identifies the return point after sending the envelope | [optional] |



1 change: 1 addition & 0 deletions docs/DocusignSigner.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
|------------ | ------------- | ------------- | -------------|
|**name** | **String** | Name of Signer | |
|**email** | **String** | Email of Signer | [optional] |
|**clientUserId** | **String** | Specifies unique identifier for signer (required if using InPerson) | [optional] |



2 changes: 1 addition & 1 deletion docs/DocusignSigningMethod.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

* `EMAIL` (value: `"EMAIL"`)

* `EMBED` (value: `"EMBED"`)
* `INPERSON` (value: `"INPERSON"`)



2 changes: 1 addition & 1 deletion generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

rm -r -f src

#openapi-generator generate -g java -i https://raw.githubusercontent.com/formkiq/formkiq-core/v1.16.0/docs/openapi/openapi-jwt.yaml -o . --additional-properties apiPackage=com.formkiq.client.api --additional-properties invokerPackage=com.formkiq.client.invoker --additional-properties modelPackage=com.formkiq.client.model --additional-properties groupId=com.formkiq --additional-properties artifactId=client --additional-properties withAWSV4Signature=true
openapi-generator generate -g java -i https://raw.githubusercontent.com/formkiq/formkiq-core/v1.16.0/docs/openapi/openapi-jwt.yaml -o . --additional-properties apiPackage=com.formkiq.client.api --additional-properties invokerPackage=com.formkiq.client.invoker --additional-properties modelPackage=com.formkiq.client.model --additional-properties groupId=com.formkiq --additional-properties artifactId=client --additional-properties withAWSV4Signature=true

git restore build.gradle

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
@SuppressWarnings("serial")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class ApiException extends Exception {
private static final long serialVersionUID = 1L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package com.formkiq.client.invoker;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class Configuration {
public static final String VERSION = "1.16.0";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/JSON.java
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ private static Class getClassByDiscriminator(Map classByDiscriminatorValue,
gsonBuilder.registerTypeAdapterFactory(
new com.formkiq.client.model.DocusignConfig.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(
new com.formkiq.client.model.DocusignEmbed.CustomTypeAdapterFactory());
new com.formkiq.client.model.DocusignInPerson.CustomTypeAdapterFactory());
gsonBuilder.registerTypeAdapterFactory(
new com.formkiq.client.model.DocusignSigner.CustomTypeAdapterFactory());
gsonBuilder
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package com.formkiq.client.invoker;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class Pair {
private String name = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Representing a Server configuration.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class ServerConfiguration {
public String URL;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* Representing a Server Variable for server URL template substitution.
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class ServerVariable {
public String description;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/StringUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import java.util.Iterator;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class StringUtil {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import okio.Buffer;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AWS4Auth implements Authentication {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class ApiKeyAuth implements Authentication {
private final String location;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.util.function.Supplier;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class HttpBearerAuth implements Authentication {
private final String scheme;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/auth/OAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import java.util.List;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class OAuth implements Authentication {
private String accessToken;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
* OAuth flows that are supported by this client
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public enum OAuthFlow {
ACCESS_CODE, // called authorizationCode in OpenAPI 3.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* Abstract class for oneOf,anyOf schemas defined in OpenAPI spec
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public abstract class AbstractOpenApiSchema {

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/model/AddAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* AddAction
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddAction {
public static final String SERIALIZED_NAME_TYPE = "type";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* AddActionParameters
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddActionParameters {
public static final String SERIALIZED_NAME_OCR_PARSE_TYPES = "ocrParseTypes";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* AddApiKeyRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddApiKeyRequest {
public static final String SERIALIZED_NAME_NAME = "name";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* AddApiKeyResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddApiKeyResponse {
public static final String SERIALIZED_NAME_API_KEY = "apiKey";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/model/AddAttribute.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
* AddAttribute
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddAttribute {
public static final String SERIALIZED_NAME_KEY = "key";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* AddAttributeRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddAttributeRequest {
public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* AddAttributeResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddAttributeResponse {
public static final String SERIALIZED_NAME_MESSAGE = "message";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/model/AddCase.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* AddCase
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddCase {
public static final String SERIALIZED_NAME_NAME = "name";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/model/AddCaseRequest.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* AddCaseRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddCaseRequest {
public static final String SERIALIZED_NAME_CASE = "case";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* AddCaseResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddCaseResponse {
public static final String SERIALIZED_NAME_CASE_ID = "caseId";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
* List of related documents
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddChildDocument {
public static final String SERIALIZED_NAME_PATH = "path";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* AddChildDocumentResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddChildDocumentResponse {
public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* AddClassification
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddClassification {
public static final String SERIALIZED_NAME_NAME = "name";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* AddClassificationRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddClassificationRequest {
public static final String SERIALIZED_NAME_CLASSIFICATION = "classification";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
* AddClassificationResponse
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddClassificationResponse {
public static final String SERIALIZED_NAME_CLASSIFICATION_ID = "classificationId";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
* AddDocumentActionsRequest
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-10-10T10:01:40.041013-05:00[America/Winnipeg]",
date = "2024-10-10T21:27:48.499768-05:00[America/Winnipeg]",
comments = "Generator version: 7.9.0")
public class AddDocumentActionsRequest {
public static final String SERIALIZED_NAME_ACTIONS = "actions";
Expand Down
Loading

0 comments on commit f36fe6c

Please sign in to comment.