Skip to content

Commit

Permalink
update with new code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
altJake authored and kkupreeva committed Jun 5, 2024
1 parent addcb02 commit b29ed97
Show file tree
Hide file tree
Showing 50 changed files with 1,956 additions and 648 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,5 @@ $RECYCLE.BIN/

# Visual Studio 2014 CTP
**/*.sln.ide

.idea
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ Class | Method | HTTP request | Description
*IntegrationApi* | [**UpdateCustomerProfileV2**](docs/IntegrationApi.md#updatecustomerprofilev2) | **PUT** /v2/customer_profiles/{integrationId} | Update customer profile
*IntegrationApi* | [**UpdateCustomerProfilesV2**](docs/IntegrationApi.md#updatecustomerprofilesv2) | **PUT** /v2/customer_profiles | Update multiple customer profiles
*IntegrationApi* | [**UpdateCustomerSessionV2**](docs/IntegrationApi.md#updatecustomersessionv2) | **PUT** /v2/customer_sessions/{customerSessionId} | Update customer session
*ManagementApi* | [**ActivateUserByEmail**](docs/ManagementApi.md#activateuserbyemail) | **POST** /v1/users/activate | Activate user by email address
*ManagementApi* | [**AddLoyaltyCardPoints**](docs/ManagementApi.md#addloyaltycardpoints) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/cards/{loyaltyCardId}/add_points | Add points to card
*ManagementApi* | [**AddLoyaltyPoints**](docs/ManagementApi.md#addloyaltypoints) | **PUT** /v1/loyalty_programs/{loyaltyProgramId}/profile/{integrationId}/add_points | Add points to customer profile
*ManagementApi* | [**CopyCampaignToApplications**](docs/ManagementApi.md#copycampaigntoapplications) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/copy | Copy the campaign into the specified Application
Expand Down Expand Up @@ -304,7 +305,6 @@ Class | Method | HTTP request | Description
*ManagementApi* | [**GetAdditionalCost**](docs/ManagementApi.md#getadditionalcost) | **GET** /v1/additional_costs/{additionalCostId} | Get additional cost
*ManagementApi* | [**GetAdditionalCosts**](docs/ManagementApi.md#getadditionalcosts) | **GET** /v1/additional_costs | List additional costs
*ManagementApi* | [**GetAllAccessLogs**](docs/ManagementApi.md#getallaccesslogs) | **GET** /v1/access_logs | List access logs
*ManagementApi* | [**GetAllRoles**](docs/ManagementApi.md#getallroles) | **GET** /v1/roles | List roles
*ManagementApi* | [**GetApplication**](docs/ManagementApi.md#getapplication) | **GET** /v1/applications/{applicationId} | Get Application
*ManagementApi* | [**GetApplicationApiHealth**](docs/ManagementApi.md#getapplicationapihealth) | **GET** /v1/applications/{applicationId}/health_report | Get Application health
*ManagementApi* | [**GetApplicationCustomer**](docs/ManagementApi.md#getapplicationcustomer) | **GET** /v1/applications/{applicationId}/customers/{customerId} | Get application's customer
Expand Down Expand Up @@ -350,7 +350,7 @@ Class | Method | HTTP request | Description
*ManagementApi* | [**GetLoyaltyPrograms**](docs/ManagementApi.md#getloyaltyprograms) | **GET** /v1/loyalty_programs | List loyalty programs
*ManagementApi* | [**GetLoyaltyStatistics**](docs/ManagementApi.md#getloyaltystatistics) | **GET** /v1/loyalty_programs/{loyaltyProgramId}/statistics | Get loyalty program statistics
*ManagementApi* | [**GetReferralsWithoutTotalCount**](docs/ManagementApi.md#getreferralswithouttotalcount) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/referrals/no_total | List referrals
*ManagementApi* | [**GetRole**](docs/ManagementApi.md#getrole) | **GET** /v1/roles/{roleId} | Get role
*ManagementApi* | [**GetRoleV2**](docs/ManagementApi.md#getrolev2) | **GET** /v2/roles/{roleId} | Get role
*ManagementApi* | [**GetRuleset**](docs/ManagementApi.md#getruleset) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets/{rulesetId} | Get ruleset
*ManagementApi* | [**GetRulesets**](docs/ManagementApi.md#getrulesets) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/rulesets | List campaign rulesets
*ManagementApi* | [**GetStore**](docs/ManagementApi.md#getstore) | **GET** /v1/applications/{applicationId}/stores/{storeId} | Get store
Expand All @@ -370,8 +370,10 @@ Class | Method | HTTP request | Description
*ManagementApi* | [**ImportLoyaltyPoints**](docs/ManagementApi.md#importloyaltypoints) | **POST** /v1/loyalty_programs/{loyaltyProgramId}/import_points | Import loyalty points
*ManagementApi* | [**ImportPoolGiveaways**](docs/ManagementApi.md#importpoolgiveaways) | **POST** /v1/giveaways/pools/{poolId}/import | Import giveaway codes into a giveaway pool
*ManagementApi* | [**ImportReferrals**](docs/ManagementApi.md#importreferrals) | **POST** /v1/applications/{applicationId}/campaigns/{campaignId}/import_referrals | Import referrals
*ManagementApi* | [**InviteUserExternal**](docs/ManagementApi.md#inviteuserexternal) | **POST** /v1/users/invite | Invite user from identity provider
*ManagementApi* | [**ListAccountCollections**](docs/ManagementApi.md#listaccountcollections) | **GET** /v1/collections | List collections in account
*ManagementApi* | [**ListAchievements**](docs/ManagementApi.md#listachievements) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/achievements | List achievements
*ManagementApi* | [**ListAllRolesV2**](docs/ManagementApi.md#listallrolesv2) | **GET** /v2/roles | List roles
*ManagementApi* | [**ListCatalogItems**](docs/ManagementApi.md#listcatalogitems) | **GET** /v1/catalogs/{catalogId}/items | List items in a catalog
*ManagementApi* | [**ListCollections**](docs/ManagementApi.md#listcollections) | **GET** /v1/applications/{applicationId}/campaigns/{campaignId}/collections | List collections in campaign
*ManagementApi* | [**ListCollectionsInApplication**](docs/ManagementApi.md#listcollectionsinapplication) | **GET** /v1/applications/{applicationId}/collections | List collections in Application
Expand Down Expand Up @@ -421,6 +423,7 @@ Class | Method | HTTP request | Description
- [Model.Achievement](docs/Achievement.md)
- [Model.AchievementAdditionalProperties](docs/AchievementAdditionalProperties.md)
- [Model.AchievementProgress](docs/AchievementProgress.md)
- [Model.ActivateUserRequest](docs/ActivateUserRequest.md)
- [Model.AddFreeItemEffectProps](docs/AddFreeItemEffectProps.md)
- [Model.AddItemCatalogAction](docs/AddItemCatalogAction.md)
- [Model.AddLoyaltyPoints](docs/AddLoyaltyPoints.md)
Expand Down Expand Up @@ -660,6 +663,7 @@ Class | Method | HTTP request | Description
- [Model.LoyaltyBalance](docs/LoyaltyBalance.md)
- [Model.LoyaltyBalances](docs/LoyaltyBalances.md)
- [Model.LoyaltyCard](docs/LoyaltyCard.md)
- [Model.LoyaltyCardBalances](docs/LoyaltyCardBalances.md)
- [Model.LoyaltyCardProfileRegistration](docs/LoyaltyCardProfileRegistration.md)
- [Model.LoyaltyCardRegistration](docs/LoyaltyCardRegistration.md)
- [Model.LoyaltyDashboardData](docs/LoyaltyDashboardData.md)
Expand Down Expand Up @@ -718,6 +722,7 @@ Class | Method | HTTP request | Description
- [Model.NewCustomerSessionV2](docs/NewCustomerSessionV2.md)
- [Model.NewEvent](docs/NewEvent.md)
- [Model.NewEventType](docs/NewEventType.md)
- [Model.NewExternalInvitation](docs/NewExternalInvitation.md)
- [Model.NewGiveawaysPool](docs/NewGiveawaysPool.md)
- [Model.NewInternalAudience](docs/NewInternalAudience.md)
- [Model.NewInvitation](docs/NewInvitation.md)
Expand Down
9 changes: 9 additions & 0 deletions docs/ActivateUserRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# TalonOne.Model.ActivateUserRequest
## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Email** | **string** | The email address associated with the user profile. |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

4 changes: 2 additions & 2 deletions docs/Coupon.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ Name | Type | Description | Notes
**ReferralId** | **int** | The integration ID of the referring customer (if any) for whom this coupon was created as an effect. | [optional]
**RecipientIntegrationId** | **string** | The Integration ID of the customer that is allowed to redeem this coupon. | [optional]
**ImportId** | **int** | The ID of the Import which created this coupon. | [optional]
**Reservation** | **bool** | Defines the type of reservation: - `true`: The reservation is a soft reservation. Any customer can use the coupon. This is done via the [Create coupon reservation](https://docs.talon.one/integration-api#operation/createCouponReservation) endpoint. - `false`: The reservation is a hard reservation. Only the associated customer (`recipientIntegrationId`) can use the coupon. This is done via the Campaign Manager when you create a coupon for a given `recipientIntegrationId`, the [Create coupons](https://docs.talon.one/management-api#operation/createCoupons) endpoint or [Create coupons for multiple recipients](https://docs.talon.one/management-api#operation/createCouponsForMultipleRecipients) endpoint. | [optional] [default to true]
**Reservation** | **bool** | Defines the reservation type: - `true`: The coupon can be reserved for multiple customers. - `false`: The coupon can be reserved only for one customer. It is a personal code. | [optional] [default to true]
**BatchId** | **string** | The id of the batch the coupon belongs to. | [optional]
**IsReservationMandatory** | **bool** | Whether the reservation effect actually created a new reservation. | [optional] [default to false]
**IsReservationMandatory** | **bool** | An indication of whether the code can be redeemed only if it has been reserved first. | [optional] [default to false]
**ImplicitlyReserved** | **bool** | An indication of whether the coupon is implicitly reserved for all customers. | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
2 changes: 1 addition & 1 deletion docs/CustomerInventory.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
**Profile** | [**CustomerProfile**](CustomerProfile.md) | | [optional]
**Loyalty** | [**Loyalty**](Loyalty.md) | | [optional]
**Referrals** | [**List<InventoryReferral>**](InventoryReferral.md) | | [optional]
**Coupons** | [**List<InventoryCoupon>**](InventoryCoupon.md) | The coupons reserved by this profile. This array includes hard and soft reservations. See each coupon's `reservation` property. | [optional]
**Coupons** | [**List<InventoryCoupon>**](InventoryCoupon.md) | The coupons reserved by this profile. This array includes hard and soft reservations. | [optional]
**Giveaways** | [**List<Giveaway>**](Giveaway.md) | | [optional]
**Achievements** | [**List<AchievementProgress>**](AchievementProgress.md) | | [optional]

Expand Down
2 changes: 1 addition & 1 deletion docs/InlineResponse20044.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**TotalResultSize** | **int** | |
**Data** | [**List<Role>**](Role.md) | |
**Data** | [**List<RoleV2>**](RoleV2.md) | |

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Loading

0 comments on commit b29ed97

Please sign in to comment.