stigg-api-client 3.16.0__py3-none-any.whl → 3.17.0__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 +14 -5
- {stigg_api_client-3.16.0.dist-info → stigg_api_client-3.17.0.dist-info}/METADATA +1 -1
- {stigg_api_client-3.16.0.dist-info → stigg_api_client-3.17.0.dist-info}/RECORD +5 -5
- {stigg_api_client-3.16.0.dist-info → stigg_api_client-3.17.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.16.0.dist-info → stigg_api_client-3.17.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -5501,19 +5501,20 @@ class CouponMinAggregate(sgqlc.types.Type):
|
|
|
5501
5501
|
updated_at = sgqlc.types.Field(DateTime, graphql_name='updatedAt')
|
|
5502
5502
|
|
|
5503
5503
|
|
|
5504
|
-
class
|
|
5504
|
+
class CreditBalance(sgqlc.types.Type):
|
|
5505
5505
|
__schema__ = schema
|
|
5506
|
-
__field_names__ = ('currency_id', 'current_balance', 'total_consumed', 'total_granted')
|
|
5506
|
+
__field_names__ = ('currency', 'currency_id', 'current_balance', 'total_consumed', 'total_granted')
|
|
5507
|
+
currency = sgqlc.types.Field(sgqlc.types.non_null('SlimCustomCurrency'), graphql_name='currency')
|
|
5507
5508
|
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
5508
5509
|
current_balance = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='currentBalance')
|
|
5509
5510
|
total_consumed = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalConsumed')
|
|
5510
5511
|
total_granted = sgqlc.types.Field(sgqlc.types.non_null(Float), graphql_name='totalGranted')
|
|
5511
5512
|
|
|
5512
5513
|
|
|
5513
|
-
class
|
|
5514
|
+
class CreditBalanceSummary(sgqlc.types.Type):
|
|
5514
5515
|
__schema__ = schema
|
|
5515
5516
|
__field_names__ = ('balances', 'customer_id', 'resource_id')
|
|
5516
|
-
balances = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(
|
|
5517
|
+
balances = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(CreditBalance))), graphql_name='balances')
|
|
5517
5518
|
customer_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='customerId')
|
|
5518
5519
|
resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
|
|
5519
5520
|
|
|
@@ -9192,7 +9193,7 @@ class Query(sgqlc.types.Type):
|
|
|
9192
9193
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(CouponSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
9193
9194
|
))
|
|
9194
9195
|
)
|
|
9195
|
-
credit_balance_summary = sgqlc.types.Field(sgqlc.types.non_null(
|
|
9196
|
+
credit_balance_summary = sgqlc.types.Field(sgqlc.types.non_null(CreditBalanceSummary), graphql_name='creditBalanceSummary', args=sgqlc.types.ArgDict((
|
|
9196
9197
|
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreditBalanceSummaryInput), graphql_name='input', default=None)),
|
|
9197
9198
|
))
|
|
9198
9199
|
)
|
|
@@ -9516,6 +9517,14 @@ class SdkConfiguration(sgqlc.types.Type):
|
|
|
9516
9517
|
sentry_dsn = sgqlc.types.Field(String, graphql_name='sentryDsn')
|
|
9517
9518
|
|
|
9518
9519
|
|
|
9520
|
+
class SlimCustomCurrency(sgqlc.types.Type):
|
|
9521
|
+
__schema__ = schema
|
|
9522
|
+
__field_names__ = ('currency_id', 'display_name', 'symbol')
|
|
9523
|
+
currency_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currencyId')
|
|
9524
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='displayName')
|
|
9525
|
+
symbol = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='symbol')
|
|
9526
|
+
|
|
9527
|
+
|
|
9519
9528
|
class SnowflakeCredentials(sgqlc.types.Type):
|
|
9520
9529
|
__schema__ = schema
|
|
9521
9530
|
__field_names__ = ('airbyte_connection_id', 'airbyte_destination_id', 'database', 'host', 'role', 'schema_name', 'username', 'warehouse')
|
|
@@ -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=98C8us4bNsNPxL67CIAxKJ9bc-98zrNN1ttZnDXuxCY,82512
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-3.
|
|
7
|
-
stigg_api_client-3.
|
|
8
|
-
stigg_api_client-3.
|
|
9
|
-
stigg_api_client-3.
|
|
5
|
+
stigg/generated/schema.py,sha256=9Djx_f1fWB6gYJjVww3hVRG9ugZfMFBKPIp0CEKu83Q,695724
|
|
6
|
+
stigg_api_client-3.17.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.17.0.dist-info/METADATA,sha256=h0Z5rqXnuzmmpqel9-6-N7ItW_FIhZP3s_zL-B4B-nc,3197
|
|
8
|
+
stigg_api_client-3.17.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.17.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|