ecoportal-api-graphql 2.0.0 → 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 +363 -1
- 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.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_category.rb +15 -15
- data/lib/ecoportal/api/graphql/base/ai_summary_version.rb +1 -1
- 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/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/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/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/geo.rb +24 -24
- data/lib/ecoportal/api/graphql/base/page/data_field/image_gallery.rb +1 -1
- 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/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/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/person_member.rb +22 -22
- data/lib/ecoportal/api/graphql/base/preview_page.rb +23 -23
- data/lib/ecoportal/api/graphql/base/register.rb +1 -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/builder/action.rb +41 -41
- 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/register/preset_view.rb +84 -84
- data/lib/ecoportal/api/graphql/builder/register.rb +49 -49
- data/lib/ecoportal/api/graphql/builder/template.rb +28 -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/registers.rb +84 -84
- 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/connection/preset_view.rb +11 -11
- data/lib/ecoportal/api/graphql/connection/template_change_log.rb +19 -0
- data/lib/ecoportal/api/graphql/connection.rb +1 -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/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.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/contractor_entity.rb +20 -20
- data/lib/ecoportal/api/graphql/fragment/locations_error.rb +19 -19
- data/lib/ecoportal/api/graphql/fragment/page.rb +1 -0
- data/lib/ecoportal/api/graphql/fragment/pages/common_page_union.rb +2 -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/template_change_log.rb +102 -0
- data/lib/ecoportal/api/graphql/fragment.rb +1 -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.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/delta_input.rb +16 -16
- data/lib/ecoportal/api/graphql/input/id_diff.rb +11 -11
- 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/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.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 +1 -1
- 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_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_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_workflow_callback.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/collapse_section.rb +18 -18
- data/lib/ecoportal/api/graphql/input/workflow_command/edit_binding.rb +18 -18
- 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 +7 -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_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_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_basic_settings.rb +7 -2
- 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/contractor_entities.rb +28 -24
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/cross_reference.rb +8 -2
- data/lib/ecoportal/api/graphql/input/workflow_command/field_config/gauge.rb +20 -20
- 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/plain_text.rb +8 -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_stage.rb +18 -18
- 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_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_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.rb +3 -0
- data/lib/ecoportal/api/graphql/interface/base_page.rb +14 -0
- 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/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/ai_summary_version.rb +10 -10
- 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/organization.rb +9 -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/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/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 +1 -1
- data/lib/ecoportal/api/graphql/mutation/ai_summary/submit_feedback.rb +1 -1
- 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/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/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/update.rb +12 -12
- 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/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/contractor_entities.rb +53 -53
- 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/page_delta.rb +47 -47
- data/lib/ecoportal/api/graphql/query/pages.rb +59 -59
- 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 +2 -0
- data/lib/ecoportal/api/graphql_version.rb +1 -1
- data/lib/ecoportal/api-graphql.rb +10 -10
- metadata +10 -8
- 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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 371133ecd295f75aacb3e34c85f4cc93c5561cc0b12452091fb19d73fb32adda
|
|
4
|
+
data.tar.gz: 422e949c1544c1d94dc0bd3f7f2825d5a747449976cda7eef04c51ca9da4d523
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9627606e555d1fcbff9bede5d611d34fc2274c4566bae93b67e9c1821a730bbef6b8831f46061e1557f7123302c70a022af77228c2c69297a87a46bb0ee2db33
|
|
7
|
+
data.tar.gz: 291a7b865d87ec744bd23d97916808105a8cad7bad525af5862d19f7c21e367760930aa49e67af5991a181ab406cadc298b5a33ca354677fe0cc27d772ce4718
|
data/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,369 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [2.2.0] - 2026-09-02
|
|
6
|
+
|
|
7
|
+
★ **This release supersedes 2.1.0, which was version-bumped and changelogged on 2026-08-21 but never
|
|
8
|
+
tagged or published** — RubyGems' highest was still 2.0.0. Do not go looking for 2.1.0; it does not
|
|
9
|
+
exist as a gem. Its contents are included below by inheritance (they were already on `main`), and
|
|
10
|
+
2.2.0 adds what landed after that bump. Publishing the 2.1.0 artifact would have shipped a state
|
|
11
|
+
already superseded by merged `lib/` fixes and required a second release immediately.
|
|
12
|
+
|
|
13
|
+
**Minor, not patch:** `Input::WorkflowCommand::AddSelectFieldOption.build` now REQUIRES a `value:`
|
|
14
|
+
keyword. Under the versioning convention (minor = breaking, patch = compatible) that is breaking,
|
|
15
|
+
even though the omitted argument meant the old call shape was already rejected by the server — a
|
|
16
|
+
caller adapting to this is changing working-looking code.
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
|
|
20
|
+
- `tools/template_yaml/yaml_to_raw_json.py` -- a small, self-contained YAML-to-raw-JSON bridge
|
|
21
|
+
(inlines the BSON-aware `EpLoader`/`load_dump` the retired Python projector used) so a template
|
|
22
|
+
backup YAML attached to a ticket can still be fed to the Ruby CLI, which only ever reads JSON.
|
|
23
|
+
Drops `update_histories` by default (churn neither projector read, and a recurring source of
|
|
24
|
+
corrupted ObjectIds), with `--keep-churn` to keep it.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
- **`Page#all_tags` / `Stage#all_tags` read side** (`Model::Page::Phased`, `Base::Page::Phased::Stage`,
|
|
28
|
+
`Interface::BasePage`): the compiled tag set for a page or a single stage, folded client-side from
|
|
29
|
+
the page's `baseTags` and the stage's own tags, with both fetched by the page fragments
|
|
30
|
+
(`Fragment::Page`, `Fragment::Pages::CommonPageUnion`). `Stage#page` now resolves through the
|
|
31
|
+
native `DoubleModel` root reference rather than a hand-rolled back-pointer, and `location_ids`
|
|
32
|
+
is redirected page -> stage accordingly.
|
|
33
|
+
|
|
34
|
+
★ This code was written on 2026-07-06 and then sat on three unmerged local branches for seven
|
|
35
|
+
weeks. `main` never received it in any form, and no other trace of it exists in history --
|
|
36
|
+
deleting those branches during a sweep would have lost a spec-covered feature permanently. It is
|
|
37
|
+
cherry-picked here onto current `main` rather than merged from the branch: `main` has since
|
|
38
|
+
changed four of the five files involved, so taking the branch's copies wholesale would have
|
|
39
|
+
reverted shipped fixes. That is the stranded-work failure mode this repo has a root-cause note
|
|
40
|
+
about, caught this time only because a branch sweep asked what each unmerged branch actually
|
|
41
|
+
contained.
|
|
42
|
+
|
|
43
|
+
- `tools/template_yaml/forces_walker.rb`: Ruby port of the template projector's `project_forces` /
|
|
44
|
+
`script_identifiers` (P4), classifying each binding as a FIELD or a SECTION target rather than
|
|
45
|
+
conflating the two, and reporting the unread force-level `globalBindings` gap as unverified
|
|
46
|
+
instead of as a finding. Gated by `tools/template_yaml/compare_forces.rb` against the Python IR.
|
|
47
|
+
|
|
48
|
+
- `tools/template_yaml/review.rb` / `update_gate.rb`: Ruby port of the template projector's
|
|
49
|
+
`review` / `update_gate` (P5), refusing a template's bulk update PER TEMPLATE (not per field)
|
|
50
|
+
when no field carries a usable identifier or identifiers are non-unique. Adds a Ruby-only
|
|
51
|
+
`ximport` tooltip guard: fields marked exclude-from-import are counted and protected, never
|
|
52
|
+
treated as overwritable. `Delta.call`'s `reviewer:` seam is now wired to `Review.method(:call)`,
|
|
53
|
+
so `review_findings` appears in the delta payload. Gated by `tools/template_yaml/compare_gate.rb`
|
|
54
|
+
against the 18 M&S templates -- refusal set matches the Python exactly.
|
|
55
|
+
|
|
56
|
+
- `tools/template_yaml/model.rb`: Ruby port of the template projector's `project(doc, source)`
|
|
57
|
+
(P3's IR assembly), composing field and force walks into a compact IR dict with key order
|
|
58
|
+
matching the Python prototype for P8 differential acceptance.
|
|
59
|
+
- `tools/template_yaml/render_markdown.rb`: Ruby port of `render_markdown(model, findings)` (P7),
|
|
60
|
+
rendering a template and its review findings as Markdown with all Python quirks reproduced
|
|
61
|
+
verbatim: the dead `stage` column, escape-then-truncate on `label`, redundant `type` re-split,
|
|
62
|
+
CRLF-to-LF normalization on force scripts, and preserved literals like `'(unnamed)'`,
|
|
63
|
+
`'(no custom script)'`, `'(none)'`.
|
|
64
|
+
- `tools/template_yaml/cli.rb`: Ruby CLI entrypoint matching Python's `main()` (P7), supporting
|
|
65
|
+
single-file and directory modes, `--out`, `--json`, and `--delta` flags. **Input is JSON
|
|
66
|
+
(`*.json`), not YAML**, per Loader's design (see loader.rb header). File writes are LF-only
|
|
67
|
+
on all platforms via binary mode. Directory mode processes `*.json` files alphabetically,
|
|
68
|
+
accumulates an `_index.md` at the end, and leaves earlier files on disk if an error occurs
|
|
69
|
+
mid-run (no transactional cleanup).
|
|
70
|
+
|
|
71
|
+
- `tools/template_yaml/differential_gate.rb`: P8, the template-yaml Ruby port's acceptance gate.
|
|
72
|
+
Regenerates BOTH IRs fresh in one run -- Ruby in-process (`Loader` -> `Model.build` -> `Review`
|
|
73
|
+
-> `UpdateGate`) over the `*.json` corpus, Python via a single batched subprocess (direct
|
|
74
|
+
import of `ep_template_yaml.py`, not its CLI) over the `*.yaml` corpus -- and diffs the ENTIRE
|
|
75
|
+
IR: every template attribute, every field, every force (incl. bindings), every review finding,
|
|
76
|
+
and the `update_gate` refusal set. Live run over the 18 M&S templates: **`P8 GATE: PASS`**,
|
|
77
|
+
0 unexpected divergences, 12 expected (the six known-corrected ObjectIds, each seen twice --
|
|
78
|
+
once as a field id, once as a binding `reference_id`).
|
|
79
|
+
- `tools/template_yaml/known_divergences.rb`: the six-id whitelist and its `corrupted_id?` rule,
|
|
80
|
+
extracted out of `compare_fields.rb` so P3's gate and the new P8 gate share one definition
|
|
81
|
+
instead of two copies drifting apart.
|
|
82
|
+
- Fixed a Ruby port defect in `review.rb`, found live by the P8 differential run: finding
|
|
83
|
+
`detail` text quoted force/binding/field names with Ruby's `String#inspect` (always
|
|
84
|
+
double-quoted) where the Python source uses `%r` (CPython `repr()`, single-quoted by
|
|
85
|
+
default). Added `Review.py_repr` to reproduce Python's exact quoting.
|
|
86
|
+
- Excluded `patch_ver` and `updated_at` from P8's template-attribute comparison, alongside the
|
|
87
|
+
pre-existing `source_file` exclusion: the `templates_yaml`/`templates_json` fixture corpora
|
|
88
|
+
under `tmp/mns_01_tooltip_update/` are two separate exports pulled two days apart (confirmed
|
|
89
|
+
by file mtime), so these two pass-through fields legitimately disagree -- a corpus-provenance
|
|
90
|
+
artifact, not a port defect. `compare_fields.rb` / `compare_forces.rb`'s existing 0-unexpected
|
|
91
|
+
results already proved field/force content is identical across the two pulls.
|
|
92
|
+
|
|
93
|
+
### Changed
|
|
94
|
+
|
|
95
|
+
- **Changed** what a failing query prints. `Logic::BaseQuery`'s rescue used to `pp kargs` /
|
|
96
|
+
`pp query_params` / `pp block` to **stdout** on every error. That existed for a real reason —
|
|
97
|
+
graphlient masks the origin, so it was the only way to see which query failed — but it put GraphQL
|
|
98
|
+
variables (page ids, emails, field values) on stdout and into CI logs. Ruby populates `.cause` when
|
|
99
|
+
raising inside a rescue, so the original error keeps the source location `graphql-client`
|
|
100
|
+
deliberately sets: the report now names `err.cause`'s class and **the failing query's own source
|
|
101
|
+
location** on **stderr**, which is more of what the dump was for. Variables are emitted only when
|
|
102
|
+
the client's existing `deep_logging` flag is on; `pp block` is dropped. A blank message (which
|
|
103
|
+
graphlient's `GraphQLError#to_s` can render) is now labelled instead of printing nothing.
|
|
104
|
+
Tracked as Q-43.
|
|
105
|
+
|
|
106
|
+
### Fixed
|
|
107
|
+
|
|
108
|
+
- **Fixed** `currentOrganization.pageActivities` returning nothing. The wiring in
|
|
109
|
+
`Model::Organization` injected `base_path: ['currentOrganization']`, which overrides the
|
|
110
|
+
`base_path 'currentOrganization.page'` declared by `Query::PageActivities` — so the client
|
|
111
|
+
dug `currentOrganization.activities`, a path the emitted document never contains (the
|
|
112
|
+
inline-fragment `activities` merges into `page`). Added `subpath: 'page'`, plus a spec that
|
|
113
|
+
compares every wired query's declared base_path against the one the wiring injects, so the
|
|
114
|
+
whole class of bug is guarded rather than the one instance. Tracked as Q-13.
|
|
115
|
+
|
|
116
|
+
- **Fixed** `Common::GraphQL::ResponseError` discarding `errors[].extensions`. It now carries the
|
|
117
|
+
raw error entries and exposes `#errors`, `#extensions`, `#codes`, `#details`, `#full_messages`
|
|
118
|
+
and `#unauthorized?`. This is what makes a permission problem distinguishable from a request
|
|
119
|
+
problem in Ruby — the diagnosis the M&S pack tells customers to perform, which until now no tool
|
|
120
|
+
built on this gem could actually follow. The message still LEADS with the joined server messages
|
|
121
|
+
(existing matchers keep working) and appends `code:` / `details:` after them. `tools/mns/cli.rb`
|
|
122
|
+
now reports the server's own classification instead of sniffing the message for `/unauthoriz/i` —
|
|
123
|
+
a sniff that could not tell a policy refusal from a FIELD-level gate. Tracked as Q-27.
|
|
124
|
+
|
|
125
|
+
- **Fixed** `Payload::Kickstand::BulkUpdateJobs` and `BulkUpdateWorkflows` raising `NoMethodError`
|
|
126
|
+
on `#items` and `#errors`. Both called `from_doc`, which is a per-class convention in this gem
|
|
127
|
+
(only 7 classes define one) and does not exist on `Base::Kickstand::Job`/`Workflow` or on
|
|
128
|
+
`Error::ValidationErrors`. Any caller reading the result of a Kickstand bulk update crashed.
|
|
129
|
+
Replaced with the real constructor, `new(doc)`. These two classes had **no spec of any kind** —
|
|
130
|
+
that is why it shipped — so this adds the missing coverage (12 examples over both, shared) as
|
|
131
|
+
well as the guard. Found while mapping the client's failure surface for Q-31.
|
|
132
|
+
|
|
133
|
+
- **Packaging allowlist is now keyed on the full path, not the root directory.** `spec.files`
|
|
134
|
+
previously allowed anything under `lib/` or `exe/`, which packaged five `CLAUDE.md`
|
|
135
|
+
agent-instruction files living inside `lib/` (573 files now ship, down from 578). The
|
|
136
|
+
publish-time gate in `scripts/release_smoke_check.rb` had the same hole -- it exempted `lib/`
|
|
137
|
+
wholesale, so it could not see them by construction. Both now require every packaged path to
|
|
138
|
+
match `lib/**/*.rb`, `exe/*`, or one of the three named root docs, and the rule is pinned by
|
|
139
|
+
`spec/packaging_spec.rb` (15 examples, including one that proves the excluded files remain
|
|
140
|
+
tracked in the repo). No credentials or customer data were ever affected.
|
|
141
|
+
|
|
142
|
+
- **Seven workflow-command input builders were silently discarding arguments the backend accepts.**
|
|
143
|
+
Each builder filters its keyword arguments through an allowlist with `kwargs.slice(*KEYS)`, so a
|
|
144
|
+
key missing from the allowlist is dropped before the request is built: no error, no warning, no
|
|
145
|
+
effect. The mutation succeeds and does nothing.
|
|
146
|
+
|
|
147
|
+
| command | argument restored |
|
|
148
|
+
|---|---|
|
|
149
|
+
| `addSelectFieldOption` | `value` — ★ `required: true` on the backend, so **every call this builder produced was rejected by the server** |
|
|
150
|
+
| `editSelectFieldOption` | `value` |
|
|
151
|
+
| `editFieldConfiguration` | `required`, `hiddenOnReports` |
|
|
152
|
+
| `editTemplateBasicSettings` | `enableCopyPage` |
|
|
153
|
+
| `EditFieldConfiguration::PlainText` | `multiline` |
|
|
154
|
+
| `EditFieldConfiguration::ContractorEntities` | `applyPermissionsToParent` (distinct from `applyAttachedContractorsPermissionsTo`, which was already present) |
|
|
155
|
+
| `editForce` | `lastSyncedAt` |
|
|
156
|
+
|
|
157
|
+
Found by comparing all 123 command-bus inputs against the backend Rails source rather than
|
|
158
|
+
against the gem's stored introspection snapshot — that snapshot is dated 2026-07-30, does not
|
|
159
|
+
show these arguments, and would have confirmed the wrong answer. 104 commands were verified
|
|
160
|
+
clean. Every restored key is now pinned by a spec asserting on the OUTPUT of `build`, and three
|
|
161
|
+
of the affected classes had no spec file at all before this, which is a large part of how the
|
|
162
|
+
drift survived.
|
|
163
|
+
|
|
164
|
+
- **`Diff::Change` and the template-builder options DSL now carry an option's `value`.** Making
|
|
165
|
+
`value` required on `AddSelectFieldOption.build` exposed that two production paths never had one:
|
|
166
|
+
`Builder::TemplateBuilder#emit_options` and `Diff::CommandSynthesizer#option_command`. Neither had
|
|
167
|
+
ever been able to emit a valid `addSelectFieldOption`; the specs that passed were pinning a
|
|
168
|
+
command shape the server rejects. `VersionDiff#index_options` now captures `o['value']` alongside
|
|
169
|
+
label and weight — the field was already being fetched by the page-content fragment and thrown
|
|
170
|
+
away by the diff layer. Where no value is available, both paths **raise** naming the option and
|
|
171
|
+
field: `value` is documented as cast to a number for numeric select fields, so defaulting it to
|
|
172
|
+
the label would silently store wrong data on precisely the scored fields that matter.
|
|
173
|
+
|
|
174
|
+
- Corrected a false comment in `add_field.rb` asserting that a field's `required` flag "cannot be
|
|
175
|
+
persisted through the workflow command bus at all". It can, via `editFieldConfiguration`. A
|
|
176
|
+
comment stating a platform limitation that does not exist is worse than no comment: it stops
|
|
177
|
+
people trying.
|
|
178
|
+
|
|
179
|
+
### Removed
|
|
180
|
+
|
|
181
|
+
- `tools/template_yaml/ep_template_yaml.py` and `tools/template_yaml/mns_review.py` -- the
|
|
182
|
+
original Python template-backup projector and its cross-template audit. P9 of the template-yaml
|
|
183
|
+
Ruby port: the Ruby port (`model.rb`, `review.rb`, `update_gate.rb`, `render_markdown.rb`,
|
|
184
|
+
`cli.rb`) was proven byte/field-parity-identical to both by the P8 differential gate
|
|
185
|
+
(`differential_gate.rb`, 0 unexpected divergences over 18 live templates) before removal, and
|
|
186
|
+
the last remaining live use case -- a Jira ticket's YAML-only attachment (EPT-1872) -- was
|
|
187
|
+
re-verified against the promoted bridge (`yaml_to_raw_json.py`) with byte-identical
|
|
188
|
+
Python/Ruby deltas. Recoverable in full: `git show
|
|
189
|
+
0caa6f3d80c6495a9f92132178b9a6a42deb40f5:tools/template_yaml/ep_template_yaml.py` (and the same
|
|
190
|
+
path for `mns_review.py`).
|
|
191
|
+
|
|
192
|
+
## [2.1.0] - 2026-08-21
|
|
193
|
+
|
|
194
|
+
Everything accumulated on `main` since `v2.0.0` (2026-08-13): 150 commits touching 73 files under
|
|
195
|
+
`lib/`. **Minor, not patch:** the bulk is additive -- new data-field models, the last command-bus
|
|
196
|
+
command, a native people-directory query, template-change-log reading -- and 73 library files is not
|
|
197
|
+
a patch by any honest reading. **Minor, not major:** no surface was removed or reshaped, so `~> 2.0`
|
|
198
|
+
consumers adopt it without a floor change.
|
|
199
|
+
|
|
200
|
+
★ Why this release exists at all, beyond the contents: a remote clone installs PUBLISHED gems, so
|
|
201
|
+
until this went out none of that work could reach the api runner -- and `main` could not be released
|
|
202
|
+
either, because its version constant still read `2.0.0`, which `rake release:check` correctly refuses
|
|
203
|
+
as already published. Three weeks of library work with no route to a remote is the failure mode this
|
|
204
|
+
closes.
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
### Added
|
|
208
|
+
|
|
209
|
+
- **Wired the `manageCopyPageConfiguration` workflow command** (`Input::WorkflowCommand::ManageCopyPageConfiguration`,
|
|
210
|
+
first observed in the live schema 20260819): controls `overridePageCreatorPermissions`,
|
|
211
|
+
`autoIncludeNewContent`, and per-data-field `inclusionSettingsChanges` (`dataFieldId` /
|
|
212
|
+
`include` / `enforce`) for copy-page behaviour. Closes the last gap in the command bus --
|
|
213
|
+
`validate-queries` now reports 106/106 commands wired.
|
|
214
|
+
|
|
215
|
+
- `tools/mns/collection.rb` -- a pure-Ruby, stdlib-only read interface over the MnS Postman "ALL
|
|
216
|
+
CASES" master collection (the sibling `ep-api-collections` repo masters it; this gem never
|
|
217
|
+
hand-copies its knowledge). Walks the folder tree, exposes each GraphQL request's full path,
|
|
218
|
+
name, query, parsed variables, and `{{placeholder}}` inventory, with a name/path lookup that
|
|
219
|
+
tolerates a folder-path prefix and raises a named error listing near-matches when nothing
|
|
220
|
+
resolves. `spec/tools/mns/collection_sync_spec.rb` pins the webhook-admin and build/update-page
|
|
221
|
+
request paths plus the placeholders the tooling depends on, and fails -- naming exactly what
|
|
222
|
+
disappeared -- if the collection renames or removes one of them; it skips cleanly (not fails)
|
|
223
|
+
when no sibling checkout is present. See `tools/mns/README.md`.
|
|
224
|
+
|
|
225
|
+
- `tools/template_yaml/mns_review.py` -- cross-template audit over a directory of IR projections:
|
|
226
|
+
identifier coverage, `templateContainerUid` uniqueness and name plausibility, findings by code,
|
|
227
|
+
authoring-maturity signal, and classification of orphaned force bindings into projector gaps
|
|
228
|
+
versus real defects (checked against the source dumps). First run recorded in
|
|
229
|
+
`tools/template_yaml/reviews/2026-08-09-mns-18-templates.md`.
|
|
230
|
+
|
|
231
|
+
- **`tools/mns/cli.rb`** -- a Ruby CLI that creates/lists/destroys the M&S webhook
|
|
232
|
+
subscription and verifies the setup read-only, runnable from a support server with nothing
|
|
233
|
+
but `USER_EMAIL`/`USER_PASS` supplied (every other value defaults to the M&S UAT org, EU
|
|
234
|
+
instance). `webhook create` is idempotent in practice: it lists first and reports the
|
|
235
|
+
existing subscription instead of creating a duplicate when one already matches the URL and
|
|
236
|
+
template(s). `--dry-run` prints the GraphQL document and variables with no network call.
|
|
237
|
+
Document builders live in `tools/mns/webhooks.rb` (`MnsWebhooks::Documents`) as pure
|
|
238
|
+
functions, spec'd in `spec/tools/mns/webhooks_spec.rb` with no network involved.
|
|
239
|
+
|
|
240
|
+
- **`Query::PersonMembers`** — the GraphQL-native people-directory path over
|
|
241
|
+
`organization.personMembers`, filling the gap flagged in `model/organization.rb`. Salvaged
|
|
242
|
+
from a stranded July branch (`feat/scim-apiv0-adapter-design`) whose SCIM design and
|
|
243
|
+
scaffold were superseded by the `ecoportal-scim` gem's `apiv0-people-adapter` project; this
|
|
244
|
+
query was the only part of it with no equivalent anywhere. ★ It is NOT the SCIM-sourced
|
|
245
|
+
People replacement for the APIv0 retirement — that port lives in `ecoportal-scim`.
|
|
246
|
+
Reuses the existing `Base`/`Model`/`Connection::PersonMember` classes; no new models.
|
|
247
|
+
|
|
248
|
+
- `scripts/release_smoke_check.rb` — pre-push gate for BUILT gem artifacts (any gem in the
|
|
249
|
+
stack): packaging allowlist, byte corruption (`\r\r`, BOM, mixed EOL), and corruption-class
|
|
250
|
+
parse warnings via `ruby -wc`. Proven against real defects: red on eco-helpers 3.2.21
|
|
251
|
+
(shipped `\r\r\n`) and on the first 3.2.22 build (CHANGELOG `\r\r` via autocrlf smudge),
|
|
252
|
+
green on the corrected artifacts. Run it on every `.gem` before `gem push`.
|
|
253
|
+
|
|
254
|
+
- **Template change log now reports WHAT changed**, not only who/when/which-resource. New
|
|
255
|
+
registered fragment `:TemplateChangeLogEntryDetail`, opt-in via
|
|
256
|
+
`api.template.change_log(id:, first:, detail: true)` or
|
|
257
|
+
`&Query::TemplateChangeLog.detail_block`. The default selection is unchanged and still light —
|
|
258
|
+
the common "who touched this template and when" read does not pay for per-type detail.
|
|
259
|
+
`Base::Template::ChangeLogEntry` gains `#changes`, `#changeMessages`, `#detail_kind`
|
|
260
|
+
(`:changes` / `:change_messages` / `:es_changes` / nil) and `#detail?`.
|
|
261
|
+
★ The three concrete command types report changes in three different shapes, so `#changes`
|
|
262
|
+
returns raw hashes rather than a typed embed that would have to lie about one of them:
|
|
263
|
+
`PagesWorkflowCommandChange.changes` is `{field, from, to}` with STRING values;
|
|
264
|
+
`PagesWorkflowCommandEsChange.changes` has `from`/`to` as `StoredEsFilterType` OBJECTS (only
|
|
265
|
+
`field` is selected, so an ES change names which filter moved, not its before/after);
|
|
266
|
+
`PagesWorkflowCommandChangeMessage` carries pre-rendered `changeMessages` and no field/from/to.
|
|
267
|
+
Branch on `#detail_kind`. ★ Empty readers mean NOT SELECTED, never "nothing changed".
|
|
268
|
+
|
|
269
|
+
- **Template change log (GraphQL-native)** — `Query::TemplateChangeLog` reads the platform's
|
|
270
|
+
per-change audit log for a template: "for template X, who changed what and when", newest first,
|
|
271
|
+
paginated. Reachable as `api.template.change_log(id: template_page_id, first: 50)`, or bare
|
|
272
|
+
(`api.template.change_log.each(id: …)`) for an auto-paginating enumerator.
|
|
273
|
+
Read path: `currentOrganization.page(id:) → template → commands` — `template` is declared on
|
|
274
|
+
`BasePageInterface`, so it is selected through a type condition (selecting on the returned
|
|
275
|
+
`PageUnion` directly is invalid GraphQL). New supporting types:
|
|
276
|
+
`Base::Template::ChangeLogEntry`, `Model::Template::ChangeLogEntry` (adds the `owner` embed —
|
|
277
|
+
WHO changed it), `Connection::TemplateChangeLog`, and the registered fragment
|
|
278
|
+
`:TemplateChangeLogEntry` on the interface `PagesWorkflowCommandInterface`.
|
|
279
|
+
★ Two access caveats, both silent and both documented on `Base::Template::ChangeLogEntry`:
|
|
280
|
+
(1) the connection is **nil, not empty**, unless the caller satisfies
|
|
281
|
+
`Pages::TemplatePolicy#update_information?` — a read-only account sees no log and no error, so
|
|
282
|
+
never read nil as "nothing changed"; (2) the server scope is `from_template_builder`, so only
|
|
283
|
+
`TEMPLATE_BUILDER`-sourced commands appear — `WORKFLOW_BUILDER` changes to the same page are
|
|
284
|
+
excluded (those are on `Query::PagesWorkflowCommands`).
|
|
285
|
+
★ Why this beats polling a watermark: a forces run writes with `skip_patch_incr` + `timeless`,
|
|
286
|
+
bumping **neither `patchVer` nor `updatedAt`** — any watermark-polling change tracker is blind to
|
|
287
|
+
force-driven change, whereas the command log is per-change. (Open: whether forces run against
|
|
288
|
+
templates specifically is not confirmed.)
|
|
289
|
+
Also documented in `.ai-assistance/code/template_change_log.md`.
|
|
290
|
+
|
|
291
|
+
- **New tool `tools/template_yaml/delta.rb`** (P6 of the template-YAML-tooling Ruby port): the
|
|
292
|
+
deterministic before/after difference between two `project()` snapshots, shaped for the Rovo
|
|
293
|
+
delta-verification agent. Field pairing on id-then-identifier (so a REBUILT field -- new id,
|
|
294
|
+
same `description` -- is one `changed` entry rather than an add/remove pair), `TRACKED`-only
|
|
295
|
+
attribute diffing, force diffing by name with binding set-difference, the five-key template
|
|
296
|
+
diff, and the four `not_evaluable` strings reproduced VERBATIM, because the Rovo agent is
|
|
297
|
+
instructed to read that list literally and any wording drift changes what it is told it cannot
|
|
298
|
+
verify. **Verified against the canonical Python on the known pre/post pair (all 7 comparable
|
|
299
|
+
sections identical) and on 9 synthetic scenarios covering every branch -- rebuild, removal,
|
|
300
|
+
untracked-only change, template attributes, force add/remove/script/binding-set-diff, and
|
|
301
|
+
reference-id-only binding moves -- 0 mismatches.**
|
|
302
|
+
- **`Delta::Result` reports what the pairing could not say cleanly** -- colliding pairing keys,
|
|
303
|
+
duplicate force names (only the last is diffed), and rebuild pairings -- rather than returning
|
|
304
|
+
a bare hash the way the Python does. `review_findings` is **omitted** from the payload until a
|
|
305
|
+
reviewer is injected (it re-runs `review()`, which is P5): emitting an empty list there would
|
|
306
|
+
read as "no findings" when the truth is "not checked".
|
|
307
|
+
- **Corrected `P1-CONTRACT.md` section 8.** It claimed `_key` can return `None` and that fields
|
|
308
|
+
with neither id nor description are "filtered out of both snapshots entirely ... invisible to
|
|
309
|
+
`delta` by construction". Verified by running the Python: `'ref:' + ''` is truthy, so the
|
|
310
|
+
`or None` branch is unreachable and `_key` never returns `None`. Those fields are not filtered
|
|
311
|
+
out -- they all collapse onto the single key `'ref:'`, so an unidentified field in `before`
|
|
312
|
+
pairs with an **unrelated** unidentified field in `after` and their differences are reported as
|
|
313
|
+
a change. Not a live defect (every membrane in the JSON export carries a validated hex `_id`),
|
|
314
|
+
but a latent trap; the port reproduces it for parity and warns on it.
|
|
315
|
+
|
|
316
|
+
- **New tools `tools/template_yaml/field_walker.rb` + `tools/template_yaml/compare_fields.rb`**
|
|
317
|
+
(P3 of the template-YAML-tooling Ruby port): enumerates a template's fields in on-screen
|
|
318
|
+
LAYOUT order -- `flow_nodes` by `weight`, then `membrane_ids` / `left_membrane_ids` /
|
|
319
|
+
`right_membrane_ids`, then each id list in stored order -- porting the Python projector's
|
|
320
|
+
`walk_fields` against the contract frozen in `P1-CONTRACT.md`.
|
|
321
|
+
**Verified against the real 18-template M&S dump set: 2,714 fields, ids and ordering match the
|
|
322
|
+
Python projector exactly, with 0 unexpected divergences.** The only 6 differences are the
|
|
323
|
+
`ActionsList` ids the Python's YAML path corrupts (`6a4c4f12316577006e210b7a`..`..b7f`), where
|
|
324
|
+
the Ruby is correct and the Python is not; `compare_fields.rb` whitelists those six BY VALUE,
|
|
325
|
+
so a seventh divergence -- or any ordering defect on that same template -- still fails.
|
|
326
|
+
- **`FieldWalker` distinguishes "no fields" from "could not see the fields"**, which the Python
|
|
327
|
+
cannot: it returns a `Result` carrying the faithful field list plus every membrane it dropped,
|
|
328
|
+
every layout reference it could not resolve, duplicate placements, non-hash nodes and
|
|
329
|
+
defaulted weights, with `#blind?` true exactly when an empty list is untrustworthy. A
|
|
330
|
+
command-bus-built template with no layout, a `SplitSection` with no `dataFields`, and a
|
|
331
|
+
genuinely empty template all return an empty or short list from the Python with no error; they
|
|
332
|
+
are now told apart. Three port-critical quirks are preserved deliberately and covered by
|
|
333
|
+
specs: Python truthiness in the `or` chains (an empty `heading` must fall through to
|
|
334
|
+
`left_heading`, an empty `_type` must stay `''` -- `''` is truthy in Ruby), the STABLE node
|
|
335
|
+
sort (`Array#sort_by` is not stable), and `bool`-is-`int` weights.
|
|
336
|
+
|
|
337
|
+
- **New tools `tools/template_yaml/loader.rb` + `tools/template_yaml/id_guard.rb`** (P2 of the
|
|
338
|
+
template-YAML-tooling Ruby port): loads an ecoPortal template backup dump from its **JSON**
|
|
339
|
+
export -- not the YAML -- and validates every id-shaped value against `/\A[0-9a-f]{24}\z/`,
|
|
340
|
+
raising loudly (template, field path, offending value) rather than letting a bad id through.
|
|
341
|
+
Reading JSON instead of YAML is deliberate: the Python projector's YAML path decodes
|
|
342
|
+
`!ruby/object:BSON::ObjectId` via a step with a silent-failure mode (confirmed unchanged on
|
|
343
|
+
the canonical post-!86 surface in `P1-CONTRACT.md`) that corrupts 6 of 2,432 fields on one
|
|
344
|
+
M&S template without affecting counts. The JSON export carries identical data with plain hex
|
|
345
|
+
ids already, so the whole decode-bug class is structurally impossible on this path rather
|
|
346
|
+
than reimplemented. Verified against the real 18-template M&S JSON dump set, including the 6
|
|
347
|
+
previously-corrupted `ActionsList` ids on "Yard 5S Site Standard"
|
|
348
|
+
(`6a4c4f12316577006e210b7a`..`..b7f`), which load and validate correctly.
|
|
349
|
+
|
|
350
|
+
### Changed
|
|
351
|
+
|
|
352
|
+
- **`ecoportal-api-v2` floor raised to `>= 3.3.5`** (was `>= 3.3.3`). 3.3.5 carries the fix for
|
|
353
|
+
`ClassHelpers#to_time`, whose rescue clause named a constant that does not exist
|
|
354
|
+
(`ArgumentArgument`), so its documented `exception: false` mode raised
|
|
355
|
+
`NameError: uninitialized constant ...ClassHelpers::ArgumentArgument` instead of returning nil.
|
|
356
|
+
This gem inherits that helper through DoubleModel, so any null or object-shaped date reaching a
|
|
357
|
+
`passdate` field hit it. ★ Side benefit: the old floor pointed at **3.3.3, which was yanked**
|
|
358
|
+
for shipping internal repository content to rubygems — a floor should not name a yanked version.
|
|
359
|
+
|
|
360
|
+
### Fixed
|
|
361
|
+
|
|
362
|
+
- `FieldConfig::CrossReference` could not set `enableCrossRegisterReporting` (Boolean) — the schema
|
|
363
|
+
accepts the key but no builder path could reach it. Closes the last MISSING-key advisory reported
|
|
364
|
+
by `tests/validate_commands.rb` for the `crossReference` byType key.
|
|
365
|
+
|
|
366
|
+
- Stripped UTF-8 BOMs from 58 `lib/` source files (present since early development; harmless
|
|
367
|
+
to Ruby but flagged by the release smoke gate, and byte-noise for every downstream diff).
|
|
6
368
|
|
|
7
369
|
## [2.0.0] - 2026-08-13
|
|
8
370
|
|
data/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2022 ecoPortal
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 ecoPortal
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
data/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
# Ecoportal::API::GraphQL
|
|
2
|
-
|
|
3
|
-
This is a basic collection of helpers that can be used to interact with the
|
|
4
|
-
[ecoPortal](https://www.ecoportal.com) `GraphQL` API
|
|
5
|
-
|
|
6
|
-
## Installation
|
|
7
|
-
|
|
8
|
-
Add this line to your application's Gemfile:
|
|
9
|
-
|
|
10
|
-
```ruby
|
|
11
|
-
gem 'ecoportal-api-graphql', require: %w[ecoportal/api-graphql]
|
|
12
|
-
```
|
|
13
|
-
|
|
14
|
-
And then execute:
|
|
15
|
-
|
|
16
|
-
$ bundle
|
|
17
|
-
|
|
18
|
-
Or install it yourself as:
|
|
19
|
-
|
|
20
|
-
$ gem install ecoportal-api-graphql
|
|
21
|
-
|
|
22
|
-
## Changelog
|
|
23
|
-
|
|
24
|
-
See {file:CHANGELOG.md} for a list of changes.
|
|
1
|
+
# Ecoportal::API::GraphQL
|
|
2
|
+
|
|
3
|
+
This is a basic collection of helpers that can be used to interact with the
|
|
4
|
+
[ecoPortal](https://www.ecoportal.com) `GraphQL` API
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
|
|
8
|
+
Add this line to your application's Gemfile:
|
|
9
|
+
|
|
10
|
+
```ruby
|
|
11
|
+
gem 'ecoportal-api-graphql', require: %w[ecoportal/api-graphql]
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
And then execute:
|
|
15
|
+
|
|
16
|
+
$ bundle
|
|
17
|
+
|
|
18
|
+
Or install it yourself as:
|
|
19
|
+
|
|
20
|
+
$ gem install ecoportal-api-graphql
|
|
21
|
+
|
|
22
|
+
## Changelog
|
|
23
|
+
|
|
24
|
+
See {file:CHANGELOG.md} for a list of changes.
|