stigg-api-client 3.26.5__py3-none-any.whl → 3.27.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.

@@ -352,6 +352,7 @@ def fragment_subscription_invoice_fragment():
352
352
  _frag.billing_id()
353
353
  _frag.status()
354
354
  _frag.created_at()
355
+ _frag.due_date()
355
356
  _frag.updated_at()
356
357
  _frag.error_message()
357
358
  _frag.requires_action()
stigg/generated/schema.py CHANGED
@@ -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):
@@ -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')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 3.26.5
3
+ Version: 3.27.1
4
4
  Summary:
5
5
  License: STIGG SDK LICENSE
6
6
  Author: Stigg
@@ -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=jdcrPywumtoFtbow4bBDPn9O84uxNaBA4rT7RDoB2vU,82533
5
+ stigg/generated/schema.py,sha256=Cvh_qPvZBp9z25joZtqV77c12ytCAqv8KelyxZlDnDc,697764
6
+ stigg_api_client-3.27.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
+ stigg_api_client-3.27.1.dist-info/METADATA,sha256=Xe7CXCD17rm7dLTGecGj2TLHMAUC7QKifE5z-eVusw4,3197
8
+ stigg_api_client-3.27.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
+ stigg_api_client-3.27.1.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=98C8us4bNsNPxL67CIAxKJ9bc-98zrNN1ttZnDXuxCY,82512
5
- stigg/generated/schema.py,sha256=4e7QohKhSFWm4uUFrdZE5dBvzPpcQGc6VmM9uyHdAeQ,696727
6
- stigg_api_client-3.26.5.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
7
- stigg_api_client-3.26.5.dist-info/METADATA,sha256=x8lXSNGvdZrARN7c883si8skpCHBi_2GmrJOvvhgj4A,3197
8
- stigg_api_client-3.26.5.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
9
- stigg_api_client-3.26.5.dist-info/RECORD,,