Skip to content

Commit

Permalink
Added ClassificationId to GET /sites/:siteId/classifications
Browse files Browse the repository at this point in the history
  • Loading branch information
mfriesen committed Jul 11, 2024
1 parent cfd2f75 commit 5c5b1fc
Show file tree
Hide file tree
Showing 324 changed files with 375 additions and 327 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
This is the official supported Java library for the FormKiQ API.

FormKiQ HTTP API
- API version: 1.15.0
- API version: 1.15.1
- Build date: 2024-07-04T16:10:39.847247-05:00[America/Winnipeg]
- Generator version: 7.7.0

Expand Down Expand Up @@ -63,7 +63,7 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.formkiq</groupId>
<artifactId>client</artifactId>
<version>1.15.0</version>
<version>1.15.1</version>
<scope>compile</scope>
</dependency>
```
Expand All @@ -79,7 +79,7 @@ Add this dependency to your project's build file:
}
dependencies {
implementation "com.formkiq:client:1.15.0"
implementation "com.formkiq:client:1.15.1"
}
```

Expand All @@ -93,7 +93,7 @@ mvn clean package

Then manually install the following JARs:

* `target/client-1.15.0.jar`
* `target/client-1.15.1.jar`
* `target/lib/*.jar`

## Getting Started
Expand Down
8 changes: 7 additions & 1 deletion api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7324,7 +7324,7 @@ paths:
tags:
- User Management
x-amazon-apigateway-integration:
$ref: '#/components/x-amazon-apigateway-integrations/caseManagementLambdaApi200'
$ref: '#/components/x-amazon-apigateway-integrations/lambdaApi200'
x-accepts:
- application/json
get:
Expand Down Expand Up @@ -17871,9 +17871,11 @@ components:
classifications:
- insertedDate: insertedDate
name: name
classificationId: classificationId
userId: userId
- insertedDate: insertedDate
name: name
classificationId: classificationId
userId: userId
properties:
next:
Expand All @@ -17889,8 +17891,12 @@ components:
example:
insertedDate: insertedDate
name: name
classificationId: classificationId
userId: userId
properties:
classificationId:
description: Classification Identifier
type: string
name:
description: Name of Classification
type: string
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group = 'com.formkiq'
version = '1.15.0'
version = '1.15.1'

sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
Expand Down
1 change: 1 addition & 0 deletions docs/ClassificationSummary.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

| Name | Type | Description | Notes |
|------------ | ------------- | ------------- | -------------|
|**classificationId** | **String** | Classification Identifier | [optional] |
|**name** | **String** | Name of Classification | [optional] |
|**userId** | **String** | | [optional] |
|**insertedDate** | **String** | Inserted Timestamp | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

rm -r -f src

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

git restore build.gradle
git restore ./src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/ApiException.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
@SuppressWarnings("serial")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class ApiException extends Exception {
private static final long serialVersionUID = 1L;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package com.formkiq.client.invoker;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class Configuration {
public static final String VERSION = "1.15.0";
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/formkiq/client/invoker/Pair.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package com.formkiq.client.invoker;

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

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class StringUtil {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
import java.util.List;

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

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

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

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

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class AddDocumentAttribute extends AbstractOpenApiSchema {
private static final Logger log = Logger.getLogger(AddDocumentAttribute.class.getName());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
* Document Classification
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class AddDocumentAttributeClassification {
public static final String SERIALIZED_NAME_CLASSIFICATION_ID = "classificationId";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* Document Attribute
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class AddDocumentAttributeStandard {
public static final String SERIALIZED_NAME_KEY = "key";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
* Document Attribute Value
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
comments = "Generator version: 7.7.0")
public class AddDocumentAttributeValue {
public static final String SERIALIZED_NAME_STRING_VALUE = "stringValue";
Expand Down
Loading

0 comments on commit 5c5b1fc

Please sign in to comment.