stigg-api-client 1.220.0__py3-none-any.whl → 1.225.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/operations.py +1 -0
- stigg/generated/schema.py +17 -6
- {stigg_api_client-1.220.0.dist-info → stigg_api_client-1.225.0.dist-info}/METADATA +1 -1
- stigg_api_client-1.225.0.dist-info/RECORD +9 -0
- stigg_api_client-1.220.0.dist-info/RECORD +0 -9
- {stigg_api_client-1.220.0.dist-info → stigg_api_client-1.225.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-1.220.0.dist-info → stigg_api_client-1.225.0.dist-info}/WHEEL +0 -0
stigg/generated/operations.py
CHANGED
|
@@ -314,6 +314,7 @@ def fragment_subscription_fragment():
|
|
|
314
314
|
_frag_latest_invoice = _frag.latest_invoice()
|
|
315
315
|
_frag_latest_invoice.__fragment__(fragment_subscription_invoice_fragment())
|
|
316
316
|
_frag.payment_collection()
|
|
317
|
+
_frag.payment_collection_method()
|
|
317
318
|
_frag.billing_sync_error()
|
|
318
319
|
_frag_resource = _frag.resource()
|
|
319
320
|
_frag_resource.__fragment__(fragment_customer_resource_fragment())
|
stigg/generated/schema.py
CHANGED
|
@@ -190,7 +190,7 @@ class EventEntityType(sgqlc.types.Enum):
|
|
|
190
190
|
|
|
191
191
|
class EventLogSortFields(sgqlc.types.Enum):
|
|
192
192
|
__schema__ = schema
|
|
193
|
-
__choices__ = ('createdAt', 'entityId', 'environmentId', 'eventLogType', 'parentEntityId')
|
|
193
|
+
__choices__ = ('createdAt', 'entityId', 'environmentId', 'eventLogType', 'id', 'parentEntityId')
|
|
194
194
|
|
|
195
195
|
|
|
196
196
|
class EventLogType(sgqlc.types.Enum):
|
|
@@ -1763,16 +1763,23 @@ class EventLogEventLogTypeFilterComparison(sgqlc.types.Input):
|
|
|
1763
1763
|
|
|
1764
1764
|
class EventLogFilter(sgqlc.types.Input):
|
|
1765
1765
|
__schema__ = schema
|
|
1766
|
-
__field_names__ = ('and_', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'or_', 'parent_entity_id')
|
|
1766
|
+
__field_names__ = ('and_', 'created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'or_', 'parent_entity_id')
|
|
1767
1767
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='and')
|
|
1768
1768
|
created_at = sgqlc.types.Field(EventLogCreatedAtFilterComparison, graphql_name='createdAt')
|
|
1769
1769
|
entity_id = sgqlc.types.Field(EventLogEntityIdFilterComparison, graphql_name='entityId')
|
|
1770
1770
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(EventLogEnvironmentIdFilterComparison), graphql_name='environmentId')
|
|
1771
1771
|
event_log_type = sgqlc.types.Field(EventLogEventLogTypeFilterComparison, graphql_name='eventLogType')
|
|
1772
|
+
id = sgqlc.types.Field('EventLogIdFilterComparison', graphql_name='id')
|
|
1772
1773
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('EventLogFilter')), graphql_name='or')
|
|
1773
1774
|
parent_entity_id = sgqlc.types.Field('EventLogParentEntityIdFilterComparison', graphql_name='parentEntityId')
|
|
1774
1775
|
|
|
1775
1776
|
|
|
1777
|
+
class EventLogIdFilterComparison(sgqlc.types.Input):
|
|
1778
|
+
__schema__ = schema
|
|
1779
|
+
__field_names__ = ('eq',)
|
|
1780
|
+
eq = sgqlc.types.Field(String, graphql_name='eq')
|
|
1781
|
+
|
|
1782
|
+
|
|
1776
1783
|
class EventLogParentEntityIdFilterComparison(sgqlc.types.Input):
|
|
1777
1784
|
__schema__ = schema
|
|
1778
1785
|
__field_names__ = ('eq', 'in_')
|
|
@@ -5662,11 +5669,12 @@ class EventLog(sgqlc.types.Type):
|
|
|
5662
5669
|
|
|
5663
5670
|
class EventLogAggregateGroupBy(sgqlc.types.Type):
|
|
5664
5671
|
__schema__ = schema
|
|
5665
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
|
|
5672
|
+
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
5666
5673
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5667
5674
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5668
5675
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5669
5676
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5677
|
+
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5670
5678
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5671
5679
|
|
|
5672
5680
|
|
|
@@ -5679,11 +5687,12 @@ class EventLogConnection(sgqlc.types.relay.Connection):
|
|
|
5679
5687
|
|
|
5680
5688
|
class EventLogCountAggregate(sgqlc.types.Type):
|
|
5681
5689
|
__schema__ = schema
|
|
5682
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
|
|
5690
|
+
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
5683
5691
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
5684
5692
|
entity_id = sgqlc.types.Field(Int, graphql_name='entityId')
|
|
5685
5693
|
environment_id = sgqlc.types.Field(Int, graphql_name='environmentId')
|
|
5686
5694
|
event_log_type = sgqlc.types.Field(Int, graphql_name='eventLogType')
|
|
5695
|
+
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
5687
5696
|
parent_entity_id = sgqlc.types.Field(Int, graphql_name='parentEntityId')
|
|
5688
5697
|
|
|
5689
5698
|
|
|
@@ -5696,21 +5705,23 @@ class EventLogEdge(sgqlc.types.Type):
|
|
|
5696
5705
|
|
|
5697
5706
|
class EventLogMaxAggregate(sgqlc.types.Type):
|
|
5698
5707
|
__schema__ = schema
|
|
5699
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
|
|
5708
|
+
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
5700
5709
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5701
5710
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5702
5711
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5703
5712
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5713
|
+
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5704
5714
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5705
5715
|
|
|
5706
5716
|
|
|
5707
5717
|
class EventLogMinAggregate(sgqlc.types.Type):
|
|
5708
5718
|
__schema__ = schema
|
|
5709
|
-
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'parent_entity_id')
|
|
5719
|
+
__field_names__ = ('created_at', 'entity_id', 'environment_id', 'event_log_type', 'id', 'parent_entity_id')
|
|
5710
5720
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
5711
5721
|
entity_id = sgqlc.types.Field(String, graphql_name='entityId')
|
|
5712
5722
|
environment_id = sgqlc.types.Field(String, graphql_name='environmentId')
|
|
5713
5723
|
event_log_type = sgqlc.types.Field(EventLogType, graphql_name='eventLogType')
|
|
5724
|
+
id = sgqlc.types.Field(String, graphql_name='id')
|
|
5714
5725
|
parent_entity_id = sgqlc.types.Field(String, graphql_name='parentEntityId')
|
|
5715
5726
|
|
|
5716
5727
|
|
|
@@ -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=1zj7dlDRChBSmrxtymrv5gFqu9nuSaibdl7tUMK1dYg,68985
|
|
5
|
+
stigg/generated/schema.py,sha256=-lYFPG2XEplOr3gEIKniziRZJ99VPnls00HlP--X8is,604366
|
|
6
|
+
stigg_api_client-1.225.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-1.225.0.dist-info/METADATA,sha256=DNCIEEmGu-6G_eJQgrpQxq-ycvqy9gsQNMKUcZriIbc,3198
|
|
8
|
+
stigg_api_client-1.225.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-1.225.0.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=Yyy5uzz-5PWa2y_VPDvEi5PLzxBjPnZpLENtwvvF2C0,68947
|
|
5
|
-
stigg/generated/schema.py,sha256=6cBTT7LpdI9SiBGu8b61M78eewinT13W_zuY5tj71Nk,603878
|
|
6
|
-
stigg_api_client-1.220.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
-
stigg_api_client-1.220.0.dist-info/METADATA,sha256=oHT_yMM1D1NNcD7ckE3wlvaZ5SLzPnuOc5NgdRra0B0,3198
|
|
8
|
-
stigg_api_client-1.220.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
-
stigg_api_client-1.220.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|