stigg-api-client 2.304.1__tar.gz → 2.307.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.304.1
3
+ Version: 2.307.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.304.1"
3
+ version = "2.307.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -324,6 +324,7 @@ def fragment_subscription_invoice_fragment():
324
324
  _frag.total_excluding_tax()
325
325
  _frag.tax()
326
326
  _frag.amount_due()
327
+ _frag.attempt_count()
327
328
  return _frag
328
329
 
329
330
 
@@ -9149,9 +9149,10 @@ class SubscriptionFutureUpdate(sgqlc.types.Type):
9149
9149
 
9150
9150
  class SubscriptionInvoice(sgqlc.types.Type):
9151
9151
  __schema__ = schema
9152
- __field_names__ = ('amount_due', 'applied_balance', 'billing_id', 'billing_reason', 'created_at', 'currency', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
9152
+ __field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
9153
9153
  amount_due = sgqlc.types.Field(Float, graphql_name='amountDue')
9154
9154
  applied_balance = sgqlc.types.Field(Float, graphql_name='appliedBalance')
9155
+ attempt_count = sgqlc.types.Field(Float, graphql_name='attemptCount')
9155
9156
  billing_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='billingId')
9156
9157
  billing_reason = sgqlc.types.Field(SubscriptionInvoiceBillingReason, graphql_name='billingReason')
9157
9158
  created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')