stigg-api-client 0.729.0__tar.gz → 0.735.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: 0.729.0
3
+ Version: 0.735.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 = "0.729.0"
3
+ version = "0.735.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -427,7 +427,7 @@ class TaskStatus(sgqlc.types.Enum):
427
427
 
428
428
  class TaskType(sgqlc.types.Enum):
429
429
  __schema__ = schema
430
- __choices__ = ('IMPORT_INTEGRATION_CATALOG', 'IMPORT_INTEGRATION_CUSTOMERS', 'IMPORT_SUBSCRIPTIONS_BULK', 'RECALCULATE_ENTITLEMENTS', 'RESYNC_INTEGRATION', 'SUBSCRIPTION_MIGRATION', 'SUBSCRIPTION_MIGRATION_V2')
430
+ __choices__ = ('IMPORT_INTEGRATION_CATALOG', 'IMPORT_INTEGRATION_CUSTOMERS', 'IMPORT_SUBSCRIPTIONS_BULK', 'RECALCULATE_BATCH_ENTITLEMENTS', 'RECALCULATE_ENTITLEMENTS', 'RESYNC_INTEGRATION', 'SUBSCRIPTION_MIGRATION', 'SUBSCRIPTION_MIGRATION_V2')
431
431
 
432
432
 
433
433
  class TiersMode(sgqlc.types.Enum):
@@ -2720,11 +2720,10 @@ class ProvisionSubscriptionInput(sgqlc.types.Input):
2720
2720
 
2721
2721
  class RecalculateEntitlementsInput(sgqlc.types.Input):
2722
2722
  __schema__ = schema
2723
- __field_names__ = ('customer_ids', 'environment_id', 'for_all_customers', 'last_calculation_before')
2723
+ __field_names__ = ('customer_ids', 'environment_id', 'for_all_customers')
2724
2724
  customer_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='customerIds')
2725
2725
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
2726
2726
  for_all_customers = sgqlc.types.Field(Boolean, graphql_name='forAllCustomers')
2727
- last_calculation_before = sgqlc.types.Field(DateTime, graphql_name='lastCalculationBefore')
2728
2727
 
2729
2728
 
2730
2729
  class RemoveBasePlanFromPlanInput(sgqlc.types.Input):