Skip to content

Commit ba3f7c2

Browse files
committed
add missing methods to checkout api root
1 parent 8e70e6b commit ba3f7c2

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

commercetools/commercetools-sdk-java-checkout/src/main/java/com/commercetools/checkout/client/ProjectApiRoot.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,17 @@ public ByProjectKeyTransactionsRequestBuilder transactions() {
3838
return with().transactions();
3939
}
4040

41+
@Override
42+
public ByProjectKeyPaymentIntegrationsRequestBuilder paymentIntegrations() {
43+
return with().paymentIntegrations();
44+
}
45+
46+
@Override
47+
public ByProjectKeyApplicationsRequestBuilder applications() {
48+
return with().applications();
49+
}
50+
51+
4152
public ByProjectKeyRequestBuilder withProjectKey(final String projectKey) {
4253
return ApiRoot.fromClient(apiHttpClient).withProjectKey(projectKey);
4354
}

commercetools/commercetools-sdk-java-checkout/src/main/java/com/commercetools/checkout/client/ProjectScopedApiRoot.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,8 @@ public interface ProjectScopedApiRoot {
77
ByProjectKeyTransactionsRequestBuilder transactions();
88

99
ByProjectKeyPaymentIntentsRequestBuilder paymentIntents();
10+
11+
ByProjectKeyPaymentIntegrationsRequestBuilder paymentIntegrations();
12+
13+
public ByProjectKeyApplicationsRequestBuilder applications();
1014
}

0 commit comments

Comments
 (0)