stigg-api-client 2.15.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.15.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.15.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,12 @@ 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')
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')
4308
+ stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
4307
4309
 
4308
4310
 
4309
4311
 
@@ -8511,8 +8513,9 @@ class StripeCustomerSearchResult(sgqlc.types.Type):
8511
8513
 
8512
8514
  class StripePaymentMethodForm(sgqlc.types.Type):
8513
8515
  __schema__ = schema
8514
- __field_names__ = ('client_secret',)
8516
+ __field_names__ = ('client_secret', 'stripe_publishable_key')
8515
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')
8516
8519
 
8517
8520
 
8518
8521
  class StripeProduct(sgqlc.types.Type):
@@ -9416,10 +9419,12 @@ class YearlyResetPeriodConfig(sgqlc.types.Type):
9416
9419
 
9417
9420
  class ZuoraCredentials(sgqlc.types.Type):
9418
9421
  __schema__ = schema
9419
- __field_names__ = ('base_url', 'client_id', 'client_secret')
9422
+ __field_names__ = ('base_url', 'client_id', 'client_secret', 'stripe_publishable_key', 'stripe_secret_key')
9420
9423
  base_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='baseUrl')
9421
9424
  client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
9422
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')
9427
+ stripe_secret_key = sgqlc.types.Field(String, graphql_name='stripeSecretKey')
9423
9428
 
9424
9429
 
9425
9430
  class ZuoraPaymentMethodForm(sgqlc.types.Type):