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.
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/PKG-INFO +1 -1
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/pyproject.toml +1 -1
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/stigg/generated/schema.py +8 -3
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/LICENSE +0 -0
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/README.md +0 -0
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/stigg/__init__.py +0 -0
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/stigg/client.py +0 -0
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.15.0 → stigg_api_client-2.16.1}/stigg/generated/operations.py +0 -0
|
@@ -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):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|