stigg-api-client 2.78.0__py3-none-any.whl → 2.80.2__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.

@@ -1375,7 +1375,7 @@ def mutation_provision_customer():
1375
1375
 
1376
1376
 
1377
1377
  def mutation_import_customer_bulk():
1378
- _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportCustomerBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportCustomerBulk))))
1378
+ _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportCustomerBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportCustomerBulkInput))))
1379
1379
  _op.import_customers_bulk(input=sgqlc.types.Variable('input'))
1380
1380
  return _op
1381
1381
 
@@ -1430,7 +1430,7 @@ def mutation_apply_subscription():
1430
1430
 
1431
1431
 
1432
1432
  def mutation_import_subscriptions_bulk():
1433
- _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportSubscriptionsBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportSubscriptionsBulk))))
1433
+ _op = sgqlc.operation.Operation(_schema_root.mutation_type, name='ImportSubscriptionsBulk', variables=dict(input=sgqlc.types.Arg(sgqlc.types.non_null(_schema.ImportSubscriptionsBulkInput))))
1434
1434
  _op.import_subscriptions_bulk(input=sgqlc.types.Variable('input'))
1435
1435
  return _op
1436
1436
 
stigg/generated/schema.py CHANGED
@@ -532,7 +532,7 @@ class UsageUpdateBehavior(sgqlc.types.Enum):
532
532
 
533
533
  class VendorIdentifier(sgqlc.types.Enum):
534
534
  __schema__ = schema
535
- __choices__ = ('AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
535
+ __choices__ = ('AUTH0', 'AWS_MARKETPLACE', 'BIG_QUERY', 'HUBSPOT', 'OPEN_FGA', 'SALESFORCE', 'SNOWFLAKE', 'STRIPE', 'ZUORA')
536
536
 
537
537
 
538
538
  class WeeklyAccordingTo(sgqlc.types.Enum):
@@ -1090,12 +1090,13 @@ class CreateHook(sgqlc.types.Input):
1090
1090
 
1091
1091
  class CreateIntegrationInput(sgqlc.types.Input):
1092
1092
  __schema__ = schema
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')
1093
+ __field_names__ = ('auth0_credentials', 'aws_marketplace_credentials', 'big_query_credentials', 'environment_id', 'hubspot_credentials', 'open_fgacredentials', 'salesforce_credentials', 'snowflake_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
1094
1094
  auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
1095
1095
  aws_marketplace_credentials = sgqlc.types.Field(AwsMarketplaceCredentialsInput, graphql_name='awsMarketplaceCredentials')
1096
1096
  big_query_credentials = sgqlc.types.Field(BigQueryCredentialsInput, graphql_name='bigQueryCredentials')
1097
1097
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
1098
1098
  hubspot_credentials = sgqlc.types.Field('HubspotCredentialsInput', graphql_name='hubspotCredentials')
1099
+ open_fgacredentials = sgqlc.types.Field('OpenFGACredentialsInput', graphql_name='openFGACredentials')
1099
1100
  salesforce_credentials = sgqlc.types.Field('SalesforceCredentialsInput', graphql_name='salesforceCredentials')
1100
1101
  snowflake_credentials = sgqlc.types.Field('SnowflakeCredentialsInput', graphql_name='snowflakeCredentials')
1101
1102
  stripe_credentials = sgqlc.types.Field('StripeCredentialsInput', graphql_name='stripeCredentials')
@@ -2142,7 +2143,7 @@ class HubspotCredentialsInput(sgqlc.types.Input):
2142
2143
  refresh_token = sgqlc.types.Field(String, graphql_name='refreshToken')
2143
2144
 
2144
2145
 
2145
- class ImportCustomerBulk(sgqlc.types.Input):
2146
+ class ImportCustomerBulkInput(sgqlc.types.Input):
2146
2147
  __schema__ = schema
2147
2148
  __field_names__ = ('customers', 'environment_id')
2148
2149
  customers = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('ImportCustomerInput'))), graphql_name='customers')
@@ -2226,7 +2227,7 @@ class ImportSubscriptionInput(sgqlc.types.Input):
2226
2227
  updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
2227
2228
 
2228
2229
 
2229
- class ImportSubscriptionsBulk(sgqlc.types.Input):
2230
+ class ImportSubscriptionsBulkInput(sgqlc.types.Input):
2230
2231
  __schema__ = schema
2231
2232
  __field_names__ = ('environment_id', 'subscriptions')
2232
2233
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
@@ -2415,6 +2416,17 @@ class NumberFieldComparisonBetween(sgqlc.types.Input):
2415
2416
  upper = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='upper')
2416
2417
 
2417
2418
 
2419
+ class OpenFGACredentialsInput(sgqlc.types.Input):
2420
+ __schema__ = schema
2421
+ __field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'client_secret', 'store_id')
2422
+ api_audience = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiAudience')
2423
+ api_token_issuer = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiTokenIssuer')
2424
+ api_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiUrl')
2425
+ client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
2426
+ client_secret = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientSecret')
2427
+ store_id = sgqlc.types.Field(String, graphql_name='storeId')
2428
+
2429
+
2418
2430
  class OverageEntitlementCreateInput(sgqlc.types.Input):
2419
2431
  __schema__ = schema
2420
2432
  __field_names__ = ('behavior', 'description', 'display_name_override', 'feature_id', 'has_soft_limit', 'has_unlimited_usage', 'hidden_from_widgets', 'is_custom', 'monthly_reset_period_configuration', 'order', 'reset_period', 'usage_limit', 'weekly_reset_period_configuration', 'yearly_reset_period_configuration')
