stigg-api-client 3.26.0__tar.gz → 3.27.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 3.26.0
3
+ Version: 3.27.0
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "stigg-api-client"
3
- version = "3.26.0"
3
+ version = "3.27.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -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(sgqlc.types.non_null(String), graphql_name='symbol')
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):
@@ -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(sgqlc.types.non_null(String), graphql_name='symbol')
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(sgqlc.types.non_null(String), graphql_name='symbol')
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):
@@ -9836,7 +9850,7 @@ class SubscriptionFutureUpdate(sgqlc.types.Type):
9836
9850
 
9837
9851
  class SubscriptionInvoice(sgqlc.types.Type):
9838
9852
  __schema__ = schema
9839
- __field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
9853
+ __field_names__ = ('amount_due', 'applied_balance', 'attempt_count', 'billing_id', 'billing_reason', 'created_at', 'currency', 'due_date', 'ending_balance', 'error_message', 'lines', 'payment_secret', 'payment_url', 'pdf_url', 'requires_action', 'starting_balance', 'status', 'sub_total', 'sub_total_excluding_tax', 'tax', 'total', 'total_excluding_tax', 'updated_at')
9840
9854
  amount_due = sgqlc.types.Field(Float, graphql_name='amountDue')
9841
9855
  applied_balance = sgqlc.types.Field(Float, graphql_name='appliedBalance')
9842
9856
  attempt_count = sgqlc.types.Field(Float, graphql_name='attemptCount')
@@ -9844,6 +9858,7 @@ class SubscriptionInvoice(sgqlc.types.Type):
9844
9858
  billing_reason = sgqlc.types.Field(SubscriptionInvoiceBillingReason, graphql_name='billingReason')
9845
9859
  created_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name='createdAt')
9846
9860
  currency = sgqlc.types.Field(String, graphql_name='currency')
9861
+ due_date = sgqlc.types.Field(DateTime, graphql_name='dueDate')
9847
9862
  ending_balance = sgqlc.types.Field(Float, graphql_name='endingBalance')
9848
9863
  error_message = sgqlc.types.Field(String, graphql_name='errorMessage')
9849
9864
  lines = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(InvoiceLine)), graphql_name='lines')
@@ -10475,6 +10490,13 @@ class UnitTransformation(sgqlc.types.Type):
10475
10490
  round = sgqlc.types.Field(sgqlc.types.non_null(UnitTransformationRound), graphql_name='round')
10476
10491
 
10477
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
+
10478
10500
  class UnsupportedFeatureTypeError(sgqlc.types.Type):
10479
10501
  __schema__ = schema
10480
10502
  __field_names__ = ('code', 'feature_type')