stigg-api-client 1.90.0__tar.gz → 1.91.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-1.90.0 → stigg_api_client-1.91.1}/PKG-INFO +1 -1
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/pyproject.toml +1 -1
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/stigg/generated/operations.py +1 -0
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/stigg/generated/schema.py +11 -21
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/LICENSE +0 -0
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/README.md +0 -0
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/stigg/__init__.py +0 -0
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/stigg/client.py +0 -0
- {stigg_api_client-1.90.0 → stigg_api_client-1.91.1}/stigg/generated/__init__.py +0 -0
|
@@ -27,7 +27,7 @@ class AccountStatus(sgqlc.types.Enum):
|
|
|
27
27
|
|
|
28
28
|
class AddonSortFields(sgqlc.types.Enum):
|
|
29
29
|
__schema__ = schema
|
|
30
|
-
__choices__ = ('billingId', 'createdAt', 'description', 'displayName', 'environmentId', 'id', 'isLatest', '
|
|
30
|
+
__choices__ = ('billingId', 'createdAt', 'description', 'displayName', 'environmentId', 'id', 'isLatest', 'pricingType', 'productId', 'refId', 'status', 'updatedAt', 'versionNumber')
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
class AggregationFunction(sgqlc.types.Enum):
|
|
@@ -536,7 +536,7 @@ class AddonCreateInput(sgqlc.types.Input):
|
|
|
536
536
|
|
|
537
537
|
class AddonFilter(sgqlc.types.Input):
|
|
538
538
|
__schema__ = schema
|
|
539
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
539
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
540
540
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='and')
|
|
541
541
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
542
542
|
created_at = sgqlc.types.Field('DateFieldComparison', graphql_name='createdAt')
|
|
@@ -545,7 +545,6 @@ class AddonFilter(sgqlc.types.Input):
|
|
|
545
545
|
environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
|
|
546
546
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
547
547
|
is_latest = sgqlc.types.Field('BooleanFieldComparison', graphql_name='isLatest')
|
|
548
|
-
max_quantity = sgqlc.types.Field('NumberFieldComparison', graphql_name='maxQuantity')
|
|
549
548
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('AddonFilter')), graphql_name='or')
|
|
550
549
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
551
550
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -2388,7 +2387,7 @@ class PackageGroupFilter(sgqlc.types.Input):
|
|
|
2388
2387
|
|
|
2389
2388
|
class PackageGroupFilterAddonFilter(sgqlc.types.Input):
|
|
2390
2389
|
__schema__ = schema
|
|
2391
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
2390
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
2392
2391
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterAddonFilter')), graphql_name='and')
|
|
2393
2392
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2394
2393
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
@@ -2397,7 +2396,6 @@ class PackageGroupFilterAddonFilter(sgqlc.types.Input):
|
|
|
2397
2396
|
environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
|
|
2398
2397
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
2399
2398
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
2400
|
-
max_quantity = sgqlc.types.Field(NumberFieldComparison, graphql_name='maxQuantity')
|
|
2401
2399
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PackageGroupFilterAddonFilter')), graphql_name='or')
|
|
2402
2400
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
2403
2401
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -2577,7 +2575,7 @@ class PlanFilter(sgqlc.types.Input):
|
|
|
2577
2575
|
|
|
2578
2576
|
class PlanFilterAddonFilter(sgqlc.types.Input):
|
|
2579
2577
|
__schema__ = schema
|
|
2580
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
2578
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
2581
2579
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterAddonFilter')), graphql_name='and')
|
|
2582
2580
|
billing_id = sgqlc.types.Field('StringFieldComparison', graphql_name='billingId')
|
|
2583
2581
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
@@ -2586,7 +2584,6 @@ class PlanFilterAddonFilter(sgqlc.types.Input):
|
|
|
2586
2584
|
environment_id = sgqlc.types.Field('StringFieldComparison', graphql_name='environmentId')
|
|
2587
2585
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
2588
2586
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
2589
|
-
max_quantity = sgqlc.types.Field(NumberFieldComparison, graphql_name='maxQuantity')
|
|
2590
2587
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('PlanFilterAddonFilter')), graphql_name='or')
|
|
2591
2588
|
pricing_type = sgqlc.types.Field('PricingTypeFilterComparison', graphql_name='pricingType')
|
|
2592
2589
|
product_id = sgqlc.types.Field('StringFieldComparison', graphql_name='productId')
|
|
@@ -3261,7 +3258,7 @@ class SubscriptionAddonFilter(sgqlc.types.Input):
|
|
|
3261
3258
|
|
|
3262
3259
|
class SubscriptionAddonFilterAddonFilter(sgqlc.types.Input):
|
|
3263
3260
|
__schema__ = schema
|
|
3264
|
-
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
3261
|
+
__field_names__ = ('and_', 'billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'or_', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
3265
3262
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterAddonFilter')), graphql_name='and')
|
|
3266
3263
|
billing_id = sgqlc.types.Field(StringFieldComparison, graphql_name='billingId')
|
|
3267
3264
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
@@ -3270,7 +3267,6 @@ class SubscriptionAddonFilterAddonFilter(sgqlc.types.Input):
|
|
|
3270
3267
|
environment_id = sgqlc.types.Field(StringFieldComparison, graphql_name='environmentId')
|
|
3271
3268
|
id = sgqlc.types.Field(StringFieldComparison, graphql_name='id')
|
|
3272
3269
|
is_latest = sgqlc.types.Field(BooleanFieldComparison, graphql_name='isLatest')
|
|
3273
|
-
max_quantity = sgqlc.types.Field(NumberFieldComparison, graphql_name='maxQuantity')
|
|
3274
3270
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionAddonFilterAddonFilter')), graphql_name='or')
|
|
3275
3271
|
pricing_type = sgqlc.types.Field(PricingTypeFilterComparison, graphql_name='pricingType')
|
|
3276
3272
|
product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
|
|
@@ -4197,7 +4193,7 @@ class Addon(sgqlc.types.Type):
|
|
|
4197
4193
|
|
|
4198
4194
|
class AddonAggregateGroupBy(sgqlc.types.Type):
|
|
4199
4195
|
__schema__ = schema
|
|
4200
|
-
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
4196
|
+
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
4201
4197
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
4202
4198
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4203
4199
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
@@ -4205,7 +4201,6 @@ class AddonAggregateGroupBy(sgqlc.types.Type):
|
|
|
4205
4201
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
4206
4202
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
4207
4203
|
is_latest = sgqlc.types.Field(Boolean, graphql_name='isLatest')
|
|
4208
|
-
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4209
4204
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
4210
4205
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
4211
4206
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -4216,8 +4211,7 @@ class AddonAggregateGroupBy(sgqlc.types.Type):
|
|
|
4216
4211
|
|
|
4217
4212
|
class AddonAvgAggregate(sgqlc.types.Type):
|
|
4218
4213
|
__schema__ = schema
|
|
4219
|
-
__field_names__ = ('
|
|
4220
|
-
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4214
|
+
__field_names__ = ('version_number',)
|
|
4221
4215
|
version_number = sgqlc.types.Field(Float, graphql_name='versionNumber')
|
|
4222
4216
|
|
|
4223
4217
|
|
|
@@ -4238,7 +4232,7 @@ class AddonConnection(sgqlc.types.relay.Connection):
|
|
|
4238
4232
|
|
|
4239
4233
|
class AddonCountAggregate(sgqlc.types.Type):
|
|
4240
4234
|
__schema__ = schema
|
|
4241
|
-
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', '
|
|
4235
|
+
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'is_latest', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
4242
4236
|
billing_id = sgqlc.types.Field(Int, graphql_name='billingId')
|
|
4243
4237
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
4244
4238
|
description = sgqlc.types.Field(Int, graphql_name='description')
|
|
@@ -4246,7 +4240,6 @@ class AddonCountAggregate(sgqlc.types.Type):
|
|
|
4246
4240
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
4247
4241
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
4248
4242
|
is_latest = sgqlc.types.Field(Int, graphql_name='isLatest')
|
|
4249
|
-
max_quantity = sgqlc.types.Field(Int, graphql_name='maxQuantity')
|
|
4250
4243
|
pricing_type = sgqlc.types.Field(Int, graphql_name='pricingType')
|
|
4251
4244
|
product_id = sgqlc.types.Field(Int, graphql_name='productId')
|
|
4252
4245
|
ref_id = sgqlc.types.Field(Int, graphql_name='refId')
|
|
@@ -4294,14 +4287,13 @@ class AddonEdge(sgqlc.types.Type):
|
|
|
4294
4287
|
|
|
4295
4288
|
class AddonMaxAggregate(sgqlc.types.Type):
|
|
4296
4289
|
__schema__ = schema
|
|
4297
|
-
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', '
|
|
4290
|
+
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
4298
4291
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
4299
4292
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4300
4293
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4301
4294
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4302
4295
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
4303
4296
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
4304
|
-
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4305
4297
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
4306
4298
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
4307
4299
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -4312,14 +4304,13 @@ class AddonMaxAggregate(sgqlc.types.Type):
|
|
|
4312
4304
|
|
|
4313
4305
|
class AddonMinAggregate(sgqlc.types.Type):
|
|
4314
4306
|
__schema__ = schema
|
|
4315
|
-
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', '
|
|
4307
|
+
__field_names__ = ('billing_id', 'created_at', 'description', 'display_name', 'environment_id', 'id', 'pricing_type', 'product_id', 'ref_id', 'status', 'updated_at', 'version_number')
|
|
4316
4308
|
billing_id = sgqlc.types.Field(String, graphql_name='billingId')
|
|
4317
4309
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
4318
4310
|
description = sgqlc.types.Field(String, graphql_name='description')
|
|
4319
4311
|
display_name = sgqlc.types.Field(String, graphql_name='displayName')
|
|
4320
4312
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
4321
4313
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
4322
|
-
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4323
4314
|
pricing_type = sgqlc.types.Field(PricingType, graphql_name='pricingType')
|
|
4324
4315
|
product_id = sgqlc.types.Field(String, graphql_name='productId')
|
|
4325
4316
|
ref_id = sgqlc.types.Field(String, graphql_name='refId')
|
|
@@ -4330,8 +4321,7 @@ class AddonMinAggregate(sgqlc.types.Type):
|
|
|
4330
4321
|
|
|
4331
4322
|
class AddonSumAggregate(sgqlc.types.Type):
|
|
4332
4323
|
__schema__ = schema
|
|
4333
|
-
__field_names__ = ('
|
|
4334
|
-
max_quantity = sgqlc.types.Field(Float, graphql_name='maxQuantity')
|
|
4324
|
+
__field_names__ = ('version_number',)
|
|
4335
4325
|
version_number = sgqlc.types.Field(Float, graphql_name='versionNumber')
|
|
4336
4326
|
|
|
4337
4327
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|