stigg-api-client 2.76.0__py3-none-any.whl → 2.78.0__py3-none-any.whl
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/generated/schema.py +29 -4
- {stigg_api_client-2.76.0.dist-info → stigg_api_client-2.78.0.dist-info}/METADATA +1 -1
- {stigg_api_client-2.76.0.dist-info → stigg_api_client-2.78.0.dist-info}/RECORD +5 -5
- {stigg_api_client-2.76.0.dist-info → stigg_api_client-2.78.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.76.0.dist-info → stigg_api_client-2.78.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -50,6 +50,11 @@ class ApiKeyType(sgqlc.types.Enum):
|
|
|
50
50
|
__choices__ = ('CLIENT', 'SALESFORCE', 'SERVER')
|
|
51
51
|
|
|
52
52
|
|
|
53
|
+
class Auth0Region(sgqlc.types.Enum):
|
|
54
|
+
__schema__ = schema
|
|
55
|
+
__choices__ = ('AU', 'CA', 'EU', 'JP', 'UK', 'US')
|
|
56
|
+
|
|
57
|
+
|
|
53
58
|
class BillingAnchor(sgqlc.types.Enum):
|
|
54
59
|
__schema__ = schema
|
|
55
60
|
__choices__ = ('START_OF_THE_MONTH', 'SUBSCRIPTIONS_CONSOLIDATE_BILLING', 'SUBSCRIPTION_START')
|
|
@@ -527,7 +532,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
|
|
|
527
532
|
|
|
528
533
|
class VendorIdentifier(sgqlc.types.Enum):
|
|
529
534
|
__schema__ = schema
|
|
530
|
-
__choices__ = ('AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
535
|
+
__choices__ = ('AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
531
536
|
|
|
532
537
|
|
|
533
538
|
class WeeklyAccordingTo(sgqlc.types.Enum):
|
|
@@ -753,6 +758,15 @@ class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
|
753
758
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
754
759
|
|
|
755
760
|
|
|
761
|
+
class Auth0CredentialsInput(sgqlc.types.Input):
|
|
762
|
+
__schema__ = schema
|
|
763
|
+
__field_names__ = ('client_id', 'client_secret', 'region', 'tenant')
|
|
764
|
+
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
765
|
+
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
766
|
+
region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='region')
|
|
767
|
+
tenant = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='tenant')
|
|
768
|
+
|
|
769
|
+
|
|
756
770
|
class AutoCancellationRuleInput(sgqlc.types.Input):
|
|
757
771
|
__schema__ = schema
|
|
758
772
|
__field_names__ = ('source_plan_id', 'target_plan_id')
|
|
@@ -1076,7 +1090,8 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1076
1090
|
|
|
1077
1091
|
class CreateIntegrationInput(sgqlc.types.Input):
|
|
1078
1092
|
__schema__ = schema
|
|
1079
|
-
__field_names__ = ('aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1093
|
+
__field_names__ = ('auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1094
|
+
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
1080
1095
|
aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
|
|
1081
1096
|
big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
|
|
1082
1097
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
@@ -4049,7 +4064,8 @@ class UpdateHook(sgqlc.types.Input):
|
|
|
4049
4064
|
|
|
4050
4065
|
class UpdateIntegrationInput(sgqlc.types.Input):
|
|
4051
4066
|
__schema__ = schema
|
|
4052
|
-
__field_names__ = ('salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4067
|
+
__field_names__ = ('auth0_credentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
4068
|
+
auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
|
|
4053
4069
|
salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
|
|
4054
4070
|
stripe_credentials = sgqlc.types.Field(StripeCredentialsInput, graphql_name='stripeCredentials')
|
|
4055
4071
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
@@ -4565,6 +4581,15 @@ class AsyncTaskResult(sgqlc.types.Type):
|
|
|
4565
4581
|
task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='taskId')
|
|
4566
4582
|
|
|
4567
4583
|
|
|
4584
|
+
class Auth0Credentials(sgqlc.types.Type):
|
|
4585
|
+
__schema__ = schema
|
|
4586
|
+
__field_names__ = ('client_id', 'client_secret', 'region', 'tenant')
|
|
4587
|
+
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
4588
|
+
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
4589
|
+
region = sgqlc.types.Field(sgqlc.types.non_null(Auth0Region), graphql_name='region')
|
|
4590
|
+
tenant = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='tenant')
|
|
4591
|
+
|
|
4592
|
+
|
|
4568
4593
|
class AutoCancellationRule(sgqlc.types.Type):
|
|
4569
4594
|
__schema__ = schema
|
|
4570
4595
|
__field_names__ = ('source_plan', 'target_plan')
|
|
@@ -9491,7 +9516,7 @@ class experimentInfo(sgqlc.types.Type):
|
|
|
9491
9516
|
########################################################################
|
|
9492
9517
|
class Credentials(sgqlc.types.Union):
|
|
9493
9518
|
__schema__ = schema
|
|
9494
|
-
__types__ = (AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
9519
|
+
__types__ = (Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
9495
9520
|
|
|
9496
9521
|
|
|
9497
9522
|
class PaymentMethodForm(sgqlc.types.Union):
|
|
@@ -2,8 +2,8 @@ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
|
|
|
2
2
|
stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
|
|
3
3
|
stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
4
|
stigg/generated/operations.py,sha256=z6QOL3x6hTuFJYRdYI5kHoHewZwIibtpfA8s-5EsEtc,74512
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-2.
|
|
7
|
-
stigg_api_client-2.
|
|
8
|
-
stigg_api_client-2.
|
|
9
|
-
stigg_api_client-2.
|
|
5
|
+
stigg/generated/schema.py,sha256=qL4l-roe_0pxeFiCdlo_FW9CpmXFXRiBvVyPu3oD0dU,607882
|
|
6
|
+
stigg_api_client-2.78.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.78.0.dist-info/METADATA,sha256=TSgyTDhD0mwM-b117L31cHQCjCQI3shiAJdLH8sQ4nA,3197
|
|
8
|
+
stigg_api_client-2.78.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.78.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|