Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2006,7 +2006,11 @@ public enum ZendeskApiMethod implements ApiMethod {
org.zendesk.client.v2.model.Identity.class,
"verifyUserIdentity",
arg("userId", long.class),
arg("identityId", long.class));
arg("identityId", long.class)),

WARM_UP(
void.class,
"warmUp");

private final ApiMethod apiMethod;

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -18011,7 +18011,7 @@ public static XsltSaxonEndpointBuilderFactory.XsltSaxonEndpointBuilder xsltSaxon
*
* Path parameter: methodName (required)
* What operation to use
* There are 382 enums and the value can be one of:
* There are 383 enums and the value can be one of:
* ADD_TAG_TO_ORGANISATIONS, ADD_TAG_TO_TICKET, ADD_TAG_TO_TOPICS,
* ASSOCIATE_ATTACHMENTS_TO_ARTICLE, CHANGE_USER_PASSWORD, CREATE_ARTICLE,
* CREATE_ARTICLE_1, CREATE_ARTICLE_TRANSLATION, CREATE_AUTOMATION,
Expand Down Expand Up @@ -18147,7 +18147,8 @@ public static XsltSaxonEndpointBuilderFactory.XsltSaxonEndpointBuilder xsltSaxon
* UPDATE_TICKETS_1, UPDATE_TICKETS_ASYNC, UPDATE_TOPIC, UPDATE_TRIGGER,
* UPDATE_USER, UPDATE_USER_IDENTITY, UPDATE_USER_IDENTITY_1,
* UPDATE_USER_SEGMENT, UPDATE_USERS, UPDATE_USERS_1, UPDATE_USERS_ASYNC,
* VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1, VERIFY_USER_IDENTITY_2
* VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1, VERIFY_USER_IDENTITY_2,
* WARM_UP
*
* @param path methodName
* @return the dsl builder
Expand All @@ -18167,7 +18168,7 @@ public static ZendeskEndpointBuilderFactory.ZendeskEndpointBuilder zendesk(Strin
*
* Path parameter: methodName (required)
* What operation to use
* There are 382 enums and the value can be one of:
* There are 383 enums and the value can be one of:
* ADD_TAG_TO_ORGANISATIONS, ADD_TAG_TO_TICKET, ADD_TAG_TO_TOPICS,
* ASSOCIATE_ATTACHMENTS_TO_ARTICLE, CHANGE_USER_PASSWORD, CREATE_ARTICLE,
* CREATE_ARTICLE_1, CREATE_ARTICLE_TRANSLATION, CREATE_AUTOMATION,
Expand Down Expand Up @@ -18303,7 +18304,8 @@ public static ZendeskEndpointBuilderFactory.ZendeskEndpointBuilder zendesk(Strin
* UPDATE_TICKETS_1, UPDATE_TICKETS_ASYNC, UPDATE_TOPIC, UPDATE_TRIGGER,
* UPDATE_USER, UPDATE_USER_IDENTITY, UPDATE_USER_IDENTITY_1,
* UPDATE_USER_SEGMENT, UPDATE_USERS, UPDATE_USERS_1, UPDATE_USERS_ASYNC,
* VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1, VERIFY_USER_IDENTITY_2
* VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1, VERIFY_USER_IDENTITY_2,
* WARM_UP
*
* @param componentName to use a custom component name for the endpoint
* instead of the default name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1057,7 +1057,7 @@ public interface ZendeskBuilders {
*
* Path parameter: methodName (required)
* What operation to use
* There are 382 enums and the value can be one of:
* There are 383 enums and the value can be one of:
* ADD_TAG_TO_ORGANISATIONS, ADD_TAG_TO_TICKET, ADD_TAG_TO_TOPICS,
* ASSOCIATE_ATTACHMENTS_TO_ARTICLE, CHANGE_USER_PASSWORD,
* CREATE_ARTICLE, CREATE_ARTICLE_1, CREATE_ARTICLE_TRANSLATION,
Expand Down Expand Up @@ -1200,7 +1200,7 @@ public interface ZendeskBuilders {
* UPDATE_USER, UPDATE_USER_IDENTITY, UPDATE_USER_IDENTITY_1,
* UPDATE_USER_SEGMENT, UPDATE_USERS, UPDATE_USERS_1,
* UPDATE_USERS_ASYNC, VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1,
* VERIFY_USER_IDENTITY_2
* VERIFY_USER_IDENTITY_2, WARM_UP
*
* @param path methodName
* @return the dsl builder
Expand All @@ -1220,7 +1220,7 @@ default ZendeskEndpointBuilder zendesk(String path) {
*
* Path parameter: methodName (required)
* What operation to use
* There are 382 enums and the value can be one of:
* There are 383 enums and the value can be one of:
* ADD_TAG_TO_ORGANISATIONS, ADD_TAG_TO_TICKET, ADD_TAG_TO_TOPICS,
* ASSOCIATE_ATTACHMENTS_TO_ARTICLE, CHANGE_USER_PASSWORD,
* CREATE_ARTICLE, CREATE_ARTICLE_1, CREATE_ARTICLE_TRANSLATION,
Expand Down Expand Up @@ -1363,7 +1363,7 @@ default ZendeskEndpointBuilder zendesk(String path) {
* UPDATE_USER, UPDATE_USER_IDENTITY, UPDATE_USER_IDENTITY_1,
* UPDATE_USER_SEGMENT, UPDATE_USERS, UPDATE_USERS_1,
* UPDATE_USERS_ASYNC, VERIFY_USER_IDENTITY, VERIFY_USER_IDENTITY_1,
* VERIFY_USER_IDENTITY_2
* VERIFY_USER_IDENTITY_2, WARM_UP
*
* @param componentName to use a custom component name for the endpoint
* instead of the default name
Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@
<xmlunit-version>2.13.0</xmlunit-version>
<yasson-version>3.0.5</yasson-version>
<yetus-audience-annotations-version>0.15.1</yetus-audience-annotations-version>
<zendesk-client-version>1.5.2</zendesk-client-version>
<zendesk-client-version>1.6.0</zendesk-client-version>
<zookeeper-version>3.9.5</zookeeper-version>
<zxing-version>3.5.4</zxing-version>
</properties>
Expand Down