stigg-api-client 2.100.0__py3-none-any.whl → 2.101.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/operations.py +5 -1
- stigg/generated/schema.py +25 -12
- {stigg_api_client-2.100.0.dist-info → stigg_api_client-2.101.0.dist-info}/METADATA +1 -1
- stigg_api_client-2.101.0.dist-info/RECORD +9 -0
- stigg_api_client-2.100.0.dist-info/RECORD +0 -9
- {stigg_api_client-2.100.0.dist-info → stigg_api_client-2.101.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.100.0.dist-info → stigg_api_client-2.101.0.dist-info}/WHEEL +0 -0
stigg/generated/operations.py
CHANGED
|
@@ -212,6 +212,8 @@ def fragment_slim_subscription_fragment_v2():
|
|
|
212
212
|
_frag.current_billing_period_end()
|
|
213
213
|
_frag_customer = _frag.customer()
|
|
214
214
|
_frag_customer.customer_id()
|
|
215
|
+
_frag_paying_customer = _frag.paying_customer()
|
|
216
|
+
_frag_paying_customer.customer_id()
|
|
215
217
|
_frag_resource = _frag.resource()
|
|
216
218
|
_frag_resource.resource_id()
|
|
217
219
|
_frag_plan = _frag.plan()
|
|
@@ -245,8 +247,8 @@ def fragment_slim_subscription_fragment():
|
|
|
245
247
|
_frag_experiment_info = _frag.experiment_info()
|
|
246
248
|
_frag_experiment_info.name()
|
|
247
249
|
_frag_experiment_info.id()
|
|
248
|
-
_frag_experiment_info.group_name()
|
|
249
250
|
_frag_experiment_info.group_type()
|
|
251
|
+
_frag_experiment_info.group_name()
|
|
250
252
|
_frag_prices = _frag.prices()
|
|
251
253
|
_frag_prices.usage_limit()
|
|
252
254
|
_frag_prices_price = _frag_prices.price()
|
|
@@ -321,6 +323,8 @@ def fragment_subscription_fragment():
|
|
|
321
323
|
_frag = sgqlc.operation.Fragment(_schema.CustomerSubscription, 'SubscriptionFragment')
|
|
322
324
|
_frag.id()
|
|
323
325
|
_frag.subscription_id()
|
|
326
|
+
_frag_paying_customer = _frag.paying_customer()
|
|
327
|
+
_frag_paying_customer.__fragment__(fragment_slim_customer_fragment())
|
|
324
328
|
_frag.start_date()
|
|
325
329
|
_frag.end_date()
|
|
326
330
|
_frag.trial_end_date()
|
stigg/generated/schema.py
CHANGED
|
@@ -128,7 +128,7 @@ class CustomerSortFields(sgqlc.types.Enum):
|
|
|
128
128
|
|
|
129
129
|
class CustomerSubscriptionSortFields(sgqlc.types.Enum):
|
|
130
130
|
__schema__ = schema
|
|
131
|
-
__choices__ = ('billingCycleAnchor', 'billingId', 'cancelReason', 'cancellationDate', 'createdAt', 'crmId', 'crmLinkUrl', 'currentBillingPeriodEnd', 'currentBillingPeriodStart', 'customerId', 'effectiveEndDate', 'endDate', 'environmentId', 'id', 'oldBillingId', 'paymentCollection', 'pricingType', 'refId', 'resourceId', 'startDate', 'status', 'subscriptionId', 'trialEndDate')
|
|
131
|
+
__choices__ = ('billingCycleAnchor', 'billingId', 'cancelReason', 'cancellationDate', 'createdAt', 'crmId', 'crmLinkUrl', 'currentBillingPeriodEnd', 'currentBillingPeriodStart', 'customerId', 'effectiveEndDate', 'endDate', 'environmentId', 'id', 'oldBillingId', 'payingCustomerId', 'paymentCollection', 'pricingType', 'refId', 'resourceId', 'startDate', 'status', 'subscriptionId', 'trialEndDate')
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
DateTime = sgqlc.types.datetime.DateTime
|
|
@@ -1225,7 +1225,7 @@ class CustomerFilter(sgqlc.types.Input):
|
|
|
1225
1225
|
|
|
1226
1226
|
class CustomerFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
1227
1227
|
__schema__ = schema
|
|
1228
|
-
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
1228
|
+
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
1229
1229
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilterCustomerSubscriptionFilter')), graphql_name='and')
|
|
1230
1230
|
billing_cycle_anchor = sgqlc.types.Field('DateFieldComparison', graphql_name='billingCycleAnchor')
|
|
1231
1231
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
@@ -1243,6 +1243,7 @@ class CustomerFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
1243
1243
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
1244
1244
|
old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
|
|
1245
1245
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerFilterCustomerSubscriptionFilter')), graphql_name='or')
|
|
1246
|
+
paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
|
|
1246
1247
|
payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
|
|
1247
1248
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
1248
1249
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1347,7 +1348,7 @@ class CustomerResourceFilterCustomerFilter(sgqlc.types.Input):
|
|
|
1347
1348
|
|
|
1348
1349
|
class CustomerResourceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
1349
1350
|
__schema__ = schema
|
|
1350
|
-
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
1351
|
+
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
1351
1352
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilterCustomerSubscriptionFilter')), graphql_name='and')
|
|
1352
1353
|
billing_cycle_anchor = sgqlc.types.Field('DateFieldComparison', graphql_name='billingCycleAnchor')
|
|
1353
1354
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
@@ -1365,6 +1366,7 @@ class CustomerResourceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
1365
1366
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
1366
1367
|
old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
|
|
1367
1368
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerResourceFilterCustomerSubscriptionFilter')), graphql_name='or')
|
|
1369
|
+
paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
|
|
1368
1370
|
payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
|
|
1369
1371
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
1370
1372
|
ref_id = sgqlc.types.Field('StringFieldComparison', graphql_name='refId')
|
|
@@ -1399,7 +1401,7 @@ class CustomerSort(sgqlc.types.Input):
|
|
|
1399
1401
|
|
|
1400
1402
|
class CustomerSubscriptionFilter(sgqlc.types.Input):
|
|
1401
1403
|
__schema__ = schema
|
|
1402
|
-
__field_names__ = ('addons', 'and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'trial_end_date')
|
|
1404
|
+
__field_names__ = ('addons', 'and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer', 'paying_customer_id', 'payment_collection', 'plan', 'prices', 'pricing_type', 'ref_id', 'resource', 'resource_id', 'start_date', 'status', 'subscription_entitlements', 'subscription_id', 'trial_end_date')
|
|
1403
1405
|
addons = sgqlc.types.Field('CustomerSubscriptionFilterSubscriptionAddonFilter', graphql_name='addons')
|
|
1404
1406
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilter')), graphql_name='and')
|
|
1405
1407
|
billing_cycle_anchor = sgqlc.types.Field('DateFieldComparison', graphql_name='billingCycleAnchor')
|
|
@@ -1419,6 +1421,8 @@ class CustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
1419
1421
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
1420
1422
|
old_billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='oldBillingId')
|
|
1421
1423
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('CustomerSubscriptionFilter')), graphql_name='or')
|
|
1424
|
+
paying_customer = sgqlc.types.Field('CustomerSubscriptionFilterCustomerFilter', graphql_name='payingCustomer')
|
|
1425
|
+
paying_customer_id = sgqlc.types.Field('StringFieldComparison', graphql_name='payingCustomerId')
|
|
1422
1426
|
payment_collection = sgqlc.types.Field('PaymentCollectionFilterComparison', graphql_name='paymentCollection')
|
|
1423
1427
|
plan = sgqlc.types.Field('CustomerSubscriptionFilterPlanFilter', graphql_name='plan')
|
|
1424
1428
|
prices = sgqlc.types.Field('CustomerSubscriptionFilterSubscriptionPriceFilter', graphql_name='prices')
|
|
@@ -3508,7 +3512,7 @@ class SubscriptionAddonFilter(sgqlc.types.Input):
|
|
|
3508
3512
|
|
|
3509
3513
|
class SubscriptionAddonFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
3510
3514
|
__schema__ = schema
|
|
3511
|
-
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3515
|
+
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3512
3516
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterCustomerSubscriptionFilter')), graphql_name='and')
|
|
3513
3517
|
billing_cycle_anchor = sgqlc.types.Field(DateFieldComparison, graphql_name='billingCycleAnchor')
|
|
3514
3518
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
@@ -3526,6 +3530,7 @@ class SubscriptionAddonFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
3526
3530
|
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
3527
3531
|
old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
|
|
3528
3532
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterCustomerSubscriptionFilter')), graphql_name='or')
|
|
3533
|
+
paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
|
|
3529
3534
|
payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
|
|
3530
3535
|
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
3531
3536
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -3633,7 +3638,7 @@ class SubscriptionEntitlementFilter(sgqlc.types.Input):
|
|
|
3633
3638
|
|
|
3634
3639
|
class SubscriptionEntitlementFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
3635
3640
|
__schema__ = schema
|
|
3636
|
-
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3641
|
+
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3637
3642
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilterCustomerSubscriptionFilter')), graphql_name='and')
|
|
3638
3643
|
billing_cycle_anchor = sgqlc.types.Field(DateFieldComparison, graphql_name='billingCycleAnchor')
|
|
3639
3644
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
@@ -3651,6 +3656,7 @@ class SubscriptionEntitlementFilterCustomerSubscriptionFilter(sgqlc.types.Input)
|
|
|
3651
3656
|
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
3652
3657
|
old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
|
|
3653
3658
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionEntitlementFilterCustomerSubscriptionFilter')), graphql_name='or')
|
|
3659
|
+
paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
|
|
3654
3660
|
payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
|
|
3655
3661
|
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
3656
3662
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -3789,7 +3795,7 @@ class SubscriptionPriceFilter(sgqlc.types.Input):
|
|
|
3789
3795
|
|
|
3790
3796
|
class SubscriptionPriceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
3791
3797
|
__schema__ = schema
|
|
3792
|
-
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3798
|
+
__field_names__ = ('and_', 'billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'or_', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
3793
3799
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionPriceFilterCustomerSubscriptionFilter')), graphql_name='and')
|
|
3794
3800
|
billing_cycle_anchor = sgqlc.types.Field(DateFieldComparison, graphql_name='billingCycleAnchor')
|
|
3795
3801
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
@@ -3807,6 +3813,7 @@ class SubscriptionPriceFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
|
3807
3813
|
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
3808
3814
|
old_billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='oldBillingId')
|
|
3809
3815
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionPriceFilterCustomerSubscriptionFilter')), graphql_name='or')
|
|
3816
|
+
paying_customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='payingCustomerId')
|
|
3810
3817
|
payment_collection = sgqlc.types.Field(PaymentCollectionFilterComparison, graphql_name='paymentCollection')
|
|
3811
3818
|
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
3812
3819
|
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
@@ -5263,7 +5270,7 @@ class CustomerStatistics(sgqlc.types.Type):
|
|
|
5263
5270
|
|
|
5264
5271
|
class CustomerSubscription(sgqlc.types.Type):
|
|
5265
5272
|
__schema__ = schema
|
|
5266
|
-
__field_names__ = ('additional_meta_data', 'addons', 'billing_cycle_anchor', 'billing_id', 'billing_link_url', 'billing_sync_error', 'budget', 'budget_exceeded', 'cancel_reason', 'cancellation_date', 'coupon', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'free_items', 'future_updates', 'id', 'is_custom_price_subscription', 'last_usage_invoice', 'latest_invoice', 'minimum_spend', 'old_billing_id', 'outdated_price_packages', 'payment_collection', 'payment_collection_method', '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')
|
|
5273
|
+
__field_names__ = ('additional_meta_data', 'addons', 'billing_cycle_anchor', 'billing_id', 'billing_link_url', 'billing_sync_error', 'budget', 'budget_exceeded', 'cancel_reason', 'cancellation_date', 'coupon', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer', 'customer_id', 'effective_end_date', 'end_date', 'environment', 'environment_id', 'experiment', 'experiment_info', 'free_items', 'future_updates', 'id', 'is_custom_price_subscription', 'last_usage_invoice', 'latest_invoice', 'minimum_spend', 'old_billing_id', 'outdated_price_packages', 'paying_customer', 'paying_customer_id', 'payment_collection', 'payment_collection_method', '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')
|
|
5267
5274
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5268
5275
|
addons = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddon')), graphql_name='addons', args=sgqlc.types.ArgDict((
|
|
5269
5276
|
('filter', sgqlc.types.Arg(SubscriptionAddonFilter, graphql_name='filter', default={})),
|
|
@@ -5301,6 +5308,8 @@ class CustomerSubscription(sgqlc.types.Type):
|
|
|
5301
5308
|
minimum_spend = sgqlc.types.Field('SubscriptionMinimumSpend', graphql_name='minimumSpend')
|
|
5302
5309
|
old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
|
|
5303
5310
|
outdated_price_packages = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name='outdatedPricePackages')
|
|
5311
|
+
paying_customer = sgqlc.types.Field(Customer, graphql_name='payingCustomer')
|
|
5312
|
+
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
5304
5313
|
payment_collection = sgqlc.types.Field(sgqlc.types.non_null(PaymentCollection), graphql_name='paymentCollection')
|
|
5305
5314
|
payment_collection_method = sgqlc.types.Field(PaymentCollectionMethod, graphql_name='paymentCollectionMethod')
|
|
5306
5315
|
plan = sgqlc.types.Field(sgqlc.types.non_null('Plan'), graphql_name='plan')
|
|
@@ -5331,7 +5340,7 @@ class CustomerSubscription(sgqlc.types.Type):
|
|
|
5331
5340
|
|
|
5332
5341
|
class CustomerSubscriptionAggregateGroupBy(sgqlc.types.Type):
|
|
5333
5342
|
__schema__ = schema
|
|
5334
|
-
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5343
|
+
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5335
5344
|
billing_cycle_anchor = sgqlc.types.Field(DateTime, graphql_name='billingCycleAnchor')
|
|
5336
5345
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5337
5346
|
cancel_reason = sgqlc.types.Field(SubscriptionCancelReason, graphql_name='cancelReason')
|
|
@@ -5347,6 +5356,7 @@ class CustomerSubscriptionAggregateGroupBy(sgqlc.types.Type):
|
|
|
5347
5356
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5348
5357
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5349
5358
|
old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
|
|
5359
|
+
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
5350
5360
|
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
5351
5361
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
5352
5362
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -5367,7 +5377,7 @@ class CustomerSubscriptionConnection(sgqlc.types.relay.Connection):
|
|
|
5367
5377
|
|
|
5368
5378
|
class CustomerSubscriptionCountAggregate(sgqlc.types.Type):
|
|
5369
5379
|
__schema__ = schema
|
|
5370
|
-
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5380
|
+
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5371
5381
|
billing_cycle_anchor = sgqlc.types.Field(Int, graphql_name='billingCycleAnchor')
|
|
5372
5382
|
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
5373
5383
|
cancel_reason = sgqlc.types.Field(Int, graphql_name='cancelReason')
|
|
@@ -5383,6 +5393,7 @@ class CustomerSubscriptionCountAggregate(sgqlc.types.Type):
|
|
|
5383
5393
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
5384
5394
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
5385
5395
|
old_billing_id = sgqlc.types.Field(Int, graphql_name='oldBillingId')
|
|
5396
|
+
paying_customer_id = sgqlc.types.Field(Int, graphql_name='payingCustomerId')
|
|
5386
5397
|
payment_collection = sgqlc.types.Field(Int, graphql_name='paymentCollection')
|
|
5387
5398
|
pricing_type = sgqlc.types.Field(Int, graphql_name='pricingType')
|
|
5388
5399
|
ref_id = sgqlc.types.Field(Int, graphql_name='refId')
|
|
@@ -5402,7 +5413,7 @@ class CustomerSubscriptionEdge(sgqlc.types.Type):
|
|
|
5402
5413
|
|
|
5403
5414
|
class CustomerSubscriptionMaxAggregate(sgqlc.types.Type):
|
|
5404
5415
|
__schema__ = schema
|
|
5405
|
-
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5416
|
+
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5406
5417
|
billing_cycle_anchor = sgqlc.types.Field(DateTime, graphql_name='billingCycleAnchor')
|
|
5407
5418
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5408
5419
|
cancel_reason = sgqlc.types.Field(SubscriptionCancelReason, graphql_name='cancelReason')
|
|
@@ -5418,6 +5429,7 @@ class CustomerSubscriptionMaxAggregate(sgqlc.types.Type):
|
|
|
5418
5429
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5419
5430
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5420
5431
|
old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
|
|
5432
|
+
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
5421
5433
|
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
5422
5434
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
5423
5435
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -5430,7 +5442,7 @@ class CustomerSubscriptionMaxAggregate(sgqlc.types.Type):
|
|
|
5430
5442
|
|
|
5431
5443
|
class CustomerSubscriptionMinAggregate(sgqlc.types.Type):
|
|
5432
5444
|
__schema__ = schema
|
|
5433
|
-
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5445
|
+
__field_names__ = ('billing_cycle_anchor', 'billing_id', 'cancel_reason', 'cancellation_date', 'created_at', 'crm_id', 'crm_link_url', 'current_billing_period_end', 'current_billing_period_start', 'customer_id', 'effective_end_date', 'end_date', 'environment_id', 'id', 'old_billing_id', 'paying_customer_id', 'payment_collection', 'pricing_type', 'ref_id', 'resource_id', 'start_date', 'status', 'subscription_id', 'trial_end_date')
|
|
5434
5446
|
billing_cycle_anchor = sgqlc.types.Field(DateTime, graphql_name='billingCycleAnchor')
|
|
5435
5447
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
5436
5448
|
cancel_reason = sgqlc.types.Field(SubscriptionCancelReason, graphql_name='cancelReason')
|
|
@@ -5446,6 +5458,7 @@ class CustomerSubscriptionMinAggregate(sgqlc.types.Type):
|
|
|
5446
5458
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5447
5459
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5448
5460
|
old_billing_id = sgqlc.types.Field(String, graphql_name='oldBillingId')
|
|
5461
|
+
paying_customer_id = sgqlc.types.Field(String, graphql_name='payingCustomerId')
|
|
5449
5462
|
payment_collection = sgqlc.types.Field(PaymentCollection, graphql_name='paymentCollection')
|
|
5450
5463
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
5451
5464
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -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=qE2Xzpypr938ehE2FeA1212q31EE9H4Sj7SDiCWOiTA,74805
|
|
5
|
+
stigg/generated/schema.py,sha256=I0Dnq7Wrl9x_iWmD63U-CKKVxvp1nuMcMSAzvGoigrM,613640
|
|
6
|
+
stigg_api_client-2.101.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.101.0.dist-info/METADATA,sha256=VrGD8nyrw0-4OzLsaROmG4KuXkfTgXWickas8JLDhpE,3198
|
|
8
|
+
stigg_api_client-2.101.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.101.0.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=nBXM5BdWvFIFR7G8fRFI1iSbUuqAWDz2SbgGjoZWzxY,74587
|
|
5
|
-
stigg/generated/schema.py,sha256=Cgl2y84JHwMR7pqqsgS57vX6NfwosVYdlfzUXQIc4XM,612127
|
|
6
|
-
stigg_api_client-2.100.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-2.100.0.dist-info/METADATA,sha256=5kf5rwf9KY-IvZQoVNzgnposotdoyuqAW31p6IBzXcw,3198
|
|
8
|
-
stigg_api_client-2.100.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-2.100.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|