stigg-api-client 3.39.0__tar.gz → 3.46.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.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 3.39.0
3
+ Version: 3.46.1
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.39.0"
3
+ version = "3.46.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -115,6 +115,7 @@ def fragment_package_entitlement_fragment():
115
115
  _frag.is_custom()
116
116
  _frag.display_name_override()
117
117
  _frag.enum_values()
118
+ _frag.is_granted()
118
119
  _frag_feature = _frag.feature()
119
120
  _frag_feature.feature_type()
120
121
  _frag_feature.meter_type()
@@ -1181,6 +1182,7 @@ def fragment_mock_paywall_package_entitlement_fragment():
1181
1182
  _frag.hidden_from_widgets()
1182
1183
  _frag.display_name_override()
1183
1184
  _frag.enum_values()
1185
+ _frag.is_granted()
1184
1186
  _frag_feature = _frag.feature()
1185
1187
  _frag_feature.feature_type()
1186
1188
  _frag_feature.meter_type()
@@ -517,7 +517,7 @@ class SubscriptionProrationBehavior(sgqlc.types.Enum):
517
517
 
518
518
  class SubscriptionQuerySortFields(sgqlc.types.Enum):
519
519
  __schema__ = schema
520
- __choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'status')
520
+ __choices__ = ('createdAt', 'customerId', 'environmentId', 'productId', 'resourceId', 'startDate', 'status')
521
521
 
522
522
 
523
523
  class SubscriptionScheduleStatus(sgqlc.types.Enum):
@@ -4257,7 +4257,7 @@ class SubscriptionPriceSort(sgqlc.types.Input):
4257
4257
 
4258
4258
  class SubscriptionQueryFilter(sgqlc.types.Input):
4259
4259
  __schema__ = schema
4260
- __field_names__ = ('and_', 'created_at', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'status')
4260
+ __field_names__ = ('and_', 'created_at', 'customer_id', 'environment_id', 'or_', 'product_id', 'resource_id', 'start_date', 'status')
4261
4261
  and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='and')
4262
4262
  created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
4263
4263
  customer_id = sgqlc.types.Field(StringFieldComparison, graphql_name='customerId')
@@ -4265,6 +4265,7 @@ class SubscriptionQueryFilter(sgqlc.types.Input):
4265
4265
  or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('SubscriptionQueryFilter')), graphql_name='or')
4266
4266
  product_id = sgqlc.types.Field(StringFieldComparison, graphql_name='productId')
4267
4267
  resource_id = sgqlc.types.Field(StringFieldComparison, graphql_name='resourceId')
4268
+ start_date = sgqlc.types.Field(DateFieldComparison, graphql_name='startDate')
4268
4269
  status = sgqlc.types.Field('SubscriptionStatusFilterComparison', graphql_name='status')
4269
4270
 
4270
4271
 
@@ -10310,12 +10311,13 @@ class SubscriptionQuery(sgqlc.types.Type):
10310
10311
 
10311
10312
  class SubscriptionQueryAggregateGroupBy(sgqlc.types.Type):
10312
10313
  __schema__ = schema
10313
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
10314
+ __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10314
10315
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10315
10316
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10316
10317
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10317
10318
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10318
10319
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10320
+ start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10319
10321
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10320
10322
 
10321
10323
 
@@ -10329,12 +10331,13 @@ class SubscriptionQueryConnection(sgqlc.types.relay.Connection):
10329
10331
 
10330
10332
  class SubscriptionQueryCountAggregate(sgqlc.types.Type):
10331
10333
  __schema__ = schema
10332
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
10334
+ __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10333
10335
  created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
10334
10336
  customer_id = sgqlc.types.Field(Int, graphql_name='customerId')
10335
10337
  environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
10336
10338
  product_id = sgqlc.types.Field(Int, graphql_name='productId')
10337
10339
  resource_id = sgqlc.types.Field(Int, graphql_name='resourceId')
10340
+ start_date = sgqlc.types.Field(Int, graphql_name='startDate')
10338
10341
  status = sgqlc.types.Field(Int, graphql_name='status')
10339
10342
 
10340
10343
 
@@ -10347,23 +10350,25 @@ class SubscriptionQueryEdge(sgqlc.types.Type):
10347
10350
 
10348
10351
  class SubscriptionQueryMaxAggregate(sgqlc.types.Type):
10349
10352
  __schema__ = schema
10350
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
10353
+ __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10351
10354
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10352
10355
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10353
10356
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10354
10357
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10355
10358
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10359
+ start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10356
10360
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10357
10361
 
10358
10362
 
10359
10363
  class SubscriptionQueryMinAggregate(sgqlc.types.Type):
10360
10364
  __schema__ = schema
10361
- __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'status')
10365
+ __field_names__ = ('created_at', 'customer_id', 'environment_id', 'product_id', 'resource_id', 'start_date', 'status')
10362
10366
  created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
10363
10367
  customer_id = sgqlc.types.Field(String, graphql_name='customerId')
10364
10368
  environment_id = sgqlc.types.Field(UUID, graphql_name='environmentId')
10365
10369
  product_id = sgqlc.types.Field(String, graphql_name='productId')
10366
10370
  resource_id = sgqlc.types.Field(String, graphql_name='resourceId')
10371
+ start_date = sgqlc.types.Field(DateTime, graphql_name='startDate')
10367
10372
  status = sgqlc.types.Field(SubscriptionStatus, graphql_name='status')
10368
10373
 
10369
10374