stigg-api-client 0.671.1__tar.gz → 0.677.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 0.671.1
3
+ Version: 0.677.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.671.1"
3
+ version = "0.677.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2962,10 +2962,11 @@ class SubscriptionAddonSort(sgqlc.types.Input):
2962
2962
 
2963
2963
  class SubscriptionBillingInfo(sgqlc.types.Input):
2964
2964
  __schema__ = schema
2965
- __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'metadata', 'tax_percentage', 'tax_rate_ids')
2965
+ __field_names__ = ('billing_address', 'charge_on_behalf_of_account', 'coupon_id', 'is_backdated', 'metadata', 'tax_percentage', 'tax_rate_ids')
2966
2966
  billing_address = sgqlc.types.Field(BillingAddress, graphql_name='billingAddress')
2967
2967
  charge_on_behalf_of_account = sgqlc.types.Field(String, graphql_name='chargeOnBehalfOfAccount')
2968
2968
  coupon_id = sgqlc.types.Field(String, graphql_name='couponId')
2969
+ is_backdated = sgqlc.types.Field(Boolean, graphql_name='isBackdated')
2969
2970
  metadata = sgqlc.types.Field(JSON, graphql_name='metadata')
2970
2971
  tax_percentage = sgqlc.types.Field(Float, graphql_name='taxPercentage')
2971
2972
  tax_rate_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='taxRateIds')