@@ -35,7 +35,7 @@ Add this dependency to your project's POM:
3535<dependency >
3636 <groupId >one.talon</groupId >
3737 <artifactId >talon-one-client</artifactId >
38- <version >14.1.0 </version >
38+ <version >14.1.1 </version >
3939 <scope >compile</scope >
4040</dependency >
4141```
@@ -45,7 +45,7 @@ Add this dependency to your project's POM:
4545Add this dependency to your project's build file:
4646
4747``` groovy
48- compile "one.talon:talon-one-client:14.1.0 "
48+ compile "one.talon:talon-one-client:14.1.1 "
4949```
5050
5151### Others
@@ -191,6 +191,7 @@ All URLs are relative to `https://yourbaseurl.talon.one`.
191191
192192Class | Method | HTTP request | Description
193193------------ | ------------- | ------------- | -------------
194+ * IntegrationApi* | [ ** activateLoyaltyPoints** ] ( docs/IntegrationApi.md#activateLoyaltyPoints ) | ** POST** /v1/loyalty_programs/{loyaltyProgramId}/activate_points | Activate loyalty points
194195* IntegrationApi* | [ ** bestPriorPrice** ] ( docs/IntegrationApi.md#bestPriorPrice ) | ** POST** /v1/best_prior_price | Fetch best prior price
195196* IntegrationApi* | [ ** createAudienceV2** ] ( docs/IntegrationApi.md#createAudienceV2 ) | ** POST** /v2/audiences | Create audience
196197* IntegrationApi* | [ ** createCouponReservation** ] ( docs/IntegrationApi.md#createCouponReservation ) | ** POST** /v1/coupon_reservations/{couponValue} | Create coupon reservation
@@ -217,6 +218,7 @@ Class | Method | HTTP request | Description
217218* IntegrationApi* | [ ** returnCartItems** ] ( docs/IntegrationApi.md#returnCartItems ) | ** POST** /v2/customer_sessions/{customerSessionId}/returns | Return cart items
218219* IntegrationApi* | [ ** syncCatalog** ] ( docs/IntegrationApi.md#syncCatalog ) | ** PUT** /v1/catalogs/{catalogId}/sync | Sync cart item catalog
219220* IntegrationApi* | [ ** trackEventV2** ] ( docs/IntegrationApi.md#trackEventV2 ) | ** POST** /v2/events | Track event
221+ * IntegrationApi* | [ ** unlinkLoyaltyCardFromProfile** ] ( docs/IntegrationApi.md#unlinkLoyaltyCardFromProfile ) | ** POST** /v2/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/unlink_profile | Unlink customer profile from a loyalty card
220222* IntegrationApi* | [ ** updateAudienceCustomersAttributes** ] ( docs/IntegrationApi.md#updateAudienceCustomersAttributes ) | ** PUT** /v2/audience_customers/{audienceId}/attributes | Update profile attributes for all customers in audience
221223* IntegrationApi* | [ ** updateAudienceV2** ] ( docs/IntegrationApi.md#updateAudienceV2 ) | ** PUT** /v2/audiences/{audienceId} | Update audience name
222224* IntegrationApi* | [ ** updateCustomerProfileAudiences** ] ( docs/IntegrationApi.md#updateCustomerProfileAudiences ) | ** POST** /v2/customer_audiences | Update multiple customer profiles' ; audiences
@@ -325,8 +327,10 @@ Class | Method | HTTP request | Description
325327* ManagementApi* | [ ** getLoyaltyCard** ] ( docs/ManagementApi.md#getLoyaltyCard ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Get loyalty card
326328* ManagementApi* | [ ** getLoyaltyCardTransactionLogs** ] ( docs/ManagementApi.md#getLoyaltyCardTransactionLogs ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/logs | List card' ; s transactions
327329* ManagementApi* | [ ** getLoyaltyCards** ] ( docs/ManagementApi.md#getLoyaltyCards ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/cards | List loyalty cards
330+ * ManagementApi* | [ ** getLoyaltyLedgerBalances** ] ( docs/ManagementApi.md#getLoyaltyLedgerBalances ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/ledger_balances | Get customer' ; s loyalty balances
328331* ManagementApi* | [ ** getLoyaltyPoints** ] ( docs/ManagementApi.md#getLoyaltyPoints ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId} | Get customer' ; s full loyalty ledger
329332* ManagementApi* | [ ** getLoyaltyProgram** ] ( docs/ManagementApi.md#getLoyaltyProgram ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId} | Get loyalty program
333+ * ManagementApi* | [ ** getLoyaltyProgramProfileLedgerTransactions** ] ( docs/ManagementApi.md#getLoyaltyProgramProfileLedgerTransactions ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/ledger_transactions | List customer' ; s loyalty transactions
330334* ManagementApi* | [ ** getLoyaltyProgramTransactions** ] ( docs/ManagementApi.md#getLoyaltyProgramTransactions ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/transactions | List loyalty program transactions
331335* ManagementApi* | [ ** getLoyaltyPrograms** ] ( docs/ManagementApi.md#getLoyaltyPrograms ) | ** GET** /v1/loyalty_programs | List loyalty programs
332336* ManagementApi* | [ ** getLoyaltyStatistics** ] ( docs/ManagementApi.md#getLoyaltyStatistics ) | ** GET** /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics
@@ -420,12 +424,16 @@ Class | Method | HTTP request | Description
420424- [ AchievementProgress] ( docs/AchievementProgress.md )
421425- [ AchievementProgressWithDefinition] ( docs/AchievementProgressWithDefinition.md )
422426- [ AchievementStatusEntry] ( docs/AchievementStatusEntry.md )
427+ - [ ActivateLoyaltyPoints] ( docs/ActivateLoyaltyPoints.md )
428+ - [ ActivateLoyaltyPointsResponse] ( docs/ActivateLoyaltyPointsResponse.md )
423429- [ AddFreeItemEffectProps] ( docs/AddFreeItemEffectProps.md )
424430- [ AddItemCatalogAction] ( docs/AddItemCatalogAction.md )
425431- [ AddLoyaltyPoints] ( docs/AddLoyaltyPoints.md )
426432- [ AddLoyaltyPointsEffectProps] ( docs/AddLoyaltyPointsEffectProps.md )
427433- [ AddPriceAdjustmentCatalogAction] ( docs/AddPriceAdjustmentCatalogAction.md )
428434- [ AddToAudienceEffectProps] ( docs/AddToAudienceEffectProps.md )
435+ - [ AddedDeductedPointsBalancesAction] ( docs/AddedDeductedPointsBalancesAction.md )
436+ - [ AddedDeductedPointsBalancesNotification] ( docs/AddedDeductedPointsBalancesNotification.md )
429437- [ AddedDeductedPointsBalancesNotificationPolicy] ( docs/AddedDeductedPointsBalancesNotificationPolicy.md )
430438- [ AddedDeductedPointsNotification] ( docs/AddedDeductedPointsNotification.md )
431439- [ AddedDeductedPointsNotificationPolicy] ( docs/AddedDeductedPointsNotificationPolicy.md )
@@ -478,7 +486,7 @@ Class | Method | HTTP request | Description
478486- [ BestPriorPrice] ( docs/BestPriorPrice.md )
479487- [ BestPriorPriceMetadata] ( docs/BestPriorPriceMetadata.md )
480488- [ BestPriorPriceRequest] ( docs/BestPriorPriceRequest.md )
481- - [ BestPriorPriceRequestTarget ] ( docs/BestPriorPriceRequestTarget .md )
489+ - [ BestPriorTarget ] ( docs/BestPriorTarget .md )
482490- [ Binding] ( docs/Binding.md )
483491- [ BulkApplicationNotification] ( docs/BulkApplicationNotification.md )
484492- [ BulkOperationOnCampaigns] ( docs/BulkOperationOnCampaigns.md )
@@ -506,6 +514,7 @@ Class | Method | HTTP request | Description
506514- [ CampaignEvaluationTreeChangedNotification] ( docs/CampaignEvaluationTreeChangedNotification.md )
507515- [ CampaignGroup] ( docs/CampaignGroup.md )
508516- [ CampaignGroupEntity] ( docs/CampaignGroupEntity.md )
517+ - [ CampaignLogSummary] ( docs/CampaignLogSummary.md )
509518- [ CampaignNotificationBase] ( docs/CampaignNotificationBase.md )
510519- [ CampaignNotificationGeneric] ( docs/CampaignNotificationGeneric.md )
511520- [ CampaignNotificationItemBase] ( docs/CampaignNotificationItemBase.md )
@@ -526,6 +535,7 @@ Class | Method | HTTP request | Description
526535- [ CampaignTemplateCouponReservationSettings] ( docs/CampaignTemplateCouponReservationSettings.md )
527536- [ CampaignTemplateParams] ( docs/CampaignTemplateParams.md )
528537- [ CampaignVersions] ( docs/CampaignVersions.md )
538+ - [ CardAddedDeductedPointsBalancesNotification] ( docs/CardAddedDeductedPointsBalancesNotification.md )
529539- [ CardAddedDeductedPointsBalancesNotificationPolicy] ( docs/CardAddedDeductedPointsBalancesNotificationPolicy.md )
530540- [ CardAddedDeductedPointsNotification] ( docs/CardAddedDeductedPointsNotification.md )
531541- [ CardAddedDeductedPointsNotificationPolicy] ( docs/CardAddedDeductedPointsNotificationPolicy.md )
@@ -555,8 +565,10 @@ Class | Method | HTTP request | Description
555565- [ CouponDeletionFilters] ( docs/CouponDeletionFilters.md )
556566- [ CouponDeletionJob] ( docs/CouponDeletionJob.md )
557567- [ CouponEntity] ( docs/CouponEntity.md )
568+ - [ CouponFailureSummary] ( docs/CouponFailureSummary.md )
558569- [ CouponLimitConfigs] ( docs/CouponLimitConfigs.md )
559570- [ CouponRejectionReason] ( docs/CouponRejectionReason.md )
571+ - [ CouponRejections] ( docs/CouponRejections.md )
560572- [ CouponReservations] ( docs/CouponReservations.md )
561573- [ CouponSearch] ( docs/CouponSearch.md )
562574- [ CouponValue] ( docs/CouponValue.md )
@@ -586,6 +598,7 @@ Class | Method | HTTP request | Description
586598- [ DeductLoyaltyPoints] ( docs/DeductLoyaltyPoints.md )
587599- [ DeductLoyaltyPointsEffectProps] ( docs/DeductLoyaltyPointsEffectProps.md )
588600- [ DeleteCouponsData] ( docs/DeleteCouponsData.md )
601+ - [ DeleteLoyaltyTransactionsRequest] ( docs/DeleteLoyaltyTransactionsRequest.md )
589602- [ DeleteUserRequest] ( docs/DeleteUserRequest.md )
590603- [ Effect] ( docs/Effect.md )
591604- [ EffectEntity] ( docs/EffectEntity.md )
@@ -602,6 +615,7 @@ Class | Method | HTTP request | Description
602615- [ Event] ( docs/Event.md )
603616- [ EventType] ( docs/EventType.md )
604617- [ EventV2] ( docs/EventV2.md )
618+ - [ EventV3] ( docs/EventV3.md )
605619- [ ExpiringCardPointsData] ( docs/ExpiringCardPointsData.md )
606620- [ ExpiringCardPointsNotification] ( docs/ExpiringCardPointsNotification.md )
607621- [ ExpiringCouponsData] ( docs/ExpiringCouponsData.md )
@@ -621,6 +635,7 @@ Class | Method | HTTP request | Description
621635- [ FunctionDef] ( docs/FunctionDef.md )
622636- [ GenerateAuditLogSummary] ( docs/GenerateAuditLogSummary.md )
623637- [ GenerateCampaignDescription] ( docs/GenerateCampaignDescription.md )
638+ - [ GenerateCampaignSummary] ( docs/GenerateCampaignSummary.md )
624639- [ GenerateCampaignTags] ( docs/GenerateCampaignTags.md )
625640- [ GenerateCouponFailureDetailedSummary] ( docs/GenerateCouponFailureDetailedSummary.md )
626641- [ GenerateCouponFailureSummary] ( docs/GenerateCouponFailureSummary.md )
@@ -694,15 +709,17 @@ Class | Method | HTTP request | Description
694709- [ IntegrationEntity] ( docs/IntegrationEntity.md )
695710- [ IntegrationEvent] ( docs/IntegrationEvent.md )
696711- [ IntegrationEventV2Request] ( docs/IntegrationEventV2Request.md )
712+ - [ IntegrationEventV3Request] ( docs/IntegrationEventV3Request.md )
713+ - [ IntegrationEventV3Response] ( docs/IntegrationEventV3Response.md )
697714- [ IntegrationProfileEntity] ( docs/IntegrationProfileEntity.md )
715+ - [ IntegrationProfileEntityV3] ( docs/IntegrationProfileEntityV3.md )
698716- [ IntegrationRequest] ( docs/IntegrationRequest.md )
699717- [ IntegrationState] ( docs/IntegrationState.md )
700718- [ IntegrationStateV2] ( docs/IntegrationStateV2.md )
701719- [ IntegrationStoreEntity] ( docs/IntegrationStoreEntity.md )
702720- [ InventoryCoupon] ( docs/InventoryCoupon.md )
703721- [ InventoryReferral] ( docs/InventoryReferral.md )
704722- [ ItemAttribute] ( docs/ItemAttribute.md )
705- - [ JWT] ( docs/JWT.md )
706723- [ LabelTargetAudience] ( docs/LabelTargetAudience.md )
707724- [ LabelTargetNone] ( docs/LabelTargetNone.md )
708725- [ LedgerEntry] ( docs/LedgerEntry.md )
@@ -850,6 +867,15 @@ Class | Method | HTTP request | Description
850867- [ PriceType] ( docs/PriceType.md )
851868- [ PriceTypeReferenceDetail] ( docs/PriceTypeReferenceDetail.md )
852869- [ PriceTypeReferences] ( docs/PriceTypeReferences.md )
870+ - [ PrismaticConfig] ( docs/PrismaticConfig.md )
871+ - [ PrismaticEventPayloadCouponBasedNotifications] ( docs/PrismaticEventPayloadCouponBasedNotifications.md )
872+ - [ PrismaticEventPayloadCouponBasedNotificationsLimits] ( docs/PrismaticEventPayloadCouponBasedNotificationsLimits.md )
873+ - [ PrismaticEventPayloadLoyaltyProfileBasedNotifications] ( docs/PrismaticEventPayloadLoyaltyProfileBasedNotifications.md )
874+ - [ PrismaticEventPayloadLoyaltyProfileBasedNotificationsAction] ( docs/PrismaticEventPayloadLoyaltyProfileBasedNotificationsAction.md )
875+ - [ PrismaticFlow] ( docs/PrismaticFlow.md )
876+ - [ PrismaticFlowConfig] ( docs/PrismaticFlowConfig.md )
877+ - [ PrismaticFlowWithConfig] ( docs/PrismaticFlowWithConfig.md )
878+ - [ PrismaticPaginatedEventPayload] ( docs/PrismaticPaginatedEventPayload.md )
853879- [ Product] ( docs/Product.md )
854880- [ ProductSearchMatch] ( docs/ProductSearchMatch.md )
855881- [ ProductUnitAnalytics] ( docs/ProductUnitAnalytics.md )
@@ -883,6 +909,7 @@ Class | Method | HTTP request | Description
883909- [ RoleV2Base] ( docs/RoleV2Base.md )
884910- [ RoleV2PermissionSet] ( docs/RoleV2PermissionSet.md )
885911- [ RoleV2Permissions] ( docs/RoleV2Permissions.md )
912+ - [ RoleV2Readonly] ( docs/RoleV2Readonly.md )
886913- [ RoleV2RolesGroup] ( docs/RoleV2RolesGroup.md )
887914- [ RollbackAddedLoyaltyPointsEffectProps] ( docs/RollbackAddedLoyaltyPointsEffectProps.md )
888915- [ RollbackCouponEffectProps] ( docs/RollbackCouponEffectProps.md )
@@ -921,6 +948,7 @@ Class | Method | HTTP request | Description
921948- [ ScimUsersListResponse] ( docs/ScimUsersListResponse.md )
922949- [ SecondaryDeployment] ( docs/SecondaryDeployment.md )
923950- [ Session] ( docs/Session.md )
951+ - [ SessionCoupons] ( docs/SessionCoupons.md )
924952- [ SetDiscountEffectProps] ( docs/SetDiscountEffectProps.md )
925953- [ SetDiscountPerAdditionalCostEffectProps] ( docs/SetDiscountPerAdditionalCostEffectProps.md )
926954- [ SetDiscountPerAdditionalCostPerItemEffectProps] ( docs/SetDiscountPerAdditionalCostPerItemEffectProps.md )
@@ -938,6 +966,7 @@ Class | Method | HTTP request | Description
938966- [ StrikethroughEffect] ( docs/StrikethroughEffect.md )
939967- [ StrikethroughLabelingNotification] ( docs/StrikethroughLabelingNotification.md )
940968- [ StrikethroughSetDiscountPerItemEffectProps] ( docs/StrikethroughSetDiscountPerItemEffectProps.md )
969+ - [ StrikethroughSetDiscountPerItemMemberEffectProps] ( docs/StrikethroughSetDiscountPerItemMemberEffectProps.md )
941970- [ StrikethroughTrigger] ( docs/StrikethroughTrigger.md )
942971- [ SummaryCampaignStoreBudget] ( docs/SummaryCampaignStoreBudget.md )
943972- [ TalangAttribute] ( docs/TalangAttribute.md )
0 commit comments