diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 000000000..d7a2b6c0d --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,30 @@ +# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven +# +# This file is auto-generated by OpenAPI Generator (https://openapi-generator.tech) + +name: Java CI with Maven + +on: + push: + branches: [ main, master ] + pull_request: + branches: [ main, master ] + +jobs: + build: + name: Build FormKiQ API JWT + runs-on: ubuntu-latest + strategy: + matrix: + java: [ 17, 21 ] + steps: + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 + with: + java-version: ${{ matrix.java }} + distribution: 'temurin' + cache: maven + - name: Build with Maven + run: mvn -B package --no-transfer-progress --file pom.xml diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index 0c4f5871b..e132215b5 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -114,6 +114,7 @@ docs/AddWorkflowStepDecision.md docs/AddWorkflowStepQueue.md docs/AdvancedDocumentSearchApi.md docs/ApiKey.md +docs/ApiKeyPermission.md docs/Attribute.md docs/AttributeDataType.md docs/AttributeSchemaCompositeKey.md @@ -154,6 +155,8 @@ docs/DocumentActionType.md docs/DocumentActionsApi.md docs/DocumentAttribute.md docs/DocumentAttributesApi.md +docs/DocumentConfig.md +docs/DocumentConfigContentTypes.md docs/DocumentDataClassificationApi.md docs/DocumentFoldersApi.md docs/DocumentFulltextAttribute.md @@ -641,6 +644,7 @@ src/main/java/com/formkiq/client/model/AddWorkflowStep.java src/main/java/com/formkiq/client/model/AddWorkflowStepDecision.java src/main/java/com/formkiq/client/model/AddWorkflowStepQueue.java src/main/java/com/formkiq/client/model/ApiKey.java +src/main/java/com/formkiq/client/model/ApiKeyPermission.java src/main/java/com/formkiq/client/model/Attribute.java src/main/java/com/formkiq/client/model/AttributeDataType.java src/main/java/com/formkiq/client/model/AttributeSchemaCompositeKey.java @@ -676,6 +680,8 @@ src/main/java/com/formkiq/client/model/DocumentAction.java src/main/java/com/formkiq/client/model/DocumentActionStatus.java src/main/java/com/formkiq/client/model/DocumentActionType.java src/main/java/com/formkiq/client/model/DocumentAttribute.java +src/main/java/com/formkiq/client/model/DocumentConfig.java +src/main/java/com/formkiq/client/model/DocumentConfigContentTypes.java src/main/java/com/formkiq/client/model/DocumentFulltextAttribute.java src/main/java/com/formkiq/client/model/DocumentFulltextAttributeEq.java src/main/java/com/formkiq/client/model/DocumentFulltextRequest.java @@ -1105,6 +1111,7 @@ src/test/java/com/formkiq/client/model/AddWorkflowResponseTest.java src/test/java/com/formkiq/client/model/AddWorkflowStepDecisionTest.java src/test/java/com/formkiq/client/model/AddWorkflowStepQueueTest.java src/test/java/com/formkiq/client/model/AddWorkflowStepTest.java +src/test/java/com/formkiq/client/model/ApiKeyPermissionTest.java src/test/java/com/formkiq/client/model/ApiKeyTest.java src/test/java/com/formkiq/client/model/AttributeDataTypeTest.java src/test/java/com/formkiq/client/model/AttributeSchemaCompositeKeyTest.java @@ -1140,6 +1147,8 @@ src/test/java/com/formkiq/client/model/DocumentActionStatusTest.java src/test/java/com/formkiq/client/model/DocumentActionTest.java src/test/java/com/formkiq/client/model/DocumentActionTypeTest.java src/test/java/com/formkiq/client/model/DocumentAttributeTest.java +src/test/java/com/formkiq/client/model/DocumentConfigContentTypesTest.java +src/test/java/com/formkiq/client/model/DocumentConfigTest.java src/test/java/com/formkiq/client/model/DocumentFulltextAttributeEqTest.java src/test/java/com/formkiq/client/model/DocumentFulltextAttributeTest.java src/test/java/com/formkiq/client/model/DocumentFulltextRequestTest.java diff --git a/README.md b/README.md index 2174dedc3..12d93656e 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ This is the official supported Java library for the FormKiQ API. FormKiQ HTTP API -- API version: 1.18.0 - - Build date: 2025-11-01T15:09:25.429667-05:00[America/Winnipeg] +- API version: 1.18.1 + - Build date: 2025-12-07T17:20:11.660615-06:00[America/Winnipeg] - Generator version: 7.17.0 Formkiq API: Document Management Platform API using OAuth(JWT) Authentication @@ -64,7 +64,7 @@ Add this dependency to your project's POM: com.formkiq client - 1.18.0 + 1.18.1 compile ``` @@ -80,7 +80,7 @@ Add this dependency to your project's build file: } dependencies { - implementation "com.formkiq:client:1.18.0" + implementation "com.formkiq:client:1.18.1" } ``` @@ -94,7 +94,7 @@ mvn clean package Then manually install the following JARs: -* `target/client-1.18.0.jar` +* `target/client-1.18.1.jar` * `target/lib/*.jar` ## Getting Started @@ -513,6 +513,7 @@ Class | Method | HTTP request | Description - [AddWorkflowStepDecision](docs/AddWorkflowStepDecision.md) - [AddWorkflowStepQueue](docs/AddWorkflowStepQueue.md) - [ApiKey](docs/ApiKey.md) + - [ApiKeyPermission](docs/ApiKeyPermission.md) - [Attribute](docs/Attribute.md) - [AttributeDataType](docs/AttributeDataType.md) - [AttributeSchemaCompositeKey](docs/AttributeSchemaCompositeKey.md) @@ -548,6 +549,8 @@ Class | Method | HTTP request | Description - [DocumentActionStatus](docs/DocumentActionStatus.md) - [DocumentActionType](docs/DocumentActionType.md) - [DocumentAttribute](docs/DocumentAttribute.md) + - [DocumentConfig](docs/DocumentConfig.md) + - [DocumentConfigContentTypes](docs/DocumentConfigContentTypes.md) - [DocumentFulltextAttribute](docs/DocumentFulltextAttribute.md) - [DocumentFulltextAttributeEq](docs/DocumentFulltextAttributeEq.md) - [DocumentFulltextRequest](docs/DocumentFulltextRequest.md) diff --git a/api/openapi.yaml b/api/openapi.yaml index 7e30fe4aa..08a749b42 100644 --- a/api/openapi.yaml +++ b/api/openapi.yaml @@ -28,7 +28,7 @@ info: name: Apache 2.0 url: https://www.apache.org/licenses/LICENSE-2.0.html title: FormKiQ API JWT - version: 1.18.0 + version: 1.18.1 x-logo: url: https://docs.formkiq.com/docs/latest/_images/formkiq-logo.png backgroundColor: "#FFFFFF" @@ -2430,6 +2430,17 @@ paths: schema: type: string style: form + - description: Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' + to return only the documentId attribute. + explode: true + in: query + name: projection + required: false + schema: + enum: + - DOCUMENT_ID_ONLY + type: string + style: form - description: Limit Results explode: true in: query @@ -15730,12 +15741,12 @@ components: checksumType: SHA1 siteId: siteId documentId: documentId - contentLength: 0 + contentLength: 6 attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -15757,12 +15768,12 @@ components: checksumType: SHA1 siteId: siteId documentId: documentId - contentLength: 0 + contentLength: 6 attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -15770,7 +15781,12 @@ components: booleanValue: true contentType: contentType height: height + totalCount: 0 properties: + totalCount: + description: | + Total number of documents that matched the search query. When the number of matches exceeds 10,000, this value will be reported as 10,000+ unless the search request explicitly enables exact total hit tracking. + type: integer documents: description: List of search result documents items: @@ -15793,12 +15809,12 @@ components: checksumType: SHA1 siteId: siteId documentId: documentId - contentLength: 0 + contentLength: 6 attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -15875,8 +15891,8 @@ components: FulltextAttribute: example: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -15920,8 +15936,8 @@ components: attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -20348,8 +20364,8 @@ components: attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -20437,8 +20453,8 @@ components: attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -20526,8 +20542,8 @@ components: attributes: key: numberValues: - - 6.027456183070403 - - 6.027456183070403 + - 1.4658129805029452 + - 1.4658129805029452 stringValues: - stringValues - stringValues @@ -21012,6 +21028,15 @@ components: userId: userId hmacSignature: hmacSignature integrationKey: integrationKey + document: + contentTypes: + allowlist: + - application/pdf + - image/png + - image/jpeg + denylist: + - application/x-msdownload + - application/x-sh google: workloadIdentityServiceAccount: workloadIdentityServiceAccount workloadIdentityAudience: workloadIdentityAudience @@ -21036,6 +21061,8 @@ components: notificationEmail: description: Email address to use for notifications type: string + document: + $ref: "#/components/schemas/DocumentConfig" ocr: $ref: "#/components/schemas/OcrConfig" google: @@ -21262,21 +21289,31 @@ components: - READ - READ name: name + groups: + - groups + - groups properties: name: description: Name of API Key type: string - permissions: - description: List of permissions + groups: + description: Optional list of groups to add as custom claims to API Key items: - enum: - - READ - - WRITE - - DELETE - - GOVERN type: string type: array + permissions: + items: + $ref: "#/components/schemas/ApiKeyPermission" + type: array type: object + ApiKeyPermission: + description: List of API permissions (defaults to READ / WRITE / DELETE) + enum: + - READ + - WRITE + - DELETE + - GOVERN + type: string AddApiKeyResponse: example: apiKey: apiKey @@ -22069,6 +22106,9 @@ components: - READ name: name siteId: siteId + groups: + - groups + - groups userId: userId - apiKey: apiKey insertedDate: insertedDate @@ -22077,6 +22117,9 @@ components: - READ name: name siteId: siteId + groups: + - groups + - groups userId: userId properties: next: @@ -22097,6 +22140,9 @@ components: - READ name: name siteId: siteId + groups: + - groups + - groups userId: userId properties: name: @@ -22113,13 +22159,12 @@ components: description: Inserted Timestamp type: string permissions: - description: List of permissions items: - enum: - - READ - - WRITE - - DELETE - - GOVERN + $ref: "#/components/schemas/ApiKeyPermission" + type: array + groups: + description: List of groups to add as custom claims to API Key + items: type: string type: array type: object @@ -22133,6 +22178,15 @@ components: userId: userId hmacSignature: hmacSignature integrationKey: integrationKey + document: + contentTypes: + allowlist: + - application/pdf + - image/png + - image/jpeg + denylist: + - application/x-msdownload + - application/x-sh google: workloadIdentityServiceAccount: workloadIdentityServiceAccount workloadIdentityAudience: workloadIdentityAudience @@ -22158,6 +22212,8 @@ components: description: Email address to use for notifications (Must be verified identity created in AWS SES) type: string + document: + $ref: "#/components/schemas/DocumentConfig" ocr: $ref: "#/components/schemas/OcrConfig" google: @@ -22200,6 +22256,48 @@ components: using OCR MaxTransactions) type: number type: object + DocumentConfig: + example: + contentTypes: + allowlist: + - application/pdf + - image/png + - image/jpeg + denylist: + - application/x-msdownload + - application/x-sh + properties: + contentTypes: + $ref: "#/components/schemas/DocumentConfigContentTypes" + type: object + DocumentConfigContentTypes: + example: + allowlist: + - application/pdf + - image/png + - image/jpeg + denylist: + - application/x-msdownload + - application/x-sh + properties: + allowlist: + example: + - application/pdf + - image/png + - image/jpeg + items: + description: Allowed MIME types + type: string + type: array + denylist: + example: + - application/x-msdownload + - application/x-sh + items: + description: Disallowed MIME types + type: string + type: array + type: object OcrConfig: example: maxPagesPerTransaction: 0.8008281904610115 diff --git a/build.gradle b/build.gradle index 126c59a60..653067f6c 100644 --- a/build.gradle +++ b/build.gradle @@ -8,7 +8,7 @@ plugins { } group = 'com.formkiq' -version = '1.18.0' +version = '1.18.1-SNAPSHOT' sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 diff --git a/build.sbt b/build.sbt index 7be2c71fa..490cdc4cb 100644 --- a/build.sbt +++ b/build.sbt @@ -2,7 +2,7 @@ lazy val root = (project in file(".")). settings( organization := "com.formkiq", name := "client", - version := "1.18.0", + version := "1.18.1", scalaVersion := "2.11.12", scalacOptions ++= Seq("-feature"), compile / javacOptions ++= Seq("-Xlint:deprecation"), diff --git a/docs/AddApiKeyPermission.md b/docs/AddApiKeyPermission.md new file mode 100644 index 000000000..c8e84de74 --- /dev/null +++ b/docs/AddApiKeyPermission.md @@ -0,0 +1,17 @@ + + +# AddApiKeyPermission + +## Enum + + +* `READ` (value: `"READ"`) + +* `WRITE` (value: `"WRITE"`) + +* `DELETE` (value: `"DELETE"`) + +* `GOVERN` (value: `"GOVERN"`) + + + diff --git a/docs/AddApiKeyRequest.md b/docs/AddApiKeyRequest.md index 90bd07e37..901b89096 100644 --- a/docs/AddApiKeyRequest.md +++ b/docs/AddApiKeyRequest.md @@ -8,18 +8,8 @@ | Name | Type | Description | Notes | |------------ | ------------- | ------------- | -------------| |**name** | **String** | Name of API Key | [optional] | -|**permissions** | [**List<PermissionsEnum>**](#List<PermissionsEnum>) | List of permissions | [optional] | - - - -## Enum: List<PermissionsEnum> - -| Name | Value | -|---- | -----| -| READ | "READ" | -| WRITE | "WRITE" | -| DELETE | "DELETE" | -| GOVERN | "GOVERN" | +|**groups** | **List<String>** | Optional list of groups to add as custom claims to API Key | [optional] | +|**permissions** | **List<ApiKeyPermission>** | | [optional] | diff --git a/docs/ApiKey.md b/docs/ApiKey.md index a0021d080..fa61b59e3 100644 --- a/docs/ApiKey.md +++ b/docs/ApiKey.md @@ -12,18 +12,8 @@ |**userId** | **String** | | [optional] | |**siteId** | **String** | | [optional] | |**insertedDate** | **String** | Inserted Timestamp | [optional] | -|**permissions** | [**List<PermissionsEnum>**](#List<PermissionsEnum>) | List of permissions | [optional] | - - - -## Enum: List<PermissionsEnum> - -| Name | Value | -|---- | -----| -| READ | "READ" | -| WRITE | "WRITE" | -| DELETE | "DELETE" | -| GOVERN | "GOVERN" | +|**permissions** | **List<ApiKeyPermission>** | | [optional] | +|**groups** | **List<String>** | List of groups to add as custom claims to API Key | [optional] | diff --git a/docs/ApiKeyPermission.md b/docs/ApiKeyPermission.md new file mode 100644 index 000000000..d4d15d456 --- /dev/null +++ b/docs/ApiKeyPermission.md @@ -0,0 +1,17 @@ + + +# ApiKeyPermission + +## Enum + + +* `READ` (value: `"READ"`) + +* `WRITE` (value: `"WRITE"`) + +* `DELETE` (value: `"DELETE"`) + +* `GOVERN` (value: `"GOVERN"`) + + + diff --git a/docs/DocumentConfig.md b/docs/DocumentConfig.md new file mode 100644 index 000000000..cd0e8a6dd --- /dev/null +++ b/docs/DocumentConfig.md @@ -0,0 +1,13 @@ + + +# DocumentConfig + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**contentTypes** | [**DocumentConfigContentTypes**](DocumentConfigContentTypes.md) | | [optional] | + + + diff --git a/docs/DocumentConfigContentTypes.md b/docs/DocumentConfigContentTypes.md new file mode 100644 index 000000000..f9865a31e --- /dev/null +++ b/docs/DocumentConfigContentTypes.md @@ -0,0 +1,14 @@ + + +# DocumentConfigContentTypes + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**allowlist** | **List<String>** | | [optional] | +|**denylist** | **List<String>** | | [optional] | + + + diff --git a/docs/DocumentFulltextResponse.md b/docs/DocumentFulltextResponse.md index 859be307d..7ad4cb234 100644 --- a/docs/DocumentFulltextResponse.md +++ b/docs/DocumentFulltextResponse.md @@ -7,6 +7,7 @@ | Name | Type | Description | Notes | |------------ | ------------- | ------------- | -------------| +|**totalCount** | **Integer** | Total number of documents that matched the search query. When the number of matches exceeds 10,000, this value will be reported as 10,000+ unless the search request explicitly enables exact total hit tracking. | [optional] | |**documents** | [**List<FulltextSearchItem>**](FulltextSearchItem.md) | List of search result documents | [optional] | diff --git a/docs/DocumentsApi.md b/docs/DocumentsApi.md index 6107fec2c..3673aa5d3 100644 --- a/docs/DocumentsApi.md +++ b/docs/DocumentsApi.md @@ -952,7 +952,7 @@ No authorization required # **getDocuments** -> GetDocumentsResponse getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, limit) +> GetDocumentsResponse getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, projection, limit) Get Documents listing @@ -984,9 +984,10 @@ public class Example { String tz = "tz_example"; // String | UTC offset to apply to date parameter (IE: -0600) String next = "next_example"; // String | Next page of results token String previous = "previous_example"; // String | Previous page of results token + String projection = "DOCUMENT_ID_ONLY"; // String | Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to return only the documentId attribute. String limit = "10"; // String | Limit Results try { - GetDocumentsResponse result = apiInstance.getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, limit); + GetDocumentsResponse result = apiInstance.getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, projection, limit); System.out.println(result); } catch (ApiException e) { System.err.println("Exception when calling DocumentsApi#getDocuments"); @@ -1011,6 +1012,7 @@ public class Example { | **tz** | **String**| UTC offset to apply to date parameter (IE: -0600) | [optional] | | **next** | **String**| Next page of results token | [optional] | | **previous** | **String**| Previous page of results token | [optional] | +| **projection** | **String**| Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to return only the documentId attribute. | [optional] [enum: DOCUMENT_ID_ONLY] | | **limit** | **String**| Limit Results | [optional] [default to 10] | ### Return type diff --git a/docs/GetConfigurationResponse.md b/docs/GetConfigurationResponse.md index 50d873f6b..9cf85e545 100644 --- a/docs/GetConfigurationResponse.md +++ b/docs/GetConfigurationResponse.md @@ -12,6 +12,7 @@ |**maxDocuments** | **String** | Set Maximum number of Documents allowed | [optional] | |**maxWebhooks** | **String** | Set Maximum number of Webhooks allowed | [optional] | |**notificationEmail** | **String** | Email address to use for notifications (Must be verified identity created in AWS SES) | [optional] | +|**document** | [**DocumentConfig**](DocumentConfig.md) | | [optional] | |**ocr** | [**OcrConfig**](OcrConfig.md) | | [optional] | |**google** | [**GoogleConfig**](GoogleConfig.md) | | [optional] | |**docusign** | [**DocusignConfig**](DocusignConfig.md) | | [optional] | diff --git a/docs/SetDocumentMustRetainRequest.md b/docs/SetDocumentMustRetainRequest.md new file mode 100644 index 000000000..639356694 --- /dev/null +++ b/docs/SetDocumentMustRetainRequest.md @@ -0,0 +1,13 @@ + + +# SetDocumentMustRetainRequest + + +## Properties + +| Name | Type | Description | Notes | +|------------ | ------------- | ------------- | -------------| +|**mustRetain** | **Boolean** | Whether the document must be retained and protected from deletion. | | + + + diff --git a/docs/UpdateConfigurationRequest.md b/docs/UpdateConfigurationRequest.md index da7e045dd..523f92e35 100644 --- a/docs/UpdateConfigurationRequest.md +++ b/docs/UpdateConfigurationRequest.md @@ -12,6 +12,7 @@ |**maxDocuments** | **String** | Set Maximum number of Documents allowed | [optional] | |**maxWebhooks** | **String** | Set Maximum number of Webhooks allowed | [optional] | |**notificationEmail** | **String** | Email address to use for notifications | [optional] | +|**document** | [**DocumentConfig**](DocumentConfig.md) | | [optional] | |**ocr** | [**OcrConfig**](OcrConfig.md) | | [optional] | |**google** | [**GoogleConfig**](GoogleConfig.md) | | [optional] | |**docusign** | [**DocusignConfig**](DocusignConfig.md) | | [optional] | diff --git a/src/main/java/com/formkiq/client/api/AccessControlApi.java b/src/main/java/com/formkiq/client/api/AccessControlApi.java index c52fc46b2..1000e9545 100644 --- a/src/main/java/com/formkiq/client/api/AccessControlApi.java +++ b/src/main/java/com/formkiq/client/api/AccessControlApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/AdvancedDocumentSearchApi.java b/src/main/java/com/formkiq/client/api/AdvancedDocumentSearchApi.java index aec803cee..cba0f161e 100644 --- a/src/main/java/com/formkiq/client/api/AdvancedDocumentSearchApi.java +++ b/src/main/java/com/formkiq/client/api/AdvancedDocumentSearchApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/AttributesApi.java b/src/main/java/com/formkiq/client/api/AttributesApi.java index f9d662ec8..f064e66ab 100644 --- a/src/main/java/com/formkiq/client/api/AttributesApi.java +++ b/src/main/java/com/formkiq/client/api/AttributesApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/CaseManagementApi.java b/src/main/java/com/formkiq/client/api/CaseManagementApi.java index 0dfd67625..c38fcf8eb 100644 --- a/src/main/java/com/formkiq/client/api/CaseManagementApi.java +++ b/src/main/java/com/formkiq/client/api/CaseManagementApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/CustomIndexApi.java b/src/main/java/com/formkiq/client/api/CustomIndexApi.java index f72b87f24..00faac020 100644 --- a/src/main/java/com/formkiq/client/api/CustomIndexApi.java +++ b/src/main/java/com/formkiq/client/api/CustomIndexApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentActionsApi.java b/src/main/java/com/formkiq/client/api/DocumentActionsApi.java index 60fd97e24..73f300e9b 100644 --- a/src/main/java/com/formkiq/client/api/DocumentActionsApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentActionsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentAttributesApi.java b/src/main/java/com/formkiq/client/api/DocumentAttributesApi.java index c9b10e477..644818713 100644 --- a/src/main/java/com/formkiq/client/api/DocumentAttributesApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentAttributesApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentDataClassificationApi.java b/src/main/java/com/formkiq/client/api/DocumentDataClassificationApi.java index 241a6b70e..4bcb1828f 100644 --- a/src/main/java/com/formkiq/client/api/DocumentDataClassificationApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentDataClassificationApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentFoldersApi.java b/src/main/java/com/formkiq/client/api/DocumentFoldersApi.java index 5951a0d42..bd1b643cb 100644 --- a/src/main/java/com/formkiq/client/api/DocumentFoldersApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentFoldersApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentGenerationApi.java b/src/main/java/com/formkiq/client/api/DocumentGenerationApi.java index 2c0405536..7a6582165 100644 --- a/src/main/java/com/formkiq/client/api/DocumentGenerationApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentGenerationApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentOcrApi.java b/src/main/java/com/formkiq/client/api/DocumentOcrApi.java index 27b2edb7d..37aa2c4b2 100644 --- a/src/main/java/com/formkiq/client/api/DocumentOcrApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentOcrApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentSearchApi.java b/src/main/java/com/formkiq/client/api/DocumentSearchApi.java index cfee80191..97ddb540d 100644 --- a/src/main/java/com/formkiq/client/api/DocumentSearchApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentSearchApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentSharesApi.java b/src/main/java/com/formkiq/client/api/DocumentSharesApi.java index 9a51056d1..f6d191db3 100644 --- a/src/main/java/com/formkiq/client/api/DocumentSharesApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentSharesApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentTagsApi.java b/src/main/java/com/formkiq/client/api/DocumentTagsApi.java index a505de2ca..ac6fa12e9 100644 --- a/src/main/java/com/formkiq/client/api/DocumentTagsApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentTagsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentVersionsApi.java b/src/main/java/com/formkiq/client/api/DocumentVersionsApi.java index 3219a9060..be1c1389c 100644 --- a/src/main/java/com/formkiq/client/api/DocumentVersionsApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentVersionsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentWorkflowsApi.java b/src/main/java/com/formkiq/client/api/DocumentWorkflowsApi.java index f053e744b..be8de29fb 100644 --- a/src/main/java/com/formkiq/client/api/DocumentWorkflowsApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentWorkflowsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/DocumentsApi.java b/src/main/java/com/formkiq/client/api/DocumentsApi.java index a0dd7b0e5..d9de0b960 100644 --- a/src/main/java/com/formkiq/client/api/DocumentsApi.java +++ b/src/main/java/com/formkiq/client/api/DocumentsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -3045,6 +3045,8 @@ public okhttp3.Call getDocumentUrlAsync(@javax.annotation.Nonnull String documen * @param tz UTC offset to apply to date parameter (IE: -0600) (optional) * @param next Next page of results token (optional) * @param previous Previous page of results token (optional) + * @param projection Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to + * return only the documentId attribute. (optional) * @param limit Limit Results (optional, default to 10) * @param _callback Callback for upload/download progress * @return Call to execute @@ -3071,8 +3073,8 @@ public okhttp3.Call getDocumentsCall(@javax.annotation.Nullable String siteId, @javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date, @javax.annotation.Nullable String tz, @javax.annotation.Nullable String next, - @javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit, - final ApiCallback _callback) throws ApiException { + @javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection, + @javax.annotation.Nullable String limit, final ApiCallback _callback) throws ApiException { String basePath = null; // Operation Servers String[] localBasePaths = new String[] {}; @@ -3129,6 +3131,10 @@ public okhttp3.Call getDocumentsCall(@javax.annotation.Nullable String siteId, localVarQueryParams.addAll(localVarApiClient.parameterToPair("previous", previous)); } + if (projection != null) { + localVarQueryParams.addAll(localVarApiClient.parameterToPair("projection", projection)); + } + if (limit != null) { localVarQueryParams.addAll(localVarApiClient.parameterToPair("limit", limit)); } @@ -3157,10 +3163,10 @@ private okhttp3.Call getDocumentsValidateBeforeCall(@javax.annotation.Nullable S @javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date, @javax.annotation.Nullable String tz, @javax.annotation.Nullable String next, - @javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit, - final ApiCallback _callback) throws ApiException { + @javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection, + @javax.annotation.Nullable String limit, final ApiCallback _callback) throws ApiException { return getDocumentsCall(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, - limit, _callback); + projection, limit, _callback); } @@ -3176,6 +3182,8 @@ private okhttp3.Call getDocumentsValidateBeforeCall(@javax.annotation.Nullable S * @param tz UTC offset to apply to date parameter (IE: -0600) (optional) * @param next Next page of results token (optional) * @param previous Previous page of results token (optional) + * @param projection Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to + * return only the documentId attribute. (optional) * @param limit Limit Results (optional, default to 10) * @return GetDocumentsResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the @@ -3202,10 +3210,10 @@ public GetDocumentsResponse getDocuments(@javax.annotation.Nullable String siteI @javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date, @javax.annotation.Nullable String tz, @javax.annotation.Nullable String next, - @javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit) - throws ApiException { + @javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection, + @javax.annotation.Nullable String limit) throws ApiException { ApiResponse localVarResp = getDocumentsWithHttpInfo(siteId, actionStatus, - syncStatus, deleted, date, tz, next, previous, limit); + syncStatus, deleted, date, tz, next, previous, projection, limit); return localVarResp.getData(); } @@ -3221,6 +3229,8 @@ public GetDocumentsResponse getDocuments(@javax.annotation.Nullable String siteI * @param tz UTC offset to apply to date parameter (IE: -0600) (optional) * @param next Next page of results token (optional) * @param previous Previous page of results token (optional) + * @param projection Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to + * return only the documentId attribute. (optional) * @param limit Limit Results (optional, default to 10) * @return ApiResponse<GetDocumentsResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the @@ -3248,9 +3258,10 @@ public ApiResponse getDocumentsWithHttpInfo( @javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date, @javax.annotation.Nullable String tz, @javax.annotation.Nullable String next, @javax.annotation.Nullable String previous, - @javax.annotation.Nullable String limit) throws ApiException { + @javax.annotation.Nullable String projection, @javax.annotation.Nullable String limit) + throws ApiException { okhttp3.Call localVarCall = getDocumentsValidateBeforeCall(siteId, actionStatus, syncStatus, - deleted, date, tz, next, previous, limit, null); + deleted, date, tz, next, previous, projection, limit, null); Type localVarReturnType = new TypeToken() {}.getType(); return localVarApiClient.execute(localVarCall, localVarReturnType); } @@ -3267,6 +3278,8 @@ public ApiResponse getDocumentsWithHttpInfo( * @param tz UTC offset to apply to date parameter (IE: -0600) (optional) * @param next Next page of results token (optional) * @param previous Previous page of results token (optional) + * @param projection Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to + * return only the documentId attribute. (optional) * @param limit Limit Results (optional, default to 10) * @param _callback The callback to be executed when the API call finishes * @return The request call @@ -3293,11 +3306,12 @@ public okhttp3.Call getDocumentsAsync(@javax.annotation.Nullable String siteId, @javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date, @javax.annotation.Nullable String tz, @javax.annotation.Nullable String next, - @javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit, - final ApiCallback _callback) throws ApiException { + @javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection, + @javax.annotation.Nullable String limit, final ApiCallback _callback) + throws ApiException { okhttp3.Call localVarCall = getDocumentsValidateBeforeCall(siteId, actionStatus, syncStatus, - deleted, date, tz, next, previous, limit, _callback); + deleted, date, tz, next, previous, projection, limit, _callback); Type localVarReturnType = new TypeToken() {}.getType(); localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback); return localVarCall; diff --git a/src/main/java/com/formkiq/client/api/ESignatureApi.java b/src/main/java/com/formkiq/client/api/ESignatureApi.java index 4bbd4d8ba..5ddedceb0 100644 --- a/src/main/java/com/formkiq/client/api/ESignatureApi.java +++ b/src/main/java/com/formkiq/client/api/ESignatureApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/EntityApi.java b/src/main/java/com/formkiq/client/api/EntityApi.java index 5b5a507c5..8c80fe548 100644 --- a/src/main/java/com/formkiq/client/api/EntityApi.java +++ b/src/main/java/com/formkiq/client/api/EntityApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/ExamineObjectsApi.java b/src/main/java/com/formkiq/client/api/ExamineObjectsApi.java index 43f449ecd..1fb872946 100644 --- a/src/main/java/com/formkiq/client/api/ExamineObjectsApi.java +++ b/src/main/java/com/formkiq/client/api/ExamineObjectsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/GoogleIntegrationApi.java b/src/main/java/com/formkiq/client/api/GoogleIntegrationApi.java index ac143730b..4d762ed4a 100644 --- a/src/main/java/com/formkiq/client/api/GoogleIntegrationApi.java +++ b/src/main/java/com/formkiq/client/api/GoogleIntegrationApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/MalwareScanApi.java b/src/main/java/com/formkiq/client/api/MalwareScanApi.java index 66e29b936..d9323ecdb 100644 --- a/src/main/java/com/formkiq/client/api/MalwareScanApi.java +++ b/src/main/java/com/formkiq/client/api/MalwareScanApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/MappingsApi.java b/src/main/java/com/formkiq/client/api/MappingsApi.java index 50f4af692..73b265f4f 100644 --- a/src/main/java/com/formkiq/client/api/MappingsApi.java +++ b/src/main/java/com/formkiq/client/api/MappingsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/PublicApi.java b/src/main/java/com/formkiq/client/api/PublicApi.java index 68f4b2a85..5741a1bb8 100644 --- a/src/main/java/com/formkiq/client/api/PublicApi.java +++ b/src/main/java/com/formkiq/client/api/PublicApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/ReindexApi.java b/src/main/java/com/formkiq/client/api/ReindexApi.java index 5d83e79f8..0f8b7d914 100644 --- a/src/main/java/com/formkiq/client/api/ReindexApi.java +++ b/src/main/java/com/formkiq/client/api/ReindexApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/RulesetsApi.java b/src/main/java/com/formkiq/client/api/RulesetsApi.java index fee1276ad..8d2b6c76c 100644 --- a/src/main/java/com/formkiq/client/api/RulesetsApi.java +++ b/src/main/java/com/formkiq/client/api/RulesetsApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/SchemasApi.java b/src/main/java/com/formkiq/client/api/SchemasApi.java index 84d990b72..e8f56a966 100644 --- a/src/main/java/com/formkiq/client/api/SchemasApi.java +++ b/src/main/java/com/formkiq/client/api/SchemasApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/SystemManagementApi.java b/src/main/java/com/formkiq/client/api/SystemManagementApi.java index f85f216a3..f8094f561 100644 --- a/src/main/java/com/formkiq/client/api/SystemManagementApi.java +++ b/src/main/java/com/formkiq/client/api/SystemManagementApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/TagIndexApi.java b/src/main/java/com/formkiq/client/api/TagIndexApi.java index 655bc7c7f..6ea49153a 100644 --- a/src/main/java/com/formkiq/client/api/TagIndexApi.java +++ b/src/main/java/com/formkiq/client/api/TagIndexApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/UserActivitiesApi.java b/src/main/java/com/formkiq/client/api/UserActivitiesApi.java index 99db6492f..f05225949 100644 --- a/src/main/java/com/formkiq/client/api/UserActivitiesApi.java +++ b/src/main/java/com/formkiq/client/api/UserActivitiesApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/UserManagementApi.java b/src/main/java/com/formkiq/client/api/UserManagementApi.java index 19eddd5b7..46b6c2bf1 100644 --- a/src/main/java/com/formkiq/client/api/UserManagementApi.java +++ b/src/main/java/com/formkiq/client/api/UserManagementApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/api/WebhooksApi.java b/src/main/java/com/formkiq/client/api/WebhooksApi.java index a1e570fd7..2506f2764 100644 --- a/src/main/java/com/formkiq/client/api/WebhooksApi.java +++ b/src/main/java/com/formkiq/client/api/WebhooksApi.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/ApiCallback.java b/src/main/java/com/formkiq/client/invoker/ApiCallback.java index 07ed0410a..5c4a3e1f8 100644 --- a/src/main/java/com/formkiq/client/invoker/ApiCallback.java +++ b/src/main/java/com/formkiq/client/invoker/ApiCallback.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/ApiClient.java b/src/main/java/com/formkiq/client/invoker/ApiClient.java index 19b435611..858d98ab8 100644 --- a/src/main/java/com/formkiq/client/invoker/ApiClient.java +++ b/src/main/java/com/formkiq/client/invoker/ApiClient.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -147,7 +147,7 @@ protected void init() { json = new JSON(); // Set default User-Agent. - setUserAgent("OpenAPI-Generator/1.18.0/java"); + setUserAgent("OpenAPI-Generator/1.18.1/java"); authentications = new HashMap(); } diff --git a/src/main/java/com/formkiq/client/invoker/ApiException.java b/src/main/java/com/formkiq/client/invoker/ApiException.java index e73fe4a7a..33c0e2d7f 100644 --- a/src/main/java/com/formkiq/client/invoker/ApiException.java +++ b/src/main/java/com/formkiq/client/invoker/ApiException.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -32,7 +32,7 @@ */ @SuppressWarnings("serial") @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ApiException extends Exception { private static final long serialVersionUID = 1L; diff --git a/src/main/java/com/formkiq/client/invoker/ApiResponse.java b/src/main/java/com/formkiq/client/invoker/ApiResponse.java index 5efdbc3e0..ab2e4a498 100644 --- a/src/main/java/com/formkiq/client/invoker/ApiResponse.java +++ b/src/main/java/com/formkiq/client/invoker/ApiResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/Configuration.java b/src/main/java/com/formkiq/client/invoker/Configuration.java index ee91dfdf2..309cd4c76 100644 --- a/src/main/java/com/formkiq/client/invoker/Configuration.java +++ b/src/main/java/com/formkiq/client/invoker/Configuration.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -25,10 +25,10 @@ import java.util.function.Supplier; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Configuration { - public static final String VERSION = "1.18.0"; + public static final String VERSION = "1.18.1"; private static final AtomicReference defaultApiClient = new AtomicReference<>(); private static volatile Supplier apiClientFactory = ApiClient::new; diff --git a/src/main/java/com/formkiq/client/invoker/GzipRequestInterceptor.java b/src/main/java/com/formkiq/client/invoker/GzipRequestInterceptor.java index 1f2caebed..e65202856 100644 --- a/src/main/java/com/formkiq/client/invoker/GzipRequestInterceptor.java +++ b/src/main/java/com/formkiq/client/invoker/GzipRequestInterceptor.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/JSON.java b/src/main/java/com/formkiq/client/invoker/JSON.java index a8714a1d2..8fb6423fa 100644 --- a/src/main/java/com/formkiq/client/invoker/JSON.java +++ b/src/main/java/com/formkiq/client/invoker/JSON.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -373,6 +373,10 @@ private static Class getClassByDiscriminator(Map classByDiscriminatorValue, new com.formkiq.client.model.DocumentAction.CustomTypeAdapterFactory()); gsonBuilder.registerTypeAdapterFactory( new com.formkiq.client.model.DocumentAttribute.CustomTypeAdapterFactory()); + gsonBuilder.registerTypeAdapterFactory( + new com.formkiq.client.model.DocumentConfig.CustomTypeAdapterFactory()); + gsonBuilder.registerTypeAdapterFactory( + new com.formkiq.client.model.DocumentConfigContentTypes.CustomTypeAdapterFactory()); gsonBuilder.registerTypeAdapterFactory( new com.formkiq.client.model.DocumentFulltextAttribute.CustomTypeAdapterFactory()); gsonBuilder.registerTypeAdapterFactory( diff --git a/src/main/java/com/formkiq/client/invoker/Pair.java b/src/main/java/com/formkiq/client/invoker/Pair.java index a13f4452b..c45563ef9 100644 --- a/src/main/java/com/formkiq/client/invoker/Pair.java +++ b/src/main/java/com/formkiq/client/invoker/Pair.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -21,7 +21,7 @@ package com.formkiq.client.invoker; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Pair { private final String name; diff --git a/src/main/java/com/formkiq/client/invoker/ProgressRequestBody.java b/src/main/java/com/formkiq/client/invoker/ProgressRequestBody.java index 488782251..82ed070fc 100644 --- a/src/main/java/com/formkiq/client/invoker/ProgressRequestBody.java +++ b/src/main/java/com/formkiq/client/invoker/ProgressRequestBody.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/ProgressResponseBody.java b/src/main/java/com/formkiq/client/invoker/ProgressResponseBody.java index ca5f3b582..52a2ff7b4 100644 --- a/src/main/java/com/formkiq/client/invoker/ProgressResponseBody.java +++ b/src/main/java/com/formkiq/client/invoker/ProgressResponseBody.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/ServerConfiguration.java b/src/main/java/com/formkiq/client/invoker/ServerConfiguration.java index 4df362c59..81ff86d9f 100644 --- a/src/main/java/com/formkiq/client/invoker/ServerConfiguration.java +++ b/src/main/java/com/formkiq/client/invoker/ServerConfiguration.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -26,7 +26,7 @@ * Representing a Server configuration. */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ServerConfiguration { public String URL; diff --git a/src/main/java/com/formkiq/client/invoker/ServerVariable.java b/src/main/java/com/formkiq/client/invoker/ServerVariable.java index 0d1233ffd..99b2ba979 100644 --- a/src/main/java/com/formkiq/client/invoker/ServerVariable.java +++ b/src/main/java/com/formkiq/client/invoker/ServerVariable.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -26,7 +26,7 @@ * Representing a Server Variable for server URL template substitution. */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ServerVariable { public String description; diff --git a/src/main/java/com/formkiq/client/invoker/StringUtil.java b/src/main/java/com/formkiq/client/invoker/StringUtil.java index 9779b6c8f..61a39fbe8 100644 --- a/src/main/java/com/formkiq/client/invoker/StringUtil.java +++ b/src/main/java/com/formkiq/client/invoker/StringUtil.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -24,7 +24,7 @@ import java.util.Iterator; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class StringUtil { /** diff --git a/src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java b/src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java index ae8b78b6e..bab94f448 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -46,7 +46,7 @@ import okio.Buffer; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AWS4Auth implements Authentication { diff --git a/src/main/java/com/formkiq/client/invoker/auth/ApiKeyAuth.java b/src/main/java/com/formkiq/client/invoker/auth/ApiKeyAuth.java index 731296f85..903a26466 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/ApiKeyAuth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/ApiKeyAuth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -28,7 +28,7 @@ import java.util.List; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ApiKeyAuth implements Authentication { private final String location; diff --git a/src/main/java/com/formkiq/client/invoker/auth/Authentication.java b/src/main/java/com/formkiq/client/invoker/auth/Authentication.java index ccb4f9aa7..1ac68b33e 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/Authentication.java +++ b/src/main/java/com/formkiq/client/invoker/auth/Authentication.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -28,7 +28,7 @@ import java.util.List; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public interface Authentication { /** diff --git a/src/main/java/com/formkiq/client/invoker/auth/HttpBasicAuth.java b/src/main/java/com/formkiq/client/invoker/auth/HttpBasicAuth.java index 61d846a6d..656befa91 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/HttpBasicAuth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/HttpBasicAuth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/auth/HttpBearerAuth.java b/src/main/java/com/formkiq/client/invoker/auth/HttpBearerAuth.java index c4b858731..af47985a8 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/HttpBearerAuth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/HttpBearerAuth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -30,7 +30,7 @@ import java.util.function.Supplier; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class HttpBearerAuth implements Authentication { private final String scheme; diff --git a/src/main/java/com/formkiq/client/invoker/auth/OAuth.java b/src/main/java/com/formkiq/client/invoker/auth/OAuth.java index ad1fefa03..71f92ee9e 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/OAuth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/OAuth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -28,7 +28,7 @@ import java.util.List; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OAuth implements Authentication { private String accessToken; diff --git a/src/main/java/com/formkiq/client/invoker/auth/OAuthFlow.java b/src/main/java/com/formkiq/client/invoker/auth/OAuthFlow.java index 6091d04de..d48abf767 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/OAuthFlow.java +++ b/src/main/java/com/formkiq/client/invoker/auth/OAuthFlow.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -24,7 +24,7 @@ * OAuth flows that are supported by this client */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public enum OAuthFlow { ACCESS_CODE, // called authorizationCode in OpenAPI 3.0 diff --git a/src/main/java/com/formkiq/client/invoker/auth/OAuthOkHttpClient.java b/src/main/java/com/formkiq/client/invoker/auth/OAuthOkHttpClient.java index a6abccfe1..7fe34fc26 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/OAuthOkHttpClient.java +++ b/src/main/java/com/formkiq/client/invoker/auth/OAuthOkHttpClient.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/invoker/auth/RetryingOAuth.java b/src/main/java/com/formkiq/client/invoker/auth/RetryingOAuth.java index a6abccfe1..7fe34fc26 100644 --- a/src/main/java/com/formkiq/client/invoker/auth/RetryingOAuth.java +++ b/src/main/java/com/formkiq/client/invoker/auth/RetryingOAuth.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/AbstractOpenApiSchema.java b/src/main/java/com/formkiq/client/model/AbstractOpenApiSchema.java index 1a4a6ac90..1e0109e48 100644 --- a/src/main/java/com/formkiq/client/model/AbstractOpenApiSchema.java +++ b/src/main/java/com/formkiq/client/model/AbstractOpenApiSchema.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -29,7 +29,7 @@ * Abstract class for oneOf,anyOf schemas defined in OpenAPI spec */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public abstract class AbstractOpenApiSchema { diff --git a/src/main/java/com/formkiq/client/model/Activity.java b/src/main/java/com/formkiq/client/model/Activity.java index cafd88cee..147d7e6c3 100644 --- a/src/main/java/com/formkiq/client/model/Activity.java +++ b/src/main/java/com/formkiq/client/model/Activity.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * Activity */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Activity { public static final String SERIALIZED_NAME_RESOURCE = "resource"; diff --git a/src/main/java/com/formkiq/client/model/ActivityStatus.java b/src/main/java/com/formkiq/client/model/ActivityStatus.java index 6ff5a593b..0d0da8e71 100644 --- a/src/main/java/com/formkiq/client/model/ActivityStatus.java +++ b/src/main/java/com/formkiq/client/model/ActivityStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/AddAction.java b/src/main/java/com/formkiq/client/model/AddAction.java index a5e00c489..c8c493b3b 100644 --- a/src/main/java/com/formkiq/client/model/AddAction.java +++ b/src/main/java/com/formkiq/client/model/AddAction.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddAction */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddAction { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/AddActionParameters.java b/src/main/java/com/formkiq/client/model/AddActionParameters.java index 5b8572544..71e27a51a 100644 --- a/src/main/java/com/formkiq/client/model/AddActionParameters.java +++ b/src/main/java/com/formkiq/client/model/AddActionParameters.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddActionParameters */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddActionParameters { public static final String SERIALIZED_NAME_OCR_TEXTRACT_QUERIES = "ocrTextractQueries"; diff --git a/src/main/java/com/formkiq/client/model/AddApiKeyRequest.java b/src/main/java/com/formkiq/client/model/AddApiKeyRequest.java index 34aef89df..81b01903e 100644 --- a/src/main/java/com/formkiq/client/model/AddApiKeyRequest.java +++ b/src/main/java/com/formkiq/client/model/AddApiKeyRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -22,6 +22,7 @@ import java.util.Objects; import java.util.Locale; +import com.formkiq.client.model.ApiKeyPermission; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -60,7 +61,7 @@ * AddApiKeyRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddApiKeyRequest { public static final String SERIALIZED_NAME_NAME = "name"; @@ -68,67 +69,15 @@ public class AddApiKeyRequest { @javax.annotation.Nullable private String name; - /** - * Gets or Sets permissions - */ - @JsonAdapter(PermissionsEnum.Adapter.class) - public enum PermissionsEnum { - READ("READ"), - - WRITE("WRITE"), - - DELETE("DELETE"), - - GOVERN("GOVERN"); - - private String value; - - PermissionsEnum(String value) { - this.value = value; - } - - public String getValue() { - return value; - } - - @Override - public String toString() { - return String.valueOf(value); - } - - public static PermissionsEnum fromValue(String value) { - for (PermissionsEnum b : PermissionsEnum.values()) { - if (b.value.equals(value)) { - return b; - } - } - throw new IllegalArgumentException("Unexpected value '" + value + "'"); - } - - public static class Adapter extends TypeAdapter { - @Override - public void write(final JsonWriter jsonWriter, final PermissionsEnum enumeration) - throws IOException { - jsonWriter.value(enumeration.getValue()); - } - - @Override - public PermissionsEnum read(final JsonReader jsonReader) throws IOException { - String value = jsonReader.nextString(); - return PermissionsEnum.fromValue(value); - } - } - - public static void validateJsonElement(JsonElement jsonElement) throws IOException { - String value = jsonElement.getAsString(); - PermissionsEnum.fromValue(value); - } - } + public static final String SERIALIZED_NAME_GROUPS = "groups"; + @SerializedName(SERIALIZED_NAME_GROUPS) + @javax.annotation.Nullable + private List groups = new ArrayList<>(); public static final String SERIALIZED_NAME_PERMISSIONS = "permissions"; @SerializedName(SERIALIZED_NAME_PERMISSIONS) @javax.annotation.Nullable - private List permissions = new ArrayList<>(); + private List permissions = new ArrayList<>(); public AddApiKeyRequest() {} @@ -152,13 +101,41 @@ public void setName(@javax.annotation.Nullable String name) { } + public AddApiKeyRequest groups(@javax.annotation.Nullable List groups) { + this.groups = groups; + return this; + } + + public AddApiKeyRequest addGroupsItem(String groupsItem) { + if (this.groups == null) { + this.groups = new ArrayList<>(); + } + this.groups.add(groupsItem); + return this; + } + + /** + * Optional list of groups to add as custom claims to API Key + * + * @return groups + */ + @javax.annotation.Nullable + public List getGroups() { + return groups; + } + + public void setGroups(@javax.annotation.Nullable List groups) { + this.groups = groups; + } + + public AddApiKeyRequest permissions( - @javax.annotation.Nullable List permissions) { + @javax.annotation.Nullable List permissions) { this.permissions = permissions; return this; } - public AddApiKeyRequest addPermissionsItem(PermissionsEnum permissionsItem) { + public AddApiKeyRequest addPermissionsItem(ApiKeyPermission permissionsItem) { if (this.permissions == null) { this.permissions = new ArrayList<>(); } @@ -167,16 +144,16 @@ public AddApiKeyRequest addPermissionsItem(PermissionsEnum permissionsItem) { } /** - * List of permissions + * Get permissions * * @return permissions */ @javax.annotation.Nullable - public List getPermissions() { + public List getPermissions() { return permissions; } - public void setPermissions(@javax.annotation.Nullable List permissions) { + public void setPermissions(@javax.annotation.Nullable List permissions) { this.permissions = permissions; } @@ -192,12 +169,13 @@ public boolean equals(Object o) { } AddApiKeyRequest addApiKeyRequest = (AddApiKeyRequest) o; return Objects.equals(this.name, addApiKeyRequest.name) + && Objects.equals(this.groups, addApiKeyRequest.groups) && Objects.equals(this.permissions, addApiKeyRequest.permissions); } @Override public int hashCode() { - return Objects.hash(name, permissions); + return Objects.hash(name, groups, permissions); } @Override @@ -205,6 +183,7 @@ public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class AddApiKeyRequest {\n"); sb.append(" name: ").append(toIndentedString(name)).append("\n"); + sb.append(" groups: ").append(toIndentedString(groups)).append("\n"); sb.append(" permissions: ").append(toIndentedString(permissions)).append("\n"); sb.append("}"); return sb.toString(); @@ -226,7 +205,7 @@ private String toIndentedString(Object o) { static { // a set of all properties/fields (JSON key names) - openapiFields = new HashSet(Arrays.asList("name", "permissions")); + openapiFields = new HashSet(Arrays.asList("name", "groups", "permissions")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(0); @@ -265,6 +244,13 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti jsonObj.get("name").toString())); } // ensure the optional json data is an array if present + if (jsonObj.get("groups") != null && !jsonObj.get("groups").isJsonNull() + && !jsonObj.get("groups").isJsonArray()) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "Expected the field `groups` to be an array in the JSON string but got `%s`", + jsonObj.get("groups").toString())); + } + // ensure the optional json data is an array if present if (jsonObj.get("permissions") != null && !jsonObj.get("permissions").isJsonNull() && !jsonObj.get("permissions").isJsonArray()) { throw new IllegalArgumentException(String.format(Locale.ROOT, diff --git a/src/main/java/com/formkiq/client/model/AddApiKeyResponse.java b/src/main/java/com/formkiq/client/model/AddApiKeyResponse.java index ca6038781..465bf2e56 100644 --- a/src/main/java/com/formkiq/client/model/AddApiKeyResponse.java +++ b/src/main/java/com/formkiq/client/model/AddApiKeyResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddApiKeyResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddApiKeyResponse { public static final String SERIALIZED_NAME_API_KEY = "apiKey"; diff --git a/src/main/java/com/formkiq/client/model/AddAttribute.java b/src/main/java/com/formkiq/client/model/AddAttribute.java index 542fb992b..543729b91 100644 --- a/src/main/java/com/formkiq/client/model/AddAttribute.java +++ b/src/main/java/com/formkiq/client/model/AddAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddAttributeRequest.java b/src/main/java/com/formkiq/client/model/AddAttributeRequest.java index dfec4fc0d..f3c324cf6 100644 --- a/src/main/java/com/formkiq/client/model/AddAttributeRequest.java +++ b/src/main/java/com/formkiq/client/model/AddAttributeRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddAttributeRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddAttributeRequest { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/AddAttributeSchemaOptional.java b/src/main/java/com/formkiq/client/model/AddAttributeSchemaOptional.java index 9a592cc18..cccc6d3ff 100644 --- a/src/main/java/com/formkiq/client/model/AddAttributeSchemaOptional.java +++ b/src/main/java/com/formkiq/client/model/AddAttributeSchemaOptional.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddAttributeSchemaOptional */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddAttributeSchemaOptional { public static final String SERIALIZED_NAME_MIN_NUMBER_OF_VALUES = "minNumberOfValues"; diff --git a/src/main/java/com/formkiq/client/model/AddAttributeSchemaRequired.java b/src/main/java/com/formkiq/client/model/AddAttributeSchemaRequired.java index 53158bbc6..ccbf6311f 100644 --- a/src/main/java/com/formkiq/client/model/AddAttributeSchemaRequired.java +++ b/src/main/java/com/formkiq/client/model/AddAttributeSchemaRequired.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddAttributeSchemaRequired */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddAttributeSchemaRequired { public static final String SERIALIZED_NAME_MIN_NUMBER_OF_VALUES = "minNumberOfValues"; diff --git a/src/main/java/com/formkiq/client/model/AddCase.java b/src/main/java/com/formkiq/client/model/AddCase.java index 73a75506a..8ea7cd9b3 100644 --- a/src/main/java/com/formkiq/client/model/AddCase.java +++ b/src/main/java/com/formkiq/client/model/AddCase.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * AddCase */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddCase { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddCaseRequest.java b/src/main/java/com/formkiq/client/model/AddCaseRequest.java index 769a01c53..b7625c6df 100644 --- a/src/main/java/com/formkiq/client/model/AddCaseRequest.java +++ b/src/main/java/com/formkiq/client/model/AddCaseRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddCaseRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddCaseRequest { public static final String SERIALIZED_NAME_CASE = "case"; diff --git a/src/main/java/com/formkiq/client/model/AddCaseResponse.java b/src/main/java/com/formkiq/client/model/AddCaseResponse.java index 19a9313cc..9eb861e73 100644 --- a/src/main/java/com/formkiq/client/model/AddCaseResponse.java +++ b/src/main/java/com/formkiq/client/model/AddCaseResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddCaseResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddCaseResponse { public static final String SERIALIZED_NAME_CASE_ID = "caseId"; diff --git a/src/main/java/com/formkiq/client/model/AddChildDocument.java b/src/main/java/com/formkiq/client/model/AddChildDocument.java index 3f3235224..476414341 100644 --- a/src/main/java/com/formkiq/client/model/AddChildDocument.java +++ b/src/main/java/com/formkiq/client/model/AddChildDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * List of related documents */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddChildDocument { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/AddChildDocumentResponse.java b/src/main/java/com/formkiq/client/model/AddChildDocumentResponse.java index bdb7bd742..385eb8c17 100644 --- a/src/main/java/com/formkiq/client/model/AddChildDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/AddChildDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddChildDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddChildDocumentResponse { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddClassification.java b/src/main/java/com/formkiq/client/model/AddClassification.java index d2d386ffb..eca7d88f3 100644 --- a/src/main/java/com/formkiq/client/model/AddClassification.java +++ b/src/main/java/com/formkiq/client/model/AddClassification.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddClassification */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddClassification { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddClassificationRequest.java b/src/main/java/com/formkiq/client/model/AddClassificationRequest.java index c40ef6214..ebbb23d14 100644 --- a/src/main/java/com/formkiq/client/model/AddClassificationRequest.java +++ b/src/main/java/com/formkiq/client/model/AddClassificationRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddClassificationRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddClassificationRequest { public static final String SERIALIZED_NAME_CLASSIFICATION = "classification"; diff --git a/src/main/java/com/formkiq/client/model/AddClassificationResponse.java b/src/main/java/com/formkiq/client/model/AddClassificationResponse.java index 5370bf733..e6664370e 100644 --- a/src/main/java/com/formkiq/client/model/AddClassificationResponse.java +++ b/src/main/java/com/formkiq/client/model/AddClassificationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddClassificationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddClassificationResponse { public static final String SERIALIZED_NAME_CLASSIFICATION_ID = "classificationId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentActionsRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentActionsRequest.java index 054bd501b..9afc29a67 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentActionsRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentActionsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddDocumentActionsRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentActionsRequest { public static final String SERIALIZED_NAME_ACTIONS = "actions"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentActionsResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentActionsResponse.java index b0c412cb3..d664bedd7 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentActionsResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentActionsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentActionsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentActionsResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentActionsRetryResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentActionsRetryResponse.java index 2b4a3ecb5..6cfbdfe7d 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentActionsRetryResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentActionsRetryResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentActionsRetryResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentActionsRetryResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttribute.java b/src/main/java/com/formkiq/client/model/AddDocumentAttribute.java index c9a004e40..919a14490 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttribute.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -76,7 +76,7 @@ import com.formkiq.client.invoker.JSON; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttribute extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(AddDocumentAttribute.class.getName()); diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributeClassification.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributeClassification.java index 51d642ed9..2994efcd8 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributeClassification.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributeClassification.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Document Classification */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributeClassification { public static final String SERIALIZED_NAME_CLASSIFICATION_ID = "classificationId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributeEntity.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributeEntity.java index 817156617..bd32ebdef 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributeEntity.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributeEntity.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Document Entity Attribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributeEntity { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributeRelationship.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributeRelationship.java index a59139bd0..1dfe65c8b 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributeRelationship.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributeRelationship.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Document Relationship */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributeRelationship { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributeStandard.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributeStandard.java index 30445ecdc..3d4e09fe7 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributeStandard.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributeStandard.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Document Attribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributeStandard { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributeValue.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributeValue.java index 8196866c2..0103f2fa7 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributeValue.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributeValue.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Document Attribute Value */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributeValue { public static final String SERIALIZED_NAME_STRING_VALUE = "stringValue"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentAttributesRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentAttributesRequest.java index 6ad742b1d..57143b033 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentAttributesRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentAttributesRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Add List of document attributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentAttributesRequest { public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentFulltextRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentFulltextRequest.java index 070a5e59c..78c49018f 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentFulltextRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentFulltextRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * AddDocumentFulltextRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentFulltextRequest { public static final String SERIALIZED_NAME_CONTENT_TYPE = "contentType"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentFulltextResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentFulltextResponse.java index a10a49f06..afe3d3068 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentFulltextResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentGenerateRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentGenerateRequest.java index 608d114c1..fc4163330 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentGenerateRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentGenerateRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * AddDocumentGenerateRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentGenerateRequest { public static final String SERIALIZED_NAME_LOCALE = "locale"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentGenerateResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentGenerateResponse.java index cc602cede..7bb2fa754 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentGenerateResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentGenerateResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentGenerateResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentGenerateResponse { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentMetadata.java b/src/main/java/com/formkiq/client/model/AddDocumentMetadata.java index ed1d81627..fa7e29ec9 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentMetadata.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentMetadata.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Document Metadata (use either 'value' or 'values' not both) */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentMetadata { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentOcrRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentOcrRequest.java index c84f1a48f..d2bde64c0 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentOcrRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentOcrRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddDocumentOcrRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentOcrRequest { public static final String SERIALIZED_NAME_TEXTRACT_QUERIES = "textractQueries"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentOcrResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentOcrResponse.java index 84c4887d9..d303044ec 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentOcrResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentOcrResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentOcrResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentOcrResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentRequest.java index 4ef21c6a8..d5b0e554f 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * AddDocumentRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentRequest { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentResponse.java index 500688a91..a33729649 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentResponse { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentSync.java b/src/main/java/com/formkiq/client/model/AddDocumentSync.java index 87f867dee..83cfb30dd 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentSync.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentSync.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddDocumentSync */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentSync { public static final String SERIALIZED_NAME_SERVICE = "service"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentSyncRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentSyncRequest.java index 8539aebb9..27d53b88f 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentSyncRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentSyncRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddDocumentSyncRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentSyncRequest { public static final String SERIALIZED_NAME_SYNC = "sync"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentSyncService.java b/src/main/java/com/formkiq/client/model/AddDocumentSyncService.java index dc9bf1e73..69d1b2cde 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentSyncService.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentSyncService.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/AddDocumentTag.java b/src/main/java/com/formkiq/client/model/AddDocumentTag.java index 6c07c06b6..e50b1e018 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentTag.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * List of Document Tags (use either 'value' or 'values' not both) */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentTag { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentTagsRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentTagsRequest.java index d3da02414..cdd0edd0d 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentTagsRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentTagsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Add List of document tags */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentTagsRequest { public static final String SERIALIZED_NAME_TAGS = "tags"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentUploadRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentUploadRequest.java index 91d0c07dd..f5f563dae 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentUploadRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentUploadRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * AddDocumentUploadRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentUploadRequest { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequest.java index 377372104..3b0f319db 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentWorkflowDecisionsRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentWorkflowDecisionsRequest { public static final String SERIALIZED_NAME_STEP_ID = "stepId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponse.java index 5959e0b80..90d5482af 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentWorkflowDecisionsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentWorkflowDecisionsResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowRequest.java b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowRequest.java index b13062fe3..6771b7a1d 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentWorkflowRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentWorkflowRequest { public static final String SERIALIZED_NAME_WORKFLOW_ID = "workflowId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowResponse.java b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowResponse.java index f87d123be..f36117a46 100644 --- a/src/main/java/com/formkiq/client/model/AddDocumentWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocumentWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocumentWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocumentWorkflowResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesRequest.java b/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesRequest.java index c62f52659..08b141f3c 100644 --- a/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * AddDocusignEnvelopesRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocusignEnvelopesRequest { public static final String SERIALIZED_NAME_EMAIL_SUBJECT = "emailSubject"; diff --git a/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesResponse.java b/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesResponse.java index a119d49a1..eaee3b144 100644 --- a/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocusignEnvelopesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocusignEnvelopesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocusignEnvelopesResponse { public static final String SERIALIZED_NAME_ENVELOPE_ID = "envelopeId"; diff --git a/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewRequest.java b/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewRequest.java index b64ca40cd..0ab314581 100644 --- a/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewRequest.java +++ b/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddDocusignRecipientViewRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocusignRecipientViewRequest { public static final String SERIALIZED_NAME_ENVIRONMENT = "environment"; diff --git a/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewResponse.java b/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewResponse.java index 3e584d2cd..12457468f 100644 --- a/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewResponse.java +++ b/src/main/java/com/formkiq/client/model/AddDocusignRecipientViewResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddDocusignRecipientViewResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddDocusignRecipientViewResponse { public static final String SERIALIZED_NAME_VIEW_URL = "viewUrl"; diff --git a/src/main/java/com/formkiq/client/model/AddEntity.java b/src/main/java/com/formkiq/client/model/AddEntity.java index 44f00e0ba..e6a597ec5 100644 --- a/src/main/java/com/formkiq/client/model/AddEntity.java +++ b/src/main/java/com/formkiq/client/model/AddEntity.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddEntity */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntity { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityAttribute.java b/src/main/java/com/formkiq/client/model/AddEntityAttribute.java index a6f0dcbda..8a8a3985d 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityAttribute.java +++ b/src/main/java/com/formkiq/client/model/AddEntityAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddEntityAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityRequest.java b/src/main/java/com/formkiq/client/model/AddEntityRequest.java index 26c455669..613e2c0ad 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityRequest.java +++ b/src/main/java/com/formkiq/client/model/AddEntityRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddEntityRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityRequest { public static final String SERIALIZED_NAME_ENTITY = "entity"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityResponse.java b/src/main/java/com/formkiq/client/model/AddEntityResponse.java index a56fa5d45..00ba30b6a 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityResponse.java +++ b/src/main/java/com/formkiq/client/model/AddEntityResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddEntityResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityResponse { public static final String SERIALIZED_NAME_ENTITY_ID = "entityId"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityType.java b/src/main/java/com/formkiq/client/model/AddEntityType.java index b720e6ec7..d70505119 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityType.java +++ b/src/main/java/com/formkiq/client/model/AddEntityType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddEntityType */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityType { public static final String SERIALIZED_NAME_NAMESPACE = "namespace"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityTypeRequest.java b/src/main/java/com/formkiq/client/model/AddEntityTypeRequest.java index 7f4d2b3a7..29bb7df28 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityTypeRequest.java +++ b/src/main/java/com/formkiq/client/model/AddEntityTypeRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddEntityTypeRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityTypeRequest { public static final String SERIALIZED_NAME_ENTITY_TYPE = "entityType"; diff --git a/src/main/java/com/formkiq/client/model/AddEntityTypeResponse.java b/src/main/java/com/formkiq/client/model/AddEntityTypeResponse.java index 8e0802181..9a38a294a 100644 --- a/src/main/java/com/formkiq/client/model/AddEntityTypeResponse.java +++ b/src/main/java/com/formkiq/client/model/AddEntityTypeResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddEntityTypeResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddEntityTypeResponse { public static final String SERIALIZED_NAME_ENTITY_TYPE_ID = "entityTypeId"; diff --git a/src/main/java/com/formkiq/client/model/AddFolderPermission.java b/src/main/java/com/formkiq/client/model/AddFolderPermission.java index 5f9a9ed2a..c8224021d 100644 --- a/src/main/java/com/formkiq/client/model/AddFolderPermission.java +++ b/src/main/java/com/formkiq/client/model/AddFolderPermission.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddFolderPermission */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddFolderPermission { public static final String SERIALIZED_NAME_ROLE_NAME = "roleName"; diff --git a/src/main/java/com/formkiq/client/model/AddFolderRequest.java b/src/main/java/com/formkiq/client/model/AddFolderRequest.java index b5aa7c672..fe6bae383 100644 --- a/src/main/java/com/formkiq/client/model/AddFolderRequest.java +++ b/src/main/java/com/formkiq/client/model/AddFolderRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddFolderRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddFolderRequest { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/AddFolderResponse.java b/src/main/java/com/formkiq/client/model/AddFolderResponse.java index d7186479f..a263b8986 100644 --- a/src/main/java/com/formkiq/client/model/AddFolderResponse.java +++ b/src/main/java/com/formkiq/client/model/AddFolderResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddFolderResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddFolderResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddFolderShareRequest.java b/src/main/java/com/formkiq/client/model/AddFolderShareRequest.java index 02a4a211b..2347e9b1c 100644 --- a/src/main/java/com/formkiq/client/model/AddFolderShareRequest.java +++ b/src/main/java/com/formkiq/client/model/AddFolderShareRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddFolderShareRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddFolderShareRequest { public static final String SERIALIZED_NAME_SHARE = "share"; diff --git a/src/main/java/com/formkiq/client/model/AddFolderShareResponse.java b/src/main/java/com/formkiq/client/model/AddFolderShareResponse.java index 8e9eefb9a..025203c5e 100644 --- a/src/main/java/com/formkiq/client/model/AddFolderShareResponse.java +++ b/src/main/java/com/formkiq/client/model/AddFolderShareResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddFolderShareResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddFolderShareResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportRequest.java b/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportRequest.java index 91855ee45..04501db67 100644 --- a/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportRequest.java +++ b/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddGoogleDocumentExportRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddGoogleDocumentExportRequest { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportResponse.java b/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportResponse.java index 5991a2a33..427593014 100644 --- a/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportResponse.java +++ b/src/main/java/com/formkiq/client/model/AddGoogleDocumentExportResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddGoogleDocumentExportResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddGoogleDocumentExportResponse { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/AddGroup.java b/src/main/java/com/formkiq/client/model/AddGroup.java index deb5a6983..90b67cc33 100644 --- a/src/main/java/com/formkiq/client/model/AddGroup.java +++ b/src/main/java/com/formkiq/client/model/AddGroup.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddGroup */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddGroup { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddGroupRequest.java b/src/main/java/com/formkiq/client/model/AddGroupRequest.java index b6d9707fa..278da8b12 100644 --- a/src/main/java/com/formkiq/client/model/AddGroupRequest.java +++ b/src/main/java/com/formkiq/client/model/AddGroupRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddGroupRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddGroupRequest { public static final String SERIALIZED_NAME_GROUP = "group"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleRequest.java b/src/main/java/com/formkiq/client/model/AddLocaleRequest.java index d223d18aa..5540fca42 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleRequest.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddLocaleRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleRequest { public static final String SERIALIZED_NAME_LOCALE = "locale"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleResourceClassificationItem.java b/src/main/java/com/formkiq/client/model/AddLocaleResourceClassificationItem.java index a0e18b6e7..9b89622a4 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleResourceClassificationItem.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleResourceClassificationItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddLocaleResourceClassificationItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleResourceClassificationItem { public static final String SERIALIZED_NAME_ITEM_TYPE = "itemType"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleResourceInterfaceItem.java b/src/main/java/com/formkiq/client/model/AddLocaleResourceInterfaceItem.java index 88a22b4e3..503c8468e 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleResourceInterfaceItem.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleResourceInterfaceItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddLocaleResourceInterfaceItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleResourceInterfaceItem { public static final String SERIALIZED_NAME_ITEM_TYPE = "itemType"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleResourceItemRequest.java b/src/main/java/com/formkiq/client/model/AddLocaleResourceItemRequest.java index 7313f331f..7144c58d8 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleResourceItemRequest.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleResourceItemRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddLocaleResourceItemRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleResourceItemRequest { public static final String SERIALIZED_NAME_RESOURCE_ITEM = "resourceItem"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleResourceItemResponse.java b/src/main/java/com/formkiq/client/model/AddLocaleResourceItemResponse.java index 6c6737b71..a4639efbc 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleResourceItemResponse.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleResourceItemResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddLocaleResourceItemResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleResourceItemResponse { public static final String SERIALIZED_NAME_ITEM_KEY = "itemKey"; diff --git a/src/main/java/com/formkiq/client/model/AddLocaleResourceSchemaItem.java b/src/main/java/com/formkiq/client/model/AddLocaleResourceSchemaItem.java index c0a7994cb..f1d1bd0ea 100644 --- a/src/main/java/com/formkiq/client/model/AddLocaleResourceSchemaItem.java +++ b/src/main/java/com/formkiq/client/model/AddLocaleResourceSchemaItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddLocaleResourceSchemaItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddLocaleResourceSchemaItem { public static final String SERIALIZED_NAME_ITEM_TYPE = "itemType"; diff --git a/src/main/java/com/formkiq/client/model/AddMapping.java b/src/main/java/com/formkiq/client/model/AddMapping.java index 9b21a02f7..8f09f2663 100644 --- a/src/main/java/com/formkiq/client/model/AddMapping.java +++ b/src/main/java/com/formkiq/client/model/AddMapping.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddMapping */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddMapping { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddMappingRequest.java b/src/main/java/com/formkiq/client/model/AddMappingRequest.java index a816936cd..e30460a99 100644 --- a/src/main/java/com/formkiq/client/model/AddMappingRequest.java +++ b/src/main/java/com/formkiq/client/model/AddMappingRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddMappingRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddMappingRequest { public static final String SERIALIZED_NAME_MAPPING = "mapping"; diff --git a/src/main/java/com/formkiq/client/model/AddMappingResponse.java b/src/main/java/com/formkiq/client/model/AddMappingResponse.java index 1223f4366..ff521dffe 100644 --- a/src/main/java/com/formkiq/client/model/AddMappingResponse.java +++ b/src/main/java/com/formkiq/client/model/AddMappingResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddMappingResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddMappingResponse { public static final String SERIALIZED_NAME_MAPPING_ID = "mappingId"; diff --git a/src/main/java/com/formkiq/client/model/AddNigo.java b/src/main/java/com/formkiq/client/model/AddNigo.java index e6f851f1b..1d871eca9 100644 --- a/src/main/java/com/formkiq/client/model/AddNigo.java +++ b/src/main/java/com/formkiq/client/model/AddNigo.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddNigo */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddNigo { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddNigoRequest.java b/src/main/java/com/formkiq/client/model/AddNigoRequest.java index b9e37220b..2d143c3a9 100644 --- a/src/main/java/com/formkiq/client/model/AddNigoRequest.java +++ b/src/main/java/com/formkiq/client/model/AddNigoRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddNigoRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddNigoRequest { public static final String SERIALIZED_NAME_NIGO = "nigo"; diff --git a/src/main/java/com/formkiq/client/model/AddNigoResponse.java b/src/main/java/com/formkiq/client/model/AddNigoResponse.java index 2447ec4b1..59d5534d7 100644 --- a/src/main/java/com/formkiq/client/model/AddNigoResponse.java +++ b/src/main/java/com/formkiq/client/model/AddNigoResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddNigoResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddNigoResponse { public static final String SERIALIZED_NAME_NIGO_ID = "nigoId"; diff --git a/src/main/java/com/formkiq/client/model/AddQueueRequest.java b/src/main/java/com/formkiq/client/model/AddQueueRequest.java index 39fea8eb3..e53c0fdb0 100644 --- a/src/main/java/com/formkiq/client/model/AddQueueRequest.java +++ b/src/main/java/com/formkiq/client/model/AddQueueRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddQueueRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddQueueRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddQueueResponse.java b/src/main/java/com/formkiq/client/model/AddQueueResponse.java index a93928ac1..87bd610a0 100644 --- a/src/main/java/com/formkiq/client/model/AddQueueResponse.java +++ b/src/main/java/com/formkiq/client/model/AddQueueResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddQueueResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddQueueResponse { public static final String SERIALIZED_NAME_QUEUE_ID = "queueId"; diff --git a/src/main/java/com/formkiq/client/model/AddReindexDocumentRequest.java b/src/main/java/com/formkiq/client/model/AddReindexDocumentRequest.java index 57372a45a..21a0948df 100644 --- a/src/main/java/com/formkiq/client/model/AddReindexDocumentRequest.java +++ b/src/main/java/com/formkiq/client/model/AddReindexDocumentRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddReindexDocumentRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddReindexDocumentRequest { public static final String SERIALIZED_NAME_TARGET = "target"; diff --git a/src/main/java/com/formkiq/client/model/AddResourceItem.java b/src/main/java/com/formkiq/client/model/AddResourceItem.java index db2ee366d..e4803e595 100644 --- a/src/main/java/com/formkiq/client/model/AddResourceItem.java +++ b/src/main/java/com/formkiq/client/model/AddResourceItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -71,7 +71,7 @@ import com.formkiq.client.invoker.JSON; @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddResourceItem extends AbstractOpenApiSchema { private static final Logger log = Logger.getLogger(AddResourceItem.class.getName()); diff --git a/src/main/java/com/formkiq/client/model/AddResponse.java b/src/main/java/com/formkiq/client/model/AddResponse.java index 1a62bfc5d..599507409 100644 --- a/src/main/java/com/formkiq/client/model/AddResponse.java +++ b/src/main/java/com/formkiq/client/model/AddResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/AddRule.java b/src/main/java/com/formkiq/client/model/AddRule.java index c1b79efbc..5f2c54c31 100644 --- a/src/main/java/com/formkiq/client/model/AddRule.java +++ b/src/main/java/com/formkiq/client/model/AddRule.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddRule */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRule { public static final String SERIALIZED_NAME_PRIORITY = "priority"; diff --git a/src/main/java/com/formkiq/client/model/AddRuleRequest.java b/src/main/java/com/formkiq/client/model/AddRuleRequest.java index 2a9b0f7d4..fb76ffb48 100644 --- a/src/main/java/com/formkiq/client/model/AddRuleRequest.java +++ b/src/main/java/com/formkiq/client/model/AddRuleRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddRuleRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRuleRequest { public static final String SERIALIZED_NAME_RULE = "rule"; diff --git a/src/main/java/com/formkiq/client/model/AddRuleResponse.java b/src/main/java/com/formkiq/client/model/AddRuleResponse.java index cb840e8e5..32f19d3ed 100644 --- a/src/main/java/com/formkiq/client/model/AddRuleResponse.java +++ b/src/main/java/com/formkiq/client/model/AddRuleResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddRuleResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRuleResponse { public static final String SERIALIZED_NAME_RULE_ID = "ruleId"; diff --git a/src/main/java/com/formkiq/client/model/AddRuleset.java b/src/main/java/com/formkiq/client/model/AddRuleset.java index 41d227022..16750d566 100644 --- a/src/main/java/com/formkiq/client/model/AddRuleset.java +++ b/src/main/java/com/formkiq/client/model/AddRuleset.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddRuleset */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRuleset { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; diff --git a/src/main/java/com/formkiq/client/model/AddRulesetRequest.java b/src/main/java/com/formkiq/client/model/AddRulesetRequest.java index 6d2dd2b23..eaec332e0 100644 --- a/src/main/java/com/formkiq/client/model/AddRulesetRequest.java +++ b/src/main/java/com/formkiq/client/model/AddRulesetRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddRulesetRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRulesetRequest { public static final String SERIALIZED_NAME_RULESET = "ruleset"; diff --git a/src/main/java/com/formkiq/client/model/AddRulesetResponse.java b/src/main/java/com/formkiq/client/model/AddRulesetResponse.java index 9646c45f0..8eab8a9c0 100644 --- a/src/main/java/com/formkiq/client/model/AddRulesetResponse.java +++ b/src/main/java/com/formkiq/client/model/AddRulesetResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddRulesetResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddRulesetResponse { public static final String SERIALIZED_NAME_RULESET_ID = "rulesetId"; diff --git a/src/main/java/com/formkiq/client/model/AddShare.java b/src/main/java/com/formkiq/client/model/AddShare.java index 5838dc3c3..d47ee689f 100644 --- a/src/main/java/com/formkiq/client/model/AddShare.java +++ b/src/main/java/com/formkiq/client/model/AddShare.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddShare */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddShare { public static final String SERIALIZED_NAME_GROUP = "group"; diff --git a/src/main/java/com/formkiq/client/model/AddSite.java b/src/main/java/com/formkiq/client/model/AddSite.java index d150c507b..53c40f980 100644 --- a/src/main/java/com/formkiq/client/model/AddSite.java +++ b/src/main/java/com/formkiq/client/model/AddSite.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddSite */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddSite { public static final String SERIALIZED_NAME_ID = "id"; diff --git a/src/main/java/com/formkiq/client/model/AddSiteRequest.java b/src/main/java/com/formkiq/client/model/AddSiteRequest.java index c88aadf5a..b1ac7c328 100644 --- a/src/main/java/com/formkiq/client/model/AddSiteRequest.java +++ b/src/main/java/com/formkiq/client/model/AddSiteRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddSiteRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddSiteRequest { public static final String SERIALIZED_NAME_SITE = "site"; diff --git a/src/main/java/com/formkiq/client/model/AddTask.java b/src/main/java/com/formkiq/client/model/AddTask.java index e87648f92..acd345a6e 100644 --- a/src/main/java/com/formkiq/client/model/AddTask.java +++ b/src/main/java/com/formkiq/client/model/AddTask.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddTask */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddTask { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddTaskRequest.java b/src/main/java/com/formkiq/client/model/AddTaskRequest.java index 3cbaaf23b..857f3cac5 100644 --- a/src/main/java/com/formkiq/client/model/AddTaskRequest.java +++ b/src/main/java/com/formkiq/client/model/AddTaskRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddTaskRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddTaskRequest { public static final String SERIALIZED_NAME_TASK = "task"; diff --git a/src/main/java/com/formkiq/client/model/AddTaskResponse.java b/src/main/java/com/formkiq/client/model/AddTaskResponse.java index 1aabf2d9e..9d8a2eee6 100644 --- a/src/main/java/com/formkiq/client/model/AddTaskResponse.java +++ b/src/main/java/com/formkiq/client/model/AddTaskResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddTaskResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddTaskResponse { public static final String SERIALIZED_NAME_TASK_ID = "taskId"; diff --git a/src/main/java/com/formkiq/client/model/AddUser.java b/src/main/java/com/formkiq/client/model/AddUser.java index 65c561cdd..445276bb3 100644 --- a/src/main/java/com/formkiq/client/model/AddUser.java +++ b/src/main/java/com/formkiq/client/model/AddUser.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddUser */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddUser { public static final String SERIALIZED_NAME_USERNAME = "username"; diff --git a/src/main/java/com/formkiq/client/model/AddUserRequest.java b/src/main/java/com/formkiq/client/model/AddUserRequest.java index 57d63e19d..0601f0b6e 100644 --- a/src/main/java/com/formkiq/client/model/AddUserRequest.java +++ b/src/main/java/com/formkiq/client/model/AddUserRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddUserRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddUserRequest { public static final String SERIALIZED_NAME_USER = "user"; diff --git a/src/main/java/com/formkiq/client/model/AddWebhookRequest.java b/src/main/java/com/formkiq/client/model/AddWebhookRequest.java index e282e609a..cc7d8e57a 100644 --- a/src/main/java/com/formkiq/client/model/AddWebhookRequest.java +++ b/src/main/java/com/formkiq/client/model/AddWebhookRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * AddWebhookRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWebhookRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddWebhookResponse.java b/src/main/java/com/formkiq/client/model/AddWebhookResponse.java index 650eaa059..642acf7f7 100644 --- a/src/main/java/com/formkiq/client/model/AddWebhookResponse.java +++ b/src/main/java/com/formkiq/client/model/AddWebhookResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddWebhookResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWebhookResponse { public static final String SERIALIZED_NAME_WEBHOOK_ID = "webhookId"; diff --git a/src/main/java/com/formkiq/client/model/AddWebhookTagRequest.java b/src/main/java/com/formkiq/client/model/AddWebhookTagRequest.java index 3a0052cdd..bc399d339 100644 --- a/src/main/java/com/formkiq/client/model/AddWebhookTagRequest.java +++ b/src/main/java/com/formkiq/client/model/AddWebhookTagRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddWebhookTagRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWebhookTagRequest { public static final String SERIALIZED_NAME_VALUE = "value"; diff --git a/src/main/java/com/formkiq/client/model/AddWorkflowRequest.java b/src/main/java/com/formkiq/client/model/AddWorkflowRequest.java index b96716a0f..8316be1a5 100644 --- a/src/main/java/com/formkiq/client/model/AddWorkflowRequest.java +++ b/src/main/java/com/formkiq/client/model/AddWorkflowRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * AddWorkflowRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWorkflowRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/AddWorkflowResponse.java b/src/main/java/com/formkiq/client/model/AddWorkflowResponse.java index 0621e4b06..4aca6ab1c 100644 --- a/src/main/java/com/formkiq/client/model/AddWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/AddWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * AddWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWorkflowResponse { public static final String SERIALIZED_NAME_WORKFLOW_ID = "workflowId"; diff --git a/src/main/java/com/formkiq/client/model/AddWorkflowStep.java b/src/main/java/com/formkiq/client/model/AddWorkflowStep.java index fb6743f57..f3c118ade 100644 --- a/src/main/java/com/formkiq/client/model/AddWorkflowStep.java +++ b/src/main/java/com/formkiq/client/model/AddWorkflowStep.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AddWorkflowStep */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWorkflowStep { public static final String SERIALIZED_NAME_STEP_ID = "stepId"; diff --git a/src/main/java/com/formkiq/client/model/AddWorkflowStepDecision.java b/src/main/java/com/formkiq/client/model/AddWorkflowStepDecision.java index 2202a4f67..ad515ae4c 100644 --- a/src/main/java/com/formkiq/client/model/AddWorkflowStepDecision.java +++ b/src/main/java/com/formkiq/client/model/AddWorkflowStepDecision.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * AddWorkflowStepDecision */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWorkflowStepDecision { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/AddWorkflowStepQueue.java b/src/main/java/com/formkiq/client/model/AddWorkflowStepQueue.java index 6b7c99339..86ac5cc92 100644 --- a/src/main/java/com/formkiq/client/model/AddWorkflowStepQueue.java +++ b/src/main/java/com/formkiq/client/model/AddWorkflowStepQueue.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AddWorkflowStepQueue */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AddWorkflowStepQueue { public static final String SERIALIZED_NAME_QUEUE_ID = "queueId"; diff --git a/src/main/java/com/formkiq/client/model/ApiKey.java b/src/main/java/com/formkiq/client/model/ApiKey.java index b64653050..329b145ff 100644 --- a/src/main/java/com/formkiq/client/model/ApiKey.java +++ b/src/main/java/com/formkiq/client/model/ApiKey.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -22,6 +22,7 @@ import java.util.Objects; import java.util.Locale; +import com.formkiq.client.model.ApiKeyPermission; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -60,7 +61,7 @@ * ApiKey */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ApiKey { public static final String SERIALIZED_NAME_NAME = "name"; @@ -88,67 +89,15 @@ public class ApiKey { @javax.annotation.Nullable private String insertedDate; - /** - * Gets or Sets permissions - */ - @JsonAdapter(PermissionsEnum.Adapter.class) - public enum PermissionsEnum { - READ("READ"), - - WRITE("WRITE"), - - DELETE("DELETE"), - - GOVERN("GOVERN"); - - private String value; - - PermissionsEnum(String value) { - this.value = value; - } - - public String getValue() { - return value; - } - - @Override - public String toString() { - return String.valueOf(value); - } - - public static PermissionsEnum fromValue(String value) { - for (PermissionsEnum b : PermissionsEnum.values()) { - if (b.value.equals(value)) { - return b; - } - } - throw new IllegalArgumentException("Unexpected value '" + value + "'"); - } - - public static class Adapter extends TypeAdapter { - @Override - public void write(final JsonWriter jsonWriter, final PermissionsEnum enumeration) - throws IOException { - jsonWriter.value(enumeration.getValue()); - } - - @Override - public PermissionsEnum read(final JsonReader jsonReader) throws IOException { - String value = jsonReader.nextString(); - return PermissionsEnum.fromValue(value); - } - } - - public static void validateJsonElement(JsonElement jsonElement) throws IOException { - String value = jsonElement.getAsString(); - PermissionsEnum.fromValue(value); - } - } - public static final String SERIALIZED_NAME_PERMISSIONS = "permissions"; @SerializedName(SERIALIZED_NAME_PERMISSIONS) @javax.annotation.Nullable - private List permissions = new ArrayList<>(); + private List permissions = new ArrayList<>(); + + public static final String SERIALIZED_NAME_GROUPS = "groups"; + @SerializedName(SERIALIZED_NAME_GROUPS) + @javax.annotation.Nullable + private List groups = new ArrayList<>(); public ApiKey() {} @@ -252,12 +201,12 @@ public void setInsertedDate(@javax.annotation.Nullable String insertedDate) { } - public ApiKey permissions(@javax.annotation.Nullable List permissions) { + public ApiKey permissions(@javax.annotation.Nullable List permissions) { this.permissions = permissions; return this; } - public ApiKey addPermissionsItem(PermissionsEnum permissionsItem) { + public ApiKey addPermissionsItem(ApiKeyPermission permissionsItem) { if (this.permissions == null) { this.permissions = new ArrayList<>(); } @@ -266,20 +215,48 @@ public ApiKey addPermissionsItem(PermissionsEnum permissionsItem) { } /** - * List of permissions + * Get permissions * * @return permissions */ @javax.annotation.Nullable - public List getPermissions() { + public List getPermissions() { return permissions; } - public void setPermissions(@javax.annotation.Nullable List permissions) { + public void setPermissions(@javax.annotation.Nullable List permissions) { this.permissions = permissions; } + public ApiKey groups(@javax.annotation.Nullable List groups) { + this.groups = groups; + return this; + } + + public ApiKey addGroupsItem(String groupsItem) { + if (this.groups == null) { + this.groups = new ArrayList<>(); + } + this.groups.add(groupsItem); + return this; + } + + /** + * List of groups to add as custom claims to API Key + * + * @return groups + */ + @javax.annotation.Nullable + public List getGroups() { + return groups; + } + + public void setGroups(@javax.annotation.Nullable List groups) { + this.groups = groups; + } + + @Override public boolean equals(Object o) { @@ -293,12 +270,13 @@ public boolean equals(Object o) { return Objects.equals(this.name, apiKey.name) && Objects.equals(this.apiKey, apiKey.apiKey) && Objects.equals(this.userId, apiKey.userId) && Objects.equals(this.siteId, apiKey.siteId) && Objects.equals(this.insertedDate, apiKey.insertedDate) - && Objects.equals(this.permissions, apiKey.permissions); + && Objects.equals(this.permissions, apiKey.permissions) + && Objects.equals(this.groups, apiKey.groups); } @Override public int hashCode() { - return Objects.hash(name, apiKey, userId, siteId, insertedDate, permissions); + return Objects.hash(name, apiKey, userId, siteId, insertedDate, permissions, groups); } @Override @@ -311,6 +289,7 @@ public String toString() { sb.append(" siteId: ").append(toIndentedString(siteId)).append("\n"); sb.append(" insertedDate: ").append(toIndentedString(insertedDate)).append("\n"); sb.append(" permissions: ").append(toIndentedString(permissions)).append("\n"); + sb.append(" groups: ").append(toIndentedString(groups)).append("\n"); sb.append("}"); return sb.toString(); } @@ -331,8 +310,8 @@ private String toIndentedString(Object o) { static { // a set of all properties/fields (JSON key names) - openapiFields = new HashSet( - Arrays.asList("name", "apiKey", "userId", "siteId", "insertedDate", "permissions")); + openapiFields = new HashSet(Arrays.asList("name", "apiKey", "userId", "siteId", + "insertedDate", "permissions", "groups")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(0); @@ -400,6 +379,13 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti "Expected the field `permissions` to be an array in the JSON string but got `%s`", jsonObj.get("permissions").toString())); } + // ensure the optional json data is an array if present + if (jsonObj.get("groups") != null && !jsonObj.get("groups").isJsonNull() + && !jsonObj.get("groups").isJsonArray()) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "Expected the field `groups` to be an array in the JSON string but got `%s`", + jsonObj.get("groups").toString())); + } } public static class CustomTypeAdapterFactory implements TypeAdapterFactory { diff --git a/src/main/java/com/formkiq/client/model/ApiKeyPermission.java b/src/main/java/com/formkiq/client/model/ApiKeyPermission.java new file mode 100644 index 000000000..8df035999 --- /dev/null +++ b/src/main/java/com/formkiq/client/model/ApiKeyPermission.java @@ -0,0 +1,92 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import java.util.Objects; +import java.util.Locale; +import com.google.gson.annotations.SerializedName; + +import java.io.IOException; +import java.util.Locale; +import com.google.gson.TypeAdapter; +import com.google.gson.JsonElement; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; + +/** + * List of API permissions (defaults to READ / WRITE / DELETE) + */ +@JsonAdapter(ApiKeyPermission.Adapter.class) +public enum ApiKeyPermission { + + READ("READ"), + + WRITE("WRITE"), + + DELETE("DELETE"), + + GOVERN("GOVERN"); + + private String value; + + ApiKeyPermission(String value) { + this.value = value; + } + + public String getValue() { + return value; + } + + @Override + public String toString() { + return String.valueOf(value); + } + + public static ApiKeyPermission fromValue(String value) { + for (ApiKeyPermission b : ApiKeyPermission.values()) { + if (b.value.equals(value)) { + return b; + } + } + throw new IllegalArgumentException("Unexpected value '" + value + "'"); + } + + public static class Adapter extends TypeAdapter { + @Override + public void write(final JsonWriter jsonWriter, final ApiKeyPermission enumeration) + throws IOException { + jsonWriter.value(enumeration.getValue()); + } + + @Override + public ApiKeyPermission read(final JsonReader jsonReader) throws IOException { + String value = jsonReader.nextString(); + return ApiKeyPermission.fromValue(value); + } + } + + public static void validateJsonElement(JsonElement jsonElement) throws IOException { + String value = jsonElement.getAsString(); + ApiKeyPermission.fromValue(value); + } +} + diff --git a/src/main/java/com/formkiq/client/model/Attribute.java b/src/main/java/com/formkiq/client/model/Attribute.java index 5ed4dc45f..267f70cb7 100644 --- a/src/main/java/com/formkiq/client/model/Attribute.java +++ b/src/main/java/com/formkiq/client/model/Attribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Attribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Attribute { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/AttributeDataType.java b/src/main/java/com/formkiq/client/model/AttributeDataType.java index bf01467f0..e7c6499e2 100644 --- a/src/main/java/com/formkiq/client/model/AttributeDataType.java +++ b/src/main/java/com/formkiq/client/model/AttributeDataType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/AttributeSchemaCompositeKey.java b/src/main/java/com/formkiq/client/model/AttributeSchemaCompositeKey.java index af01d9086..7ed295ddc 100644 --- a/src/main/java/com/formkiq/client/model/AttributeSchemaCompositeKey.java +++ b/src/main/java/com/formkiq/client/model/AttributeSchemaCompositeKey.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * AttributeSchemaCompositeKey */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AttributeSchemaCompositeKey { public static final String SERIALIZED_NAME_ATTRIBUTE_KEYS = "attributeKeys"; diff --git a/src/main/java/com/formkiq/client/model/AttributeSchemaOptional.java b/src/main/java/com/formkiq/client/model/AttributeSchemaOptional.java index bb7997b86..ffa3853a6 100644 --- a/src/main/java/com/formkiq/client/model/AttributeSchemaOptional.java +++ b/src/main/java/com/formkiq/client/model/AttributeSchemaOptional.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AttributeSchemaOptional */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AttributeSchemaOptional { public static final String SERIALIZED_NAME_MIN_NUMBER_OF_VALUES = "minNumberOfValues"; diff --git a/src/main/java/com/formkiq/client/model/AttributeSchemaRequired.java b/src/main/java/com/formkiq/client/model/AttributeSchemaRequired.java index 12d7932ca..d1e30305b 100644 --- a/src/main/java/com/formkiq/client/model/AttributeSchemaRequired.java +++ b/src/main/java/com/formkiq/client/model/AttributeSchemaRequired.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * AttributeSchemaRequired */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class AttributeSchemaRequired { public static final String SERIALIZED_NAME_ATTRIBUTE_KEY = "attributeKey"; diff --git a/src/main/java/com/formkiq/client/model/AttributeType.java b/src/main/java/com/formkiq/client/model/AttributeType.java index ab669690a..91375aa89 100644 --- a/src/main/java/com/formkiq/client/model/AttributeType.java +++ b/src/main/java/com/formkiq/client/model/AttributeType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/AttributeValueType.java b/src/main/java/com/formkiq/client/model/AttributeValueType.java index 1a80be5f4..d162bba12 100644 --- a/src/main/java/com/formkiq/client/model/AttributeValueType.java +++ b/src/main/java/com/formkiq/client/model/AttributeValueType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/CaseStatus.java b/src/main/java/com/formkiq/client/model/CaseStatus.java index fd7d982df..41b0c6b11 100644 --- a/src/main/java/com/formkiq/client/model/CaseStatus.java +++ b/src/main/java/com/formkiq/client/model/CaseStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/ChecksumType.java b/src/main/java/com/formkiq/client/model/ChecksumType.java index 19e3e97e6..242a5eb09 100644 --- a/src/main/java/com/formkiq/client/model/ChecksumType.java +++ b/src/main/java/com/formkiq/client/model/ChecksumType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/ChildDocument.java b/src/main/java/com/formkiq/client/model/ChildDocument.java index 060aa1039..42230c1c3 100644 --- a/src/main/java/com/formkiq/client/model/ChildDocument.java +++ b/src/main/java/com/formkiq/client/model/ChildDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * ChildDocument */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ChildDocument { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/Classification.java b/src/main/java/com/formkiq/client/model/Classification.java index bc27ff661..33e03e157 100644 --- a/src/main/java/com/formkiq/client/model/Classification.java +++ b/src/main/java/com/formkiq/client/model/Classification.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Classification */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Classification { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/ClassificationSummary.java b/src/main/java/com/formkiq/client/model/ClassificationSummary.java index 43f2a46d6..c9d9b5eda 100644 --- a/src/main/java/com/formkiq/client/model/ClassificationSummary.java +++ b/src/main/java/com/formkiq/client/model/ClassificationSummary.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * ClassificationSummary */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ClassificationSummary { public static final String SERIALIZED_NAME_CLASSIFICATION_ID = "classificationId"; diff --git a/src/main/java/com/formkiq/client/model/DataClassification.java b/src/main/java/com/formkiq/client/model/DataClassification.java index a7abbf29c..b64c79e0b 100644 --- a/src/main/java/com/formkiq/client/model/DataClassification.java +++ b/src/main/java/com/formkiq/client/model/DataClassification.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DataClassification */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DataClassification { public static final String SERIALIZED_NAME_LLM_PROMPT_ENTITY_NAME = "llmPromptEntityName"; diff --git a/src/main/java/com/formkiq/client/model/DataClassificationAttribute.java b/src/main/java/com/formkiq/client/model/DataClassificationAttribute.java index d69d23fac..6525d64d2 100644 --- a/src/main/java/com/formkiq/client/model/DataClassificationAttribute.java +++ b/src/main/java/com/formkiq/client/model/DataClassificationAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DataClassificationAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DataClassificationAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/DeleteApiKeyResponse.java b/src/main/java/com/formkiq/client/model/DeleteApiKeyResponse.java index 85997f0a1..f0b452273 100644 --- a/src/main/java/com/formkiq/client/model/DeleteApiKeyResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteApiKeyResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteApiKeyResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteApiKeyResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseDocumentResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseDocumentResponse.java index b8c1d2a51..f0d31b3da 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseDocumentResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponse.java index 2f889aa1e..e0eeb5520 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseNigoDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseNigoDocumentResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseNigoResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseNigoResponse.java index 9ca033741..00d8c4069 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseNigoResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseNigoResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseNigoResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseNigoResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseResponse.java index 7dac16a8b..6e2ff0973 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponse.java index 1adfba64d..b80cfb7e4 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseTaskDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseTaskDocumentResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteCaseTaskResponse.java b/src/main/java/com/formkiq/client/model/DeleteCaseTaskResponse.java index f25d96804..6362f76c2 100644 --- a/src/main/java/com/formkiq/client/model/DeleteCaseTaskResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteCaseTaskResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteCaseTaskResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteCaseTaskResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteFolderResponse.java b/src/main/java/com/formkiq/client/model/DeleteFolderResponse.java index 94d57fc26..a488a8aa6 100644 --- a/src/main/java/com/formkiq/client/model/DeleteFolderResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteFolderResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteFolderResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteFolderResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteFulltextResponse.java b/src/main/java/com/formkiq/client/model/DeleteFulltextResponse.java index a74f53a0b..1be327e13 100644 --- a/src/main/java/com/formkiq/client/model/DeleteFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteFulltextResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteIndicesResponse.java b/src/main/java/com/formkiq/client/model/DeleteIndicesResponse.java index 208fb8854..74ba5c2e9 100644 --- a/src/main/java/com/formkiq/client/model/DeleteIndicesResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteIndicesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteIndicesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteIndicesResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteQueueResponse.java b/src/main/java/com/formkiq/client/model/DeleteQueueResponse.java index 64e997978..03221ffc5 100644 --- a/src/main/java/com/formkiq/client/model/DeleteQueueResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteQueueResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteQueueResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteQueueResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteResponse.java b/src/main/java/com/formkiq/client/model/DeleteResponse.java index 3fe551643..7295606f9 100644 --- a/src/main/java/com/formkiq/client/model/DeleteResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteRuleResponse.java b/src/main/java/com/formkiq/client/model/DeleteRuleResponse.java index 9d66baa4e..ce529535e 100644 --- a/src/main/java/com/formkiq/client/model/DeleteRuleResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteRuleResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteRuleResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteRuleResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteRulesetResponse.java b/src/main/java/com/formkiq/client/model/DeleteRulesetResponse.java index 4396539fd..607ea8e88 100644 --- a/src/main/java/com/formkiq/client/model/DeleteRulesetResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteRulesetResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteRulesetResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteRulesetResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteShareResponse.java b/src/main/java/com/formkiq/client/model/DeleteShareResponse.java index 502b1da97..41ab45c04 100644 --- a/src/main/java/com/formkiq/client/model/DeleteShareResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteShareResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteShareResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteShareResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/DeleteWorkflowResponse.java b/src/main/java/com/formkiq/client/model/DeleteWorkflowResponse.java index aaa2202b1..c99a5841b 100644 --- a/src/main/java/com/formkiq/client/model/DeleteWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/DeleteWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DeleteWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DeleteWorkflowResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/Document.java b/src/main/java/com/formkiq/client/model/Document.java index 0e1b56d73..8b4e7521f 100644 --- a/src/main/java/com/formkiq/client/model/Document.java +++ b/src/main/java/com/formkiq/client/model/Document.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * Document */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Document { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/DocumentAction.java b/src/main/java/com/formkiq/client/model/DocumentAction.java index 5dc2c9304..9c2c482ff 100644 --- a/src/main/java/com/formkiq/client/model/DocumentAction.java +++ b/src/main/java/com/formkiq/client/model/DocumentAction.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * DocumentAction */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentAction { public static final String SERIALIZED_NAME_STATUS = "status"; diff --git a/src/main/java/com/formkiq/client/model/DocumentActionStatus.java b/src/main/java/com/formkiq/client/model/DocumentActionStatus.java index d4d99dea4..774b1ed49 100644 --- a/src/main/java/com/formkiq/client/model/DocumentActionStatus.java +++ b/src/main/java/com/formkiq/client/model/DocumentActionStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentActionType.java b/src/main/java/com/formkiq/client/model/DocumentActionType.java index 4cae89888..26785c47d 100644 --- a/src/main/java/com/formkiq/client/model/DocumentActionType.java +++ b/src/main/java/com/formkiq/client/model/DocumentActionType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentAttribute.java b/src/main/java/com/formkiq/client/model/DocumentAttribute.java index b35115d81..56e815e96 100644 --- a/src/main/java/com/formkiq/client/model/DocumentAttribute.java +++ b/src/main/java/com/formkiq/client/model/DocumentAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * DocumentAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/DocumentConfig.java b/src/main/java/com/formkiq/client/model/DocumentConfig.java new file mode 100644 index 000000000..209897b50 --- /dev/null +++ b/src/main/java/com/formkiq/client/model/DocumentConfig.java @@ -0,0 +1,223 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import java.util.Objects; +import java.util.Locale; +import com.formkiq.client.model.DocumentConfigContentTypes; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; +import java.util.Arrays; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonArray; +import com.google.gson.JsonDeserializationContext; +import com.google.gson.JsonDeserializer; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParseException; +import com.google.gson.TypeAdapterFactory; +import com.google.gson.reflect.TypeToken; +import com.google.gson.TypeAdapter; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.Locale; + +import com.formkiq.client.invoker.JSON; + +/** + * DocumentConfig + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", + comments = "Generator version: 7.17.0") +public class DocumentConfig { + public static final String SERIALIZED_NAME_CONTENT_TYPES = "contentTypes"; + @SerializedName(SERIALIZED_NAME_CONTENT_TYPES) + @javax.annotation.Nullable + private DocumentConfigContentTypes contentTypes; + + public DocumentConfig() {} + + public DocumentConfig contentTypes( + @javax.annotation.Nullable DocumentConfigContentTypes contentTypes) { + this.contentTypes = contentTypes; + return this; + } + + /** + * Get contentTypes + * + * @return contentTypes + */ + @javax.annotation.Nullable + public DocumentConfigContentTypes getContentTypes() { + return contentTypes; + } + + public void setContentTypes(@javax.annotation.Nullable DocumentConfigContentTypes contentTypes) { + this.contentTypes = contentTypes; + } + + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + DocumentConfig documentConfig = (DocumentConfig) o; + return Objects.equals(this.contentTypes, documentConfig.contentTypes); + } + + @Override + public int hashCode() { + return Objects.hash(contentTypes); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DocumentConfig {\n"); + sb.append(" contentTypes: ").append(toIndentedString(contentTypes)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + + + public static HashSet openapiFields; + public static HashSet openapiRequiredFields; + + static { + // a set of all properties/fields (JSON key names) + openapiFields = new HashSet(Arrays.asList("contentTypes")); + + // a set of required properties/fields (JSON key names) + openapiRequiredFields = new HashSet(0); + } + + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DocumentConfig + */ + public static void validateJsonElement(JsonElement jsonElement) throws IOException { + if (jsonElement == null) { + if (!DocumentConfig.openapiRequiredFields.isEmpty()) { // has required fields but JSON element + // is null + throw new IllegalArgumentException(String.format(Locale.ROOT, + "The required field(s) %s in DocumentConfig is not found in the empty JSON string", + DocumentConfig.openapiRequiredFields.toString())); + } + } + + Set> entries = jsonElement.getAsJsonObject().entrySet(); + // check to see if the JSON string contains additional fields + for (Map.Entry entry : entries) { + if (!DocumentConfig.openapiFields.contains(entry.getKey())) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "The field `%s` in the JSON string is not defined in the `DocumentConfig` properties. JSON: %s", + entry.getKey(), jsonElement.toString())); + } + } + JsonObject jsonObj = jsonElement.getAsJsonObject(); + // validate the optional field `contentTypes` + if (jsonObj.get("contentTypes") != null && !jsonObj.get("contentTypes").isJsonNull()) { + DocumentConfigContentTypes.validateJsonElement(jsonObj.get("contentTypes")); + } + } + + public static class CustomTypeAdapterFactory implements TypeAdapterFactory { + @SuppressWarnings("unchecked") + @Override + public TypeAdapter create(Gson gson, TypeToken type) { + if (!DocumentConfig.class.isAssignableFrom(type.getRawType())) { + return null; // this class only serializes 'DocumentConfig' and its subtypes + } + final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class); + final TypeAdapter thisAdapter = + gson.getDelegateAdapter(this, TypeToken.get(DocumentConfig.class)); + + return (TypeAdapter) new TypeAdapter() { + @Override + public void write(JsonWriter out, DocumentConfig value) throws IOException { + JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject(); + elementAdapter.write(out, obj); + } + + @Override + public DocumentConfig read(JsonReader in) throws IOException { + JsonElement jsonElement = elementAdapter.read(in); + validateJsonElement(jsonElement); + return thisAdapter.fromJsonTree(jsonElement); + } + + }.nullSafe(); + } + } + + /** + * Create an instance of DocumentConfig given an JSON string + * + * @param jsonString JSON string + * @return An instance of DocumentConfig + * @throws IOException if the JSON string is invalid with respect to DocumentConfig + */ + public static DocumentConfig fromJson(String jsonString) throws IOException { + return JSON.getGson().fromJson(jsonString, DocumentConfig.class); + } + + /** + * Convert an instance of DocumentConfig to an JSON string + * + * @return JSON string + */ + public String toJson() { + return JSON.getGson().toJson(this); + } +} + diff --git a/src/main/java/com/formkiq/client/model/DocumentConfigContentTypes.java b/src/main/java/com/formkiq/client/model/DocumentConfigContentTypes.java new file mode 100644 index 000000000..1644e2651 --- /dev/null +++ b/src/main/java/com/formkiq/client/model/DocumentConfigContentTypes.java @@ -0,0 +1,276 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import java.util.Objects; +import java.util.Locale; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonArray; +import com.google.gson.JsonDeserializationContext; +import com.google.gson.JsonDeserializer; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; +import com.google.gson.JsonParseException; +import com.google.gson.TypeAdapterFactory; +import com.google.gson.reflect.TypeToken; +import com.google.gson.TypeAdapter; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; + +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.Locale; + +import com.formkiq.client.invoker.JSON; + +/** + * DocumentConfigContentTypes + */ +@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", + comments = "Generator version: 7.17.0") +public class DocumentConfigContentTypes { + public static final String SERIALIZED_NAME_ALLOWLIST = "allowlist"; + @SerializedName(SERIALIZED_NAME_ALLOWLIST) + @javax.annotation.Nullable + private List allowlist = new ArrayList<>(); + + public static final String SERIALIZED_NAME_DENYLIST = "denylist"; + @SerializedName(SERIALIZED_NAME_DENYLIST) + @javax.annotation.Nullable + private List denylist = new ArrayList<>(); + + public DocumentConfigContentTypes() {} + + public DocumentConfigContentTypes allowlist(@javax.annotation.Nullable List allowlist) { + this.allowlist = allowlist; + return this; + } + + public DocumentConfigContentTypes addAllowlistItem(String allowlistItem) { + if (this.allowlist == null) { + this.allowlist = new ArrayList<>(); + } + this.allowlist.add(allowlistItem); + return this; + } + + /** + * Get allowlist + * + * @return allowlist + */ + @javax.annotation.Nullable + public List getAllowlist() { + return allowlist; + } + + public void setAllowlist(@javax.annotation.Nullable List allowlist) { + this.allowlist = allowlist; + } + + + public DocumentConfigContentTypes denylist(@javax.annotation.Nullable List denylist) { + this.denylist = denylist; + return this; + } + + public DocumentConfigContentTypes addDenylistItem(String denylistItem) { + if (this.denylist == null) { + this.denylist = new ArrayList<>(); + } + this.denylist.add(denylistItem); + return this; + } + + /** + * Get denylist + * + * @return denylist + */ + @javax.annotation.Nullable + public List getDenylist() { + return denylist; + } + + public void setDenylist(@javax.annotation.Nullable List denylist) { + this.denylist = denylist; + } + + + + @Override + public boolean equals(Object o) { + if (this == o) { + return true; + } + if (o == null || getClass() != o.getClass()) { + return false; + } + DocumentConfigContentTypes documentConfigContentTypes = (DocumentConfigContentTypes) o; + return Objects.equals(this.allowlist, documentConfigContentTypes.allowlist) + && Objects.equals(this.denylist, documentConfigContentTypes.denylist); + } + + @Override + public int hashCode() { + return Objects.hash(allowlist, denylist); + } + + @Override + public String toString() { + StringBuilder sb = new StringBuilder(); + sb.append("class DocumentConfigContentTypes {\n"); + sb.append(" allowlist: ").append(toIndentedString(allowlist)).append("\n"); + sb.append(" denylist: ").append(toIndentedString(denylist)).append("\n"); + sb.append("}"); + return sb.toString(); + } + + /** + * Convert the given object to string with each line indented by 4 spaces (except the first line). + */ + private String toIndentedString(Object o) { + if (o == null) { + return "null"; + } + return o.toString().replace("\n", "\n "); + } + + + public static HashSet openapiFields; + public static HashSet openapiRequiredFields; + + static { + // a set of all properties/fields (JSON key names) + openapiFields = new HashSet(Arrays.asList("allowlist", "denylist")); + + // a set of required properties/fields (JSON key names) + openapiRequiredFields = new HashSet(0); + } + + /** + * Validates the JSON Element and throws an exception if issues found + * + * @param jsonElement JSON Element + * @throws IOException if the JSON Element is invalid with respect to DocumentConfigContentTypes + */ + public static void validateJsonElement(JsonElement jsonElement) throws IOException { + if (jsonElement == null) { + if (!DocumentConfigContentTypes.openapiRequiredFields.isEmpty()) { // has required fields but + // JSON element is null + throw new IllegalArgumentException(String.format(Locale.ROOT, + "The required field(s) %s in DocumentConfigContentTypes is not found in the empty JSON string", + DocumentConfigContentTypes.openapiRequiredFields.toString())); + } + } + + Set> entries = jsonElement.getAsJsonObject().entrySet(); + // check to see if the JSON string contains additional fields + for (Map.Entry entry : entries) { + if (!DocumentConfigContentTypes.openapiFields.contains(entry.getKey())) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "The field `%s` in the JSON string is not defined in the `DocumentConfigContentTypes` properties. JSON: %s", + entry.getKey(), jsonElement.toString())); + } + } + JsonObject jsonObj = jsonElement.getAsJsonObject(); + // ensure the optional json data is an array if present + if (jsonObj.get("allowlist") != null && !jsonObj.get("allowlist").isJsonNull() + && !jsonObj.get("allowlist").isJsonArray()) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "Expected the field `allowlist` to be an array in the JSON string but got `%s`", + jsonObj.get("allowlist").toString())); + } + // ensure the optional json data is an array if present + if (jsonObj.get("denylist") != null && !jsonObj.get("denylist").isJsonNull() + && !jsonObj.get("denylist").isJsonArray()) { + throw new IllegalArgumentException(String.format(Locale.ROOT, + "Expected the field `denylist` to be an array in the JSON string but got `%s`", + jsonObj.get("denylist").toString())); + } + } + + public static class CustomTypeAdapterFactory implements TypeAdapterFactory { + @SuppressWarnings("unchecked") + @Override + public TypeAdapter create(Gson gson, TypeToken type) { + if (!DocumentConfigContentTypes.class.isAssignableFrom(type.getRawType())) { + return null; // this class only serializes 'DocumentConfigContentTypes' and its subtypes + } + final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class); + final TypeAdapter thisAdapter = + gson.getDelegateAdapter(this, TypeToken.get(DocumentConfigContentTypes.class)); + + return (TypeAdapter) new TypeAdapter() { + @Override + public void write(JsonWriter out, DocumentConfigContentTypes value) throws IOException { + JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject(); + elementAdapter.write(out, obj); + } + + @Override + public DocumentConfigContentTypes read(JsonReader in) throws IOException { + JsonElement jsonElement = elementAdapter.read(in); + validateJsonElement(jsonElement); + return thisAdapter.fromJsonTree(jsonElement); + } + + }.nullSafe(); + } + } + + /** + * Create an instance of DocumentConfigContentTypes given an JSON string + * + * @param jsonString JSON string + * @return An instance of DocumentConfigContentTypes + * @throws IOException if the JSON string is invalid with respect to DocumentConfigContentTypes + */ + public static DocumentConfigContentTypes fromJson(String jsonString) throws IOException { + return JSON.getGson().fromJson(jsonString, DocumentConfigContentTypes.class); + } + + /** + * Convert an instance of DocumentConfigContentTypes to an JSON string + * + * @return JSON string + */ + public String toJson() { + return JSON.getGson().toJson(this); + } +} + diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextAttribute.java b/src/main/java/com/formkiq/client/model/DocumentFulltextAttribute.java index 62969687f..5d786a473 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextAttribute.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocumentFulltextAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextAttribute { public static final String SERIALIZED_NAME_EQ = "eq"; diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextAttributeEq.java b/src/main/java/com/formkiq/client/model/DocumentFulltextAttributeEq.java index df6695988..19ad29d6a 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextAttributeEq.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextAttributeEq.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentFulltextAttributeEq */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextAttributeEq { public static final String SERIALIZED_NAME_STRING_VALUE = "stringValue"; diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextRequest.java b/src/main/java/com/formkiq/client/model/DocumentFulltextRequest.java index e08f96267..54fdc57a2 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextRequest.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Document full text search */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextRequest { public static final String SERIALIZED_NAME_QUERY = "query"; diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextResponse.java b/src/main/java/com/formkiq/client/model/DocumentFulltextResponse.java index ebdd8314a..af46269e5 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,9 +61,14 @@ * DocumentFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextResponse { + public static final String SERIALIZED_NAME_TOTAL_COUNT = "totalCount"; + @SerializedName(SERIALIZED_NAME_TOTAL_COUNT) + @javax.annotation.Nullable + private Integer totalCount; + public static final String SERIALIZED_NAME_DOCUMENTS = "documents"; @SerializedName(SERIALIZED_NAME_DOCUMENTS) @javax.annotation.Nullable @@ -71,6 +76,28 @@ public class DocumentFulltextResponse { public DocumentFulltextResponse() {} + public DocumentFulltextResponse totalCount(@javax.annotation.Nullable Integer totalCount) { + this.totalCount = totalCount; + return this; + } + + /** + * Total number of documents that matched the search query. When the number of matches exceeds + * 10,000, this value will be reported as 10,000+ unless the search request explicitly enables + * exact total hit tracking. + * + * @return totalCount + */ + @javax.annotation.Nullable + public Integer getTotalCount() { + return totalCount; + } + + public void setTotalCount(@javax.annotation.Nullable Integer totalCount) { + this.totalCount = totalCount; + } + + public DocumentFulltextResponse documents( @javax.annotation.Nullable List documents) { this.documents = documents; @@ -110,18 +137,20 @@ public boolean equals(Object o) { return false; } DocumentFulltextResponse documentFulltextResponse = (DocumentFulltextResponse) o; - return Objects.equals(this.documents, documentFulltextResponse.documents); + return Objects.equals(this.totalCount, documentFulltextResponse.totalCount) + && Objects.equals(this.documents, documentFulltextResponse.documents); } @Override public int hashCode() { - return Objects.hash(documents); + return Objects.hash(totalCount, documents); } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class DocumentFulltextResponse {\n"); + sb.append(" totalCount: ").append(toIndentedString(totalCount)).append("\n"); sb.append(" documents: ").append(toIndentedString(documents)).append("\n"); sb.append("}"); return sb.toString(); @@ -143,7 +172,7 @@ private String toIndentedString(Object o) { static { // a set of all properties/fields (JSON key names) - openapiFields = new HashSet(Arrays.asList("documents")); + openapiFields = new HashSet(Arrays.asList("totalCount", "documents")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(0); diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextSearch.java b/src/main/java/com/formkiq/client/model/DocumentFulltextSearch.java index 94eaadbf3..3891d77d6 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextSearch.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextSearch.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * Document full text search criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextSearch { public static final String SERIALIZED_NAME_PAGE = "page"; diff --git a/src/main/java/com/formkiq/client/model/DocumentFulltextTag.java b/src/main/java/com/formkiq/client/model/DocumentFulltextTag.java index 20272c5c1..9511d2d06 100644 --- a/src/main/java/com/formkiq/client/model/DocumentFulltextTag.java +++ b/src/main/java/com/formkiq/client/model/DocumentFulltextTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * DocumentFulltextTag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentFulltextTag { public static final String SERIALIZED_NAME_EQ = "eq"; diff --git a/src/main/java/com/formkiq/client/model/DocumentGenerateDataSource.java b/src/main/java/com/formkiq/client/model/DocumentGenerateDataSource.java index 557037c0c..549add6c7 100644 --- a/src/main/java/com/formkiq/client/model/DocumentGenerateDataSource.java +++ b/src/main/java/com/formkiq/client/model/DocumentGenerateDataSource.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocumentGenerateDataSource */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentGenerateDataSource { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocument.java b/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocument.java index f68976560..1d8400b69 100644 --- a/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocument.java +++ b/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentGenerateInsertDocument */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentGenerateInsertDocument { public static final String SERIALIZED_NAME_POSITION = "position"; diff --git a/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPosition.java b/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPosition.java index 36d509ff6..05111e4ab 100644 --- a/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPosition.java +++ b/src/main/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPosition.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentGenerateOutputType.java b/src/main/java/com/formkiq/client/model/DocumentGenerateOutputType.java index 23a967388..a8b737677 100644 --- a/src/main/java/com/formkiq/client/model/DocumentGenerateOutputType.java +++ b/src/main/java/com/formkiq/client/model/DocumentGenerateOutputType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentId.java b/src/main/java/com/formkiq/client/model/DocumentId.java index 0892b89fa..122066af6 100644 --- a/src/main/java/com/formkiq/client/model/DocumentId.java +++ b/src/main/java/com/formkiq/client/model/DocumentId.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocumentId */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentId { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/DocumentMetadata.java b/src/main/java/com/formkiq/client/model/DocumentMetadata.java index f8aa7a4d0..5e3241aad 100644 --- a/src/main/java/com/formkiq/client/model/DocumentMetadata.java +++ b/src/main/java/com/formkiq/client/model/DocumentMetadata.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Document Metadata (use either 'value' or 'values' not both) */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentMetadata { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/DocumentRelationshipType.java b/src/main/java/com/formkiq/client/model/DocumentRelationshipType.java index 4e160720f..981170d0a 100644 --- a/src/main/java/com/formkiq/client/model/DocumentRelationshipType.java +++ b/src/main/java/com/formkiq/client/model/DocumentRelationshipType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentSearch.java b/src/main/java/com/formkiq/client/model/DocumentSearch.java index d990800b3..01860f130 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearch.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearch.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * Document tag search criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearch { public static final String SERIALIZED_NAME_TEXT = "text"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchAttribute.java b/src/main/java/com/formkiq/client/model/DocumentSearchAttribute.java index c441b7473..fe25c3414 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchAttribute.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocumentSearchAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchAttribute { public static final String SERIALIZED_NAME_EQ = "eq"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchMatchAttribute.java b/src/main/java/com/formkiq/client/model/DocumentSearchMatchAttribute.java index 78f9c0fec..62babef96 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchMatchAttribute.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchMatchAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentSearchMatchAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchMatchAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchMatchTag.java b/src/main/java/com/formkiq/client/model/DocumentSearchMatchTag.java index ac0b13a41..70a492fb1 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchMatchTag.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchMatchTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocumentSearchMatchTag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchMatchTag { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchMeta.java b/src/main/java/com/formkiq/client/model/DocumentSearchMeta.java index 4f11fdff3..5c85a0e58 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchMeta.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchMeta.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocumentSearchMeta */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchMeta { public static final String SERIALIZED_NAME_FOLDER = "folder"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchRange.java b/src/main/java/com/formkiq/client/model/DocumentSearchRange.java index e1845168a..08f2cdd3d 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchRange.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchRange.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentSearchRange */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchRange { public static final String SERIALIZED_NAME_START = "start"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchRequest.java b/src/main/java/com/formkiq/client/model/DocumentSearchRequest.java index 8db642247..3d7b8bb7a 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchRequest.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Document search tag criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchRequest { public static final String SERIALIZED_NAME_QUERY = "query"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchResponse.java b/src/main/java/com/formkiq/client/model/DocumentSearchResponse.java index 528d70868..a8b648ab7 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchResponse.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocumentSearchResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchTag.java b/src/main/java/com/formkiq/client/model/DocumentSearchTag.java index e3a7c6e89..22b0c1037 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchTag.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocumentSearchTag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchTag { public static final String SERIALIZED_NAME_BEGINS_WITH = "beginsWith"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSearchTags.java b/src/main/java/com/formkiq/client/model/DocumentSearchTags.java index 89fb3cc18..9e2b02ca3 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSearchTags.java +++ b/src/main/java/com/formkiq/client/model/DocumentSearchTags.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentSearchTags */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSearchTags { public static final String SERIALIZED_NAME_EQ = "eq"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSync.java b/src/main/java/com/formkiq/client/model/DocumentSync.java index 28ea1d37c..fd267e37d 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSync.java +++ b/src/main/java/com/formkiq/client/model/DocumentSync.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocumentSync */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentSync { public static final String SERIALIZED_NAME_SERVICE = "service"; diff --git a/src/main/java/com/formkiq/client/model/DocumentSyncService.java b/src/main/java/com/formkiq/client/model/DocumentSyncService.java index e059372cc..017c841f9 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSyncService.java +++ b/src/main/java/com/formkiq/client/model/DocumentSyncService.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentSyncStatus.java b/src/main/java/com/formkiq/client/model/DocumentSyncStatus.java index d44988808..65b0126e5 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSyncStatus.java +++ b/src/main/java/com/formkiq/client/model/DocumentSyncStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentSyncType.java b/src/main/java/com/formkiq/client/model/DocumentSyncType.java index 5705b59d5..ecd80bdc0 100644 --- a/src/main/java/com/formkiq/client/model/DocumentSyncType.java +++ b/src/main/java/com/formkiq/client/model/DocumentSyncType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentTag.java b/src/main/java/com/formkiq/client/model/DocumentTag.java index 8e4a9314c..a56b20e51 100644 --- a/src/main/java/com/formkiq/client/model/DocumentTag.java +++ b/src/main/java/com/formkiq/client/model/DocumentTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * DocumentTag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentTag { public static final String SERIALIZED_NAME_INSERTED_DATE = "insertedDate"; diff --git a/src/main/java/com/formkiq/client/model/DocumentVersion.java b/src/main/java/com/formkiq/client/model/DocumentVersion.java index 17795544b..b0f131aa6 100644 --- a/src/main/java/com/formkiq/client/model/DocumentVersion.java +++ b/src/main/java/com/formkiq/client/model/DocumentVersion.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentVersion */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentVersion { public static final String SERIALIZED_NAME_INSERTED_DATE = "insertedDate"; diff --git a/src/main/java/com/formkiq/client/model/DocumentWorkflow.java b/src/main/java/com/formkiq/client/model/DocumentWorkflow.java index 0dc1c2a98..e80b2dbb3 100644 --- a/src/main/java/com/formkiq/client/model/DocumentWorkflow.java +++ b/src/main/java/com/formkiq/client/model/DocumentWorkflow.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocumentWorkflow */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentWorkflow { public static final String SERIALIZED_NAME_WORKFLOW_ID = "workflowId"; diff --git a/src/main/java/com/formkiq/client/model/DocumentWorkflowStatus.java b/src/main/java/com/formkiq/client/model/DocumentWorkflowStatus.java index 3277c0b11..5f5675b67 100644 --- a/src/main/java/com/formkiq/client/model/DocumentWorkflowStatus.java +++ b/src/main/java/com/formkiq/client/model/DocumentWorkflowStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocumentsCompressRequest.java b/src/main/java/com/formkiq/client/model/DocumentsCompressRequest.java index 65d800673..31c0f1229 100644 --- a/src/main/java/com/formkiq/client/model/DocumentsCompressRequest.java +++ b/src/main/java/com/formkiq/client/model/DocumentsCompressRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * DocumentsCompressRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentsCompressRequest { public static final String SERIALIZED_NAME_DOCUMENT_IDS = "documentIds"; diff --git a/src/main/java/com/formkiq/client/model/DocumentsCompressResponse.java b/src/main/java/com/formkiq/client/model/DocumentsCompressResponse.java index aa7fdd437..0a03ab4c2 100644 --- a/src/main/java/com/formkiq/client/model/DocumentsCompressResponse.java +++ b/src/main/java/com/formkiq/client/model/DocumentsCompressResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocumentsCompressResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocumentsCompressResponse { public static final String SERIALIZED_NAME_DOWNLOAD_URL = "downloadUrl"; diff --git a/src/main/java/com/formkiq/client/model/DocusignConfig.java b/src/main/java/com/formkiq/client/model/DocusignConfig.java index 5c113e583..c0a81c006 100644 --- a/src/main/java/com/formkiq/client/model/DocusignConfig.java +++ b/src/main/java/com/formkiq/client/model/DocusignConfig.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocusignConfig */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignConfig { public static final String SERIALIZED_NAME_USER_ID = "userId"; diff --git a/src/main/java/com/formkiq/client/model/DocusignEnvironment.java b/src/main/java/com/formkiq/client/model/DocusignEnvironment.java index 7e7f17ca9..03a39574d 100644 --- a/src/main/java/com/formkiq/client/model/DocusignEnvironment.java +++ b/src/main/java/com/formkiq/client/model/DocusignEnvironment.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/DocusignInpersonSigner.java b/src/main/java/com/formkiq/client/model/DocusignInpersonSigner.java index e30e2ca9d..ffcbf3c2f 100644 --- a/src/main/java/com/formkiq/client/model/DocusignInpersonSigner.java +++ b/src/main/java/com/formkiq/client/model/DocusignInpersonSigner.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocusignInpersonSigner */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignInpersonSigner { public static final String SERIALIZED_NAME_HOST_EMAIL = "hostEmail"; diff --git a/src/main/java/com/formkiq/client/model/DocusignNotification.java b/src/main/java/com/formkiq/client/model/DocusignNotification.java index 840355b95..530562dc4 100644 --- a/src/main/java/com/formkiq/client/model/DocusignNotification.java +++ b/src/main/java/com/formkiq/client/model/DocusignNotification.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * DocusignNotification */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignNotification { public static final String SERIALIZED_NAME_USE_ACCOUNT_DEFAULTS = "useAccountDefaults"; diff --git a/src/main/java/com/formkiq/client/model/DocusignNotificationExpirations.java b/src/main/java/com/formkiq/client/model/DocusignNotificationExpirations.java index 0b3211507..4404e49e4 100644 --- a/src/main/java/com/formkiq/client/model/DocusignNotificationExpirations.java +++ b/src/main/java/com/formkiq/client/model/DocusignNotificationExpirations.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocusignNotificationExpirations */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignNotificationExpirations { public static final String SERIALIZED_NAME_EXPIRE_AFTER = "expireAfter"; diff --git a/src/main/java/com/formkiq/client/model/DocusignNotificationReminders.java b/src/main/java/com/formkiq/client/model/DocusignNotificationReminders.java index e5e0a1b01..bf18b97d1 100644 --- a/src/main/java/com/formkiq/client/model/DocusignNotificationReminders.java +++ b/src/main/java/com/formkiq/client/model/DocusignNotificationReminders.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocusignNotificationReminders */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignNotificationReminders { public static final String SERIALIZED_NAME_REMINDER_DELAY = "reminderDelay"; diff --git a/src/main/java/com/formkiq/client/model/DocusignRecipientView.java b/src/main/java/com/formkiq/client/model/DocusignRecipientView.java index f4660a45e..f0425e4b2 100644 --- a/src/main/java/com/formkiq/client/model/DocusignRecipientView.java +++ b/src/main/java/com/formkiq/client/model/DocusignRecipientView.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * DocusignRecipientView */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignRecipientView { public static final String SERIALIZED_NAME_RETURN_URL = "returnUrl"; diff --git a/src/main/java/com/formkiq/client/model/DocusignSignHereTabs.java b/src/main/java/com/formkiq/client/model/DocusignSignHereTabs.java index 9706eb220..bea23ef83 100644 --- a/src/main/java/com/formkiq/client/model/DocusignSignHereTabs.java +++ b/src/main/java/com/formkiq/client/model/DocusignSignHereTabs.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * DocusignSignHereTabs */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignSignHereTabs { public static final String SERIALIZED_NAME_ANCHOR_STRING = "anchorString"; diff --git a/src/main/java/com/formkiq/client/model/DocusignSigner.java b/src/main/java/com/formkiq/client/model/DocusignSigner.java index b53338f09..2f1122c46 100644 --- a/src/main/java/com/formkiq/client/model/DocusignSigner.java +++ b/src/main/java/com/formkiq/client/model/DocusignSigner.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * DocusignSigner */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignSigner { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/DocusignSigningTabs.java b/src/main/java/com/formkiq/client/model/DocusignSigningTabs.java index 2628329ed..998f8b829 100644 --- a/src/main/java/com/formkiq/client/model/DocusignSigningTabs.java +++ b/src/main/java/com/formkiq/client/model/DocusignSigningTabs.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * DocusignSigningTabs */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class DocusignSigningTabs { public static final String SERIALIZED_NAME_SIGN_HERE_TABS = "signHereTabs"; diff --git a/src/main/java/com/formkiq/client/model/Entity.java b/src/main/java/com/formkiq/client/model/Entity.java index dfe6b644a..b435be1df 100644 --- a/src/main/java/com/formkiq/client/model/Entity.java +++ b/src/main/java/com/formkiq/client/model/Entity.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Entity */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Entity { public static final String SERIALIZED_NAME_ENTITY_ID = "entityId"; diff --git a/src/main/java/com/formkiq/client/model/EntityAttribute.java b/src/main/java/com/formkiq/client/model/EntityAttribute.java index 6caab5946..853cff468 100644 --- a/src/main/java/com/formkiq/client/model/EntityAttribute.java +++ b/src/main/java/com/formkiq/client/model/EntityAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * EntityAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class EntityAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/EntityType.java b/src/main/java/com/formkiq/client/model/EntityType.java index c4b107b3d..8998871bd 100644 --- a/src/main/java/com/formkiq/client/model/EntityType.java +++ b/src/main/java/com/formkiq/client/model/EntityType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * EntityType */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class EntityType { public static final String SERIALIZED_NAME_ENTITY_TYPE_ID = "entityTypeId"; diff --git a/src/main/java/com/formkiq/client/model/EntityTypeNamespace.java b/src/main/java/com/formkiq/client/model/EntityTypeNamespace.java index 8cbf3002f..533388e70 100644 --- a/src/main/java/com/formkiq/client/model/EntityTypeNamespace.java +++ b/src/main/java/com/formkiq/client/model/EntityTypeNamespace.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/Error.java b/src/main/java/com/formkiq/client/model/Error.java index 41e059e6d..890335aad 100644 --- a/src/main/java/com/formkiq/client/model/Error.java +++ b/src/main/java/com/formkiq/client/model/Error.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Error */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Error { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/ErrorsResponse.java b/src/main/java/com/formkiq/client/model/ErrorsResponse.java index ec413231e..bef0be7cf 100644 --- a/src/main/java/com/formkiq/client/model/ErrorsResponse.java +++ b/src/main/java/com/formkiq/client/model/ErrorsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * ErrorsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ErrorsResponse { public static final String SERIALIZED_NAME_ERRORS = "errors"; diff --git a/src/main/java/com/formkiq/client/model/FolderPermission.java b/src/main/java/com/formkiq/client/model/FolderPermission.java index 582721b45..f5159e3e3 100644 --- a/src/main/java/com/formkiq/client/model/FolderPermission.java +++ b/src/main/java/com/formkiq/client/model/FolderPermission.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * FolderPermission */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class FolderPermission { public static final String SERIALIZED_NAME_ROLE_NAME = "roleName"; diff --git a/src/main/java/com/formkiq/client/model/FolderPermissionType.java b/src/main/java/com/formkiq/client/model/FolderPermissionType.java index 9604d0a2a..4fc284774 100644 --- a/src/main/java/com/formkiq/client/model/FolderPermissionType.java +++ b/src/main/java/com/formkiq/client/model/FolderPermissionType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/FulltextAttribute.java b/src/main/java/com/formkiq/client/model/FulltextAttribute.java index 76af53bc8..f7bdff0f1 100644 --- a/src/main/java/com/formkiq/client/model/FulltextAttribute.java +++ b/src/main/java/com/formkiq/client/model/FulltextAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * FulltextAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class FulltextAttribute { public static final String SERIALIZED_NAME_STRING_VALUES = "stringValues"; diff --git a/src/main/java/com/formkiq/client/model/FulltextSearchItem.java b/src/main/java/com/formkiq/client/model/FulltextSearchItem.java index a60f83117..ec8b67ba0 100644 --- a/src/main/java/com/formkiq/client/model/FulltextSearchItem.java +++ b/src/main/java/com/formkiq/client/model/FulltextSearchItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * FulltextSearchItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class FulltextSearchItem { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/GetActivitesResponse.java b/src/main/java/com/formkiq/client/model/GetActivitesResponse.java index 805573338..b84c90f7a 100644 --- a/src/main/java/com/formkiq/client/model/GetActivitesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetActivitesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetActivitesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetActivitesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetApiKeysResponse.java b/src/main/java/com/formkiq/client/model/GetApiKeysResponse.java index 2589e8dba..7bc5cfa93 100644 --- a/src/main/java/com/formkiq/client/model/GetApiKeysResponse.java +++ b/src/main/java/com/formkiq/client/model/GetApiKeysResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetApiKeysResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetApiKeysResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetAttributeAllowedValuesResponse.java b/src/main/java/com/formkiq/client/model/GetAttributeAllowedValuesResponse.java index 49aa4fd24..b9463adfa 100644 --- a/src/main/java/com/formkiq/client/model/GetAttributeAllowedValuesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetAttributeAllowedValuesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * GetAttributeAllowedValuesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetAttributeAllowedValuesResponse { public static final String SERIALIZED_NAME_ALLOWED_VALUES = "allowedValues"; diff --git a/src/main/java/com/formkiq/client/model/GetAttributeResponse.java b/src/main/java/com/formkiq/client/model/GetAttributeResponse.java index 616601d7b..f3d50dfd5 100644 --- a/src/main/java/com/formkiq/client/model/GetAttributeResponse.java +++ b/src/main/java/com/formkiq/client/model/GetAttributeResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetAttributeResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetAttributeResponse { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/GetAttributesResponse.java b/src/main/java/com/formkiq/client/model/GetAttributesResponse.java index e78e29e99..2e9e98d69 100644 --- a/src/main/java/com/formkiq/client/model/GetAttributesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetAttributesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetAttributesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetAttributesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseDocumentsResponse.java b/src/main/java/com/formkiq/client/model/GetCaseDocumentsResponse.java index 032152c2b..3ced8cff8 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseDocumentsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseDocumentsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetCaseDocumentsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseDocumentsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseNigoResponse.java b/src/main/java/com/formkiq/client/model/GetCaseNigoResponse.java index 7314ccdde..d38807059 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseNigoResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseNigoResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetCaseNigoResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseNigoResponse { public static final String SERIALIZED_NAME_NIGO = "nigo"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseNigosResponse.java b/src/main/java/com/formkiq/client/model/GetCaseNigosResponse.java index 118878a32..71e6f633e 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseNigosResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseNigosResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetCaseNigosResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseNigosResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseResponse.java b/src/main/java/com/formkiq/client/model/GetCaseResponse.java index acf2665da..9d8153616 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetCaseResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseResponse { public static final String SERIALIZED_NAME_CASE = "case"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseTaskResponse.java b/src/main/java/com/formkiq/client/model/GetCaseTaskResponse.java index 4eaba3981..a515ad654 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseTaskResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseTaskResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetCaseTaskResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseTaskResponse { public static final String SERIALIZED_NAME_TASK = "task"; diff --git a/src/main/java/com/formkiq/client/model/GetCaseTasksResponse.java b/src/main/java/com/formkiq/client/model/GetCaseTasksResponse.java index d8875a438..c77a70a79 100644 --- a/src/main/java/com/formkiq/client/model/GetCaseTasksResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCaseTasksResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetCaseTasksResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCaseTasksResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetCasesResponse.java b/src/main/java/com/formkiq/client/model/GetCasesResponse.java index 2b04ae6a2..c25026c0e 100644 --- a/src/main/java/com/formkiq/client/model/GetCasesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetCasesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetCasesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetCasesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetClassificationResponse.java b/src/main/java/com/formkiq/client/model/GetClassificationResponse.java index a40a24c22..27928e068 100644 --- a/src/main/java/com/formkiq/client/model/GetClassificationResponse.java +++ b/src/main/java/com/formkiq/client/model/GetClassificationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetClassificationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetClassificationResponse { public static final String SERIALIZED_NAME_CLASSIFICATION = "classification"; diff --git a/src/main/java/com/formkiq/client/model/GetClassificationsResponse.java b/src/main/java/com/formkiq/client/model/GetClassificationsResponse.java index d067aa4ab..fceb36b9c 100644 --- a/src/main/java/com/formkiq/client/model/GetClassificationsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetClassificationsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetClassificationsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetClassificationsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetConfigurationResponse.java b/src/main/java/com/formkiq/client/model/GetConfigurationResponse.java index a626bda29..84135bcc4 100644 --- a/src/main/java/com/formkiq/client/model/GetConfigurationResponse.java +++ b/src/main/java/com/formkiq/client/model/GetConfigurationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -22,6 +22,7 @@ import java.util.Objects; import java.util.Locale; +import com.formkiq.client.model.DocumentConfig; import com.formkiq.client.model.DocusignConfig; import com.formkiq.client.model.GoogleConfig; import com.formkiq.client.model.OcrConfig; @@ -61,7 +62,7 @@ * GetConfigurationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetConfigurationResponse { public static final String SERIALIZED_NAME_CHAT_GPT_API_KEY = "chatGptApiKey"; @@ -89,6 +90,11 @@ public class GetConfigurationResponse { @javax.annotation.Nullable private String notificationEmail; + public static final String SERIALIZED_NAME_DOCUMENT = "document"; + @SerializedName(SERIALIZED_NAME_DOCUMENT) + @javax.annotation.Nullable + private DocumentConfig document; + public static final String SERIALIZED_NAME_OCR = "ocr"; @SerializedName(SERIALIZED_NAME_OCR) @javax.annotation.Nullable @@ -208,6 +214,26 @@ public void setNotificationEmail(@javax.annotation.Nullable String notificationE } + public GetConfigurationResponse document(@javax.annotation.Nullable DocumentConfig document) { + this.document = document; + return this; + } + + /** + * Get document + * + * @return document + */ + @javax.annotation.Nullable + public DocumentConfig getDocument() { + return document; + } + + public void setDocument(@javax.annotation.Nullable DocumentConfig document) { + this.document = document; + } + + public GetConfigurationResponse ocr(@javax.annotation.Nullable OcrConfig ocr) { this.ocr = ocr; return this; @@ -284,6 +310,7 @@ public boolean equals(Object o) { && Objects.equals(this.maxDocuments, getConfigurationResponse.maxDocuments) && Objects.equals(this.maxWebhooks, getConfigurationResponse.maxWebhooks) && Objects.equals(this.notificationEmail, getConfigurationResponse.notificationEmail) + && Objects.equals(this.document, getConfigurationResponse.document) && Objects.equals(this.ocr, getConfigurationResponse.ocr) && Objects.equals(this.google, getConfigurationResponse.google) && Objects.equals(this.docusign, getConfigurationResponse.docusign); @@ -292,7 +319,7 @@ public boolean equals(Object o) { @Override public int hashCode() { return Objects.hash(chatGptApiKey, maxContentLengthBytes, maxDocuments, maxWebhooks, - notificationEmail, ocr, google, docusign); + notificationEmail, document, ocr, google, docusign); } @Override @@ -305,6 +332,7 @@ public String toString() { sb.append(" maxDocuments: ").append(toIndentedString(maxDocuments)).append("\n"); sb.append(" maxWebhooks: ").append(toIndentedString(maxWebhooks)).append("\n"); sb.append(" notificationEmail: ").append(toIndentedString(notificationEmail)).append("\n"); + sb.append(" document: ").append(toIndentedString(document)).append("\n"); sb.append(" ocr: ").append(toIndentedString(ocr)).append("\n"); sb.append(" google: ").append(toIndentedString(google)).append("\n"); sb.append(" docusign: ").append(toIndentedString(docusign)).append("\n"); @@ -328,8 +356,9 @@ private String toIndentedString(Object o) { static { // a set of all properties/fields (JSON key names) - openapiFields = new HashSet(Arrays.asList("chatGptApiKey", "maxContentLengthBytes", - "maxDocuments", "maxWebhooks", "notificationEmail", "ocr", "google", "docusign")); + openapiFields = + new HashSet(Arrays.asList("chatGptApiKey", "maxContentLengthBytes", "maxDocuments", + "maxWebhooks", "notificationEmail", "document", "ocr", "google", "docusign")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(0); @@ -392,6 +421,10 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti "Expected the field `notificationEmail` to be a primitive type in the JSON string but got `%s`", jsonObj.get("notificationEmail").toString())); } + // validate the optional field `document` + if (jsonObj.get("document") != null && !jsonObj.get("document").isJsonNull()) { + DocumentConfig.validateJsonElement(jsonObj.get("document")); + } // validate the optional field `ocr` if (jsonObj.get("ocr") != null && !jsonObj.get("ocr").isJsonNull()) { OcrConfig.validateJsonElement(jsonObj.get("ocr")); diff --git a/src/main/java/com/formkiq/client/model/GetDocumentActionsResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentActionsResponse.java index 2758bdc68..8e69e320f 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentActionsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentActionsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentActionsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentActionsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentAttributeResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentAttributeResponse.java index 970e4e797..27d9ab602 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentAttributeResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentAttributeResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetDocumentAttributeResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentAttributeResponse { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentAttributesResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentAttributesResponse.java index 7e00c4bdd..561ca807e 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentAttributesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentAttributesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentAttributesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentAttributesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentContentResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentContentResponse.java index 89a243891..f0471222f 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentContentResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentContentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GetDocumentContentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentContentResponse { public static final String SERIALIZED_NAME_CONTENT = "content"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentDataClassificationResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentDataClassificationResponse.java index 4dd808835..3595967d5 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentDataClassificationResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentDataClassificationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentDataClassificationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentDataClassificationResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentFulltextResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentFulltextResponse.java index 1b59cfbca..709406771 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * GetDocumentFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentFulltextResponse { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentOcrResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentOcrResponse.java index c3181fc2b..5a81a8d54 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentOcrResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentOcrResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * GetDocumentOcrResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentOcrResponse { public static final String SERIALIZED_NAME_CONTENT_URLS = "contentUrls"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentResponse.java index 3d0b3e18d..8bd232a75 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * GetDocumentResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentResponse { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentSyncResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentSyncResponse.java index 89d060f46..992cad72d 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentSyncResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentSyncResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentSyncResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentSyncResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentTagResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentTagResponse.java index 9e703db4e..63169db57 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentTagResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentTagResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * GetDocumentTagResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentTagResponse { public static final String SERIALIZED_NAME_INSERTED_DATE = "insertedDate"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentTagsResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentTagsResponse.java index f3967f453..eb6ca6fbe 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentTagsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentTagsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentTagsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentTagsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentUrlResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentUrlResponse.java index 54975804f..07cef789b 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentUrlResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentUrlResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * GetDocumentUrlResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentUrlResponse { public static final String SERIALIZED_NAME_DOCUMENT_ID = "documentId"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentVersionsResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentVersionsResponse.java index e7d6afb7c..61641a0e3 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentVersionsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentVersionsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentVersionsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentVersionsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentWorkflowResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentWorkflowResponse.java index 8600b6f81..a90a604c1 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetDocumentWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentWorkflowResponse { public static final String SERIALIZED_NAME_WORKFLOW = "workflow"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentWorkflowsResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentWorkflowsResponse.java index e4d7e3d90..404b15752 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentWorkflowsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentWorkflowsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentWorkflowsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentWorkflowsResponse { public static final String SERIALIZED_NAME_WORKFLOWS = "workflows"; diff --git a/src/main/java/com/formkiq/client/model/GetDocumentsResponse.java b/src/main/java/com/formkiq/client/model/GetDocumentsResponse.java index 1762f6ade..fc7fc1047 100644 --- a/src/main/java/com/formkiq/client/model/GetDocumentsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetDocumentsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetDocumentsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetDocumentsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetEntitiesResponse.java b/src/main/java/com/formkiq/client/model/GetEntitiesResponse.java index aa90e9e42..f47ab9cfb 100644 --- a/src/main/java/com/formkiq/client/model/GetEntitiesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetEntitiesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetEntitiesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetEntitiesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetEntityResponse.java b/src/main/java/com/formkiq/client/model/GetEntityResponse.java index 568d65d5b..f4dcc634d 100644 --- a/src/main/java/com/formkiq/client/model/GetEntityResponse.java +++ b/src/main/java/com/formkiq/client/model/GetEntityResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetEntityResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetEntityResponse { public static final String SERIALIZED_NAME_ENTITY = "entity"; diff --git a/src/main/java/com/formkiq/client/model/GetEntityTypeResponse.java b/src/main/java/com/formkiq/client/model/GetEntityTypeResponse.java index 6b59b7a94..6227a55fa 100644 --- a/src/main/java/com/formkiq/client/model/GetEntityTypeResponse.java +++ b/src/main/java/com/formkiq/client/model/GetEntityTypeResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetEntityTypeResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetEntityTypeResponse { public static final String SERIALIZED_NAME_ENTITY_TYPE = "entityType"; diff --git a/src/main/java/com/formkiq/client/model/GetEntityTypesResponse.java b/src/main/java/com/formkiq/client/model/GetEntityTypesResponse.java index 2f2a27990..89d769308 100644 --- a/src/main/java/com/formkiq/client/model/GetEntityTypesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetEntityTypesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetEntityTypesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetEntityTypesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetExaminePdfResponse.java b/src/main/java/com/formkiq/client/model/GetExaminePdfResponse.java index 3da53cdce..d2bb57c8d 100644 --- a/src/main/java/com/formkiq/client/model/GetExaminePdfResponse.java +++ b/src/main/java/com/formkiq/client/model/GetExaminePdfResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetExaminePdfResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetExaminePdfResponse { public static final String SERIALIZED_NAME_FILEINFO = "fileinfo"; diff --git a/src/main/java/com/formkiq/client/model/GetExaminePdfUrlResponse.java b/src/main/java/com/formkiq/client/model/GetExaminePdfUrlResponse.java index 7cecc7eae..21ab83490 100644 --- a/src/main/java/com/formkiq/client/model/GetExaminePdfUrlResponse.java +++ b/src/main/java/com/formkiq/client/model/GetExaminePdfUrlResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GetExaminePdfUrlResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetExaminePdfUrlResponse { public static final String SERIALIZED_NAME_ID = "id"; diff --git a/src/main/java/com/formkiq/client/model/GetFolderPermissionsResponse.java b/src/main/java/com/formkiq/client/model/GetFolderPermissionsResponse.java index e26c2c936..12bc78947 100644 --- a/src/main/java/com/formkiq/client/model/GetFolderPermissionsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetFolderPermissionsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetFolderPermissionsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetFolderPermissionsResponse { public static final String SERIALIZED_NAME_ROLES = "roles"; diff --git a/src/main/java/com/formkiq/client/model/GetFoldersResponse.java b/src/main/java/com/formkiq/client/model/GetFoldersResponse.java index 0f8ae3178..6c1b18fba 100644 --- a/src/main/java/com/formkiq/client/model/GetFoldersResponse.java +++ b/src/main/java/com/formkiq/client/model/GetFoldersResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetFoldersResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetFoldersResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetGroupResponse.java b/src/main/java/com/formkiq/client/model/GetGroupResponse.java index 7173ef4f5..075fb86d8 100644 --- a/src/main/java/com/formkiq/client/model/GetGroupResponse.java +++ b/src/main/java/com/formkiq/client/model/GetGroupResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetGroupResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetGroupResponse { public static final String SERIALIZED_NAME_GROUP = "group"; diff --git a/src/main/java/com/formkiq/client/model/GetGroupsResponse.java b/src/main/java/com/formkiq/client/model/GetGroupsResponse.java index 77eae3457..629332d6a 100644 --- a/src/main/java/com/formkiq/client/model/GetGroupsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetGroupsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetGroupsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetGroupsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetLocaleResourceItemResponse.java b/src/main/java/com/formkiq/client/model/GetLocaleResourceItemResponse.java index 816ab9954..bbec0fae6 100644 --- a/src/main/java/com/formkiq/client/model/GetLocaleResourceItemResponse.java +++ b/src/main/java/com/formkiq/client/model/GetLocaleResourceItemResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetLocaleResourceItemResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetLocaleResourceItemResponse { public static final String SERIALIZED_NAME_RESOURCE_ITEM = "resourceItem"; diff --git a/src/main/java/com/formkiq/client/model/GetLocaleResourceItemsResponse.java b/src/main/java/com/formkiq/client/model/GetLocaleResourceItemsResponse.java index ec83f4673..772c3f0cb 100644 --- a/src/main/java/com/formkiq/client/model/GetLocaleResourceItemsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetLocaleResourceItemsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetLocaleResourceItemsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetLocaleResourceItemsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetLocalesResponse.java b/src/main/java/com/formkiq/client/model/GetLocalesResponse.java index 73e5a0d8b..421880b83 100644 --- a/src/main/java/com/formkiq/client/model/GetLocalesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetLocalesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetLocalesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetLocalesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetMalwareScanResponse.java b/src/main/java/com/formkiq/client/model/GetMalwareScanResponse.java index 4f0951d85..2eaee9dd9 100644 --- a/src/main/java/com/formkiq/client/model/GetMalwareScanResponse.java +++ b/src/main/java/com/formkiq/client/model/GetMalwareScanResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetMalwareScanResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetMalwareScanResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetMappingResponse.java b/src/main/java/com/formkiq/client/model/GetMappingResponse.java index 9dc380655..1ce3ab4cd 100644 --- a/src/main/java/com/formkiq/client/model/GetMappingResponse.java +++ b/src/main/java/com/formkiq/client/model/GetMappingResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetMappingResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetMappingResponse { public static final String SERIALIZED_NAME_MAPPING = "mapping"; diff --git a/src/main/java/com/formkiq/client/model/GetMappingsResponse.java b/src/main/java/com/formkiq/client/model/GetMappingsResponse.java index b44c88cbc..bde63da62 100644 --- a/src/main/java/com/formkiq/client/model/GetMappingsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetMappingsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetMappingsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetMappingsResponse { public static final String SERIALIZED_NAME_MAPPINGS = "mappings"; diff --git a/src/main/java/com/formkiq/client/model/GetOpaAccessPoliciesResponse.java b/src/main/java/com/formkiq/client/model/GetOpaAccessPoliciesResponse.java index 1bd1474a8..32c54caa4 100644 --- a/src/main/java/com/formkiq/client/model/GetOpaAccessPoliciesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpaAccessPoliciesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetOpaAccessPoliciesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpaAccessPoliciesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponse.java b/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponse.java index 821b2fc87..afb381a90 100644 --- a/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetOpaAccessPolicyItemsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpaAccessPolicyItemsResponse { public static final String SERIALIZED_NAME_POLICY_ITEMS = "policyItems"; diff --git a/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyResponse.java b/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyResponse.java index b927c7fb9..2789633a8 100644 --- a/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpaAccessPolicyResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GetOpaAccessPolicyResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpaAccessPolicyResponse { public static final String SERIALIZED_NAME_OPA_POLICY = "opaPolicy"; diff --git a/src/main/java/com/formkiq/client/model/GetOpenSearchIndexResponse.java b/src/main/java/com/formkiq/client/model/GetOpenSearchIndexResponse.java index 23f66f3ab..1dac4663e 100644 --- a/src/main/java/com/formkiq/client/model/GetOpenSearchIndexResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpenSearchIndexResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetOpenSearchIndexResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpenSearchIndexResponse { public static final String SERIALIZED_NAME_INDEX_SETTINGS = "indexSettings"; diff --git a/src/main/java/com/formkiq/client/model/GetOpenSearchIndiceResponse.java b/src/main/java/com/formkiq/client/model/GetOpenSearchIndiceResponse.java index ba7bbd475..b866c44e6 100644 --- a/src/main/java/com/formkiq/client/model/GetOpenSearchIndiceResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpenSearchIndiceResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetOpenSearchIndiceResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpenSearchIndiceResponse { public static final String SERIALIZED_NAME_INDICES = "indices"; diff --git a/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponse.java b/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponse.java index 95cb173f1..20031382f 100644 --- a/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetOpenSearchSnapshotRepositoryResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpenSearchSnapshotRepositoryResponse { public static final String SERIALIZED_NAME_S3_REPOSITORIES = "s3Repositories"; diff --git a/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotResponse.java b/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotResponse.java index fb838c0c2..8e6e85545 100644 --- a/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotResponse.java +++ b/src/main/java/com/formkiq/client/model/GetOpenSearchSnapshotResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetOpenSearchSnapshotResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetOpenSearchSnapshotResponse { public static final String SERIALIZED_NAME_SNAPSHOTS = "snapshots"; diff --git a/src/main/java/com/formkiq/client/model/GetQueueResponse.java b/src/main/java/com/formkiq/client/model/GetQueueResponse.java index 4d2f55971..fa31c4306 100644 --- a/src/main/java/com/formkiq/client/model/GetQueueResponse.java +++ b/src/main/java/com/formkiq/client/model/GetQueueResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GetQueueResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetQueueResponse { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/GetQueuesResponse.java b/src/main/java/com/formkiq/client/model/GetQueuesResponse.java index bd59a5dae..a8c03410d 100644 --- a/src/main/java/com/formkiq/client/model/GetQueuesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetQueuesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetQueuesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetQueuesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetRuleResponse.java b/src/main/java/com/formkiq/client/model/GetRuleResponse.java index b591f202a..73570f80d 100644 --- a/src/main/java/com/formkiq/client/model/GetRuleResponse.java +++ b/src/main/java/com/formkiq/client/model/GetRuleResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetRuleResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetRuleResponse { public static final String SERIALIZED_NAME_RULE = "rule"; diff --git a/src/main/java/com/formkiq/client/model/GetRulesResponse.java b/src/main/java/com/formkiq/client/model/GetRulesResponse.java index 99af9d4a2..7870fe127 100644 --- a/src/main/java/com/formkiq/client/model/GetRulesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetRulesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetRulesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetRulesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetRulesetResponse.java b/src/main/java/com/formkiq/client/model/GetRulesetResponse.java index fdfd71a10..f443f3361 100644 --- a/src/main/java/com/formkiq/client/model/GetRulesetResponse.java +++ b/src/main/java/com/formkiq/client/model/GetRulesetResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetRulesetResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetRulesetResponse { public static final String SERIALIZED_NAME_RULESET = "ruleset"; diff --git a/src/main/java/com/formkiq/client/model/GetRulesetsResponse.java b/src/main/java/com/formkiq/client/model/GetRulesetsResponse.java index 762a47639..9ced1d36a 100644 --- a/src/main/java/com/formkiq/client/model/GetRulesetsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetRulesetsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetRulesetsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetRulesetsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetSiteGroupResponse.java b/src/main/java/com/formkiq/client/model/GetSiteGroupResponse.java index 04e4bf896..cd0fe2262 100644 --- a/src/main/java/com/formkiq/client/model/GetSiteGroupResponse.java +++ b/src/main/java/com/formkiq/client/model/GetSiteGroupResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetSiteGroupResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetSiteGroupResponse { public static final String SERIALIZED_NAME_GROUP = "group"; diff --git a/src/main/java/com/formkiq/client/model/GetSiteGroupsResponse.java b/src/main/java/com/formkiq/client/model/GetSiteGroupsResponse.java index 43baf01ae..8d9b23775 100644 --- a/src/main/java/com/formkiq/client/model/GetSiteGroupsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetSiteGroupsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * GetSiteGroupsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetSiteGroupsResponse { public static final String SERIALIZED_NAME_GROUP_NAMES = "groupNames"; diff --git a/src/main/java/com/formkiq/client/model/GetSitesResponse.java b/src/main/java/com/formkiq/client/model/GetSitesResponse.java index af9d44cc4..b26ff18f9 100644 --- a/src/main/java/com/formkiq/client/model/GetSitesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetSitesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetSitesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetSitesResponse { public static final String SERIALIZED_NAME_USERNAME = "username"; diff --git a/src/main/java/com/formkiq/client/model/GetSitesSchemaResponse.java b/src/main/java/com/formkiq/client/model/GetSitesSchemaResponse.java index 2b6b4ea5a..c2b61f64b 100644 --- a/src/main/java/com/formkiq/client/model/GetSitesSchemaResponse.java +++ b/src/main/java/com/formkiq/client/model/GetSitesSchemaResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetSitesSchemaResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetSitesSchemaResponse { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/GetUserActivitesResponse.java b/src/main/java/com/formkiq/client/model/GetUserActivitesResponse.java index 62ea6deb1..8a627229b 100644 --- a/src/main/java/com/formkiq/client/model/GetUserActivitesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUserActivitesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetUserActivitesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUserActivitesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetUserGroupsResponse.java b/src/main/java/com/formkiq/client/model/GetUserGroupsResponse.java index 33973c6ce..53cd47f6d 100644 --- a/src/main/java/com/formkiq/client/model/GetUserGroupsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUserGroupsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetUserGroupsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUserGroupsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetUserResponse.java b/src/main/java/com/formkiq/client/model/GetUserResponse.java index 01aeebdfa..ed6deafe9 100644 --- a/src/main/java/com/formkiq/client/model/GetUserResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUserResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * GetUserResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUserResponse { public static final String SERIALIZED_NAME_USER = "user"; diff --git a/src/main/java/com/formkiq/client/model/GetUserSharesResponse.java b/src/main/java/com/formkiq/client/model/GetUserSharesResponse.java index 3ee37a6e0..b8ec07850 100644 --- a/src/main/java/com/formkiq/client/model/GetUserSharesResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUserSharesResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetUserSharesResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUserSharesResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetUsersInGroupResponse.java b/src/main/java/com/formkiq/client/model/GetUsersInGroupResponse.java index da37e6e08..77146a671 100644 --- a/src/main/java/com/formkiq/client/model/GetUsersInGroupResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUsersInGroupResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetUsersInGroupResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUsersInGroupResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetUsersResponse.java b/src/main/java/com/formkiq/client/model/GetUsersResponse.java index 309e1e805..a22246d8a 100644 --- a/src/main/java/com/formkiq/client/model/GetUsersResponse.java +++ b/src/main/java/com/formkiq/client/model/GetUsersResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetUsersResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetUsersResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetVersionResponse.java b/src/main/java/com/formkiq/client/model/GetVersionResponse.java index 6c5fbaf6a..4c3b17d5d 100644 --- a/src/main/java/com/formkiq/client/model/GetVersionResponse.java +++ b/src/main/java/com/formkiq/client/model/GetVersionResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * GetVersionResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetVersionResponse { public static final String SERIALIZED_NAME_VERSION = "version"; diff --git a/src/main/java/com/formkiq/client/model/GetWebhookResponse.java b/src/main/java/com/formkiq/client/model/GetWebhookResponse.java index f29465544..2b26cc5af 100644 --- a/src/main/java/com/formkiq/client/model/GetWebhookResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWebhookResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GetWebhookResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWebhookResponse { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/GetWebhookTagsResponse.java b/src/main/java/com/formkiq/client/model/GetWebhookTagsResponse.java index e46183ac0..13a6a3cb8 100644 --- a/src/main/java/com/formkiq/client/model/GetWebhookTagsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWebhookTagsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetWebhookTagsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWebhookTagsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetWebhooksResponse.java b/src/main/java/com/formkiq/client/model/GetWebhooksResponse.java index c2c833f38..4d9d68eb8 100644 --- a/src/main/java/com/formkiq/client/model/GetWebhooksResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWebhooksResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetWebhooksResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWebhooksResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetWorkflowDocumentsResponse.java b/src/main/java/com/formkiq/client/model/GetWorkflowDocumentsResponse.java index 33a872e57..ac7552baa 100644 --- a/src/main/java/com/formkiq/client/model/GetWorkflowDocumentsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWorkflowDocumentsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetWorkflowDocumentsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWorkflowDocumentsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponse.java b/src/main/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponse.java index 389398705..9c5f0e355 100644 --- a/src/main/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetWorkflowQueueDocumentsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWorkflowQueueDocumentsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GetWorkflowResponse.java b/src/main/java/com/formkiq/client/model/GetWorkflowResponse.java index 86ca87974..e5ae9a676 100644 --- a/src/main/java/com/formkiq/client/model/GetWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * GetWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWorkflowResponse { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/GetWorkflowsResponse.java b/src/main/java/com/formkiq/client/model/GetWorkflowsResponse.java index d6f3fbbe4..0e0e13c70 100644 --- a/src/main/java/com/formkiq/client/model/GetWorkflowsResponse.java +++ b/src/main/java/com/formkiq/client/model/GetWorkflowsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * GetWorkflowsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GetWorkflowsResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/GoogleConfig.java b/src/main/java/com/formkiq/client/model/GoogleConfig.java index 4c620740a..b9b1b0a5e 100644 --- a/src/main/java/com/formkiq/client/model/GoogleConfig.java +++ b/src/main/java/com/formkiq/client/model/GoogleConfig.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * GoogleConfig */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class GoogleConfig { public static final String SERIALIZED_NAME_WORKLOAD_IDENTITY_AUDIENCE = diff --git a/src/main/java/com/formkiq/client/model/GoogleExportOutputType.java b/src/main/java/com/formkiq/client/model/GoogleExportOutputType.java index 1ed85fafb..2e8b70aac 100644 --- a/src/main/java/com/formkiq/client/model/GoogleExportOutputType.java +++ b/src/main/java/com/formkiq/client/model/GoogleExportOutputType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/Group.java b/src/main/java/com/formkiq/client/model/Group.java index 2641b49b4..83a574669 100644 --- a/src/main/java/com/formkiq/client/model/Group.java +++ b/src/main/java/com/formkiq/client/model/Group.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Group */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Group { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/IndexFolderMoveRequest.java b/src/main/java/com/formkiq/client/model/IndexFolderMoveRequest.java index 1d76498e8..fd42952dd 100644 --- a/src/main/java/com/formkiq/client/model/IndexFolderMoveRequest.java +++ b/src/main/java/com/formkiq/client/model/IndexFolderMoveRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * IndexFolderMoveRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class IndexFolderMoveRequest { public static final String SERIALIZED_NAME_SOURCE = "source"; diff --git a/src/main/java/com/formkiq/client/model/IndexFolderMoveResponse.java b/src/main/java/com/formkiq/client/model/IndexFolderMoveResponse.java index aa3cc5a5a..279d96df6 100644 --- a/src/main/java/com/formkiq/client/model/IndexFolderMoveResponse.java +++ b/src/main/java/com/formkiq/client/model/IndexFolderMoveResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * IndexFolderMoveResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class IndexFolderMoveResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/IndexSearch.java b/src/main/java/com/formkiq/client/model/IndexSearch.java index c54ae9b2e..0d5851273 100644 --- a/src/main/java/com/formkiq/client/model/IndexSearch.java +++ b/src/main/java/com/formkiq/client/model/IndexSearch.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * IndexSearch */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class IndexSearch { public static final String SERIALIZED_NAME_VALUE = "value"; diff --git a/src/main/java/com/formkiq/client/model/IndexSearchRequest.java b/src/main/java/com/formkiq/client/model/IndexSearchRequest.java index 9dad70a9b..b1bd2a848 100644 --- a/src/main/java/com/formkiq/client/model/IndexSearchRequest.java +++ b/src/main/java/com/formkiq/client/model/IndexSearchRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * IndexSearchRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class IndexSearchRequest { public static final String SERIALIZED_NAME_INDEX_TYPE = "indexType"; diff --git a/src/main/java/com/formkiq/client/model/IndexSearchResponse.java b/src/main/java/com/formkiq/client/model/IndexSearchResponse.java index 9ce8f7269..de82a9121 100644 --- a/src/main/java/com/formkiq/client/model/IndexSearchResponse.java +++ b/src/main/java/com/formkiq/client/model/IndexSearchResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * IndexSearchResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class IndexSearchResponse { public static final String SERIALIZED_NAME_NEXT = "next"; diff --git a/src/main/java/com/formkiq/client/model/LocaleInfo.java b/src/main/java/com/formkiq/client/model/LocaleInfo.java index 8347e373d..69d21fbd4 100644 --- a/src/main/java/com/formkiq/client/model/LocaleInfo.java +++ b/src/main/java/com/formkiq/client/model/LocaleInfo.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * LocaleInfo */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class LocaleInfo { public static final String SERIALIZED_NAME_LOCALE = "locale"; diff --git a/src/main/java/com/formkiq/client/model/LocaleResourceType.java b/src/main/java/com/formkiq/client/model/LocaleResourceType.java index 24f3c75c3..ab4909612 100644 --- a/src/main/java/com/formkiq/client/model/LocaleResourceType.java +++ b/src/main/java/com/formkiq/client/model/LocaleResourceType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/MalwareEngine.java b/src/main/java/com/formkiq/client/model/MalwareEngine.java index 708c3dc7a..337073bc2 100644 --- a/src/main/java/com/formkiq/client/model/MalwareEngine.java +++ b/src/main/java/com/formkiq/client/model/MalwareEngine.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/MalwareScanResult.java b/src/main/java/com/formkiq/client/model/MalwareScanResult.java index 4cb89109a..d3186901c 100644 --- a/src/main/java/com/formkiq/client/model/MalwareScanResult.java +++ b/src/main/java/com/formkiq/client/model/MalwareScanResult.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * MalwareScanResult */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class MalwareScanResult { public static final String SERIALIZED_NAME_SCAN_STATUS = "scanStatus"; diff --git a/src/main/java/com/formkiq/client/model/MalwareScanStatus.java b/src/main/java/com/formkiq/client/model/MalwareScanStatus.java index ce72c35d0..4d87fbcfb 100644 --- a/src/main/java/com/formkiq/client/model/MalwareScanStatus.java +++ b/src/main/java/com/formkiq/client/model/MalwareScanStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/Mapping.java b/src/main/java/com/formkiq/client/model/Mapping.java index de1f5b6f4..4d5f37b4b 100644 --- a/src/main/java/com/formkiq/client/model/Mapping.java +++ b/src/main/java/com/formkiq/client/model/Mapping.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Mapping */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Mapping { public static final String SERIALIZED_NAME_MAPPING_ID = "mappingId"; diff --git a/src/main/java/com/formkiq/client/model/MappingAttribute.java b/src/main/java/com/formkiq/client/model/MappingAttribute.java index 59d354c16..028f7ed1d 100644 --- a/src/main/java/com/formkiq/client/model/MappingAttribute.java +++ b/src/main/java/com/formkiq/client/model/MappingAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * MappingAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class MappingAttribute { public static final String SERIALIZED_NAME_ATTRIBUTE_KEY = "attributeKey"; diff --git a/src/main/java/com/formkiq/client/model/MappingAttributeLabelMatchingType.java b/src/main/java/com/formkiq/client/model/MappingAttributeLabelMatchingType.java index 0c9d62d2d..0fc694894 100644 --- a/src/main/java/com/formkiq/client/model/MappingAttributeLabelMatchingType.java +++ b/src/main/java/com/formkiq/client/model/MappingAttributeLabelMatchingType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/MappingAttributeMetadataField.java b/src/main/java/com/formkiq/client/model/MappingAttributeMetadataField.java index f54234878..a05ad0796 100644 --- a/src/main/java/com/formkiq/client/model/MappingAttributeMetadataField.java +++ b/src/main/java/com/formkiq/client/model/MappingAttributeMetadataField.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/MappingAttributeSourceType.java b/src/main/java/com/formkiq/client/model/MappingAttributeSourceType.java index c7064ed79..70a11123d 100644 --- a/src/main/java/com/formkiq/client/model/MappingAttributeSourceType.java +++ b/src/main/java/com/formkiq/client/model/MappingAttributeSourceType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/MatchDocumentTag.java b/src/main/java/com/formkiq/client/model/MatchDocumentTag.java index a37965b3a..d86f105a4 100644 --- a/src/main/java/com/formkiq/client/model/MatchDocumentTag.java +++ b/src/main/java/com/formkiq/client/model/MatchDocumentTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Match Document Tag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class MatchDocumentTag { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/ModelCase.java b/src/main/java/com/formkiq/client/model/ModelCase.java index 40fed61d2..00c08093e 100644 --- a/src/main/java/com/formkiq/client/model/ModelCase.java +++ b/src/main/java/com/formkiq/client/model/ModelCase.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * ModelCase */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ModelCase { public static final String SERIALIZED_NAME_CASE_ID = "caseId"; diff --git a/src/main/java/com/formkiq/client/model/Nigo.java b/src/main/java/com/formkiq/client/model/Nigo.java index 50787403f..4c7de691d 100644 --- a/src/main/java/com/formkiq/client/model/Nigo.java +++ b/src/main/java/com/formkiq/client/model/Nigo.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Nigo */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Nigo { public static final String SERIALIZED_NAME_NIGO_ID = "nigoId"; diff --git a/src/main/java/com/formkiq/client/model/NigoStatus.java b/src/main/java/com/formkiq/client/model/NigoStatus.java index de6cc7d7e..9e444880c 100644 --- a/src/main/java/com/formkiq/client/model/NigoStatus.java +++ b/src/main/java/com/formkiq/client/model/NigoStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/OcrConfig.java b/src/main/java/com/formkiq/client/model/OcrConfig.java index a16897f0b..8a97290f9 100644 --- a/src/main/java/com/formkiq/client/model/OcrConfig.java +++ b/src/main/java/com/formkiq/client/model/OcrConfig.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * OcrConfig */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OcrConfig { public static final String SERIALIZED_NAME_MAX_PAGES_PER_TRANSACTION = "maxPagesPerTransaction"; diff --git a/src/main/java/com/formkiq/client/model/OcrEngine.java b/src/main/java/com/formkiq/client/model/OcrEngine.java index 7f010bac6..525cf7644 100644 --- a/src/main/java/com/formkiq/client/model/OcrEngine.java +++ b/src/main/java/com/formkiq/client/model/OcrEngine.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/OcrKeyValues.java b/src/main/java/com/formkiq/client/model/OcrKeyValues.java index 1f15ec850..a99d3e8a0 100644 --- a/src/main/java/com/formkiq/client/model/OcrKeyValues.java +++ b/src/main/java/com/formkiq/client/model/OcrKeyValues.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * OcrKeyValues */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OcrKeyValues { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/OcrOutputType.java b/src/main/java/com/formkiq/client/model/OcrOutputType.java index e552b5a9d..542ec5388 100644 --- a/src/main/java/com/formkiq/client/model/OcrOutputType.java +++ b/src/main/java/com/formkiq/client/model/OcrOutputType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/OcrTable.java b/src/main/java/com/formkiq/client/model/OcrTable.java index 9121e3611..5f5dd31b5 100644 --- a/src/main/java/com/formkiq/client/model/OcrTable.java +++ b/src/main/java/com/formkiq/client/model/OcrTable.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * OcrTable */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OcrTable { public static final String SERIALIZED_NAME_HEADERS = "headers"; diff --git a/src/main/java/com/formkiq/client/model/OcrTableData.java b/src/main/java/com/formkiq/client/model/OcrTableData.java index 8fafd704b..aec27b0bf 100644 --- a/src/main/java/com/formkiq/client/model/OcrTableData.java +++ b/src/main/java/com/formkiq/client/model/OcrTableData.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OcrTableData */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OcrTableData { public static final String SERIALIZED_NAME_VALUE = "value"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicy.java b/src/main/java/com/formkiq/client/model/OpaPolicy.java index e74895e95..7665ea020 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicy.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicy.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OpaPolicy */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicy { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttribute.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttribute.java index a111f042a..b53d7ede9 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttribute.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * OpaPolicyAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttribute { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeEq.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeEq.java index 2f065d1c1..8c9019481 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeEq.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeEq.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Attribute EQ criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeEq { public static final String SERIALIZED_NAME_STRING_VALUE = "stringValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGt.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGt.java index 7d082ac8c..b3e239f11 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGt.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGt.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Attribute greater than criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeGt { public static final String SERIALIZED_NAME_NUMBER_VALUE = "numberValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGte.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGte.java index d37ff4bbe..64c0b9c4c 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGte.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeGte.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Attribute greater than and equals to criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeGte { public static final String SERIALIZED_NAME_NUMBER_VALUE = "numberValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeIn.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeIn.java index 5edb955ac..ac9090662 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeIn.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeIn.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Attribute In to criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeIn { public static final String SERIALIZED_NAME_STRING_VALUES = "stringValues"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeInput.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeInput.java index b97735225..88d554d9c 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeInput.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeInput.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OpaPolicyAttributeInput */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeInput { public static final String SERIALIZED_NAME_MATCH_USERNAME = "matchUsername"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLt.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLt.java index 77c50d023..862604d85 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLt.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLt.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Attribute less than criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeLt { public static final String SERIALIZED_NAME_NUMBER_VALUE = "numberValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLte.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLte.java index 00c4abecf..0c79928c2 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLte.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeLte.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Attribute less than and equals to criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeLte { public static final String SERIALIZED_NAME_NUMBER_VALUE = "numberValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNeq.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNeq.java index c2c9b3162..594a8bece 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNeq.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNeq.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Attribute not equal to criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeNeq { public static final String SERIALIZED_NAME_STRING_VALUE = "stringValue"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNotIn.java b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNotIn.java index a22d62838..30e159730 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNotIn.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyAttributeNotIn.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Attribute Not In to criteria */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyAttributeNotIn { public static final String SERIALIZED_NAME_STRING_VALUES = "stringValues"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyInput.java b/src/main/java/com/formkiq/client/model/OpaPolicyInput.java index ee13b3e6a..c873414f3 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyInput.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyInput.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * OpaPolicyInput */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyInput { public static final String SERIALIZED_NAME_HTTP_METHOD = "httpMethod"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyInputMethod.java b/src/main/java/com/formkiq/client/model/OpaPolicyInputMethod.java index 78ad98619..f6b2343ad 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyInputMethod.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyInputMethod.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * OpaPolicyInputMethod */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyInputMethod { public static final String SERIALIZED_NAME_IN = "in"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyInputResource.java b/src/main/java/com/formkiq/client/model/OpaPolicyInputResource.java index 784caf57b..906bf30d1 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyInputResource.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyInputResource.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * OpaPolicyInputResource */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyInputResource { public static final String SERIALIZED_NAME_IN = "in"; diff --git a/src/main/java/com/formkiq/client/model/OpaPolicyItem.java b/src/main/java/com/formkiq/client/model/OpaPolicyItem.java index cea078c5e..3acab896c 100644 --- a/src/main/java/com/formkiq/client/model/OpaPolicyItem.java +++ b/src/main/java/com/formkiq/client/model/OpaPolicyItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * OpaPolicyItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpaPolicyItem { public static final String SERIALIZED_NAME_POLICY = "policy"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchAlias.java b/src/main/java/com/formkiq/client/model/OpenSearchAlias.java index 47934af86..3c71a3146 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchAlias.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchAlias.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OpenSearchAlias */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchAlias { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchIndex.java b/src/main/java/com/formkiq/client/model/OpenSearchIndex.java index e0ae8c75d..4bb10016e 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchIndex.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchIndex.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * OpenSearchIndex */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchIndex { public static final String SERIALIZED_NAME_NUMBER_OF_REPLICAS = "numberOfReplicas"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchIndexSetting.java b/src/main/java/com/formkiq/client/model/OpenSearchIndexSetting.java index 191251b6d..9f4b66cdc 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchIndexSetting.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchIndexSetting.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OpenSearchIndexSetting */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchIndexSetting { public static final String SERIALIZED_NAME_NUMBER_OF_REPLICAS = "numberOfReplicas"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchS3Repository.java b/src/main/java/com/formkiq/client/model/OpenSearchS3Repository.java index daae72df1..a78d5186d 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchS3Repository.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchS3Repository.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * OpenSearchS3Repository */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchS3Repository { public static final String SERIALIZED_NAME_REPOSITORY = "repository"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchSnapshot.java b/src/main/java/com/formkiq/client/model/OpenSearchSnapshot.java index e7bb9c875..c632b9356 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchSnapshot.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchSnapshot.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * OpenSearchSnapshot */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchSnapshot { public static final String SERIALIZED_NAME_SNAPSHOT = "snapshot"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchSnapshotFailure.java b/src/main/java/com/formkiq/client/model/OpenSearchSnapshotFailure.java index 234a7e0bf..bce51f1b7 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchSnapshotFailure.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchSnapshotFailure.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Details about a failure for a specific shard in a snapshot. */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchSnapshotFailure { public static final String SERIALIZED_NAME_INDEX = "index"; diff --git a/src/main/java/com/formkiq/client/model/OpenSearchSnapshotShard.java b/src/main/java/com/formkiq/client/model/OpenSearchSnapshotShard.java index 588094b4b..b2f81e372 100644 --- a/src/main/java/com/formkiq/client/model/OpenSearchSnapshotShard.java +++ b/src/main/java/com/formkiq/client/model/OpenSearchSnapshotShard.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * OpenSearchSnapshotShard */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class OpenSearchSnapshotShard { public static final String SERIALIZED_NAME_TOTAL = "total"; diff --git a/src/main/java/com/formkiq/client/model/PdfDocument.java b/src/main/java/com/formkiq/client/model/PdfDocument.java index 995b0906f..8e83e792f 100644 --- a/src/main/java/com/formkiq/client/model/PdfDocument.java +++ b/src/main/java/com/formkiq/client/model/PdfDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * PdfDocument */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class PdfDocument { public static final String SERIALIZED_NAME_FIELDS = "fields"; diff --git a/src/main/java/com/formkiq/client/model/PdfDocumentField.java b/src/main/java/com/formkiq/client/model/PdfDocumentField.java index b7e4be605..ae4b93458 100644 --- a/src/main/java/com/formkiq/client/model/PdfDocumentField.java +++ b/src/main/java/com/formkiq/client/model/PdfDocumentField.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * PdfDocumentField */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class PdfDocumentField { public static final String SERIALIZED_NAME_FIELD = "field"; diff --git a/src/main/java/com/formkiq/client/model/QueryFulltextResponse.java b/src/main/java/com/formkiq/client/model/QueryFulltextResponse.java index 9c5a9bc2e..7c09c0093 100644 --- a/src/main/java/com/formkiq/client/model/QueryFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/QueryFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * QueryFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class QueryFulltextResponse { public static final String SERIALIZED_NAME_RESULT = "result"; diff --git a/src/main/java/com/formkiq/client/model/Queue.java b/src/main/java/com/formkiq/client/model/Queue.java index 79bdf0730..814aa8381 100644 --- a/src/main/java/com/formkiq/client/model/Queue.java +++ b/src/main/java/com/formkiq/client/model/Queue.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * Queue */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Queue { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/ReindexTarget.java b/src/main/java/com/formkiq/client/model/ReindexTarget.java index 8592cb0ec..df2b71f2b 100644 --- a/src/main/java/com/formkiq/client/model/ReindexTarget.java +++ b/src/main/java/com/formkiq/client/model/ReindexTarget.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/ResourceItem.java b/src/main/java/com/formkiq/client/model/ResourceItem.java index ec6a9df83..f0989bf4a 100644 --- a/src/main/java/com/formkiq/client/model/ResourceItem.java +++ b/src/main/java/com/formkiq/client/model/ResourceItem.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * ResourceItem */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ResourceItem { public static final String SERIALIZED_NAME_ITEM_TYPE = "itemType"; diff --git a/src/main/java/com/formkiq/client/model/Rule.java b/src/main/java/com/formkiq/client/model/Rule.java index fe5333ec3..8440d183b 100644 --- a/src/main/java/com/formkiq/client/model/Rule.java +++ b/src/main/java/com/formkiq/client/model/Rule.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Rule */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Rule { public static final String SERIALIZED_NAME_RULE_ID = "ruleId"; diff --git a/src/main/java/com/formkiq/client/model/RuleCondition.java b/src/main/java/com/formkiq/client/model/RuleCondition.java index 1894b9b36..e8f17ff07 100644 --- a/src/main/java/com/formkiq/client/model/RuleCondition.java +++ b/src/main/java/com/formkiq/client/model/RuleCondition.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * RuleCondition */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class RuleCondition { public static final String SERIALIZED_NAME_MUST = "must"; diff --git a/src/main/java/com/formkiq/client/model/RuleConditionAttribute.java b/src/main/java/com/formkiq/client/model/RuleConditionAttribute.java index d646fd903..749412fa3 100644 --- a/src/main/java/com/formkiq/client/model/RuleConditionAttribute.java +++ b/src/main/java/com/formkiq/client/model/RuleConditionAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/RuleConditionCriterion.java b/src/main/java/com/formkiq/client/model/RuleConditionCriterion.java index 70a2eb146..3fb1bc306 100644 --- a/src/main/java/com/formkiq/client/model/RuleConditionCriterion.java +++ b/src/main/java/com/formkiq/client/model/RuleConditionCriterion.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/RuleConditionMust.java b/src/main/java/com/formkiq/client/model/RuleConditionMust.java index 6d7bbb5c0..b133e3f47 100644 --- a/src/main/java/com/formkiq/client/model/RuleConditionMust.java +++ b/src/main/java/com/formkiq/client/model/RuleConditionMust.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * RuleConditionMust */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class RuleConditionMust { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/RuleConditionOperation.java b/src/main/java/com/formkiq/client/model/RuleConditionOperation.java index d630b3639..c70ab28d4 100644 --- a/src/main/java/com/formkiq/client/model/RuleConditionOperation.java +++ b/src/main/java/com/formkiq/client/model/RuleConditionOperation.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/Ruleset.java b/src/main/java/com/formkiq/client/model/Ruleset.java index 97d530c8b..cac57bce8 100644 --- a/src/main/java/com/formkiq/client/model/Ruleset.java +++ b/src/main/java/com/formkiq/client/model/Ruleset.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Ruleset */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Ruleset { public static final String SERIALIZED_NAME_RULESET_ID = "rulesetId"; diff --git a/src/main/java/com/formkiq/client/model/RulesetStatus.java b/src/main/java/com/formkiq/client/model/RulesetStatus.java index 09c1759b9..0f576b22f 100644 --- a/src/main/java/com/formkiq/client/model/RulesetStatus.java +++ b/src/main/java/com/formkiq/client/model/RulesetStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/SchemaAttributes.java b/src/main/java/com/formkiq/client/model/SchemaAttributes.java index 64283b7e6..5c1fb04bc 100644 --- a/src/main/java/com/formkiq/client/model/SchemaAttributes.java +++ b/src/main/java/com/formkiq/client/model/SchemaAttributes.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * SchemaAttributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SchemaAttributes { public static final String SERIALIZED_NAME_COMPOSITE_KEYS = "compositeKeys"; diff --git a/src/main/java/com/formkiq/client/model/SearchRangeDataType.java b/src/main/java/com/formkiq/client/model/SearchRangeDataType.java index 656945bd5..22c523c28 100644 --- a/src/main/java/com/formkiq/client/model/SearchRangeDataType.java +++ b/src/main/java/com/formkiq/client/model/SearchRangeDataType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/SearchResponseFields.java b/src/main/java/com/formkiq/client/model/SearchResponseFields.java index a837df24d..b76e2b37a 100644 --- a/src/main/java/com/formkiq/client/model/SearchResponseFields.java +++ b/src/main/java/com/formkiq/client/model/SearchResponseFields.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * SearchResponseFields */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SearchResponseFields { public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; diff --git a/src/main/java/com/formkiq/client/model/SearchResultDocument.java b/src/main/java/com/formkiq/client/model/SearchResultDocument.java index 3cd5081ae..fed6b8cd7 100644 --- a/src/main/java/com/formkiq/client/model/SearchResultDocument.java +++ b/src/main/java/com/formkiq/client/model/SearchResultDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -67,7 +67,7 @@ * SearchResultDocument */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SearchResultDocument { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/SearchResultDocumentAttribute.java b/src/main/java/com/formkiq/client/model/SearchResultDocumentAttribute.java index 14c1c5247..72ae4e6d1 100644 --- a/src/main/java/com/formkiq/client/model/SearchResultDocumentAttribute.java +++ b/src/main/java/com/formkiq/client/model/SearchResultDocumentAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * SearchResultDocumentAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SearchResultDocumentAttribute { public static final String SERIALIZED_NAME_STRING_VALUES = "stringValues"; diff --git a/src/main/java/com/formkiq/client/model/SetClassificationRequest.java b/src/main/java/com/formkiq/client/model/SetClassificationRequest.java index caf6ce67a..9938aa96e 100644 --- a/src/main/java/com/formkiq/client/model/SetClassificationRequest.java +++ b/src/main/java/com/formkiq/client/model/SetClassificationRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SetClassificationRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetClassificationRequest { public static final String SERIALIZED_NAME_CLASSIFICATION = "classification"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentAttributeRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentAttributeRequest.java index 9f735e99f..a90b642fd 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentAttributeRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentAttributeRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * Set List of document attributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentAttributeRequest { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentAttributesRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentAttributesRequest.java index 59b454feb..29bc14603 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentAttributesRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentAttributesRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Set List of document attributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentAttributesRequest { public static final String SERIALIZED_NAME_ATTRIBUTES = "attributes"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationRequest.java index 0b650a34d..3979f7040 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentDataClassificationRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentDataClassificationRequest { public static final String SERIALIZED_NAME_LLM_PROMPT_ENTITY_NAME = "llmPromptEntityName"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationResponse.java b/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationResponse.java index 0587a4f99..8cccff824 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationResponse.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentDataClassificationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * SetDocumentDataClassificationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentDataClassificationResponse { public static final String SERIALIZED_NAME_CONTENT = "content"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentFulltextRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentFulltextRequest.java index 3173ac9ee..5d10f52d5 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentFulltextRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentFulltextRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * SetDocumentFulltextRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentFulltextRequest { public static final String SERIALIZED_NAME_CONTENT_TYPE = "contentType"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentFulltextResponse.java b/src/main/java/com/formkiq/client/model/SetDocumentFulltextResponse.java index fd5e557c8..0757133b9 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentFulltextResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentOcrRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentOcrRequest.java index 01b631fbd..cf475d944 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentOcrRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentOcrRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentOcrRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentOcrRequest { public static final String SERIALIZED_NAME_CONTENT_TYPE = "contentType"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentRestoreResponse.java b/src/main/java/com/formkiq/client/model/SetDocumentRestoreResponse.java index 38de3e845..d9ff1d6b5 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentRestoreResponse.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentRestoreResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentRestoreResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentRestoreResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentTagKeyRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentTagKeyRequest.java index a43f7d67b..ae50e8a1f 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentTagKeyRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentTagKeyRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * SetDocumentTagKeyRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentTagKeyRequest { public static final String SERIALIZED_NAME_VALUE = "value"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentVersionRequest.java b/src/main/java/com/formkiq/client/model/SetDocumentVersionRequest.java index 5b0be08ac..b45dbe1e4 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentVersionRequest.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentVersionRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentVersionRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentVersionRequest { public static final String SERIALIZED_NAME_VERSION_KEY = "versionKey"; diff --git a/src/main/java/com/formkiq/client/model/SetDocumentVersionResponse.java b/src/main/java/com/formkiq/client/model/SetDocumentVersionResponse.java index b9b846b52..b6553b67e 100644 --- a/src/main/java/com/formkiq/client/model/SetDocumentVersionResponse.java +++ b/src/main/java/com/formkiq/client/model/SetDocumentVersionResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetDocumentVersionResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetDocumentVersionResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/SetFolderPermissionsRequest.java b/src/main/java/com/formkiq/client/model/SetFolderPermissionsRequest.java index 3d69aac44..1726c98a6 100644 --- a/src/main/java/com/formkiq/client/model/SetFolderPermissionsRequest.java +++ b/src/main/java/com/formkiq/client/model/SetFolderPermissionsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * SetFolderPermissionsRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetFolderPermissionsRequest { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/SetGroupPermissionsRequest.java b/src/main/java/com/formkiq/client/model/SetGroupPermissionsRequest.java index a2c8fedb4..302ff95cd 100644 --- a/src/main/java/com/formkiq/client/model/SetGroupPermissionsRequest.java +++ b/src/main/java/com/formkiq/client/model/SetGroupPermissionsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * SetGroupPermissionsRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetGroupPermissionsRequest { public static final String SERIALIZED_NAME_PERMISSIONS = "permissions"; diff --git a/src/main/java/com/formkiq/client/model/SetLocaleResourceItemRequest.java b/src/main/java/com/formkiq/client/model/SetLocaleResourceItemRequest.java index b0e454110..5ddb28020 100644 --- a/src/main/java/com/formkiq/client/model/SetLocaleResourceItemRequest.java +++ b/src/main/java/com/formkiq/client/model/SetLocaleResourceItemRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SetLocaleResourceItemRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetLocaleResourceItemRequest { public static final String SERIALIZED_NAME_RESOURCE_ITEM = "resourceItem"; diff --git a/src/main/java/com/formkiq/client/model/SetMappingRequest.java b/src/main/java/com/formkiq/client/model/SetMappingRequest.java index 0ed44b7df..3ce1d612c 100644 --- a/src/main/java/com/formkiq/client/model/SetMappingRequest.java +++ b/src/main/java/com/formkiq/client/model/SetMappingRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SetMappingRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetMappingRequest { public static final String SERIALIZED_NAME_MAPPING = "mapping"; diff --git a/src/main/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequest.java b/src/main/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequest.java index e584aec60..fc4507dc3 100644 --- a/src/main/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequest.java +++ b/src/main/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * SetOpaAccessPolicyItemsRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetOpaAccessPolicyItemsRequest { public static final String SERIALIZED_NAME_POLICY_ITEMS = "policyItems"; diff --git a/src/main/java/com/formkiq/client/model/SetOpenSearchIndexRequest.java b/src/main/java/com/formkiq/client/model/SetOpenSearchIndexRequest.java index 4c4316c71..10da4bc34 100644 --- a/src/main/java/com/formkiq/client/model/SetOpenSearchIndexRequest.java +++ b/src/main/java/com/formkiq/client/model/SetOpenSearchIndexRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SetOpenSearchIndexRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetOpenSearchIndexRequest { public static final String SERIALIZED_NAME_INDEX_SETTINGS = "indexSettings"; diff --git a/src/main/java/com/formkiq/client/model/SetOpenSearchIndexResponse.java b/src/main/java/com/formkiq/client/model/SetOpenSearchIndexResponse.java index f9cfd0cd4..fe7597274 100644 --- a/src/main/java/com/formkiq/client/model/SetOpenSearchIndexResponse.java +++ b/src/main/java/com/formkiq/client/model/SetOpenSearchIndexResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetOpenSearchIndexResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetOpenSearchIndexResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/SetOpenSearchIndiceRequest.java b/src/main/java/com/formkiq/client/model/SetOpenSearchIndiceRequest.java index 6cd36822c..3a0010a35 100644 --- a/src/main/java/com/formkiq/client/model/SetOpenSearchIndiceRequest.java +++ b/src/main/java/com/formkiq/client/model/SetOpenSearchIndiceRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetOpenSearchIndiceRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetOpenSearchIndiceRequest { public static final String SERIALIZED_NAME_INDEX_NAME = "indexName"; diff --git a/src/main/java/com/formkiq/client/model/SetResponse.java b/src/main/java/com/formkiq/client/model/SetResponse.java index 664628809..c46f873d4 100644 --- a/src/main/java/com/formkiq/client/model/SetResponse.java +++ b/src/main/java/com/formkiq/client/model/SetResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/SetSchemaAttributes.java b/src/main/java/com/formkiq/client/model/SetSchemaAttributes.java index b34c4a70c..6d295d8d7 100644 --- a/src/main/java/com/formkiq/client/model/SetSchemaAttributes.java +++ b/src/main/java/com/formkiq/client/model/SetSchemaAttributes.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * SetSchemaAttributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetSchemaAttributes { public static final String SERIALIZED_NAME_COMPOSITE_KEYS = "compositeKeys"; diff --git a/src/main/java/com/formkiq/client/model/SetSitesSchemaRequest.java b/src/main/java/com/formkiq/client/model/SetSitesSchemaRequest.java index f46836c30..5729ee8f5 100644 --- a/src/main/java/com/formkiq/client/model/SetSitesSchemaRequest.java +++ b/src/main/java/com/formkiq/client/model/SetSitesSchemaRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SetSitesSchemaRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetSitesSchemaRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/SetWorkflowRequest.java b/src/main/java/com/formkiq/client/model/SetWorkflowRequest.java index 5d1f42890..0a7bfa9f2 100644 --- a/src/main/java/com/formkiq/client/model/SetWorkflowRequest.java +++ b/src/main/java/com/formkiq/client/model/SetWorkflowRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * SetWorkflowRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetWorkflowRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/SetWorkflowResponse.java b/src/main/java/com/formkiq/client/model/SetWorkflowResponse.java index ae5138e15..908e890fb 100644 --- a/src/main/java/com/formkiq/client/model/SetWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/SetWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * SetWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SetWorkflowResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/Site.java b/src/main/java/com/formkiq/client/model/Site.java index 0d0e28689..0fa2836c6 100644 --- a/src/main/java/com/formkiq/client/model/Site.java +++ b/src/main/java/com/formkiq/client/model/Site.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -64,7 +64,7 @@ * Site */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Site { public static final String SERIALIZED_NAME_SITE_ID = "siteId"; diff --git a/src/main/java/com/formkiq/client/model/SiteConfig.java b/src/main/java/com/formkiq/client/model/SiteConfig.java index be5520e44..2fb936e04 100644 --- a/src/main/java/com/formkiq/client/model/SiteConfig.java +++ b/src/main/java/com/formkiq/client/model/SiteConfig.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SiteConfig */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SiteConfig { public static final String SERIALIZED_NAME_MAX_CONTENT_LENGTH_BYTES = "maxContentLengthBytes"; diff --git a/src/main/java/com/formkiq/client/model/SiteGroup.java b/src/main/java/com/formkiq/client/model/SiteGroup.java index d89de6510..cb617b8ad 100644 --- a/src/main/java/com/formkiq/client/model/SiteGroup.java +++ b/src/main/java/com/formkiq/client/model/SiteGroup.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * SiteGroup */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SiteGroup { public static final String SERIALIZED_NAME_PERMISSIONS = "permissions"; diff --git a/src/main/java/com/formkiq/client/model/SiteGroupPermissions.java b/src/main/java/com/formkiq/client/model/SiteGroupPermissions.java index f52954d1e..2cc1cb478 100644 --- a/src/main/java/com/formkiq/client/model/SiteGroupPermissions.java +++ b/src/main/java/com/formkiq/client/model/SiteGroupPermissions.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/SiteStatus.java b/src/main/java/com/formkiq/client/model/SiteStatus.java index b3535f939..cb48b0a7d 100644 --- a/src/main/java/com/formkiq/client/model/SiteStatus.java +++ b/src/main/java/com/formkiq/client/model/SiteStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/SiteUsage.java b/src/main/java/com/formkiq/client/model/SiteUsage.java index b39f20f70..b3eb8e3d7 100644 --- a/src/main/java/com/formkiq/client/model/SiteUsage.java +++ b/src/main/java/com/formkiq/client/model/SiteUsage.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * SiteUsage */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class SiteUsage { public static final String SERIALIZED_NAME_DOCUMENT_COUNT = "documentCount"; diff --git a/src/main/java/com/formkiq/client/model/StringFormat.java b/src/main/java/com/formkiq/client/model/StringFormat.java index 9ccf1edff..183b0ed15 100644 --- a/src/main/java/com/formkiq/client/model/StringFormat.java +++ b/src/main/java/com/formkiq/client/model/StringFormat.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * StringFormat */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class StringFormat { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/StringGeneratorType.java b/src/main/java/com/formkiq/client/model/StringGeneratorType.java index effcbdab9..0786b2f0b 100644 --- a/src/main/java/com/formkiq/client/model/StringGeneratorType.java +++ b/src/main/java/com/formkiq/client/model/StringGeneratorType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/Task.java b/src/main/java/com/formkiq/client/model/Task.java index 8b63a61c8..8c1a32f18 100644 --- a/src/main/java/com/formkiq/client/model/Task.java +++ b/src/main/java/com/formkiq/client/model/Task.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Task */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Task { public static final String SERIALIZED_NAME_TASK_ID = "taskId"; diff --git a/src/main/java/com/formkiq/client/model/TaskStatus.java b/src/main/java/com/formkiq/client/model/TaskStatus.java index 6b7fb7a11..1c82d85e3 100644 --- a/src/main/java/com/formkiq/client/model/TaskStatus.java +++ b/src/main/java/com/formkiq/client/model/TaskStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/TextractQuery.java b/src/main/java/com/formkiq/client/model/TextractQuery.java index e32157610..004397826 100644 --- a/src/main/java/com/formkiq/client/model/TextractQuery.java +++ b/src/main/java/com/formkiq/client/model/TextractQuery.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * A question to ask Textract */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class TextractQuery { public static final String SERIALIZED_NAME_TEXT = "text"; diff --git a/src/main/java/com/formkiq/client/model/UpdateAttribute.java b/src/main/java/com/formkiq/client/model/UpdateAttribute.java index f6a4bd955..11e0c423c 100644 --- a/src/main/java/com/formkiq/client/model/UpdateAttribute.java +++ b/src/main/java/com/formkiq/client/model/UpdateAttribute.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * UpdateAttribute */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateAttribute { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/UpdateAttributeRequest.java b/src/main/java/com/formkiq/client/model/UpdateAttributeRequest.java index 26eafa6f1..d0cdd7a85 100644 --- a/src/main/java/com/formkiq/client/model/UpdateAttributeRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateAttributeRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateAttributeRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateAttributeRequest { public static final String SERIALIZED_NAME_ATTRIBUTE = "attribute"; diff --git a/src/main/java/com/formkiq/client/model/UpdateCase.java b/src/main/java/com/formkiq/client/model/UpdateCase.java index cc800da0f..c69b386d5 100644 --- a/src/main/java/com/formkiq/client/model/UpdateCase.java +++ b/src/main/java/com/formkiq/client/model/UpdateCase.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * UpdateCase */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateCase { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/UpdateCaseRequest.java b/src/main/java/com/formkiq/client/model/UpdateCaseRequest.java index dd29e1948..a25a2cff5 100644 --- a/src/main/java/com/formkiq/client/model/UpdateCaseRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateCaseRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateCaseRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateCaseRequest { public static final String SERIALIZED_NAME_CASE = "case"; diff --git a/src/main/java/com/formkiq/client/model/UpdateCaseResponse.java b/src/main/java/com/formkiq/client/model/UpdateCaseResponse.java index 2cde72dd8..749044542 100644 --- a/src/main/java/com/formkiq/client/model/UpdateCaseResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateCaseResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateCaseResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateCaseResponse { public static final String SERIALIZED_NAME_CASE_ID = "caseId"; diff --git a/src/main/java/com/formkiq/client/model/UpdateConfigurationRequest.java b/src/main/java/com/formkiq/client/model/UpdateConfigurationRequest.java index 161f7871d..866c57d7d 100644 --- a/src/main/java/com/formkiq/client/model/UpdateConfigurationRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateConfigurationRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -22,6 +22,7 @@ import java.util.Objects; import java.util.Locale; +import com.formkiq.client.model.DocumentConfig; import com.formkiq.client.model.DocusignConfig; import com.formkiq.client.model.GoogleConfig; import com.formkiq.client.model.OcrConfig; @@ -61,7 +62,7 @@ * UpdateConfigurationRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateConfigurationRequest { public static final String SERIALIZED_NAME_CHAT_GPT_API_KEY = "chatGptApiKey"; @@ -89,6 +90,11 @@ public class UpdateConfigurationRequest { @javax.annotation.Nullable private String notificationEmail; + public static final String SERIALIZED_NAME_DOCUMENT = "document"; + @SerializedName(SERIALIZED_NAME_DOCUMENT) + @javax.annotation.Nullable + private DocumentConfig document; + public static final String SERIALIZED_NAME_OCR = "ocr"; @SerializedName(SERIALIZED_NAME_OCR) @javax.annotation.Nullable @@ -208,6 +214,26 @@ public void setNotificationEmail(@javax.annotation.Nullable String notificationE } + public UpdateConfigurationRequest document(@javax.annotation.Nullable DocumentConfig document) { + this.document = document; + return this; + } + + /** + * Get document + * + * @return document + */ + @javax.annotation.Nullable + public DocumentConfig getDocument() { + return document; + } + + public void setDocument(@javax.annotation.Nullable DocumentConfig document) { + this.document = document; + } + + public UpdateConfigurationRequest ocr(@javax.annotation.Nullable OcrConfig ocr) { this.ocr = ocr; return this; @@ -284,6 +310,7 @@ public boolean equals(Object o) { && Objects.equals(this.maxDocuments, updateConfigurationRequest.maxDocuments) && Objects.equals(this.maxWebhooks, updateConfigurationRequest.maxWebhooks) && Objects.equals(this.notificationEmail, updateConfigurationRequest.notificationEmail) + && Objects.equals(this.document, updateConfigurationRequest.document) && Objects.equals(this.ocr, updateConfigurationRequest.ocr) && Objects.equals(this.google, updateConfigurationRequest.google) && Objects.equals(this.docusign, updateConfigurationRequest.docusign); @@ -292,7 +319,7 @@ public boolean equals(Object o) { @Override public int hashCode() { return Objects.hash(chatGptApiKey, maxContentLengthBytes, maxDocuments, maxWebhooks, - notificationEmail, ocr, google, docusign); + notificationEmail, document, ocr, google, docusign); } @Override @@ -305,6 +332,7 @@ public String toString() { sb.append(" maxDocuments: ").append(toIndentedString(maxDocuments)).append("\n"); sb.append(" maxWebhooks: ").append(toIndentedString(maxWebhooks)).append("\n"); sb.append(" notificationEmail: ").append(toIndentedString(notificationEmail)).append("\n"); + sb.append(" document: ").append(toIndentedString(document)).append("\n"); sb.append(" ocr: ").append(toIndentedString(ocr)).append("\n"); sb.append(" google: ").append(toIndentedString(google)).append("\n"); sb.append(" docusign: ").append(toIndentedString(docusign)).append("\n"); @@ -328,8 +356,9 @@ private String toIndentedString(Object o) { static { // a set of all properties/fields (JSON key names) - openapiFields = new HashSet(Arrays.asList("chatGptApiKey", "maxContentLengthBytes", - "maxDocuments", "maxWebhooks", "notificationEmail", "ocr", "google", "docusign")); + openapiFields = + new HashSet(Arrays.asList("chatGptApiKey", "maxContentLengthBytes", "maxDocuments", + "maxWebhooks", "notificationEmail", "document", "ocr", "google", "docusign")); // a set of required properties/fields (JSON key names) openapiRequiredFields = new HashSet(0); @@ -392,6 +421,10 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti "Expected the field `notificationEmail` to be a primitive type in the JSON string but got `%s`", jsonObj.get("notificationEmail").toString())); } + // validate the optional field `document` + if (jsonObj.get("document") != null && !jsonObj.get("document").isJsonNull()) { + DocumentConfig.validateJsonElement(jsonObj.get("document")); + } // validate the optional field `ocr` if (jsonObj.get("ocr") != null && !jsonObj.get("ocr").isJsonNull()) { OcrConfig.validateJsonElement(jsonObj.get("ocr")); diff --git a/src/main/java/com/formkiq/client/model/UpdateConfigurationResponse.java b/src/main/java/com/formkiq/client/model/UpdateConfigurationResponse.java index f6da773d2..0d8e432e6 100644 --- a/src/main/java/com/formkiq/client/model/UpdateConfigurationResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateConfigurationResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateConfigurationResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateConfigurationResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextRequest.java b/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextRequest.java index 4b19b7f79..d359fcbcc 100644 --- a/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * UpdateDocumentFulltextRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateDocumentFulltextRequest { public static final String SERIALIZED_NAME_CONTENT_TYPE = "contentType"; diff --git a/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextResponse.java b/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextResponse.java index ef1050303..f5469825a 100644 --- a/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateDocumentFulltextResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateDocumentFulltextResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateDocumentFulltextResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateDocumentRequest.java b/src/main/java/com/formkiq/client/model/UpdateDocumentRequest.java index 759e8021b..258b6454e 100644 --- a/src/main/java/com/formkiq/client/model/UpdateDocumentRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateDocumentRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -66,7 +66,7 @@ * UpdateDocumentRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateDocumentRequest { public static final String SERIALIZED_NAME_PATH = "path"; diff --git a/src/main/java/com/formkiq/client/model/UpdateEntityRequest.java b/src/main/java/com/formkiq/client/model/UpdateEntityRequest.java index 8ff3ce927..a9b8fab6b 100644 --- a/src/main/java/com/formkiq/client/model/UpdateEntityRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateEntityRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateEntityRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateEntityRequest { public static final String SERIALIZED_NAME_ENTITY = "entity"; diff --git a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequest.java b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequest.java index fb002176f..f25593ae8 100644 --- a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * Add/Update of multiple document tag(s) based on document(s) that have the matching tag. */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateMatchingDocumentTagsRequest { public static final String SERIALIZED_NAME_MATCH = "match"; diff --git a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatch.java b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatch.java index c6e040c77..b85703dbc 100644 --- a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatch.java +++ b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatch.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateMatchingDocumentTagsRequestMatch */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateMatchingDocumentTagsRequestMatch { public static final String SERIALIZED_NAME_TAG = "tag"; diff --git a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdate.java b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdate.java index 20e383dcb..24383b242 100644 --- a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdate.java +++ b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdate.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Data to update */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateMatchingDocumentTagsRequestUpdate { public static final String SERIALIZED_NAME_TAGS = "tags"; diff --git a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponse.java b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponse.java index 258419d74..371fbe609 100644 --- a/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateMatchingDocumentTagsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateMatchingDocumentTagsResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateNigo.java b/src/main/java/com/formkiq/client/model/UpdateNigo.java index ab5c9d5e2..149d64d5d 100644 --- a/src/main/java/com/formkiq/client/model/UpdateNigo.java +++ b/src/main/java/com/formkiq/client/model/UpdateNigo.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * UpdateNigo */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateNigo { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/UpdateNigoRequest.java b/src/main/java/com/formkiq/client/model/UpdateNigoRequest.java index 40f3a57d6..91066aa2a 100644 --- a/src/main/java/com/formkiq/client/model/UpdateNigoRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateNigoRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateNigoRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateNigoRequest { public static final String SERIALIZED_NAME_NIGO = "nigo"; diff --git a/src/main/java/com/formkiq/client/model/UpdateNigoResponse.java b/src/main/java/com/formkiq/client/model/UpdateNigoResponse.java index 8f86fbea0..4e9a04cb0 100644 --- a/src/main/java/com/formkiq/client/model/UpdateNigoResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateNigoResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateNigoResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateNigoResponse { public static final String SERIALIZED_NAME_NIGO_ID = "nigoId"; diff --git a/src/main/java/com/formkiq/client/model/UpdateResponse.java b/src/main/java/com/formkiq/client/model/UpdateResponse.java index c7debdf54..e4444f968 100644 --- a/src/main/java/com/formkiq/client/model/UpdateResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRule.java b/src/main/java/com/formkiq/client/model/UpdateRule.java index 798f9c133..aff633c99 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRule.java +++ b/src/main/java/com/formkiq/client/model/UpdateRule.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * UpdateRule */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRule { public static final String SERIALIZED_NAME_PRIORITY = "priority"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRuleRequest.java b/src/main/java/com/formkiq/client/model/UpdateRuleRequest.java index 0389ba359..3e74c635b 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRuleRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateRuleRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateRuleRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRuleRequest { public static final String SERIALIZED_NAME_RULE = "rule"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRuleResponse.java b/src/main/java/com/formkiq/client/model/UpdateRuleResponse.java index 4238dd057..e2aad8da6 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRuleResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateRuleResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateRuleResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRuleResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRuleset.java b/src/main/java/com/formkiq/client/model/UpdateRuleset.java index ff0843363..1480eb720 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRuleset.java +++ b/src/main/java/com/formkiq/client/model/UpdateRuleset.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * UpdateRuleset */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRuleset { public static final String SERIALIZED_NAME_DESCRIPTION = "description"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRulesetRequest.java b/src/main/java/com/formkiq/client/model/UpdateRulesetRequest.java index 0550b5cc8..0291727ee 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRulesetRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateRulesetRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateRulesetRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRulesetRequest { public static final String SERIALIZED_NAME_RULESET = "ruleset"; diff --git a/src/main/java/com/formkiq/client/model/UpdateRulesetResponse.java b/src/main/java/com/formkiq/client/model/UpdateRulesetResponse.java index 9e72b218f..980c38205 100644 --- a/src/main/java/com/formkiq/client/model/UpdateRulesetResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateRulesetResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateRulesetResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateRulesetResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/UpdateSite.java b/src/main/java/com/formkiq/client/model/UpdateSite.java index a54e16887..13c2b1570 100644 --- a/src/main/java/com/formkiq/client/model/UpdateSite.java +++ b/src/main/java/com/formkiq/client/model/UpdateSite.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateSite */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateSite { public static final String SERIALIZED_NAME_TITLE = "title"; diff --git a/src/main/java/com/formkiq/client/model/UpdateSiteRequest.java b/src/main/java/com/formkiq/client/model/UpdateSiteRequest.java index ffb1e28be..3005b81cc 100644 --- a/src/main/java/com/formkiq/client/model/UpdateSiteRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateSiteRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateSiteRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateSiteRequest { public static final String SERIALIZED_NAME_SITE = "site"; diff --git a/src/main/java/com/formkiq/client/model/UpdateTask.java b/src/main/java/com/formkiq/client/model/UpdateTask.java index e873bd7e3..8541adf25 100644 --- a/src/main/java/com/formkiq/client/model/UpdateTask.java +++ b/src/main/java/com/formkiq/client/model/UpdateTask.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * UpdateTask */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateTask { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/UpdateTaskRequest.java b/src/main/java/com/formkiq/client/model/UpdateTaskRequest.java index 80c813851..f51643a48 100644 --- a/src/main/java/com/formkiq/client/model/UpdateTaskRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateTaskRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateTaskRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateTaskRequest { public static final String SERIALIZED_NAME_TASK = "task"; diff --git a/src/main/java/com/formkiq/client/model/UpdateTaskResponse.java b/src/main/java/com/formkiq/client/model/UpdateTaskResponse.java index a366fea62..89dc89742 100644 --- a/src/main/java/com/formkiq/client/model/UpdateTaskResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateTaskResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateTaskResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateTaskResponse { public static final String SERIALIZED_NAME_TASK_ID = "taskId"; diff --git a/src/main/java/com/formkiq/client/model/UpdateWorkflowRequest.java b/src/main/java/com/formkiq/client/model/UpdateWorkflowRequest.java index 5f484ea3f..c761ea5cf 100644 --- a/src/main/java/com/formkiq/client/model/UpdateWorkflowRequest.java +++ b/src/main/java/com/formkiq/client/model/UpdateWorkflowRequest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * UpdateWorkflowRequest */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateWorkflowRequest { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/main/java/com/formkiq/client/model/UpdateWorkflowResponse.java b/src/main/java/com/formkiq/client/model/UpdateWorkflowResponse.java index 70b5b51b2..dfbfc91af 100644 --- a/src/main/java/com/formkiq/client/model/UpdateWorkflowResponse.java +++ b/src/main/java/com/formkiq/client/model/UpdateWorkflowResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UpdateWorkflowResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UpdateWorkflowResponse { public static final String SERIALIZED_NAME_MESSAGE = "message"; diff --git a/src/main/java/com/formkiq/client/model/User.java b/src/main/java/com/formkiq/client/model/User.java index 761e8454c..933076b85 100644 --- a/src/main/java/com/formkiq/client/model/User.java +++ b/src/main/java/com/formkiq/client/model/User.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * User */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class User { public static final String SERIALIZED_NAME_USERNAME = "username"; diff --git a/src/main/java/com/formkiq/client/model/UserActivity.java b/src/main/java/com/formkiq/client/model/UserActivity.java index 698d75302..ba81d9646 100644 --- a/src/main/java/com/formkiq/client/model/UserActivity.java +++ b/src/main/java/com/formkiq/client/model/UserActivity.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * UserActivity */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UserActivity { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/UserActivityChanges.java b/src/main/java/com/formkiq/client/model/UserActivityChanges.java index dc61dbe7a..b0f8099a9 100644 --- a/src/main/java/com/formkiq/client/model/UserActivityChanges.java +++ b/src/main/java/com/formkiq/client/model/UserActivityChanges.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UserActivityChanges */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UserActivityChanges { public static final String SERIALIZED_NAME_OLD_VALUE = "oldValue"; diff --git a/src/main/java/com/formkiq/client/model/UserActivityType.java b/src/main/java/com/formkiq/client/model/UserActivityType.java index dab60a6b9..0c12b1c94 100644 --- a/src/main/java/com/formkiq/client/model/UserActivityType.java +++ b/src/main/java/com/formkiq/client/model/UserActivityType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/UserAttributes.java b/src/main/java/com/formkiq/client/model/UserAttributes.java index fbc6f38ae..82aacd294 100644 --- a/src/main/java/com/formkiq/client/model/UserAttributes.java +++ b/src/main/java/com/formkiq/client/model/UserAttributes.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * UserAttributes */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UserAttributes { public static final String SERIALIZED_NAME_ADDRESS = "address"; diff --git a/src/main/java/com/formkiq/client/model/UserShare.java b/src/main/java/com/formkiq/client/model/UserShare.java index 802cdc0d4..9d1a0ddb1 100644 --- a/src/main/java/com/formkiq/client/model/UserShare.java +++ b/src/main/java/com/formkiq/client/model/UserShare.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -62,7 +62,7 @@ * UserShare */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class UserShare { public static final String SERIALIZED_NAME_GROUP = "group"; diff --git a/src/main/java/com/formkiq/client/model/UserSharePermission.java b/src/main/java/com/formkiq/client/model/UserSharePermission.java index aede03db4..da8395d83 100644 --- a/src/main/java/com/formkiq/client/model/UserSharePermission.java +++ b/src/main/java/com/formkiq/client/model/UserSharePermission.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/UserSharePermissionType.java b/src/main/java/com/formkiq/client/model/UserSharePermissionType.java index 9155b1f52..f39c55f12 100644 --- a/src/main/java/com/formkiq/client/model/UserSharePermissionType.java +++ b/src/main/java/com/formkiq/client/model/UserSharePermissionType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/ValidationError.java b/src/main/java/com/formkiq/client/model/ValidationError.java index 17bd5e34d..510070ae1 100644 --- a/src/main/java/com/formkiq/client/model/ValidationError.java +++ b/src/main/java/com/formkiq/client/model/ValidationError.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * ValidationError */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ValidationError { public static final String SERIALIZED_NAME_KEY = "key"; diff --git a/src/main/java/com/formkiq/client/model/ValidationErrorsResponse.java b/src/main/java/com/formkiq/client/model/ValidationErrorsResponse.java index 5d5186f26..1c6ed5938 100644 --- a/src/main/java/com/formkiq/client/model/ValidationErrorsResponse.java +++ b/src/main/java/com/formkiq/client/model/ValidationErrorsResponse.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * ValidationErrorsResponse */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class ValidationErrorsResponse { public static final String SERIALIZED_NAME_ERRORS = "errors"; diff --git a/src/main/java/com/formkiq/client/model/Watermark.java b/src/main/java/com/formkiq/client/model/Watermark.java index 25da10fee..c1b372422 100644 --- a/src/main/java/com/formkiq/client/model/Watermark.java +++ b/src/main/java/com/formkiq/client/model/Watermark.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * Watermark */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class Watermark { public static final String SERIALIZED_NAME_FONT_SIZE = "fontSize"; diff --git a/src/main/java/com/formkiq/client/model/WatermarkPosition.java b/src/main/java/com/formkiq/client/model/WatermarkPosition.java index 3673b3b24..c603fdbfc 100644 --- a/src/main/java/com/formkiq/client/model/WatermarkPosition.java +++ b/src/main/java/com/formkiq/client/model/WatermarkPosition.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -61,7 +61,7 @@ * WatermarkPosition */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WatermarkPosition { public static final String SERIALIZED_NAME_X_ANCHOR = "xAnchor"; diff --git a/src/main/java/com/formkiq/client/model/WatermarkPositionXAnchor.java b/src/main/java/com/formkiq/client/model/WatermarkPositionXAnchor.java index daed49a80..2ed194fae 100644 --- a/src/main/java/com/formkiq/client/model/WatermarkPositionXAnchor.java +++ b/src/main/java/com/formkiq/client/model/WatermarkPositionXAnchor.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/WatermarkPositionYAnchor.java b/src/main/java/com/formkiq/client/model/WatermarkPositionYAnchor.java index d73f8247a..6102f7ec1 100644 --- a/src/main/java/com/formkiq/client/model/WatermarkPositionYAnchor.java +++ b/src/main/java/com/formkiq/client/model/WatermarkPositionYAnchor.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/WatermarkScale.java b/src/main/java/com/formkiq/client/model/WatermarkScale.java index ab9655435..0e8010f25 100644 --- a/src/main/java/com/formkiq/client/model/WatermarkScale.java +++ b/src/main/java/com/formkiq/client/model/WatermarkScale.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/WebhookTag.java b/src/main/java/com/formkiq/client/model/WebhookTag.java index 554c18984..52a01544e 100644 --- a/src/main/java/com/formkiq/client/model/WebhookTag.java +++ b/src/main/java/com/formkiq/client/model/WebhookTag.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -58,7 +58,7 @@ * WebhookTag */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WebhookTag { public static final String SERIALIZED_NAME_INSERTED_DATE = "insertedDate"; diff --git a/src/main/java/com/formkiq/client/model/WorkflowDocument.java b/src/main/java/com/formkiq/client/model/WorkflowDocument.java index ec98002d2..4c220b131 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowDocument.java +++ b/src/main/java/com/formkiq/client/model/WorkflowDocument.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * WorkflowDocument */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WorkflowDocument { public static final String SERIALIZED_NAME_WORKFLOW = "workflow"; diff --git a/src/main/java/com/formkiq/client/model/WorkflowQueue.java b/src/main/java/com/formkiq/client/model/WorkflowQueue.java index fe8646075..8ae5e5204 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowQueue.java +++ b/src/main/java/com/formkiq/client/model/WorkflowQueue.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -60,7 +60,7 @@ * WorkflowQueue */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WorkflowQueue { public static final String SERIALIZED_NAME_QUEUE_ID = "queueId"; diff --git a/src/main/java/com/formkiq/client/model/WorkflowStatus.java b/src/main/java/com/formkiq/client/model/WorkflowStatus.java index bcb6de3c0..7f2d48b28 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowStatus.java +++ b/src/main/java/com/formkiq/client/model/WorkflowStatus.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/WorkflowStep.java b/src/main/java/com/formkiq/client/model/WorkflowStep.java index ac2820eba..9e512b338 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowStep.java +++ b/src/main/java/com/formkiq/client/model/WorkflowStep.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -63,7 +63,7 @@ * WorkflowStep */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WorkflowStep { public static final String SERIALIZED_NAME_STEP_ID = "stepId"; diff --git a/src/main/java/com/formkiq/client/model/WorkflowStepDecision.java b/src/main/java/com/formkiq/client/model/WorkflowStepDecision.java index 467cee2c2..8db891333 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowStepDecision.java +++ b/src/main/java/com/formkiq/client/model/WorkflowStepDecision.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * WorkflowStepDecision */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WorkflowStepDecision { public static final String SERIALIZED_NAME_TYPE = "type"; diff --git a/src/main/java/com/formkiq/client/model/WorkflowStepDecisionType.java b/src/main/java/com/formkiq/client/model/WorkflowStepDecisionType.java index 080be7cd0..00ce60701 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowStepDecisionType.java +++ b/src/main/java/com/formkiq/client/model/WorkflowStepDecisionType.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/main/java/com/formkiq/client/model/WorkflowSummary.java b/src/main/java/com/formkiq/client/model/WorkflowSummary.java index 9efcd6e14..101d0a610 100644 --- a/src/main/java/com/formkiq/client/model/WorkflowSummary.java +++ b/src/main/java/com/formkiq/client/model/WorkflowSummary.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -59,7 +59,7 @@ * WorkflowSummary */ @javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", - date = "2025-11-02T10:43:50.522026-06:00[America/Winnipeg]", + date = "2025-12-07T17:20:11.660615-06:00[America/Winnipeg]", comments = "Generator version: 7.17.0") public class WorkflowSummary { public static final String SERIALIZED_NAME_NAME = "name"; diff --git a/src/test/java/com/formkiq/client/api/AccessControlApiTest.java b/src/test/java/com/formkiq/client/api/AccessControlApiTest.java index ffd58992c..cbbbd022a 100644 --- a/src/test/java/com/formkiq/client/api/AccessControlApiTest.java +++ b/src/test/java/com/formkiq/client/api/AccessControlApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/AdvancedDocumentSearchApiTest.java b/src/test/java/com/formkiq/client/api/AdvancedDocumentSearchApiTest.java index f98f003c5..64d8c1c9f 100644 --- a/src/test/java/com/formkiq/client/api/AdvancedDocumentSearchApiTest.java +++ b/src/test/java/com/formkiq/client/api/AdvancedDocumentSearchApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/AttributesApiTest.java b/src/test/java/com/formkiq/client/api/AttributesApiTest.java index 25f0cc06d..bcb3e8276 100644 --- a/src/test/java/com/formkiq/client/api/AttributesApiTest.java +++ b/src/test/java/com/formkiq/client/api/AttributesApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/CaseManagementApiTest.java b/src/test/java/com/formkiq/client/api/CaseManagementApiTest.java index 153b3d2d6..bf28ed4a4 100644 --- a/src/test/java/com/formkiq/client/api/CaseManagementApiTest.java +++ b/src/test/java/com/formkiq/client/api/CaseManagementApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/CustomIndexApiTest.java b/src/test/java/com/formkiq/client/api/CustomIndexApiTest.java index cc84296bb..e45bd57f3 100644 --- a/src/test/java/com/formkiq/client/api/CustomIndexApiTest.java +++ b/src/test/java/com/formkiq/client/api/CustomIndexApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentActionsApiTest.java b/src/test/java/com/formkiq/client/api/DocumentActionsApiTest.java index 780218c2b..fbaef78a7 100644 --- a/src/test/java/com/formkiq/client/api/DocumentActionsApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentActionsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentAttributesApiTest.java b/src/test/java/com/formkiq/client/api/DocumentAttributesApiTest.java index 16df76bf7..a0f357901 100644 --- a/src/test/java/com/formkiq/client/api/DocumentAttributesApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentAttributesApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentDataClassificationApiTest.java b/src/test/java/com/formkiq/client/api/DocumentDataClassificationApiTest.java index 52ad8abcd..f2a25b417 100644 --- a/src/test/java/com/formkiq/client/api/DocumentDataClassificationApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentDataClassificationApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentFoldersApiTest.java b/src/test/java/com/formkiq/client/api/DocumentFoldersApiTest.java index ca0011f35..951a0ad8d 100644 --- a/src/test/java/com/formkiq/client/api/DocumentFoldersApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentFoldersApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentGenerationApiTest.java b/src/test/java/com/formkiq/client/api/DocumentGenerationApiTest.java index 4355a9bab..a92d86a75 100644 --- a/src/test/java/com/formkiq/client/api/DocumentGenerationApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentGenerationApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentOcrApiTest.java b/src/test/java/com/formkiq/client/api/DocumentOcrApiTest.java index c9d78defe..740677ffb 100644 --- a/src/test/java/com/formkiq/client/api/DocumentOcrApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentOcrApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentSearchApiTest.java b/src/test/java/com/formkiq/client/api/DocumentSearchApiTest.java index 25dc1df83..abfa60c8d 100644 --- a/src/test/java/com/formkiq/client/api/DocumentSearchApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentSearchApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentSharesApiTest.java b/src/test/java/com/formkiq/client/api/DocumentSharesApiTest.java index 16926c8fa..032bd9af2 100644 --- a/src/test/java/com/formkiq/client/api/DocumentSharesApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentSharesApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentTagsApiTest.java b/src/test/java/com/formkiq/client/api/DocumentTagsApiTest.java index 5fb28c865..5e4a4b9f0 100644 --- a/src/test/java/com/formkiq/client/api/DocumentTagsApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentTagsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentVersionsApiTest.java b/src/test/java/com/formkiq/client/api/DocumentVersionsApiTest.java index 29eb8b495..97168ac87 100644 --- a/src/test/java/com/formkiq/client/api/DocumentVersionsApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentVersionsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentWorkflowsApiTest.java b/src/test/java/com/formkiq/client/api/DocumentWorkflowsApiTest.java index 935e0c3a0..0f77526d0 100644 --- a/src/test/java/com/formkiq/client/api/DocumentWorkflowsApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentWorkflowsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/DocumentsApiTest.java b/src/test/java/com/formkiq/client/api/DocumentsApiTest.java index d93011927..c72309015 100644 --- a/src/test/java/com/formkiq/client/api/DocumentsApiTest.java +++ b/src/test/java/com/formkiq/client/api/DocumentsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -322,9 +322,10 @@ public void getDocumentsTest() throws ApiException { String tz = null; String next = null; String previous = null; + String projection = null; String limit = null; GetDocumentsResponse response = api.getDocuments(siteId, actionStatus, syncStatus, deleted, - date, tz, next, previous, limit); + date, tz, next, previous, projection, limit); // TODO: test validations } diff --git a/src/test/java/com/formkiq/client/api/ESignatureApiTest.java b/src/test/java/com/formkiq/client/api/ESignatureApiTest.java index 75a8d7366..6f5c24225 100644 --- a/src/test/java/com/formkiq/client/api/ESignatureApiTest.java +++ b/src/test/java/com/formkiq/client/api/ESignatureApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/EntityApiTest.java b/src/test/java/com/formkiq/client/api/EntityApiTest.java index cb39f8e12..193733744 100644 --- a/src/test/java/com/formkiq/client/api/EntityApiTest.java +++ b/src/test/java/com/formkiq/client/api/EntityApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/ExamineObjectsApiTest.java b/src/test/java/com/formkiq/client/api/ExamineObjectsApiTest.java index 08dc04f41..2e063620d 100644 --- a/src/test/java/com/formkiq/client/api/ExamineObjectsApiTest.java +++ b/src/test/java/com/formkiq/client/api/ExamineObjectsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/GoogleIntegrationApiTest.java b/src/test/java/com/formkiq/client/api/GoogleIntegrationApiTest.java index 2d33e2e79..c2e3da6f9 100644 --- a/src/test/java/com/formkiq/client/api/GoogleIntegrationApiTest.java +++ b/src/test/java/com/formkiq/client/api/GoogleIntegrationApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/MalwareScanApiTest.java b/src/test/java/com/formkiq/client/api/MalwareScanApiTest.java index f4e4edb07..f990f65f8 100644 --- a/src/test/java/com/formkiq/client/api/MalwareScanApiTest.java +++ b/src/test/java/com/formkiq/client/api/MalwareScanApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/MappingsApiTest.java b/src/test/java/com/formkiq/client/api/MappingsApiTest.java index 11758bbab..2ac9aeeec 100644 --- a/src/test/java/com/formkiq/client/api/MappingsApiTest.java +++ b/src/test/java/com/formkiq/client/api/MappingsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/PublicApiTest.java b/src/test/java/com/formkiq/client/api/PublicApiTest.java index c49f7b84c..b7f987381 100644 --- a/src/test/java/com/formkiq/client/api/PublicApiTest.java +++ b/src/test/java/com/formkiq/client/api/PublicApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/ReindexApiTest.java b/src/test/java/com/formkiq/client/api/ReindexApiTest.java index ae1dea675..db7b861cd 100644 --- a/src/test/java/com/formkiq/client/api/ReindexApiTest.java +++ b/src/test/java/com/formkiq/client/api/ReindexApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/RulesetsApiTest.java b/src/test/java/com/formkiq/client/api/RulesetsApiTest.java index 39103d8a4..1c3f403c9 100644 --- a/src/test/java/com/formkiq/client/api/RulesetsApiTest.java +++ b/src/test/java/com/formkiq/client/api/RulesetsApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/SchemasApiTest.java b/src/test/java/com/formkiq/client/api/SchemasApiTest.java index 432f017ae..7e2800aea 100644 --- a/src/test/java/com/formkiq/client/api/SchemasApiTest.java +++ b/src/test/java/com/formkiq/client/api/SchemasApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/SystemManagementApiTest.java b/src/test/java/com/formkiq/client/api/SystemManagementApiTest.java index daaad1a90..b3b36deba 100644 --- a/src/test/java/com/formkiq/client/api/SystemManagementApiTest.java +++ b/src/test/java/com/formkiq/client/api/SystemManagementApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/TagIndexApiTest.java b/src/test/java/com/formkiq/client/api/TagIndexApiTest.java index 168c0279a..8eb9f6a11 100644 --- a/src/test/java/com/formkiq/client/api/TagIndexApiTest.java +++ b/src/test/java/com/formkiq/client/api/TagIndexApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/UserActivitiesApiTest.java b/src/test/java/com/formkiq/client/api/UserActivitiesApiTest.java index 9c5690903..8c1519ed5 100644 --- a/src/test/java/com/formkiq/client/api/UserActivitiesApiTest.java +++ b/src/test/java/com/formkiq/client/api/UserActivitiesApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/UserManagementApiTest.java b/src/test/java/com/formkiq/client/api/UserManagementApiTest.java index f51d037f9..36c20a43c 100644 --- a/src/test/java/com/formkiq/client/api/UserManagementApiTest.java +++ b/src/test/java/com/formkiq/client/api/UserManagementApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/api/WebhooksApiTest.java b/src/test/java/com/formkiq/client/api/WebhooksApiTest.java index 13c0bb1ec..a2cf1b50e 100644 --- a/src/test/java/com/formkiq/client/api/WebhooksApiTest.java +++ b/src/test/java/com/formkiq/client/api/WebhooksApiTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ActivityStatusTest.java b/src/test/java/com/formkiq/client/model/ActivityStatusTest.java index 0eea3599d..883d67a43 100644 --- a/src/test/java/com/formkiq/client/model/ActivityStatusTest.java +++ b/src/test/java/com/formkiq/client/model/ActivityStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ActivityTest.java b/src/test/java/com/formkiq/client/model/ActivityTest.java index e09029b22..0dabcdbcf 100644 --- a/src/test/java/com/formkiq/client/model/ActivityTest.java +++ b/src/test/java/com/formkiq/client/model/ActivityTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddActionParametersTest.java b/src/test/java/com/formkiq/client/model/AddActionParametersTest.java index d17e3f7a3..fcb92d552 100644 --- a/src/test/java/com/formkiq/client/model/AddActionParametersTest.java +++ b/src/test/java/com/formkiq/client/model/AddActionParametersTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddActionTest.java b/src/test/java/com/formkiq/client/model/AddActionTest.java index d818244e9..0f84821f5 100644 --- a/src/test/java/com/formkiq/client/model/AddActionTest.java +++ b/src/test/java/com/formkiq/client/model/AddActionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddApiKeyRequestTest.java b/src/test/java/com/formkiq/client/model/AddApiKeyRequestTest.java index 1079b0dfd..16e8c2cd1 100644 --- a/src/test/java/com/formkiq/client/model/AddApiKeyRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddApiKeyRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -20,6 +20,7 @@ package com.formkiq.client.model; +import com.formkiq.client.model.ApiKeyPermission; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -54,6 +55,14 @@ public void nameTest() { // TODO: test name } + /** + * Test the property 'groups' + */ + @Test + public void groupsTest() { + // TODO: test groups + } + /** * Test the property 'permissions' */ diff --git a/src/test/java/com/formkiq/client/model/AddApiKeyResponseTest.java b/src/test/java/com/formkiq/client/model/AddApiKeyResponseTest.java index 2b62cc904..837fb4897 100644 --- a/src/test/java/com/formkiq/client/model/AddApiKeyResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddApiKeyResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddAttributeRequestTest.java b/src/test/java/com/formkiq/client/model/AddAttributeRequestTest.java index 5c8e8f81d..2b11d91a2 100644 --- a/src/test/java/com/formkiq/client/model/AddAttributeRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddAttributeRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddAttributeSchemaOptionalTest.java b/src/test/java/com/formkiq/client/model/AddAttributeSchemaOptionalTest.java index 926308c07..25379bae9 100644 --- a/src/test/java/com/formkiq/client/model/AddAttributeSchemaOptionalTest.java +++ b/src/test/java/com/formkiq/client/model/AddAttributeSchemaOptionalTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddAttributeSchemaRequiredTest.java b/src/test/java/com/formkiq/client/model/AddAttributeSchemaRequiredTest.java index 2b8396961..d765fca18 100644 --- a/src/test/java/com/formkiq/client/model/AddAttributeSchemaRequiredTest.java +++ b/src/test/java/com/formkiq/client/model/AddAttributeSchemaRequiredTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddAttributeTest.java b/src/test/java/com/formkiq/client/model/AddAttributeTest.java index eb4477548..95dc2451d 100644 --- a/src/test/java/com/formkiq/client/model/AddAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/AddAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddCaseRequestTest.java b/src/test/java/com/formkiq/client/model/AddCaseRequestTest.java index 348fd2fa2..80474be28 100644 --- a/src/test/java/com/formkiq/client/model/AddCaseRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddCaseRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddCaseResponseTest.java b/src/test/java/com/formkiq/client/model/AddCaseResponseTest.java index 3a647fdab..1466709d0 100644 --- a/src/test/java/com/formkiq/client/model/AddCaseResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddCaseResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddCaseTest.java b/src/test/java/com/formkiq/client/model/AddCaseTest.java index 3af70dfa7..f697e4518 100644 --- a/src/test/java/com/formkiq/client/model/AddCaseTest.java +++ b/src/test/java/com/formkiq/client/model/AddCaseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddChildDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/AddChildDocumentResponseTest.java index 3df767422..bfb278f1f 100644 --- a/src/test/java/com/formkiq/client/model/AddChildDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddChildDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddChildDocumentTest.java b/src/test/java/com/formkiq/client/model/AddChildDocumentTest.java index aec1ded7d..c0df5915f 100644 --- a/src/test/java/com/formkiq/client/model/AddChildDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/AddChildDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddClassificationRequestTest.java b/src/test/java/com/formkiq/client/model/AddClassificationRequestTest.java index d3bad3425..9410b5b4a 100644 --- a/src/test/java/com/formkiq/client/model/AddClassificationRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddClassificationRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddClassificationResponseTest.java b/src/test/java/com/formkiq/client/model/AddClassificationResponseTest.java index c21bc39c3..30d09dd98 100644 --- a/src/test/java/com/formkiq/client/model/AddClassificationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddClassificationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddClassificationTest.java b/src/test/java/com/formkiq/client/model/AddClassificationTest.java index 831601a4c..3effce755 100644 --- a/src/test/java/com/formkiq/client/model/AddClassificationTest.java +++ b/src/test/java/com/formkiq/client/model/AddClassificationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentActionsRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentActionsRequestTest.java index fd23c3357..cb4398f90 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentActionsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentActionsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentActionsResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentActionsResponseTest.java index 5e5cef879..d4e81f370 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentActionsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentActionsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentActionsRetryResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentActionsRetryResponseTest.java index 2ea481b9e..f4a4b253a 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentActionsRetryResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentActionsRetryResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeClassificationTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeClassificationTest.java index 264f7708d..e58ae9e24 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeClassificationTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeClassificationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeEntityTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeEntityTest.java index 65c3c1435..5a4cff158 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeEntityTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeEntityTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeRelationshipTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeRelationshipTest.java index 7e7554d59..b58645bce 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeRelationshipTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeRelationshipTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeStandardTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeStandardTest.java index a2731fd47..b9a1da245 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeStandardTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeStandardTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeTest.java index 3eed67456..3f3a27c69 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributeValueTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributeValueTest.java index 5648b8369..f0ca90a0b 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributeValueTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributeValueTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentAttributesRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentAttributesRequestTest.java index d9586280b..33a999887 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentAttributesRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentAttributesRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentFulltextRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentFulltextRequestTest.java index e5b630ede..feaf37a53 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentFulltextRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentFulltextRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentFulltextResponseTest.java index 3c17408b3..8a73135a3 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentGenerateRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentGenerateRequestTest.java index d595303db..846fd1a54 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentGenerateRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentGenerateRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentGenerateResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentGenerateResponseTest.java index 208397573..6a3ed5c6a 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentGenerateResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentGenerateResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentMetadataTest.java b/src/test/java/com/formkiq/client/model/AddDocumentMetadataTest.java index 8d9475f6a..af6e00e10 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentMetadataTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentMetadataTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentOcrRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentOcrRequestTest.java index c53ca47f7..10ae80a3d 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentOcrRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentOcrRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentOcrResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentOcrResponseTest.java index 995f36f47..fe8563007 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentOcrResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentOcrResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentRequestTest.java index 66f23920c..c528da1dd 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentResponseTest.java index 0c59f5f01..844326cff 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentSyncRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentSyncRequestTest.java index 261de0340..83a731a60 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentSyncRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentSyncRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentSyncServiceTest.java b/src/test/java/com/formkiq/client/model/AddDocumentSyncServiceTest.java index c8ff36c0f..bdd2a81f5 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentSyncServiceTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentSyncServiceTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentSyncTest.java b/src/test/java/com/formkiq/client/model/AddDocumentSyncTest.java index 505be3656..f2ff76ee8 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentSyncTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentSyncTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentTagTest.java b/src/test/java/com/formkiq/client/model/AddDocumentTagTest.java index 2d4bcd047..32dd81edf 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentTagTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentTagsRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentTagsRequestTest.java index f89aa0a86..137ea48cf 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentTagsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentTagsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentUploadRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentUploadRequestTest.java index c8da5122e..1ab9ba138 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentUploadRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentUploadRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequestTest.java index b6d88caba..06486d2c7 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponseTest.java index 70791a7ae..732bd01d7 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowDecisionsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowRequestTest.java index ea9a05677..e68bcaf81 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowResponseTest.java index 3a8547921..ef0a41c24 100644 --- a/src/test/java/com/formkiq/client/model/AddDocumentWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocumentWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesRequestTest.java index 741a38c2d..93c4d280c 100644 --- a/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesResponseTest.java index 4f4db85ec..ba063a5f7 100644 --- a/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocusignEnvelopesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewRequestTest.java b/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewRequestTest.java index 744bd71c8..826e60c0c 100644 --- a/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewResponseTest.java b/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewResponseTest.java index 60c608fec..bab043756 100644 --- a/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddDocusignRecipientViewResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityAttributeTest.java b/src/test/java/com/formkiq/client/model/AddEntityAttributeTest.java index 35f9eb0ff..349aff120 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityRequestTest.java b/src/test/java/com/formkiq/client/model/AddEntityRequestTest.java index d97d5f88e..114fb9dcb 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityResponseTest.java b/src/test/java/com/formkiq/client/model/AddEntityResponseTest.java index a21c9288a..18d0729d1 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityTest.java b/src/test/java/com/formkiq/client/model/AddEntityTest.java index e79f57975..364e9f855 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityTypeRequestTest.java b/src/test/java/com/formkiq/client/model/AddEntityTypeRequestTest.java index 46f393126..7cae9fd69 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityTypeRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityTypeRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityTypeResponseTest.java b/src/test/java/com/formkiq/client/model/AddEntityTypeResponseTest.java index 22b2d641a..30d7111ab 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityTypeResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityTypeResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddEntityTypeTest.java b/src/test/java/com/formkiq/client/model/AddEntityTypeTest.java index 4bf1e5ace..8a1367bb5 100644 --- a/src/test/java/com/formkiq/client/model/AddEntityTypeTest.java +++ b/src/test/java/com/formkiq/client/model/AddEntityTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddFolderPermissionTest.java b/src/test/java/com/formkiq/client/model/AddFolderPermissionTest.java index 148d0c62a..b508c956e 100644 --- a/src/test/java/com/formkiq/client/model/AddFolderPermissionTest.java +++ b/src/test/java/com/formkiq/client/model/AddFolderPermissionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddFolderRequestTest.java b/src/test/java/com/formkiq/client/model/AddFolderRequestTest.java index c94161655..76ddd7da2 100644 --- a/src/test/java/com/formkiq/client/model/AddFolderRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddFolderRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddFolderResponseTest.java b/src/test/java/com/formkiq/client/model/AddFolderResponseTest.java index bc858f2e1..776eca180 100644 --- a/src/test/java/com/formkiq/client/model/AddFolderResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddFolderResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddFolderShareRequestTest.java b/src/test/java/com/formkiq/client/model/AddFolderShareRequestTest.java index c09b664dd..c60eb6819 100644 --- a/src/test/java/com/formkiq/client/model/AddFolderShareRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddFolderShareRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddFolderShareResponseTest.java b/src/test/java/com/formkiq/client/model/AddFolderShareResponseTest.java index 3502350d3..f6d2be557 100644 --- a/src/test/java/com/formkiq/client/model/AddFolderShareResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddFolderShareResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportRequestTest.java b/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportRequestTest.java index f1d0c86bc..be7466244 100644 --- a/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportResponseTest.java b/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportResponseTest.java index 521781808..a4821c815 100644 --- a/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddGoogleDocumentExportResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddGroupRequestTest.java b/src/test/java/com/formkiq/client/model/AddGroupRequestTest.java index a01cc363e..b9a109a1d 100644 --- a/src/test/java/com/formkiq/client/model/AddGroupRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddGroupRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddGroupTest.java b/src/test/java/com/formkiq/client/model/AddGroupTest.java index ef14ce273..26d0fbf02 100644 --- a/src/test/java/com/formkiq/client/model/AddGroupTest.java +++ b/src/test/java/com/formkiq/client/model/AddGroupTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleRequestTest.java b/src/test/java/com/formkiq/client/model/AddLocaleRequestTest.java index d72215c3e..281b63b9d 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleResourceClassificationItemTest.java b/src/test/java/com/formkiq/client/model/AddLocaleResourceClassificationItemTest.java index 8128332cf..2e08ce2b4 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleResourceClassificationItemTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleResourceClassificationItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleResourceInterfaceItemTest.java b/src/test/java/com/formkiq/client/model/AddLocaleResourceInterfaceItemTest.java index 9c36f73f5..65ca6c584 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleResourceInterfaceItemTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleResourceInterfaceItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleResourceItemRequestTest.java b/src/test/java/com/formkiq/client/model/AddLocaleResourceItemRequestTest.java index 0a7a86dd2..0ca39ab54 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleResourceItemRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleResourceItemRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleResourceItemResponseTest.java b/src/test/java/com/formkiq/client/model/AddLocaleResourceItemResponseTest.java index 38022de23..384825128 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleResourceItemResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleResourceItemResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddLocaleResourceSchemaItemTest.java b/src/test/java/com/formkiq/client/model/AddLocaleResourceSchemaItemTest.java index 07088a360..1c9041fa5 100644 --- a/src/test/java/com/formkiq/client/model/AddLocaleResourceSchemaItemTest.java +++ b/src/test/java/com/formkiq/client/model/AddLocaleResourceSchemaItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddMappingRequestTest.java b/src/test/java/com/formkiq/client/model/AddMappingRequestTest.java index 65f633816..e83048ea1 100644 --- a/src/test/java/com/formkiq/client/model/AddMappingRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddMappingRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddMappingResponseTest.java b/src/test/java/com/formkiq/client/model/AddMappingResponseTest.java index 9b9c9a553..e566dd02c 100644 --- a/src/test/java/com/formkiq/client/model/AddMappingResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddMappingResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddMappingTest.java b/src/test/java/com/formkiq/client/model/AddMappingTest.java index 21efb54e0..4bfc59919 100644 --- a/src/test/java/com/formkiq/client/model/AddMappingTest.java +++ b/src/test/java/com/formkiq/client/model/AddMappingTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddNigoRequestTest.java b/src/test/java/com/formkiq/client/model/AddNigoRequestTest.java index bff1cf55a..d38144d7a 100644 --- a/src/test/java/com/formkiq/client/model/AddNigoRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddNigoRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddNigoResponseTest.java b/src/test/java/com/formkiq/client/model/AddNigoResponseTest.java index 320f28406..e4451eaee 100644 --- a/src/test/java/com/formkiq/client/model/AddNigoResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddNigoResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddNigoTest.java b/src/test/java/com/formkiq/client/model/AddNigoTest.java index 3522ba0a4..b0c558e6d 100644 --- a/src/test/java/com/formkiq/client/model/AddNigoTest.java +++ b/src/test/java/com/formkiq/client/model/AddNigoTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddQueueRequestTest.java b/src/test/java/com/formkiq/client/model/AddQueueRequestTest.java index 255fb7894..865fe2595 100644 --- a/src/test/java/com/formkiq/client/model/AddQueueRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddQueueRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddQueueResponseTest.java b/src/test/java/com/formkiq/client/model/AddQueueResponseTest.java index 695db0f88..5bca02adc 100644 --- a/src/test/java/com/formkiq/client/model/AddQueueResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddQueueResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddReindexDocumentRequestTest.java b/src/test/java/com/formkiq/client/model/AddReindexDocumentRequestTest.java index 0d72ace1c..e4f171268 100644 --- a/src/test/java/com/formkiq/client/model/AddReindexDocumentRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddReindexDocumentRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddResourceItemTest.java b/src/test/java/com/formkiq/client/model/AddResourceItemTest.java index b78279d2a..7254fe88d 100644 --- a/src/test/java/com/formkiq/client/model/AddResourceItemTest.java +++ b/src/test/java/com/formkiq/client/model/AddResourceItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddResponseTest.java b/src/test/java/com/formkiq/client/model/AddResponseTest.java index 962b95f51..b29db9e90 100644 --- a/src/test/java/com/formkiq/client/model/AddResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRuleRequestTest.java b/src/test/java/com/formkiq/client/model/AddRuleRequestTest.java index 6953bbca4..5bcd17e53 100644 --- a/src/test/java/com/formkiq/client/model/AddRuleRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddRuleRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRuleResponseTest.java b/src/test/java/com/formkiq/client/model/AddRuleResponseTest.java index c5f94ed41..391b7c89d 100644 --- a/src/test/java/com/formkiq/client/model/AddRuleResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddRuleResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRuleTest.java b/src/test/java/com/formkiq/client/model/AddRuleTest.java index cd46dcc82..47787bf7f 100644 --- a/src/test/java/com/formkiq/client/model/AddRuleTest.java +++ b/src/test/java/com/formkiq/client/model/AddRuleTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRulesetRequestTest.java b/src/test/java/com/formkiq/client/model/AddRulesetRequestTest.java index 7834101f7..714093041 100644 --- a/src/test/java/com/formkiq/client/model/AddRulesetRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddRulesetRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRulesetResponseTest.java b/src/test/java/com/formkiq/client/model/AddRulesetResponseTest.java index 35f069796..7d0c04744 100644 --- a/src/test/java/com/formkiq/client/model/AddRulesetResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddRulesetResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddRulesetTest.java b/src/test/java/com/formkiq/client/model/AddRulesetTest.java index 8a07caca6..7b782d9a5 100644 --- a/src/test/java/com/formkiq/client/model/AddRulesetTest.java +++ b/src/test/java/com/formkiq/client/model/AddRulesetTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddShareTest.java b/src/test/java/com/formkiq/client/model/AddShareTest.java index cecd21b9c..d43ec884c 100644 --- a/src/test/java/com/formkiq/client/model/AddShareTest.java +++ b/src/test/java/com/formkiq/client/model/AddShareTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddSiteRequestTest.java b/src/test/java/com/formkiq/client/model/AddSiteRequestTest.java index 99f7ef2c1..af312de86 100644 --- a/src/test/java/com/formkiq/client/model/AddSiteRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddSiteRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddSiteTest.java b/src/test/java/com/formkiq/client/model/AddSiteTest.java index 3401c1ec1..be9613954 100644 --- a/src/test/java/com/formkiq/client/model/AddSiteTest.java +++ b/src/test/java/com/formkiq/client/model/AddSiteTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddTaskRequestTest.java b/src/test/java/com/formkiq/client/model/AddTaskRequestTest.java index 3270a2e35..b96b8a098 100644 --- a/src/test/java/com/formkiq/client/model/AddTaskRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddTaskRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddTaskResponseTest.java b/src/test/java/com/formkiq/client/model/AddTaskResponseTest.java index 2b3159d1c..04822acaa 100644 --- a/src/test/java/com/formkiq/client/model/AddTaskResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddTaskResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddTaskTest.java b/src/test/java/com/formkiq/client/model/AddTaskTest.java index 70075bbd4..924245b1a 100644 --- a/src/test/java/com/formkiq/client/model/AddTaskTest.java +++ b/src/test/java/com/formkiq/client/model/AddTaskTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddUserRequestTest.java b/src/test/java/com/formkiq/client/model/AddUserRequestTest.java index 3e5a16c41..4930df193 100644 --- a/src/test/java/com/formkiq/client/model/AddUserRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddUserRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddUserTest.java b/src/test/java/com/formkiq/client/model/AddUserTest.java index 88f04d70f..bc7878ff4 100644 --- a/src/test/java/com/formkiq/client/model/AddUserTest.java +++ b/src/test/java/com/formkiq/client/model/AddUserTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWebhookRequestTest.java b/src/test/java/com/formkiq/client/model/AddWebhookRequestTest.java index 94ceab71d..0f4996bf0 100644 --- a/src/test/java/com/formkiq/client/model/AddWebhookRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddWebhookRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWebhookResponseTest.java b/src/test/java/com/formkiq/client/model/AddWebhookResponseTest.java index 99c2cfbc1..21962f45b 100644 --- a/src/test/java/com/formkiq/client/model/AddWebhookResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddWebhookResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWebhookTagRequestTest.java b/src/test/java/com/formkiq/client/model/AddWebhookTagRequestTest.java index cc8a33fdd..6d0dc1cb1 100644 --- a/src/test/java/com/formkiq/client/model/AddWebhookTagRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddWebhookTagRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWorkflowRequestTest.java b/src/test/java/com/formkiq/client/model/AddWorkflowRequestTest.java index cf732110e..72b2dce1b 100644 --- a/src/test/java/com/formkiq/client/model/AddWorkflowRequestTest.java +++ b/src/test/java/com/formkiq/client/model/AddWorkflowRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/AddWorkflowResponseTest.java index 892ae9aa8..26119c2a2 100644 --- a/src/test/java/com/formkiq/client/model/AddWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/AddWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWorkflowStepDecisionTest.java b/src/test/java/com/formkiq/client/model/AddWorkflowStepDecisionTest.java index 72aef926b..243cc56d3 100644 --- a/src/test/java/com/formkiq/client/model/AddWorkflowStepDecisionTest.java +++ b/src/test/java/com/formkiq/client/model/AddWorkflowStepDecisionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWorkflowStepQueueTest.java b/src/test/java/com/formkiq/client/model/AddWorkflowStepQueueTest.java index 35784d123..1825da101 100644 --- a/src/test/java/com/formkiq/client/model/AddWorkflowStepQueueTest.java +++ b/src/test/java/com/formkiq/client/model/AddWorkflowStepQueueTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AddWorkflowStepTest.java b/src/test/java/com/formkiq/client/model/AddWorkflowStepTest.java index 51e6d064d..09ac866a1 100644 --- a/src/test/java/com/formkiq/client/model/AddWorkflowStepTest.java +++ b/src/test/java/com/formkiq/client/model/AddWorkflowStepTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ApiKeyPermissionTest.java b/src/test/java/com/formkiq/client/model/ApiKeyPermissionTest.java new file mode 100644 index 000000000..65028e3bb --- /dev/null +++ b/src/test/java/com/formkiq/client/model/ApiKeyPermissionTest.java @@ -0,0 +1,39 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import com.google.gson.annotations.SerializedName; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +/** + * Model tests for ApiKeyPermission + */ +public class ApiKeyPermissionTest { + /** + * Model tests for ApiKeyPermission + */ + @Test + public void testApiKeyPermission() { + // TODO: test ApiKeyPermission + } + +} diff --git a/src/test/java/com/formkiq/client/model/ApiKeyTest.java b/src/test/java/com/formkiq/client/model/ApiKeyTest.java index 457bfd3f9..2a0fded2e 100644 --- a/src/test/java/com/formkiq/client/model/ApiKeyTest.java +++ b/src/test/java/com/formkiq/client/model/ApiKeyTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -20,6 +20,7 @@ package com.formkiq.client.model; +import com.formkiq.client.model.ApiKeyPermission; import com.google.gson.TypeAdapter; import com.google.gson.annotations.JsonAdapter; import com.google.gson.annotations.SerializedName; @@ -94,4 +95,12 @@ public void permissionsTest() { // TODO: test permissions } + /** + * Test the property 'groups' + */ + @Test + public void groupsTest() { + // TODO: test groups + } + } diff --git a/src/test/java/com/formkiq/client/model/AttributeDataTypeTest.java b/src/test/java/com/formkiq/client/model/AttributeDataTypeTest.java index 514d170ec..1f7b7790e 100644 --- a/src/test/java/com/formkiq/client/model/AttributeDataTypeTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeDataTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeSchemaCompositeKeyTest.java b/src/test/java/com/formkiq/client/model/AttributeSchemaCompositeKeyTest.java index 22b3accfc..1133f5a6d 100644 --- a/src/test/java/com/formkiq/client/model/AttributeSchemaCompositeKeyTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeSchemaCompositeKeyTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeSchemaOptionalTest.java b/src/test/java/com/formkiq/client/model/AttributeSchemaOptionalTest.java index f94da8333..8d2835bdc 100644 --- a/src/test/java/com/formkiq/client/model/AttributeSchemaOptionalTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeSchemaOptionalTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeSchemaRequiredTest.java b/src/test/java/com/formkiq/client/model/AttributeSchemaRequiredTest.java index d65f8f8a6..6db4fef79 100644 --- a/src/test/java/com/formkiq/client/model/AttributeSchemaRequiredTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeSchemaRequiredTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeTest.java b/src/test/java/com/formkiq/client/model/AttributeTest.java index 286953aba..d53fb85ba 100644 --- a/src/test/java/com/formkiq/client/model/AttributeTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeTypeTest.java b/src/test/java/com/formkiq/client/model/AttributeTypeTest.java index 433224cc2..e6524c577 100644 --- a/src/test/java/com/formkiq/client/model/AttributeTypeTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/AttributeValueTypeTest.java b/src/test/java/com/formkiq/client/model/AttributeValueTypeTest.java index e1941dec1..54428371c 100644 --- a/src/test/java/com/formkiq/client/model/AttributeValueTypeTest.java +++ b/src/test/java/com/formkiq/client/model/AttributeValueTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/CaseStatusTest.java b/src/test/java/com/formkiq/client/model/CaseStatusTest.java index 8762909d7..735e15355 100644 --- a/src/test/java/com/formkiq/client/model/CaseStatusTest.java +++ b/src/test/java/com/formkiq/client/model/CaseStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ChecksumTypeTest.java b/src/test/java/com/formkiq/client/model/ChecksumTypeTest.java index 6cc85fc7d..49b38160b 100644 --- a/src/test/java/com/formkiq/client/model/ChecksumTypeTest.java +++ b/src/test/java/com/formkiq/client/model/ChecksumTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ChildDocumentTest.java b/src/test/java/com/formkiq/client/model/ChildDocumentTest.java index d3ba068d9..ac8386b39 100644 --- a/src/test/java/com/formkiq/client/model/ChildDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/ChildDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ClassificationSummaryTest.java b/src/test/java/com/formkiq/client/model/ClassificationSummaryTest.java index 90db384fd..3942bacd8 100644 --- a/src/test/java/com/formkiq/client/model/ClassificationSummaryTest.java +++ b/src/test/java/com/formkiq/client/model/ClassificationSummaryTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ClassificationTest.java b/src/test/java/com/formkiq/client/model/ClassificationTest.java index bc70639a4..9f1e30c90 100644 --- a/src/test/java/com/formkiq/client/model/ClassificationTest.java +++ b/src/test/java/com/formkiq/client/model/ClassificationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DataClassificationAttributeTest.java b/src/test/java/com/formkiq/client/model/DataClassificationAttributeTest.java index db75df040..1ca5815e3 100644 --- a/src/test/java/com/formkiq/client/model/DataClassificationAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/DataClassificationAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DataClassificationTest.java b/src/test/java/com/formkiq/client/model/DataClassificationTest.java index 52350b4f8..a584b27ff 100644 --- a/src/test/java/com/formkiq/client/model/DataClassificationTest.java +++ b/src/test/java/com/formkiq/client/model/DataClassificationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteApiKeyResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteApiKeyResponseTest.java index d311b90d2..0589f879a 100644 --- a/src/test/java/com/formkiq/client/model/DeleteApiKeyResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteApiKeyResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseDocumentResponseTest.java index a64c9ab5a..f9710b0ca 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponseTest.java index c3cad60bd..bed1e9ec6 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseNigoDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseNigoResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseNigoResponseTest.java index 1ff63ec5e..009cb958d 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseNigoResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseNigoResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseResponseTest.java index f93709baa..44f5cd3df 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponseTest.java index 2a7807701..5e034bdaf 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseTaskDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteCaseTaskResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteCaseTaskResponseTest.java index aca9197f6..a5aba6130 100644 --- a/src/test/java/com/formkiq/client/model/DeleteCaseTaskResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteCaseTaskResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteFolderResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteFolderResponseTest.java index 76e5fa11f..2e2448a81 100644 --- a/src/test/java/com/formkiq/client/model/DeleteFolderResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteFolderResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteFulltextResponseTest.java index 8ee7e2b0e..b6eb6590f 100644 --- a/src/test/java/com/formkiq/client/model/DeleteFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteIndicesResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteIndicesResponseTest.java index cef2add26..8a1554373 100644 --- a/src/test/java/com/formkiq/client/model/DeleteIndicesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteIndicesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteQueueResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteQueueResponseTest.java index b308de23d..494faf706 100644 --- a/src/test/java/com/formkiq/client/model/DeleteQueueResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteQueueResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteResponseTest.java index 89a3309ab..e2c505302 100644 --- a/src/test/java/com/formkiq/client/model/DeleteResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteRuleResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteRuleResponseTest.java index b9851ad08..5ed2e47a5 100644 --- a/src/test/java/com/formkiq/client/model/DeleteRuleResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteRuleResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteRulesetResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteRulesetResponseTest.java index d67e2e77b..c4462e1c6 100644 --- a/src/test/java/com/formkiq/client/model/DeleteRulesetResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteRulesetResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteShareResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteShareResponseTest.java index bf7a3df07..2cec5d697 100644 --- a/src/test/java/com/formkiq/client/model/DeleteShareResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteShareResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DeleteWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/DeleteWorkflowResponseTest.java index 5d4fbfe45..4d56ee09e 100644 --- a/src/test/java/com/formkiq/client/model/DeleteWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DeleteWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentActionStatusTest.java b/src/test/java/com/formkiq/client/model/DocumentActionStatusTest.java index ab713ea6b..171d4843a 100644 --- a/src/test/java/com/formkiq/client/model/DocumentActionStatusTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentActionStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentActionTest.java b/src/test/java/com/formkiq/client/model/DocumentActionTest.java index ebee79d5d..7df3f2e84 100644 --- a/src/test/java/com/formkiq/client/model/DocumentActionTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentActionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentActionTypeTest.java b/src/test/java/com/formkiq/client/model/DocumentActionTypeTest.java index 04f58db71..0168cc16c 100644 --- a/src/test/java/com/formkiq/client/model/DocumentActionTypeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentActionTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentAttributeTest.java b/src/test/java/com/formkiq/client/model/DocumentAttributeTest.java index 38cf366be..f811b9af7 100644 --- a/src/test/java/com/formkiq/client/model/DocumentAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentConfigContentTypesTest.java b/src/test/java/com/formkiq/client/model/DocumentConfigContentTypesTest.java new file mode 100644 index 000000000..8584ae857 --- /dev/null +++ b/src/test/java/com/formkiq/client/model/DocumentConfigContentTypesTest.java @@ -0,0 +1,65 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +/** + * Model tests for DocumentConfigContentTypes + */ +public class DocumentConfigContentTypesTest { + private final DocumentConfigContentTypes model = new DocumentConfigContentTypes(); + + /** + * Model tests for DocumentConfigContentTypes + */ + @Test + public void testDocumentConfigContentTypes() { + // TODO: test DocumentConfigContentTypes + } + + /** + * Test the property 'allowlist' + */ + @Test + public void allowlistTest() { + // TODO: test allowlist + } + + /** + * Test the property 'denylist' + */ + @Test + public void denylistTest() { + // TODO: test denylist + } + +} diff --git a/src/test/java/com/formkiq/client/model/DocumentConfigTest.java b/src/test/java/com/formkiq/client/model/DocumentConfigTest.java new file mode 100644 index 000000000..c608acab1 --- /dev/null +++ b/src/test/java/com/formkiq/client/model/DocumentConfigTest.java @@ -0,0 +1,56 @@ +/* + * FormKiQ API JWT Formkiq API: Document Management Platform API using OAuth(JWT) Authentication You + * can find out more about FormKiQ at [https://formkiq.com](http://formkiq.com). ## Introduction + * FormKiQ is an API-first (head-less), battle-tested document management API. The FormKiQ API + * provides all the API endpoints to build your Perfect Document Management Platform. FormKiQ API + * was built on top of [OpenAPI specification](https://www.openapis.org), so it is easy to use the + * API spec file with any application that supports the OpenAPI specification. Open API OAuth + * Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-jwt.yaml Open + * API IAM Specification - + * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## + * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key + * + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com + * + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). + * https://openapi-generator.tech Do not edit the class manually. + */ + + +package com.formkiq.client.model; + +import com.formkiq.client.model.DocumentConfigContentTypes; +import com.google.gson.TypeAdapter; +import com.google.gson.annotations.JsonAdapter; +import com.google.gson.annotations.SerializedName; +import com.google.gson.stream.JsonReader; +import com.google.gson.stream.JsonWriter; +import java.io.IOException; +import java.util.Arrays; +import org.junit.jupiter.api.Disabled; +import org.junit.jupiter.api.Test; + +/** + * Model tests for DocumentConfig + */ +public class DocumentConfigTest { + private final DocumentConfig model = new DocumentConfig(); + + /** + * Model tests for DocumentConfig + */ + @Test + public void testDocumentConfig() { + // TODO: test DocumentConfig + } + + /** + * Test the property 'contentTypes' + */ + @Test + public void contentTypesTest() { + // TODO: test contentTypes + } + +} diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeEqTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeEqTest.java index e78366d87..aac495a21 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeEqTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeEqTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeTest.java index a859d68c0..31a97709f 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextRequestTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextRequestTest.java index 420a04679..f9aee3e9e 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextRequestTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextResponseTest.java index eecec4174..8f39f2b6b 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -47,6 +47,14 @@ public void testDocumentFulltextResponse() { // TODO: test DocumentFulltextResponse } + /** + * Test the property 'totalCount' + */ + @Test + public void totalCountTest() { + // TODO: test totalCount + } + /** * Test the property 'documents' */ diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextSearchTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextSearchTest.java index e067676e7..117e4665c 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextSearchTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextSearchTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentFulltextTagTest.java b/src/test/java/com/formkiq/client/model/DocumentFulltextTagTest.java index 0f7bbadfa..fc7672863 100644 --- a/src/test/java/com/formkiq/client/model/DocumentFulltextTagTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentFulltextTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentGenerateDataSourceTest.java b/src/test/java/com/formkiq/client/model/DocumentGenerateDataSourceTest.java index b713e205b..cb8453870 100644 --- a/src/test/java/com/formkiq/client/model/DocumentGenerateDataSourceTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentGenerateDataSourceTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPositionTest.java b/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPositionTest.java index 8dc97b1d4..361292b47 100644 --- a/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPositionTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentPositionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentTest.java b/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentTest.java index 2611b911e..8924899c8 100644 --- a/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentGenerateInsertDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentGenerateOutputTypeTest.java b/src/test/java/com/formkiq/client/model/DocumentGenerateOutputTypeTest.java index c4923f102..9011451df 100644 --- a/src/test/java/com/formkiq/client/model/DocumentGenerateOutputTypeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentGenerateOutputTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentIdTest.java b/src/test/java/com/formkiq/client/model/DocumentIdTest.java index 720d2fe3b..5246b2937 100644 --- a/src/test/java/com/formkiq/client/model/DocumentIdTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentIdTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentMetadataTest.java b/src/test/java/com/formkiq/client/model/DocumentMetadataTest.java index d066367b4..6f6a20f18 100644 --- a/src/test/java/com/formkiq/client/model/DocumentMetadataTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentMetadataTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentRelationshipTypeTest.java b/src/test/java/com/formkiq/client/model/DocumentRelationshipTypeTest.java index 69e27df07..ee887269a 100644 --- a/src/test/java/com/formkiq/client/model/DocumentRelationshipTypeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentRelationshipTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchAttributeTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchAttributeTest.java index d73e7afe4..e547fbf6b 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchMatchAttributeTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchMatchAttributeTest.java index f6ff90392..001762bf3 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchMatchAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchMatchAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchMatchTagTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchMatchTagTest.java index 5973797f4..b176e6c11 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchMatchTagTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchMatchTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchMetaTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchMetaTest.java index 3de584b2a..5dd78c801 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchMetaTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchMetaTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchRangeTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchRangeTest.java index 418418cd6..efc23ac05 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchRangeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchRangeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchRequestTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchRequestTest.java index d06e403b8..33dc18551 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchRequestTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchResponseTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchResponseTest.java index 1749c6745..aa731fbc0 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchTagTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchTagTest.java index 1eb6d04cc..d34d050f7 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchTagTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchTagsTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchTagsTest.java index a019ca91b..4ed30fcfd 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchTagsTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchTagsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSearchTest.java b/src/test/java/com/formkiq/client/model/DocumentSearchTest.java index 9b8a57ca3..908858add 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSearchTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSearchTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSyncServiceTest.java b/src/test/java/com/formkiq/client/model/DocumentSyncServiceTest.java index 75d6d1467..adcaadfc3 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSyncServiceTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSyncServiceTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSyncStatusTest.java b/src/test/java/com/formkiq/client/model/DocumentSyncStatusTest.java index d62f6bf88..0374b203d 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSyncStatusTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSyncStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSyncTest.java b/src/test/java/com/formkiq/client/model/DocumentSyncTest.java index 0213cfb1e..fe5991d90 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSyncTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSyncTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentSyncTypeTest.java b/src/test/java/com/formkiq/client/model/DocumentSyncTypeTest.java index c5438deb2..b2bbdfcaf 100644 --- a/src/test/java/com/formkiq/client/model/DocumentSyncTypeTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentSyncTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentTagTest.java b/src/test/java/com/formkiq/client/model/DocumentTagTest.java index e47776885..012720e4c 100644 --- a/src/test/java/com/formkiq/client/model/DocumentTagTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentTest.java b/src/test/java/com/formkiq/client/model/DocumentTest.java index 4fc372bed..ce0624a14 100644 --- a/src/test/java/com/formkiq/client/model/DocumentTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentVersionTest.java b/src/test/java/com/formkiq/client/model/DocumentVersionTest.java index c2cda40ea..e6049dedb 100644 --- a/src/test/java/com/formkiq/client/model/DocumentVersionTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentVersionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentWorkflowStatusTest.java b/src/test/java/com/formkiq/client/model/DocumentWorkflowStatusTest.java index 3891f8866..298e7bc79 100644 --- a/src/test/java/com/formkiq/client/model/DocumentWorkflowStatusTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentWorkflowStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentWorkflowTest.java b/src/test/java/com/formkiq/client/model/DocumentWorkflowTest.java index 66933965d..9b4bbe24c 100644 --- a/src/test/java/com/formkiq/client/model/DocumentWorkflowTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentWorkflowTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentsCompressRequestTest.java b/src/test/java/com/formkiq/client/model/DocumentsCompressRequestTest.java index edab0fe4a..ecffd19d6 100644 --- a/src/test/java/com/formkiq/client/model/DocumentsCompressRequestTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentsCompressRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocumentsCompressResponseTest.java b/src/test/java/com/formkiq/client/model/DocumentsCompressResponseTest.java index d7135d47b..0f3baa145 100644 --- a/src/test/java/com/formkiq/client/model/DocumentsCompressResponseTest.java +++ b/src/test/java/com/formkiq/client/model/DocumentsCompressResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignConfigTest.java b/src/test/java/com/formkiq/client/model/DocusignConfigTest.java index 36c271e13..b77bc3912 100644 --- a/src/test/java/com/formkiq/client/model/DocusignConfigTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignConfigTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignEnvironmentTest.java b/src/test/java/com/formkiq/client/model/DocusignEnvironmentTest.java index b9efdbae5..29f2da27a 100644 --- a/src/test/java/com/formkiq/client/model/DocusignEnvironmentTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignEnvironmentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignInpersonSignerTest.java b/src/test/java/com/formkiq/client/model/DocusignInpersonSignerTest.java index 7d7eae389..ed4f7ff7f 100644 --- a/src/test/java/com/formkiq/client/model/DocusignInpersonSignerTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignInpersonSignerTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignNotificationExpirationsTest.java b/src/test/java/com/formkiq/client/model/DocusignNotificationExpirationsTest.java index 35fe2282e..93c6cc3f7 100644 --- a/src/test/java/com/formkiq/client/model/DocusignNotificationExpirationsTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignNotificationExpirationsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignNotificationRemindersTest.java b/src/test/java/com/formkiq/client/model/DocusignNotificationRemindersTest.java index eef2799ff..0043f088b 100644 --- a/src/test/java/com/formkiq/client/model/DocusignNotificationRemindersTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignNotificationRemindersTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignNotificationTest.java b/src/test/java/com/formkiq/client/model/DocusignNotificationTest.java index 7715198a1..0bb67b6b3 100644 --- a/src/test/java/com/formkiq/client/model/DocusignNotificationTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignNotificationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignRecipientViewTest.java b/src/test/java/com/formkiq/client/model/DocusignRecipientViewTest.java index f134ff558..40cd567e1 100644 --- a/src/test/java/com/formkiq/client/model/DocusignRecipientViewTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignRecipientViewTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignSignHereTabsTest.java b/src/test/java/com/formkiq/client/model/DocusignSignHereTabsTest.java index aa92635a5..68d4630b8 100644 --- a/src/test/java/com/formkiq/client/model/DocusignSignHereTabsTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignSignHereTabsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignSignerTest.java b/src/test/java/com/formkiq/client/model/DocusignSignerTest.java index 852255694..0b618d418 100644 --- a/src/test/java/com/formkiq/client/model/DocusignSignerTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignSignerTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/DocusignSigningTabsTest.java b/src/test/java/com/formkiq/client/model/DocusignSigningTabsTest.java index 64c6d28fe..19b390a9a 100644 --- a/src/test/java/com/formkiq/client/model/DocusignSigningTabsTest.java +++ b/src/test/java/com/formkiq/client/model/DocusignSigningTabsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/EntityAttributeTest.java b/src/test/java/com/formkiq/client/model/EntityAttributeTest.java index f57c76b07..f26c5a55c 100644 --- a/src/test/java/com/formkiq/client/model/EntityAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/EntityAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/EntityTest.java b/src/test/java/com/formkiq/client/model/EntityTest.java index 77b395acb..c46ce7f02 100644 --- a/src/test/java/com/formkiq/client/model/EntityTest.java +++ b/src/test/java/com/formkiq/client/model/EntityTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/EntityTypeNamespaceTest.java b/src/test/java/com/formkiq/client/model/EntityTypeNamespaceTest.java index 009f9dd3a..b907f9604 100644 --- a/src/test/java/com/formkiq/client/model/EntityTypeNamespaceTest.java +++ b/src/test/java/com/formkiq/client/model/EntityTypeNamespaceTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/EntityTypeTest.java b/src/test/java/com/formkiq/client/model/EntityTypeTest.java index 302253101..2e8768ab3 100644 --- a/src/test/java/com/formkiq/client/model/EntityTypeTest.java +++ b/src/test/java/com/formkiq/client/model/EntityTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ErrorTest.java b/src/test/java/com/formkiq/client/model/ErrorTest.java index ef291fae5..ce9221641 100644 --- a/src/test/java/com/formkiq/client/model/ErrorTest.java +++ b/src/test/java/com/formkiq/client/model/ErrorTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ErrorsResponseTest.java b/src/test/java/com/formkiq/client/model/ErrorsResponseTest.java index a058dd28b..f08717642 100644 --- a/src/test/java/com/formkiq/client/model/ErrorsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/ErrorsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/FolderPermissionTest.java b/src/test/java/com/formkiq/client/model/FolderPermissionTest.java index 1a4b1e9a0..e23a2ee7c 100644 --- a/src/test/java/com/formkiq/client/model/FolderPermissionTest.java +++ b/src/test/java/com/formkiq/client/model/FolderPermissionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/FolderPermissionTypeTest.java b/src/test/java/com/formkiq/client/model/FolderPermissionTypeTest.java index a2d20b809..2736c476f 100644 --- a/src/test/java/com/formkiq/client/model/FolderPermissionTypeTest.java +++ b/src/test/java/com/formkiq/client/model/FolderPermissionTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/FulltextAttributeTest.java b/src/test/java/com/formkiq/client/model/FulltextAttributeTest.java index bbd3a5ae3..04f793f75 100644 --- a/src/test/java/com/formkiq/client/model/FulltextAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/FulltextAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/FulltextSearchItemTest.java b/src/test/java/com/formkiq/client/model/FulltextSearchItemTest.java index 439c4b663..c17e9bed6 100644 --- a/src/test/java/com/formkiq/client/model/FulltextSearchItemTest.java +++ b/src/test/java/com/formkiq/client/model/FulltextSearchItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetActivitesResponseTest.java b/src/test/java/com/formkiq/client/model/GetActivitesResponseTest.java index 20c26308a..18bb0a810 100644 --- a/src/test/java/com/formkiq/client/model/GetActivitesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetActivitesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetApiKeysResponseTest.java b/src/test/java/com/formkiq/client/model/GetApiKeysResponseTest.java index 0fc7bef16..2b1f561f7 100644 --- a/src/test/java/com/formkiq/client/model/GetApiKeysResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetApiKeysResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetAttributeAllowedValuesResponseTest.java b/src/test/java/com/formkiq/client/model/GetAttributeAllowedValuesResponseTest.java index f5f245e42..e4ca57809 100644 --- a/src/test/java/com/formkiq/client/model/GetAttributeAllowedValuesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetAttributeAllowedValuesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetAttributeResponseTest.java b/src/test/java/com/formkiq/client/model/GetAttributeResponseTest.java index d61324f83..7976bd8f9 100644 --- a/src/test/java/com/formkiq/client/model/GetAttributeResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetAttributeResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetAttributesResponseTest.java b/src/test/java/com/formkiq/client/model/GetAttributesResponseTest.java index 37edbea00..6557a4465 100644 --- a/src/test/java/com/formkiq/client/model/GetAttributesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetAttributesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseDocumentsResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseDocumentsResponseTest.java index 26242c861..49ec84bef 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseDocumentsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseDocumentsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseNigoResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseNigoResponseTest.java index e8f35d5ad..65e79cc20 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseNigoResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseNigoResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseNigosResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseNigosResponseTest.java index adbee95aa..a1414b303 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseNigosResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseNigosResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseResponseTest.java index 6b8e99ffd..0a81dcf4e 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseTaskResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseTaskResponseTest.java index b25c26f61..c25ba0da3 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseTaskResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseTaskResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCaseTasksResponseTest.java b/src/test/java/com/formkiq/client/model/GetCaseTasksResponseTest.java index c91a47a64..9a64f08d5 100644 --- a/src/test/java/com/formkiq/client/model/GetCaseTasksResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCaseTasksResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetCasesResponseTest.java b/src/test/java/com/formkiq/client/model/GetCasesResponseTest.java index 4bec22706..b3a565ccd 100644 --- a/src/test/java/com/formkiq/client/model/GetCasesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetCasesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetClassificationResponseTest.java b/src/test/java/com/formkiq/client/model/GetClassificationResponseTest.java index 81ea372ab..1aa90a08d 100644 --- a/src/test/java/com/formkiq/client/model/GetClassificationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetClassificationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetClassificationsResponseTest.java b/src/test/java/com/formkiq/client/model/GetClassificationsResponseTest.java index 66851dff4..b281e031f 100644 --- a/src/test/java/com/formkiq/client/model/GetClassificationsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetClassificationsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetConfigurationResponseTest.java b/src/test/java/com/formkiq/client/model/GetConfigurationResponseTest.java index acd2e985e..20fd5e9e6 100644 --- a/src/test/java/com/formkiq/client/model/GetConfigurationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetConfigurationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -20,6 +20,7 @@ package com.formkiq.client.model; +import com.formkiq.client.model.DocumentConfig; import com.formkiq.client.model.DocusignConfig; import com.formkiq.client.model.GoogleConfig; import com.formkiq.client.model.OcrConfig; @@ -87,6 +88,14 @@ public void notificationEmailTest() { // TODO: test notificationEmail } + /** + * Test the property 'document' + */ + @Test + public void documentTest() { + // TODO: test document + } + /** * Test the property 'ocr' */ diff --git a/src/test/java/com/formkiq/client/model/GetDocumentActionsResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentActionsResponseTest.java index 288220270..cd19f95bd 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentActionsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentActionsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentAttributeResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentAttributeResponseTest.java index 494dc8eb1..8a7b4bd18 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentAttributeResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentAttributeResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentAttributesResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentAttributesResponseTest.java index 74edca4cc..11e712fbe 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentAttributesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentAttributesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentContentResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentContentResponseTest.java index 8fbf2621f..ba0e87a1c 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentContentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentContentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentDataClassificationResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentDataClassificationResponseTest.java index 2c4280a66..24e1be28a 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentDataClassificationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentDataClassificationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentFulltextResponseTest.java index d66eca38f..636cc442b 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentOcrResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentOcrResponseTest.java index da1701632..32f796676 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentOcrResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentOcrResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentResponseTest.java index 81b5fe32f..9e1aa8d8a 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentSyncResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentSyncResponseTest.java index efff0fa5b..80401305f 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentSyncResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentSyncResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentTagResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentTagResponseTest.java index 3d5215cd2..a5b2a271a 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentTagResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentTagResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentTagsResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentTagsResponseTest.java index b6fc1b1cd..cd02bfa46 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentTagsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentTagsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentUrlResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentUrlResponseTest.java index 4c5ce8fe0..6e44dba97 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentUrlResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentUrlResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentVersionsResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentVersionsResponseTest.java index 741073968..327fa57c7 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentVersionsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentVersionsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentWorkflowResponseTest.java index 09b41584c..65ef285bf 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentWorkflowsResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentWorkflowsResponseTest.java index 9cbd239a1..460de8870 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentWorkflowsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentWorkflowsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetDocumentsResponseTest.java b/src/test/java/com/formkiq/client/model/GetDocumentsResponseTest.java index 4cca791dd..abc100c9e 100644 --- a/src/test/java/com/formkiq/client/model/GetDocumentsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetDocumentsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetEntitiesResponseTest.java b/src/test/java/com/formkiq/client/model/GetEntitiesResponseTest.java index 76e03d4c5..7d2577810 100644 --- a/src/test/java/com/formkiq/client/model/GetEntitiesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetEntitiesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetEntityResponseTest.java b/src/test/java/com/formkiq/client/model/GetEntityResponseTest.java index 2a0fac7b8..25fefe3b5 100644 --- a/src/test/java/com/formkiq/client/model/GetEntityResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetEntityResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetEntityTypeResponseTest.java b/src/test/java/com/formkiq/client/model/GetEntityTypeResponseTest.java index 5ee50f175..b672a927f 100644 --- a/src/test/java/com/formkiq/client/model/GetEntityTypeResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetEntityTypeResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetEntityTypesResponseTest.java b/src/test/java/com/formkiq/client/model/GetEntityTypesResponseTest.java index a9893a48e..97d63f41c 100644 --- a/src/test/java/com/formkiq/client/model/GetEntityTypesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetEntityTypesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetExaminePdfResponseTest.java b/src/test/java/com/formkiq/client/model/GetExaminePdfResponseTest.java index 5af0f3860..5d6057751 100644 --- a/src/test/java/com/formkiq/client/model/GetExaminePdfResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetExaminePdfResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetExaminePdfUrlResponseTest.java b/src/test/java/com/formkiq/client/model/GetExaminePdfUrlResponseTest.java index 3d8c04fc1..cb65652ef 100644 --- a/src/test/java/com/formkiq/client/model/GetExaminePdfUrlResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetExaminePdfUrlResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetFolderPermissionsResponseTest.java b/src/test/java/com/formkiq/client/model/GetFolderPermissionsResponseTest.java index ff2451fe4..9578e3632 100644 --- a/src/test/java/com/formkiq/client/model/GetFolderPermissionsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetFolderPermissionsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetFoldersResponseTest.java b/src/test/java/com/formkiq/client/model/GetFoldersResponseTest.java index 992a6e3a5..11435f1be 100644 --- a/src/test/java/com/formkiq/client/model/GetFoldersResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetFoldersResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetGroupResponseTest.java b/src/test/java/com/formkiq/client/model/GetGroupResponseTest.java index 5d261160d..a824de5a3 100644 --- a/src/test/java/com/formkiq/client/model/GetGroupResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetGroupResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetGroupsResponseTest.java b/src/test/java/com/formkiq/client/model/GetGroupsResponseTest.java index 81aafc4e9..1e060386a 100644 --- a/src/test/java/com/formkiq/client/model/GetGroupsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetGroupsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetLocaleResourceItemResponseTest.java b/src/test/java/com/formkiq/client/model/GetLocaleResourceItemResponseTest.java index 9f3ce4404..a20cebe58 100644 --- a/src/test/java/com/formkiq/client/model/GetLocaleResourceItemResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetLocaleResourceItemResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetLocaleResourceItemsResponseTest.java b/src/test/java/com/formkiq/client/model/GetLocaleResourceItemsResponseTest.java index 32050458a..78bdd279e 100644 --- a/src/test/java/com/formkiq/client/model/GetLocaleResourceItemsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetLocaleResourceItemsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetLocalesResponseTest.java b/src/test/java/com/formkiq/client/model/GetLocalesResponseTest.java index 265a31739..9005d6c8f 100644 --- a/src/test/java/com/formkiq/client/model/GetLocalesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetLocalesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetMalwareScanResponseTest.java b/src/test/java/com/formkiq/client/model/GetMalwareScanResponseTest.java index 985c4be15..ee29f7f28 100644 --- a/src/test/java/com/formkiq/client/model/GetMalwareScanResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetMalwareScanResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetMappingResponseTest.java b/src/test/java/com/formkiq/client/model/GetMappingResponseTest.java index c4321db4c..e6f74a892 100644 --- a/src/test/java/com/formkiq/client/model/GetMappingResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetMappingResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetMappingsResponseTest.java b/src/test/java/com/formkiq/client/model/GetMappingsResponseTest.java index 4c781624c..780aea168 100644 --- a/src/test/java/com/formkiq/client/model/GetMappingsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetMappingsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpaAccessPoliciesResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpaAccessPoliciesResponseTest.java index 6e5e7b795..efc091d4f 100644 --- a/src/test/java/com/formkiq/client/model/GetOpaAccessPoliciesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpaAccessPoliciesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponseTest.java index ce465fd46..a59f606b6 100644 --- a/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyItemsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyResponseTest.java index c95bb720f..30c1e6668 100644 --- a/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpaAccessPolicyResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpenSearchIndexResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpenSearchIndexResponseTest.java index 3af40ecae..ca0cc3ab9 100644 --- a/src/test/java/com/formkiq/client/model/GetOpenSearchIndexResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpenSearchIndexResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpenSearchIndiceResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpenSearchIndiceResponseTest.java index ace0232a1..94e95a8dd 100644 --- a/src/test/java/com/formkiq/client/model/GetOpenSearchIndiceResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpenSearchIndiceResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponseTest.java index 5e4d87e03..54c0e6b20 100644 --- a/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotRepositoryResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotResponseTest.java b/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotResponseTest.java index 4ac195a9c..d060fdb90 100644 --- a/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetOpenSearchSnapshotResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetQueueResponseTest.java b/src/test/java/com/formkiq/client/model/GetQueueResponseTest.java index e815af7a8..4f7adb982 100644 --- a/src/test/java/com/formkiq/client/model/GetQueueResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetQueueResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetQueuesResponseTest.java b/src/test/java/com/formkiq/client/model/GetQueuesResponseTest.java index 54d3c35ee..f7494e493 100644 --- a/src/test/java/com/formkiq/client/model/GetQueuesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetQueuesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetRuleResponseTest.java b/src/test/java/com/formkiq/client/model/GetRuleResponseTest.java index d3ddafa95..de82e923d 100644 --- a/src/test/java/com/formkiq/client/model/GetRuleResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetRuleResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetRulesResponseTest.java b/src/test/java/com/formkiq/client/model/GetRulesResponseTest.java index 917b0817e..7bc40108e 100644 --- a/src/test/java/com/formkiq/client/model/GetRulesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetRulesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetRulesetResponseTest.java b/src/test/java/com/formkiq/client/model/GetRulesetResponseTest.java index d55f083d2..c0c0af64b 100644 --- a/src/test/java/com/formkiq/client/model/GetRulesetResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetRulesetResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetRulesetsResponseTest.java b/src/test/java/com/formkiq/client/model/GetRulesetsResponseTest.java index b469c92eb..ac5bd0951 100644 --- a/src/test/java/com/formkiq/client/model/GetRulesetsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetRulesetsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetSiteGroupResponseTest.java b/src/test/java/com/formkiq/client/model/GetSiteGroupResponseTest.java index 76f4d759d..de25d8ba2 100644 --- a/src/test/java/com/formkiq/client/model/GetSiteGroupResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetSiteGroupResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetSiteGroupsResponseTest.java b/src/test/java/com/formkiq/client/model/GetSiteGroupsResponseTest.java index b88f2eb4c..e5d540109 100644 --- a/src/test/java/com/formkiq/client/model/GetSiteGroupsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetSiteGroupsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetSitesResponseTest.java b/src/test/java/com/formkiq/client/model/GetSitesResponseTest.java index e66327318..77829afcb 100644 --- a/src/test/java/com/formkiq/client/model/GetSitesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetSitesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetSitesSchemaResponseTest.java b/src/test/java/com/formkiq/client/model/GetSitesSchemaResponseTest.java index ef7b69be1..2cf11cf78 100644 --- a/src/test/java/com/formkiq/client/model/GetSitesSchemaResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetSitesSchemaResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUserActivitesResponseTest.java b/src/test/java/com/formkiq/client/model/GetUserActivitesResponseTest.java index 78e2a2ffa..ad085cca0 100644 --- a/src/test/java/com/formkiq/client/model/GetUserActivitesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUserActivitesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUserGroupsResponseTest.java b/src/test/java/com/formkiq/client/model/GetUserGroupsResponseTest.java index 39462c20b..aa492f203 100644 --- a/src/test/java/com/formkiq/client/model/GetUserGroupsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUserGroupsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUserResponseTest.java b/src/test/java/com/formkiq/client/model/GetUserResponseTest.java index 002aa44b7..7f04192db 100644 --- a/src/test/java/com/formkiq/client/model/GetUserResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUserResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUserSharesResponseTest.java b/src/test/java/com/formkiq/client/model/GetUserSharesResponseTest.java index d51837cf0..a7db00f7b 100644 --- a/src/test/java/com/formkiq/client/model/GetUserSharesResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUserSharesResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUsersInGroupResponseTest.java b/src/test/java/com/formkiq/client/model/GetUsersInGroupResponseTest.java index 82af3e7ea..e6b75cb60 100644 --- a/src/test/java/com/formkiq/client/model/GetUsersInGroupResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUsersInGroupResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetUsersResponseTest.java b/src/test/java/com/formkiq/client/model/GetUsersResponseTest.java index d91c6627c..23408580f 100644 --- a/src/test/java/com/formkiq/client/model/GetUsersResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetUsersResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetVersionResponseTest.java b/src/test/java/com/formkiq/client/model/GetVersionResponseTest.java index b19b8175c..476dfa563 100644 --- a/src/test/java/com/formkiq/client/model/GetVersionResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetVersionResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWebhookResponseTest.java b/src/test/java/com/formkiq/client/model/GetWebhookResponseTest.java index 0fc6977a9..0c7ac6d1a 100644 --- a/src/test/java/com/formkiq/client/model/GetWebhookResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWebhookResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWebhookTagsResponseTest.java b/src/test/java/com/formkiq/client/model/GetWebhookTagsResponseTest.java index 090a79991..179795797 100644 --- a/src/test/java/com/formkiq/client/model/GetWebhookTagsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWebhookTagsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWebhooksResponseTest.java b/src/test/java/com/formkiq/client/model/GetWebhooksResponseTest.java index bb637fab8..e16a9be0b 100644 --- a/src/test/java/com/formkiq/client/model/GetWebhooksResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWebhooksResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWorkflowDocumentsResponseTest.java b/src/test/java/com/formkiq/client/model/GetWorkflowDocumentsResponseTest.java index 416c62578..6ce000938 100644 --- a/src/test/java/com/formkiq/client/model/GetWorkflowDocumentsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWorkflowDocumentsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponseTest.java b/src/test/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponseTest.java index b7241d5a0..6815ce953 100644 --- a/src/test/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWorkflowQueueDocumentsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/GetWorkflowResponseTest.java index 6331411ae..e2e1b7f7a 100644 --- a/src/test/java/com/formkiq/client/model/GetWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GetWorkflowsResponseTest.java b/src/test/java/com/formkiq/client/model/GetWorkflowsResponseTest.java index a7d5977b1..7e1208534 100644 --- a/src/test/java/com/formkiq/client/model/GetWorkflowsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/GetWorkflowsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GoogleConfigTest.java b/src/test/java/com/formkiq/client/model/GoogleConfigTest.java index 77264c900..773bce281 100644 --- a/src/test/java/com/formkiq/client/model/GoogleConfigTest.java +++ b/src/test/java/com/formkiq/client/model/GoogleConfigTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GoogleExportOutputTypeTest.java b/src/test/java/com/formkiq/client/model/GoogleExportOutputTypeTest.java index f2343a1e4..60764bbe7 100644 --- a/src/test/java/com/formkiq/client/model/GoogleExportOutputTypeTest.java +++ b/src/test/java/com/formkiq/client/model/GoogleExportOutputTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/GroupTest.java b/src/test/java/com/formkiq/client/model/GroupTest.java index f47ea531a..99e8a6af5 100644 --- a/src/test/java/com/formkiq/client/model/GroupTest.java +++ b/src/test/java/com/formkiq/client/model/GroupTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/IndexFolderMoveRequestTest.java b/src/test/java/com/formkiq/client/model/IndexFolderMoveRequestTest.java index b5a49b49d..9b636cbc3 100644 --- a/src/test/java/com/formkiq/client/model/IndexFolderMoveRequestTest.java +++ b/src/test/java/com/formkiq/client/model/IndexFolderMoveRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/IndexFolderMoveResponseTest.java b/src/test/java/com/formkiq/client/model/IndexFolderMoveResponseTest.java index 9989e9252..d9a3ffe5f 100644 --- a/src/test/java/com/formkiq/client/model/IndexFolderMoveResponseTest.java +++ b/src/test/java/com/formkiq/client/model/IndexFolderMoveResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/IndexSearchRequestTest.java b/src/test/java/com/formkiq/client/model/IndexSearchRequestTest.java index 967319ac7..c43804cdc 100644 --- a/src/test/java/com/formkiq/client/model/IndexSearchRequestTest.java +++ b/src/test/java/com/formkiq/client/model/IndexSearchRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/IndexSearchResponseTest.java b/src/test/java/com/formkiq/client/model/IndexSearchResponseTest.java index 6f61f8de9..5cbc56c74 100644 --- a/src/test/java/com/formkiq/client/model/IndexSearchResponseTest.java +++ b/src/test/java/com/formkiq/client/model/IndexSearchResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/IndexSearchTest.java b/src/test/java/com/formkiq/client/model/IndexSearchTest.java index 07092aa02..74a4cff0b 100644 --- a/src/test/java/com/formkiq/client/model/IndexSearchTest.java +++ b/src/test/java/com/formkiq/client/model/IndexSearchTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/LocaleInfoTest.java b/src/test/java/com/formkiq/client/model/LocaleInfoTest.java index c0d48204d..58b03d310 100644 --- a/src/test/java/com/formkiq/client/model/LocaleInfoTest.java +++ b/src/test/java/com/formkiq/client/model/LocaleInfoTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/LocaleResourceTypeTest.java b/src/test/java/com/formkiq/client/model/LocaleResourceTypeTest.java index d23d205df..731d8c175 100644 --- a/src/test/java/com/formkiq/client/model/LocaleResourceTypeTest.java +++ b/src/test/java/com/formkiq/client/model/LocaleResourceTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MalwareEngineTest.java b/src/test/java/com/formkiq/client/model/MalwareEngineTest.java index db1072530..daa91fb7e 100644 --- a/src/test/java/com/formkiq/client/model/MalwareEngineTest.java +++ b/src/test/java/com/formkiq/client/model/MalwareEngineTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MalwareScanResultTest.java b/src/test/java/com/formkiq/client/model/MalwareScanResultTest.java index f8b00a3e8..5f3742f72 100644 --- a/src/test/java/com/formkiq/client/model/MalwareScanResultTest.java +++ b/src/test/java/com/formkiq/client/model/MalwareScanResultTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MalwareScanStatusTest.java b/src/test/java/com/formkiq/client/model/MalwareScanStatusTest.java index 173486af1..3a58b1085 100644 --- a/src/test/java/com/formkiq/client/model/MalwareScanStatusTest.java +++ b/src/test/java/com/formkiq/client/model/MalwareScanStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MappingAttributeLabelMatchingTypeTest.java b/src/test/java/com/formkiq/client/model/MappingAttributeLabelMatchingTypeTest.java index 1f84166a4..417e53ce7 100644 --- a/src/test/java/com/formkiq/client/model/MappingAttributeLabelMatchingTypeTest.java +++ b/src/test/java/com/formkiq/client/model/MappingAttributeLabelMatchingTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MappingAttributeMetadataFieldTest.java b/src/test/java/com/formkiq/client/model/MappingAttributeMetadataFieldTest.java index 0d3c32cdd..9390952af 100644 --- a/src/test/java/com/formkiq/client/model/MappingAttributeMetadataFieldTest.java +++ b/src/test/java/com/formkiq/client/model/MappingAttributeMetadataFieldTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MappingAttributeSourceTypeTest.java b/src/test/java/com/formkiq/client/model/MappingAttributeSourceTypeTest.java index 120c03a95..6cc75b6c6 100644 --- a/src/test/java/com/formkiq/client/model/MappingAttributeSourceTypeTest.java +++ b/src/test/java/com/formkiq/client/model/MappingAttributeSourceTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MappingAttributeTest.java b/src/test/java/com/formkiq/client/model/MappingAttributeTest.java index d433bc777..3c86be0f8 100644 --- a/src/test/java/com/formkiq/client/model/MappingAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/MappingAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MappingTest.java b/src/test/java/com/formkiq/client/model/MappingTest.java index bcc6b5145..85f6f5720 100644 --- a/src/test/java/com/formkiq/client/model/MappingTest.java +++ b/src/test/java/com/formkiq/client/model/MappingTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/MatchDocumentTagTest.java b/src/test/java/com/formkiq/client/model/MatchDocumentTagTest.java index 5a000f6c3..ffebdb18e 100644 --- a/src/test/java/com/formkiq/client/model/MatchDocumentTagTest.java +++ b/src/test/java/com/formkiq/client/model/MatchDocumentTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ModelCaseTest.java b/src/test/java/com/formkiq/client/model/ModelCaseTest.java index 46c56cde6..0e057b6c7 100644 --- a/src/test/java/com/formkiq/client/model/ModelCaseTest.java +++ b/src/test/java/com/formkiq/client/model/ModelCaseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/NigoStatusTest.java b/src/test/java/com/formkiq/client/model/NigoStatusTest.java index 304f72388..17dd53318 100644 --- a/src/test/java/com/formkiq/client/model/NigoStatusTest.java +++ b/src/test/java/com/formkiq/client/model/NigoStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/NigoTest.java b/src/test/java/com/formkiq/client/model/NigoTest.java index 69c97fa33..e36e531c1 100644 --- a/src/test/java/com/formkiq/client/model/NigoTest.java +++ b/src/test/java/com/formkiq/client/model/NigoTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrConfigTest.java b/src/test/java/com/formkiq/client/model/OcrConfigTest.java index 647f04dc5..ed1e8dc58 100644 --- a/src/test/java/com/formkiq/client/model/OcrConfigTest.java +++ b/src/test/java/com/formkiq/client/model/OcrConfigTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrEngineTest.java b/src/test/java/com/formkiq/client/model/OcrEngineTest.java index 8ae96dec0..41de58510 100644 --- a/src/test/java/com/formkiq/client/model/OcrEngineTest.java +++ b/src/test/java/com/formkiq/client/model/OcrEngineTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrKeyValuesTest.java b/src/test/java/com/formkiq/client/model/OcrKeyValuesTest.java index 2174e6395..7bb39dd44 100644 --- a/src/test/java/com/formkiq/client/model/OcrKeyValuesTest.java +++ b/src/test/java/com/formkiq/client/model/OcrKeyValuesTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrOutputTypeTest.java b/src/test/java/com/formkiq/client/model/OcrOutputTypeTest.java index 4b5da89f6..09743b2db 100644 --- a/src/test/java/com/formkiq/client/model/OcrOutputTypeTest.java +++ b/src/test/java/com/formkiq/client/model/OcrOutputTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrTableDataTest.java b/src/test/java/com/formkiq/client/model/OcrTableDataTest.java index 2f71cbf6c..446e14164 100644 --- a/src/test/java/com/formkiq/client/model/OcrTableDataTest.java +++ b/src/test/java/com/formkiq/client/model/OcrTableDataTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OcrTableTest.java b/src/test/java/com/formkiq/client/model/OcrTableTest.java index 7e59af696..fa39941e5 100644 --- a/src/test/java/com/formkiq/client/model/OcrTableTest.java +++ b/src/test/java/com/formkiq/client/model/OcrTableTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeEqTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeEqTest.java index 14f037247..a44975487 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeEqTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeEqTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGtTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGtTest.java index 8d20d7e1a..78193739c 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGtTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGtTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGteTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGteTest.java index 679f9ebed..12651f7ad 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGteTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeGteTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInTest.java index cf9d8e042..7dd55b271 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInputTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInputTest.java index b44e35dd9..100eb1c44 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInputTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeInputTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLtTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLtTest.java index cad57962f..0de314ea8 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLtTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLtTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLteTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLteTest.java index 1cbced507..b02b599c0 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLteTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeLteTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNeqTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNeqTest.java index 8b1426d7b..6d4942990 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNeqTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNeqTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNotInTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNotInTest.java index 99de7edbc..7823d261a 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNotInTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeNotInTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeTest.java index ce58b9e66..635841000 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyInputMethodTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyInputMethodTest.java index 18fd2e55a..2feef241a 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyInputMethodTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyInputMethodTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyInputResourceTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyInputResourceTest.java index 1d36c0c8e..100d03808 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyInputResourceTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyInputResourceTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyInputTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyInputTest.java index e2ef0b27c..d1562eb10 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyInputTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyInputTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyItemTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyItemTest.java index 57a3bb5ab..d7da16c2b 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyItemTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpaPolicyTest.java b/src/test/java/com/formkiq/client/model/OpaPolicyTest.java index d70b7e432..6b45cc089 100644 --- a/src/test/java/com/formkiq/client/model/OpaPolicyTest.java +++ b/src/test/java/com/formkiq/client/model/OpaPolicyTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchAliasTest.java b/src/test/java/com/formkiq/client/model/OpenSearchAliasTest.java index 06e2c9bc6..553517fde 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchAliasTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchAliasTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchIndexSettingTest.java b/src/test/java/com/formkiq/client/model/OpenSearchIndexSettingTest.java index 6af9bd5ab..c5fdfaafe 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchIndexSettingTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchIndexSettingTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchIndexTest.java b/src/test/java/com/formkiq/client/model/OpenSearchIndexTest.java index 6e4ac2793..ce18292f1 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchIndexTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchIndexTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchS3RepositoryTest.java b/src/test/java/com/formkiq/client/model/OpenSearchS3RepositoryTest.java index 19b226bd2..967a9e620 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchS3RepositoryTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchS3RepositoryTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotFailureTest.java b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotFailureTest.java index d98a00a1d..3e706dead 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotFailureTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotFailureTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotShardTest.java b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotShardTest.java index 186065b51..4253a8d6e 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotShardTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotShardTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotTest.java b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotTest.java index e59db9ea9..7080d9ba3 100644 --- a/src/test/java/com/formkiq/client/model/OpenSearchSnapshotTest.java +++ b/src/test/java/com/formkiq/client/model/OpenSearchSnapshotTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/PdfDocumentFieldTest.java b/src/test/java/com/formkiq/client/model/PdfDocumentFieldTest.java index 85d8f8334..9053c53e3 100644 --- a/src/test/java/com/formkiq/client/model/PdfDocumentFieldTest.java +++ b/src/test/java/com/formkiq/client/model/PdfDocumentFieldTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/PdfDocumentTest.java b/src/test/java/com/formkiq/client/model/PdfDocumentTest.java index b9334c4d5..93e73954c 100644 --- a/src/test/java/com/formkiq/client/model/PdfDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/PdfDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/QueryFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/QueryFulltextResponseTest.java index 918d9fa8e..2fdc92489 100644 --- a/src/test/java/com/formkiq/client/model/QueryFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/QueryFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/QueueTest.java b/src/test/java/com/formkiq/client/model/QueueTest.java index 3ee647e7c..2a19fe780 100644 --- a/src/test/java/com/formkiq/client/model/QueueTest.java +++ b/src/test/java/com/formkiq/client/model/QueueTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ReindexTargetTest.java b/src/test/java/com/formkiq/client/model/ReindexTargetTest.java index 61866d11f..a278b2aae 100644 --- a/src/test/java/com/formkiq/client/model/ReindexTargetTest.java +++ b/src/test/java/com/formkiq/client/model/ReindexTargetTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ResourceItemTest.java b/src/test/java/com/formkiq/client/model/ResourceItemTest.java index dff308b28..d47381f22 100644 --- a/src/test/java/com/formkiq/client/model/ResourceItemTest.java +++ b/src/test/java/com/formkiq/client/model/ResourceItemTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleConditionAttributeTest.java b/src/test/java/com/formkiq/client/model/RuleConditionAttributeTest.java index 190faf9c1..72f561d21 100644 --- a/src/test/java/com/formkiq/client/model/RuleConditionAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/RuleConditionAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleConditionCriterionTest.java b/src/test/java/com/formkiq/client/model/RuleConditionCriterionTest.java index d719a44ad..5583e11ab 100644 --- a/src/test/java/com/formkiq/client/model/RuleConditionCriterionTest.java +++ b/src/test/java/com/formkiq/client/model/RuleConditionCriterionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleConditionMustTest.java b/src/test/java/com/formkiq/client/model/RuleConditionMustTest.java index f7e50e3e1..d968cb4cd 100644 --- a/src/test/java/com/formkiq/client/model/RuleConditionMustTest.java +++ b/src/test/java/com/formkiq/client/model/RuleConditionMustTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleConditionOperationTest.java b/src/test/java/com/formkiq/client/model/RuleConditionOperationTest.java index 4040c7a3f..300832444 100644 --- a/src/test/java/com/formkiq/client/model/RuleConditionOperationTest.java +++ b/src/test/java/com/formkiq/client/model/RuleConditionOperationTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleConditionTest.java b/src/test/java/com/formkiq/client/model/RuleConditionTest.java index d02c7d601..fc20b77ee 100644 --- a/src/test/java/com/formkiq/client/model/RuleConditionTest.java +++ b/src/test/java/com/formkiq/client/model/RuleConditionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RuleTest.java b/src/test/java/com/formkiq/client/model/RuleTest.java index 271f97c7e..d830072b2 100644 --- a/src/test/java/com/formkiq/client/model/RuleTest.java +++ b/src/test/java/com/formkiq/client/model/RuleTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RulesetStatusTest.java b/src/test/java/com/formkiq/client/model/RulesetStatusTest.java index 4cd22eff1..c930ba841 100644 --- a/src/test/java/com/formkiq/client/model/RulesetStatusTest.java +++ b/src/test/java/com/formkiq/client/model/RulesetStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/RulesetTest.java b/src/test/java/com/formkiq/client/model/RulesetTest.java index 5bb043f7e..9f52fe65a 100644 --- a/src/test/java/com/formkiq/client/model/RulesetTest.java +++ b/src/test/java/com/formkiq/client/model/RulesetTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SchemaAttributesTest.java b/src/test/java/com/formkiq/client/model/SchemaAttributesTest.java index 55010bb57..3b3bb4d2b 100644 --- a/src/test/java/com/formkiq/client/model/SchemaAttributesTest.java +++ b/src/test/java/com/formkiq/client/model/SchemaAttributesTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SearchRangeDataTypeTest.java b/src/test/java/com/formkiq/client/model/SearchRangeDataTypeTest.java index 006789a80..49f2f4834 100644 --- a/src/test/java/com/formkiq/client/model/SearchRangeDataTypeTest.java +++ b/src/test/java/com/formkiq/client/model/SearchRangeDataTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SearchResponseFieldsTest.java b/src/test/java/com/formkiq/client/model/SearchResponseFieldsTest.java index bbec81d8b..f61867775 100644 --- a/src/test/java/com/formkiq/client/model/SearchResponseFieldsTest.java +++ b/src/test/java/com/formkiq/client/model/SearchResponseFieldsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SearchResultDocumentAttributeTest.java b/src/test/java/com/formkiq/client/model/SearchResultDocumentAttributeTest.java index ca1efcfa5..7fb9e60f1 100644 --- a/src/test/java/com/formkiq/client/model/SearchResultDocumentAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/SearchResultDocumentAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SearchResultDocumentTest.java b/src/test/java/com/formkiq/client/model/SearchResultDocumentTest.java index e8996910d..5ac173531 100644 --- a/src/test/java/com/formkiq/client/model/SearchResultDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/SearchResultDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetClassificationRequestTest.java b/src/test/java/com/formkiq/client/model/SetClassificationRequestTest.java index b5ba8abc2..e7f252c48 100644 --- a/src/test/java/com/formkiq/client/model/SetClassificationRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetClassificationRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentAttributeRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentAttributeRequestTest.java index 772a59991..5746da7f0 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentAttributeRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentAttributeRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentAttributesRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentAttributesRequestTest.java index 6220b9d31..e7b215dd4 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentAttributesRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentAttributesRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationRequestTest.java index 58c1f19f6..ffcf2ea6e 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationResponseTest.java b/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationResponseTest.java index d2e0b8818..9c473a310 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentDataClassificationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentFulltextRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentFulltextRequestTest.java index 213e125b2..d0016b61e 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentFulltextRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentFulltextRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/SetDocumentFulltextResponseTest.java index 586921577..324dced8f 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentOcrRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentOcrRequestTest.java index 78d30a345..ed34348b5 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentOcrRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentOcrRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentRestoreResponseTest.java b/src/test/java/com/formkiq/client/model/SetDocumentRestoreResponseTest.java index 3a1721938..f3ed3e9a9 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentRestoreResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentRestoreResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentTagKeyRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentTagKeyRequestTest.java index 86952f0b6..953eb8aff 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentTagKeyRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentTagKeyRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentVersionRequestTest.java b/src/test/java/com/formkiq/client/model/SetDocumentVersionRequestTest.java index 9561f8f22..4bd19d390 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentVersionRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentVersionRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetDocumentVersionResponseTest.java b/src/test/java/com/formkiq/client/model/SetDocumentVersionResponseTest.java index f56b7f06c..4aa4f5535 100644 --- a/src/test/java/com/formkiq/client/model/SetDocumentVersionResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetDocumentVersionResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetFolderPermissionsRequestTest.java b/src/test/java/com/formkiq/client/model/SetFolderPermissionsRequestTest.java index 029bfc604..ee6d27cae 100644 --- a/src/test/java/com/formkiq/client/model/SetFolderPermissionsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetFolderPermissionsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetGroupPermissionsRequestTest.java b/src/test/java/com/formkiq/client/model/SetGroupPermissionsRequestTest.java index c7c0861d3..406750269 100644 --- a/src/test/java/com/formkiq/client/model/SetGroupPermissionsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetGroupPermissionsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetLocaleResourceItemRequestTest.java b/src/test/java/com/formkiq/client/model/SetLocaleResourceItemRequestTest.java index 4931a5b74..d85f69ca7 100644 --- a/src/test/java/com/formkiq/client/model/SetLocaleResourceItemRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetLocaleResourceItemRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetMappingRequestTest.java b/src/test/java/com/formkiq/client/model/SetMappingRequestTest.java index b4c13188f..9e1717d3e 100644 --- a/src/test/java/com/formkiq/client/model/SetMappingRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetMappingRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequestTest.java b/src/test/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequestTest.java index 313c7cb2d..95b7bb821 100644 --- a/src/test/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetOpaAccessPolicyItemsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetOpenSearchIndexRequestTest.java b/src/test/java/com/formkiq/client/model/SetOpenSearchIndexRequestTest.java index 0f656445a..34355dc3c 100644 --- a/src/test/java/com/formkiq/client/model/SetOpenSearchIndexRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetOpenSearchIndexRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetOpenSearchIndexResponseTest.java b/src/test/java/com/formkiq/client/model/SetOpenSearchIndexResponseTest.java index 2945f5a8b..4ade59d0e 100644 --- a/src/test/java/com/formkiq/client/model/SetOpenSearchIndexResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetOpenSearchIndexResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetOpenSearchIndiceRequestTest.java b/src/test/java/com/formkiq/client/model/SetOpenSearchIndiceRequestTest.java index 2dc773ce8..c30905f9d 100644 --- a/src/test/java/com/formkiq/client/model/SetOpenSearchIndiceRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetOpenSearchIndiceRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetResponseTest.java b/src/test/java/com/formkiq/client/model/SetResponseTest.java index 7c01c2bab..a293eab98 100644 --- a/src/test/java/com/formkiq/client/model/SetResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetSchemaAttributesTest.java b/src/test/java/com/formkiq/client/model/SetSchemaAttributesTest.java index 3d454c79b..6ba23cc08 100644 --- a/src/test/java/com/formkiq/client/model/SetSchemaAttributesTest.java +++ b/src/test/java/com/formkiq/client/model/SetSchemaAttributesTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetSitesSchemaRequestTest.java b/src/test/java/com/formkiq/client/model/SetSitesSchemaRequestTest.java index eb76cc51a..6f423a7ad 100644 --- a/src/test/java/com/formkiq/client/model/SetSitesSchemaRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetSitesSchemaRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetWorkflowRequestTest.java b/src/test/java/com/formkiq/client/model/SetWorkflowRequestTest.java index eaf0585be..d918b2f92 100644 --- a/src/test/java/com/formkiq/client/model/SetWorkflowRequestTest.java +++ b/src/test/java/com/formkiq/client/model/SetWorkflowRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SetWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/SetWorkflowResponseTest.java index 6706fa8d6..ec7d9ac5f 100644 --- a/src/test/java/com/formkiq/client/model/SetWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/SetWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteConfigTest.java b/src/test/java/com/formkiq/client/model/SiteConfigTest.java index fe6f80e5a..93395dd58 100644 --- a/src/test/java/com/formkiq/client/model/SiteConfigTest.java +++ b/src/test/java/com/formkiq/client/model/SiteConfigTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteGroupPermissionsTest.java b/src/test/java/com/formkiq/client/model/SiteGroupPermissionsTest.java index 562a5ac05..88d8ba736 100644 --- a/src/test/java/com/formkiq/client/model/SiteGroupPermissionsTest.java +++ b/src/test/java/com/formkiq/client/model/SiteGroupPermissionsTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteGroupTest.java b/src/test/java/com/formkiq/client/model/SiteGroupTest.java index 0baa0745b..cc52c5de6 100644 --- a/src/test/java/com/formkiq/client/model/SiteGroupTest.java +++ b/src/test/java/com/formkiq/client/model/SiteGroupTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteStatusTest.java b/src/test/java/com/formkiq/client/model/SiteStatusTest.java index ffe7f800e..ed126012e 100644 --- a/src/test/java/com/formkiq/client/model/SiteStatusTest.java +++ b/src/test/java/com/formkiq/client/model/SiteStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteTest.java b/src/test/java/com/formkiq/client/model/SiteTest.java index cf867426c..80330bd83 100644 --- a/src/test/java/com/formkiq/client/model/SiteTest.java +++ b/src/test/java/com/formkiq/client/model/SiteTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/SiteUsageTest.java b/src/test/java/com/formkiq/client/model/SiteUsageTest.java index 56b4ef6ba..c560d1df0 100644 --- a/src/test/java/com/formkiq/client/model/SiteUsageTest.java +++ b/src/test/java/com/formkiq/client/model/SiteUsageTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/StringFormatTest.java b/src/test/java/com/formkiq/client/model/StringFormatTest.java index dbc24a94b..4bf21fe01 100644 --- a/src/test/java/com/formkiq/client/model/StringFormatTest.java +++ b/src/test/java/com/formkiq/client/model/StringFormatTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/StringGeneratorTypeTest.java b/src/test/java/com/formkiq/client/model/StringGeneratorTypeTest.java index d4894544e..ad831ab87 100644 --- a/src/test/java/com/formkiq/client/model/StringGeneratorTypeTest.java +++ b/src/test/java/com/formkiq/client/model/StringGeneratorTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/TaskStatusTest.java b/src/test/java/com/formkiq/client/model/TaskStatusTest.java index 159da3624..10a7a4ffd 100644 --- a/src/test/java/com/formkiq/client/model/TaskStatusTest.java +++ b/src/test/java/com/formkiq/client/model/TaskStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/TaskTest.java b/src/test/java/com/formkiq/client/model/TaskTest.java index 5e4765dd6..0b4c38e98 100644 --- a/src/test/java/com/formkiq/client/model/TaskTest.java +++ b/src/test/java/com/formkiq/client/model/TaskTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/TextractQueryTest.java b/src/test/java/com/formkiq/client/model/TextractQueryTest.java index 64523d346..91bc6b2dc 100644 --- a/src/test/java/com/formkiq/client/model/TextractQueryTest.java +++ b/src/test/java/com/formkiq/client/model/TextractQueryTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateAttributeRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateAttributeRequestTest.java index 01e29470c..68ef3cd9d 100644 --- a/src/test/java/com/formkiq/client/model/UpdateAttributeRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateAttributeRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateAttributeTest.java b/src/test/java/com/formkiq/client/model/UpdateAttributeTest.java index 0fc3fd36e..597464ab1 100644 --- a/src/test/java/com/formkiq/client/model/UpdateAttributeTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateAttributeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateCaseRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateCaseRequestTest.java index e6c339c6a..105cb22da 100644 --- a/src/test/java/com/formkiq/client/model/UpdateCaseRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateCaseRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateCaseResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateCaseResponseTest.java index 57f5fba83..039084eae 100644 --- a/src/test/java/com/formkiq/client/model/UpdateCaseResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateCaseResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateCaseTest.java b/src/test/java/com/formkiq/client/model/UpdateCaseTest.java index 09ef6d0f8..b2d706e5e 100644 --- a/src/test/java/com/formkiq/client/model/UpdateCaseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateCaseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateConfigurationRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateConfigurationRequestTest.java index 1fbf4b2b6..81c8fb647 100644 --- a/src/test/java/com/formkiq/client/model/UpdateConfigurationRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateConfigurationRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. @@ -20,6 +20,7 @@ package com.formkiq.client.model; +import com.formkiq.client.model.DocumentConfig; import com.formkiq.client.model.DocusignConfig; import com.formkiq.client.model.GoogleConfig; import com.formkiq.client.model.OcrConfig; @@ -87,6 +88,14 @@ public void notificationEmailTest() { // TODO: test notificationEmail } + /** + * Test the property 'document' + */ + @Test + public void documentTest() { + // TODO: test document + } + /** * Test the property 'ocr' */ diff --git a/src/test/java/com/formkiq/client/model/UpdateConfigurationResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateConfigurationResponseTest.java index 75ecb2ce4..fffcfd9e0 100644 --- a/src/test/java/com/formkiq/client/model/UpdateConfigurationResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateConfigurationResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextRequestTest.java index aa8c3e3b9..dca33dff7 100644 --- a/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextResponseTest.java index c5e4e7563..d771ca1f2 100644 --- a/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateDocumentFulltextResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateDocumentRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateDocumentRequestTest.java index 00676debe..67706ca04 100644 --- a/src/test/java/com/formkiq/client/model/UpdateDocumentRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateDocumentRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateEntityRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateEntityRequestTest.java index c0e78882e..875159f39 100644 --- a/src/test/java/com/formkiq/client/model/UpdateEntityRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateEntityRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatchTest.java b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatchTest.java index 761164933..a646573c7 100644 --- a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatchTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestMatchTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestTest.java index 8b1b6a6b1..8474170b8 100644 --- a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdateTest.java b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdateTest.java index 2fdd9ae19..4ceb41e0a 100644 --- a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdateTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsRequestUpdateTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponseTest.java index 6ad988589..03116da1a 100644 --- a/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateMatchingDocumentTagsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateNigoRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateNigoRequestTest.java index a7ff2d886..d4775045c 100644 --- a/src/test/java/com/formkiq/client/model/UpdateNigoRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateNigoRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateNigoResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateNigoResponseTest.java index bf084d7e6..8e2c636eb 100644 --- a/src/test/java/com/formkiq/client/model/UpdateNigoResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateNigoResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateNigoTest.java b/src/test/java/com/formkiq/client/model/UpdateNigoTest.java index 2fa0cfeb8..2c87b52fe 100644 --- a/src/test/java/com/formkiq/client/model/UpdateNigoTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateNigoTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateResponseTest.java index 480644232..f8558ac94 100644 --- a/src/test/java/com/formkiq/client/model/UpdateResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRuleRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateRuleRequestTest.java index f0b379534..caa23663e 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRuleRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRuleRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRuleResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateRuleResponseTest.java index 76beaef43..0f2284417 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRuleResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRuleResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRuleTest.java b/src/test/java/com/formkiq/client/model/UpdateRuleTest.java index b1179381b..88445231e 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRuleTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRuleTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRulesetRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateRulesetRequestTest.java index d9a037e06..e803f7749 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRulesetRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRulesetRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRulesetResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateRulesetResponseTest.java index 4dc1a18e2..870013ae1 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRulesetResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRulesetResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateRulesetTest.java b/src/test/java/com/formkiq/client/model/UpdateRulesetTest.java index 41c50b94c..a9d50f05a 100644 --- a/src/test/java/com/formkiq/client/model/UpdateRulesetTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateRulesetTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateSiteRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateSiteRequestTest.java index 294e6d14b..197cf46e2 100644 --- a/src/test/java/com/formkiq/client/model/UpdateSiteRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateSiteRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateSiteTest.java b/src/test/java/com/formkiq/client/model/UpdateSiteTest.java index c7ec69814..1cf1a43fc 100644 --- a/src/test/java/com/formkiq/client/model/UpdateSiteTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateSiteTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateTaskRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateTaskRequestTest.java index 9f40f4411..c855a5544 100644 --- a/src/test/java/com/formkiq/client/model/UpdateTaskRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateTaskRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateTaskResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateTaskResponseTest.java index 3bd4a618a..045a72499 100644 --- a/src/test/java/com/formkiq/client/model/UpdateTaskResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateTaskResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateTaskTest.java b/src/test/java/com/formkiq/client/model/UpdateTaskTest.java index 5f6de72fc..aa72395af 100644 --- a/src/test/java/com/formkiq/client/model/UpdateTaskTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateTaskTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateWorkflowRequestTest.java b/src/test/java/com/formkiq/client/model/UpdateWorkflowRequestTest.java index 780f60b0f..3336a8f96 100644 --- a/src/test/java/com/formkiq/client/model/UpdateWorkflowRequestTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateWorkflowRequestTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UpdateWorkflowResponseTest.java b/src/test/java/com/formkiq/client/model/UpdateWorkflowResponseTest.java index 6cb7b3fa6..c6d020616 100644 --- a/src/test/java/com/formkiq/client/model/UpdateWorkflowResponseTest.java +++ b/src/test/java/com/formkiq/client/model/UpdateWorkflowResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserActivityChangesTest.java b/src/test/java/com/formkiq/client/model/UserActivityChangesTest.java index 3314580e5..afefd9137 100644 --- a/src/test/java/com/formkiq/client/model/UserActivityChangesTest.java +++ b/src/test/java/com/formkiq/client/model/UserActivityChangesTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserActivityTest.java b/src/test/java/com/formkiq/client/model/UserActivityTest.java index 911e40039..ddcef9fab 100644 --- a/src/test/java/com/formkiq/client/model/UserActivityTest.java +++ b/src/test/java/com/formkiq/client/model/UserActivityTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserActivityTypeTest.java b/src/test/java/com/formkiq/client/model/UserActivityTypeTest.java index 071e4cbb2..baee034de 100644 --- a/src/test/java/com/formkiq/client/model/UserActivityTypeTest.java +++ b/src/test/java/com/formkiq/client/model/UserActivityTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserAttributesTest.java b/src/test/java/com/formkiq/client/model/UserAttributesTest.java index 6bc58309f..1edb483de 100644 --- a/src/test/java/com/formkiq/client/model/UserAttributesTest.java +++ b/src/test/java/com/formkiq/client/model/UserAttributesTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserSharePermissionTest.java b/src/test/java/com/formkiq/client/model/UserSharePermissionTest.java index e33ac3c25..a8f932b47 100644 --- a/src/test/java/com/formkiq/client/model/UserSharePermissionTest.java +++ b/src/test/java/com/formkiq/client/model/UserSharePermissionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserSharePermissionTypeTest.java b/src/test/java/com/formkiq/client/model/UserSharePermissionTypeTest.java index 5a1ce8270..a17dc27af 100644 --- a/src/test/java/com/formkiq/client/model/UserSharePermissionTypeTest.java +++ b/src/test/java/com/formkiq/client/model/UserSharePermissionTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserShareTest.java b/src/test/java/com/formkiq/client/model/UserShareTest.java index 0b4102873..f86d9c5fa 100644 --- a/src/test/java/com/formkiq/client/model/UserShareTest.java +++ b/src/test/java/com/formkiq/client/model/UserShareTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/UserTest.java b/src/test/java/com/formkiq/client/model/UserTest.java index 78ce402a6..d9c2cabf9 100644 --- a/src/test/java/com/formkiq/client/model/UserTest.java +++ b/src/test/java/com/formkiq/client/model/UserTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ValidationErrorTest.java b/src/test/java/com/formkiq/client/model/ValidationErrorTest.java index 39d4200c0..fc4cc168b 100644 --- a/src/test/java/com/formkiq/client/model/ValidationErrorTest.java +++ b/src/test/java/com/formkiq/client/model/ValidationErrorTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/ValidationErrorsResponseTest.java b/src/test/java/com/formkiq/client/model/ValidationErrorsResponseTest.java index 6837e66d7..ce1fa5014 100644 --- a/src/test/java/com/formkiq/client/model/ValidationErrorsResponseTest.java +++ b/src/test/java/com/formkiq/client/model/ValidationErrorsResponseTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WatermarkPositionTest.java b/src/test/java/com/formkiq/client/model/WatermarkPositionTest.java index 3b5142d27..dbe2dad04 100644 --- a/src/test/java/com/formkiq/client/model/WatermarkPositionTest.java +++ b/src/test/java/com/formkiq/client/model/WatermarkPositionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WatermarkPositionXAnchorTest.java b/src/test/java/com/formkiq/client/model/WatermarkPositionXAnchorTest.java index 1f3aff9f1..2c85decf3 100644 --- a/src/test/java/com/formkiq/client/model/WatermarkPositionXAnchorTest.java +++ b/src/test/java/com/formkiq/client/model/WatermarkPositionXAnchorTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WatermarkPositionYAnchorTest.java b/src/test/java/com/formkiq/client/model/WatermarkPositionYAnchorTest.java index 3270a9c40..e6938674c 100644 --- a/src/test/java/com/formkiq/client/model/WatermarkPositionYAnchorTest.java +++ b/src/test/java/com/formkiq/client/model/WatermarkPositionYAnchorTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WatermarkScaleTest.java b/src/test/java/com/formkiq/client/model/WatermarkScaleTest.java index be9af3788..fb407b1cc 100644 --- a/src/test/java/com/formkiq/client/model/WatermarkScaleTest.java +++ b/src/test/java/com/formkiq/client/model/WatermarkScaleTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WatermarkTest.java b/src/test/java/com/formkiq/client/model/WatermarkTest.java index cc2a03fb2..ad6035445 100644 --- a/src/test/java/com/formkiq/client/model/WatermarkTest.java +++ b/src/test/java/com/formkiq/client/model/WatermarkTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WebhookTagTest.java b/src/test/java/com/formkiq/client/model/WebhookTagTest.java index bcbd2ad78..a5d25d5a7 100644 --- a/src/test/java/com/formkiq/client/model/WebhookTagTest.java +++ b/src/test/java/com/formkiq/client/model/WebhookTagTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowDocumentTest.java b/src/test/java/com/formkiq/client/model/WorkflowDocumentTest.java index 4b364110f..ae157af18 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowDocumentTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowDocumentTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowQueueTest.java b/src/test/java/com/formkiq/client/model/WorkflowQueueTest.java index 75311cd70..8f95663ba 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowQueueTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowQueueTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowStatusTest.java b/src/test/java/com/formkiq/client/model/WorkflowStatusTest.java index cb6ffdc99..250666845 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowStatusTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowStatusTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTest.java b/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTest.java index bba57216c..f873f897e 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTypeTest.java b/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTypeTest.java index 004b0d181..540791d08 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTypeTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowStepDecisionTypeTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowStepTest.java b/src/test/java/com/formkiq/client/model/WorkflowStepTest.java index c0d421f1b..65f584770 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowStepTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowStepTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually. diff --git a/src/test/java/com/formkiq/client/model/WorkflowSummaryTest.java b/src/test/java/com/formkiq/client/model/WorkflowSummaryTest.java index c0cba5907..4cd95999b 100644 --- a/src/test/java/com/formkiq/client/model/WorkflowSummaryTest.java +++ b/src/test/java/com/formkiq/client/model/WorkflowSummaryTest.java @@ -11,7 +11,7 @@ * https://raw.githubusercontent.com/formkiq/formkiq-core/master/docs/openapi/openapi-iam.yaml ## * Authentication FormKiQ offers three forms of authentication: - OAuth(JWT) - AWS IAM - API Key * - * The version of the OpenAPI document: 1.18.0 Contact: support@formkiq.com + * The version of the OpenAPI document: 1.18.1 Contact: support@formkiq.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech Do not edit the class manually.