Skip to content

Commit afebf5a

Browse files
committed
update
1 parent a304e39 commit afebf5a

407 files changed

Lines changed: 452 additions & 421 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: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Add this dependency to your project's POM:
6464
<dependency>
6565
<groupId>com.formkiq</groupId>
6666
<artifactId>client</artifactId>
67-
<version>1.18.0</version>
67+
<version>1.18.1</version>
6868
<scope>compile</scope>
6969
</dependency>
7070
```
@@ -80,7 +80,7 @@ Add this dependency to your project's build file:
8080
}
8181
8282
dependencies {
83-
implementation "com.formkiq:client:1.18.0"
83+
implementation "com.formkiq:client:1.18.1"
8484
}
8585
```
8686

@@ -94,7 +94,7 @@ mvn clean package
9494

9595
Then manually install the following JARs:
9696

97-
* `target/client-1.18.0.jar`
97+
* `target/client-1.18.1.jar`
9898
* `target/lib/*.jar`
9999

100100
## Getting Started
@@ -513,6 +513,7 @@ Class | Method | HTTP request | Description
513513
- [AddWorkflowStepDecision](docs/AddWorkflowStepDecision.md)
514514
- [AddWorkflowStepQueue](docs/AddWorkflowStepQueue.md)
515515
- [ApiKey](docs/ApiKey.md)
516+
- [ApiKeyPermission](docs/ApiKeyPermission.md)
516517
- [Attribute](docs/Attribute.md)
517518
- [AttributeDataType](docs/AttributeDataType.md)
518519
- [AttributeSchemaCompositeKey](docs/AttributeSchemaCompositeKey.md)
@@ -548,6 +549,8 @@ Class | Method | HTTP request | Description
548549
- [DocumentActionStatus](docs/DocumentActionStatus.md)
549550
- [DocumentActionType](docs/DocumentActionType.md)
550551
- [DocumentAttribute](docs/DocumentAttribute.md)
552+
- [DocumentConfig](docs/DocumentConfig.md)
553+
- [DocumentConfigContentTypes](docs/DocumentConfigContentTypes.md)
551554
- [DocumentFulltextAttribute](docs/DocumentFulltextAttribute.md)
552555
- [DocumentFulltextAttributeEq](docs/DocumentFulltextAttributeEq.md)
553556
- [DocumentFulltextRequest](docs/DocumentFulltextRequest.md)

api/openapi.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2430,6 +2430,17 @@ paths:
24302430
schema:
24312431
type: string
24322432
style: form
2433+
- description: Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY'
2434+
to return only the documentId attribute.
2435+
explode: true
2436+
in: query
2437+
name: projection
2438+
required: false
2439+
schema:
2440+
enum:
2441+
- DOCUMENT_ID_ONLY
2442+
type: string
2443+
style: form
24332444
- description: Limit Results
24342445
explode: true
24352446
in: query

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "com.formkiq",
44
name := "client",
5-
version := "1.18.0",
5+
version := "1.18.1",
66
scalaVersion := "2.11.12",
77
scalacOptions ++= Seq("-feature"),
88
compile / javacOptions ++= Seq("-Xlint:deprecation"),

docs/DocumentsApi.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ No authorization required
952952

953953
<a id="getDocuments"></a>
954954
# **getDocuments**
955-
> GetDocumentsResponse getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, limit)
955+
> GetDocumentsResponse getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, projection, limit)
956956
957957
Get Documents listing
958958

