Skip to content

Commit 5c5b1fc

Browse files
committed
Added ClassificationId to GET /sites/:siteId/classifications
1 parent cfd2f75 commit 5c5b1fc

324 files changed

Lines changed: 375 additions & 327 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This is the official supported Java library for the FormKiQ API.
55

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

@@ -63,7 +63,7 @@ Add this dependency to your project's POM:
6363
<dependency>
6464
<groupId>com.formkiq</groupId>
6565
<artifactId>client</artifactId>
66-
<version>1.15.0</version>
66+
<version>1.15.1</version>
6767
<scope>compile</scope>
6868
</dependency>
6969
```
@@ -79,7 +79,7 @@ Add this dependency to your project's build file:
7979
}
8080
8181
dependencies {
82-
implementation "com.formkiq:client:1.15.0"
82+
implementation "com.formkiq:client:1.15.1"
8383
}
8484
```
8585

@@ -93,7 +93,7 @@ mvn clean package
9393

9494
Then manually install the following JARs:
9595

96-
* `target/client-1.15.0.jar`
96+
* `target/client-1.15.1.jar`
9797
* `target/lib/*.jar`
9898

9999
## Getting Started

api/openapi.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7324,7 +7324,7 @@ paths:
73247324
tags:
73257325
- User Management
73267326
x-amazon-apigateway-integration:
7327-
$ref: '#/components/x-amazon-apigateway-integrations/caseManagementLambdaApi200'
7327+
$ref: '#/components/x-amazon-apigateway-integrations/lambdaApi200'
73287328
x-accepts:
73297329
- application/json
73307330
get:
@@ -17871,9 +17871,11 @@ components:
1787117871
classifications:
1787217872
- insertedDate: insertedDate
1787317873
name: name
17874+
classificationId: classificationId
1787417875
userId: userId
1787517876
- insertedDate: insertedDate
1787617877
name: name
17878+
classificationId: classificationId
1787717879
userId: userId
1787817880
properties:
1787917881
next:
@@ -17889,8 +17891,12 @@ components:
1788917891
example:
1789017892
insertedDate: insertedDate
1789117893
name: name
17894+
classificationId: classificationId
1789217895
userId: userId
1789317896
properties:
17897+
classificationId:
17898+
description: Classification Identifier
17899+
type: string
1789417900
name:
1789517901
description: Name of Classification
1789617902
type: string

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = 'com.formkiq'
10-
version = '1.15.0'
10+
version = '1.15.1'
1111

1212
sourceCompatibility = JavaVersion.VERSION_11
1313
targetCompatibility = JavaVersion.VERSION_11

docs/ClassificationSummary.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10+
|**classificationId** | **String** | Classification Identifier | [optional] |
1011
|**name** | **String** | Name of Classification | [optional] |
1112
|**userId** | **String** | | [optional] |
1213
|**insertedDate** | **String** | Inserted Timestamp | [optional] |

generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
rm -r -f src
44

5-
openapi-generator generate -g java -i https://raw.githubusercontent.com/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
5+
openapi-generator generate -g java -i https://raw.githubusercontent.com/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
66

77
git restore build.gradle
88
git restore ./src/main/java/com/formkiq/client/invoker/auth/AWS4Auth.java

src/main/java/com/formkiq/client/invoker/ApiException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
@SuppressWarnings("serial")
3232
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
33-
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
33+
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
3434
comments = "Generator version: 7.7.0")
3535
public class ApiException extends Exception {
3636
private static final long serialVersionUID = 1L;

src/main/java/com/formkiq/client/invoker/Configuration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package com.formkiq.client.invoker;
2121

2222
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
23-
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
23+
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
2424
comments = "Generator version: 7.7.0")
2525
public class Configuration {
2626
public static final String VERSION = "1.15.0";

src/main/java/com/formkiq/client/invoker/Pair.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
package com.formkiq.client.invoker;
2121

2222
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
23-
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
23+
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
2424
comments = "Generator version: 7.7.0")
2525
public class Pair {
2626
private String name = "";

src/main/java/com/formkiq/client/invoker/ServerConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Representing a Server configuration.
77
*/
88
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
9-
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
9+
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
1010
comments = "Generator version: 7.7.0")
1111
public class ServerConfiguration {
1212
public String URL;

src/main/java/com/formkiq/client/invoker/ServerVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Representing a Server Variable for server URL template substitution.
77
*/
88
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
9-
date = "2024-07-07T10:53:55.848206-05:00[America/Winnipeg]",
9+
date = "2024-07-10T20:04:34.204538-05:00[America/Winnipeg]",
1010
comments = "Generator version: 7.7.0")
1111
public class ServerVariable {
1212
public String description;

0 commit comments

Comments
 (0)