stigg-api-client 2.222.0__tar.gz → 2.227.0__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.222.0 → stigg_api_client-2.227.0}/PKG-INFO +1 -1
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/pyproject.toml +1 -1
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/stigg/generated/schema.py +6 -14
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/LICENSE +0 -0
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/README.md +0 -0
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/stigg/client.py +0 -0
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.222.0 → stigg_api_client-2.227.0}/stigg/generated/operations.py +0 -0
|
@@ -55,11 +55,6 @@ class Auth0ApplicationType(sgqlc.types.Enum):
|
|
|
55
55
|
__choices__ = ('BOTH', 'INDIVIDUAL', 'ORGANIZATION')
|
|
56
56
|
|
|
57
57
|
|
|
58
|
-
class Auth0Region(sgqlc.types.Enum):
|
|
59
|
-
__schema__ = schema
|
|
60
|
-
__choices__ = ('AU', 'CA', 'EU', 'JP', 'UK', 'US')
|
|
61
|
-
|
|
62
|
-
|
|
63
58
|
class BillingAnchor(sgqlc.types.Enum):
|
|
64
59
|
__schema__ = schema
|
|
65
60
|
__choices__ = ('START_OF_THE_MONTH', 'SUBSCRIPTIONS_CONSOLIDATE_BILLING', 'SUBSCRIPTION_START')
|
|
@@ -792,18 +787,17 @@ class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
|
|
|
792
787
|
|
|
793
788
|
class Auth0CredentialsInput(sgqlc.types.Input):
|
|
794
789
|
__schema__ = schema
|
|
795
|
-
__field_names__ = ('application_id', 'application_name', 'application_type', 'client_id', 'client_secret', 'individual_initial_plan_id', 'individual_subscription_start_setup', 'organization_initial_plan_id', 'organization_subscription_start_setup'
|
|
790
|
+
__field_names__ = ('application_id', 'application_name', 'application_type', 'client_domain', 'client_id', 'client_secret', 'individual_initial_plan_id', 'individual_subscription_start_setup', 'organization_initial_plan_id', 'organization_subscription_start_setup')
|
|
796
791
|
application_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationId')
|
|
797
792
|
application_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationName')
|
|
798
793
|
application_type = sgqlc.types.Field(sgqlc.types.non_null(Auth0ApplicationType), graphql_name='applicationType')
|
|
794
|
+
client_domain = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientDomain')
|
|
799
795
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
800
796
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
801
797
|
individual_initial_plan_id = sgqlc.types.Field(String, graphql_name='individualInitialPlanId')
|
|
802
798
|
individual_subscription_start_setup = sgqlc.types.Field(SubscriptionStartSetup, graphql_name='individualSubscriptionStartSetup')
|
|
803
799
|
organization_initial_plan_id = sgqlc.types.Field(String, graphql_name='organizationInitialPlanId')
|
|
804
800
|
organization_subscription_start_setup = sgqlc.types.Field(SubscriptionStartSetup, graphql_name='organizationSubscriptionStartSetup')
|
|
805
|
-
region = sgqlc.types.Field(sgqlc.types.non_null(Auth0Region), graphql_name='region')
|
|
806
|
-
tenant = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='tenant')
|
|
807
801
|
|
|
808
802
|
|
|
809
803
|
class AutoCancellationRuleInput(sgqlc.types.Input):
|
|
@@ -2094,12 +2088,11 @@ class GetActiveSubscriptionsInput(sgqlc.types.Input):
|
|
|
2094
2088
|
|
|
2095
2089
|
class GetAuth0ApplicationsInput(sgqlc.types.Input):
|
|
2096
2090
|
__schema__ = schema
|
|
2097
|
-
__field_names__ = ('
|
|
2091
|
+
__field_names__ = ('client_domain', 'client_id', 'client_secret', 'environment_id')
|
|
2092
|
+
client_domain = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientDomain')
|
|
2098
2093
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
2099
2094
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
2100
2095
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
2101
|
-
region = sgqlc.types.Field(sgqlc.types.non_null(Auth0Region), graphql_name='region')
|
|
2102
|
-
tenant = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='tenant')
|
|
2103
2096
|
|
|
2104
2097
|
|
|
2105
2098
|
class GetCustomerByRefIdInput(sgqlc.types.Input):
|
|
@@ -4733,18 +4726,17 @@ class Auth0ApplicationDTO(sgqlc.types.Type):
|
|
|
4733
4726
|
|
|
4734
4727
|
class Auth0Credentials(sgqlc.types.Type):
|
|
4735
4728
|
__schema__ = schema
|
|
4736
|
-
__field_names__ = ('application_id', 'application_name', 'application_type', 'client_id', 'client_secret', 'individual_initial_plan_id', 'individual_subscription_start_setup', 'organization_initial_plan_id', 'organization_subscription_start_setup'
|
|
4729
|
+
__field_names__ = ('application_id', 'application_name', 'application_type', 'client_domain', 'client_id', 'client_secret', 'individual_initial_plan_id', 'individual_subscription_start_setup', 'organization_initial_plan_id', 'organization_subscription_start_setup')
|
|
4737
4730
|
application_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationId')
|
|
4738
4731
|
application_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='applicationName')
|
|
4739
4732
|
application_type = sgqlc.types.Field(sgqlc.types.non_null(Auth0ApplicationType), graphql_name='applicationType')
|
|
4733
|
+
client_domain = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientDomain')
|
|
4740
4734
|
client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
|
|
4741
4735
|
client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
|
|
4742
4736
|
individual_initial_plan_id = sgqlc.types.Field(String, graphql_name='individualInitialPlanId')
|
|
4743
4737
|
individual_subscription_start_setup = sgqlc.types.Field(SubscriptionStartSetup, graphql_name='individualSubscriptionStartSetup')
|
|
4744
4738
|
organization_initial_plan_id = sgqlc.types.Field(String, graphql_name='organizationInitialPlanId')
|
|
4745
4739
|
organization_subscription_start_setup = sgqlc.types.Field(SubscriptionStartSetup, graphql_name='organizationSubscriptionStartSetup')
|
|
4746
|
-
region = sgqlc.types.Field(sgqlc.types.non_null(Auth0Region), graphql_name='region')
|
|
4747
|
-
tenant = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='tenant')
|
|
4748
4740
|
|
|
4749
4741
|
|
|
4750
4742
|
class AutoCancellationRule(sgqlc.types.Type):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|