stigg-api-client 2.0.0__py3-none-any.whl → 2.8.1__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 +3 -23
- {stigg_api_client-2.0.0.dist-info → stigg_api_client-2.8.1.dist-info}/METADATA +1 -1
- {stigg_api_client-2.0.0.dist-info → stigg_api_client-2.8.1.dist-info}/RECORD +5 -5
- {stigg_api_client-2.0.0.dist-info → stigg_api_client-2.8.1.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.0.0.dist-info → stigg_api_client-2.8.1.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -3439,8 +3439,7 @@ class StripeSubscriptionSearchInput(sgqlc.types.Input):
|
|
|
3439
3439
|
|
|
3440
3440
|
class SubscriptionAddonFilter(sgqlc.types.Input):
|
|
3441
3441
|
__schema__ = schema
|
|
3442
|
-
__field_names__ = ('
|
|
3443
|
-
addon = sgqlc.types.Field('SubscriptionAddonFilterAddonFilter', graphql_name='addon')
|
|
3442
|
+
__field_names__ = ('and_', 'created_at', 'id', 'or_', 'price', 'quantity', 'subscription', 'updated_at')
|
|
3444
3443
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilter')), graphql_name='and')
|
|
3445
3444
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3446
3445
|
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
@@ -3451,26 +3450,6 @@ class SubscriptionAddonFilter(sgqlc.types.Input):
|
|
|
3451
3450
|
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3452
3451
|
|
|
3453
3452
|
|
|
3454
|
-
class SubscriptionAddonFilterAddonFilter(sgqlc.types.Input):
|
|
3455
|
-
__schema__ = schema
|
|
3456
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
3457
|
-
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterAddonFilter')), graphql_name='and')
|
|
3458
|
-
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
3459
|
-
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
3460
|
-
description = sgqlc.types.Field(StringFieldComparison, graphql_name='description')
|
|
3461
|
-
display_name = sgqlc.types.Field(StringFieldComparison, graphql_name='displayName')
|
|
3462
|
-
environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
|
|
3463
|
-
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
3464
|
-
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3465
|
-
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterAddonFilter')), graphql_name='or')
|
|
3466
|
-
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
3467
|
-
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
3468
|
-
ref_id = sgqlc.types.Field(StringFieldComparison, graphql_name='refId')
|
|
3469
|
-
status = sgqlc.types.Field(PackageStatusFilterComparison, graphql_name='status')
|
|
3470
|
-
updated_at = sgqlc.types.Field(DateFieldComparison, graphql_name='updatedAt')
|
|
3471
|
-
version_number = sgqlc.types.Field(IntFieldComparison, graphql_name='versionNumber')
|
|
3472
|
-
|
|
3473
|
-
|
|
3474
3453
|
class SubscriptionAddonFilterCustomerSubscriptionFilter(sgqlc.types.Input):
|
|
3475
3454
|
__schema__ = schema
|
|
3476
3455
|
__field_names__ = ('and_', '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')
|
|
@@ -8577,8 +8556,9 @@ class Subscription(sgqlc.types.Type):
|
|
|
8577
8556
|
|
|
8578
8557
|
class SubscriptionAddon(sgqlc.types.Type):
|
|
8579
8558
|
__schema__ = schema
|
|
8580
|
-
__field_names__ = ('addon', 'created_at', 'id', 'price', 'quantity', 'subscription', 'updated_at')
|
|
8559
|
+
__field_names__ = ('addon', 'addon_id', 'created_at', 'id', 'price', 'quantity', 'subscription', 'updated_at')
|
|
8581
8560
|
addon = sgqlc.types.Field(sgqlc.types.non_null(Addon), graphql_name='addon')
|
|
8561
|
+
addon_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='addonId')
|
|
8582
8562
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
8583
8563
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
|
|
8584
8564
|
price = sgqlc.types.Field(Price, graphql_name='price')
|
|
@@ -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=Lp-svtpJAn-LmjYeMGVfIfZbRipu_NjBAEm3SFWQnW8,70845
|
|
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=1rOsjAkkjiw4stFjcC6b8BuvgnWsJNZxC3leM4q_NiU,602688
|
|
6
|
+
stigg_api_client-2.8.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.8.1.dist-info/METADATA,sha256=38s2W0NIZuHkVeI2sERyc5-opi1mC2R0QnbjHR_J90k,3196
|
|
8
|
+
stigg_api_client-2.8.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.8.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|