stigg-api-client 3.39.0__py3-none-any.whl → 3.46.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.
- stigg/generated/operations.py +2 -0
- stigg/generated/schema.py +11 -6
- {stigg_api_client-3.39.0.dist-info → stigg_api_client-3.46.1.dist-info}/METADATA +1 -1
- stigg_api_client-3.46.1.dist-info/RECORD +9 -0
- stigg_api_client-3.39.0.dist-info/RECORD +0 -9
- {stigg_api_client-3.39.0.dist-info → stigg_api_client-3.46.1.dist-info}/LICENSE +0 -0
- {stigg_api_client-3.39.0.dist-info → stigg_api_client-3.46.1.dist-info}/WHEEL +0 -0
stigg/generated/operations.py
CHANGED
|
@@ -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()
|
stigg/generated/schema.py
CHANGED
|
@@ -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
|
|
|
@@ -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=Y5Kp9sgJhzV-SngubFYvoJkOdfXP1v6GiUy0TkrhLx8,85133
|
|
5
|
+
stigg/generated/schema.py,sha256=hliijqdi_IlVDat6fHo_wL4M5RZXtstek2WQQkdLPzA,698687
|
|
6
|
+
stigg_api_client-3.46.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-3.46.1.dist-info/METADATA,sha256=z2-HwVEW_hwSPgqeg5Yf16JQlSC1oY2lODpoG8gyOEQ,3197
|
|
8
|
+
stigg_api_client-3.46.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-3.46.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=FokC014FpWp5E_VSMiZ0kCzKFT3gog_6xnISdF96hXk,85087
|
|
5
|
-
stigg/generated/schema.py,sha256=IhPJ4nKZ7dXnXx63lVH8uFrnQOnG_54rq8IR9nCvtX0,698243
|
|
6
|
-
stigg_api_client-3.39.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-3.39.0.dist-info/METADATA,sha256=-Sa4g0-rcxDE_sj0Gcx0Rm9CvDxzstugtmSL0QsRINE,3197
|
|
8
|
-
stigg_api_client-3.39.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-3.39.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|