stigg-api-client 1.173.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.173.0
3
+ Version: 1.176.0
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 = "1.173.0"
3
+ version = "1.176.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -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')
@@ -998,7 +1011,8 @@ class CreateExperimentInput(sgqlc.types.Input):
998
1011
 
999
1012
  class CreateHook(sgqlc.types.Input):
1000
1013
  __schema__ = schema
1001
- __field_names__ = ('created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
1014
+ __field_names__ = ('configuration', 'created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
1015
+ configuration = sgqlc.types.Field(JSON, graphql_name='configuration')
1002
1016
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
1003
1017
  description = sgqlc.types.Field(String, graphql_name='description')
1004
1018
  endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
@@ -1011,8 +1025,9 @@ class CreateHook(sgqlc.types.Input):
1011
1025
 
1012
1026
  class CreateIntegrationInput(sgqlc.types.Input):
1013
1027
  __schema__ = schema
1014
- __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')
1015
1029
  aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
1030
+ big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
1016
1031
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
1017
1032
  hubspot_credentials = sgqlc.types.Field('HubspotCredentialsInput', graphql_name='hubspotCredentials')
1018
1033
  salesforce_credentials = sgqlc.types.Field('SalesforceCredentialsInput', graphql_name='salesforceCredentials')
@@ -3913,7 +3928,8 @@ class UpdateFeatureInput(sgqlc.types.Input):
3913
3928
 
3914
3929
  class UpdateHook(sgqlc.types.Input):
3915
3930
  __schema__ = schema
3916
- __field_names__ = ('created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
3931
+ __field_names__ = ('configuration', 'created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
3932
+ configuration = sgqlc.types.Field(JSON, graphql_name='configuration')
3917
3933
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
3918
3934
  description = sgqlc.types.Field(String, graphql_name='description')
3919
3935
  endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
@@ -4498,6 +4514,21 @@ class BasePlanChange(sgqlc.types.Type):
4498
4514
  change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
4499
4515
 
4500
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
+
4501
4532
  class BillableFeature(sgqlc.types.Type):
4502
4533
  __schema__ = schema
4503
4534
  __field_names__ = ('feature_id', 'quantity')
@@ -5833,8 +5864,9 @@ class HiddenFromWidgetsChange(sgqlc.types.Type):
5833
5864
 
5834
5865
  class Hook(sgqlc.types.Type):
5835
5866
  __schema__ = schema
5836
- __field_names__ = ('account', 'created_at', 'description', 'endpoint', 'environment', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
5867
+ __field_names__ = ('account', 'configuration', 'created_at', 'description', 'endpoint', 'environment', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
5837
5868
  account = sgqlc.types.Field(Account, graphql_name='account')
5869
+ configuration = sgqlc.types.Field(JSON, graphql_name='configuration')
5838
5870
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
5839
5871
  description = sgqlc.types.Field(String, graphql_name='description')
5840
5872
  endpoint = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpoint')
@@ -5876,7 +5908,8 @@ class HookCountAggregate(sgqlc.types.Type):
5876
5908
 
5877
5909
  class HookDeleteResponse(sgqlc.types.Type):
5878
5910
  __schema__ = schema
5879
- __field_names__ = ('created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
5911
+ __field_names__ = ('configuration', 'created_at', 'description', 'endpoint', 'environment_id', 'event_log_types', 'id', 'secret_key', 'status')
5912
+ configuration = sgqlc.types.Field(JSON, graphql_name='configuration')
5880
5913
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
5881
5914
  description = sgqlc.types.Field(String, graphql_name='description')
5882
5915
  endpoint = sgqlc.types.Field(String, graphql_name='endpoint')
@@ -9167,7 +9200,7 @@ class experimentInfo(sgqlc.types.Type):
9167
9200
  ########################################################################
9168
9201
  class Credentials(sgqlc.types.Union):
9169
9202
  __schema__ = schema
9170
- __types__ = (AwsMarketplaceCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
9203
+ __types__ = (AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
9171
9204
 
9172
9205
 
9173
9206
  class ResetPeriodConfiguration(sgqlc.types.Union):