stigg-api-client 3.26.5__tar.gz → 3.34.1__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-3.26.5 → stigg_api_client-3.34.1}/PKG-INFO +1 -1
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/pyproject.toml +1 -1
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/stigg/generated/operations.py +1 -0
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/stigg/generated/schema.py +30 -9
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/LICENSE +0 -0
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/README.md +0 -0
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/stigg/__init__.py +0 -0
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/stigg/client.py +0 -0
- {stigg_api_client-3.26.5 → stigg_api_client-3.34.1}/stigg/generated/__init__.py +0 -0
|
@@ -1354,12 +1354,14 @@ class CursorPaging(sgqlc.types.Input):
|
|
|
1354
1354
|
|
|
1355
1355
|
class CustomCurrencyInput(sgqlc.types.Input):
|
|
1356
1356
|
__schema__ = schema
|
|
1357
|
-
__field_names__ = ('additional_meta_data', 'currency_id', 'display_name', 'environment_id', 'symbol')
|
|
1357
|
+
__field_names__ = ('additional_meta_data', 'currency_id', 'description', 'display_name', 'environment_id', 'symbol', 'units')
|
|
1358
1358
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
1359
1359
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
1360
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
1360
1361
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
1361
1362
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
1362
|
-
symbol = sgqlc.types.Field(
|
|
1363
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
1364
|
+
units = sgqlc.types.Field('UnitsInput', graphql_name='units')
|
|
1363
1365
|
|
|
1364
1366
|
|
|
1365
1367
|
class CustomerBillingInfo(sgqlc.types.Input):
|
|
@@ -4517,6 +4519,13 @@ class UnitTransformationInput(sgqlc.types.Input):
|
|
|
4517
4519
|
round = sgqlc.types.Field(UnitTransformationRound, graphql_name='round')
|
|
4518
4520
|
|
|
4519
4521
|
|
|
4522
|
+
class UnitsInput(sgqlc.types.Input):
|
|
4523
|
+
__schema__ = schema
|
|
4524
|
+
__field_names__ = ('plural', 'singular')
|
|
4525
|
+
plural = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='plural')
|
|
4526
|
+
singular = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='singular')
|
|
4527
|
+
|
|
4528
|
+
|
|
4520
4529
|
class UnlinkFeatureGroupFromPackageInput(sgqlc.types.Input):
|
|
4521
4530
|
__schema__ = schema
|
|
4522
4531
|
__field_names__ = ('environment_id', 'feature_group_id', 'package_id')
|
|
@@ -4562,12 +4571,14 @@ class UpdateCreditGrantInput(sgqlc.types.Input):
|
|
|
4562
4571
|
|
|
4563
4572
|
class UpdateCustomCurrencyInput(sgqlc.types.Input):
|
|
4564
4573
|
__schema__ = schema
|
|
4565
|
-
__field_names__ = ('additional_meta_data', 'currency_id', 'display_name', 'environment_id', 'symbol')
|
|
4574
|
+
__field_names__ = ('additional_meta_data', 'currency_id', 'description', 'display_name', 'environment_id', 'symbol', 'units')
|
|
4566
4575
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
4567
4576
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
4577
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4568
4578
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4569
4579
|
environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
|
|
4570
4580
|
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
4581
|
+
units = sgqlc.types.Field(UnitsInput, graphql_name='units')
|
|
4571
4582
|
|
|
4572
4583
|
|
|
4573
4584
|
class UpdateCustomerInput(sgqlc.types.Input):
|
|
@@ -5529,14 +5540,14 @@ class CreditBalanceSummary(sgqlc.types.Type):
|
|
|
5529
5540
|
|
|
5530
5541
|
class CreditGrant(sgqlc.types.Type):
|
|
5531
5542
|
__schema__ = schema
|
|
5532
|
-
__field_names__ = ('additional_meta_data', 'amount', 'comment', '
|
|
5543
|
+
__field_names__ = ('additional_meta_data', 'amount', 'comment', 'consumed_amount', 'cost', 'created_at', 'currency_id', 'customer_id', 'display_name', 'effective_at', 'expire_at', 'grant_id', 'grant_type', 'id', 'priority', 'resource_id', 'updated_at')
|
|
5533
5544
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5534
5545
|
amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='amount')
|
|
5535
5546
|
comment = sgqlc.types.Field(String, graphql_name='comment')
|
|
5547
|
+
consumed_amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='consumedAmount')
|
|
5536
5548
|
cost = sgqlc.types.Field(sgqlc.types.non_null('Money'), graphql_name='cost')
|
|
5537
5549
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5538
5550
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5539
|
-
current_amount = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentAmount')
|
|
5540
5551
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
5541
5552
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5542
5553
|
effective_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='effectiveAt')
|
|
@@ -5558,13 +5569,15 @@ class CreditRate(sgqlc.types.Type):
|
|
|
5558
5569
|
|
|
5559
5570
|
class CustomCurrency(sgqlc.types.Type):
|
|
5560
5571
|
__schema__ = schema
|
|
5561
|
-
__field_names__ = ('additional_meta_data', 'created_at', 'currency_id', 'display_name', 'id', 'symbol', 'updated_at')
|
|
5572
|
+
__field_names__ = ('additional_meta_data', 'created_at', 'currency_id', 'description', 'display_name', 'id', 'symbol', 'units', 'updated_at')
|
|
5562
5573
|
additional_meta_data = sgqlc.types.Field(JSON, graphql_name='additionalMetaData')
|
|
5563
5574
|
created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
|
|
5564
5575
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5576
|
+
description = sgqlc.types.Field(String, graphql_name='description')
|
|
5565
5577
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
5566
5578
|
id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name='id')
|
|
5567
|
-
symbol = sgqlc.types.Field(
|
|
5579
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
5580
|
+
units = sgqlc.types.Field('Units', graphql_name='units')
|
|
5568
5581
|
updated_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='updatedAt')
|
|
5569
5582
|
|
|
5570
5583
|
|
|
@@ -9532,10 +9545,11 @@ class SdkConfiguration(sgqlc.types.Type):
|
|
|
9532
9545
|
|
|
9533
9546
|
class SlimCustomCurrency(sgqlc.types.Type):
|
|
9534
9547
|
__schema__ = schema
|
|
9535
|
-
__field_names__ = ('currency_id', 'display_name', 'symbol')
|
|
9548
|
+
__field_names__ = ('currency_id', 'display_name', 'symbol', 'units')
|
|
9536
9549
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
9537
9550
|
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
9538
|
-
symbol = sgqlc.types.Field(
|
|
9551
|
+
symbol = sgqlc.types.Field(String, graphql_name='symbol')
|
|
9552
|
+
units = sgqlc.types.Field('Units', graphql_name='units')
|
|
9539
9553
|
|
|
9540
9554
|
|
|
9541
9555
|
class SnowflakeCredentials(sgqlc.types.Type):
|
|
@@ -10476,6 +10490,13 @@ class UnitTransformation(sgqlc.types.Type):
|
|
|
10476
10490
|
round = sgqlc.types.Field(sgqlc.types.non_null(UnitTransformationRound), graphql_name='round')
|
|
10477
10491
|
|
|
10478
10492
|
|
|
10493
|
+
class Units(sgqlc.types.Type):
|
|
10494
|
+
__schema__ = schema
|
|
10495
|
+
__field_names__ = ('plural', 'singular')
|
|
10496
|
+
plural = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='plural')
|
|
10497
|
+
singular = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='singular')
|
|
10498
|
+
|
|
10499
|
+
|
|
10479
10500
|
class UnsupportedFeatureTypeError(sgqlc.types.Type):
|
|
10480
10501
|
__schema__ = schema
|
|
10481
10502
|
__field_names__ = ('code', 'feature_type')
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|