@@ -4064,8 +4076,9 @@ class UpdateHook(sgqlc.types.Input):
4064
4076
 
4065
4077
  class UpdateIntegrationInput(sgqlc.types.Input):
4066
4078
  __schema__ = schema
4067
- __field_names__ = ('auth0_credentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
4079
+ __field_names__ = ('auth0_credentials', 'open_fgacredentials', 'salesforce_credentials', 'stripe_credentials', 'vendor_identifier', 'zuora_credentials')
4068
4080
  auth0_credentials = sgqlc.types.Field(Auth0CredentialsInput, graphql_name='auth0Credentials')
4081
+ open_fgacredentials = sgqlc.types.Field(OpenFGACredentialsInput, graphql_name='openFGACredentials')
4069
4082
  salesforce_credentials = sgqlc.types.Field(SalesforceCredentialsInput, graphql_name='salesforceCredentials')
4070
4083
  stripe_credentials = sgqlc.types.Field(StripeCredentialsInput, graphql_name='stripeCredentials')
4071
4084
  vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
@@ -6738,7 +6751,7 @@ class Mutation(sgqlc.types.Type):
6738
6751
  ))
6739
6752
  )
6740
6753
  import_customers_bulk = sgqlc.types.Field(String, graphql_name='importCustomersBulk', args=sgqlc.types.ArgDict((
6741
- ('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportCustomerBulk), graphql_name='input', default=None)),
6754
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportCustomerBulkInput), graphql_name='input', default=None)),
6742
6755
  ))
6743
6756
  )
6744
6757
  import_one_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='importOneCustomer', args=sgqlc.types.ArgDict((
@@ -6746,7 +6759,7 @@ class Mutation(sgqlc.types.Type):
6746
6759
  ))
6747
6760
  )
6748
6761
  import_subscriptions_bulk = sgqlc.types.Field(String, graphql_name='importSubscriptionsBulk', args=sgqlc.types.ArgDict((
6749
- ('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportSubscriptionsBulk), graphql_name='input', default=None)),
6762
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(ImportSubscriptionsBulkInput), graphql_name='input', default=None)),
6750
6763
  ))
6751
6764
  )
6752
6765
  init_add_stripe_customer_payment_method = sgqlc.types.Field(sgqlc.types.non_null(InitAddStripeCustomerPaymentMethod), graphql_name='initAddStripeCustomerPaymentMethod', args=sgqlc.types.ArgDict((
@@ -7037,6 +7050,17 @@ class NumberChange(sgqlc.types.Type):
7037
7050
  change_type = sgqlc.types.Field(ChangeType, graphql_name='changeType')
7038
7051
 
7039
7052
 
7053
+ class OpenFGACredentials(sgqlc.types.Type):
7054
+ __schema__ = schema
7055
+ __field_names__ = ('api_audience', 'api_token_issuer', 'api_url', 'client_id', 'model_id', 'store_id')
7056
+ api_audience = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiAudience')
7057
+ api_token_issuer = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiTokenIssuer')
7058
+ api_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='apiUrl')
7059
+ client_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientId')
7060
+ model_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='modelId')
7061
+ store_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='storeId')
7062
+
7063
+
7040
7064
  class OverageBillingPeriodChange(sgqlc.types.Type):
7041
7065
  __schema__ = schema
7042
7066
  __field_names__ = ('after', 'before', 'change_type')
@@ -9516,7 +9540,7 @@ class experimentInfo(sgqlc.types.Type):
9516
9540
  ########################################################################
9517
9541
  class Credentials(sgqlc.types.Union):
9518
9542
  __schema__ = schema
9519
- __types__ = (Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
9543
+ __types__ = (Auth0Credentials, AwsMarketplaceCredentials, BigQueryCredentials, HubspotCredentials, OpenFGACredentials, SalesforceCredentials, SnowflakeCredentials, StripeCredentials, ZuoraCredentials)
9520
9544
 
9521
9545
 
9522
9546
  class PaymentMethodForm(sgqlc.types.Union):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.78.0
3
+ Version: 2.80.2
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -0,0 +1,9 @@
1
+ stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
+ stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
3
+ stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ stigg/generated/operations.py,sha256=adka5Qg4zyBv-Aq5NtVa-tobm8I0JE3DzTFNp7OotOE,74522
5
+ stigg/generated/schema.py,sha256=XFq1o04Rs1uTNsSY-_5MnX5ktAeF-OiEaLzmJzyzhXw,609633
6
+ stigg_api_client-2.80.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-2.80.2.dist-info/METADATA,sha256=Xo9WuNSD0ftd1FLn7GUY78PLAb73n47c81OSGoYl2Ws,3197
8
+ stigg_api_client-2.80.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-2.80.2.dist-info/RECORD,,
@@ -1,9 +0,0 @@
1
- stigg/__init__.py,sha256=uQeM3YjvH1X56xOPknIEQezw0yjNNS-m9gi3B0XlSOM,44
2
- stigg/client.py,sha256=z9u5SptafEM-tN_K0o_zGKYDy6VVS9LWvkH0ZBMO4jc,3721
3
- stigg/generated/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- stigg/generated/operations.py,sha256=z6QOL3x6hTuFJYRdYI5kHoHewZwIibtpfA8s-5EsEtc,74512
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,,