stigg-api-client 2.296.1__tar.gz → 2.300.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.296.1 → stigg_api_client-2.300.0}/PKG-INFO +1 -1
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/pyproject.toml +1 -1
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/stigg/generated/schema.py +5 -3
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/LICENSE +0 -0
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/README.md +0 -0
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/stigg/__init__.py +0 -0
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/stigg/client.py +0 -0
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/stigg/generated/__init__.py +0 -0
- {stigg_api_client-2.296.1 → stigg_api_client-2.300.0}/stigg/generated/operations.py +0 -0
|
@@ -3440,8 +3440,9 @@ class ReportUsageInput(sgqlc.types.Input):
|
|
|
3440
3440
|
|
|
3441
3441
|
class ResyncIntegrationInput(sgqlc.types.Input):
|
|
3442
3442
|
__schema__ = schema
|
|
3443
|
-
__field_names__ = ('environment_id', 'recalculate_entitlements', 'vendor_identifier')
|
|
3443
|
+
__field_names__ = ('environment_id', 'integration_id', 'recalculate_entitlements', 'vendor_identifier')
|
|
3444
3444
|
environment_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='environmentId')
|
|
3445
|
+
integration_id = sgqlc.types.Field(String, graphql_name='integrationId')
|
|
3445
3446
|
recalculate_entitlements = sgqlc.types.Field(Boolean, graphql_name='recalculateEntitlements')
|
|
3446
3447
|
vendor_identifier = sgqlc.types.Field(sgqlc.types.non_null(VendorIdentifier), graphql_name='vendorIdentifier')
|
|
3447
3448
|
|
|
@@ -8588,7 +8589,7 @@ class Query(sgqlc.types.Type):
|
|
|
8588
8589
|
)
|
|
8589
8590
|
event_logs = sgqlc.types.Field(sgqlc.types.non_null(EventLogConnection), graphql_name='eventLogs', args=sgqlc.types.ArgDict((
|
|
8590
8591
|
('filter', sgqlc.types.Arg(sgqlc.types.non_null(EventLogFilter), graphql_name='filter', default=None)),
|
|
8591
|
-
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first':
|
|
8592
|
+
('paging', sgqlc.types.Arg(CursorPaging, graphql_name='paging', default={'first': 10})),
|
|
8592
8593
|
('sorting', sgqlc.types.Arg(sgqlc.types.list_of(sgqlc.types.non_null(EventLogSort)), graphql_name='sorting', default=[{'direction': 'DESC', 'field': 'createdAt'}])),
|
|
8593
8594
|
))
|
|
8594
8595
|
)
|
|
@@ -8801,7 +8802,8 @@ class RecalculateEntitlementsResult(sgqlc.types.Type):
|
|
|
8801
8802
|
|
|
8802
8803
|
class ResyncIntegrationResult(sgqlc.types.Type):
|
|
8803
8804
|
__schema__ = schema
|
|
8804
|
-
__field_names__ = ('task_id'
|
|
8805
|
+
__field_names__ = ('integration_id', 'task_id')
|
|
8806
|
+
integration_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='integrationId')
|
|
8805
8807
|
task_id = sgqlc.types.Field(String, graphql_name='taskId')
|
|
8806
8808
|
|
|
8807
8809
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|