stigg-api-client 1.72.0__tar.gz → 1.73.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.72.0 → stigg_api_client-1.73.0}/PKG-INFO +1 -1
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/pyproject.toml +1 -1
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/stigg/generated/schema.py +6 -3
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/LICENSE +0 -0
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/README.md +0 -0
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/stigg/__init__.py +0 -0
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/stigg/client.py +0 -0
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-1.72.0 → stigg_api_client-1.73.0}/stigg/generated/operations.py +0 -0
|
@@ -2651,9 +2651,10 @@ class PriceFilterPackageDTOFilter(sgqlc.types.Input):
|
|
|
2651
2651
|
|
|
2652
2652
|
class PricePeriodInput(sgqlc.types.Input):
|
|
2653
2653
|
__schema__ = schema
|
|
2654
|
-
__field_names__ = ('billing_country_code', 'billing_period', 'price', 'tiers')
|
|
2654
|
+
__field_names__ = ('billing_country_code', 'billing_period', 'block_size', 'price', 'tiers')
|
|
2655
2655
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
2656
2656
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
2657
|
+
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
2657
2658
|
price = sgqlc.types.Field(MoneyInputDTO, graphql_name='price')
|
|
2658
2659
|
tiers = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PriceTierInput')), graphql_name='tiers')
|
|
2659
2660
|
|
|
@@ -7177,12 +7178,13 @@ class PlanSumAggregate(sgqlc.types.Type):
|
|
|
7177
7178
|
|
|
7178
7179
|
class Price(sgqlc.types.Type):
|
|
7179
7180
|
__schema__ = schema
|
|
7180
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7181
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7181
7182
|
billing_cadence = sgqlc.types.Field(sgqlc.types.non_null(BillingCadence), graphql_name='billingCadence')
|
|
7182
7183
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
7183
7184
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
7184
7185
|
billing_model = sgqlc.types.Field(sgqlc.types.non_null(BillingModel), graphql_name='billingModel')
|
|
7185
7186
|
billing_period = sgqlc.types.Field(sgqlc.types.non_null(BillingPeriod), graphql_name='billingPeriod')
|
|
7187
|
+
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
7186
7188
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7187
7189
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
7188
7190
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
@@ -7225,12 +7227,13 @@ class PriceCountAggregate(sgqlc.types.Type):
|
|
|
7225
7227
|
|
|
7226
7228
|
class PriceDeleteResponse(sgqlc.types.Type):
|
|
7227
7229
|
__schema__ = schema
|
|
7228
|
-
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7230
|
+
__field_names__ = ('billing_cadence', 'billing_country_code', 'billing_id', 'billing_model', 'billing_period', 'block_size', 'created_at', 'crm_id', 'crm_link_url', 'feature', 'feature_id', 'id', 'max_unit_quantity', 'min_unit_quantity', 'package_id', 'price', 'tiers', 'tiers_mode', 'used_in_subscriptions')
|
|
7229
7231
|
billing_cadence = sgqlc.types.Field(BillingCadence, graphql_name='billingCadence')
|
|
7230
7232
|
billing_country_code = sgqlc.types.Field(String, graphql_name='billingCountryCode')
|
|
7231
7233
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
7232
7234
|
billing_model = sgqlc.types.Field(BillingModel, graphql_name='billingModel')
|
|
7233
7235
|
billing_period = sgqlc.types.Field(BillingPeriod, graphql_name='billingPeriod')
|
|
7236
|
+
block_size = sgqlc.types.Field(Float, graphql_name='blockSize')
|
|
7234
7237
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
7235
7238
|
crm_id = sgqlc.types.Field(String, graphql_name='crmId')
|
|
7236
7239
|
crm_link_url = sgqlc.types.Field(String, graphql_name='crmLinkUrl')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|