stigg-api-client 2.235.0__tar.gz → 2.240.0__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: 2.235.0
3
+ Version: 2.240.0
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 = "2.235.0"
3
+ version = "2.240.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -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