stigg-api-client 1.175.0__tar.gz → 1.176.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-1.175.0 → stigg_api_client-1.176.0}/PKG-INFO +1 -1
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/pyproject.toml +1 -1
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/stigg/generated/schema.py +32 -3
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/LICENSE +0 -0
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/README.md +0 -0
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/stigg/__init__.py +0 -0
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/stigg/client.py +0 -0
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.175.0 → stigg_api_client-1.176.0}/stigg/generated/operations.py +0 -0
|
@@ -497,7 +497,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
|
|
|
497
497
|
|
|
498
498
|
class VendorIdentifier(sgqlc.types.Enum):
|
|
499
499
|
__schema__ = schema
|
|
500
|
-
__choices__ = ('AWS_MARKETPLACE', 'HUBSPOT', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
500
|
+
__choices__ = ('AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
|
|
501
501
|
|
|
502
502
|
|
|
503
503
|
class WeeklyAccordingTo(sgqlc.types.Enum):
|
|
@@ -715,6 +715,19 @@ class AwsMarketplaceCredentialsInput(sgqlc.types.Input):
|
|
|
715
715
|
aws_role_arn = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='awsRoleArn')
|
|
716
716
|
|
|
717
717
|
|
|
718
|
+
class BigQueryCredentialsInput(sgqlc.types.Input):
|
|
719
|
+
__schema__ = schema
|
|
720
|
+
__field_names__ = ('credentials_json', 'dataset_id', 'dataset_location', 'gcs_bucket_name', 'gcs_bucket_path', 'hmac_key_access_id', 'hmac_key_secret', 'project_id')
|
|
721
|
+
credentials_json = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='credentialsJson')
|
|
722
|
+
dataset_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='datasetId')
|
|
723
|
+
dataset_location = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='datasetLocation')
|
|
724
|
+
gcs_bucket_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='gcsBucketName')
|
|
725
|
+
gcs_bucket_path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='gcsBucketPath')
|
|
726
|
+
hmac_key_access_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hmacKeyAccessId')
|
|
727
|
+
hmac_key_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hmacKeySecret')
|
|
728
|
+
project_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='projectId')
|
|
729
|
+
|
|
730
|
+
|
|
718
731
|
class BillableFeatureInput(sgqlc.types.Input):
|
|
719
732
|
__schema__ = schema
|
|
720
733
|
__field_names__ = ('feature_id', 'quantity')
|
|
@@ -1012,8 +1025,9 @@ class CreateHook(sgqlc.types.Input):
|
|
|
1012
1025
|
|
|
1013
1026
|
class CreateIntegrationInput(sgqlc.types.Input):
|
|
1014
1027
|
__schema__ = schema
|
|
1015
|
-
__field_names__ = ('aws_marketplace_credentials', 'environment_id', 'hubspot_credentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1028
|
+
__field_names__ = ('aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
|
|
1016
1029
|
aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
|
|
1030
|
+
big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
|
|
1017
1031
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
1018
1032
|
hubspot_credentials = sgqlc.types.Field('HubspotCredentialsInput', graphql_name='hubspotCredentials')
|
|
1019
1033
|
salesforce_credentials = sgqlc.types.Field('SalesforceCredentialsInput', graphql_name='salesforceCredentials')
|
|
@@ -4500,6 +4514,21 @@ class BasePlanChange(sgqlc.types.Type):
|
|
|
4500
4514
|
change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
|
|
4501
4515
|
|
|
4502
4516
|
|
|
4517
|
+
class BigQueryCredentials(sgqlc.types.Type):
|
|
4518
|
+
__schema__ = schema
|
|
4519
|
+
__field_names__ = ('airbyte_connection_id', 'airbyte_destination_id', 'credentials_json', 'dataset_id', 'dataset_location', 'gcs_bucket_name', 'gcs_bucket_path', 'hmac_key_access_id', 'hmac_key_secret', 'project_id')
|
|
4520
|
+
airbyte_connection_id = sgqlc.types.Field(String, graphql_name='airbyteConnectionId')
|
|
4521
|
+
airbyte_destination_id = sgqlc.types.Field(String, graphql_name='airbyteDestinationId')
|
|
4522
|
+
credentials_json = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='credentialsJson')
|
|
4523
|
+
dataset_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='datasetId')
|
|
4524
|
+
dataset_location = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='datasetLocation')
|
|
4525
|
+
gcs_bucket_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='gcsBucketName')
|
|
4526
|
+
gcs_bucket_path = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='gcsBucketPath')
|
|
4527
|
+
hmac_key_access_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hmacKeyAccessId')
|
|
4528
|
+
hmac_key_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='hmacKeySecret')
|
|
4529
|
+
project_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='projectId')
|
|
4530
|
+
|
|
4531
|
+
|
|
4503
4532
|
class BillableFeature(sgqlc.types.Type):
|
|
4504
4533
|
__schema__ = schema
|
|
4505
4534
|
__field_names__ = ('feature_id', 'quantity')
|
|
@@ -9171,7 +9200,7 @@ class experimentInfo(sgqlc.types.Type):
|
|
|
9171
9200
|
########################################################################
|
|
9172
9201
|
class Credentials(sgqlc.types.Union):
|
|
9173
9202
|
__schema__ = schema
|
|
9174
|
-
__types__ = (AwsMarketplaceCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
9203
|
+
__types__ = (AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
|
|
9175
9204
|
|
|
9176
9205
|
|
|
9177
9206
|
class ResetPeriodConfiguration(sgqlc.types.Union):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|