stigg-api-client 1.103.0__py3-none-any.whl → 1.107.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
@@ -4934,7 +4934,7 @@ class CustomerStatistics(sgqlc.types.Type):
4934
4934
 
4935
4935
  class CustomerSubscription(sgqlc.types.Type):
4936
4936
  __schema__ = schema
4937
- __field_names__ = ('additional_meta_data', 'addons', 'billing_id', 'billing_link_url', 'billing_sync_error', 'cancel_reason', 'cancellation_date', 'coupon', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'future_updates', 'id', 'is_custom_price_subscription', 'latest_invoice', 'old_billing_id', 'outdated_price_packages', 'payment_collection', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'salesforce_id', 'scheduled_updates', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'sync_states', 'total_price', 'trial_end_date', 'was_in_trial')
4937
+ __field_names__ = ('additional_meta_data', 'addons', 'billing_id', 'billing_link_url', 'billing_sync_error', 'cancel_reason', 'cancellation_date', 'coupon', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'free_items', 'future_updates', 'id', 'is_custom_price_subscription', 'latest_invoice', 'old_billing_id', 'outdated_price_packages', 'payment_collection', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'salesforce_id', 'scheduled_updates', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'sync_states', 'total_price', 'trial_end_date', 'was_in_trial')
4938
4938
  additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
4939
4939
  addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddon')), graphql_name='addons', args=sgqlc.types.ArgDict((
4940
4940
  ('filter', sgqlc.types.Arg(SubscriptionAddonFilter, graphql_name='filter', default={})),
@@ -4959,6 +4959,7 @@ class CustomerSubscription(sgqlc.types.Type):
4959
4959
  environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
4960
4960
  experiment = sgqlc.types.Field('Experiment', graphql_name='experiment')
4961
4961
  experiment_info = sgqlc.types.Field('experimentInfo', graphql_name='experimentInfo')
4962
+ free_items = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('FreeSubscriptionItem')), graphql_name='freeItems')
4962
4963
  future_updates = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionFutureUpdate'))), graphql_name='futureUpdates')
4963
4964
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
4964
4965
  is_custom_price_subscription = sgqlc.types.Field(Boolean, graphql_name='isCustomPriceSubscription')
@@ -5658,6 +5659,13 @@ class FontVariant(sgqlc.types.Type):
5658
5659
  font_weight = sgqlc.types.Field(FontWeight, graphql_name='fontWeight')
5659
5660
 
5660
5661
 
5662
+ class FreeSubscriptionItem(sgqlc.types.Type):
5663
+ __schema__ = schema
5664
+ __field_names__ = ('addon_id', 'quantity')
5665
+ addon_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='addonId')
5666
+ quantity = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='quantity')
5667
+
5668
+
5661
5669
  class GetAwsExternalIdResult(sgqlc.types.Type):
5662
5670
  __schema__ = schema
5663
5671
  __field_names__ = ('external_id',)
@@ -8524,8 +8532,9 @@ class SubscriptionPreviewTaxDetails(sgqlc.types.Type):
8524
8532
 
8525
8533
  class SubscriptionPreviewV2(sgqlc.types.Type):
8526
8534
  __schema__ = schema
8527
- __field_names__ = ('billing_period_range', 'has_scheduled_updates', 'immediate_invoice', 'is_plan_downgrade', 'recurring_invoice')
8535
+ __field_names__ = ('billing_period_range', 'free_items', 'has_scheduled_updates', 'immediate_invoice', 'is_plan_downgrade', 'recurring_invoice')
8528
8536
  billing_period_range = sgqlc.types.Field(sgqlc.types.non_null(DateRange), graphql_name='billingPeriodRange')
8537
+ free_items = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(FreeSubscriptionItem)), graphql_name='freeItems')
8529
8538
  has_scheduled_updates = sgqlc.types.Field(Boolean, graphql_name='hasScheduledUpdates')
8530
8539
  immediate_invoice = sgqlc.types.Field(sgqlc.types.non_null(ImmediateSubscriptionPreviewInvoice), graphql_name='immediateInvoice')
8531
8540
  is_plan_downgrade = sgqlc.types.Field(Boolean, graphql_name='isPlanDowngrade')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 1.103.0
3
+ Version: 1.107.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=uuqkqj76i-gUkAicvaWWHPWcACtWRBs-P0x8KcQrL5U,68332
5
- stigg/generated/schema.py,sha256=FsdgCYaW4hMIgbBwsyFaXgLD5qT_n2ptUFTdkD3LVoY,569167
6
- stigg_api_client-1.103.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-1.103.0.dist-info/METADATA,sha256=53_p_E-k4t2bVcEbujkbhfAaEfbLcT9hDE6B6rdYyys,3198
8
- stigg_api_client-1.103.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-1.103.0.dist-info/RECORD,,
5
+ stigg/generated/schema.py,sha256=FV_LRRuAHsk1uLnauU9v-cPwirfwp-bNqg3ffey1uDw,569742
6
+ stigg_api_client-1.107.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-1.107.0.dist-info/METADATA,sha256=0D2fSZk4eXSYLIe2V6gFeWseH3f3AsAh8yi8BrtJ2Wo,3198
8
+ stigg_api_client-1.107.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-1.107.0.dist-info/RECORD,,