Skip to content

Commit 905387d

Browse files
author
Talon-One SDK Generator
committed
update to 14.3.0
1 parent b5e8aac commit 905387d

File tree

259 files changed

+18396
-4228
lines changed

Some content is hidden

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

259 files changed

+18396
-4228
lines changed

README.md

Lines changed: 34 additions & 14 deletions
Large diffs are not rendered by default.

api/openapi.yaml

Lines changed: 5086 additions & 2345 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'eclipse'
33
apply plugin: 'java'
44

55
group = 'one.talon'
6-
version = '14.2.0'
6+
version = '14.3.0'
77

88
buildscript {
99
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "one.talon",
44
name := "talon-one-client",
5-
version := "14.2.0",
5+
version := "14.3.0",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/Attribute.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ CARTITEM | "CartItem"
3838
COUPON | "Coupon"
3939
EVENT | "Event"
4040
GIVEAWAY | "Giveaway"
41+
LOYALTYCARD | "LoyaltyCard"
4142
REFERRAL | "Referral"
4243
STORE | "Store"
4344

docs/BestPriorPrice.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66

77
Name | Type | Description | Notes
88
------------ | ------------- | ------------- | -------------
9+
**id** | **Long** | The ID of the historical price. |
910
**sku** | **String** | sku |
10-
**observedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date and time when the best price was observed. |
11+
**observedAt** | [**OffsetDateTime**](OffsetDateTime.md) | The date and time when the price was observed. |
1112
**contextId** | **String** | The context ID of the context active at the time of observation. |
1213
**price** | [**BigDecimal**](BigDecimal.md) | Price of the item. |
1314
**metadata** | [**BestPriorPriceMetadata**](BestPriorPriceMetadata.md) | |

docs/BestPriorPriceRequest.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,19 @@ Name | Type | Description | Notes
99
**skus** | **List<String>** | List of product SKUs to check when determining the best prior price. |
1010
**timeframeEndDate** | [**OffsetDateTime**](OffsetDateTime.md) | The end date and time that defines the latest time for retrieving historical SKU prices. |
1111
**timeframe** | **String** | The number of days prior to the timeframeEndDate. Only prices within this look back period are considered for the best prior price evaluation. |
12-
**strictEndDate** | **Boolean** | Indicates whether the timeframe includes the start of the current sale. - When `false`, the timeframe includes the start date of the current sale. - When `true`, the timeframe striclty uses the number of days specified in `timeframe`. |
12+
**strictEndDate** | **Boolean** | This property is **deprecated**. Use `timeframeEndDateType` instead. Indicates whether the timeframe includes the start of the current sale. - When `false`, the timeframe includes the start date of the current sale. - When `true`, the timeframe strictly uses the number of days specified in `timeframe`. |
13+
**timeframeEndDateType** | [**TimeframeEndDateTypeEnum**](#TimeframeEndDateTypeEnum) | Sets the timeframe for retrieving historical pricing data. Can be one of the following values: - `strict`: The timeframe ends at the `timeframeEndDate` value. - `price`: The timeframe ends at the start of the current `contextId` with the current price value. Identical price records are merged. If there is no `contextId` for the most recent price, the most recent timestamp for the price is used. - `sale`: The timeframe ends at the start of current `contextId` and takes the prices prior to the start of the `contextId` into account. | [optional]
1314
**target** | [**BestPriorTarget**](BestPriorTarget.md) | | [optional]
1415

1516

1617

18+
## Enum: TimeframeEndDateTypeEnum
19+
20+
Name | Value
21+
---- | -----
22+
STRICT | "strict"
23+
PRICE | "price"
24+
SALE | "sale"
25+
26+
27+

docs/Blueprint.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
3+
# Blueprint
4+
5+
## Properties
6+
7+
Name | Type | Description | Notes
8+
------------ | ------------- | ------------- | -------------
9+
**id** | **Long** | The internal ID of this blueprint. |
10+
**accountId** | **Long** | The ID of the account that owns this blueprint. |
11+
**applicationId** | **Long** | The ID of the Application that owns this blueprint. |
12+
**title** | **String** | A short description of the blueprint. |
13+
**description** | **String** | A longer, more detailed description of the blueprint. | [optional]
14+
**category** | [**CategoryEnum**](#CategoryEnum) | Category used to group blueprints. |
15+
**source** | [**SourceEnum**](#SourceEnum) | Indicates whether the blueprint is custom or shipped by Talon.One. |
16+
**rules** | [**List<CatalogRule>**](CatalogRule.md) | Array of rule templates in this blueprint. Rules only contain title (no description, as description is at the blueprint level). |
17+
**cartItemFilters** | [**List<CartItemFilterTemplate>**](CartItemFilterTemplate.md) | Array of cart item filter templates in this blueprint. Cart item filters only contain name (no description, as description is at the blueprint level). |
18+
**created** | [**OffsetDateTime**](OffsetDateTime.md) | Timestamp when the blueprint was created. |
19+
**createdBy** | **Long** | ID of the user who created the blueprint. |
20+
**modified** | [**OffsetDateTime**](OffsetDateTime.md) | Timestamp when the blueprint was last updated. | [optional]
21+
**modifiedBy** | **Long** | ID of the user who last updated the blueprint. | [optional]
22+
23+
24+
25+
## Enum: CategoryEnum
26+
27+
Name | Value
28+
---- | -----
29+
PROMOTIONS | "promotions"
30+
PRICING | "pricing"
31+
LOYALTY | "loyalty"
32+
CUSTOM | "custom"
33+
34+
35+
36+
## Enum: SourceEnum
37+
38+
Name | Value
39+
---- | -----
40+
CUSTOM | "custom"
41+
DEFAULT | "default"
42+
43+
44+

docs/CampaignCollectionEditedNotificationItem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**event** | **String** | The type of the event. Can be one of the following: ['campaign_state_changed', 'campaign_ruleset_changed', 'campaign_edited', 'campaign_created', 'campaign_deleted'] |
1111
**campaign** | [**Campaign**](Campaign.md) | |
1212
**ruleset** | [**Ruleset**](Ruleset.md) | | [optional]
13+
**placeholders** | [**List<PlaceholderDetails>**](PlaceholderDetails.md) | The current details of the [placeholders](https://docs.talon.one/docs/product/campaigns/templates/create-templates#use-placeholders) in the campaign. | [optional]
1314
**collection** | [**CollectionWithoutPayload**](CollectionWithoutPayload.md) | |
1415

1516

docs/CampaignCreatedNotificationItem.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**event** | **String** | The type of the event. Can be one of the following: ['campaign_state_changed', 'campaign_ruleset_changed', 'campaign_edited', 'campaign_created', 'campaign_deleted'] |
1111
**campaign** | [**Campaign**](Campaign.md) | |
1212
**ruleset** | [**Ruleset**](Ruleset.md) | | [optional]
13+
**placeholders** | [**List<PlaceholderDetails>**](PlaceholderDetails.md) | The current details of the [placeholders](https://docs.talon.one/docs/product/campaigns/templates/create-templates#use-placeholders) in the campaign. | [optional]
1314
**evaluationPosition** | [**CampaignEvaluationPosition**](CampaignEvaluationPosition.md) | |
1415

1516

0 commit comments

Comments
 (0)