stigg-api-client 2.16.0__tar.gz → 2.16.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.16.0
3
+ Version: 2.16.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.16.0"
3
+ version = "2.16.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -4300,10 +4300,11 @@ class YearlyResetPeriodConfigInput(sgqlc.types.Input):
4300
4300
 
4301
4301
  class ZuoraCredentialsInput(sgqlc.types.Input):
4302
4302
  __schema__ = schema
4303
- __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_secret_key')
4303
+ __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
4304
4304
  base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
4305
4305
  client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
4306
4306
  client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
4307
+ stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
4307
4308
  stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
4308
4309
 
4309
4310
 
@@ -8512,8 +8513,9 @@ class StripeCustomerSearchResult(sgqlc.types.Type):
8512
8513
 
8513
8514
  class StripePaymentMethodForm(sgqlc.types.Type):
8514
8515
  __schema__ = schema
8515
- __field_names__ = ('client_secret',)
8516
+ __field_names__ = ('client_secret', 'stripe_publishable_key')
8516
8517
  client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
8518
+ stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
8517
8519
 
8518
8520
 
8519
8521
  class StripeProduct(sgqlc.types.Type):
@@ -9417,10 +9419,11 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
9417
9419
 
9418
9420
  class ZuoraCredentials(sgqlc.types.Type):
9419
9421
  __schema__ = schema
9420
- __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_secret_key')
9422
+ __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
9421
9423
  base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
9422
9424
  client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
9423
9425
  client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
9426
+ stripe_publishable_key = sgqlc.types.Field(String, graphql_name='stripePublishableKey')
9424
9427
  stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
9425
9428
 
9426
9429