stigg-api-client 2.287.0__tar.gz → 2.289.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.287.0
3
+ Version: 2.289.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.287.0"
3
+ version = "2.289.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2233,7 +2233,7 @@ class ImportCustomerBulkInput(sgqlc.types.Input):
2233
2233
 
2234
2234
  class ImportCustomerInput(sgqlc.types.Input):
2235
2235
  __schema__ = schema
2236
- __field_names__ = ('additional_meta_data', 'billing_id', 'customer_id', 'email', 'environment_id', 'name', 'payment_method_id', 'ref_id', 'updated_at')
2236
+ __field_names__ = ('additional_meta_data', 'billing_id', 'customer_id', 'email', 'environment_id', 'name', 'payment_method_id', 'ref_id', 'salesforce_id', 'updated_at')
2237
2237
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2238
2238
  billing_id = sgqlc.types.Field(String, graphql_name='billingId')
2239
2239
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
@@ -2242,6 +2242,7 @@ class ImportCustomerInput(sgqlc.types.Input):
2242
2242
  name = sgqlc.types.Field(String, graphql_name='name')
2243
2243
  payment_method_id = sgqlc.types.Field(String, graphql_name='paymentMethodId')
2244
2244
  ref_id = sgqlc.types.Field(String, graphql_name='refId')
2245
+ salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
2245
2246
  updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
2246
2247
 
2247
2248
 
@@ -2293,7 +2294,7 @@ class ImportIntegrationTaskSort(sgqlc.types.Input):
2293
2294
 
2294
2295
  class ImportSubscriptionInput(sgqlc.types.Input):
2295
2296
  __schema__ = schema
2296
- __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')
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')
2297
2298
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
2298
2299
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
2299
2300
  billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
@@ -2303,7 +2304,9 @@ class ImportSubscriptionInput(sgqlc.types.Input):
2303
2304
  end_date = sgqlc.types.Field(DateTime, graphql_name='endDate')
2304
2305
  plan_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='planId')
2305
2306
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
2307
+ salesforce_id = sgqlc.types.Field(String, graphql_name='salesforceId')
2306
2308
  start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
2309
+ subscription_entitlements = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementInput')), graphql_name='subscriptionEntitlements')
2307
2310
  unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
2308
2311
  updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
2309
2312