@@ -984,9 +984,10 @@ public class Example {
984984
String tz = "tz_example"; // String | UTC offset to apply to date parameter (IE: -0600)
985985
String next = "next_example"; // String | Next page of results token
986986
String previous = "previous_example"; // String | Previous page of results token
987+
String projection = "DOCUMENT_ID_ONLY"; // String | Specify a restricted document projection. Use 'DOCUMENT_ID_ONLY' to return only the documentId attribute.
987988
String limit = "10"; // String | Limit Results
988989
try {
989-
GetDocumentsResponse result = apiInstance.getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, limit);
990+
GetDocumentsResponse result = apiInstance.getDocuments(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous, projection, limit);
990991
System.out.println(result);
991992
} catch (ApiException e) {
992993
System.err.println("Exception when calling DocumentsApi#getDocuments");
@@ -1011,6 +1012,7 @@ public class Example {
10111012
| **tz** | **String**| UTC offset to apply to date parameter (IE: -0600) | [optional] |
10121013
| **next** | **String**| Next page of results token | [optional] |
10131014
| **previous** | **String**| Previous page of results token | [optional] |
1015+
| **projection** | **String**| Specify a restricted document projection. Use &#39;DOCUMENT_ID_ONLY&#39; to return only the documentId attribute. | [optional] [enum: DOCUMENT_ID_ONLY] |
10141016
| **limit** | **String**| Limit Results | [optional] [default to 10] |
10151017

10161018
### Return type

src/main/java/com/formkiq/client/api/DocumentsApi.java

Lines changed: 27 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3045,6 +3045,8 @@ public okhttp3.Call getDocumentUrlAsync(@javax.annotation.Nonnull String documen
30453045
* @param tz UTC offset to apply to date parameter (IE: -0600) (optional)
30463046
* @param next Next page of results token (optional)
30473047
* @param previous Previous page of results token (optional)
3048+
* @param projection Specify a restricted document projection. Use &#39;DOCUMENT_ID_ONLY&#39; to
3049+
* return only the documentId attribute. (optional)
30483050
* @param limit Limit Results (optional, default to 10)
30493051
* @param _callback Callback for upload/download progress
30503052
* @return Call to execute
@@ -3071,8 +3073,8 @@ public okhttp3.Call getDocumentsCall(@javax.annotation.Nullable String siteId,
30713073
@javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus,
30723074
@javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date,
30733075
@javax.annotation.Nullable String tz, @javax.annotation.Nullable String next,
3074-
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit,
3075-
final ApiCallback _callback) throws ApiException {
3076+
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection,
3077+
@javax.annotation.Nullable String limit, final ApiCallback _callback) throws ApiException {
30763078
String basePath = null;
30773079
// Operation Servers
30783080
String[] localBasePaths = new String[] {};
@@ -3129,6 +3131,10 @@ public okhttp3.Call getDocumentsCall(@javax.annotation.Nullable String siteId,
31293131
localVarQueryParams.addAll(localVarApiClient.parameterToPair("previous", previous));
31303132
}
31313133

3134+
if (projection != null) {
3135+
localVarQueryParams.addAll(localVarApiClient.parameterToPair("projection", projection));
3136+
}
3137+
31323138
if (limit != null) {
31333139
localVarQueryParams.addAll(localVarApiClient.parameterToPair("limit", limit));
31343140
}
@@ -3157,10 +3163,10 @@ private okhttp3.Call getDocumentsValidateBeforeCall(@javax.annotation.Nullable S
31573163
@javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus,
31583164
@javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date,
31593165
@javax.annotation.Nullable String tz, @javax.annotation.Nullable String next,
3160-
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit,
3161-
final ApiCallback _callback) throws ApiException {
3166+
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection,
3167+
@javax.annotation.Nullable String limit, final ApiCallback _callback) throws ApiException {
31623168
return getDocumentsCall(siteId, actionStatus, syncStatus, deleted, date, tz, next, previous,
3163-
limit, _callback);
3169+
projection, limit, _callback);
31643170

31653171
}
31663172

@@ -3176,6 +3182,8 @@ private okhttp3.Call getDocumentsValidateBeforeCall(@javax.annotation.Nullable S
31763182
* @param tz UTC offset to apply to date parameter (IE: -0600) (optional)
31773183
* @param next Next page of results token (optional)
31783184
* @param previous Previous page of results token (optional)
3185+
* @param projection Specify a restricted document projection. Use &#39;DOCUMENT_ID_ONLY&#39; to
3186+
* return only the documentId attribute. (optional)
31793187
* @param limit Limit Results (optional, default to 10)
31803188
* @return GetDocumentsResponse
31813189
* @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
32023210
@javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus,
32033211
@javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date,
32043212
@javax.annotation.Nullable String tz, @javax.annotation.Nullable String next,
3205-
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit)
3206-
throws ApiException {
3213+
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection,
3214+
@javax.annotation.Nullable String limit) throws ApiException {
32073215
ApiResponse<GetDocumentsResponse> localVarResp = getDocumentsWithHttpInfo(siteId, actionStatus,
3208-
syncStatus, deleted, date, tz, next, previous, limit);
3216+
syncStatus, deleted, date, tz, next, previous, projection, limit);
32093217
return localVarResp.getData();
32103218
}
32113219

@@ -3221,6 +3229,8 @@ public GetDocumentsResponse getDocuments(@javax.annotation.Nullable String siteI
32213229
* @param tz UTC offset to apply to date parameter (IE: -0600) (optional)
32223230
* @param next Next page of results token (optional)
32233231
* @param previous Previous page of results token (optional)
3232+
* @param projection Specify a restricted document projection. Use &#39;DOCUMENT_ID_ONLY&#39; to
3233+
* return only the documentId attribute. (optional)
32243234
* @param limit Limit Results (optional, default to 10)
32253235
* @return ApiResponse&lt;GetDocumentsResponse&gt;
32263236
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
@@ -3248,9 +3258,10 @@ public ApiResponse<GetDocumentsResponse> getDocumentsWithHttpInfo(
32483258
@javax.annotation.Nullable String syncStatus, @javax.annotation.Nullable Boolean deleted,
32493259
@javax.annotation.Nullable String date, @javax.annotation.Nullable String tz,
32503260
@javax.annotation.Nullable String next, @javax.annotation.Nullable String previous,
3251-
@javax.annotation.Nullable String limit) throws ApiException {
3261+
@javax.annotation.Nullable String projection, @javax.annotation.Nullable String limit)
3262+
throws ApiException {
32523263
okhttp3.Call localVarCall = getDocumentsValidateBeforeCall(siteId, actionStatus, syncStatus,
3253-
deleted, date, tz, next, previous, limit, null);
3264+
deleted, date, tz, next, previous, projection, limit, null);
32543265
Type localVarReturnType = new TypeToken<GetDocumentsResponse>() {}.getType();
32553266
return localVarApiClient.execute(localVarCall, localVarReturnType);
32563267
}
@@ -3267,6 +3278,8 @@ public ApiResponse<GetDocumentsResponse> getDocumentsWithHttpInfo(
32673278
* @param tz UTC offset to apply to date parameter (IE: -0600) (optional)
32683279
* @param next Next page of results token (optional)
32693280
* @param previous Previous page of results token (optional)
3281+
* @param projection Specify a restricted document projection. Use &#39;DOCUMENT_ID_ONLY&#39; to
3282+
* return only the documentId attribute. (optional)
32703283
* @param limit Limit Results (optional, default to 10)
32713284
* @param _callback The callback to be executed when the API call finishes
32723285
* @return The request call
@@ -3293,11 +3306,12 @@ public okhttp3.Call getDocumentsAsync(@javax.annotation.Nullable String siteId,
32933306
@javax.annotation.Nullable String actionStatus, @javax.annotation.Nullable String syncStatus,
32943307
@javax.annotation.Nullable Boolean deleted, @javax.annotation.Nullable String date,
32953308
@javax.annotation.Nullable String tz, @javax.annotation.Nullable String next,
3296-
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String limit,
3297-
final ApiCallback<GetDocumentsResponse> _callback) throws ApiException {
3309+
@javax.annotation.Nullable String previous, @javax.annotation.Nullable String projection,
3310+
@javax.annotation.Nullable String limit, final ApiCallback<GetDocumentsResponse> _callback)
3311+
throws ApiException {
32983312

32993313
okhttp3.Call localVarCall = getDocumentsValidateBeforeCall(siteId, actionStatus, syncStatus,
3300-
deleted, date, tz, next, previous, limit, _callback);
3314+
deleted, date, tz, next, previous, projection, limit, _callback);
33013315
Type localVarReturnType = new TypeToken<GetDocumentsResponse>() {}.getType();
33023316
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
33033317
return localVarCall;

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
@SuppressWarnings("serial")
3434
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
35-
date = "2025-11-22T20:24:16.101866-06:00[America/Winnipeg]",
35+
date = "2025-12-01T21:03:18.078696-06:00[America/Winnipeg]",
3636
comments = "Generator version: 7.17.0")
3737
public class ApiException extends Exception {
3838
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
@@ -25,7 +25,7 @@
2525
import java.util.function.Supplier;
2626

2727
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
28-
date = "2025-11-22T20:24:16.101866-06:00[America/Winnipeg]",
28+
date = "2025-12-01T21:03:18.078696-06:00[America/Winnipeg]",
2929
comments = "Generator version: 7.17.0")
3030
public class Configuration {
3131
public static final String VERSION = "1.18.1";

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

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

2323
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
24-
date = "2025-11-22T20:24:16.101866-06:00[America/Winnipeg]",
24+
date = "2025-12-01T21:03:18.078696-06:00[America/Winnipeg]",
2525
comments = "Generator version: 7.17.0")
2626
public class Pair {
2727
private final 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
@@ -26,7 +26,7 @@
2626
* Representing a Server configuration.
2727
*/
2828
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
29-
date = "2025-11-22T20:24:16.101866-06:00[America/Winnipeg]",
29+
date = "2025-12-01T21:03:18.078696-06:00[America/Winnipeg]",
3030
comments = "Generator version: 7.17.0")
3131
public class ServerConfiguration {
3232
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
@@ -26,7 +26,7 @@
2626
* Representing a Server Variable for server URL template substitution.
2727
*/
2828
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen",
29-
date = "2025-11-22T20:24:16.101866-06:00[America/Winnipeg]",
29+
date = "2025-12-01T21:03:18.078696-06:00[America/Winnipeg]",
3030
comments = "Generator version: 7.17.0")
3131
public class ServerVariable {
3232
public String description;

0 commit comments

Comments
 (0)