stigg-api-client 1.201.0__tar.gz → 1.205.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: 1.201.0
3
+ Version: 1.205.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 = "1.201.0"
3
+ version = "1.205.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2155,11 +2155,14 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
2155
2155
 
2156
2156
  class ImportSubscriptionInput(sgqlc.types.Input):
2157
2157
  __schema__ = schema
2158
- __field_names__ = ('additional_meta_data', 'billing_id', 'billing_period', 'customer_id', 'plan_id', 'resource_id', 'start_date', 'unit_quantity', 'updated_at')
2158
+ __field_names__ = ('additional_meta_data', 'addons', 'billable_features', 'billing_id', 'billing_period', 'customer_id', 'end_date', 'plan_id', 'resource_id', 'start_date', 'unit_quantity', 'updated_at')
2159
2159
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2160
+ addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2161
+ billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
2160
2162
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
2161
2163
  billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
2162
2164
  customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
2165
+ end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
2163
2166
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
2164
2167
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
2165
2168
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')