Skip to content

Commit db94a67

Browse files
committed
updated
1 parent 1cb1f38 commit db94a67

456 files changed

Lines changed: 2763 additions & 3481 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.

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.17.0
1+
7.18.0

api/openapi.yaml

Lines changed: 65 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7858,6 +7858,30 @@ paths:
78587858
schema:
78597859
type: string
78607860
style: form
7861+
- description: RulesetId Identifier
7862+
explode: true
7863+
in: query
7864+
name: rulesetId
7865+
required: false
7866+
schema:
7867+
type: string
7868+
style: form
7869+
- description: Workflow Identifier
7870+
explode: true
7871+
in: query
7872+
name: workflowId
7873+
required: false
7874+
schema:
7875+
type: string
7876+
style: form
7877+
- description: Attribute Key
7878+
explode: true
7879+
in: query
7880+
name: attributeKey
7881+
required: false
7882+
schema:
7883+
type: string
7884+
style: form
78617885
- description: Start of date-time range (UTC)
78627886
explode: true
78637887
in: query
@@ -12232,6 +12256,33 @@ components:
1223212256
schema:
1223312257
type: string
1223412258
style: form
12259+
rulesetIdQuery:
12260+
description: RulesetId Identifier
12261+
explode: true
12262+
in: query
12263+
name: rulesetId
12264+
required: false
12265+
schema:
12266+
type: string
12267+
style: form
12268+
workflowIdQuery:
12269+
description: Workflow Identifier
12270+
explode: true
12271+
in: query
12272+
name: workflowId
12273+
required: false
12274+
schema:
12275+
type: string
12276+
style: form
12277+
attributeKeyQuery:
12278+
description: Attribute Key
12279+
explode: true
12280+
in: query
12281+
name: attributeKey
12282+
required: false
12283+
schema:
12284+
type: string
12285+
style: form
1223512286
entityTypeIdParam:
1223612287
description: EntityType Identifier
1223712288
explode: false
@@ -16209,7 +16260,8 @@ components:
1620916260
example:
1621016261
next: next
1621116262
activities:
16212-
- resource: resource
16263+
- rulesetId: rulesetId
16264+
resource: resource
1621316265
changes:
1621416266
key:
1621516267
newValue: "{}"
@@ -16224,8 +16276,10 @@ components:
1622416276
insertedDate: insertedDate
1622516277
documentId: ""
1622616278
entityTypeId: entityTypeId
16279+
workflowId: workflowId
1622716280
status: COMPLETE
16228-
- resource: resource
16281+
- rulesetId: rulesetId
16282+
resource: resource
1622916283
changes:
1623016284
key:
1623116285
newValue: "{}"
@@ -16240,6 +16294,7 @@ components:
1624016294
insertedDate: insertedDate
1624116295
documentId: ""
1624216296
entityTypeId: entityTypeId
16297+
workflowId: workflowId
1624316298
status: COMPLETE
1624416299
properties:
1624516300
next:
@@ -16423,6 +16478,7 @@ components:
1642316478
type: string
1642416479
Activity:
1642516480
example:
16481+
rulesetId: rulesetId
1642616482
resource: resource
1642716483
changes:
1642816484
key:
@@ -16438,6 +16494,7 @@ components:
1643816494
insertedDate: insertedDate
1643916495
documentId: ""
1644016496
entityTypeId: entityTypeId
16497+
workflowId: workflowId
1644116498
status: COMPLETE
1644216499
properties:
1644316500
resource:
@@ -16473,6 +16530,12 @@ components:
1647316530
entityId:
1647416531
description: Entity Identifier
1647516532
type: string
16533+
rulesetId:
16534+
description: Ruleset Identifier
16535+
type: string
16536+
workflowId:
16537+
description: Workflow Identifier
16538+
type: string
1647616539
changes:
1647716540
additionalProperties:
1647816541
$ref: "#/components/schemas/UserActivityChanges"

docs/Activity.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
|**attributeKey** | **Object** | Document Attribute Key | [optional] |
2020
|**entityTypeId** | **String** | Entity Type Identifier | [optional] |
2121
|**entityId** | **String** | Entity Identifier | [optional] |
22+
|**rulesetId** | **String** | Ruleset Identifier | [optional] |
23+
|**workflowId** | **String** | Workflow Identifier | [optional] |
2224
|**changes** | [**Map<String, UserActivityChanges>**](UserActivityChanges.md) | | [optional] |
2325

2426

