stigg-api-client 1.103.0__tar.gz → 1.108.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.
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/PKG-INFO +1 -1
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/pyproject.toml +1 -1
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/stigg/generated/schema.py +13 -3
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/LICENSE +0 -0
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/README.md +0 -0
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/stigg/__init__.py +0 -0
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/stigg/client.py +0 -0
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.103.0 → stigg_api_client-1.108.0}/stigg/generated/operations.py +0 -0
|
@@ -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')
|
|
@@ -8894,10 +8903,11 @@ class UsageUpdated(sgqlc.types.Type):
|
|
|
8894
8903
|
|
|
8895
8904
|
class User(sgqlc.types.Type):
|
|
8896
8905
|
__schema__ = schema
|
|
8897
|
-
__field_names__ = ('department', 'email', 'id', 'last_seen_at', 'memberships', 'name', 'profile_image_url')
|
|
8906
|
+
__field_names__ = ('department', 'email', 'id', 'intercom_token', 'last_seen_at', 'memberships', 'name', 'profile_image_url')
|
|
8898
8907
|
department = sgqlc.types.Field(Department, graphql_name='department')
|
|
8899
8908
|
email = sgqlc.types.Field(String, graphql_name='email')
|
|
8900
8909
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
8910
|
+
intercom_token = sgqlc.types.Field(String, graphql_name='intercomToken')
|
|
8901
8911
|
last_seen_at = sgqlc.types.Field(DateTime, graphql_name='lastSeenAt')
|
|
8902
8912
|
memberships = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Member))), graphql_name='memberships')
|
|
8903
8913
|
name = sgqlc.types.Field(String, graphql_name='name')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|