stigg-api-client 2.199.0__py3-none-any.whl → 2.204.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 +5 -37
- {stigg_api_client-2.199.0.dist-info → stigg_api_client-2.204.0.dist-info}/METADATA +1 -1
- {stigg_api_client-2.199.0.dist-info → stigg_api_client-2.204.0.dist-info}/RECORD +5 -5
- {stigg_api_client-2.199.0.dist-info → stigg_api_client-2.204.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.199.0.dist-info → stigg_api_client-2.204.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -1762,7 +1762,7 @@ class EnvironmentSort(sgqlc.types.Input):
|
|
|
1762
1762
|
|
|
1763
1763
|
class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
1764
1764
|
__schema__ = schema
|
|
1765
|
-
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'unit_quantity')
|
|
1765
|
+
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'price_unit_amount', 'promotion_code', 'resource_id', 'skip_trial', 'start_date', 'trial_override_configuration', 'unit_quantity')
|
|
1766
1766
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
1767
1767
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
1768
1768
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
@@ -1778,6 +1778,7 @@ class EstimateSubscriptionInput(sgqlc.types.Input):
|
|
|
1778
1778
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
1779
1779
|
skip_trial = sgqlc.types.Field(Boolean, graphql_name='skipTrial')
|
|
1780
1780
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
1781
|
+
trial_override_configuration = sgqlc.types.Field('TrialOverrideConfigurationInput', graphql_name='trialOverrideConfiguration')
|
|
1781
1782
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
1782
1783
|
|
|
1783
1784
|
|
|
@@ -2881,7 +2882,7 @@ class PreviewNextInvoiceInput(sgqlc.types.Input):
|
|
|
2881
2882
|
|
|
2882
2883
|
class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
2883
2884
|
__schema__ = schema
|
|
2884
|
-
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'unit_quantity')
|
|
2885
|
+
__field_names__ = ('addons', 'applied_coupon', 'billable_features', 'billing_country_code', 'billing_information', 'billing_period', 'customer_id', 'environment_id', 'paying_customer_id', 'plan_id', 'promotion_code', 'resource_id', 'schedule_strategy', 'start_date', 'trial_override_configuration', 'unit_quantity')
|
|
2885
2886
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonInput')), graphql_name='addons')
|
|
2886
2887
|
applied_coupon = sgqlc.types.Field('SubscriptionCouponInput', graphql_name='appliedCoupon')
|
|
2887
2888
|
billable_features = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(BillableFeatureInput)), graphql_name='billableFeatures')
|
|
@@ -2896,6 +2897,7 @@ class PreviewSubscriptionInput(sgqlc.types.Input):
|
|
|
2896
2897
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
2897
2898
|
schedule_strategy = sgqlc.types.Field(ScheduleStrategy, graphql_name='scheduleStrategy')
|
|
2898
2899
|
start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
|
|
2900
|
+
trial_override_configuration = sgqlc.types.Field('TrialOverrideConfigurationInput', graphql_name='trialOverrideConfiguration')
|
|
2899
2901
|
unit_quantity = sgqlc.types.Field(Float, graphql_name='unitQuantity')
|
|
2900
2902
|
|
|
2901
2903
|
|
|
@@ -3304,13 +3306,6 @@ class RemoveCouponFromCustomerInput(sgqlc.types.Input):
|
|
|
3304
3306
|
relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
|
|
3305
3307
|
|
|
3306
3308
|
|
|
3307
|
-
class RemoveCouponFromCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3308
|
-
__schema__ = schema
|
|
3309
|
-
__field_names__ = ('id', 'relation_id')
|
|
3310
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
3311
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
3309
|
class RemoveExperimentFromCustomerInput(sgqlc.types.Input):
|
|
3315
3310
|
__schema__ = schema
|
|
3316
3311
|
__field_names__ = ('id', 'relation_id')
|
|
@@ -3400,13 +3395,6 @@ class SetCouponOnCustomerInput(sgqlc.types.Input):
|
|
|
3400
3395
|
relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
|
|
3401
3396
|
|
|
3402
3397
|
|
|
3403
|
-
class SetCouponOnCustomerSubscriptionInput(sgqlc.types.Input):
|
|
3404
|
-
__schema__ = schema
|
|
3405
|
-
__field_names__ = ('id', 'relation_id')
|
|
3406
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
3407
|
-
relation_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='relationId')
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
3398
|
class SetExperimentOnCustomerInput(sgqlc.types.Input):
|
|
3411
3399
|
__schema__ = schema
|
|
3412
3400
|
__field_names__ = ('id', 'relation_id')
|
|
@@ -4892,12 +4880,6 @@ class CouponAggregateGroupBy(sgqlc.types.Type):
|
|
|
4892
4880
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
4893
4881
|
|
|
4894
4882
|
|
|
4895
|
-
class CouponAvgAggregate(sgqlc.types.Type):
|
|
4896
|
-
__schema__ = schema
|
|
4897
|
-
__field_names__ = ('id',)
|
|
4898
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
4899
|
-
|
|
4900
|
-
|
|
4901
4883
|
class CouponConnection(sgqlc.types.relay.Connection):
|
|
4902
4884
|
__schema__ = schema
|
|
4903
4885
|
__field_names__ = ('edges', 'page_info', 'total_count')
|
|
@@ -4958,12 +4940,6 @@ class CouponMinAggregate(sgqlc.types.Type):
|
|
|
4958
4940
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
4959
4941
|
|
|
4960
4942
|
|
|
4961
|
-
class CouponSumAggregate(sgqlc.types.Type):
|
|
4962
|
-
__schema__ = schema
|
|
4963
|
-
__field_names__ = ('id',)
|
|
4964
|
-
id = sgqlc.types.Field(Float, graphql_name='id')
|
|
4965
|
-
|
|
4966
|
-
|
|
4967
4943
|
class Customer(sgqlc.types.Type):
|
|
4968
4944
|
__schema__ = schema
|
|
4969
4945
|
__field_names__ = ('additional_meta_data', 'aws_marketplace_customer_id', 'billing_currency', 'billing_id', 'billing_link_url', 'coupon', 'created_at', 'crm_hubspot_company_id', 'crm_hubspot_company_url', 'crm_id', 'customer_id', 'default_payment_expiration_month', 'default_payment_expiration_year', 'default_payment_method_id', 'default_payment_method_last4_digits', 'default_payment_method_type', 'deleted_at', 'eligible_for_trial', 'email', 'environment', 'environment_id', 'exclude_from_experiment', 'experiment', 'experiment_info', 'has_active_resource', 'has_active_subscription', 'has_payment_method', 'id', 'name', 'promotional_entitlements', 'ref_id', 'salesforce_id', 'statistics', 'subscriptions', 'sync_states', 'total_active_promotional_entitlements', 'total_active_subscription', 'trialed_plans', 'updated_at')
|
|
@@ -6656,7 +6632,7 @@ class MonthlyResetPeriodConfig(sgqlc.types.Type):
|
|
|
6656
6632
|
|
|
6657
6633
|
class Mutation(sgqlc.types.Type):
|
|
6658
6634
|
__schema__ = schema
|
|
6659
|
-
__field_names__ = ('add_compatible_addons_to_plan', 'apply_subscription', 'archive_addon', 'archive_customer', 'archive_environment', 'archive_feature', 'archive_one_coupon', 'archive_package_group', 'archive_plan', 'attach_customer_payment_method', 'cancel_schedule', 'cancel_subscription', 'charge_subscription_usage', 'create_account', 'create_addon_draft', 'create_empty_addon_draft', 'create_empty_plan_draft', 'create_feature', 'create_many_package_entitlements', 'create_many_promotional_entitlements', 'create_one_addon', 'create_one_coupon', 'create_one_customer', 'create_one_environment', 'create_one_experiment', 'create_one_hook', 'create_one_integration', 'create_one_plan', 'create_one_product', 'create_or_update_aws_marketplace_product', 'create_package_group', 'create_plan_draft', 'create_subscription', 'create_usage_measurement', 'delegate_subscription_to_customer', 'delete_feature', 'delete_one_feature', 'delete_one_hook', 'delete_one_integration', 'delete_one_package_entitlement', 'delete_one_price', 'delete_one_product', 'delete_one_promotional_entitlement', 'detach_customer_payment_method', 'duplicate_product', 'edit_package_group', 'estimate_subscription', 'estimate_subscription_update', 'grant_promotional_entitlements', 'hide_getting_started_page', 'import_customers_bulk', 'import_one_customer', 'import_subscriptions_bulk', 'init_add_stripe_customer_payment_method', 'invite_members', 'mark_invoice_as_paid', 'merge_environment', 'migrate_subscription_to_latest', 'prepare_payment_method_form', 'preview_next_invoice', 'preview_subscription', 'provision_customer', 'provision_sandbox', 'provision_subscription', 'provision_subscription_v2', 'publish_addon', 'publish_plan', 'purge_customer_cache', 'recalculate_entitlements', 'register_member', 'remove_addon_draft', 'remove_base_plan_from_plan', 'remove_compatible_addons_from_plan', 'remove_coupon_from_customer', '
|
|
6635
|
+
__field_names__ = ('add_compatible_addons_to_plan', 'apply_subscription', 'archive_addon', 'archive_customer', 'archive_environment', 'archive_feature', 'archive_one_coupon', 'archive_package_group', 'archive_plan', 'attach_customer_payment_method', 'cancel_schedule', 'cancel_subscription', 'charge_subscription_usage', 'create_account', 'create_addon_draft', 'create_empty_addon_draft', 'create_empty_plan_draft', 'create_feature', 'create_many_package_entitlements', 'create_many_promotional_entitlements', 'create_one_addon', 'create_one_coupon', 'create_one_customer', 'create_one_environment', 'create_one_experiment', 'create_one_hook', 'create_one_integration', 'create_one_plan', 'create_one_product', 'create_or_update_aws_marketplace_product', 'create_package_group', 'create_plan_draft', 'create_subscription', 'create_usage_measurement', 'delegate_subscription_to_customer', 'delete_feature', 'delete_one_feature', 'delete_one_hook', 'delete_one_integration', 'delete_one_package_entitlement', 'delete_one_price', 'delete_one_product', 'delete_one_promotional_entitlement', 'detach_customer_payment_method', 'duplicate_product', 'edit_package_group', 'estimate_subscription', 'estimate_subscription_update', 'grant_promotional_entitlements', 'hide_getting_started_page', 'import_customers_bulk', 'import_one_customer', 'import_subscriptions_bulk', 'init_add_stripe_customer_payment_method', 'invite_members', 'mark_invoice_as_paid', 'merge_environment', 'migrate_subscription_to_latest', 'prepare_payment_method_form', 'preview_next_invoice', 'preview_subscription', 'provision_customer', 'provision_sandbox', 'provision_subscription', 'provision_subscription_v2', 'publish_addon', 'publish_plan', 'purge_customer_cache', 'recalculate_entitlements', 'register_member', 'remove_addon_draft', 'remove_base_plan_from_plan', 'remove_compatible_addons_from_plan', 'remove_coupon_from_customer', 'remove_experiment_from_customer', 'remove_experiment_from_customer_subscription', 'remove_member', 'remove_plan_draft', 'report_entitlement_check_requested', 'report_event', 'report_usage', 'report_usage_bulk', 'resend_email_verification', 'resync_integration', 'revoke_promotional_entitlement', 'set_base_plan_on_plan', 'set_compatible_addons_on_plan', 'set_compatible_package_groups', 'set_coupon_on_customer', 'set_experiment_on_customer', 'set_experiment_on_customer_subscription', 'set_package_group_addons', 'set_package_pricing', 'set_widget_configuration', 'start_experiment', 'stop_experiment', 'subscription_maximum_spend', 'sync_tax_rates', 'transfer_subscription', 'transfer_subscription_to_resource', 'trigger_import_catalog', 'trigger_import_customers', 'trigger_plan_subscription_migration', 'trigger_subscription_billing_month_ends_soon_webhook', 'trigger_subscription_usage_sync', 'unarchive_customer', 'unarchive_environment', 'update_account', 'update_entitlements_order', 'update_feature', 'update_one_addon', 'update_one_coupon', 'update_one_customer', 'update_one_environment', 'update_one_experiment', 'update_one_hook', 'update_one_integration', 'update_one_package_entitlement', 'update_one_plan', 'update_one_product', 'update_one_promotional_entitlement', 'update_one_subscription', 'update_user')
|
|
6660
6636
|
add_compatible_addons_to_plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='addCompatibleAddonsToPlan', args=sgqlc.types.ArgDict((
|
|
6661
6637
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(AddCompatibleAddonsToPlanInput), graphql_name='input', default=None)),
|
|
6662
6638
|
))
|
|
@@ -6948,10 +6924,6 @@ class Mutation(sgqlc.types.Type):
|
|
|
6948
6924
|
)
|
|
6949
6925
|
remove_coupon_from_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='removeCouponFromCustomer', args=sgqlc.types.ArgDict((
|
|
6950
6926
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveCouponFromCustomerInput), graphql_name='input', default=None)),
|
|
6951
|
-
))
|
|
6952
|
-
)
|
|
6953
|
-
remove_coupon_from_customer_subscription = sgqlc.types.Field(sgqlc.types.non_null(CustomerSubscription), graphql_name='removeCouponFromCustomerSubscription', args=sgqlc.types.ArgDict((
|
|
6954
|
-
('input', sgqlc.types.Arg(sgqlc.types.non_null(RemoveCouponFromCustomerSubscriptionInput), graphql_name='input', default=None)),
|
|
6955
6927
|
))
|
|
6956
6928
|
)
|
|
6957
6929
|
remove_experiment_from_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='removeExperimentFromCustomer', args=sgqlc.types.ArgDict((
|
|
@@ -7009,10 +6981,6 @@ class Mutation(sgqlc.types.Type):
|
|
|
7009
6981
|
)
|
|
7010
6982
|
set_coupon_on_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='setCouponOnCustomer', args=sgqlc.types.ArgDict((
|
|
7011
6983
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(SetCouponOnCustomerInput), graphql_name='input', default=None)),
|
|
7012
|
-
))
|
|
7013
|
-
)
|
|
7014
|
-
set_coupon_on_customer_subscription = sgqlc.types.Field(sgqlc.types.non_null(CustomerSubscription), graphql_name='setCouponOnCustomerSubscription', args=sgqlc.types.ArgDict((
|
|
7015
|
-
('input', sgqlc.types.Arg(sgqlc.types.non_null(SetCouponOnCustomerSubscriptionInput), graphql_name='input', default=None)),
|
|
7016
6984
|
))
|
|
7017
6985
|
)
|
|
7018
6986
|
set_experiment_on_customer = sgqlc.types.Field(sgqlc.types.non_null(Customer), graphql_name='setExperimentOnCustomer', args=sgqlc.types.ArgDict((
|
|
@@ -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=L-KsnUd2mH-izMg1X2CIT-zKJPNVqavXkZAkWPw3FWY,76616
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-2.
|
|
7
|
-
stigg_api_client-2.
|
|
8
|
-
stigg_api_client-2.
|
|
9
|
-
stigg_api_client-2.
|
|
5
|
+
stigg/generated/schema.py,sha256=HdZ6BecVykXGZGG4n28dYUHpJV1w5QVOr5uIdUxw3pI,618692
|
|
6
|
+
stigg_api_client-2.204.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.204.0.dist-info/METADATA,sha256=h6HdVjp853_9-wgsz-24gifB3E6E0nvbYsXjHBGqZGc,3198
|
|
8
|
+
stigg_api_client-2.204.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.204.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|