stigg-api-client 2.235.0__py3-none-any.whl → 2.240.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 +22 -6
- {stigg_api_client-2.235.0.dist-info → stigg_api_client-2.240.0.dist-info}/METADATA +1 -1
- {stigg_api_client-2.235.0.dist-info → stigg_api_client-2.240.0.dist-info}/RECORD +5 -5
- {stigg_api_client-2.235.0.dist-info → stigg_api_client-2.240.0.dist-info}/LICENSE +0 -0
- {stigg_api_client-2.235.0.dist-info → stigg_api_client-2.240.0.dist-info}/WHEEL +0 -0
stigg/generated/schema.py
CHANGED
|
@@ -275,7 +275,7 @@ class JSON(sgqlc.types.Scalar):
|
|
|
275
275
|
|
|
276
276
|
class MemberSortFields(sgqlc.types.Enum):
|
|
277
277
|
__schema__ = schema
|
|
278
|
-
__choices__ = ('createdAt', 'id')
|
|
278
|
+
__choices__ = ('createdAt', 'email', 'id')
|
|
279
279
|
|
|
280
280
|
|
|
281
281
|
class MemberStatus(sgqlc.types.Enum):
|
|
@@ -2377,11 +2377,23 @@ class MarkInvoiceAsPaidInput(sgqlc.types.Input):
|
|
|
2377
2377
|
|
|
2378
2378
|
class MemberFilter(sgqlc.types.Input):
|
|
2379
2379
|
__schema__ = schema
|
|
2380
|
-
__field_names__ = ('and_', 'created_at', 'id', 'or_')
|
|
2380
|
+
__field_names__ = ('and_', 'created_at', 'email', 'id', 'or_', 'user')
|
|
2381
2381
|
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilter')), graphql_name='and')
|
|
2382
2382
|
created_at = sgqlc.types.Field(DateFieldComparison, graphql_name='createdAt')
|
|
2383
|
+
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
2383
2384
|
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
2384
2385
|
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilter')), graphql_name='or')
|
|
2386
|
+
user = sgqlc.types.Field('MemberFilterUserFilter', graphql_name='user')
|
|
2387
|
+
|
|
2388
|
+
|
|
2389
|
+
class MemberFilterUserFilter(sgqlc.types.Input):
|
|
2390
|
+
__schema__ = schema
|
|
2391
|
+
__field_names__ = ('and_', 'email', 'id', 'name', 'or_')
|
|
2392
|
+
and_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilterUserFilter')), graphql_name='and')
|
|
2393
|
+
email = sgqlc.types.Field('StringFieldComparison', graphql_name='email')
|
|
2394
|
+
id = sgqlc.types.Field('StringFieldComparison', graphql_name='id')
|
|
2395
|
+
name = sgqlc.types.Field('StringFieldComparison', graphql_name='name')
|
|
2396
|
+
or_ = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null('MemberFilterUserFilter')), graphql_name='or')
|
|
2385
2397
|
|
|
2386
2398
|
|
|
2387
2399
|
class MemberSort(sgqlc.types.Input):
|
|
@@ -6595,8 +6607,9 @@ class Member(sgqlc.types.Type):
|
|
|
6595
6607
|
|
|
6596
6608
|
class MemberAggregateGroupBy(sgqlc.types.Type):
|
|
6597
6609
|
__schema__ = schema
|
|
6598
|
-
__field_names__ = ('created_at', 'id')
|
|
6610
|
+
__field_names__ = ('created_at', 'email', 'id')
|
|
6599
6611
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6612
|
+
email = sgqlc.types.Field(String, graphql_name='email')
|
|
6600
6613
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6601
6614
|
|
|
6602
6615
|
|
|
@@ -6610,8 +6623,9 @@ class MemberConnection(sgqlc.types.relay.Connection):
|
|
|
6610
6623
|
|
|
6611
6624
|
class MemberCountAggregate(sgqlc.types.Type):
|
|
6612
6625
|
__schema__ = schema
|
|
6613
|
-
__field_names__ = ('created_at', 'id')
|
|
6626
|
+
__field_names__ = ('created_at', 'email', 'id')
|
|
6614
6627
|
created_at = sgqlc.types.Field(Int, graphql_name='createdAt')
|
|
6628
|
+
email = sgqlc.types.Field(Int, graphql_name='email')
|
|
6615
6629
|
id = sgqlc.types.Field(Int, graphql_name='id')
|
|
6616
6630
|
|
|
6617
6631
|
|
|
@@ -6631,15 +6645,17 @@ class MemberInvitationError(sgqlc.types.Type):
|
|
|
6631
6645
|
|
|
6632
6646
|
class MemberMaxAggregate(sgqlc.types.Type):
|
|
6633
6647
|
__schema__ = schema
|
|
6634
|
-
__field_names__ = ('created_at', 'id')
|
|
6648
|
+
__field_names__ = ('created_at', 'email', 'id')
|
|
6635
6649
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6650
|
+
email = sgqlc.types.Field(String, graphql_name='email')
|
|
6636
6651
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6637
6652
|
|
|
6638
6653
|
|
|
6639
6654
|
class MemberMinAggregate(sgqlc.types.Type):
|
|
6640
6655
|
__schema__ = schema
|
|
6641
|
-
__field_names__ = ('created_at', 'id')
|
|
6656
|
+
__field_names__ = ('created_at', 'email', 'id')
|
|
6642
6657
|
created_at = sgqlc.types.Field(DateTime, graphql_name='createdAt')
|
|
6658
|
+
email = sgqlc.types.Field(String, graphql_name='email')
|
|
6643
6659
|
id = sgqlc.types.Field(String, graphql_name='id')
|
|
6644
6660
|
|
|
6645
6661
|
|
|
@@ -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=XZTc9QY2zvADVjW_5oUBsp7X1S5bwUTi_lfFPSKG5rs,79480
|
|
5
|
-
stigg/generated/schema.py,sha256=
|
|
6
|
-
stigg_api_client-2.
|
|
7
|
-
stigg_api_client-2.
|
|
8
|
-
stigg_api_client-2.
|
|
9
|
-
stigg_api_client-2.
|
|
5
|
+
stigg/generated/schema.py,sha256=8VtfdtcE9NI5WGpp5T4dOsuQGamW_BrpEuff0at2rOg,630046
|
|
6
|
+
stigg_api_client-2.240.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
7
|
+
stigg_api_client-2.240.0.dist-info/METADATA,sha256=3LfsU_ODYRlkv2IpGW_oGaD2gqdZNwUpMvXCIG4yTCA,3198
|
|
8
|
+
stigg_api_client-2.240.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
9
|
+
stigg_api_client-2.240.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|