stigg-api-client 1.107.0__tar.gz → 1.111.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: 1.107.0
3
+ Version: 1.111.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 = "1.107.0"
3
+ version = "1.111.1"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -8668,8 +8668,7 @@ class TestHook(sgqlc.types.Type):
8668
8668
 
8669
8669
  class TestHookResult(sgqlc.types.Type):
8670
8670
  __schema__ = schema
8671
- __field_names__ = ('response_payload', 'response_status_code', 'response_status_text', 'response_success')
8672
- response_payload = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='responsePayload')
8671
+ __field_names__ = ('response_status_code', 'response_status_text', 'response_success')
8673
8672
  response_status_code = sgqlc.types.Field(Float, graphql_name='responseStatusCode')
8674
8673
  response_status_text = sgqlc.types.Field(String, graphql_name='responseStatusText')
8675
8674
  response_success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='responseSuccess')
@@ -8903,10 +8902,11 @@ class UsageUpdated(sgqlc.types.Type):
8903
8902
 
8904
8903
  class User(sgqlc.types.Type):
8905
8904
  __schema__ = schema
8906
- __field_names__ = ('department', 'email', 'id', 'last_seen_at', 'memberships', 'name', 'profile_image_url')
8905
+ __field_names__ = ('department', 'email', 'id', 'intercom_token', 'last_seen_at', 'memberships', 'name', 'profile_image_url')
8907
8906
  department = sgqlc.types.Field(Department, graphql_name='department')
8908
8907
  email = sgqlc.types.Field(String, graphql_name='email')
8909
8908
  id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id')
8909
+ intercom_token = sgqlc.types.Field(String, graphql_name='intercomToken')
8910
8910
  last_seen_at = sgqlc.types.Field(DateTime, graphql_name='lastSeenAt')
8911
8911
  memberships = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Member))), graphql_name='memberships')
8912
8912
  name = sgqlc.types.Field(String, graphql_name='name')