stigg-api-client 2.293.0__tar.gz → 2.294.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.

Potentially problematic release.


This version of stigg-api-client might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.293.0
3
+ Version: 2.294.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.293.0"
3
+ version = "2.294.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1701,8 +1701,9 @@ class DoesFeatureExist(sgqlc.types.Input):
1701
1701
 
1702
1702
  class DumpEnvironmentForForMergeComparisonInput(sgqlc.types.Input):
1703
1703
  __schema__ = schema
1704
- __field_names__ = ('destination_environment_slug', 'source_environment_slug')
1704
+ __field_names__ = ('destination_environment_slug', 'merge_configuration', 'source_environment_slug')
1705
1705
  destination_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='destinationEnvironmentSlug')
1706
+ merge_configuration = sgqlc.types.Field('EnvironmentMergeConfigurationInput', graphql_name='mergeConfiguration')
1706
1707
  source_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceEnvironmentSlug')
1707
1708
 
1708
1709
 
@@ -1788,6 +1789,12 @@ class EnvironmentInput(sgqlc.types.Input):
1788
1789
  provision_status = sgqlc.types.Field(EnvironmentProvisionStatus, graphql_name='provisionStatus')
1789
1790
 
1790
1791
 
1792
+ class EnvironmentMergeConfigurationInput(sgqlc.types.Input):
1793
+ __schema__ = schema
1794
+ __field_names__ = ('include_coupons',)
1795
+ include_coupons = sgqlc.types.Field(Boolean, graphql_name='includeCoupons')
1796
+
1797
+
1791
1798
  class EnvironmentSort(sgqlc.types.Input):
1792
1799
  __schema__ = schema
1793
1800
  __field_names__ = ('direction', 'field', 'nulls')
@@ -2429,10 +2436,11 @@ class MemberSort(sgqlc.types.Input):
2429
2436
 
2430
2437
  class MergeEnvironmentInput(sgqlc.types.Input):
2431
2438
  __schema__ = schema
2432
- __field_names__ = ('destination_environment_name', 'destination_environment_slug', 'destination_environment_type', 'migration_type', 'source_environment_slug', 'source_template')
2439
+ __field_names__ = ('destination_environment_name', 'destination_environment_slug', 'destination_environment_type', 'merge_configuration', 'migration_type', 'source_environment_slug', 'source_template')
2433
2440
  destination_environment_name = sgqlc.types.Field(String, graphql_name='destinationEnvironmentName')
2434
2441
  destination_environment_slug = sgqlc.types.Field(String, graphql_name='destinationEnvironmentSlug')
2435
2442
  destination_environment_type = sgqlc.types.Field(EnvironmentType, graphql_name='destinationEnvironmentType')
2443
+ merge_configuration = sgqlc.types.Field(EnvironmentMergeConfigurationInput, graphql_name='mergeConfiguration')
2436
2444
  migration_type = sgqlc.types.Field(PublishMigrationType, graphql_name='migrationType')
2437
2445
  source_environment_slug = sgqlc.types.Field(String, graphql_name='sourceEnvironmentSlug')
2438
2446
  source_template = sgqlc.types.Field(JSON, graphql_name='sourceTemplate')
@@ -4471,8 +4479,9 @@ class UsageMeasurementSort(sgqlc.types.Input):
4471
4479
 
4472
4480
  class ValidateMergeEnvironmentInput(sgqlc.types.Input):
4473
4481
  __schema__ = schema
4474
- __field_names__ = ('destination_environment_slug', 'source_environment_slug')
4482
+ __field_names__ = ('destination_environment_slug', 'merge_configuration', 'source_environment_slug')
4475
4483
  destination_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='destinationEnvironmentSlug')
4484
+ merge_configuration = sgqlc.types.Field(EnvironmentMergeConfigurationInput, graphql_name='mergeConfiguration')
4476
4485
  source_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceEnvironmentSlug')
4477
4486
 
4478
4487