stigg-api-client 2.379.1__tar.gz → 2.390.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: 2.379.1
3
+ Version: 2.390.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 = "2.379.1"
3
+ version = "2.390.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -804,7 +804,8 @@ class ArchivePlanInput(sgqlc.types.Input):
804
804
 
805
805
  class AttachCustomerPaymentMethodInput(sgqlc.types.Input):
806
806
  __schema__ = schema
807
- __field_names__ = ('customer_id', 'environment_id', 'integration_id', 'payment_method_id', 'ref_id', 'vendor_identifier')
807
+ __field_names__ = ('billing_currency', 'customer_id', 'environment_id', 'integration_id', 'payment_method_id', 'ref_id', 'vendor_identifier')
808
+ billing_currency = sgqlc.types.Field(Currency, graphql_name='billingCurrency')
808
809
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
809
810
  environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
810
811
  integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
@@ -4132,6 +4133,14 @@ class TestHookInput(sgqlc.types.Input):
4132
4133
  hook_event_type = sgqlc.types.Field(sgqlc.types.non_null(EventLogType), graphql_name='hookEventType')
4133
4134
 
4134
4135
 
4136
+ class TestWorkflowInput(sgqlc.types.Input):
4137
+ __schema__ = schema
4138
+ __field_names__ = ('endpoint_url', 'environment_id', 'hook_event_type')
4139
+ endpoint_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='endpointUrl')
4140
+ environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
4141
+ hook_event_type = sgqlc.types.Field(sgqlc.types.non_null(EventLogType), graphql_name='hookEventType')
4142
+
4143
+
4135
4144
  class TiersModeFilterComparison(sgqlc.types.Input):
4136
4145
  __schema__ = schema
4137
4146
  __field_names__ = ('eq', 'gt', 'gte', 'i_like', 'in_', 'is_', 'is_not', 'like', 'lt', 'lte', 'neq', 'not_ilike', 'not_in', 'not_like')
@@ -8649,7 +8658,7 @@ class PublishPackageResult(sgqlc.types.Type):
8649
8658
 
8650
8659
  class Query(sgqlc.types.Type):
8651
8660
  __schema__ = schema
8652
- __field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'current_environment', 'current_user', 'customer_portal', 'customer_resources', 'customer_subscriptions', 'customers', 'does_feature_exist', 'dump_environment_for_merge_comparison', 'dump_environment_product_catalog', 'entitlement', 'entitlements', 'environments', 'event_logs', 'events_fields', 'experiment', 'experiments', 'feature_associated_latest_packages', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_auth0_applications', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', 'get_subscription', 'hook', 'hooks', 'import_integration_tasks', 'integrations', 'list_aws_product_dimensions', 'list_aws_products', 'members', 'mock_paywall', 'package_entitlements', 'package_group', 'package_groups', 'paywall', 'plans', 'products', 'promotional_entitlements', 'sdk_configuration', 'send_test_hook', 'stripe_customers', 'stripe_products', 'stripe_subscriptions', 'subscription_entitlements', 'subscription_migration_tasks', 'test_hook_data', 'usage_events', 'usage_history', 'usage_history_v2', 'usage_measurements', 'validate_merge_environment', 'verified_account_domains', 'widget_configuration', 'workflow_triggers')
8661
+ __field_names__ = ('addon_associated_entities', 'addons', 'aggregated_events_by_customer', 'cached_entitlements', 'checkout_state', 'coupon', 'coupons', 'current_environment', 'current_user', 'customer_portal', 'customer_resources', 'customer_subscriptions', 'customers', 'does_feature_exist', 'dump_environment_for_merge_comparison', 'dump_environment_product_catalog', 'entitlement', 'entitlements', 'environments', 'event_logs', 'events_fields', 'experiment', 'experiments', 'feature_associated_latest_packages', 'features', 'fetch_account', 'get_active_subscriptions', 'get_addon_by_ref_id', 'get_auth0_applications', 'get_aws_external_id', 'get_customer_by_ref_id', 'get_experiment_stats', 'get_package_group', 'get_paywall', 'get_plan_by_ref_id', 'get_subscription', 'hook', 'hooks', 'import_integration_tasks', 'integrations', 'list_aws_product_dimensions', 'list_aws_products', 'members', 'mock_paywall', 'package_entitlements', 'package_group', 'package_groups', 'paywall', 'plans', 'products', 'promotional_entitlements', 'sdk_configuration', 'send_test_hook', 'stripe_customers', 'stripe_products', 'stripe_subscriptions', 'subscription_entitlements', 'subscription_migration_tasks', 'test_hook_data', 'trigger_workflow_with_test_event', 'usage_events', 'usage_history', 'usage_history_v2', 'usage_measurements', 'validate_merge_environment', 'verified_account_domains', 'widget_configuration', 'workflow_triggers')
8653
8662
  addon_associated_entities = sgqlc.types.Field(sgqlc.types.non_null(AddonAssociatedEntities), graphql_name='addonAssociatedEntities', args=sgqlc.types.ArgDict((
8654
8663
  ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddonAssociatedEntitiesInput), graphql_name='input', default=None)),
8655
8664
  ))
@@ -8909,6 +8918,10 @@ class Query(sgqlc.types.Type):
8909
8918
  )
8910
8919
  test_hook_data = sgqlc.types.Field(sgqlc.types.non_null('TestHook'), graphql_name='testHookData', args=sgqlc.types.ArgDict((
8911
8920
  ('event_log_type', sgqlc.types.Arg(sgqlc.types.non_null(EventLogType), graphql_name='eventLogType', default=None)),
8921
+ ))
8922
+ )
8923
+ trigger_workflow_with_test_event = sgqlc.types.Field(sgqlc.types.non_null('TriggerWorkflowDTO'), graphql_name='triggerWorkflowWithTestEvent', args=sgqlc.types.ArgDict((
8924
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(TestWorkflowInput), graphql_name='input', default=None)),
8912
8925
  ))
8913
8926
  )
8914
8927
  usage_events = sgqlc.types.Field(sgqlc.types.non_null('UsageEventsPreview'), graphql_name='usageEvents', args=sgqlc.types.ArgDict((