ptal-api
Advanced tools
+1
-1
| Metadata-Version: 2.1 | ||
| Name: ptal-api | ||
| Version: 1.0.0a23 | ||
| Version: 1.0.0a24 | ||
| Summary: TALISMAN API adapter | ||
@@ -5,0 +5,0 @@ Author: Evgeny Bechkalo |
@@ -13,3 +13,3 @@ import sgqlc.types | ||
| __schema__ = auth_api_schema | ||
| __choices__ = ('Administration', 'Developer', 'EditCrawlers', 'EditDataImport', 'EditDocumentFeeds', 'EditExport', 'EditExternalSearch', 'EditKBAndDocuments', 'EditReferenceInfo', 'EditResearchMaps', 'EditStream', 'EditTransformations', 'ExportKBAndDocuments', 'ReadCrawlers', 'ReadDataImport', 'ReadDocumentFeeds', 'ReadExport', 'ReadExternalSearch', 'ReadKBAndDocuments', 'ReadReferenceInfo', 'ReadReportExport', 'ReadResearchMaps', 'ReadStream', 'ReadTransformations', 'RunCrawlers', 'RunDataImport', 'RunExternalSearch', 'RunTransformations', 'SourcesCustomizer', 'SourcesTechSupport', 'SourcesVerifier') | ||
| __choices__ = ('AdditionalOperationsResearchMaps', 'Administration', 'Developer', 'EditCrawlers', 'EditDataImport', 'EditDocumentDuplicates', 'EditDocumentFeeds', 'EditExport', 'EditExternalSearch', 'EditKBAndDocuments', 'EditReferenceInfo', 'EditResearchMaps', 'EditSources', 'EditStream', 'EditTransformations', 'ExportKBAndDocuments', 'ReadCrawlers', 'ReadDataImport', 'ReadDocumentDuplicates', 'ReadDocumentFeeds', 'ReadExport', 'ReadExternalSearch', 'ReadKBAndDocuments', 'ReadReferenceInfo', 'ReadReportExport', 'ReadResearchMaps', 'ReadSources', 'ReadStream', 'ReadTransformations', 'ResourceOwnership', 'RunCrawlers', 'RunDataImport', 'RunDocumentDuplicates', 'RunExternalSearch', 'RunTransformations', 'SourcesCustomizer', 'SourcesTechSupport', 'SourcesVerifier') | ||
@@ -43,12 +43,2 @@ | ||
| class PolicyIndex(sgqlc.types.Enum): | ||
| __schema__ = auth_api_schema | ||
| __choices__ = ('concepts', 'documents') | ||
| class PolicyType(sgqlc.types.Enum): | ||
| __schema__ = auth_api_schema | ||
| __choices__ = ('es', 'local') | ||
| class SortDirection(sgqlc.types.Enum): | ||
@@ -82,3 +72,3 @@ __schema__ = auth_api_schema | ||
| __schema__ = auth_api_schema | ||
| __choices__ = ('conceptRegistry', 'crawler', 'documentRegistry', 'externalSearch') | ||
| __choices__ = ('conceptRegistry', 'documentRegistry') | ||
@@ -107,7 +97,7 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('entity_ids', 'entity_type', 'metadata', 'user_action') | ||
| __field_names__ = ('user_action', 'entity_ids', 'entity_type', 'metadata') | ||
| user_action = sgqlc.types.Field(sgqlc.types.non_null(UserAction), graphql_name='userAction') | ||
| entity_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='entityIds') | ||
| entity_type = sgqlc.types.Field(sgqlc.types.non_null(UserActivityEntityType), graphql_name='entityType') | ||
| metadata = sgqlc.types.Field(String, graphql_name='metadata') | ||
| user_action = sgqlc.types.Field(sgqlc.types.non_null(UserAction), graphql_name='userAction') | ||
@@ -117,5 +107,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'name') | ||
| __field_names__ = ('name', 'description') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
@@ -125,5 +115,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('group_ids', 'user_ids') | ||
| __field_names__ = ('user_ids', 'group_ids') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
| group_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='groupIds') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
@@ -133,10 +123,10 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('access_level_id', 'email', 'enabled', 'fathers_name', 'first_name', 'last_name', 'login', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| __field_names__ = ('login', 'first_name', 'last_name', 'fathers_name', 'email', 'access_level_id', 'enabled', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='login') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| access_level_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='accessLevelId') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| enabled = sgqlc.types.Field(Boolean, graphql_name='enabled') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='login') | ||
| receive_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveNotifications') | ||
@@ -149,5 +139,5 @@ receive_telegram_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveTelegramNotifications') | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('role_ids', 'user_ids') | ||
| __field_names__ = ('user_ids', 'role_ids') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
| role_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='roleIds') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
@@ -157,5 +147,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'name') | ||
| __field_names__ = ('name', 'description') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
@@ -165,5 +155,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('search_string', 'search_type') | ||
| __field_names__ = ('search_type', 'search_string') | ||
| search_type = sgqlc.types.Field(sgqlc.types.non_null(UserActivitySearchType), graphql_name='searchType') | ||
| search_string = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='searchString') | ||
| search_type = sgqlc.types.Field(sgqlc.types.non_null(UserActivitySearchType), graphql_name='searchType') | ||
@@ -173,6 +163,6 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'input_value', 'name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| __field_names__ = ('input_value', 'name', 'description') | ||
| input_value = sgqlc.types.Field(String, graphql_name='inputValue') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
@@ -182,5 +172,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('group_ids', 'user_ids') | ||
| __field_names__ = ('user_ids', 'group_ids') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
| group_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='groupIds') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
@@ -190,31 +180,12 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('role_ids', 'user_ids') | ||
| __field_names__ = ('user_ids', 'role_ids') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
| role_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='roleIds') | ||
| user_ids = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='userIds') | ||
| class PolicyParameterInputGQL(sgqlc.types.Input): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('param', 'parameter_type') | ||
| param = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='param') | ||
| parameter_type = sgqlc.types.Field(sgqlc.types.non_null(AttributeType), graphql_name='parameterType') | ||
| class SecurityPolicyArg(sgqlc.types.Input): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('id', 'index', 'name', 'params', 'policy_type', 'rule', 'target') | ||
| id = sgqlc.types.Field(String, graphql_name='id') | ||
| index = sgqlc.types.Field(PolicyIndex, graphql_name='index') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| params = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PolicyParameterInputGQL))), graphql_name='params') | ||
| policy_type = sgqlc.types.Field(sgqlc.types.non_null(PolicyType), graphql_name='policyType') | ||
| rule = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rule') | ||
| target = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='target') | ||
| class TimestampInterval(sgqlc.types.Input): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('end', 'start') | ||
| __field_names__ = ('start', 'end') | ||
| start = sgqlc.types.Field(UnixTime, graphql_name='start') | ||
| end = sgqlc.types.Field(UnixTime, graphql_name='end') | ||
| start = sgqlc.types.Field(UnixTime, graphql_name='start') | ||
@@ -224,8 +195,8 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('current_password', 'email', 'fathers_name', 'first_name', 'last_name', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| current_password = sgqlc.types.Field(String, graphql_name='currentPassword') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| __field_names__ = ('first_name', 'last_name', 'fathers_name', 'email', 'current_password', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| current_password = sgqlc.types.Field(String, graphql_name='currentPassword') | ||
| receive_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveNotifications') | ||
@@ -238,5 +209,5 @@ receive_telegram_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveTelegramNotifications') | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'name') | ||
| __field_names__ = ('name', 'description') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
@@ -246,9 +217,9 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('access_level_id', 'email', 'enabled', 'fathers_name', 'first_name', 'last_name', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| __field_names__ = ('first_name', 'last_name', 'fathers_name', 'email', 'access_level_id', 'enabled', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| access_level_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='accessLevelId') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| enabled = sgqlc.types.Field(Boolean, graphql_name='enabled') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| receive_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveNotifications') | ||
@@ -261,5 +232,5 @@ receive_telegram_notifications = sgqlc.types.Field(Boolean, graphql_name='receiveTelegramNotifications') | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'name') | ||
| __field_names__ = ('name', 'description') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
@@ -269,6 +240,7 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'entity_ids', 'entity_type_ids', 'history_grouping') | ||
| __field_names__ = ('search_string', 'entity_type_ids', 'user_activity_types', 'created_at', 'history_grouping') | ||
| search_string = sgqlc.types.Field(String, graphql_name='searchString') | ||
| entity_type_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='entityTypeIds') | ||
| user_activity_types = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UserActivityAction)), graphql_name='userActivityTypes') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| entity_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='entityIds') | ||
| entity_type_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='entityTypeIds') | ||
| history_grouping = sgqlc.types.Field(UserHistoryGrouping, graphql_name='historyGrouping') | ||
@@ -286,18 +258,18 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'creators', 'email', 'enabled', 'fathers_name', 'first_name', 'group_ids', 'input_value', 'last_name', 'login', 'role_ids', 'show_system_users', 'updated_at', 'updaters', 'user_id') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| __field_names__ = ('input_value', 'user_id', 'login', 'first_name', 'last_name', 'fathers_name', 'email', 'enabled', 'creators', 'updaters', 'created_at', 'updated_at', 'group_ids', 'role_ids', 'show_system_users') | ||
| input_value = sgqlc.types.Field(String, graphql_name='inputValue') | ||
| user_id = sgqlc.types.Field(ID, graphql_name='userId') | ||
| login = sgqlc.types.Field(String, graphql_name='login') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| enabled = sgqlc.types.Field(Boolean, graphql_name='enabled') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| updated_at = sgqlc.types.Field(TimestampInterval, graphql_name='updatedAt') | ||
| group_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='groupIds') | ||
| input_value = sgqlc.types.Field(String, graphql_name='inputValue') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| login = sgqlc.types.Field(String, graphql_name='login') | ||
| role_ids = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='roleIds') | ||
| show_system_users = sgqlc.types.Field(Boolean, graphql_name='showSystemUsers') | ||
| updated_at = sgqlc.types.Field(TimestampInterval, graphql_name='updatedAt') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| user_id = sgqlc.types.Field(ID, graphql_name='userId') | ||
@@ -307,11 +279,11 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'creators', 'description', 'input_value', 'name', 'updated_at', 'updaters', 'user_group_id') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| __field_names__ = ('input_value', 'name', 'description', 'user_group_id', 'creators', 'updaters', 'created_at', 'updated_at') | ||
| input_value = sgqlc.types.Field(String, graphql_name='inputValue') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| user_group_id = sgqlc.types.Field(ID, graphql_name='userGroupId') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| updated_at = sgqlc.types.Field(TimestampInterval, graphql_name='updatedAt') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| user_group_id = sgqlc.types.Field(ID, graphql_name='userGroupId') | ||
@@ -321,11 +293,11 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'creators', 'description', 'input_value', 'name', 'updated_at', 'updaters', 'user_role_id') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| __field_names__ = ('input_value', 'name', 'description', 'user_role_id', 'creators', 'updaters', 'created_at', 'updated_at') | ||
| input_value = sgqlc.types.Field(String, graphql_name='inputValue') | ||
| name = sgqlc.types.Field(String, graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| user_role_id = sgqlc.types.Field(ID, graphql_name='userRoleId') | ||
| creators = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='creators') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| updated_at = sgqlc.types.Field(TimestampInterval, graphql_name='updatedAt') | ||
| updaters = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(ID)), graphql_name='updaters') | ||
| user_role_id = sgqlc.types.Field(ID, graphql_name='userRoleId') | ||
@@ -335,7 +307,7 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'history_grouping', 'search_string', 'search_type') | ||
| __field_names__ = ('search_string', 'search_type', 'created_at', 'history_grouping') | ||
| search_string = sgqlc.types.Field(String, graphql_name='searchString') | ||
| search_type = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UserActivitySearchType)), graphql_name='searchType') | ||
| created_at = sgqlc.types.Field(TimestampInterval, graphql_name='createdAt') | ||
| history_grouping = sgqlc.types.Field(UserHistoryGrouping, graphql_name='historyGrouping') | ||
| search_string = sgqlc.types.Field(String, graphql_name='searchString') | ||
| search_type = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.non_null(UserActivitySearchType)), graphql_name='searchType') | ||
@@ -349,7 +321,7 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('creator', 'last_updater', 'system_registration_date', 'system_update_date') | ||
| __field_names__ = ('system_registration_date', 'system_update_date', 'creator', 'last_updater') | ||
| system_registration_date = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='systemRegistrationDate') | ||
| system_update_date = sgqlc.types.Field(UnixTime, graphql_name='systemUpdateDate') | ||
| creator = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='creator') | ||
| last_updater = sgqlc.types.Field('User', graphql_name='lastUpdater') | ||
| system_registration_date = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='systemRegistrationDate') | ||
| system_update_date = sgqlc.types.Field(UnixTime, graphql_name='systemUpdateDate') | ||
@@ -367,8 +339,8 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('description', 'id', 'name', 'params_schema', 'value_type') | ||
| description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') | ||
| __field_names__ = ('id', 'name', 'description', 'value_type', 'params_schema') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') | ||
| value_type = sgqlc.types.Field(sgqlc.types.non_null(AttributeType), graphql_name='valueType') | ||
| params_schema = sgqlc.types.Field(sgqlc.types.non_null('ParamsSchema'), graphql_name='paramsSchema') | ||
| value_type = sgqlc.types.Field(sgqlc.types.non_null(AttributeType), graphql_name='valueType') | ||
@@ -397,6 +369,6 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('concept_type', 'id', 'name') | ||
| concept_type = sgqlc.types.Field(sgqlc.types.non_null('ConceptType'), graphql_name='conceptType') | ||
| __field_names__ = ('id', 'name', 'concept_type') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| concept_type = sgqlc.types.Field(sgqlc.types.non_null('ConceptType'), graphql_name='conceptType') | ||
@@ -406,6 +378,6 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('id', 'link_type', 'name') | ||
| __field_names__ = ('id', 'name', 'concept_link_type') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| link_type = sgqlc.types.Field(sgqlc.types.non_null('ConceptLinkType'), graphql_name='linkType') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| concept_link_type = sgqlc.types.Field(sgqlc.types.non_null('ConceptLinkType'), graphql_name='conceptLinkType') | ||
@@ -429,6 +401,6 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('document_type', 'id', 'name') | ||
| document_type = sgqlc.types.Field(sgqlc.types.non_null('DocumentType'), graphql_name='documentType') | ||
| __field_names__ = ('id', 'name', 'document_type') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| document_type = sgqlc.types.Field(sgqlc.types.non_null('DocumentType'), graphql_name='documentType') | ||
@@ -469,7 +441,3 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('add_policy', 'add_user', 'add_user_activity', 'add_user_group', 'add_user_group_members', 'add_user_role', 'add_user_role_assignments', 'add_user_search_history', 'delete_kvstore_item', 'delete_policy', 'delete_user', 'delete_user_group', 'delete_user_group_members', 'delete_user_role', 'delete_user_role_assignments', 'set_kvstore_item', 'update_current_user', 'update_current_user_password', 'update_user', 'update_user_activity', 'update_user_attributes', 'update_user_group', 'update_user_password', 'update_user_role', 'update_user_role_attributes') | ||
| add_policy = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='addPolicy', args=sgqlc.types.ArgDict(( | ||
| ('policy_params', sgqlc.types.Arg(sgqlc.types.non_null(SecurityPolicyArg), graphql_name='policyParams', default=None)), | ||
| )) | ||
| ) | ||
| __field_names__ = ('add_user', 'update_user_password', 'update_current_user_password', 'update_current_user', 'update_user', 'update_user_attributes', 'update_user_activity', 'delete_user', 'set_kvstore_item', 'delete_kvstore_item', 'add_user_group', 'update_user_group', 'delete_user_group', 'add_user_group_members', 'delete_user_group_members', 'add_user_role', 'update_user_role', 'update_user_role_attributes', 'delete_user_role', 'add_user_role_assignments', 'delete_user_role_assignments', 'add_user_activity', 'add_user_search_history') | ||
| add_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='addUser', args=sgqlc.types.ArgDict(( | ||
@@ -479,101 +447,97 @@ ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserInput), graphql_name='input', default=None)), | ||
| ) | ||
| add_user_activity = sgqlc.types.Field(sgqlc.types.non_null('State'), graphql_name='addUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserActivityInput), graphql_name='input', default=None)), | ||
| update_user_password = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserPassword', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| )) | ||
| ) | ||
| add_user_group = sgqlc.types.Field('UserGroup', graphql_name='addUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserGroupInput), graphql_name='input', default=None)), | ||
| update_current_user_password = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateCurrentUserPassword', args=sgqlc.types.ArgDict(( | ||
| ('old_password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='oldPassword', default=None)), | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| )) | ||
| ) | ||
| add_user_group_members = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='addUserGroupMembers', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserGroupMembersInput), graphql_name='input', default=None)), | ||
| update_current_user = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateCurrentUser', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateCurrentUserInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| add_user_role = sgqlc.types.Field('UserRole', graphql_name='addUserRole', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserRoleInput), graphql_name='input', default=None)), | ||
| update_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='updateUser', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| add_user_role_assignments = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='addUserRoleAssignments', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserRoleAssignmentsInput), graphql_name='input', default=None)), | ||
| update_user_attributes = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserAttributes', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('attributes', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttributeInput))), graphql_name='attributes', default=None)), | ||
| )) | ||
| ) | ||
| add_user_search_history = sgqlc.types.Field(sgqlc.types.non_null('State'), graphql_name='addUserSearchHistory', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserSearchHistoryInput), graphql_name='input', default=None)), | ||
| update_user_activity = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| ('is_enabled', sgqlc.types.Arg(sgqlc.types.non_null(Boolean), graphql_name='isEnabled', default=None)), | ||
| )) | ||
| ) | ||
| delete_kvstore_item = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| )) | ||
| ) | ||
| delete_policy = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deletePolicy', args=sgqlc.types.ArgDict(( | ||
| delete_user = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUser', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| delete_user = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUser', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| set_kvstore_item = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='setKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| ('value', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='value', default=None)), | ||
| )) | ||
| ) | ||
| delete_user_group = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| delete_kvstore_item = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| )) | ||
| ) | ||
| delete_user_group_members = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserGroupMembers', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserGroupMembersInput), graphql_name='input', default=None)), | ||
| add_user_group = sgqlc.types.Field('UserGroup', graphql_name='addUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserGroupInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| delete_user_role = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserRole', args=sgqlc.types.ArgDict(( | ||
| update_user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='updateUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserGroupInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| delete_user_role_assignments = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserRoleAssignments', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserRoleAssignmentsInput), graphql_name='input', default=None)), | ||
| delete_user_group = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| set_kvstore_item = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='setKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| ('value', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='value', default=None)), | ||
| add_user_group_members = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='addUserGroupMembers', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserGroupMembersInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_current_user = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateCurrentUser', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateCurrentUserInput), graphql_name='input', default=None)), | ||
| delete_user_group_members = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserGroupMembers', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserGroupMembersInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_current_user_password = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateCurrentUserPassword', args=sgqlc.types.ArgDict(( | ||
| ('old_password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='oldPassword', default=None)), | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| add_user_role = sgqlc.types.Field('UserRole', graphql_name='addUserRole', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserRoleInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='updateUser', args=sgqlc.types.ArgDict(( | ||
| update_user_role = sgqlc.types.Field(sgqlc.types.non_null('UserRole'), graphql_name='updateUserRole', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserInput), graphql_name='input', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserRoleInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_user_activity = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| ('is_enabled', sgqlc.types.Arg(sgqlc.types.non_null(Boolean), graphql_name='isEnabled', default=None)), | ||
| update_user_role_attributes = sgqlc.types.Field(sgqlc.types.non_null('UserRole'), graphql_name='updateUserRoleAttributes', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('attributes', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttributeInput))), graphql_name='attributes', default=None)), | ||
| )) | ||
| ) | ||
| update_user_attributes = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserAttributes', args=sgqlc.types.ArgDict(( | ||
| ('attributes', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttributeInput))), graphql_name='attributes', default=None)), | ||
| delete_user_role = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserRole', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| update_user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='updateUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserGroupInput), graphql_name='input', default=None)), | ||
| add_user_role_assignments = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='addUserRoleAssignments', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserRoleAssignmentsInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_user_password = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='updateUserPassword', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| delete_user_role_assignments = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='deleteUserRoleAssignments', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(DeleteUserRoleAssignmentsInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_user_role = sgqlc.types.Field(sgqlc.types.non_null('UserRole'), graphql_name='updateUserRole', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(UpdateUserRoleInput), graphql_name='input', default=None)), | ||
| add_user_activity = sgqlc.types.Field(sgqlc.types.non_null('State'), graphql_name='addUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserActivityInput), graphql_name='input', default=None)), | ||
| )) | ||
| ) | ||
| update_user_role_attributes = sgqlc.types.Field(sgqlc.types.non_null('UserRole'), graphql_name='updateUserRoleAttributes', args=sgqlc.types.ArgDict(( | ||
| ('attributes', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttributeInput))), graphql_name='attributes', default=None)), | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| add_user_search_history = sgqlc.types.Field(sgqlc.types.non_null('State'), graphql_name='addUserSearchHistory', args=sgqlc.types.ArgDict(( | ||
| ('input', sgqlc.types.Arg(sgqlc.types.non_null(AddUserSearchHistoryInput), graphql_name='input', default=None)), | ||
| )) | ||
@@ -590,27 +554,31 @@ ) | ||
| class PolicyParameterGQL(sgqlc.types.Type): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('param', 'parameter_type') | ||
| param = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='param') | ||
| parameter_type = sgqlc.types.Field(sgqlc.types.non_null(AttributeType), graphql_name='parameterType') | ||
| class Query(sgqlc.types.Type): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('current_user', 'get_kvstore_item', 'list_policy', 'pagination_attribute', 'pagination_user', 'pagination_user_activity', 'pagination_user_group', 'pagination_user_role', 'pagination_user_search_history', 'refresh_token', 'token_exchange', 'user', 'user_by_internal_id', 'user_by_login', 'user_group', 'user_group_by_internal_id', 'user_idlist', 'user_idlist_sys', 'user_role', 'user_role_by_internal_id', 'user_sys') | ||
| current_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='currentUser') | ||
| get_kvstore_item = sgqlc.types.Field(String, graphql_name='getKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| __field_names__ = ('user', 'user_by_internal_id', 'user_sys', 'user_idlist', 'user_idlist_sys', 'current_user', 'user_by_login', 'pagination_user', 'token_exchange', 'refresh_token', 'get_kvstore_item', 'pagination_attribute', 'user_group', 'user_group_by_name', 'user_group_by_internal_id', 'pagination_user_group', 'list_user_group_by_id', 'pagination_user_activity', 'pagination_user_activity_internal', 'pagination_user_search_history', 'user_role', 'user_role_by_internal_id', 'pagination_user_role') | ||
| user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| list_policy = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('SecurityPolicyGQL'))), graphql_name='listPolicy', args=sgqlc.types.ArgDict(( | ||
| user_by_internal_id = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userByInternalId', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| user_sys = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userSys', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| user_idlist = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('User')), graphql_name='userIDList', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| )) | ||
| ) | ||
| pagination_attribute = sgqlc.types.Field(sgqlc.types.non_null(AttributePagination), graphql_name='paginationAttribute', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(AttributeFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| user_idlist_sys = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('User'))), graphql_name='userIDListSys', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| )) | ||
| ) | ||
| current_user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='currentUser') | ||
| user_by_login = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userByLogin', args=sgqlc.types.ArgDict(( | ||
| ('username', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='username', default=None)), | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| )) | ||
| ) | ||
| pagination_user = sgqlc.types.Field(sgqlc.types.non_null('UserPagination'), graphql_name='paginationUser', args=sgqlc.types.ArgDict(( | ||
@@ -622,67 +590,68 @@ ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ) | ||
| pagination_user_activity = sgqlc.types.Field(sgqlc.types.non_null('UserActivityPagination'), graphql_name='paginationUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('direction', sgqlc.types.Arg(SortDirection, graphql_name='direction', default='descending')), | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserActivityFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| ('sort_field', sgqlc.types.Arg(UserActivitySorting, graphql_name='sortField', default='createdAt')), | ||
| token_exchange = sgqlc.types.Field(sgqlc.types.non_null('Token'), graphql_name='tokenExchange', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('is_offline', sgqlc.types.Arg(sgqlc.types.non_null(Boolean), graphql_name='isOffline', default=False)), | ||
| )) | ||
| ) | ||
| pagination_user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroupPagination'), graphql_name='paginationUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserGroupFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| refresh_token = sgqlc.types.Field(sgqlc.types.non_null('Token'), graphql_name='refreshToken', args=sgqlc.types.ArgDict(( | ||
| ('refresh_token', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='refreshToken', default=None)), | ||
| )) | ||
| ) | ||
| pagination_user_role = sgqlc.types.Field(sgqlc.types.non_null('UserRolePagination'), graphql_name='paginationUserRole', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserRoleFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| get_kvstore_item = sgqlc.types.Field(String, graphql_name='getKVStoreItem', args=sgqlc.types.ArgDict(( | ||
| ('key', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='key', default=None)), | ||
| )) | ||
| ) | ||
| pagination_user_search_history = sgqlc.types.Field(sgqlc.types.non_null('UserSearchHistoryPagination'), graphql_name='paginationUserSearchHistory', args=sgqlc.types.ArgDict(( | ||
| ('direction', sgqlc.types.Arg(SortDirection, graphql_name='direction', default='descending')), | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserSearchHistoryFilterSettings), graphql_name='filterSettings', default=None)), | ||
| pagination_attribute = sgqlc.types.Field(sgqlc.types.non_null(AttributePagination), graphql_name='paginationAttribute', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(AttributeFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| ('sort_field', sgqlc.types.Arg(UserSearchHistorySorting, graphql_name='sortField', default='createdAt')), | ||
| )) | ||
| ) | ||
| refresh_token = sgqlc.types.Field(sgqlc.types.non_null('Token'), graphql_name='refreshToken', args=sgqlc.types.ArgDict(( | ||
| ('refresh_token', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='refreshToken', default=None)), | ||
| user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='userGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| token_exchange = sgqlc.types.Field(sgqlc.types.non_null('Token'), graphql_name='tokenExchange', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| user_group_by_name = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='userGroupByName', args=sgqlc.types.ArgDict(( | ||
| ('name', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='name', default=None)), | ||
| )) | ||
| ) | ||
| user = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='user', args=sgqlc.types.ArgDict(( | ||
| user_group_by_internal_id = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='userGroupByInternalId', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| )) | ||
| ) | ||
| user_by_internal_id = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userByInternalId', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| pagination_user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroupPagination'), graphql_name='paginationUserGroup', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserGroupFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| )) | ||
| ) | ||
| user_by_login = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userByLogin', args=sgqlc.types.ArgDict(( | ||
| ('password', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='password', default=None)), | ||
| ('username', sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name='username', default=None)), | ||
| list_user_group_by_id = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('UserGroup')), graphql_name='listUserGroupById', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| )) | ||
| ) | ||
| user_group = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='userGroup', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| pagination_user_activity = sgqlc.types.Field(sgqlc.types.non_null('UserActivityPagination'), graphql_name='paginationUserActivity', args=sgqlc.types.ArgDict(( | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserActivityFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('direction', sgqlc.types.Arg(SortDirection, graphql_name='direction', default='descending')), | ||
| ('sort_field', sgqlc.types.Arg(UserActivitySorting, graphql_name='sortField', default='createdAt')), | ||
| )) | ||
| ) | ||
| user_group_by_internal_id = sgqlc.types.Field(sgqlc.types.non_null('UserGroup'), graphql_name='userGroupByInternalId', args=sgqlc.types.ArgDict(( | ||
| pagination_user_activity_internal = sgqlc.types.Field(sgqlc.types.non_null('UserActivityPagination'), graphql_name='paginationUserActivityInternal', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserActivityFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('direction', sgqlc.types.Arg(SortDirection, graphql_name='direction', default='descending')), | ||
| ('sort_field', sgqlc.types.Arg(UserActivitySorting, graphql_name='sortField', default='createdAt')), | ||
| )) | ||
| ) | ||
| user_idlist = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('User')), graphql_name='userIDList', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| pagination_user_search_history = sgqlc.types.Field(sgqlc.types.non_null('UserSearchHistoryPagination'), graphql_name='paginationUserSearchHistory', args=sgqlc.types.ArgDict(( | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserSearchHistoryFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('direction', sgqlc.types.Arg(SortDirection, graphql_name='direction', default='descending')), | ||
| ('sort_field', sgqlc.types.Arg(UserSearchHistorySorting, graphql_name='sortField', default='createdAt')), | ||
| )) | ||
| ) | ||
| user_idlist_sys = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('User'))), graphql_name='userIDListSys', args=sgqlc.types.ArgDict(( | ||
| ('ids', sgqlc.types.Arg(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(ID))), graphql_name='ids', default=None)), | ||
| )) | ||
| ) | ||
| user_role = sgqlc.types.Field(sgqlc.types.non_null('UserRole'), graphql_name='userRole', args=sgqlc.types.ArgDict(( | ||
@@ -696,4 +665,6 @@ ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| ) | ||
| user_sys = sgqlc.types.Field(sgqlc.types.non_null('User'), graphql_name='userSys', args=sgqlc.types.ArgDict(( | ||
| ('id', sgqlc.types.Arg(sgqlc.types.non_null(ID), graphql_name='id', default=None)), | ||
| pagination_user_role = sgqlc.types.Field(sgqlc.types.non_null('UserRolePagination'), graphql_name='paginationUserRole', args=sgqlc.types.ArgDict(( | ||
| ('filter_settings', sgqlc.types.Arg(sgqlc.types.non_null(UserRoleFilterSettings), graphql_name='filterSettings', default=None)), | ||
| ('limit', sgqlc.types.Arg(Int, graphql_name='limit', default=20)), | ||
| ('offset', sgqlc.types.Arg(Int, graphql_name='offset', default=0)), | ||
| )) | ||
@@ -703,14 +674,2 @@ ) | ||
| class SecurityPolicyGQL(sgqlc.types.Type): | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('id', 'index', 'name', 'params', 'policy_type', 'rule', 'target') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='id') | ||
| index = sgqlc.types.Field(PolicyIndex, graphql_name='index') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| params = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(PolicyParameterGQL))), graphql_name='params') | ||
| policy_type = sgqlc.types.Field(sgqlc.types.non_null(PolicyType), graphql_name='policyType') | ||
| rule = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='rule') | ||
| target = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='target') | ||
| class State(sgqlc.types.Type): | ||
@@ -736,6 +695,6 @@ __schema__ = auth_api_schema | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('access_token', 'access_token_expires_at', 'refresh_token', 'refresh_token_expires_at') | ||
| __field_names__ = ('access_token', 'refresh_token', 'access_token_expires_at', 'refresh_token_expires_at') | ||
| access_token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='accessToken') | ||
| refresh_token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refreshToken') | ||
| access_token_expires_at = sgqlc.types.Field(sgqlc.types.non_null(Long), graphql_name='accessTokenExpiresAt') | ||
| refresh_token = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='refreshToken') | ||
| refresh_token_expires_at = sgqlc.types.Field(sgqlc.types.non_null(Long), graphql_name='refreshTokenExpiresAt') | ||
@@ -746,8 +705,8 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('entity', 'id', 'metadata', 'system_registration_date', 'user_action') | ||
| entity = sgqlc.types.Field(sgqlc.types.non_null('UserActivityEntity'), graphql_name='entity') | ||
| __field_names__ = ('id', 'user_action', 'metadata', 'system_registration_date', 'entity') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| user_action = sgqlc.types.Field(sgqlc.types.non_null(UserActivityAction), graphql_name='userAction') | ||
| metadata = sgqlc.types.Field(String, graphql_name='metadata') | ||
| system_registration_date = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='systemRegistrationDate') | ||
| user_action = sgqlc.types.Field(sgqlc.types.non_null(UserActivityAction), graphql_name='userAction') | ||
| entity = sgqlc.types.Field(sgqlc.types.non_null('UserActivityEntity'), graphql_name='entity') | ||
@@ -764,9 +723,9 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('attribute_source', 'description', 'id', 'json_value', 'name', 'value') | ||
| attribute_source = sgqlc.types.Field(sgqlc.types.non_null(AttributeSource), graphql_name='attributeSource') | ||
| __field_names__ = ('name', 'description', 'id', 'attribute_source', 'value', 'json_value') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='description') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| attribute_source = sgqlc.types.Field(sgqlc.types.non_null(AttributeSource), graphql_name='attributeSource') | ||
| value = sgqlc.types.Field(sgqlc.types.non_null('AttributeValue'), graphql_name='value') | ||
| json_value = sgqlc.types.Field(sgqlc.types.non_null(JSON), graphql_name='jsonValue') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| value = sgqlc.types.Field(sgqlc.types.non_null('AttributeValue'), graphql_name='value') | ||
@@ -789,5 +748,5 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('count_group', 'count_role') | ||
| __field_names__ = ('count_role', 'count_group') | ||
| count_role = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='countRole') | ||
| count_group = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='countGroup') | ||
| count_role = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='countRole') | ||
@@ -817,6 +776,6 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('id', 'search_string', 'search_type', 'system_registration_date') | ||
| __field_names__ = ('id', 'search_type', 'search_string', 'system_registration_date') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| search_type = sgqlc.types.Field(sgqlc.types.non_null(UserActivitySearchType), graphql_name='searchType') | ||
| search_string = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='searchString') | ||
| search_type = sgqlc.types.Field(sgqlc.types.non_null(UserActivitySearchType), graphql_name='searchType') | ||
| system_registration_date = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='systemRegistrationDate') | ||
@@ -834,23 +793,23 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('access_level', 'allowed_functions', 'attributes', 'created_at', 'email', 'enabled', 'fathers_name', 'first_name', 'id', 'is_admin', 'last_name', 'list_user_group', 'list_user_role', 'login', 'metrics', 'name', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id', 'updated_at') | ||
| access_level = sgqlc.types.Field(sgqlc.types.non_null(AccessLevel), graphql_name='accessLevel') | ||
| allowed_functions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AllowedFunctionsEnum))), graphql_name='allowedFunctions') | ||
| attributes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttribute))), graphql_name='attributes') | ||
| created_at = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='createdAt') | ||
| __field_names__ = ('id', 'login', 'first_name', 'last_name', 'fathers_name', 'email', 'enabled', 'created_at', 'updated_at', 'receive_notifications', 'receive_telegram_notifications', 'telegram_chat_id', 'access_level', 'name', 'is_admin', 'list_user_group', 'list_user_role', 'metrics', 'attributes', 'allowed_functions') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='login') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| email = sgqlc.types.Field(String, graphql_name='email') | ||
| enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enabled') | ||
| fathers_name = sgqlc.types.Field(String, graphql_name='fathersName') | ||
| first_name = sgqlc.types.Field(String, graphql_name='firstName') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| created_at = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='createdAt') | ||
| updated_at = sgqlc.types.Field(UnixTime, graphql_name='updatedAt') | ||
| receive_notifications = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='receiveNotifications') | ||
| receive_telegram_notifications = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='receiveTelegramNotifications') | ||
| telegram_chat_id = sgqlc.types.Field(Long, graphql_name='telegramChatId') | ||
| access_level = sgqlc.types.Field(sgqlc.types.non_null(AccessLevel), graphql_name='accessLevel') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| is_admin = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='isAdmin') | ||
| last_name = sgqlc.types.Field(String, graphql_name='lastName') | ||
| list_user_group = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UserGroup'))), graphql_name='listUserGroup') | ||
| list_user_role = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null('UserRole'))), graphql_name='listUserRole') | ||
| login = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='login') | ||
| metrics = sgqlc.types.Field(sgqlc.types.non_null(UserMetrics), graphql_name='metrics') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| receive_notifications = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='receiveNotifications') | ||
| receive_telegram_notifications = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='receiveTelegramNotifications') | ||
| telegram_chat_id = sgqlc.types.Field(Long, graphql_name='telegramChatId') | ||
| updated_at = sgqlc.types.Field(UnixTime, graphql_name='updatedAt') | ||
| attributes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttribute))), graphql_name='attributes') | ||
| allowed_functions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AllowedFunctionsEnum))), graphql_name='allowedFunctions') | ||
@@ -860,10 +819,10 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('created_at', 'description', 'id', 'list_user', 'metrics', 'name', 'updated_at') | ||
| __field_names__ = ('id', 'name', 'description', 'created_at', 'updated_at', 'list_user', 'metrics') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| created_at = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='createdAt') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| updated_at = sgqlc.types.Field(UnixTime, graphql_name='updatedAt') | ||
| list_user = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(User))), graphql_name='listUser') | ||
| metrics = sgqlc.types.Field(sgqlc.types.non_null(UserGroupMetrics), graphql_name='metrics') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| updated_at = sgqlc.types.Field(UnixTime, graphql_name='updatedAt') | ||
@@ -873,10 +832,10 @@ | ||
| __schema__ = auth_api_schema | ||
| __field_names__ = ('attributes', 'created_at', 'description', 'id', 'metrics', 'name', 'updated_at') | ||
| attributes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttribute))), graphql_name='attributes') | ||
| created_at = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='createdAt') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| __field_names__ = ('id', 'name', 'description', 'created_at', 'updated_at', 'attributes', 'metrics') | ||
| id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id') | ||
| metrics = sgqlc.types.Field(sgqlc.types.non_null(UserRoleMetrics), graphql_name='metrics') | ||
| name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name') | ||
| description = sgqlc.types.Field(String, graphql_name='description') | ||
| created_at = sgqlc.types.Field(sgqlc.types.non_null(UnixTime), graphql_name='createdAt') | ||
| updated_at = sgqlc.types.Field(UnixTime, graphql_name='updatedAt') | ||
| attributes = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UserAttribute))), graphql_name='attributes') | ||
| metrics = sgqlc.types.Field(sgqlc.types.non_null(UserRoleMetrics), graphql_name='metrics') | ||
@@ -890,3 +849,3 @@ | ||
| __schema__ = auth_api_schema | ||
| __types__ = (BooleanListValue, BooleanValue, DoubleListValue, DoubleValue, IntListValue, IntValue, StringListValue, StringValue) | ||
| __types__ = (IntValue, DoubleValue, StringValue, BooleanValue, IntListValue, DoubleListValue, StringListValue, BooleanListValue) | ||
@@ -896,3 +855,3 @@ | ||
| __schema__ = auth_api_schema | ||
| __types__ = (Concept, ConceptLink, Document) | ||
| __types__ = (Concept, Document, ConceptLink) | ||
@@ -899,0 +858,0 @@ |
+1
-1
| [tool.poetry] | ||
| name = "ptal-api" | ||
| version = "1.0.0a23" | ||
| version = "1.0.0a24" | ||
| description = "TALISMAN API adapter" | ||
@@ -5,0 +5,0 @@ authors = ["Evgeny Bechkalo <bechkalo@ispras.ru>", "Ivan Medvedev <medvedev.iv@ispras.ru>", "Alexey Isakov <isakov@ispras.ru>"] |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
1105903
2.65%16197
2.01%