stigg-api-client 2.206.0__tar.gz → 2.207.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.206.0
3
+ Version: 2.207.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "2.206.0"
3
+ version = "2.207.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1577,9 +1577,10 @@ class DateFieldComparisonBetween(sgqlc.types.Input):
1577
1577
 
1578
1578
  class DefaultTrialConfigInputDTO(sgqlc.types.Input):
1579
1579
  __schema__ = schema
1580
- __field_names__ = ('budget', 'duration', 'units')
1580
+ __field_names__ = ('budget', 'duration', 'trial_end_behavior', 'units')
1581
1581
  budget = sgqlc.types.Field(BudgetConfigurationInput, graphql_name='budget')
1582
1582
  duration = sgqlc.types.Field(Float, graphql_name='duration')
1583
+ trial_end_behavior = sgqlc.types.Field(TrialEndBehavior, graphql_name='trialEndBehavior')
1583
1584
  units = sgqlc.types.Field(TrialPeriodUnits, graphql_name='units')
1584
1585
 
1585
1586
 
@@ -5527,9 +5528,10 @@ class DateRange(sgqlc.types.Type):
5527
5528
 
5528
5529
  class DefaultTrialConfig(sgqlc.types.Type):
5529
5530
  __schema__ = schema
5530
- __field_names__ = ('budget', 'duration', 'units')
5531
+ __field_names__ = ('budget', 'duration', 'trial_end_behavior', 'units')
5531
5532
  budget = sgqlc.types.Field(BudgetConfiguration, graphql_name='budget')
5532
5533
  duration = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='duration')
5534
+ trial_end_behavior = sgqlc.types.Field(TrialEndBehavior, graphql_name='trialEndBehavior')
5533
5535
  units = sgqlc.types.Field(sgqlc.types.non_null(TrialPeriodUnits), graphql_name='units')
5534
5536
 
5535
5537