stigg-api-client 1.37.1__py3-none-any.whl → 1.40.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 CHANGED
@@ -457,7 +457,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
457
457
 
458
458
  class VendorIdentifier(sgqlc.types.Enum):
459
459
  __schema__ = schema
460
- __choices__ = ('AWS_MARKETPLACE', 'HUBSPOT', 'STRIPE', 'ZUORA')
460
+ __choices__ = ('AWS_MARKETPLACE', 'HUBSPOT', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
461
461
 
462
462
 
463
463
  class WeeklyAccordingTo(sgqlc.types.Enum):
@@ -919,10 +919,11 @@ class CreateHook(sgqlc.types.Input):
919
919
 
920
920
  class CreateIntegrationInput(sgqlc.types.Input):
921
921
  __schema__ = schema
922
- __field_names__ = ('aws_marketplace_credentials', 'environment_id', 'hubspot_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
922
+ __field_names__ = ('aws_marketplace_credentials', 'environment_id', 'hubspot_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
923
923
  aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
924
924
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
925
925
  hubspot_credentials = sgqlc.types.Field('HubspotCredentialsInput', graphql_name='hubspotCredentials')
926
+ snowflake_credentials = sgqlc.types.Field('SnowflakeCredentialsInput', graphql_name='snowflakeCredentials')
926
927
  stripe_credentials = sgqlc.types.Field('StripeCredentialsInput', graphql_name='stripeCredentials')
927
928
  vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
928
929
  zuora_credentials = sgqlc.types.Field('ZuoraCredentialsInput', graphql_name='zuoraCredentials')
@@ -2922,6 +2923,18 @@ class SetExperimentOnCustomerSubscriptionInput(sgqlc.types.Input):
2922
2923
  relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
2923
2924
 
2924
2925
 
2926
+ class SnowflakeCredentialsInput(sgqlc.types.Input):
2927
+ __schema__ = schema
2928
+ __field_names__ = ('database', 'host', 'password', 'role', 'schema_name', 'username', 'warehouse')
2929
+ database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
2930
+ host = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='host')
2931
+ password = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='password')
2932
+ role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
2933
+ schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
2934
+ username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
2935
+ warehouse = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='warehouse')
2936
+
2937
+
2925
2938
  class StartExperimentInput(sgqlc.types.Input):
2926
2939
  __schema__ = schema
2927
2940
  __field_names__ = ('environment_id', 'ref_id')
@@ -7531,6 +7544,19 @@ class SdkConfiguration(sgqlc.types.Type):
7531
7544
  sentry_dsn = sgqlc.types.Field(String, graphql_name='sentryDsn')
7532
7545
 
7533
7546
 
7547
+ class SnowflakeCredentials(sgqlc.types.Type):
7548
+ __schema__ = schema
7549
+ __field_names__ = ('airbyte_connection_id', 'airbyte_destination_id', 'database', 'host', 'role', 'schema_name', 'username', 'warehouse')
7550
+ airbyte_connection_id = sgqlc.types.Field(String, graphql_name='airbyteConnectionId')
7551
+ airbyte_destination_id = sgqlc.types.Field(String, graphql_name='airbyteDestinationId')
7552
+ database = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='database')
7553
+ host = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='host')
7554
+ role = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='role')
7555
+ schema_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='schemaName')
7556
+ username = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='username')
7557
+ warehouse = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='warehouse')
7558
+
7559
+
7534
7560
  class StringChangeDTO(sgqlc.types.Type):
7535
7561
  __schema__ = schema
7536
7562
  __field_names__ = ('after', 'before', 'change_type')
@@ -8405,7 +8431,7 @@ class experimentInfo(sgqlc.types.Type):
8405
8431
  ########################################################################
8406
8432
  class Credentials(sgqlc.types.Union):
8407
8433
  __schema__ = schema
8408
- __types__ = (AwsMarketplaceCredentials, HubspotCredentials, StripeCredentials, ZuoraCredentials)
8434
+ __types__ = (AwsMarketplaceCredentials, HubspotCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
8409
8435
 
8410
8436
 
8411
8437
  class ResetPeriodConfiguration(sgqlc.types.Union):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.37.1
3
+ Version: 1.40.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -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=8w0bgrRbEL8e06zpO1iYcUCkbZ175smlNYw2YENPYjs,66744
5
- stigg/generated/schema.py,sha256=kYw2GYQOcpBA86wBlMwwTE6XhWMaSCtjPFN4vUIGLKk,532522
6
- stigg_api_client-1.37.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-1.37.1.dist-info/METADATA,sha256=WeepcxwZ2800n7blo2LOrRSdsMvjAevmAo5112sEx7g,3197
8
- stigg_api_client-1.37.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-1.37.1.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=_IfSkt2aZIZcf_2MLTp_iy35dc-OQIbsKV3XDy891eg,534397
6
+ stigg_api_client-1.40.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-1.40.0.dist-info/METADATA,sha256=orl7IsyFu-T0CHwUZQ-kpQxlS095e95uj9RZu4QIt5o,3197
8
+ stigg_api_client-1.40.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-1.40.0.dist-info/RECORD,,