@@ -53,7 +53,7 @@ Add this dependency to your project's POM:
53
53
<dependency >
54
54
<groupId >one.talon</groupId >
55
55
<artifactId >talon-one-client</artifactId >
56
- <version >7 .0.0</version >
56
+ <version >8 .0.0</version >
57
57
<scope >compile</scope >
58
58
</dependency >
59
59
```
@@ -63,7 +63,7 @@ Add this dependency to your project's POM:
63
63
Add this dependency to your project's build file:
64
64
65
65
``` groovy
66
- compile "one.talon:talon-one-client:7 .0.0"
66
+ compile "one.talon:talon-one-client:8 .0.0"
67
67
```
68
68
69
69
### Others
@@ -76,7 +76,7 @@ mvn clean package
76
76
77
77
Then manually install the following JARs:
78
78
79
- * ` target/talon-one-client-7 .0.0.jar `
79
+ * ` target/talon-one-client-8 .0.0.jar `
80
80
* ` target/lib/*.jar `
81
81
82
82
## Getting Started
@@ -236,6 +236,7 @@ Class | Method | HTTP request | Description
236
236
* IntegrationApi* | [ ** updateCustomerProfileV2** ] ( docs/IntegrationApi.md#updateCustomerProfileV2 ) | ** PUT** /v2/customer_profiles/{integrationId} | Update customer profile
237
237
* IntegrationApi* | [ ** updateCustomerProfilesV2** ] ( docs/IntegrationApi.md#updateCustomerProfilesV2 ) | ** PUT** /v2/customer_profiles | Update multiple customer profiles
238
238
* IntegrationApi* | [ ** updateCustomerSessionV2** ] ( docs/IntegrationApi.md#updateCustomerSessionV2 ) | ** PUT** /v2/customer_sessions/{customerSessionId} | Update customer session
239
+ * ManagementApi* | [ ** activateUserByEmail** ] ( docs/ManagementApi.md#activateUserByEmail ) | ** POST** /v1/users/activate | Activate user by email address
239
240
* ManagementApi* | [ ** addLoyaltyCardPoints** ] ( docs/ManagementApi.md#addLoyaltyCardPoints ) | ** PUT** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/add_points | Add points to card
240
241
* ManagementApi* | [ ** addLoyaltyPoints** ] ( docs/ManagementApi.md#addLoyaltyPoints ) | ** PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/add_points | Add points to customer profile
241
242
* ManagementApi* | [ ** copyCampaignToApplications** ] ( docs/ManagementApi.md#copyCampaignToApplications ) | ** POST** /v1/applications/{applicationId}/campaigns/{campaignId}/copy | Copy the campaign into the specified Application
@@ -290,7 +291,6 @@ Class | Method | HTTP request | Description
290
291
* ManagementApi* | [ ** getAdditionalCost** ] ( docs/ManagementApi.md#getAdditionalCost ) | ** GET** /v1/additional_costs/{additionalCostId} | Get additional cost
291
292
* ManagementApi* | [ ** getAdditionalCosts** ] ( docs/ManagementApi.md#getAdditionalCosts ) | ** GET** /v1/additional_costs | List additional costs
292
293
* ManagementApi* | [ ** getAllAccessLogs** ] ( docs/ManagementApi.md#getAllAccessLogs ) | ** GET** /v1/access_logs | List access logs
293
- * ManagementApi* | [ ** getAllRoles** ] ( docs/ManagementApi.md#getAllRoles ) | ** GET** /v1/roles | List roles
294
294
* ManagementApi* | [ ** getApplication** ] ( docs/ManagementApi.md#getApplication ) | ** GET** /v1/applications/{applicationId} | Get Application
295
295
* ManagementApi* | [ ** getApplicationApiHealth** ] ( docs/ManagementApi.md#getApplicationApiHealth ) | ** GET** /v1/applications/{applicationId}/health_report | Get Application health
296
296
* ManagementApi* | [ ** getApplicationCustomer** ] ( docs/ManagementApi.md#getApplicationCustomer ) | ** GET** /v1/applications/{applicationId}/customers/{customerId} | Get application' ; s customer
@@ -336,7 +336,7 @@ Class | Method | HTTP request | Description
336
336
* ManagementApi* | [ ** getLoyaltyPrograms** ] ( docs/ManagementApi.md#getLoyaltyPrograms ) | ** GET** /v1/loyalty_programs | List loyalty programs
337
337
* ManagementApi* | [ ** getLoyaltyStatistics** ] ( docs/ManagementApi.md#getLoyaltyStatistics ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics
338
338
* ManagementApi* | [ ** getReferralsWithoutTotalCount** ] ( docs/ManagementApi.md#getReferralsWithoutTotalCount ) | ** GET** /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/no_total | List referrals
339
- * ManagementApi* | [ ** getRole ** ] ( docs/ManagementApi.md#getRole ) | ** GET** /v1 /roles/{roleId} | Get role
339
+ * ManagementApi* | [ ** getRoleV2 ** ] ( docs/ManagementApi.md#getRoleV2 ) | ** GET** /v2 /roles/{roleId} | Get role
340
340
* ManagementApi* | [ ** getRuleset** ] ( docs/ManagementApi.md#getRuleset ) | ** GET** /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets/{rulesetId} | Get ruleset
341
341
* ManagementApi* | [ ** getRulesets** ] ( docs/ManagementApi.md#getRulesets ) | ** GET** /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets | List campaign rulesets
342
342
* ManagementApi* | [ ** getStore** ] ( docs/ManagementApi.md#getStore ) | ** GET** /v1/applications/{applicationId}/stores/{storeId} | Get store
@@ -356,8 +356,10 @@ Class | Method | HTTP request | Description
356
356
* ManagementApi* | [ ** importLoyaltyPoints** ] ( docs/ManagementApi.md#importLoyaltyPoints ) | ** POST** /v1/loyalty_programs/{loyaltyProgramId}/import_points | Import loyalty points
357
357
* ManagementApi* | [ ** importPoolGiveaways** ] ( docs/ManagementApi.md#importPoolGiveaways ) | ** POST** /v1/giveaways/pools/{poolId}/import | Import giveaway codes into a giveaway pool
358
358
* ManagementApi* | [ ** importReferrals** ] ( docs/ManagementApi.md#importReferrals ) | ** POST** /v1/applications/{applicationId}/campaigns/{campaignId}/import_referrals | Import referrals
359
+ * ManagementApi* | [ ** inviteUserExternal** ] ( docs/ManagementApi.md#inviteUserExternal ) | ** POST** /v1/users/invite | Invite user from identity provider
359
360
* ManagementApi* | [ ** listAccountCollections** ] ( docs/ManagementApi.md#listAccountCollections ) | ** GET** /v1/collections | List collections in account
360
361
* ManagementApi* | [ ** listAchievements** ] ( docs/ManagementApi.md#listAchievements ) | ** GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements | List achievements
362
+ * ManagementApi* | [ ** listAllRolesV2** ] ( docs/ManagementApi.md#listAllRolesV2 ) | ** GET** /v2/roles | List roles
361
363
* ManagementApi* | [ ** listCatalogItems** ] ( docs/ManagementApi.md#listCatalogItems ) | ** GET** /v1/catalogs/{catalogId}/items | List items in a catalog
362
364
* ManagementApi* | [ ** listCollections** ] ( docs/ManagementApi.md#listCollections ) | ** GET** /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections in campaign
363
365
* ManagementApi* | [ ** listCollectionsInApplication** ] ( docs/ManagementApi.md#listCollectionsInApplication ) | ** GET** /v1/applications/{applicationId}/collections | List collections in Application
@@ -406,6 +408,7 @@ Class | Method | HTTP request | Description
406
408
- [ Achievement] ( docs/Achievement.md )
407
409
- [ AchievementAdditionalProperties] ( docs/AchievementAdditionalProperties.md )
408
410
- [ AchievementProgress] ( docs/AchievementProgress.md )
411
+ - [ ActivateUserRequest] ( docs/ActivateUserRequest.md )
409
412
- [ AddFreeItemEffectProps] ( docs/AddFreeItemEffectProps.md )
410
413
- [ AddItemCatalogAction] ( docs/AddItemCatalogAction.md )
411
414
- [ AddLoyaltyPoints] ( docs/AddLoyaltyPoints.md )
@@ -644,6 +647,7 @@ Class | Method | HTTP request | Description
644
647
- [ LoyaltyBalance] ( docs/LoyaltyBalance.md )
645
648
- [ LoyaltyBalances] ( docs/LoyaltyBalances.md )
646
649
- [ LoyaltyCard] ( docs/LoyaltyCard.md )
650
+ - [ LoyaltyCardBalances] ( docs/LoyaltyCardBalances.md )
647
651
- [ LoyaltyCardProfileRegistration] ( docs/LoyaltyCardProfileRegistration.md )
648
652
- [ LoyaltyCardRegistration] ( docs/LoyaltyCardRegistration.md )
649
653
- [ LoyaltyDashboardData] ( docs/LoyaltyDashboardData.md )
@@ -704,6 +708,7 @@ Class | Method | HTTP request | Description
704
708
- [ NewCustomerSessionV2] ( docs/NewCustomerSessionV2.md )
705
709
- [ NewEvent] ( docs/NewEvent.md )
706
710
- [ NewEventType] ( docs/NewEventType.md )
711
+ - [ NewExternalInvitation] ( docs/NewExternalInvitation.md )
707
712
- [ NewGiveawaysPool] ( docs/NewGiveawaysPool.md )
708
713
- [ NewInternalAudience] ( docs/NewInternalAudience.md )
709
714
- [ NewInvitation] ( docs/NewInvitation.md )
0 commit comments