stigg-api-client 3.107.0__tar.gz → 3.108.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: 3.107.0
3
+ Version: 3.108.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 = "3.107.0"
3
+ version = "3.108.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -1873,6 +1873,13 @@ def mutation_create_payment_session():
1873
1873
  return _op
1874
1874
 
1875
1875
 
1876
+ def mutation_void_credit_grant():
1877
+ _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='VoidCreditGrant', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.VoidCreditGrantInput))))
1878
+ _op_void_credit_grant = _op.void_credit_grant(input=sgqlc.types.Variable('input'))
1879
+ _op_void_credit_grant.__fragment__(fragment_credit_grant_fragment())
1880
+ return _op
1881
+
1882
+
1876
1883
  class Mutation:
1877
1884
  apply_subscription = mutation_apply_subscription()
1878
1885
  archive_customer = mutation_archive_customer()
@@ -1907,6 +1914,7 @@ class Mutation:
1907
1914
  unlink_promotional_entitlements_group = mutation_unlink_promotional_entitlements_group()
1908
1915
  update_customer = mutation_update_customer()
1909
1916
  update_subscription = mutation_update_subscription()
1917
+ void_credit_grant = mutation_void_credit_grant()
1910
1918
 
1911
1919
 
1912
1920
  def query_get_customer_by_id():