stigg-api-client 2.274.2__tar.gz → 2.283.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.
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/PKG-INFO +1 -1
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/pyproject.toml +1 -1
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/stigg/generated/schema.py +10 -1
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/LICENSE +0 -0
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/README.md +0 -0
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/stigg/client.py +0 -0
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.274.2 → stigg_api_client-2.283.0}/stigg/generated/operations.py +0 -0
|
@@ -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
|
-
('
|
|
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((
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|