stigg-api-client 2.302.0__tar.gz → 2.303.1__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.302.0
3
+ Version: 2.303.1
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.302.0"
3
+ version = "2.303.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -4555,10 +4555,11 @@ class YearlyResetPeriodConfigInput(sgqlc.types.Input):
4555
4555
 
4556
4556
  class ZuoraCredentialsInput(sgqlc.types.Input):
4557
4557
  __schema__ = schema
4558
- __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
4558
+ __field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_page_id', 'stripe_publishable_key', 'stripe_secret_key')
4559
4559
  base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
4560
4560
  client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
4561
4561
  client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
4562
+ payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
4562
4563
  stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
4563
4564
  stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
4564
4565
 
@@ -9879,12 +9880,14 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
9879
9880
 
9880
9881
  class ZuoraCredentials(sgqlc.types.Type):
9881
9882
  __schema__ = schema
9882
- __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
9883
+ __field_names__ = ('base_url', 'client_id', 'client_secret', 'payment_page_id', 'stripe_publishable_key', 'stripe_secret_key', 'webhook_secret')
9883
9884
  base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
9884
9885
  client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
9885
9886
  client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
9887
+ payment_page_id = sgqlc.types.Field(String, graphql_name='paymentPageId')
9886
9888
  stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
9887
9889
  stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
9890
+ webhook_secret = sgqlc.types.Field(String, graphql_name='webhookSecret')
9888
9891
 
9889
9892
 
9890
9893
  class ZuoraPaymentMethodForm(sgqlc.types.Type):