Skip to content

Commit 09c136f

Browse files
committed
internal release 10.1.0
1 parent da13b0f commit 09c136f

File tree

380 files changed

+33372
-24328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

380 files changed

+33372
-24328
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
7979
echo "maven install";
8080
mvn clean install;
81-
export CLASSPATH=.:./target/lib/gson-2.8.9.jar:./target/talon-one-client-10.0.0.jar:./target/lib/okio-1.17.2.jar:./target/lib/okhttp-3.14.7.jar:./target/lib/threetenbp-1.4.3.jar:./target/lib/gson-fire-1.8.4.jar;
81+
export CLASSPATH=.:./src/main/java:./target/lib/gson-2.8.9.jar:./target/talon-one-client-10.1.0.jar:./target/lib/okio-1.17.2.jar:./target/lib/okhttp-3.14.7.jar:./target/lib/threetenbp-1.4.3.jar:./target/lib/gson-fire-1.8.4.jar;
8282
8383
echo "java compile";
8484
javac -d . Example.java;

README.md

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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>10.0.0</version>
38+
<version>10.1.0</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```
@@ -45,7 +45,7 @@ Add this dependency to your project's POM:
4545
Add this dependency to your project's build file:
4646

4747
```groovy
48-
compile "one.talon:talon-one-client:10.0.0"
48+
compile "one.talon:talon-one-client:10.1.0"
4949
```
5050

5151
### Others
@@ -200,6 +200,8 @@ Class | Method | HTTP request | Description
200200
*IntegrationApi* | [**deleteCouponReservation**](docs/IntegrationApi.md#deleteCouponReservation) | **DELETE** /v1/coupon_reservations/{couponValue} | Delete coupon reservations
201201
*IntegrationApi* | [**deleteCustomerData**](docs/IntegrationApi.md#deleteCustomerData) | **DELETE** /v1/customer_data/{integrationId} | Delete customer&#39;s personal data
202202
*IntegrationApi* | [**generateLoyaltyCard**](docs/IntegrationApi.md#generateLoyaltyCard) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/cards | Generate loyalty card
203+
*IntegrationApi* | [**getCustomerAchievementHistory**](docs/IntegrationApi.md#getCustomerAchievementHistory) | **GET** /v1/customer_profiles/{integrationId}/achievements/{achievementId} | List customer&#39;s achievement history
204+
*IntegrationApi* | [**getCustomerAchievements**](docs/IntegrationApi.md#getCustomerAchievements) | **GET** /v1/customer_profiles/{integrationId}/achievements | List customer&#39;s available achievements
203205
*IntegrationApi* | [**getCustomerInventory**](docs/IntegrationApi.md#getCustomerInventory) | **GET** /v1/customer_profiles/{integrationId}/inventory | List customer data
204206
*IntegrationApi* | [**getCustomerSession**](docs/IntegrationApi.md#getCustomerSession) | **GET** /v2/customer_sessions/{customerSessionId} | Get customer session
205207
*IntegrationApi* | [**getLoyaltyBalances**](docs/IntegrationApi.md#getLoyaltyBalances) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/balances | Get customer&#39;s loyalty balances
@@ -313,6 +315,7 @@ Class | Method | HTTP request | Description
313315
*ManagementApi* | [**getCustomerProfileAchievementProgress**](docs/ManagementApi.md#getCustomerProfileAchievementProgress) | **GET** /v1/applications/{applicationId}/achievement_progress/{integrationId} | List customer achievements
314316
*ManagementApi* | [**getCustomerProfiles**](docs/ManagementApi.md#getCustomerProfiles) | **GET** /v1/customers/no_total | List customer profiles
315317
*ManagementApi* | [**getCustomersByAttributes**](docs/ManagementApi.md#getCustomersByAttributes) | **POST** /v1/customer_search/no_total | List customer profiles matching the given attributes
318+
*ManagementApi* | [**getDashboardStatistics**](docs/ManagementApi.md#getDashboardStatistics) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/dashboard | Get statistics for loyalty dashboard
316319
*ManagementApi* | [**getEventTypes**](docs/ManagementApi.md#getEventTypes) | **GET** /v1/event_types | List event types
317320
*ManagementApi* | [**getExports**](docs/ManagementApi.md#getExports) | **GET** /v1/exports | Get exports
318321
*ManagementApi* | [**getLoyaltyCard**](docs/ManagementApi.md#getLoyaltyCard) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId} | Get loyalty card
@@ -323,6 +326,7 @@ Class | Method | HTTP request | Description
323326
*ManagementApi* | [**getLoyaltyProgramTransactions**](docs/ManagementApi.md#getLoyaltyProgramTransactions) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/transactions | List loyalty program transactions
324327
*ManagementApi* | [**getLoyaltyPrograms**](docs/ManagementApi.md#getLoyaltyPrograms) | **GET** /v1/loyalty_programs | List loyalty programs
325328
*ManagementApi* | [**getLoyaltyStatistics**](docs/ManagementApi.md#getLoyaltyStatistics) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics
329+
*ManagementApi* | [**getMessageLogs**](docs/ManagementApi.md#getMessageLogs) | **GET** /v1/message_logs | List message log entries
326330
*ManagementApi* | [**getReferralsWithoutTotalCount**](docs/ManagementApi.md#getReferralsWithoutTotalCount) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/no_total | List referrals
327331
*ManagementApi* | [**getRoleV2**](docs/ManagementApi.md#getRoleV2) | **GET** /v2/roles/{roleId} | Get role
328332
*ManagementApi* | [**getRuleset**](docs/ManagementApi.md#getRuleset) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets/{rulesetId} | Get ruleset
@@ -353,11 +357,7 @@ Class | Method | HTTP request | Description
353357
*ManagementApi* | [**listCollections**](docs/ManagementApi.md#listCollections) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections in campaign
354358
*ManagementApi* | [**listCollectionsInApplication**](docs/ManagementApi.md#listCollectionsInApplication) | **GET** /v1/applications/{applicationId}/collections | List collections in Application
355359
*ManagementApi* | [**listStores**](docs/ManagementApi.md#listStores) | **GET** /v1/applications/{applicationId}/stores | List stores
356-
*ManagementApi* | [**notificationActivation**](docs/ManagementApi.md#notificationActivation) | **PUT** /v1/notifications/{notificationId}/activation | Activate or deactivate notification
357360
*ManagementApi* | [**oktaEventHandlerChallenge**](docs/ManagementApi.md#oktaEventHandlerChallenge) | **GET** /v1/provisioning/okta | Validate Okta API ownership
358-
*ManagementApi* | [**postAddedDeductedPointsNotification**](docs/ManagementApi.md#postAddedDeductedPointsNotification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/added_deducted_points | Create notification about added or deducted loyalty points
359-
*ManagementApi* | [**postCatalogsStrikethroughNotification**](docs/ManagementApi.md#postCatalogsStrikethroughNotification) | **POST** /v1/applications/{applicationId}/catalogs/notifications/strikethrough | Create strikethrough notification
360-
*ManagementApi* | [**postPendingPointsNotification**](docs/ManagementApi.md#postPendingPointsNotification) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/notifications/pending_points | Create notification about pending loyalty points
361361
*ManagementApi* | [**removeLoyaltyPoints**](docs/ManagementApi.md#removeLoyaltyPoints) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/deduct_points | Deduct points from customer profile
362362
*ManagementApi* | [**resetPassword**](docs/ManagementApi.md#resetPassword) | **POST** /v1/reset_password | Reset password
363363
*ManagementApi* | [**scimCreateUser**](docs/ManagementApi.md#scimCreateUser) | **POST** /v1/provisioning/scim/Users | Create SCIM user
@@ -405,7 +405,10 @@ Class | Method | HTTP request | Description
405405
- [AccountLimits](docs/AccountLimits.md)
406406
- [Achievement](docs/Achievement.md)
407407
- [AchievementAdditionalProperties](docs/AchievementAdditionalProperties.md)
408+
- [AchievementBase](docs/AchievementBase.md)
408409
- [AchievementProgress](docs/AchievementProgress.md)
410+
- [AchievementProgressWithDefinition](docs/AchievementProgressWithDefinition.md)
411+
- [AchievementStatusEntry](docs/AchievementStatusEntry.md)
409412
- [AddFreeItemEffectProps](docs/AddFreeItemEffectProps.md)
410413
- [AddItemCatalogAction](docs/AddItemCatalogAction.md)
411414
- [AddLoyaltyPoints](docs/AddLoyaltyPoints.md)
@@ -419,13 +422,14 @@ Class | Method | HTTP request | Description
419422
- [AnalyticsDataPointWithTrendAndInfluencedRate](docs/AnalyticsDataPointWithTrendAndInfluencedRate.md)
420423
- [AnalyticsDataPointWithTrendAndUplift](docs/AnalyticsDataPointWithTrendAndUplift.md)
421424
- [AnalyticsProduct](docs/AnalyticsProduct.md)
422-
- [AnalyticsProductSKU](docs/AnalyticsProductSKU.md)
425+
- [AnalyticsSKU](docs/AnalyticsSKU.md)
423426
- [Application](docs/Application.md)
424427
- [ApplicationAPIKey](docs/ApplicationAPIKey.md)
425428
- [ApplicationAnalyticsDataPoint](docs/ApplicationAnalyticsDataPoint.md)
426429
- [ApplicationApiHealth](docs/ApplicationApiHealth.md)
427430
- [ApplicationCIF](docs/ApplicationCIF.md)
428431
- [ApplicationCIFExpression](docs/ApplicationCIFExpression.md)
432+
- [ApplicationCIFReferences](docs/ApplicationCIFReferences.md)
429433
- [ApplicationCampaignAnalytics](docs/ApplicationCampaignAnalytics.md)
430434
- [ApplicationCampaignStats](docs/ApplicationCampaignStats.md)
431435
- [ApplicationCustomer](docs/ApplicationCustomer.md)
@@ -469,6 +473,7 @@ Class | Method | HTTP request | Description
469473
- [CampaignCopy](docs/CampaignCopy.md)
470474
- [CampaignCreatedNotification](docs/CampaignCreatedNotification.md)
471475
- [CampaignDeletedNotification](docs/CampaignDeletedNotification.md)
476+
- [CampaignDetail](docs/CampaignDetail.md)
472477
- [CampaignEditedNotification](docs/CampaignEditedNotification.md)
473478
- [CampaignEntity](docs/CampaignEntity.md)
474479
- [CampaignEvaluationGroup](docs/CampaignEvaluationGroup.md)
@@ -486,6 +491,7 @@ Class | Method | HTTP request | Description
486491
- [CampaignSetNode](docs/CampaignSetNode.md)
487492
- [CampaignStateChangedNotification](docs/CampaignStateChangedNotification.md)
488493
- [CampaignStoreBudget](docs/CampaignStoreBudget.md)
494+
- [CampaignStoreBudgetLimitConfig](docs/CampaignStoreBudgetLimitConfig.md)
489495
- [CampaignTemplate](docs/CampaignTemplate.md)
490496
- [CampaignTemplateCollection](docs/CampaignTemplateCollection.md)
491497
- [CampaignTemplateCouponReservationSettings](docs/CampaignTemplateCouponReservationSettings.md)
@@ -542,9 +548,9 @@ Class | Method | HTTP request | Description
542548
- [CustomerProfileUpdateV2Response](docs/CustomerProfileUpdateV2Response.md)
543549
- [CustomerSession](docs/CustomerSession.md)
544550
- [CustomerSessionV2](docs/CustomerSessionV2.md)
545-
- [DeactivateUserRequest](docs/DeactivateUserRequest.md)
546551
- [DeductLoyaltyPoints](docs/DeductLoyaltyPoints.md)
547552
- [DeductLoyaltyPointsEffectProps](docs/DeductLoyaltyPointsEffectProps.md)
553+
- [DeleteUserRequest](docs/DeleteUserRequest.md)
548554
- [Effect](docs/Effect.md)
549555
- [EffectEntity](docs/EffectEntity.md)
550556
- [EmailEntity](docs/EmailEntity.md)
@@ -578,6 +584,7 @@ Class | Method | HTTP request | Description
578584
- [GetIntegrationCouponRequest](docs/GetIntegrationCouponRequest.md)
579585
- [Giveaway](docs/Giveaway.md)
580586
- [GiveawaysPool](docs/GiveawaysPool.md)
587+
- [HiddenConditionsEffects](docs/HiddenConditionsEffects.md)
581588
- [IdentifiableEntity](docs/IdentifiableEntity.md)
582589
- [ImportEntity](docs/ImportEntity.md)
583590
- [IncreaseAchievementProgressEffectProps](docs/IncreaseAchievementProgressEffectProps.md)
@@ -623,6 +630,9 @@ Class | Method | HTTP request | Description
623630
- [InlineResponse20044](docs/InlineResponse20044.md)
624631
- [InlineResponse20045](docs/InlineResponse20045.md)
625632
- [InlineResponse20046](docs/InlineResponse20046.md)
633+
- [InlineResponse20047](docs/InlineResponse20047.md)
634+
- [InlineResponse20048](docs/InlineResponse20048.md)
635+
- [InlineResponse20049](docs/InlineResponse20049.md)
626636
- [InlineResponse2005](docs/InlineResponse2005.md)
627637
- [InlineResponse2006](docs/InlineResponse2006.md)
628638
- [InlineResponse2007](docs/InlineResponse2007.md)
@@ -667,6 +677,7 @@ Class | Method | HTTP request | Description
667677
- [LoyaltyDashboardPointsBreakdown](docs/LoyaltyDashboardPointsBreakdown.md)
668678
- [LoyaltyLedger](docs/LoyaltyLedger.md)
669679
- [LoyaltyLedgerEntry](docs/LoyaltyLedgerEntry.md)
680+
- [LoyaltyLedgerEntryFlags](docs/LoyaltyLedgerEntryFlags.md)
670681
- [LoyaltyLedgerTransactions](docs/LoyaltyLedgerTransactions.md)
671682
- [LoyaltyMembership](docs/LoyaltyMembership.md)
672683
- [LoyaltyProgram](docs/LoyaltyProgram.md)
@@ -682,6 +693,7 @@ Class | Method | HTTP request | Description
682693
- [MessageLogEntry](docs/MessageLogEntry.md)
683694
- [MessageLogRequest](docs/MessageLogRequest.md)
684695
- [MessageLogResponse](docs/MessageLogResponse.md)
696+
- [MessageTest](docs/MessageTest.md)
685697
- [Meta](docs/Meta.md)
686698
- [ModelImport](docs/ModelImport.md)
687699
- [ModelReturn](docs/ModelReturn.md)
@@ -734,8 +746,8 @@ Class | Method | HTTP request | Description
734746
- [NewLoyaltyProgram](docs/NewLoyaltyProgram.md)
735747
- [NewLoyaltyTier](docs/NewLoyaltyTier.md)
736748
- [NewManagementKey](docs/NewManagementKey.md)
749+
- [NewMessageTest](docs/NewMessageTest.md)
737750
- [NewMultipleAudiencesItem](docs/NewMultipleAudiencesItem.md)
738-
- [NewNotificationTest](docs/NewNotificationTest.md)
739751
- [NewNotificationWebhook](docs/NewNotificationWebhook.md)
740752
- [NewOutgoingIntegrationWebhook](docs/NewOutgoingIntegrationWebhook.md)
741753
- [NewPassword](docs/NewPassword.md)
@@ -756,7 +768,6 @@ Class | Method | HTTP request | Description
756768
- [Notification](docs/Notification.md)
757769
- [NotificationActivation](docs/NotificationActivation.md)
758770
- [NotificationListItem](docs/NotificationListItem.md)
759-
- [NotificationTest](docs/NotificationTest.md)
760771
- [OktaEvent](docs/OktaEvent.md)
761772
- [OktaEventPayload](docs/OktaEventPayload.md)
762773
- [OktaEventPayloadData](docs/OktaEventPayloadData.md)
@@ -778,8 +789,9 @@ Class | Method | HTTP request | Description
778789
- [Picklist](docs/Picklist.md)
779790
- [Product](docs/Product.md)
780791
- [ProductSearchMatch](docs/ProductSearchMatch.md)
781-
- [ProductSkuUnitAnalytics](docs/ProductSkuUnitAnalytics.md)
782792
- [ProductUnitAnalytics](docs/ProductUnitAnalytics.md)
793+
- [ProductUnitAnalyticsDataPoint](docs/ProductUnitAnalyticsDataPoint.md)
794+
- [ProductUnitAnalyticsTotals](docs/ProductUnitAnalyticsTotals.md)
783795
- [ProfileAudiencesChanges](docs/ProfileAudiencesChanges.md)
784796
- [ProjectedTier](docs/ProjectedTier.md)
785797
- [RedeemReferralEffectProps](docs/RedeemReferralEffectProps.md)
@@ -798,6 +810,7 @@ Class | Method | HTTP request | Description
798810
- [ReturnedCartItem](docs/ReturnedCartItem.md)
799811
- [Revision](docs/Revision.md)
800812
- [RevisionActivation](docs/RevisionActivation.md)
813+
- [RevisionActivationRequest](docs/RevisionActivationRequest.md)
801814
- [RevisionVersion](docs/RevisionVersion.md)
802815
- [Role](docs/Role.md)
803816
- [RoleAssign](docs/RoleAssign.md)
@@ -846,6 +859,8 @@ Class | Method | HTTP request | Description
846859
- [SetDiscountPerItemEffectProps](docs/SetDiscountPerItemEffectProps.md)
847860
- [ShowBundleMetadataEffectProps](docs/ShowBundleMetadataEffectProps.md)
848861
- [ShowNotificationEffectProps](docs/ShowNotificationEffectProps.md)
862+
- [SkuUnitAnalytics](docs/SkuUnitAnalytics.md)
863+
- [SkuUnitAnalyticsDataPoint](docs/SkuUnitAnalyticsDataPoint.md)
849864
- [SlotDef](docs/SlotDef.md)
850865
- [Store](docs/Store.md)
851866
- [StrikethroughChangedItem](docs/StrikethroughChangedItem.md)

0 commit comments

Comments
 (0)