stigg-api-client 2.289.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.289.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.289.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')
@@ -2294,7 +2301,7 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
2294
2301
 
2295
2302
  class ImportSubscriptionInput(sgqlc.types.Input):
2296
2303
  __schema__ = schema
2297
- __field_names__ = ('additional_meta_data', 'addons', 'billable_features', 'billing_id', 'billing_period', 'customer_id', 'end_date', 'plan_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'unit_quantity', 'updated_at')
2304
+ __field_names__ = ('additional_meta_data', 'addons', 'billable_features', 'billing_id', 'billing_period', 'customer_id', 'end_date', 'plan_id', 'resource_id', 'salesforce_id', 'start_date', 'subscription_entitlements', 'subscription_id', 'unit_quantity', 'updated_at')
2298
2305
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2299
2306
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2300
2307
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
@@ -2307,6 +2314,7 @@ class ImportSubscriptionInput(sgqlc.types.Input):
2307
2314
  salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
2308
2315
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
2309
2316
  subscription_entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementInput')), graphql_name='subscriptionEntitlements')
2317
+ subscription_id = sgqlc.types.Field(String, graphql_name='subscriptionId')
2310
2318
  unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
2311
2319
  updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
2312
2320
 
@@ -2428,10 +2436,11 @@ class MemberSort(sgqlc.types.Input):
2428
2436
 
2429
2437
  class MergeEnvironmentInput(sgqlc.types.Input):
2430
2438
  __schema__ = schema
2431
- __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')
2432
2440
  destination_environment_name = sgqlc.types.Field(String, graphql_name='destinationEnvironmentName')
2433
2441
  destination_environment_slug = sgqlc.types.Field(String, graphql_name='destinationEnvironmentSlug')
2434
2442
  destination_environment_type = sgqlc.types.Field(EnvironmentType, graphql_name='destinationEnvironmentType')
2443
+ merge_configuration = sgqlc.types.Field(EnvironmentMergeConfigurationInput, graphql_name='mergeConfiguration')
2435
2444
  migration_type = sgqlc.types.Field(PublishMigrationType, graphql_name='migrationType')
2436
2445
  source_environment_slug = sgqlc.types.Field(String, graphql_name='sourceEnvironmentSlug')
2437
2446
  source_template = sgqlc.types.Field(JSON, graphql_name='sourceTemplate')
@@ -4470,8 +4479,9 @@ class UsageMeasurementSort(sgqlc.types.Input):
4470
4479
 
4471
4480
  class ValidateMergeEnvironmentInput(sgqlc.types.Input):
4472
4481
  __schema__ = schema
4473
- __field_names__ = ('destination_environment_slug', 'source_environment_slug')
4482
+ __field_names__ = ('destination_environment_slug', 'merge_configuration', 'source_environment_slug')
4474
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')
4475
4485
  source_environment_slug = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='sourceEnvironmentSlug')
4476
4486
 
4477
4487