docs/UserActivitiesApi.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ No authorization required
8282

8383
<a id="getResourceActivities"></a>
8484
# **getResourceActivities**
85-
> GetActivitesResponse getResourceActivities(siteId, documentId, entityTypeId, namespace, entityId, start, end, sort, next, limit, userId)
85+
> GetActivitesResponse getResourceActivities(siteId, documentId, entityTypeId, namespace, entityId, rulesetId, workflowId, attributeKey, start, end, sort, next, limit, userId)
8686
8787
Get resource activities
8888

@@ -111,14 +111,17 @@ public class Example {
111111
String entityTypeId = "entityTypeId_example"; // String | EntityType Identifier
112112
String namespace = "PRESET"; // String | Namespace Identifier
113113
String entityId = "entityId_example"; // String | Entity Identifier
114+
String rulesetId = "rulesetId_example"; // String | RulesetId Identifier
115+
String workflowId = "workflowId_example"; // String | Workflow Identifier
116+
String attributeKey = "attributeKey_example"; // String | Attribute Key
114117
OffsetDateTime start = OffsetDateTime.now(); // OffsetDateTime | Start of date-time range (UTC)
115118
OffsetDateTime end = OffsetDateTime.now(); // OffsetDateTime | End of date-time range (UTC)
116119
String sort = "ASC"; // String | Sort order (default DESC)
117120
String next = "next_example"; // String | Next page of results token
118121
String limit = "10"; // String | Limit Results
119122
String userId = "userId_example"; // String | Fetch specific user activities
120123
try {
121-
GetActivitesResponse result = apiInstance.getResourceActivities(siteId, documentId, entityTypeId, namespace, entityId, start, end, sort, next, limit, userId);
124+
GetActivitesResponse result = apiInstance.getResourceActivities(siteId, documentId, entityTypeId, namespace, entityId, rulesetId, workflowId, attributeKey, start, end, sort, next, limit, userId);
122125
System.out.println(result);
123126
} catch (ApiException e) {
124127
System.err.println("Exception when calling UserActivitiesApi#getResourceActivities");
@@ -140,6 +143,9 @@ public class Example {
140143
| **entityTypeId** | **String**| EntityType Identifier | [optional] |
141144
| **namespace** | **String**| Namespace Identifier | [optional] [enum: PRESET, CUSTOM] |
142145
| **entityId** | **String**| Entity Identifier | [optional] |
146+
| **rulesetId** | **String**| RulesetId Identifier | [optional] |
147+
| **workflowId** | **String**| Workflow Identifier | [optional] |
148+
| **attributeKey** | **String**| Attribute Key | [optional] |
143149
| **start** | **OffsetDateTime**| Start of date-time range (UTC) | [optional] |
144150
| **end** | **OffsetDateTime**| End of date-time range (UTC) | [optional] |
145151
| **sort** | **String**| Sort order (default DESC) | [optional] [enum: ASC, DESC] |

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

Lines changed: 45 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,9 @@ public okhttp3.Call getDocumentUserActivitiesAsync(@javax.annotation.Nonnull Str
307307
* @param entityTypeId EntityType Identifier (optional)
308308
* @param namespace Namespace Identifier (optional)
309309
* @param entityId Entity Identifier (optional)
310+
* @param rulesetId RulesetId Identifier (optional)
311+
* @param workflowId Workflow Identifier (optional)
312+
* @param attributeKey Attribute Key (optional)
310313
* @param start Start of date-time range (UTC) (optional)
311314
* @param end End of date-time range (UTC) (optional)
312315
* @param sort Sort order (default DESC) (optional)
@@ -337,6 +340,8 @@ public okhttp3.Call getDocumentUserActivitiesAsync(@javax.annotation.Nonnull Str
337340
public okhttp3.Call getResourceActivitiesCall(@javax.annotation.Nullable String siteId,
338341
@javax.annotation.Nullable String documentId, @javax.annotation.Nullable String entityTypeId,
339342
@javax.annotation.Nullable String namespace, @javax.annotation.Nullable String entityId,
343+
@javax.annotation.Nullable String rulesetId, @javax.annotation.Nullable String workflowId,
344+
@javax.annotation.Nullable String attributeKey,
340345
@javax.annotation.Nullable OffsetDateTime start,
341346
@javax.annotation.Nullable OffsetDateTime end, @javax.annotation.Nullable String sort,
342347
@javax.annotation.Nullable String next, @javax.annotation.Nullable String limit,
@@ -385,6 +390,18 @@ public okhttp3.Call getResourceActivitiesCall(@javax.annotation.Nullable String
385390
localVarQueryParams.addAll(localVarApiClient.parameterToPair("entityId", entityId));
386391
}
387392

393+
if (rulesetId != null) {
394+
localVarQueryParams.addAll(localVarApiClient.parameterToPair("rulesetId", rulesetId));
395+
}
396+
397+
if (workflowId != null) {
398+
localVarQueryParams.addAll(localVarApiClient.parameterToPair("workflowId", workflowId));
399+
}
400+
401+
if (attributeKey != null) {
402+
localVarQueryParams.addAll(localVarApiClient.parameterToPair("attributeKey", attributeKey));
403+
}
404+
388405
if (start != null) {
389406
localVarQueryParams.addAll(localVarApiClient.parameterToPair("start", start));
390407
}
@@ -432,12 +449,14 @@ public okhttp3.Call getResourceActivitiesCall(@javax.annotation.Nullable String
432449
private okhttp3.Call getResourceActivitiesValidateBeforeCall(
433450
@javax.annotation.Nullable String siteId, @javax.annotation.Nullable String documentId,
434451
@javax.annotation.Nullable String entityTypeId, @javax.annotation.Nullable String namespace,
435-
@javax.annotation.Nullable String entityId, @javax.annotation.Nullable OffsetDateTime start,
452+
@javax.annotation.Nullable String entityId, @javax.annotation.Nullable String rulesetId,
453+
@javax.annotation.Nullable String workflowId, @javax.annotation.Nullable String attributeKey,
454+
@javax.annotation.Nullable OffsetDateTime start,
436455
@javax.annotation.Nullable OffsetDateTime end, @javax.annotation.Nullable String sort,
437456
@javax.annotation.Nullable String next, @javax.annotation.Nullable String limit,
438457
@javax.annotation.Nullable String userId, final ApiCallback _callback) throws ApiException {
439-
return getResourceActivitiesCall(siteId, documentId, entityTypeId, namespace, entityId, start,
440-
end, sort, next, limit, userId, _callback);
458+
return getResourceActivitiesCall(siteId, documentId, entityTypeId, namespace, entityId,
459+
rulesetId, workflowId, attributeKey, start, end, sort, next, limit, userId, _callback);
441460

442461
}
443462

@@ -449,6 +468,9 @@ private okhttp3.Call getResourceActivitiesValidateBeforeCall(
449468
* @param entityTypeId EntityType Identifier (optional)
450469
* @param namespace Namespace Identifier (optional)
451470
* @param entityId Entity Identifier (optional)
471+
* @param rulesetId RulesetId Identifier (optional)
472+
* @param workflowId Workflow Identifier (optional)
473+
* @param attributeKey Attribute Key (optional)
452474
* @param start Start of date-time range (UTC) (optional)
453475
* @param end End of date-time range (UTC) (optional)
454476
* @param sort Sort order (default DESC) (optional)
@@ -479,12 +501,15 @@ private okhttp3.Call getResourceActivitiesValidateBeforeCall(
479501
public GetActivitesResponse getResourceActivities(@javax.annotation.Nullable String siteId,
480502
@javax.annotation.Nullable String documentId, @javax.annotation.Nullable String entityTypeId,
481503
@javax.annotation.Nullable String namespace, @javax.annotation.Nullable String entityId,
504+
@javax.annotation.Nullable String rulesetId, @javax.annotation.Nullable String workflowId,
505+
@javax.annotation.Nullable String attributeKey,
482506
@javax.annotation.Nullable OffsetDateTime start,
483507
@javax.annotation.Nullable OffsetDateTime end, @javax.annotation.Nullable String sort,
484508
@javax.annotation.Nullable String next, @javax.annotation.Nullable String limit,
485509
@javax.annotation.Nullable String userId) throws ApiException {
486-
ApiResponse<GetActivitesResponse> localVarResp = getResourceActivitiesWithHttpInfo(siteId,
487-
documentId, entityTypeId, namespace, entityId, start, end, sort, next, limit, userId);
510+
ApiResponse<GetActivitesResponse> localVarResp =
511+
getResourceActivitiesWithHttpInfo(siteId, documentId, entityTypeId, namespace, entityId,
512+
rulesetId, workflowId, attributeKey, start, end, sort, next, limit, userId);
488513
return localVarResp.getData();
489514
}
490515

@@ -496,6 +521,9 @@ public GetActivitesResponse getResourceActivities(@javax.annotation.Nullable Str
496521
* @param entityTypeId EntityType Identifier (optional)
497522
* @param namespace Namespace Identifier (optional)
498523
* @param entityId Entity Identifier (optional)
524+
* @param rulesetId RulesetId Identifier (optional)
525+
* @param workflowId Workflow Identifier (optional)
526+
* @param attributeKey Attribute Key (optional)
499527
* @param start Start of date-time range (UTC) (optional)
500528
* @param end End of date-time range (UTC) (optional)
501529
* @param sort Sort order (default DESC) (optional)
@@ -526,12 +554,15 @@ public GetActivitesResponse getResourceActivities(@javax.annotation.Nullable Str
526554
public ApiResponse<GetActivitesResponse> getResourceActivitiesWithHttpInfo(
527555
@javax.annotation.Nullable String siteId, @javax.annotation.Nullable String documentId,
528556
@javax.annotation.Nullable String entityTypeId, @javax.annotation.Nullable String namespace,
529-
@javax.annotation.Nullable String entityId, @javax.annotation.Nullable OffsetDateTime start,
557+
@javax.annotation.Nullable String entityId, @javax.annotation.Nullable String rulesetId,
558+
@javax.annotation.Nullable String workflowId, @javax.annotation.Nullable String attributeKey,
559+
@javax.annotation.Nullable OffsetDateTime start,
530560
@javax.annotation.Nullable OffsetDateTime end, @javax.annotation.Nullable String sort,
531561
@javax.annotation.Nullable String next, @javax.annotation.Nullable String limit,
532562
@javax.annotation.Nullable String userId) throws ApiException {
533563
okhttp3.Call localVarCall = getResourceActivitiesValidateBeforeCall(siteId, documentId,
534-
entityTypeId, namespace, entityId, start, end, sort, next, limit, userId, null);
564+
entityTypeId, namespace, entityId, rulesetId, workflowId, attributeKey, start, end, sort,
565+
next, limit, userId, null);
535566
Type localVarReturnType = new TypeToken<GetActivitesResponse>() {}.getType();
536567
return localVarApiClient.execute(localVarCall, localVarReturnType);
537568
}
@@ -544,6 +575,9 @@ public ApiResponse<GetActivitesResponse> getResourceActivitiesWithHttpInfo(
544575
* @param entityTypeId EntityType Identifier (optional)
545576
* @param namespace Namespace Identifier (optional)
546577
* @param entityId Entity Identifier (optional)
578+
* @param rulesetId RulesetId Identifier (optional)
579+
* @param workflowId Workflow Identifier (optional)
580+
* @param attributeKey Attribute Key (optional)
547581
* @param start Start of date-time range (UTC) (optional)
548582
* @param end End of date-time range (UTC) (optional)
549583
* @param sort Sort order (default DESC) (optional)
@@ -574,14 +608,17 @@ public ApiResponse<GetActivitesResponse> getResourceActivitiesWithHttpInfo(
574608
public okhttp3.Call getResourceActivitiesAsync(@javax.annotation.Nullable String siteId,
575609
@javax.annotation.Nullable String documentId, @javax.annotation.Nullable String entityTypeId,
576610
@javax.annotation.Nullable String namespace, @javax.annotation.Nullable String entityId,
611+
@javax.annotation.Nullable String rulesetId, @javax.annotation.Nullable String workflowId,
612+
@javax.annotation.Nullable String attributeKey,
577613
@javax.annotation.Nullable OffsetDateTime start,
578614
@javax.annotation.Nullable OffsetDateTime end, @javax.annotation.Nullable String sort,
579615
@javax.annotation.Nullable String next, @javax.annotation.Nullable String limit,
580616
@javax.annotation.Nullable String userId, final ApiCallback<GetActivitesResponse> _callback)
581617
throws ApiException {
582618

583619
okhttp3.Call localVarCall = getResourceActivitiesValidateBeforeCall(siteId, documentId,
584-
entityTypeId, namespace, entityId, start, end, sort, next, limit, userId, _callback);
620+
entityTypeId, namespace, entityId, rulesetId, workflowId, attributeKey, start, end, sort,
621+
next, limit, userId, _callback);
585622
Type localVarReturnType = new TypeToken<GetActivitesResponse>() {}.getType();
586623
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
587624
return localVarCall;

0 commit comments

Comments
 (0)