stigg-api-client 2.274.2__tar.gz → 2.276.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: stigg-api-client
3
- Version: 2.274.2
3
+ Version: 2.276.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.274.2"
3
+ version = "2.276.0"
4
4
  description = ""
5
5
  authors = ["Stigg <support@stigg.io>"]
6
6
  license = "STIGG SDK LICENSE"
@@ -2365,6 +2365,15 @@ class IntegrationSort(sgqlc.types.Input):
2365
2365
  nulls = sgqlc.types.Field(SortNulls, graphql_name='nulls')
2366
2366
 
2367
2367
 
2368
+ class InviteMembersInput(sgqlc.types.Input):
2369
+ __schema__ = schema
2370
+ __field_names__ = ('account_role', 'invites', 'non_production_role', 'production_role')
2371
+ account_role = sgqlc.types.Field(AccountAccessRole, graphql_name='accountRole')
2372
+ invites = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))), graphql_name='invites')
2373
+ non_production_role = sgqlc.types.Field(EnvironmentAccessRole, graphql_name='nonProductionRole')
2374
+ production_role = sgqlc.types.Field(EnvironmentAccessRole, graphql_name='productionRole')
2375
+
2376
+
2368
2377
  class ListAwsProductDimensionsInput(sgqlc.types.Input):
2369
2378
  __schema__ = schema
2370
2379
  __field_names__ = ('environment_id', 'product_id')
@@ -6997,7 +7006,7 @@ class Mutation(sgqlc.types.Type):
6997
7006
  ))
6998
7007
  )
6999
7008
  invite_members = sgqlc.types.Field(sgqlc.types.non_null(MembersInviteResponse), graphql_name='inviteMembers', args=sgqlc.types.ArgDict((
7000
- ('invites', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))), graphql_name='invites', default=None)),
7009
+ ('input', sgqlc.types.Arg(sgqlc.types.non_null(InviteMembersInput), graphql_name='input', default=None)),
7001
7010
  ))
7002
7011
  )
7003
7012
  mark_invoice_as_paid = sgqlc.types.Field(String, graphql_name='markInvoiceAsPaid', args=sgqlc.types.ArgDict((