ecoportal-api-graphql 1.3.16 → 2.2.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +746 -6
- data/LICENSE +21 -21
- data/README.md +24 -24
- data/lib/ecoportal/api/common/graphql/auth_service.rb +115 -115
- data/lib/ecoportal/api/common/graphql/class_helpers.rb +46 -46
- data/lib/ecoportal/api/common/graphql/client.rb +69 -69
- data/lib/ecoportal/api/common/graphql/hash_helpers.rb +105 -105
- data/lib/ecoportal/api/common/graphql/http_client.rb +85 -2
- data/lib/ecoportal/api/common/graphql/model/as_input.rb +54 -54
- data/lib/ecoportal/api/common/graphql/model/diffable/classic_diff_service.rb +49 -49
- data/lib/ecoportal/api/common/graphql/model/diffable/diff_service.rb +188 -188
- data/lib/ecoportal/api/common/graphql/model/diffable/hash_diff.rb +55 -55
- data/lib/ecoportal/api/common/graphql/model/diffable/hash_diff_nesting.rb +295 -295
- data/lib/ecoportal/api/common/graphql/model/diffable/leaf_diff_service.rb +97 -0
- data/lib/ecoportal/api/common/graphql/model/diffable.rb +1 -0
- data/lib/ecoportal/api/common/graphql/model.rb +17 -17
- data/lib/ecoportal/api/common/graphql/patches.rb +1 -1
- data/lib/ecoportal/api/common/graphql/query_integration.rb +45 -45
- data/lib/ecoportal/api/common/graphql.rb +16 -16
- data/lib/ecoportal/api/common.graphql.rb +8 -8
- data/lib/ecoportal/api/graphql/base/action.rb +1 -1
- data/lib/ecoportal/api/graphql/base/action_category.rb +15 -15
- data/lib/ecoportal/api/graphql/base/action_event.rb +23 -0
- data/lib/ecoportal/api/graphql/base/action_event_page.rb +16 -0
- data/lib/ecoportal/api/graphql/base/activity.rb +38 -0
- data/lib/ecoportal/api/graphql/base/activity_log.rb +38 -0
- data/lib/ecoportal/api/graphql/base/ai_summary_version.rb +13 -8
- data/lib/ecoportal/api/graphql/base/auth_log.rb +24 -0
- data/lib/ecoportal/api/graphql/base/authorization_result.rb +20 -0
- data/lib/ecoportal/api/graphql/base/contractor_entity/member_changes.rb +17 -5
- data/lib/ecoportal/api/graphql/base/contractor_entity.rb +24 -24
- data/lib/ecoportal/api/graphql/base/date_time.rb +12 -12
- data/lib/ecoportal/api/graphql/base/delta_result.rb +16 -16
- data/lib/ecoportal/api/graphql/base/field.rb +12 -12
- data/lib/ecoportal/api/graphql/base/file_attachment.rb +15 -15
- data/lib/ecoportal/api/graphql/base/file_container.rb +12 -4
- data/lib/ecoportal/api/graphql/base/location_classification_type.rb +2 -0
- data/lib/ecoportal/api/graphql/base/location_node.rb +14 -14
- data/lib/ecoportal/api/graphql/base/location_structure/draft/structure.rb +37 -37
- data/lib/ecoportal/api/graphql/base/location_structure/draft.rb +93 -93
- data/lib/ecoportal/api/graphql/base/location_structure.rb +3 -0
- data/lib/ecoportal/api/graphql/base/minimal_dashboard.rb +25 -0
- data/lib/ecoportal/api/graphql/base/organization.rb +2 -0
- data/lib/ecoportal/api/graphql/base/page/data_field/actions_list.rb +9 -9
- data/lib/ecoportal/api/graphql/base/page/data_field/ai_summary.rb +18 -18
- data/lib/ecoportal/api/graphql/base/page/data_field/checklist.rb +29 -29
- data/lib/ecoportal/api/graphql/base/page/data_field/contractor_entities.rb +26 -3
- data/lib/ecoportal/api/graphql/base/page/data_field/cross_reference.rb +1 -1
- data/lib/ecoportal/api/graphql/base/page/data_field/date_field.rb +23 -23
- data/lib/ecoportal/api/graphql/base/page/data_field/file_field.rb +47 -8
- data/lib/ecoportal/api/graphql/base/page/data_field/geo.rb +24 -24
- data/lib/ecoportal/api/graphql/base/page/data_field/image_gallery.rb +6 -3
- data/lib/ecoportal/api/graphql/base/page/data_field/law.rb +8 -8
- data/lib/ecoportal/api/graphql/base/page/data_field/mailbox.rb +9 -9
- data/lib/ecoportal/api/graphql/base/page/data_field/people.rb +50 -12
- data/lib/ecoportal/api/graphql/base/page/data_field/plain_text.rb +17 -17
- data/lib/ecoportal/api/graphql/base/page/data_field/rich_text.rb +26 -26
- data/lib/ecoportal/api/graphql/base/page/data_field/signature.rb +9 -9
- data/lib/ecoportal/api/graphql/base/page/data_field/smart_fill.rb +17 -17
- data/lib/ecoportal/api/graphql/base/page/data_field/table.rb +9 -9
- data/lib/ecoportal/api/graphql/base/page/data_field/tag_field.rb +21 -21
- data/lib/ecoportal/api/graphql/base/page/data_field.rb +12 -18
- data/lib/ecoportal/api/graphql/base/page/phased/stage.rb +51 -0
- data/lib/ecoportal/api/graphql/base/page/phased.rb +15 -15
- data/lib/ecoportal/api/graphql/base/page/section.rb +48 -48
- data/lib/ecoportal/api/graphql/base/page_info.rb +12 -12
- data/lib/ecoportal/api/graphql/base/pages_workflow/operation_interface.rb +39 -39
- data/lib/ecoportal/api/graphql/base/pages_workflow/operations/assign_to.rb +27 -27
- data/lib/ecoportal/api/graphql/base/pages_workflow/operations/send_notification.rb +30 -30
- data/lib/ecoportal/api/graphql/base/pages_workflow/recipient_config.rb +34 -34
- data/lib/ecoportal/api/graphql/base/pages_workflow.rb +35 -35
- data/lib/ecoportal/api/graphql/base/permissions.rb +15 -0
- data/lib/ecoportal/api/graphql/base/person_member.rb +22 -22
- data/lib/ecoportal/api/graphql/base/person_member_changelog.rb +23 -0
- data/lib/ecoportal/api/graphql/base/preset_view.rb +136 -1
- data/lib/ecoportal/api/graphql/base/preview_page.rb +23 -23
- data/lib/ecoportal/api/graphql/base/register.rb +6 -1
- data/lib/ecoportal/api/graphql/base/resource.rb +13 -13
- data/lib/ecoportal/api/graphql/base/template/change_log_entry.rb +118 -0
- data/lib/ecoportal/api/graphql/base/template.rb +2 -0
- data/lib/ecoportal/api/graphql/base.rb +9 -0
- data/lib/ecoportal/api/graphql/builder/action.rb +41 -41
- data/lib/ecoportal/api/graphql/builder/contractor_entity.rb +10 -0
- data/lib/ecoportal/api/graphql/builder/location_structure/draft.rb +64 -64
- data/lib/ecoportal/api/graphql/builder/location_structure.rb +40 -40
- data/lib/ecoportal/api/graphql/builder/page.rb +0 -16
- data/lib/ecoportal/api/graphql/builder/register/preset_view.rb +84 -84
- data/lib/ecoportal/api/graphql/builder/register.rb +49 -49
- data/lib/ecoportal/api/graphql/builder/template.rb +46 -0
- data/lib/ecoportal/api/graphql/builder/template_builder.rb +21 -2
- data/lib/ecoportal/api/graphql/compat/page_reference.rb +23 -23
- data/lib/ecoportal/api/graphql/compat/pages.rb +7 -2
- data/lib/ecoportal/api/graphql/compat/registers.rb +84 -84
- data/lib/ecoportal/api/graphql/compat/response.rb +14 -0
- data/lib/ecoportal/api/graphql/compat/search_results.rb +33 -33
- data/lib/ecoportal/api/graphql/compat.rb +17 -17
- data/lib/ecoportal/api/graphql/concerns/data_field_access.rb +71 -71
- data/lib/ecoportal/api/graphql/concerns/fragment_definitions.rb +68 -68
- data/lib/ecoportal/api/graphql/concerns/snake_camel_access.rb +60 -60
- data/lib/ecoportal/api/graphql/concerns/threadable.rb +58 -0
- data/lib/ecoportal/api/graphql/concerns.rb +1 -0
- data/lib/ecoportal/api/graphql/connection/action.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/action_category.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/activity.rb +11 -0
- data/lib/ecoportal/api/graphql/connection/activity_log.rb +11 -0
- data/lib/ecoportal/api/graphql/connection/auth_log.rb +11 -0
- data/lib/ecoportal/api/graphql/connection/contractor_entity.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/minimal_dashboard.rb +11 -0
- data/lib/ecoportal/api/graphql/connection/page.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/pages_workflow_command.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/person_member.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/person_member_changelog.rb +11 -0
- data/lib/ecoportal/api/graphql/connection/preset_view.rb +11 -11
- data/lib/ecoportal/api/graphql/connection/preview_page.rb +1 -1
- data/lib/ecoportal/api/graphql/connection/template_change_log.rb +19 -0
- data/lib/ecoportal/api/graphql/connection.rb +6 -0
- data/lib/ecoportal/api/graphql/diff/change.rb +7 -2
- data/lib/ecoportal/api/graphql/diff/command_synthesizer.rb +19 -1
- data/lib/ecoportal/api/graphql/diff/pairing/signals.rb +21 -1
- data/lib/ecoportal/api/graphql/diff/version_diff.rb +13 -6
- data/lib/ecoportal/api/graphql/error/locations_error/fetch_nested.rb +51 -51
- data/lib/ecoportal/api/graphql/error/locations_error.rb +28 -28
- data/lib/ecoportal/api/graphql/error/locations_validation_error.rb +20 -20
- data/lib/ecoportal/api/graphql/error/validation_errors.rb +28 -28
- data/lib/ecoportal/api/graphql/error.rb +12 -12
- data/lib/ecoportal/api/graphql/file_upload/client.rb +199 -140
- data/lib/ecoportal/api/graphql/file_upload.rb +10 -10
- data/lib/ecoportal/api/graphql/fragment/action.rb +65 -65
- data/lib/ecoportal/api/graphql/fragment/action_category.rb +17 -17
- data/lib/ecoportal/api/graphql/fragment/activity.rb +84 -0
- data/lib/ecoportal/api/graphql/fragment/activity_log.rb +75 -0
- data/lib/ecoportal/api/graphql/fragment/auth_log.rb +29 -0
- data/lib/ecoportal/api/graphql/fragment/authorization_result.rb +14 -0
- data/lib/ecoportal/api/graphql/fragment/contractor_entity.rb +20 -20
- data/lib/ecoportal/api/graphql/fragment/location_node.rb +1 -0
- data/lib/ecoportal/api/graphql/fragment/locations_error.rb +19 -19
- data/lib/ecoportal/api/graphql/fragment/minimal_dashboard.rb +31 -0
- data/lib/ecoportal/api/graphql/fragment/page.rb +1 -0
- data/lib/ecoportal/api/graphql/fragment/pages/common_page_union.rb +23 -0
- data/lib/ecoportal/api/graphql/fragment/pages.rb +15 -15
- data/lib/ecoportal/api/graphql/fragment/pagination.rb +17 -17
- data/lib/ecoportal/api/graphql/fragment/permissions.rb +98 -0
- data/lib/ecoportal/api/graphql/fragment/person_member_changelog.rb +33 -0
- data/lib/ecoportal/api/graphql/fragment/template_change_log.rb +102 -0
- data/lib/ecoportal/api/graphql/fragment.rb +8 -0
- data/lib/ecoportal/api/graphql/helpers/locations_tree.rb +41 -41
- data/lib/ecoportal/api/graphql/helpers.rb +10 -10
- data/lib/ecoportal/api/graphql/input/action/archive.rb +14 -14
- data/lib/ecoportal/api/graphql/input/action/create.rb +13 -13
- data/lib/ecoportal/api/graphql/input/action/update.rb +12 -0
- data/lib/ecoportal/api/graphql/input/action.rb +14 -14
- data/lib/ecoportal/api/graphql/input/contractor_entity/create.rb +14 -14
- data/lib/ecoportal/api/graphql/input/contractor_entity/destroy.rb +13 -13
- data/lib/ecoportal/api/graphql/input/contractor_entity/manager_settings.rb +20 -0
- data/lib/ecoportal/api/graphql/input/contractor_entity/update.rb +6 -27
- data/lib/ecoportal/api/graphql/input/contractor_entity.rb +1 -0
- data/lib/ecoportal/api/graphql/input/date_range.rb +16 -0
- data/lib/ecoportal/api/graphql/input/delta_input.rb +16 -16
- data/lib/ecoportal/api/graphql/input/id_diff.rb +11 -11
- data/lib/ecoportal/api/graphql/input/location_structure/apply_commands.rb +2 -2
- data/lib/ecoportal/api/graphql/input/location_structure/archive_command.rb +13 -13
- data/lib/ecoportal/api/graphql/input/location_structure/delete_command.rb +13 -13
- data/lib/ecoportal/api/graphql/input/location_structure/draft/add_commands.rb +2 -2
- data/lib/ecoportal/api/graphql/input/location_structure/draft/create.rb +15 -15
- data/lib/ecoportal/api/graphql/input/location_structure/draft/delete.rb +15 -15
- data/lib/ecoportal/api/graphql/input/location_structure/draft/drop_bad_commands.rb +16 -16
- data/lib/ecoportal/api/graphql/input/location_structure/draft/publish.rb +16 -16
- data/lib/ecoportal/api/graphql/input/location_structure/draft.rb +19 -19
- data/lib/ecoportal/api/graphql/input/location_structure/insert_command.rb +21 -13
- data/lib/ecoportal/api/graphql/input/location_structure/move_command.rb +14 -14
- data/lib/ecoportal/api/graphql/input/location_structure/reorder_command.rb +13 -13
- data/lib/ecoportal/api/graphql/input/location_structure/unarchive_command.rb +13 -13
- data/lib/ecoportal/api/graphql/input/location_structure/update_command.rb +6 -2
- data/lib/ecoportal/api/graphql/input/location_structure.rb +20 -20
- data/lib/ecoportal/api/graphql/input/page/archive.rb +14 -14
- data/lib/ecoportal/api/graphql/input/page/build_from_template.rb +13 -13
- data/lib/ecoportal/api/graphql/input/page/create_draft.rb +13 -13
- data/lib/ecoportal/api/graphql/input/page/create_from_template.rb +18 -18
- data/lib/ecoportal/api/graphql/input/page/delete_draft.rb +13 -13
- data/lib/ecoportal/api/graphql/input/page/publish_draft.rb +13 -13
- data/lib/ecoportal/api/graphql/input/page/review_task.rb +27 -14
- data/lib/ecoportal/api/graphql/input/page/unarchive.rb +14 -14
- data/lib/ecoportal/api/graphql/input/page.rb +26 -26
- data/lib/ecoportal/api/graphql/input/preset_view/create.rb +18 -18
- data/lib/ecoportal/api/graphql/input/preset_view/permission.rb +16 -16
- data/lib/ecoportal/api/graphql/input/preset_view/update.rb +17 -2
- data/lib/ecoportal/api/graphql/input/preset_view.rb +14 -14
- data/lib/ecoportal/api/graphql/input/register/create.rb +18 -18
- data/lib/ecoportal/api/graphql/input/register/update.rb +15 -15
- data/lib/ecoportal/api/graphql/input/register.rb +13 -13
- data/lib/ecoportal/api/graphql/input/search.rb +13 -13
- data/lib/ecoportal/api/graphql/input/search_conf/ai_generator.rb +234 -234
- data/lib/ecoportal/api/graphql/input/search_filter.rb +12 -12
- data/lib/ecoportal/api/graphql/input/search_sorter.rb +11 -11
- data/lib/ecoportal/api/graphql/input/workflow_command/add_action_tag.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_binding.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_checklist_field_item.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/add_comment_tagging_user_group.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_default_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_default_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_field.rb +10 -9
- data/lib/ecoportal/api/graphql/input/workflow_command/add_force.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_linked_field_config.rb +23 -23
- data/lib/ecoportal/api/graphql/input/workflow_command/add_linked_helper.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_operation.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_operation_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_operation_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_recipient_action_type.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_recipient_filter.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_recipient_people_field.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_recipient_task_config.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_recipient_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_scheduled_callback.rb +23 -23
- data/lib/ecoportal/api/graphql/input/workflow_command/add_scheduled_callback_action.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_select_field_option.rb +25 -19
- data/lib/ecoportal/api/graphql/input/workflow_command/add_smart_fill_config.rb +23 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/add_stage.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/add_stage_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_stage_tag.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_task.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_task_assignment_user_group.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/add_viewable_field.rb +45 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/add_workflow_callback.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/archive_public_config.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/collapse_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/create_public_config.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_binding.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_checklist_field_item.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_creator_permissions.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_default_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_field_configuration.rb +17 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_force.rb +21 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_gauge_field_stop.rb +19 -19
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_linked_field_config.rb +19 -19
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_linked_helper.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_operation.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_operation_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_public_config.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_reminder.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_required_sign_offs.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_restrict_comment_tagging.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_restrict_task_assignment.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_scheduled_callback.rb +22 -22
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_section_header.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_select_field_option.rb +23 -19
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_smart_fill_config.rb +21 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_stage.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_task_due.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_template_advanced_settings.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_template_basic_settings.rb +32 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_template_container_uid.rb +45 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/{edit_page_creator_permissions.rb → edit_template_creator_permissions.rb} +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_template_descriptions.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_trigger.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/expand_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/action_list.rb +31 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/contractor_entities.rb +28 -24
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/cross_reference.rb +9 -1
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/date.rb +15 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/file.rb +21 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/gauge.rb +20 -20
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/image_gallery.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/location_field.rb +24 -24
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/people.rb +27 -3
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/plain_text.rb +9 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/rich_text.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/select.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/signature.rb +20 -20
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/table.rb +25 -25
- data/lib/ecoportal/api/graphql/input/workflow_command/manage_copy_page_configuration.rb +47 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/move_field.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/move_stage.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/move_viewable_field.rb +33 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_action_tag.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_binding.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_callback.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_checklist_field_item.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_comment_tagging_user_group.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_default_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_default_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_field.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_force.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_linked_helper.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_operation.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_operation_direct_strategy_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_operation_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_recipient_action_type.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_recipient_filter.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_recipient_people_field.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_recipient_task_config.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_recipient_user.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_scheduled_callback.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_smart_fill_config.rb +19 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_stage.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_stage_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_stage_tag.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_strategy.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_task.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_task_assignment_user_group.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_task_due.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_task_priority_level.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/remove_viewable_field.rb +21 -0
- data/lib/ecoportal/api/graphql/input/workflow_command/reorder_forces.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/reorder_section.rb +3 -2
- data/lib/ecoportal/api/graphql/input/workflow_command.rb +46 -5
- data/lib/ecoportal/api/graphql/input.rb +1 -0
- data/lib/ecoportal/api/graphql/interface/base_page.rb +50 -3
- data/lib/ecoportal/api/graphql/interface/location_structure/command.rb +2 -1
- data/lib/ecoportal/api/graphql/interface/location_structure/node.rb +43 -43
- data/lib/ecoportal/api/graphql/interface/location_structure.rb +14 -14
- data/lib/ecoportal/api/graphql/interface.rb +11 -11
- data/lib/ecoportal/api/graphql/logic/base_model.rb +15 -15
- data/lib/ecoportal/api/graphql/logic/base_query.rb +260 -193
- data/lib/ecoportal/api/graphql/logic/connection.rb +17 -0
- data/lib/ecoportal/api/graphql/logic/input.rb +127 -0
- data/lib/ecoportal/api/graphql/logic/mutation.rb +59 -59
- data/lib/ecoportal/api/graphql/logic/payload.rb +42 -42
- data/lib/ecoportal/api/graphql/logic/query.rb +23 -23
- data/lib/ecoportal/api/graphql/logic/query_array.rb +30 -30
- data/lib/ecoportal/api/graphql/logic/query_connection.rb +48 -48
- data/lib/ecoportal/api/graphql/logic.rb +18 -18
- data/lib/ecoportal/api/graphql/model/account.rb +15 -15
- data/lib/ecoportal/api/graphql/model/action.rb +22 -22
- data/lib/ecoportal/api/graphql/model/action_event.rb +14 -0
- data/lib/ecoportal/api/graphql/model/action_event_page.rb +10 -0
- data/lib/ecoportal/api/graphql/model/activity.rb +14 -0
- data/lib/ecoportal/api/graphql/model/activity_log.rb +31 -0
- data/lib/ecoportal/api/graphql/model/ai_summary_version.rb +10 -10
- data/lib/ecoportal/api/graphql/model/auth_log.rb +11 -0
- data/lib/ecoportal/api/graphql/model/authorization_result.rb +12 -0
- data/lib/ecoportal/api/graphql/model/contractor_entity.rb +12 -12
- data/lib/ecoportal/api/graphql/model/field.rb +10 -10
- data/lib/ecoportal/api/graphql/model/file_attachment.rb +10 -10
- data/lib/ecoportal/api/graphql/model/file_container.rb +11 -11
- data/lib/ecoportal/api/graphql/model/location_node.rb +14 -14
- data/lib/ecoportal/api/graphql/model/location_structure/draft/structure.rb +15 -15
- data/lib/ecoportal/api/graphql/model/location_structure/draft.rb +15 -15
- data/lib/ecoportal/api/graphql/model/location_structure.rb +16 -16
- data/lib/ecoportal/api/graphql/model/minimal_dashboard.rb +14 -0
- data/lib/ecoportal/api/graphql/model/organization.rb +36 -0
- data/lib/ecoportal/api/graphql/model/page/basic.rb +14 -14
- data/lib/ecoportal/api/graphql/model/page/data_field.rb +12 -12
- data/lib/ecoportal/api/graphql/model/page/phased/stage.rb +14 -14
- data/lib/ecoportal/api/graphql/model/page/phased.rb +17 -0
- data/lib/ecoportal/api/graphql/model/page/section.rb +12 -12
- data/lib/ecoportal/api/graphql/model/page_union.rb +21 -21
- data/lib/ecoportal/api/graphql/model/pages_workflow.rb +20 -20
- data/lib/ecoportal/api/graphql/model/permissions.rb +179 -0
- data/lib/ecoportal/api/graphql/model/person_member.rb +7 -0
- data/lib/ecoportal/api/graphql/model/person_member_changelog.rb +15 -0
- data/lib/ecoportal/api/graphql/model/preset_view.rb +10 -10
- data/lib/ecoportal/api/graphql/model/preview_page.rb +10 -10
- data/lib/ecoportal/api/graphql/model/register.rb +10 -10
- data/lib/ecoportal/api/graphql/model/resource.rb +13 -13
- data/lib/ecoportal/api/graphql/model/template/change_log_entry.rb +19 -0
- data/lib/ecoportal/api/graphql/model/template.rb +4 -1
- data/lib/ecoportal/api/graphql/model/user.rb +14 -14
- data/lib/ecoportal/api/graphql/model.rb +9 -0
- data/lib/ecoportal/api/graphql/mutation/action/archive.rb +41 -41
- data/lib/ecoportal/api/graphql/mutation/action/create.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/action/update.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/action.rb +14 -14
- data/lib/ecoportal/api/graphql/mutation/ai_summary/generate.rb +21 -11
- data/lib/ecoportal/api/graphql/mutation/ai_summary/submit_feedback.rb +26 -11
- data/lib/ecoportal/api/graphql/mutation/ai_summary.rb +13 -13
- data/lib/ecoportal/api/graphql/mutation/contractor_entity/create.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/contractor_entity/destroy.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/contractor_entity/update.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/contractor_entity/update_manager_settings.rb +37 -0
- data/lib/ecoportal/api/graphql/mutation/contractor_entity.rb +1 -0
- data/lib/ecoportal/api/graphql/mutation/file_container/upload.rb +78 -0
- data/lib/ecoportal/api/graphql/mutation/file_container.rb +15 -0
- data/lib/ecoportal/api/graphql/mutation/location_structure/apply_commands.rb +54 -54
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft/add_commands.rb +55 -55
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft/create.rb +54 -54
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft/delete.rb +43 -43
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft/drop_bad_commands.rb +56 -56
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft/publish.rb +66 -66
- data/lib/ecoportal/api/graphql/mutation/location_structure/draft.rb +18 -18
- data/lib/ecoportal/api/graphql/mutation/location_structure.rb +13 -13
- data/lib/ecoportal/api/graphql/mutation/page/approve_review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/archive.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/page/batch_update_review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/build_from_template.rb +50 -50
- data/lib/ecoportal/api/graphql/mutation/page/create_draft.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/create_from_template.rb +43 -43
- data/lib/ecoportal/api/graphql/mutation/page/delete_draft.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/publish_draft.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/reject_review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/restart_review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/unarchive.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/page/undo_review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/page/update.rb +40 -40
- data/lib/ecoportal/api/graphql/mutation/page.rb +28 -28
- data/lib/ecoportal/api/graphql/mutation/preset_view/create.rb +35 -35
- data/lib/ecoportal/api/graphql/mutation/preset_view/destroy.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/preset_view/permission.rb +37 -37
- data/lib/ecoportal/api/graphql/mutation/preset_view/update.rb +35 -35
- data/lib/ecoportal/api/graphql/mutation/preset_view.rb +15 -15
- data/lib/ecoportal/api/graphql/mutation/register/create.rb +35 -35
- data/lib/ecoportal/api/graphql/mutation/register/destroy.rb +1 -1
- data/lib/ecoportal/api/graphql/mutation/register/update.rb +35 -35
- data/lib/ecoportal/api/graphql/mutation/register.rb +14 -14
- data/lib/ecoportal/api/graphql/mutation/template/update_related_page.rb +79 -0
- data/lib/ecoportal/api/graphql/mutation/template.rb +1 -0
- data/lib/ecoportal/api/graphql/mutation.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/action/archive.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/action/create.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/action/update.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/action.rb +14 -14
- data/lib/ecoportal/api/graphql/payload/ai_summary_generate.rb +12 -12
- data/lib/ecoportal/api/graphql/payload/contractor_entity/create.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/contractor_entity/destroy.rb +12 -12
- data/lib/ecoportal/api/graphql/payload/contractor_entity/manager_settings.rb +20 -0
- data/lib/ecoportal/api/graphql/payload/contractor_entity/update.rb +12 -12
- data/lib/ecoportal/api/graphql/payload/contractor_entity.rb +1 -0
- data/lib/ecoportal/api/graphql/payload/kickstand/bulk_update_jobs.rb +2 -2
- data/lib/ecoportal/api/graphql/payload/kickstand/bulk_update_workflows.rb +2 -2
- data/lib/ecoportal/api/graphql/payload/location_structure/apply_commands.rb +51 -51
- data/lib/ecoportal/api/graphql/payload/location_structure/command_execution_result.rb +50 -50
- data/lib/ecoportal/api/graphql/payload/location_structure/draft/add_commands.rb +30 -30
- data/lib/ecoportal/api/graphql/payload/location_structure/draft/delete.rb +30 -30
- data/lib/ecoportal/api/graphql/payload/location_structure/draft/drop_bad_commands.rb +43 -43
- data/lib/ecoportal/api/graphql/payload/location_structure/draft/publish.rb +63 -63
- data/lib/ecoportal/api/graphql/payload/location_structure/draft.rb +18 -18
- data/lib/ecoportal/api/graphql/payload/location_structure.rb +14 -14
- data/lib/ecoportal/api/graphql/payload/ok_payload.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/page/archive.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/page/build_from_template.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/page/create_from_template.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/page/draft.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/page/review_task.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/page/unarchive.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/page/update.rb +13 -13
- data/lib/ecoportal/api/graphql/payload/preset_view.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/register.rb +1 -1
- data/lib/ecoportal/api/graphql/payload/template/update_related_page.rb +15 -0
- data/lib/ecoportal/api/graphql/payload/template.rb +1 -0
- data/lib/ecoportal/api/graphql/payload/upload.rb +12 -0
- data/lib/ecoportal/api/graphql/payload.rb +1 -0
- data/lib/ecoportal/api/graphql/query/action.rb +33 -33
- data/lib/ecoportal/api/graphql/query/action_categories.rb +53 -53
- data/lib/ecoportal/api/graphql/query/actions.rb +43 -43
- data/lib/ecoportal/api/graphql/query/activity_logs.rb +78 -0
- data/lib/ecoportal/api/graphql/query/auth_logs.rb +51 -0
- data/lib/ecoportal/api/graphql/query/contractor_entities.rb +53 -53
- data/lib/ecoportal/api/graphql/query/dashboard_search.rb +57 -0
- data/lib/ecoportal/api/graphql/query/file_upload_signature.rb +76 -76
- data/lib/ecoportal/api/graphql/query/location_classifications.rb +39 -39
- data/lib/ecoportal/api/graphql/query/location_structure.rb +2 -0
- data/lib/ecoportal/api/graphql/query/location_structures.rb +2 -0
- data/lib/ecoportal/api/graphql/query/page.rb +6 -1
- data/lib/ecoportal/api/graphql/query/page_activities.rb +56 -0
- data/lib/ecoportal/api/graphql/query/page_delta.rb +47 -47
- data/lib/ecoportal/api/graphql/query/pages.rb +59 -59
- data/lib/ecoportal/api/graphql/query/permissions.rb +35 -0
- data/lib/ecoportal/api/graphql/query/person_member_changelogs.rb +53 -0
- data/lib/ecoportal/api/graphql/query/person_members.rb +76 -0
- data/lib/ecoportal/api/graphql/query/register_preset_views.rb +1 -1
- data/lib/ecoportal/api/graphql/query/register_preview_pages.rb +83 -83
- data/lib/ecoportal/api/graphql/query/template_change_log.rb +118 -0
- data/lib/ecoportal/api/graphql/query/templates.rb +53 -53
- data/lib/ecoportal/api/graphql/query.rb +8 -0
- data/lib/ecoportal/api/graphql_version.rb +1 -1
- data/lib/ecoportal/api-graphql.rb +10 -10
- metadata +82 -19
- data/lib/ecoportal/api/common/graphql/CLAUDE.md +0 -36
- data/lib/ecoportal/api/common/graphql/model/CLAUDE.md +0 -28
- data/lib/ecoportal/api/graphql/CLAUDE.md +0 -37
- data/lib/ecoportal/api/graphql/base/CLAUDE.md +0 -50
- data/lib/ecoportal/api/graphql/builder/CLAUDE.md +0 -65
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_page.rb +0 -28
- data/lib/ecoportal/api/graphql/mutation/smart_fill/generate.rb +0 -36
- data/lib/ecoportal/api/graphql/mutation/smart_fill/submit_feedback.rb +0 -40
- data/lib/ecoportal/api/graphql/mutation/smart_fill.rb +0 -13
|
@@ -14,6 +14,13 @@ require_relative 'query/action_categories'
|
|
|
14
14
|
require_relative 'query/action'
|
|
15
15
|
require_relative 'query/actions'
|
|
16
16
|
require_relative 'query/contractor_entities'
|
|
17
|
+
require_relative 'query/activity_logs'
|
|
18
|
+
require_relative 'query/page_activities'
|
|
19
|
+
require_relative 'query/auth_logs'
|
|
20
|
+
require_relative 'query/permissions'
|
|
21
|
+
require_relative 'query/person_member_changelogs'
|
|
22
|
+
require_relative 'query/person_members'
|
|
23
|
+
require_relative 'query/dashboard_search'
|
|
17
24
|
require_relative 'query/page'
|
|
18
25
|
require_relative 'query/pages'
|
|
19
26
|
require_relative 'query/templates'
|
|
@@ -25,3 +32,4 @@ require_relative 'query/file_upload_signature'
|
|
|
25
32
|
|
|
26
33
|
require_relative 'query/page_with_forces'
|
|
27
34
|
require_relative 'query/pages_workflow_commands'
|
|
35
|
+
require_relative 'query/template_change_log'
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
require "ecoportal/api-v2"
|
|
2
|
-
require "ecoportal/api/graphql_version"
|
|
3
|
-
|
|
4
|
-
module Ecoportal
|
|
5
|
-
module API
|
|
6
|
-
end
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
require_relative "api/common.graphql"
|
|
10
|
-
require_relative "api/graphql"
|
|
1
|
+
require "ecoportal/api-v2"
|
|
2
|
+
require "ecoportal/api/graphql_version"
|
|
3
|
+
|
|
4
|
+
module Ecoportal
|
|
5
|
+
module API
|
|
6
|
+
end
|
|
7
|
+
end
|
|
8
|
+
|
|
9
|
+
require_relative "api/common.graphql"
|
|
10
|
+
require_relative "api/graphql"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ecoportal-api-graphql
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 2.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Oscar Segura
|
|
@@ -140,7 +140,7 @@ dependencies:
|
|
|
140
140
|
version: '0.10'
|
|
141
141
|
- - ">="
|
|
142
142
|
- !ruby/object:Gem::Version
|
|
143
|
-
version: 0.10.
|
|
143
|
+
version: 0.10.17
|
|
144
144
|
type: :runtime
|
|
145
145
|
prerelease: false
|
|
146
146
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -150,7 +150,7 @@ dependencies:
|
|
|
150
150
|
version: '0.10'
|
|
151
151
|
- - ">="
|
|
152
152
|
- !ruby/object:Gem::Version
|
|
153
|
-
version: 0.10.
|
|
153
|
+
version: 0.10.17
|
|
154
154
|
- !ruby/object:Gem::Dependency
|
|
155
155
|
name: ecoportal-api-v2
|
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -160,7 +160,7 @@ dependencies:
|
|
|
160
160
|
version: '3.3'
|
|
161
161
|
- - ">="
|
|
162
162
|
- !ruby/object:Gem::Version
|
|
163
|
-
version: 3.3.
|
|
163
|
+
version: 3.3.5
|
|
164
164
|
type: :runtime
|
|
165
165
|
prerelease: false
|
|
166
166
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -170,27 +170,27 @@ dependencies:
|
|
|
170
170
|
version: '3.3'
|
|
171
171
|
- - ">="
|
|
172
172
|
- !ruby/object:Gem::Version
|
|
173
|
-
version: 3.3.
|
|
173
|
+
version: 3.3.5
|
|
174
174
|
- !ruby/object:Gem::Dependency
|
|
175
175
|
name: graphlient
|
|
176
176
|
requirement: !ruby/object:Gem::Requirement
|
|
177
177
|
requirements:
|
|
178
178
|
- - ">="
|
|
179
179
|
- !ruby/object:Gem::Version
|
|
180
|
-
version: 0.
|
|
180
|
+
version: 0.9.0
|
|
181
181
|
- - "<"
|
|
182
182
|
- !ruby/object:Gem::Version
|
|
183
|
-
version: '0.
|
|
183
|
+
version: '0.10'
|
|
184
184
|
type: :runtime
|
|
185
185
|
prerelease: false
|
|
186
186
|
version_requirements: !ruby/object:Gem::Requirement
|
|
187
187
|
requirements:
|
|
188
188
|
- - ">="
|
|
189
189
|
- !ruby/object:Gem::Version
|
|
190
|
-
version: 0.
|
|
190
|
+
version: 0.9.0
|
|
191
191
|
- - "<"
|
|
192
192
|
- !ruby/object:Gem::Version
|
|
193
|
-
version: '0.
|
|
193
|
+
version: '0.10'
|
|
194
194
|
email:
|
|
195
195
|
- oscar@ecoportal.co.nz
|
|
196
196
|
executables: []
|
|
@@ -203,29 +203,32 @@ files:
|
|
|
203
203
|
- lib/ecoportal/api-graphql.rb
|
|
204
204
|
- lib/ecoportal/api/common.graphql.rb
|
|
205
205
|
- lib/ecoportal/api/common/graphql.rb
|
|
206
|
-
- lib/ecoportal/api/common/graphql/CLAUDE.md
|
|
207
206
|
- lib/ecoportal/api/common/graphql/auth_service.rb
|
|
208
207
|
- lib/ecoportal/api/common/graphql/class_helpers.rb
|
|
209
208
|
- lib/ecoportal/api/common/graphql/client.rb
|
|
210
209
|
- lib/ecoportal/api/common/graphql/hash_helpers.rb
|
|
211
210
|
- lib/ecoportal/api/common/graphql/http_client.rb
|
|
212
211
|
- lib/ecoportal/api/common/graphql/model.rb
|
|
213
|
-
- lib/ecoportal/api/common/graphql/model/CLAUDE.md
|
|
214
212
|
- lib/ecoportal/api/common/graphql/model/as_input.rb
|
|
215
213
|
- lib/ecoportal/api/common/graphql/model/diffable.rb
|
|
216
214
|
- lib/ecoportal/api/common/graphql/model/diffable/classic_diff_service.rb
|
|
217
215
|
- lib/ecoportal/api/common/graphql/model/diffable/diff_service.rb
|
|
218
216
|
- lib/ecoportal/api/common/graphql/model/diffable/hash_diff.rb
|
|
219
217
|
- lib/ecoportal/api/common/graphql/model/diffable/hash_diff_nesting.rb
|
|
218
|
+
- lib/ecoportal/api/common/graphql/model/diffable/leaf_diff_service.rb
|
|
220
219
|
- lib/ecoportal/api/common/graphql/patches.rb
|
|
221
220
|
- lib/ecoportal/api/common/graphql/query_integration.rb
|
|
222
221
|
- lib/ecoportal/api/graphql.rb
|
|
223
|
-
- lib/ecoportal/api/graphql/CLAUDE.md
|
|
224
222
|
- lib/ecoportal/api/graphql/base.rb
|
|
225
|
-
- lib/ecoportal/api/graphql/base/CLAUDE.md
|
|
226
223
|
- lib/ecoportal/api/graphql/base/action.rb
|
|
227
224
|
- lib/ecoportal/api/graphql/base/action_category.rb
|
|
225
|
+
- lib/ecoportal/api/graphql/base/action_event.rb
|
|
226
|
+
- lib/ecoportal/api/graphql/base/action_event_page.rb
|
|
227
|
+
- lib/ecoportal/api/graphql/base/activity.rb
|
|
228
|
+
- lib/ecoportal/api/graphql/base/activity_log.rb
|
|
228
229
|
- lib/ecoportal/api/graphql/base/ai_summary_version.rb
|
|
230
|
+
- lib/ecoportal/api/graphql/base/auth_log.rb
|
|
231
|
+
- lib/ecoportal/api/graphql/base/authorization_result.rb
|
|
229
232
|
- lib/ecoportal/api/graphql/base/contractor_entity.rb
|
|
230
233
|
- lib/ecoportal/api/graphql/base/contractor_entity/member_changes.rb
|
|
231
234
|
- lib/ecoportal/api/graphql/base/date_time.rb
|
|
@@ -245,6 +248,7 @@ files:
|
|
|
245
248
|
- lib/ecoportal/api/graphql/base/location_structure.rb
|
|
246
249
|
- lib/ecoportal/api/graphql/base/location_structure/draft.rb
|
|
247
250
|
- lib/ecoportal/api/graphql/base/location_structure/draft/structure.rb
|
|
251
|
+
- lib/ecoportal/api/graphql/base/minimal_dashboard.rb
|
|
248
252
|
- lib/ecoportal/api/graphql/base/organization.rb
|
|
249
253
|
- lib/ecoportal/api/graphql/base/page.rb
|
|
250
254
|
- lib/ecoportal/api/graphql/base/page/basic.rb
|
|
@@ -300,14 +304,16 @@ files:
|
|
|
300
304
|
- lib/ecoportal/api/graphql/base/pages_workflow/trigger_interface.rb
|
|
301
305
|
- lib/ecoportal/api/graphql/base/pages_workflow/triggers/conditional_logic.rb
|
|
302
306
|
- lib/ecoportal/api/graphql/base/pages_workflow/user_selection.rb
|
|
307
|
+
- lib/ecoportal/api/graphql/base/permissions.rb
|
|
303
308
|
- lib/ecoportal/api/graphql/base/person_member.rb
|
|
309
|
+
- lib/ecoportal/api/graphql/base/person_member_changelog.rb
|
|
304
310
|
- lib/ecoportal/api/graphql/base/preset_view.rb
|
|
305
311
|
- lib/ecoportal/api/graphql/base/preview_page.rb
|
|
306
312
|
- lib/ecoportal/api/graphql/base/register.rb
|
|
307
313
|
- lib/ecoportal/api/graphql/base/resource.rb
|
|
308
314
|
- lib/ecoportal/api/graphql/base/template.rb
|
|
315
|
+
- lib/ecoportal/api/graphql/base/template/change_log_entry.rb
|
|
309
316
|
- lib/ecoportal/api/graphql/builder.rb
|
|
310
|
-
- lib/ecoportal/api/graphql/builder/CLAUDE.md
|
|
311
317
|
- lib/ecoportal/api/graphql/builder/action.rb
|
|
312
318
|
- lib/ecoportal/api/graphql/builder/contractor_entity.rb
|
|
313
319
|
- lib/ecoportal/api/graphql/builder/kickstand.rb
|
|
@@ -333,15 +339,22 @@ files:
|
|
|
333
339
|
- lib/ecoportal/api/graphql/concerns/fragment_definitions.rb
|
|
334
340
|
- lib/ecoportal/api/graphql/concerns/page_compat.rb
|
|
335
341
|
- lib/ecoportal/api/graphql/concerns/snake_camel_access.rb
|
|
342
|
+
- lib/ecoportal/api/graphql/concerns/threadable.rb
|
|
336
343
|
- lib/ecoportal/api/graphql/connection.rb
|
|
337
344
|
- lib/ecoportal/api/graphql/connection/action.rb
|
|
338
345
|
- lib/ecoportal/api/graphql/connection/action_category.rb
|
|
346
|
+
- lib/ecoportal/api/graphql/connection/activity.rb
|
|
347
|
+
- lib/ecoportal/api/graphql/connection/activity_log.rb
|
|
348
|
+
- lib/ecoportal/api/graphql/connection/auth_log.rb
|
|
339
349
|
- lib/ecoportal/api/graphql/connection/contractor_entity.rb
|
|
350
|
+
- lib/ecoportal/api/graphql/connection/minimal_dashboard.rb
|
|
340
351
|
- lib/ecoportal/api/graphql/connection/page.rb
|
|
341
352
|
- lib/ecoportal/api/graphql/connection/pages_workflow_command.rb
|
|
342
353
|
- lib/ecoportal/api/graphql/connection/person_member.rb
|
|
354
|
+
- lib/ecoportal/api/graphql/connection/person_member_changelog.rb
|
|
343
355
|
- lib/ecoportal/api/graphql/connection/preset_view.rb
|
|
344
356
|
- lib/ecoportal/api/graphql/connection/preview_page.rb
|
|
357
|
+
- lib/ecoportal/api/graphql/connection/template_change_log.rb
|
|
345
358
|
- lib/ecoportal/api/graphql/diff.rb
|
|
346
359
|
- lib/ecoportal/api/graphql/diff/change.rb
|
|
347
360
|
- lib/ecoportal/api/graphql/diff/command_synthesizer.rb
|
|
@@ -364,19 +377,27 @@ files:
|
|
|
364
377
|
- lib/ecoportal/api/graphql/fragment.rb
|
|
365
378
|
- lib/ecoportal/api/graphql/fragment/action.rb
|
|
366
379
|
- lib/ecoportal/api/graphql/fragment/action_category.rb
|
|
380
|
+
- lib/ecoportal/api/graphql/fragment/activity.rb
|
|
381
|
+
- lib/ecoportal/api/graphql/fragment/activity_log.rb
|
|
382
|
+
- lib/ecoportal/api/graphql/fragment/auth_log.rb
|
|
383
|
+
- lib/ecoportal/api/graphql/fragment/authorization_result.rb
|
|
367
384
|
- lib/ecoportal/api/graphql/fragment/contractor_entity.rb
|
|
368
385
|
- lib/ecoportal/api/graphql/fragment/field_configuration.rb
|
|
369
386
|
- lib/ecoportal/api/graphql/fragment/force.rb
|
|
370
387
|
- lib/ecoportal/api/graphql/fragment/location_draft.rb
|
|
371
388
|
- lib/ecoportal/api/graphql/fragment/location_node.rb
|
|
372
389
|
- lib/ecoportal/api/graphql/fragment/locations_error.rb
|
|
390
|
+
- lib/ecoportal/api/graphql/fragment/minimal_dashboard.rb
|
|
373
391
|
- lib/ecoportal/api/graphql/fragment/page.rb
|
|
374
392
|
- lib/ecoportal/api/graphql/fragment/page_task.rb
|
|
375
393
|
- lib/ecoportal/api/graphql/fragment/pages.rb
|
|
376
394
|
- lib/ecoportal/api/graphql/fragment/pages/common_page_union.rb
|
|
377
395
|
- lib/ecoportal/api/graphql/fragment/pages_workflow.rb
|
|
378
396
|
- lib/ecoportal/api/graphql/fragment/pagination.rb
|
|
397
|
+
- lib/ecoportal/api/graphql/fragment/permissions.rb
|
|
398
|
+
- lib/ecoportal/api/graphql/fragment/person_member_changelog.rb
|
|
379
399
|
- lib/ecoportal/api/graphql/fragment/template.rb
|
|
400
|
+
- lib/ecoportal/api/graphql/fragment/template_change_log.rb
|
|
380
401
|
- lib/ecoportal/api/graphql/helpers.rb
|
|
381
402
|
- lib/ecoportal/api/graphql/helpers/locations_tree.rb
|
|
382
403
|
- lib/ecoportal/api/graphql/input.rb
|
|
@@ -387,7 +408,9 @@ files:
|
|
|
387
408
|
- lib/ecoportal/api/graphql/input/contractor_entity.rb
|
|
388
409
|
- lib/ecoportal/api/graphql/input/contractor_entity/create.rb
|
|
389
410
|
- lib/ecoportal/api/graphql/input/contractor_entity/destroy.rb
|
|
411
|
+
- lib/ecoportal/api/graphql/input/contractor_entity/manager_settings.rb
|
|
390
412
|
- lib/ecoportal/api/graphql/input/contractor_entity/update.rb
|
|
413
|
+
- lib/ecoportal/api/graphql/input/date_range.rb
|
|
391
414
|
- lib/ecoportal/api/graphql/input/delta_input.rb
|
|
392
415
|
- lib/ecoportal/api/graphql/input/id_diff.rb
|
|
393
416
|
- lib/ecoportal/api/graphql/input/location_structure.rb
|
|
@@ -431,6 +454,7 @@ files:
|
|
|
431
454
|
- lib/ecoportal/api/graphql/input/workflow_command.rb
|
|
432
455
|
- lib/ecoportal/api/graphql/input/workflow_command/add_action_tag.rb
|
|
433
456
|
- lib/ecoportal/api/graphql/input/workflow_command/add_binding.rb
|
|
457
|
+
- lib/ecoportal/api/graphql/input/workflow_command/add_checklist_field_item.rb
|
|
434
458
|
- lib/ecoportal/api/graphql/input/workflow_command/add_comment_tagging_user_group.rb
|
|
435
459
|
- lib/ecoportal/api/graphql/input/workflow_command/add_default_direct_strategy_user.rb
|
|
436
460
|
- lib/ecoportal/api/graphql/input/workflow_command/add_default_strategy.rb
|
|
@@ -452,15 +476,20 @@ files:
|
|
|
452
476
|
- lib/ecoportal/api/graphql/input/workflow_command/add_scheduled_callback_action.rb
|
|
453
477
|
- lib/ecoportal/api/graphql/input/workflow_command/add_section.rb
|
|
454
478
|
- lib/ecoportal/api/graphql/input/workflow_command/add_select_field_option.rb
|
|
479
|
+
- lib/ecoportal/api/graphql/input/workflow_command/add_smart_fill_config.rb
|
|
455
480
|
- lib/ecoportal/api/graphql/input/workflow_command/add_stage.rb
|
|
456
481
|
- lib/ecoportal/api/graphql/input/workflow_command/add_stage_section.rb
|
|
457
482
|
- lib/ecoportal/api/graphql/input/workflow_command/add_stage_tag.rb
|
|
458
483
|
- lib/ecoportal/api/graphql/input/workflow_command/add_strategy.rb
|
|
459
484
|
- lib/ecoportal/api/graphql/input/workflow_command/add_task.rb
|
|
460
485
|
- lib/ecoportal/api/graphql/input/workflow_command/add_task_assignment_user_group.rb
|
|
486
|
+
- lib/ecoportal/api/graphql/input/workflow_command/add_viewable_field.rb
|
|
461
487
|
- lib/ecoportal/api/graphql/input/workflow_command/add_workflow_callback.rb
|
|
488
|
+
- lib/ecoportal/api/graphql/input/workflow_command/archive_public_config.rb
|
|
462
489
|
- lib/ecoportal/api/graphql/input/workflow_command/collapse_section.rb
|
|
490
|
+
- lib/ecoportal/api/graphql/input/workflow_command/create_public_config.rb
|
|
463
491
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_binding.rb
|
|
492
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_checklist_field_item.rb
|
|
464
493
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_creator_permissions.rb
|
|
465
494
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_default_strategy.rb
|
|
466
495
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_field_configuration.rb
|
|
@@ -470,8 +499,7 @@ files:
|
|
|
470
499
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_linked_helper.rb
|
|
471
500
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_operation.rb
|
|
472
501
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_operation_strategy.rb
|
|
473
|
-
- lib/ecoportal/api/graphql/input/workflow_command/
|
|
474
|
-
- lib/ecoportal/api/graphql/input/workflow_command/edit_page_creator_permissions.rb
|
|
502
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_public_config.rb
|
|
475
503
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_reminder.rb
|
|
476
504
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_required_sign_offs.rb
|
|
477
505
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_restrict_comment_tagging.rb
|
|
@@ -479,14 +507,22 @@ files:
|
|
|
479
507
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_scheduled_callback.rb
|
|
480
508
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_section_header.rb
|
|
481
509
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_select_field_option.rb
|
|
510
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_smart_fill_config.rb
|
|
482
511
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_stage.rb
|
|
483
512
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_strategy.rb
|
|
484
513
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_task_due.rb
|
|
514
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_template_advanced_settings.rb
|
|
515
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_template_basic_settings.rb
|
|
516
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_template_container_uid.rb
|
|
517
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_template_creator_permissions.rb
|
|
518
|
+
- lib/ecoportal/api/graphql/input/workflow_command/edit_template_descriptions.rb
|
|
485
519
|
- lib/ecoportal/api/graphql/input/workflow_command/edit_trigger.rb
|
|
486
520
|
- lib/ecoportal/api/graphql/input/workflow_command/expand_section.rb
|
|
521
|
+
- lib/ecoportal/api/graphql/input/workflow_command/field_config/action_list.rb
|
|
487
522
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/contractor_entities.rb
|
|
488
523
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/cross_reference.rb
|
|
489
524
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/date.rb
|
|
525
|
+
- lib/ecoportal/api/graphql/input/workflow_command/field_config/file.rb
|
|
490
526
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/gauge.rb
|
|
491
527
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/image_gallery.rb
|
|
492
528
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/location_field.rb
|
|
@@ -496,11 +532,14 @@ files:
|
|
|
496
532
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/select.rb
|
|
497
533
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/signature.rb
|
|
498
534
|
- lib/ecoportal/api/graphql/input/workflow_command/field_config/table.rb
|
|
535
|
+
- lib/ecoportal/api/graphql/input/workflow_command/manage_copy_page_configuration.rb
|
|
499
536
|
- lib/ecoportal/api/graphql/input/workflow_command/move_field.rb
|
|
500
537
|
- lib/ecoportal/api/graphql/input/workflow_command/move_stage.rb
|
|
538
|
+
- lib/ecoportal/api/graphql/input/workflow_command/move_viewable_field.rb
|
|
501
539
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_action_tag.rb
|
|
502
540
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_binding.rb
|
|
503
541
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_callback.rb
|
|
542
|
+
- lib/ecoportal/api/graphql/input/workflow_command/remove_checklist_field_item.rb
|
|
504
543
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_comment_tagging_user_group.rb
|
|
505
544
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_default_direct_strategy_user.rb
|
|
506
545
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_default_strategy.rb
|
|
@@ -521,6 +560,7 @@ files:
|
|
|
521
560
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_scheduled_callback.rb
|
|
522
561
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_section.rb
|
|
523
562
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_select_field_option.rb
|
|
563
|
+
- lib/ecoportal/api/graphql/input/workflow_command/remove_smart_fill_config.rb
|
|
524
564
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_stage.rb
|
|
525
565
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_stage_section.rb
|
|
526
566
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_stage_tag.rb
|
|
@@ -529,6 +569,7 @@ files:
|
|
|
529
569
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_task_assignment_user_group.rb
|
|
530
570
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_task_due.rb
|
|
531
571
|
- lib/ecoportal/api/graphql/input/workflow_command/remove_task_priority_level.rb
|
|
572
|
+
- lib/ecoportal/api/graphql/input/workflow_command/remove_viewable_field.rb
|
|
532
573
|
- lib/ecoportal/api/graphql/input/workflow_command/reorder_forces.rb
|
|
533
574
|
- lib/ecoportal/api/graphql/input/workflow_command/reorder_section.rb
|
|
534
575
|
- lib/ecoportal/api/graphql/interface.rb
|
|
@@ -550,7 +591,13 @@ files:
|
|
|
550
591
|
- lib/ecoportal/api/graphql/model.rb
|
|
551
592
|
- lib/ecoportal/api/graphql/model/account.rb
|
|
552
593
|
- lib/ecoportal/api/graphql/model/action.rb
|
|
594
|
+
- lib/ecoportal/api/graphql/model/action_event.rb
|
|
595
|
+
- lib/ecoportal/api/graphql/model/action_event_page.rb
|
|
596
|
+
- lib/ecoportal/api/graphql/model/activity.rb
|
|
597
|
+
- lib/ecoportal/api/graphql/model/activity_log.rb
|
|
553
598
|
- lib/ecoportal/api/graphql/model/ai_summary_version.rb
|
|
599
|
+
- lib/ecoportal/api/graphql/model/auth_log.rb
|
|
600
|
+
- lib/ecoportal/api/graphql/model/authorization_result.rb
|
|
554
601
|
- lib/ecoportal/api/graphql/model/contractor_entity.rb
|
|
555
602
|
- lib/ecoportal/api/graphql/model/field.rb
|
|
556
603
|
- lib/ecoportal/api/graphql/model/file_attachment.rb
|
|
@@ -559,6 +606,7 @@ files:
|
|
|
559
606
|
- lib/ecoportal/api/graphql/model/location_structure.rb
|
|
560
607
|
- lib/ecoportal/api/graphql/model/location_structure/draft.rb
|
|
561
608
|
- lib/ecoportal/api/graphql/model/location_structure/draft/structure.rb
|
|
609
|
+
- lib/ecoportal/api/graphql/model/minimal_dashboard.rb
|
|
562
610
|
- lib/ecoportal/api/graphql/model/organization.rb
|
|
563
611
|
- lib/ecoportal/api/graphql/model/page.rb
|
|
564
612
|
- lib/ecoportal/api/graphql/model/page/basic.rb
|
|
@@ -569,12 +617,15 @@ files:
|
|
|
569
617
|
- lib/ecoportal/api/graphql/model/page/task.rb
|
|
570
618
|
- lib/ecoportal/api/graphql/model/page_union.rb
|
|
571
619
|
- lib/ecoportal/api/graphql/model/pages_workflow.rb
|
|
620
|
+
- lib/ecoportal/api/graphql/model/permissions.rb
|
|
572
621
|
- lib/ecoportal/api/graphql/model/person_member.rb
|
|
622
|
+
- lib/ecoportal/api/graphql/model/person_member_changelog.rb
|
|
573
623
|
- lib/ecoportal/api/graphql/model/preset_view.rb
|
|
574
624
|
- lib/ecoportal/api/graphql/model/preview_page.rb
|
|
575
625
|
- lib/ecoportal/api/graphql/model/register.rb
|
|
576
626
|
- lib/ecoportal/api/graphql/model/resource.rb
|
|
577
627
|
- lib/ecoportal/api/graphql/model/template.rb
|
|
628
|
+
- lib/ecoportal/api/graphql/model/template/change_log_entry.rb
|
|
578
629
|
- lib/ecoportal/api/graphql/model/user.rb
|
|
579
630
|
- lib/ecoportal/api/graphql/mutation.rb
|
|
580
631
|
- lib/ecoportal/api/graphql/mutation/action.rb
|
|
@@ -588,6 +639,9 @@ files:
|
|
|
588
639
|
- lib/ecoportal/api/graphql/mutation/contractor_entity/create.rb
|
|
589
640
|
- lib/ecoportal/api/graphql/mutation/contractor_entity/destroy.rb
|
|
590
641
|
- lib/ecoportal/api/graphql/mutation/contractor_entity/update.rb
|
|
642
|
+
- lib/ecoportal/api/graphql/mutation/contractor_entity/update_manager_settings.rb
|
|
643
|
+
- lib/ecoportal/api/graphql/mutation/file_container.rb
|
|
644
|
+
- lib/ecoportal/api/graphql/mutation/file_container/upload.rb
|
|
591
645
|
- lib/ecoportal/api/graphql/mutation/kickstand.rb
|
|
592
646
|
- lib/ecoportal/api/graphql/mutation/kickstand/bulk_update_jobs.rb
|
|
593
647
|
- lib/ecoportal/api/graphql/mutation/kickstand/bulk_update_workflows.rb
|
|
@@ -630,9 +684,6 @@ files:
|
|
|
630
684
|
- lib/ecoportal/api/graphql/mutation/register/create.rb
|
|
631
685
|
- lib/ecoportal/api/graphql/mutation/register/destroy.rb
|
|
632
686
|
- lib/ecoportal/api/graphql/mutation/register/update.rb
|
|
633
|
-
- lib/ecoportal/api/graphql/mutation/smart_fill.rb
|
|
634
|
-
- lib/ecoportal/api/graphql/mutation/smart_fill/generate.rb
|
|
635
|
-
- lib/ecoportal/api/graphql/mutation/smart_fill/submit_feedback.rb
|
|
636
687
|
- lib/ecoportal/api/graphql/mutation/template.rb
|
|
637
688
|
- lib/ecoportal/api/graphql/mutation/template/create.rb
|
|
638
689
|
- lib/ecoportal/api/graphql/mutation/template/create_related_page.rb
|
|
@@ -641,6 +692,7 @@ files:
|
|
|
641
692
|
- lib/ecoportal/api/graphql/mutation/template/unpublish.rb
|
|
642
693
|
- lib/ecoportal/api/graphql/mutation/template/update.rb
|
|
643
694
|
- lib/ecoportal/api/graphql/mutation/template/update_information.rb
|
|
695
|
+
- lib/ecoportal/api/graphql/mutation/template/update_related_page.rb
|
|
644
696
|
- lib/ecoportal/api/graphql/payload.rb
|
|
645
697
|
- lib/ecoportal/api/graphql/payload/action.rb
|
|
646
698
|
- lib/ecoportal/api/graphql/payload/action/archive.rb
|
|
@@ -650,6 +702,7 @@ files:
|
|
|
650
702
|
- lib/ecoportal/api/graphql/payload/contractor_entity.rb
|
|
651
703
|
- lib/ecoportal/api/graphql/payload/contractor_entity/create.rb
|
|
652
704
|
- lib/ecoportal/api/graphql/payload/contractor_entity/destroy.rb
|
|
705
|
+
- lib/ecoportal/api/graphql/payload/contractor_entity/manager_settings.rb
|
|
653
706
|
- lib/ecoportal/api/graphql/payload/contractor_entity/update.rb
|
|
654
707
|
- lib/ecoportal/api/graphql/payload/execute_workflow_commands.rb
|
|
655
708
|
- lib/ecoportal/api/graphql/payload/force_commands.rb
|
|
@@ -688,23 +741,33 @@ files:
|
|
|
688
741
|
- lib/ecoportal/api/graphql/payload/template/unpublish.rb
|
|
689
742
|
- lib/ecoportal/api/graphql/payload/template/update.rb
|
|
690
743
|
- lib/ecoportal/api/graphql/payload/template/update_information.rb
|
|
744
|
+
- lib/ecoportal/api/graphql/payload/template/update_related_page.rb
|
|
745
|
+
- lib/ecoportal/api/graphql/payload/upload.rb
|
|
691
746
|
- lib/ecoportal/api/graphql/query.rb
|
|
692
747
|
- lib/ecoportal/api/graphql/query/action.rb
|
|
693
748
|
- lib/ecoportal/api/graphql/query/action_categories.rb
|
|
694
749
|
- lib/ecoportal/api/graphql/query/actions.rb
|
|
750
|
+
- lib/ecoportal/api/graphql/query/activity_logs.rb
|
|
751
|
+
- lib/ecoportal/api/graphql/query/auth_logs.rb
|
|
695
752
|
- lib/ecoportal/api/graphql/query/contractor_entities.rb
|
|
753
|
+
- lib/ecoportal/api/graphql/query/dashboard_search.rb
|
|
696
754
|
- lib/ecoportal/api/graphql/query/file_upload_signature.rb
|
|
697
755
|
- lib/ecoportal/api/graphql/query/location_classifications.rb
|
|
698
756
|
- lib/ecoportal/api/graphql/query/location_structure.rb
|
|
699
757
|
- lib/ecoportal/api/graphql/query/location_structure/draft.rb
|
|
700
758
|
- lib/ecoportal/api/graphql/query/location_structures.rb
|
|
701
759
|
- lib/ecoportal/api/graphql/query/page.rb
|
|
760
|
+
- lib/ecoportal/api/graphql/query/page_activities.rb
|
|
702
761
|
- lib/ecoportal/api/graphql/query/page_delta.rb
|
|
703
762
|
- lib/ecoportal/api/graphql/query/page_with_forces.rb
|
|
704
763
|
- lib/ecoportal/api/graphql/query/pages.rb
|
|
705
764
|
- lib/ecoportal/api/graphql/query/pages_workflow_commands.rb
|
|
765
|
+
- lib/ecoportal/api/graphql/query/permissions.rb
|
|
766
|
+
- lib/ecoportal/api/graphql/query/person_member_changelogs.rb
|
|
767
|
+
- lib/ecoportal/api/graphql/query/person_members.rb
|
|
706
768
|
- lib/ecoportal/api/graphql/query/register_preset_views.rb
|
|
707
769
|
- lib/ecoportal/api/graphql/query/register_preview_pages.rb
|
|
770
|
+
- lib/ecoportal/api/graphql/query/template_change_log.rb
|
|
708
771
|
- lib/ecoportal/api/graphql/query/templates.rb
|
|
709
772
|
- lib/ecoportal/api/graphql_version.rb
|
|
710
773
|
homepage: https://www.ecoportal.com
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
# common/graphql
|
|
2
|
-
|
|
3
|
-
Shared HTTP transport, authentication, and base model infrastructure used by the gem — nothing here is EcoPortal-domain-specific.
|
|
4
|
-
|
|
5
|
-
## Contents
|
|
6
|
-
|
|
7
|
-
| File / class | Purpose |
|
|
8
|
-
|---|---|
|
|
9
|
-
| `auth_service.rb` / `AuthService` | OAuth2 password + refresh-token flow; included in both client classes |
|
|
10
|
-
| `client.rb` / `Client` | Graphlient-based GraphQL client (builds bearer-token headers, constructs endpoint URL) |
|
|
11
|
-
| `http_client.rb` / `HttpClient` | Raw HTTP client (extends `Common::Client`); `execute` sends query strings + variables; supports v0–v3 + graphql API version modes |
|
|
12
|
-
| `class_helpers.rb` / `ClassHelpers` | `becomes(klass)` instance casting + `const?` class helper |
|
|
13
|
-
| `hash_helpers.rb` / `HashHelpers` | Deep key transforms (`keys_to_sym_deep`, `deep_dup`, `remove_nil_keys_deep`) — used by diff and input serialisation |
|
|
14
|
-
| `query_integration.rb` / `QueryIntegration` | Class macro `query(:method, query_klass:)` that wires a named query method on `Model::Organization` |
|
|
15
|
-
| `model.rb` / `Model` | Base model class: `DoubleModel` + `Diffable` + `AsInput`; all GraphQL models ultimately inherit this |
|
|
16
|
-
| `patches.rb` | Reserved placeholder (empty) |
|
|
17
|
-
| `model/diffable.rb` | `as_update` / `dirty?` — delegates to `DiffService` |
|
|
18
|
-
| `model/as_input.rb` | `as_input` (instance) and `as_input(hash)` (class method) — converts diff to GraphQL mutation variables |
|
|
19
|
-
| `model/diffable/diff_service.rb` | Main diff engine: flat classic diff + cascaded reduce through nested `GraphQL::Model` objects |
|
|
20
|
-
| `model/diffable/classic_diff_service.rb` | Low-level change-data extraction (compares `curr_doc` vs `prev_doc`) |
|
|
21
|
-
| `model/diffable/hash_diff.rb` | Hash equality / change detection helpers |
|
|
22
|
-
| `model/diffable/hash_diff_nesting.rb` | Nested key path helpers (`dig_set!`, `dig_delete!`, `dig_path?`) |
|
|
23
|
-
|
|
24
|
-
## Conventions
|
|
25
|
-
|
|
26
|
-
- `Client` is graphlient-based and used for schema introspection; `HttpClient` is the actual request sender used in production (set as `client.http_client`).
|
|
27
|
-
- `HashHelpers` is used as both a module mixin (include) and directly via `HashHelpers.keys_to_sym_deep(...)`.
|
|
28
|
-
- `DiffService` handles the `flat:` flag: `flat: true` does a single-level diff; `flat: false` (default) cascades through nested `GraphQL::Model` objects.
|
|
29
|
-
- Root-class objects (`root!` declared) are excluded from cascaded diffs — they represent independent server entities.
|
|
30
|
-
- `AsInput#as_input(target_class:)` delegates to `Input::X.from_model(self)` when a target class is given.
|
|
31
|
-
|
|
32
|
-
## Related
|
|
33
|
-
|
|
34
|
-
- `../graphql/logic/base_model.rb` — adds `SnakeCamelAccess` on top of `Common::GraphQL::Model`
|
|
35
|
-
- `../graphql/logic/input.rb` — `Logic::Input` base class built on top of `Model`
|
|
36
|
-
- `../graphql/logic/base_query.rb` — consumes `HttpClient#execute` and `HashHelpers`
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
# common/graphql/model
|
|
2
|
-
|
|
3
|
-
Concerns that add dirty-tracking diff (`Diffable`) and mutation-input serialisation (`AsInput`) to the base `Common::GraphQL::Model`.
|
|
4
|
-
|
|
5
|
-
## Contents
|
|
6
|
-
|
|
7
|
-
| File / class | Purpose |
|
|
8
|
-
|---|---|
|
|
9
|
-
| `diffable.rb` / `Model::Diffable` | Provides `as_update` (returns changed-field hash or nil) and `dirty?`; delegates to `DIFF_CLASS` (defaults to `DiffService`) |
|
|
10
|
-
| `as_input.rb` / `Model::AsInput` | Instance `as_input` (wraps diff as mutation variables) + class-level `as_input(hash)` (key-sym + nil-id cleanup) |
|
|
11
|
-
| `diffable/diff_service.rb` / `DiffService` | Primary diff engine: flat classic diff then cascaded reduce over nested `GraphQL::Model` children |
|
|
12
|
-
| `diffable/classic_diff_service.rb` / `ClassicDiffService` | Low-level diff: compares `curr_doc` vs `prev_doc`, returns `{ id:, changed_field: new_value }` or nil |
|
|
13
|
-
| `diffable/hash_diff.rb` / `HashDiff` | Primitive equality helpers used by `ClassicDiffService` |
|
|
14
|
-
| `diffable/hash_diff_nesting.rb` / `HashDiffNesting` | Nested path helpers: `dig_set!`, `dig_delete!`, `dig_path?` used when building cascaded diff results |
|
|
15
|
-
|
|
16
|
-
## Conventions
|
|
17
|
-
|
|
18
|
-
- `DIFF_CLASS = DiffService` is a constant on `Diffable` — subclasses can override it to swap diff strategies.
|
|
19
|
-
- `DiffService` `flat: true` produces a single-level diff (current model only); `flat: false` (default) recurses via `cascaded_reduce` through nested `GraphQL::Model` objects.
|
|
20
|
-
- Objects declared with `root!` in their class are skipped during cascaded diff — they are independent server entities (look-ups only).
|
|
21
|
-
- `as_input` on a model calls `as_update` first; returns `nil` when nothing has changed so callers can skip the mutation.
|
|
22
|
-
- `as_input(target_class:)` is the preferred path when a corresponding `Input::X` class exists — delegates to `target_class.from_model(self)`.
|
|
23
|
-
|
|
24
|
-
## Related
|
|
25
|
-
|
|
26
|
-
- `../hash_helpers.rb` — `HashHelpers` used inside `DiffService` for key transforms
|
|
27
|
-
- `../../graphql/logic/input.rb` — `Logic::Input.from_model` is the canonical consumer of `as_update`
|
|
28
|
-
- `../../graphql/logic/base_model.rb` — all concrete models inherit this chain
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
# graphql (gem root)
|
|
2
|
-
|
|
3
|
-
The entry point for the gem: `Ecoportal::API::GraphQL` is the top-level class consumers instantiate; it holds the `client`, wires the `HttpClient`, and exposes builder/compat entry points.
|
|
4
|
-
|
|
5
|
-
## Contents
|
|
6
|
-
|
|
7
|
-
| File / class | Purpose |
|
|
8
|
-
|---|---|
|
|
9
|
-
| `graphql.rb` / `GraphQL` | Main entry class — `initialize` builds `Client` + `HttpClient`, exposes `pages`, `registers`, `page`, `action`, `contractorEntity`, `locationStructure`, `currentOrganization` |
|
|
10
|
-
| `graphql_version.rb` | Gem `VERSION` constant |
|
|
11
|
-
| `base/` | Data-only model base classes (no resolvers, no `client`); see `base/CLAUDE.md` |
|
|
12
|
-
| `builder/` | Facade builders that group related mutations under one object |
|
|
13
|
-
| `compat/` | v2-compatible API layer for eco-helpers scripts |
|
|
14
|
-
| `concerns/` | Shared Ruby mixins (`PageCompat`, `DataFieldAccess`, `SnakeCamelAccess`, `FragmentDefinitions`) |
|
|
15
|
-
| `connection/` | `Logic::Connection` subclasses — typed pagination wrappers per entity |
|
|
16
|
-
| `error/` | Domain error classes (`ValidationErrors`, `LocationsError`, `LocationsValidationError`) |
|
|
17
|
-
| `fragment/` | GraphQL fragment heredoc strings + `Fragment.assemble(*syms)` |
|
|
18
|
-
| `helpers/` | Utility modules (`LocationsTree`) |
|
|
19
|
-
| `input/` | Mutation input serialisers; `SearchConf` is a chainable value object |
|
|
20
|
-
| `interface/` | Abstract base models shared by `Base::` and `Model::` (e.g. `BasePage`, `LocationStructure`) |
|
|
21
|
-
| `logic/` | Abstract base classes for queries, mutations, connections — no domain code |
|
|
22
|
-
| `model/` | Concrete domain models with `class_resolver` wiring; subclass their `Base::` counterparts |
|
|
23
|
-
| `mutation/` | Concrete mutation execution classes |
|
|
24
|
-
| `payload/` | Mutation response payload wrappers |
|
|
25
|
-
| `query/` | Concrete query execution classes |
|
|
26
|
-
|
|
27
|
-
## Conventions
|
|
28
|
-
|
|
29
|
-
- Load order in `graphql.rb` matters: `logic/base_model` → `error` → `interface` → `base` → `model` → rest.
|
|
30
|
-
- `#pages` returns `Compat::Pages` (v2-compatible); `#page` returns `Builder::Page` (raw mutation facade).
|
|
31
|
-
- `#currentOrganization` returns `Model::Organization` class (not instance) with `client` set — query methods are class-level.
|
|
32
|
-
- `GraphQL` (not `GraphQL`) is the namespace: use `Ecoportal::API::Graphql` alias only for legacy references; internal code uses `GraphQL`.
|
|
33
|
-
|
|
34
|
-
## Related
|
|
35
|
-
|
|
36
|
-
- `../../common/graphql/` — HTTP client, auth, and base model infrastructure
|
|
37
|
-
- Downstream: `eco-helpers` calls `.pages` and `.registers` exclusively via `Compat::*`
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
# base
|
|
2
|
-
|
|
3
|
-
Data-only model base classes — these declare fields and structure but hold no `client`, no query resolvers, and no business logic.
|
|
4
|
-
|
|
5
|
-
## Contents
|
|
6
|
-
|
|
7
|
-
| File / class | Purpose |
|
|
8
|
-
|---|---|
|
|
9
|
-
| `action.rb` / `Base::Action` | Action fields (id, name, status, dates, assignee IDs); declared `root!` so excluded from cascaded diffs |
|
|
10
|
-
| `action_category.rb` / `Base::ActionCategory` | Action category fields |
|
|
11
|
-
| `contractor_entity.rb` / `Base::ContractorEntity` | Contractor entity fields |
|
|
12
|
-
| `contractor_entity/member_changes.rb` | Nested member-changes sub-model |
|
|
13
|
-
| `date_time.rb` / `Base::DateTime` | Wraps `{ dateTime:, timeZone: }` response objects |
|
|
14
|
-
| `delta_result.rb` / `Base::DeltaResult` | `pageDelta` result item: `id` + `delta` enum (UPDATED/NOT_FOUND/NEW) |
|
|
15
|
-
| `field.rb` / `Base::Field` | Generic field model |
|
|
16
|
-
| `file_attachment.rb` / `Base::FileAttachment` | File attachment metadata |
|
|
17
|
-
| `file_container.rb` / `Base::FileContainer` | File container wrapper |
|
|
18
|
-
| `location_classification_type.rb` | Classification type (name) |
|
|
19
|
-
| `location_node.rb` / `Base::LocationNode` | Location node with ancestors and classifications |
|
|
20
|
-
| `location_structure.rb` / `Base::LocationStructure` | Location structure tree model |
|
|
21
|
-
| `location_structure/draft.rb` | Draft structure model |
|
|
22
|
-
| `location_structure/draft/structure.rb` | Nested draft structure detail |
|
|
23
|
-
| `organization.rb` / `Base::Organization` | Thin organization base (id, name) |
|
|
24
|
-
| `page.rb` | Namespace module; requires `basic`, `data_field`, `section`, `section_collection`, `phased` |
|
|
25
|
-
| `page/basic.rb` / `Base::Page::Basic` | BasicPage — inherits `Interface::BasePage`; no extra fields |
|
|
26
|
-
| `page/phased.rb` / `Base::Page::Phased` | PhasedPage — inherits `Interface::BasePage`; `embeds_many :stages` |
|
|
27
|
-
| `page/phased/stage.rb` / `Base::Page::Phased::Stage` | Single stage: id, name, ordering, state, sections, components |
|
|
28
|
-
| `page/section.rb` / `Base::Page::Section` | Section wrapper (ContentSection or SplitSection); merges left/right dataFields into `components` |
|
|
29
|
-
| `page/section_collection.rb` / `Base::Page::SectionCollection` | Enumerable wrapper over sections; provides `get_by_type`, `get_by_heading`, `components` |
|
|
30
|
-
| `page/data_field.rb` / `Base::Page::DataField` | Base data field class; `TYPE_MAP` dispatches `from_doc` to typed subclasses |
|
|
31
|
-
| `page/data_field/` | 10 typed subclasses (PlainText, RichText, DateField, Number, Gauge, People, Select, Checklist, TagField, Geo) + `Collection` |
|
|
32
|
-
| `page_info.rb` / `Base::PageInfo` | Cursor pagination info (endCursor, hasNextPage) |
|
|
33
|
-
| `person_member.rb` / `Base::PersonMember` | Person member (name, email, id) |
|
|
34
|
-
| `preview_page.rb` / `Base::PreviewPage` | Lightweight page preview (no field data) |
|
|
35
|
-
| `resource.rb` / `Base::Resource` | Resource model (inherits `Logic::BaseModel` directly) |
|
|
36
|
-
| `pages_workflow.rb` / `Base::PagesWorkflow` | PagesWorkflow top-level model: `autoPageCreationEnabled`, `fields` (RegisterField), `stages`; sub-files under `pages_workflow/` cover RegisterField, CallbackType, OperationInterface, TriggerInterface, and supporting types |
|
|
37
|
-
|
|
38
|
-
## Conventions
|
|
39
|
-
|
|
40
|
-
- `Base::` classes are data-only: `passkey`, `passthrough`, `passboolean`, `passarray`, `embeds_one`, `embeds_many` only — no business methods, no resolvers.
|
|
41
|
-
- `Model::` subclasses in `../model/` add `class_resolver` wiring and may add behaviour (e.g. `Model::Page::Phased#stages` wraps the array in `Compat::StageCollection`).
|
|
42
|
-
- `Interface::BasePage` is the shared parent of both `Basic` and `Phased`; field declarations that apply to both page types live there.
|
|
43
|
-
- `Base::Action` declares `root!` — this marks it as an independent server entity, excluded from cascaded `as_update` diffs.
|
|
44
|
-
- When adding a new field to a page type, add it to `Interface::BasePage` if it applies to both, or to the appropriate `Base::Page::*` class.
|
|
45
|
-
|
|
46
|
-
## Related
|
|
47
|
-
|
|
48
|
-
- `../interface/base_page.rb` — common parent for Basic + Phased page base classes
|
|
49
|
-
- `../model/` — concrete models that subclass these bases
|
|
50
|
-
- `../model/page_union.rb` — factory that dispatches `__typename` to `Model::Page::Basic` or `Model::Page::Phased`
|