foobara 0.2.7 → 0.4.1
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 +15 -0
- data/README.md +35 -118
- data/lib/foobara/all.rb +22 -0
- data/projects/command/lib/foobara/command.rb +6 -3
- data/projects/command/src/command_pattern_implementation/concerns/namespace.rb +0 -2
- data/projects/command/src/command_pattern_implementation/concerns/reflection.rb +0 -2
- data/projects/command/src/command_pattern_implementation/concerns/subcommands.rb +3 -1
- data/projects/command/src/command_pattern_implementation/concerns/transactions.rb +2 -0
- data/projects/command/src/extensions/domain/domain_module_extension.rb +16 -0
- data/projects/command/src/extensions/domain/domain_module_extension_extension.rb +22 -0
- data/projects/command/src/extensions/foobara.rb +7 -0
- data/projects/command_connectors/Guardfile +6 -0
- data/projects/command_connectors/lib/foobara/command_connectors.rb +1 -1
- data/projects/command_connectors/spec/ambiguous_lookups_spec.rb +143 -0
- data/projects/command_connectors/spec/command_connector_spec.rb +2443 -0
- data/projects/command_connectors/spec/command_registry_spec.rb +9 -0
- data/projects/command_connectors/spec/commands/describe_spec.rb +83 -0
- data/projects/command_connectors/spec/commands/ping_spec.rb +14 -0
- data/projects/command_connectors/spec/commands/query_git_commit_info_spec.rb +55 -0
- data/projects/command_connectors/spec/fixtures/command_connectors/manifest_with_errors_with_missing_command_parents.yaml +1662 -0
- data/projects/command_connectors/spec/not_found_error_spec.rb +17 -0
- data/projects/command_connectors/spec/pre_commit_transformers/load_atoms_pre_commit_transformer_spec.rb +105 -0
- data/projects/command_connectors/spec/request_spec.rb +95 -0
- data/projects/command_connectors/spec/serializer_spec.rb +9 -0
- data/projects/command_connectors/spec/serializers/aggregate_serializer_spec.rb +45 -0
- data/projects/command_connectors/spec/serializers/atomic_serializer_spec.rb +68 -0
- data/projects/command_connectors/spec/serializers/entities_to_primary_keys_serializer_spec.rb +36 -0
- data/projects/command_connectors/spec/serializers/json_serializer_spec.rb +22 -0
- data/projects/command_connectors/spec/serializers/noop_serializer_spec.rb +22 -0
- data/projects/command_connectors/spec/serializers/yaml_serializer_spec.rb +22 -0
- data/projects/command_connectors/spec/spec_helper.rb +51 -0
- data/projects/command_connectors/spec/support/rubyprof.rb +32 -0
- data/projects/command_connectors/spec/support/term_trap.rb +6 -0
- data/projects/command_connectors/spec/transformers/entity_to_primary_key_inputs_transformer_spec.rb +119 -0
- data/projects/command_connectors/src/command_connector/commands/describe.rb +4 -2
- data/projects/command_connectors/src/command_connector/concerns/reflection.rb +187 -0
- data/projects/command_connectors/src/command_connector.rb +139 -264
- data/projects/command_connectors/src/command_registry/exposed_command.rb +6 -4
- data/projects/command_connectors/src/command_registry.rb +50 -48
- data/projects/command_connectors/src/transformed_command.rb +166 -114
- data/projects/command_connectors/src/transformers/load_atoms_transformer.rb +2 -0
- data/projects/command_connectors/src/transformers/load_delegated_attributes_entities_pre_commit_transformer.rb +2 -0
- data/projects/domain_mapper/lib/foobara/domain_mapper.rb +4 -0
- data/projects/domain_mapper/src/domain_mapper.rb +2 -0
- data/projects/{detached_entity → entities/projects/detached_entity}/lib/foobara/detached_entity.rb +4 -0
- data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/primary_key.rb +3 -1
- data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/types.rb +9 -1
- data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/builtin_types/detached_entity/validators/model_instance_is_valid.rb +1 -1
- data/projects/{entity → entities/projects/entity}/lib/foobara/entity.rb +4 -0
- data/projects/{entity → entities/projects/entity}/src/concerns/callbacks.rb +2 -0
- data/projects/{entity → entities/projects/entity}/src/concerns/transactions.rb +1 -5
- data/projects/entities/projects/entity/src/extensions/domain/domain_module_extension.rb +111 -0
- data/projects/{entity → entities/projects/entity}/src/not_found_error.rb +11 -1
- data/projects/{in_memory_crud_driver → entities/projects/in_memory_crud_driver}/lib/foobara/in_memory_crud_driver.rb +4 -0
- data/projects/entities/projects/in_memory_crud_driver_minimal/lib/foobara/in_memory_crud_driver_minimal.rb +6 -0
- data/projects/{in_memory_crud_driver_minimal → entities/projects/in_memory_crud_driver_minimal}/src/in_memory_minimal.rb +6 -4
- data/projects/{model → entities/projects/model}/lib/foobara/model.rb +4 -0
- data/projects/{model → entities/projects/model}/src/concerns/classes.rb +1 -1
- data/projects/{model → entities/projects/model}/src/concerns/types.rb +4 -2
- data/projects/entities/projects/model/src/extensions/domain/module_extension.rb +20 -0
- data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/to_type_transformer.rb +8 -3
- data/projects/{model → entities/projects/model}/src/model.rb +25 -1
- data/projects/{model_attribute_helpers → entities/projects/model_attribute_helpers}/lib/foobara/model_attribute_helpers.rb +2 -0
- data/projects/{model_attribute_helpers → entities/projects/model_attribute_helpers}/src/attribute_helper_aliases.rb +1 -1
- data/projects/{model_attribute_helpers → entities/projects/model_attribute_helpers}/src/attribute_helpers.rb +4 -4
- data/projects/{nested_transactionable → entities/projects/nested_transactionable}/lib/foobara/nested_transactionable.rb +2 -2
- data/projects/{persistence → entities/projects/persistence}/lib/foobara/persistence.rb +4 -0
- data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction/concerns/transaction_tracking.rb +2 -0
- data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction/state_machine.rb +2 -0
- data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction_table/concerns/record_tracking.rb +2 -0
- data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction_table.rb +2 -2
- data/projects/entities/projects/weak_object_set/lib/foobara/weak_object_set.rb +6 -0
- data/projects/entities/spec/builtin_types/detached_entity_spec.rb +300 -0
- data/projects/entities/spec/builtin_types/entity_spec.rb +501 -0
- data/projects/entities/spec/builtin_types/model_spec.rb +420 -0
- data/projects/entities/spec/detached_entity/casting_spec.rb +31 -0
- data/projects/entities/spec/entity/concerns/associations_spec.rb +73 -0
- data/projects/entities/spec/entity/concerns/attribute_helpers_spec.rb +220 -0
- data/projects/entities/spec/entity/concerns/callbacks_spec.rb +61 -0
- data/projects/entities/spec/entity/concerns/initialization_spec.rb +213 -0
- data/projects/entities/spec/entity/concerns/mutations_spec.rb +38 -0
- data/projects/entities/spec/entity/concerns/queries_spec.rb +184 -0
- data/projects/entities/spec/entity/entity_spec.rb +240 -0
- data/projects/entities/spec/entity/extending_existing_spec.rb +137 -0
- data/projects/entities/spec/entity/extensions/domain_module_extension_spec.rb +42 -0
- data/projects/entities/spec/entity/from_type_declaration_spec.rb +34 -0
- data/projects/entities/spec/entity/that_owns_spec.rb +243 -0
- data/projects/entities/spec/entity/weak_object_set_spec.rb +91 -0
- data/projects/entities/spec/model/model_spec.rb +135 -0
- data/projects/entities/spec/model/types_spec.rb +393 -0
- data/projects/entities/spec/nested_transactionable/nested_transactionable_spec.rb +67 -0
- data/projects/entities/spec/persistence/entity_attributes_crud_drivers/in_memory_minimal_spec.rb +13 -0
- data/projects/entities/spec/persistence/entity_base/transaction_spec.rb +509 -0
- data/projects/entities/spec/persistence/entity_base/transaction_table_spec.rb +58 -0
- data/projects/entities/spec/persistence/persistence_spec.rb +148 -0
- data/projects/entities/spec/spec_helper.rb +52 -0
- data/projects/entities/spec/support/rubyprof.rb +32 -0
- data/projects/entities/spec/support/term_trap.rb +6 -0
- data/projects/entities/spec/type_declarations/sensitive_type_removers_spec.rb +90 -0
- data/projects/manifest/lib/foobara/manifest.rb +2 -0
- data/projects/manifest/spec/manifest_spec.rb +378 -0
- data/projects/manifest/spec/model_spec.rb +74 -0
- data/projects/manifest/spec/spec_helper.rb +50 -0
- data/projects/manifest/spec/type_declaration_spec.rb +39 -0
- data/projects/manifest/src/{foobara/manifest/array.rb → array.rb} +1 -1
- data/projects/manifest/src/{foobara/manifest/attributes.rb → attributes.rb} +1 -1
- data/projects/manifest/src/{foobara/manifest/base_manifest.rb → base_manifest.rb} +14 -6
- data/projects/manifest/src/{foobara/manifest/command.rb → command.rb} +3 -3
- data/projects/manifest/src/{foobara/manifest/detached_entity.rb → detached_entity.rb} +1 -1
- data/projects/manifest/src/{foobara/manifest/model.rb → model.rb} +1 -1
- data/projects/manifest/src/{foobara/manifest/possible_error.rb → possible_error.rb} +2 -0
- data/projects/manifest/src/{foobara/manifest/type.rb → type.rb} +4 -4
- data/projects/manifest/src/{foobara/manifest/type_declaration.rb → type_declaration.rb} +5 -5
- data/projects/model_plumbing/lib/foobara/model_plumbing.rb +13 -0
- data/projects/{namespace/lib/foobara/namespace.rb → model_plumbing/src/model_plumbing.rb} +1 -1
- data/projects/{builtin_types → typesystem/projects/builtin_types}/lib/foobara/builtin_types.rb +5 -0
- data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_processors/element_type_declarations.rb +1 -3
- data/projects/{builtin_types → typesystem/projects/builtin_types}/src/builtin_types.rb +7 -5
- data/projects/{builtin_types → typesystem/projects/builtin_types}/src/email/transformers/downcase.rb +0 -2
- data/projects/typesystem/projects/callback/lib/foobara/callback.rb +3 -0
- data/projects/{callback → typesystem/projects/callback}/src/block/concerns/keyword_argumentable_block.rb +2 -0
- data/projects/{callback → typesystem/projects/callback}/src/block/concerns/type.rb +2 -0
- data/projects/{callback → typesystem/projects/callback}/src/set.rb +3 -1
- data/projects/{common → typesystem/projects/common}/lib/foobara/common.rb +2 -0
- data/projects/{common → typesystem/projects/common}/src/data_path.rb +1 -1
- data/projects/{common → typesystem/projects/common}/src/error.rb +33 -9
- data/projects/{common → typesystem/projects/common}/src/error_key.rb +1 -1
- data/projects/{common → typesystem/projects/common}/src/outcome.rb +9 -5
- data/projects/typesystem/projects/concerns/lib/foobara/concerns.rb +3 -0
- data/projects/typesystem/projects/delegate/lib/foobara/delegate.rb +6 -0
- data/projects/{delegate → typesystem/projects/delegate}/src/extensions/module.rb +4 -0
- data/projects/{domain → typesystem/projects/domain}/lib/foobara/domain.rb +2 -0
- data/projects/{domain → typesystem/projects/domain}/src/domain.rb +35 -7
- data/projects/{domain → typesystem/projects/domain}/src/domain_module_extension.rb +5 -155
- data/projects/{domain → typesystem/projects/domain}/src/extensions/foobara.rb +0 -10
- data/projects/{domain → typesystem/projects/domain}/src/global_domain.rb +1 -0
- data/projects/{domain → typesystem/projects/domain}/src/global_organization.rb +1 -0
- data/projects/{domain → typesystem/projects/domain}/src/is_manifestable.rb +1 -0
- data/projects/{domain → typesystem/projects/domain}/src/manifestable.rb +1 -0
- data/projects/{domain → typesystem/projects/domain}/src/module_extension.rb +14 -10
- data/projects/typesystem/projects/enumerated/lib/foobara/enumerated.rb +3 -0
- data/projects/{enumerated → typesystem/projects/enumerated}/src/accessors.rb +2 -0
- data/projects/typesystem/projects/namespace/lib/foobara/namespace.rb +6 -0
- data/projects/{namespace → typesystem/projects/namespace}/src/is_namespace.rb +1 -1
- data/projects/{namespace → typesystem/projects/namespace}/src/namespace/lookup_mode.rb +6 -0
- data/projects/{namespace → typesystem/projects/namespace}/src/namespace.rb +2 -0
- data/projects/{namespace → typesystem/projects/namespace}/src/namespace_helpers.rb +1 -0
- data/projects/typesystem/projects/project/lib/foobara/project.rb +10 -0
- data/projects/{foobara → typesystem/projects/project}/src/foobara.rb +1 -6
- data/projects/{foobara → typesystem/projects/project}/src/project.rb +3 -0
- data/projects/typesystem/projects/state_machine/lib/foobara/state_machine.rb +3 -0
- data/projects/{state_machine → typesystem/projects/state_machine}/src/callbacks.rb +37 -8
- data/projects/{state_machine → typesystem/projects/state_machine}/src/sugar.rb +2 -0
- data/projects/{state_machine → typesystem/projects/state_machine}/src/transition_log.rb +2 -0
- data/projects/{type_declarations → typesystem/projects/type_declarations}/lib/foobara/type_declarations.rb +10 -7
- data/projects/{type_declarations → typesystem/projects/type_declarations}/src/dsl/attributes.rb +2 -0
- data/projects/{type_declarations → typesystem/projects/type_declarations}/src/error_extension.rb +9 -1
- data/projects/{type_declarations → typesystem/projects/type_declarations}/src/lazy_element_types/array.rb +2 -0
- data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declaration_handler.rb +21 -5
- data/projects/{type_declarations → typesystem/projects/type_declarations}/src/with_registries.rb +31 -8
- data/projects/{types → typesystem/projects/types}/lib/foobara/types.rb +2 -0
- data/projects/{types → typesystem/projects/types}/src/type/concerns/supported_processor_registration.rb +2 -0
- data/projects/{types → typesystem/projects/types}/src/type.rb +72 -68
- data/projects/typesystem/projects/value/lib/foobara/value.rb +12 -0
- data/projects/{value → typesystem/projects/value}/src/processor.rb +19 -6
- data/projects/typesystem/spec/builtin_types/allow_nil_spec.rb +138 -0
- data/projects/typesystem/spec/builtin_types/array_spec.rb +140 -0
- data/projects/typesystem/spec/builtin_types/associative_array_spec.rb +228 -0
- data/projects/typesystem/spec/builtin_types/attributes_spec.rb +453 -0
- data/projects/typesystem/spec/builtin_types/big_decimal_spec.rb +42 -0
- data/projects/typesystem/spec/builtin_types/boolean_spec.rb +43 -0
- data/projects/typesystem/spec/builtin_types/class_type_desugarizer_spec.rb +17 -0
- data/projects/typesystem/spec/builtin_types/custom_type_spec.rb +430 -0
- data/projects/typesystem/spec/builtin_types/date_spec.rb +37 -0
- data/projects/typesystem/spec/builtin_types/datetime_spec.rb +49 -0
- data/projects/typesystem/spec/builtin_types/email_spec.rb +44 -0
- data/projects/typesystem/spec/builtin_types/float_spec.rb +59 -0
- data/projects/typesystem/spec/builtin_types/instance_of_spec.rb +75 -0
- data/projects/typesystem/spec/builtin_types/one_of_spec.rb +73 -0
- data/projects/typesystem/spec/builtin_types/string_spec.rb +117 -0
- data/projects/typesystem/spec/builtin_types/symbol_spec.rb +24 -0
- data/projects/typesystem/spec/builtin_types/tuple_spec.rb +125 -0
- data/projects/typesystem/spec/callback/callback_spec.rb +155 -0
- data/projects/typesystem/spec/callback/registry/conditioned_spec.rb +152 -0
- data/projects/typesystem/spec/callback/registry/multiple_action_spec.rb +144 -0
- data/projects/typesystem/spec/callback/registry/single_action_spec.rb +114 -0
- data/projects/typesystem/spec/common/data_path_spec.rb +270 -0
- data/projects/typesystem/spec/common/error_collection_spec.rb +77 -0
- data/projects/typesystem/spec/common/error_key_spec.rb +56 -0
- data/projects/typesystem/spec/common/outcome_spec.rb +65 -0
- data/projects/typesystem/spec/common/possible_error_spec.rb +17 -0
- data/projects/typesystem/spec/concerns/concern_spec.rb +122 -0
- data/projects/typesystem/spec/enumerated/accessors_spec.rb +182 -0
- data/projects/typesystem/spec/enumerated/enumerated_spec.rb +32 -0
- data/projects/typesystem/spec/enumerated/values_spec.rb +67 -0
- data/projects/typesystem/spec/foobara/foobara_spec.rb +45 -0
- data/projects/typesystem/spec/namespace/ambiguous_registry_spec.rb +70 -0
- data/projects/typesystem/spec/namespace/foobara_simulation_spec.rb +254 -0
- data/projects/typesystem/spec/namespace/is_namespace_spec.rb +103 -0
- data/projects/typesystem/spec/namespace/namespace_helpers_spec.rb +67 -0
- data/projects/typesystem/spec/namespace/namespace_spec.rb +335 -0
- data/projects/typesystem/spec/namespace/prefixless_registry_spec.rb +30 -0
- data/projects/typesystem/spec/namespace/unambiguous_registry_spec.rb +50 -0
- data/projects/typesystem/spec/spec_helper.rb +50 -0
- data/projects/typesystem/spec/state_machine/callbacks_spec.rb +144 -0
- data/projects/typesystem/spec/state_machine/state_machine_spec.rb +224 -0
- data/projects/typesystem/spec/state_machine/target_attribute_spec.rb +46 -0
- data/projects/typesystem/spec/support/rubyprof.rb +32 -0
- data/projects/typesystem/spec/support/term_trap.rb +6 -0
- data/projects/typesystem/spec/type_declarations/attributes_spec.rb +14 -0
- data/projects/typesystem/spec/type_declarations/attributes_transformer_spec.rb +95 -0
- data/projects/typesystem/spec/type_declarations/dsl/attributes_spec.rb +107 -0
- data/projects/typesystem/spec/type_declarations/handlers/extend_registered_type_declaration_spec.rb +13 -0
- data/projects/typesystem/spec/type_declarations/sensitive_type_removers_spec.rb +210 -0
- data/projects/typesystem/spec/type_declarations/type_builder_spec.rb +47 -0
- data/projects/typesystem/spec/type_declarations/type_declaration_spec.rb +252 -0
- data/projects/typesystem/spec/type_declarations/type_declarations_spec.rb +11 -0
- data/projects/typesystem/spec/type_declarations/typed_transformer_spec.rb +65 -0
- data/projects/typesystem/spec/types/sensitive_spec.rb +36 -0
- data/projects/typesystem/spec/types/type_spec.rb +102 -0
- data/projects/typesystem/spec/value/caster_spec.rb +23 -0
- data/projects/typesystem/spec/value/processor/runner_spec.rb +34 -0
- data/projects/typesystem/spec/value/processor/selection_spec.rb +71 -0
- data/projects/typesystem/spec/value/processor_spec.rb +76 -0
- data/projects/typesystem/spec/value/transformer_spec.rb +27 -0
- data/version.rb +1 -1
- metadata +488 -365
- data/projects/callback/lib/foobara/callback.rb +0 -1
- data/projects/concerns/lib/foobara/concerns.rb +0 -1
- data/projects/delegate/lib/foobara/delegate.rb +0 -1
- data/projects/entity/src/extensions/domain/domain_module_extension.rb +0 -15
- data/projects/enumerated/lib/foobara/enumerated.rb +0 -1
- data/projects/foobara/lib/foobara/all.rb +0 -48
- data/projects/in_memory_crud_driver_minimal/lib/foobara/in_memory_crud_driver_minimal.rb +0 -1
- data/projects/state_machine/lib/foobara/state_machine.rb +0 -1
- data/projects/value/lib/foobara/value.rb +0 -7
- data/projects/weak_object_set/lib/foobara/weak_object_set.rb +0 -3
- /data/{projects/foobara/lib → lib}/foobara.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/aliases.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/associations.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/attributes.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/equality.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/initialization.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/persistence.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/reflection.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/concerns/serialize.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/detached_entity.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/detached_entity_type.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/builtin_types/detached_entity/casters/hash.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/builtin_types/detached_entity/casters/primary_key.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/builtin_types/detached_entity.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/attributes_handler_desugarizer.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/hash_desugarizer.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/model_class_desugarizer.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/primary_key_desugarizer.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/validate_primary_key_is_symbol.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/validate_primary_key_present.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration/validate_primary_key_references_attribute.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/extensions/type_declarations/handlers/extend_detached_entity_type_declaration.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/remove_sensitive_values_transformer_extensions.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/sensitive_type_removers/detached_entity.rb +0 -0
- /data/projects/{detached_entity → entities/projects/detached_entity}/src/sensitive_value_removers/detached_entity.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/association_depth.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/attributes.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/initialization.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/mutations.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/persistence.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/queries.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/concerns/types.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/entity.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity/casters/hash.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity/casters/primary_key.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity/casters/record_from_closed_transaction.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity/casters/record_from_current_transaction.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity/validators/model_instance_is_valid.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/builtin_types/entity.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/attributes_handler_desugarizer.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/hash_desugarizer.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/model_class_desugarizer.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/primary_key_desugarizer.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_is_symbol.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_present.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration/validate_primary_key_references_attribute.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/extensions/type_declarations/handlers/extend_entity_type_declaration.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/new_prepend.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/sensitive_type_removers/entity.rb +0 -0
- /data/projects/{entity → entities/projects/entity}/src/sensitive_value_removers/entity.rb +0 -0
- /data/projects/{in_memory_crud_driver → entities/projects/in_memory_crud_driver}/src/in_memory.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/concerns/aliases.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/concerns/reflection.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/builtin_types/model/casters/hash.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/builtin_types/model/supported_transformers/mutable.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/builtin_types/model/validators/model_instance_is_valid.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/array_with_symbolic_elements.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/attributes_handler_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/delegates_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/delegates_validator.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/hash_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/model_class_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/move_private_from_element_types_to_root.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/symbolize_private.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration/valid_attribute_names.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_model_type_declaration.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/hash_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/model_class_type_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/mutable_validator.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/normalize_mutable_attributes_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/extend_registered_model_type_declaration.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/handlers/registered_type_declaration/model_class_desugarizer.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/extensions/type_declarations/lazy_element_types/model.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/sensitive_type_removers/extended_model.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/sensitive_type_removers/model.rb +0 -0
- /data/projects/{model → entities/projects/model}/src/sensitive_value_removers/model.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_attributes_crud_driver.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base/table.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction/concerns/entity_callback_handling.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction/concerns/state_transitions.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base/transaction_table/concerns/queries.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/entity_base.rb +0 -0
- /data/projects/{persistence → entities/projects/persistence}/src/persistence.rb +0 -0
- /data/projects/{weak_object_set → entities/projects/weak_object_set}/src/weak_object_set.rb +0 -0
- /data/projects/manifest/src/{foobara/manifest/domain.rb → domain.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/entity.rb → entity.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/error.rb → error.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/organization.rb → organization.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/processor.rb → processor.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/processor_class.rb → processor_class.rb} +0 -0
- /data/projects/manifest/src/{foobara/manifest/root_manifest.rb → root_manifest.rb} +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/README.md +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/array/casters/arrayable.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/array/supported_processors/element_type_declaration.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/array/supported_validators/size.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/associative_array/casters/array.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/associative_array/supported_processors/key_type_declaration.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/associative_array/supported_processors/value_type_declaration.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/atomic_duck.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/casters/array.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/casters/hash.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/desugarizers/move_defaults_from_element_types_to_root.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/desugarizers/symbolize_defaults.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/hash_with_symbolic_keys.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_transformers/defaults/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/valid_attribute_names.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_transformers/defaults.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/desugarizers/alphabetize_required.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/desugarizers/move_required_from_element_types_to_root.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/array_of_symbols.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_validators/required/type_declaration_extension/extend_attributes_type_declaration/type_declaration_validators/array_with_valid_attribute_names.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/supported_validators/required.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/attributes/transformers/remove_unexpected_attributes.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/big_decimal/casters/integer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/big_decimal/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/boolean/casters/numeric.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/boolean/casters/string_or_symbol.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/date/casters/hash.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/date/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/datetime/casters/date.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/datetime/casters/hash.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/datetime/casters/seconds_since_epoch.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/datetime/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_casters/allow_nil.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/class_desugarizer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/class_type_desugarizer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/instance_of_class_desugarizer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/instance_of_symbol_desugarizer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of/type_declaration_extension/extend_registered_type_declaration/type_declaration_validators/is_valid_class.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/instance_of.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/one_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/cast_one_of.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/one_of/type_declaration_extension/extend_registered_type_declaration/desugarizers/module_desugarizer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck/supported_validators/one_of.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duck.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/duckture.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/email/validator_base.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/float/casters/integer.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/float/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/integer/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/number/supported_validators/max.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/number/supported_validators/min.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/string/casters/numeric.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/string/casters/symbol.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/string/supported_transformers/downcase.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/string/supported_validators/matches.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/string/supported_validators/max_length.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/symbol/casters/string.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/tuple/supported_processors/element_type_declarations/type_declaration_extension/extend_tuple_type_declaration/desugarizers/set_size.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/tuple/supported_processors/element_type_declarations/type_declaration_extension/extend_tuple_type_declaration/type_declaration_validators/size_matches.rb +0 -0
- /data/projects/{builtin_types → typesystem/projects/builtin_types}/src/tuple/supported_processors/element_type_declarations.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/after.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/around.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/before.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/concerns/block_parameter_not_allowed.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/concerns/block_parameter_required.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/concerns/single_argument_block.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block/error.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/block.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/base.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/chained_conditioned.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/chained_multiple_action.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/conditioned.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/joined_conditioned.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/multiple_action.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/registry/single_action.rb +0 -0
- /data/projects/{callback → typesystem/projects/callback}/src/runner.rb +0 -0
- /data/projects/{common → typesystem/projects/common}/src/error_collection.rb +0 -0
- /data/projects/{common → typesystem/projects/common}/src/possible_error.rb +0 -0
- /data/projects/{common → typesystem/projects/common}/src/runtime_error.rb +0 -0
- /data/projects/{concerns → typesystem/projects/concerns}/src/concern.rb +0 -0
- /data/projects/{domain → typesystem/projects/domain}/src/organization.rb +0 -0
- /data/projects/{domain → typesystem/projects/domain}/src/organization_module_extension.rb +0 -0
- /data/projects/{enumerated → typesystem/projects/enumerated}/src/enumerated.rb +0 -0
- /data/projects/{enumerated → typesystem/projects/enumerated}/src/values.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/ambiguous_registry.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/base_registry.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/extensions/module.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/prefixless_registry.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/scoped.rb +0 -0
- /data/projects/{namespace → typesystem/projects/namespace}/src/unambiguous_registry.rb +0 -0
- /data/projects/{state_machine → typesystem/projects/state_machine}/src/log_entry.rb +0 -0
- /data/projects/{state_machine → typesystem/projects/state_machine}/src/state_machine.rb +0 -0
- /data/projects/{state_machine → typesystem/projects/state_machine}/src/transitions.rb +0 -0
- /data/projects/{state_machine → typesystem/projects/state_machine}/src/validations.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes_transformers/from_yaml.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes_transformers/only.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes_transformers/reject.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes_transformers/set.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/attributes_transformers.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/caster.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/desugarizer_pipeline.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/element_processor.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_array_type_declaration/array_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_array_type_declaration/element_type_declaration_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_array_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_array_type_declaration/type_set_to_array_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_array_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_associative_array_type_declaration/key_type_declaration_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_associative_array_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_associative_array_type_declaration/value_type_declaration_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_associative_array_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_attributes_type_declaration/dsl_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_attributes_type_declaration/element_type_declarations_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_attributes_type_declaration/hash_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_attributes_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_attributes_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_registered_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_registered_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_tuple_type_declaration/array_desugarizer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_tuple_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/extend_tuple_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/registered_type_declaration/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/handlers/registered_type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/lazy_element_types/attributes.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/lazy_element_types/hash.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/lazy_element_types/tuple.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/processor.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/remove_sensitive_values_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/sensitive_type_remover.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/sensitive_type_removers/array.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/sensitive_type_removers/attributes.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/sensitive_value_removers/array.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/sensitive_value_removers/attributes.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/to_type_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_builder.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declaration.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declaration_error.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declaration_handler_registry.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declaration_validator.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/type_declarations.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/typed_transformer.rb +0 -0
- /data/projects/{type_declarations → typesystem/projects/type_declarations}/src/validator.rb +0 -0
- /data/projects/{types → typesystem/projects/types}/src/element_processor.rb +0 -0
- /data/projects/{types → typesystem/projects/types}/src/extensions/error.rb +0 -0
- /data/projects/{types → typesystem/projects/types}/src/type/concerns/reflection.rb +0 -0
- /data/projects/{types → typesystem/projects/types}/src/types.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/caster.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/data_error.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/mutator.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/processor/casting.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/processor/multi.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/processor/pipeline.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/processor/runner.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/processor/selection.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/transformer.rb +0 -0
- /data/projects/{value → typesystem/projects/value}/src/validator.rb +0 -0
|
@@ -0,0 +1,1662 @@
|
|
|
1
|
+
---
|
|
2
|
+
:command:
|
|
3
|
+
:Foobara::Auth::Login:
|
|
4
|
+
:scoped_path:
|
|
5
|
+
- Login
|
|
6
|
+
:scoped_name: Login
|
|
7
|
+
:scoped_short_name: Login
|
|
8
|
+
:scoped_prefix:
|
|
9
|
+
:scoped_full_path:
|
|
10
|
+
- Foobara
|
|
11
|
+
- Auth
|
|
12
|
+
- Login
|
|
13
|
+
:scoped_full_name: Foobara::Auth::Login
|
|
14
|
+
:scoped_category: :command
|
|
15
|
+
:reference: Foobara::Auth::Login
|
|
16
|
+
:domain: Foobara::Auth
|
|
17
|
+
:organization: Foobara
|
|
18
|
+
:parent:
|
|
19
|
+
- :domain
|
|
20
|
+
- Foobara::Auth
|
|
21
|
+
:types_depended_on:
|
|
22
|
+
- Foobara::Auth::Types::Role
|
|
23
|
+
- Foobara::Auth::Types::Secret
|
|
24
|
+
- Foobara::Auth::Types::Token
|
|
25
|
+
- Foobara::Auth::Types::User
|
|
26
|
+
- array
|
|
27
|
+
- attributes
|
|
28
|
+
- duck
|
|
29
|
+
- email
|
|
30
|
+
- integer
|
|
31
|
+
- string
|
|
32
|
+
- symbol
|
|
33
|
+
:inputs_types_depended_on:
|
|
34
|
+
- Foobara::Auth::Types::User
|
|
35
|
+
- array
|
|
36
|
+
- attributes
|
|
37
|
+
- duck
|
|
38
|
+
- integer
|
|
39
|
+
- string
|
|
40
|
+
- symbol
|
|
41
|
+
:result_types_depended_on:
|
|
42
|
+
- array
|
|
43
|
+
- attributes
|
|
44
|
+
- duck
|
|
45
|
+
- string
|
|
46
|
+
- symbol
|
|
47
|
+
:errors_types_depended_on:
|
|
48
|
+
- Foobara::Auth::Types::Role
|
|
49
|
+
- Foobara::Auth::Types::Secret
|
|
50
|
+
- Foobara::Auth::Types::Token
|
|
51
|
+
- array
|
|
52
|
+
- attributes
|
|
53
|
+
- duck
|
|
54
|
+
- email
|
|
55
|
+
- integer
|
|
56
|
+
- string
|
|
57
|
+
- symbol
|
|
58
|
+
:possible_errors:
|
|
59
|
+
data.cannot_cast:
|
|
60
|
+
:category: :data
|
|
61
|
+
:symbol: :cannot_cast
|
|
62
|
+
:key: data.cannot_cast
|
|
63
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
64
|
+
:processor_class: Foobara::Value::Processor::Casting
|
|
65
|
+
:processor_manifest_data:
|
|
66
|
+
:casting:
|
|
67
|
+
:cast_to: &5
|
|
68
|
+
:type: :attributes
|
|
69
|
+
:element_type_declarations: &3
|
|
70
|
+
:user:
|
|
71
|
+
:allow_nil: true
|
|
72
|
+
:type: :Foobara::Auth::Types::User
|
|
73
|
+
:username:
|
|
74
|
+
:allow_nil: true
|
|
75
|
+
:type: :string
|
|
76
|
+
:email:
|
|
77
|
+
:allow_nil: true
|
|
78
|
+
:type: :string
|
|
79
|
+
:username_or_email:
|
|
80
|
+
:allow_nil: true
|
|
81
|
+
:type: :string
|
|
82
|
+
:plaintext_password: :string
|
|
83
|
+
:token_ttl: :integer
|
|
84
|
+
:refresh_token_ttl: :integer
|
|
85
|
+
:required: &1
|
|
86
|
+
- :plaintext_password
|
|
87
|
+
:defaults:
|
|
88
|
+
:token_ttl: 1800
|
|
89
|
+
:refresh_token_ttl: 604800
|
|
90
|
+
data.email.cannot_cast:
|
|
91
|
+
:path:
|
|
92
|
+
- :email
|
|
93
|
+
:category: :data
|
|
94
|
+
:symbol: :cannot_cast
|
|
95
|
+
:key: data.email.cannot_cast
|
|
96
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
97
|
+
:processor_manifest_data: &4
|
|
98
|
+
:casting:
|
|
99
|
+
:cast_to:
|
|
100
|
+
:allow_nil: true
|
|
101
|
+
:type: :string
|
|
102
|
+
data.missing_required_attribute:
|
|
103
|
+
:category: :data
|
|
104
|
+
:symbol: :missing_required_attribute
|
|
105
|
+
:key: data.missing_required_attribute
|
|
106
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
107
|
+
:processor_class: Foobara::Value::Processor::Pipeline
|
|
108
|
+
:processor_manifest_data:
|
|
109
|
+
:pipeline:
|
|
110
|
+
data.plaintext_password.cannot_cast:
|
|
111
|
+
:path:
|
|
112
|
+
- :plaintext_password
|
|
113
|
+
:category: :data
|
|
114
|
+
:symbol: :cannot_cast
|
|
115
|
+
:key: data.plaintext_password.cannot_cast
|
|
116
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
117
|
+
:processor_manifest_data: &6
|
|
118
|
+
:casting:
|
|
119
|
+
:cast_to: :string
|
|
120
|
+
data.plaintext_password.missing_required_attribute:
|
|
121
|
+
:path:
|
|
122
|
+
- :plaintext_password
|
|
123
|
+
:category: :data
|
|
124
|
+
:symbol: :missing_required_attribute
|
|
125
|
+
:key: data.plaintext_password.missing_required_attribute
|
|
126
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
127
|
+
:processor_class: attributes::SupportedValidators::Required
|
|
128
|
+
:processor_manifest_data:
|
|
129
|
+
:required: *1
|
|
130
|
+
data.refresh_token_ttl.cannot_cast:
|
|
131
|
+
:path:
|
|
132
|
+
- :refresh_token_ttl
|
|
133
|
+
:category: :data
|
|
134
|
+
:symbol: :cannot_cast
|
|
135
|
+
:key: data.refresh_token_ttl.cannot_cast
|
|
136
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
137
|
+
:processor_manifest_data: &2
|
|
138
|
+
:casting:
|
|
139
|
+
:cast_to: :integer
|
|
140
|
+
data.token_ttl.cannot_cast:
|
|
141
|
+
:path:
|
|
142
|
+
- :token_ttl
|
|
143
|
+
:category: :data
|
|
144
|
+
:symbol: :cannot_cast
|
|
145
|
+
:key: data.token_ttl.cannot_cast
|
|
146
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
147
|
+
:processor_manifest_data: *2
|
|
148
|
+
data.unexpected_attributes:
|
|
149
|
+
:category: :data
|
|
150
|
+
:symbol: :unexpected_attributes
|
|
151
|
+
:key: data.unexpected_attributes
|
|
152
|
+
:error: attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
153
|
+
:processor_class: attributes::SupportedProcessors::ElementTypeDeclarations
|
|
154
|
+
:processor_manifest_data:
|
|
155
|
+
:element_type_declarations: *3
|
|
156
|
+
data.user.cannot_cast:
|
|
157
|
+
:path:
|
|
158
|
+
- :user
|
|
159
|
+
:category: :data
|
|
160
|
+
:symbol: :cannot_cast
|
|
161
|
+
:key: data.user.cannot_cast
|
|
162
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
163
|
+
:processor_manifest_data:
|
|
164
|
+
:casting:
|
|
165
|
+
:cast_to:
|
|
166
|
+
:allow_nil: true
|
|
167
|
+
:type: :Foobara::Auth::Types::User
|
|
168
|
+
data.username.cannot_cast:
|
|
169
|
+
:path:
|
|
170
|
+
- :username
|
|
171
|
+
:category: :data
|
|
172
|
+
:symbol: :cannot_cast
|
|
173
|
+
:key: data.username.cannot_cast
|
|
174
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
175
|
+
:processor_manifest_data: *4
|
|
176
|
+
data.username_or_email.cannot_cast:
|
|
177
|
+
:path:
|
|
178
|
+
- :username_or_email
|
|
179
|
+
:category: :data
|
|
180
|
+
:symbol: :cannot_cast
|
|
181
|
+
:key: data.username_or_email.cannot_cast
|
|
182
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
183
|
+
:processor_manifest_data: *4
|
|
184
|
+
foobara::auth::find_user>runtime.user_not_found:
|
|
185
|
+
:runtime_path:
|
|
186
|
+
- :foobara::auth::find_user
|
|
187
|
+
:category: :runtime
|
|
188
|
+
:symbol: :user_not_found
|
|
189
|
+
:key: foobara::auth::find_user>runtime.user_not_found
|
|
190
|
+
:error: Foobara::Auth::FindUser::UserNotFoundError
|
|
191
|
+
runtime.invalid_password:
|
|
192
|
+
:category: :runtime
|
|
193
|
+
:symbol: :invalid_password
|
|
194
|
+
:key: runtime.invalid_password
|
|
195
|
+
:error: Foobara::Auth::Login::InvalidPasswordError
|
|
196
|
+
runtime.no_user_id_email_or_username_given:
|
|
197
|
+
:category: :runtime
|
|
198
|
+
:symbol: :no_user_id_email_or_username_given
|
|
199
|
+
:key: runtime.no_user_id_email_or_username_given
|
|
200
|
+
:error: Foobara::Auth::Login::NoUserIdEmailOrUsernameGivenError
|
|
201
|
+
:depends_on:
|
|
202
|
+
- Foobara::Auth::CreateToken
|
|
203
|
+
- Foobara::Auth::FindUser
|
|
204
|
+
- Foobara::Auth::VerifyPassword
|
|
205
|
+
:inputs_type: *5
|
|
206
|
+
:description:
|
|
207
|
+
:result_type:
|
|
208
|
+
:type: :attributes
|
|
209
|
+
:element_type_declarations:
|
|
210
|
+
:access_token: :string
|
|
211
|
+
:refresh_token: :string
|
|
212
|
+
:required:
|
|
213
|
+
- :access_token
|
|
214
|
+
- :refresh_token
|
|
215
|
+
:serializers:
|
|
216
|
+
- Foobara::CommandConnectors::Serializers::ErrorsSerializer
|
|
217
|
+
- Foobara::CommandConnectors::Serializers::AtomicSerializer
|
|
218
|
+
- Foobara::CommandConnectors::Serializers::JsonSerializer
|
|
219
|
+
:Foobara::Auth::RefreshLogin:
|
|
220
|
+
:scoped_path:
|
|
221
|
+
- RefreshLogin
|
|
222
|
+
:scoped_name: RefreshLogin
|
|
223
|
+
:scoped_short_name: RefreshLogin
|
|
224
|
+
:scoped_prefix:
|
|
225
|
+
:scoped_full_path:
|
|
226
|
+
- Foobara
|
|
227
|
+
- Auth
|
|
228
|
+
- RefreshLogin
|
|
229
|
+
:scoped_full_name: Foobara::Auth::RefreshLogin
|
|
230
|
+
:scoped_category: :command
|
|
231
|
+
:reference: Foobara::Auth::RefreshLogin
|
|
232
|
+
:domain: Foobara::Auth
|
|
233
|
+
:organization: Foobara
|
|
234
|
+
:parent:
|
|
235
|
+
- :domain
|
|
236
|
+
- Foobara::Auth
|
|
237
|
+
:types_depended_on:
|
|
238
|
+
- Foobara::Auth::Types::User
|
|
239
|
+
- Foobara::Auth::token_state
|
|
240
|
+
- array
|
|
241
|
+
- attributes
|
|
242
|
+
- duck
|
|
243
|
+
- integer
|
|
244
|
+
- string
|
|
245
|
+
- symbol
|
|
246
|
+
:inputs_types_depended_on:
|
|
247
|
+
- Foobara::Auth::Types::User
|
|
248
|
+
- array
|
|
249
|
+
- attributes
|
|
250
|
+
- duck
|
|
251
|
+
- integer
|
|
252
|
+
- string
|
|
253
|
+
- symbol
|
|
254
|
+
:result_types_depended_on:
|
|
255
|
+
- array
|
|
256
|
+
- attributes
|
|
257
|
+
- duck
|
|
258
|
+
- string
|
|
259
|
+
- symbol
|
|
260
|
+
:errors_types_depended_on:
|
|
261
|
+
- Foobara::Auth::token_state
|
|
262
|
+
- array
|
|
263
|
+
- attributes
|
|
264
|
+
- duck
|
|
265
|
+
- string
|
|
266
|
+
- symbol
|
|
267
|
+
:possible_errors:
|
|
268
|
+
data.cannot_cast:
|
|
269
|
+
:category: :data
|
|
270
|
+
:symbol: :cannot_cast
|
|
271
|
+
:key: data.cannot_cast
|
|
272
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
273
|
+
:processor_class: Foobara::Value::Processor::Casting
|
|
274
|
+
:processor_manifest_data:
|
|
275
|
+
:casting:
|
|
276
|
+
:cast_to: &9
|
|
277
|
+
:type: :attributes
|
|
278
|
+
:element_type_declarations: &8
|
|
279
|
+
:user: :Foobara::Auth::Types::User
|
|
280
|
+
:refresh_token_text: :string
|
|
281
|
+
:token_ttl: :integer
|
|
282
|
+
:refresh_token_ttl: :integer
|
|
283
|
+
:required: &7
|
|
284
|
+
- :user
|
|
285
|
+
- :refresh_token_text
|
|
286
|
+
:defaults:
|
|
287
|
+
:token_ttl: 1800
|
|
288
|
+
:refresh_token_ttl: 604800
|
|
289
|
+
data.missing_required_attribute:
|
|
290
|
+
:category: :data
|
|
291
|
+
:symbol: :missing_required_attribute
|
|
292
|
+
:key: data.missing_required_attribute
|
|
293
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
294
|
+
:processor_class: Foobara::Value::Processor::Pipeline
|
|
295
|
+
:processor_manifest_data:
|
|
296
|
+
:pipeline:
|
|
297
|
+
data.refresh_token_text.cannot_cast:
|
|
298
|
+
:path:
|
|
299
|
+
- :refresh_token_text
|
|
300
|
+
:category: :data
|
|
301
|
+
:symbol: :cannot_cast
|
|
302
|
+
:key: data.refresh_token_text.cannot_cast
|
|
303
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
304
|
+
:processor_manifest_data: *6
|
|
305
|
+
data.refresh_token_text.missing_required_attribute:
|
|
306
|
+
:path:
|
|
307
|
+
- :refresh_token_text
|
|
308
|
+
:category: :data
|
|
309
|
+
:symbol: :missing_required_attribute
|
|
310
|
+
:key: data.refresh_token_text.missing_required_attribute
|
|
311
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
312
|
+
:processor_class: attributes::SupportedValidators::Required
|
|
313
|
+
:processor_manifest_data:
|
|
314
|
+
:required: *7
|
|
315
|
+
data.refresh_token_ttl.cannot_cast:
|
|
316
|
+
:path:
|
|
317
|
+
- :refresh_token_ttl
|
|
318
|
+
:category: :data
|
|
319
|
+
:symbol: :cannot_cast
|
|
320
|
+
:key: data.refresh_token_ttl.cannot_cast
|
|
321
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
322
|
+
:processor_manifest_data: *2
|
|
323
|
+
data.token_ttl.cannot_cast:
|
|
324
|
+
:path:
|
|
325
|
+
- :token_ttl
|
|
326
|
+
:category: :data
|
|
327
|
+
:symbol: :cannot_cast
|
|
328
|
+
:key: data.token_ttl.cannot_cast
|
|
329
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
330
|
+
:processor_manifest_data: *2
|
|
331
|
+
data.unexpected_attributes:
|
|
332
|
+
:category: :data
|
|
333
|
+
:symbol: :unexpected_attributes
|
|
334
|
+
:key: data.unexpected_attributes
|
|
335
|
+
:error: attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
336
|
+
:processor_class: attributes::SupportedProcessors::ElementTypeDeclarations
|
|
337
|
+
:processor_manifest_data:
|
|
338
|
+
:element_type_declarations: *8
|
|
339
|
+
data.user.cannot_cast:
|
|
340
|
+
:path:
|
|
341
|
+
- :user
|
|
342
|
+
:category: :data
|
|
343
|
+
:symbol: :cannot_cast
|
|
344
|
+
:key: data.user.cannot_cast
|
|
345
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
346
|
+
:processor_manifest_data: &24
|
|
347
|
+
:casting:
|
|
348
|
+
:cast_to:
|
|
349
|
+
:type: :entity
|
|
350
|
+
:name: Types::User
|
|
351
|
+
:model_module: Foobara::Auth
|
|
352
|
+
:model_class: Foobara::Auth::Types::User
|
|
353
|
+
:model_base_class: Foobara::Entity
|
|
354
|
+
:attributes_declaration: &23
|
|
355
|
+
:type: :attributes
|
|
356
|
+
:element_type_declarations:
|
|
357
|
+
:id: :integer
|
|
358
|
+
:username: :string
|
|
359
|
+
:email: :email
|
|
360
|
+
:roles:
|
|
361
|
+
:type: :array
|
|
362
|
+
:element_type_declaration: :Foobara::Auth::Types::Role
|
|
363
|
+
:api_keys:
|
|
364
|
+
:type: :array
|
|
365
|
+
:element_type_declaration: :Foobara::Auth::Types::Token
|
|
366
|
+
:refresh_tokens:
|
|
367
|
+
:type: :array
|
|
368
|
+
:element_type_declaration: :Foobara::Auth::Types::Token
|
|
369
|
+
:password_secret:
|
|
370
|
+
:allow_nil: true
|
|
371
|
+
:type: :Foobara::Auth::Types::Secret
|
|
372
|
+
:required:
|
|
373
|
+
- :username
|
|
374
|
+
- :email
|
|
375
|
+
:defaults:
|
|
376
|
+
:roles: []
|
|
377
|
+
:api_keys: []
|
|
378
|
+
:refresh_tokens: []
|
|
379
|
+
:primary_key: :id
|
|
380
|
+
data.user.missing_required_attribute:
|
|
381
|
+
:path:
|
|
382
|
+
- :user
|
|
383
|
+
:category: :data
|
|
384
|
+
:symbol: :missing_required_attribute
|
|
385
|
+
:key: data.user.missing_required_attribute
|
|
386
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
387
|
+
:processor_class: attributes::SupportedValidators::Required
|
|
388
|
+
:processor_manifest_data:
|
|
389
|
+
:required: *7
|
|
390
|
+
foobara::auth::verify_token>runtime.expired_token:
|
|
391
|
+
:runtime_path:
|
|
392
|
+
- :foobara::auth::verify_token
|
|
393
|
+
:category: :runtime
|
|
394
|
+
:symbol: :expired_token
|
|
395
|
+
:key: foobara::auth::verify_token>runtime.expired_token
|
|
396
|
+
:error: Foobara::Auth::VerifyToken::ExpiredTokenError
|
|
397
|
+
foobara::auth::verify_token>runtime.inactive_token:
|
|
398
|
+
:runtime_path:
|
|
399
|
+
- :foobara::auth::verify_token
|
|
400
|
+
:category: :runtime
|
|
401
|
+
:symbol: :inactive_token
|
|
402
|
+
:key: foobara::auth::verify_token>runtime.inactive_token
|
|
403
|
+
:error: Foobara::Auth::VerifyToken::InactiveTokenError
|
|
404
|
+
runtime.invalid_refresh_token:
|
|
405
|
+
:category: :runtime
|
|
406
|
+
:symbol: :invalid_refresh_token
|
|
407
|
+
:key: runtime.invalid_refresh_token
|
|
408
|
+
:error: Foobara::Auth::RefreshLogin::InvalidRefreshTokenError
|
|
409
|
+
runtime.refresh_token_not_owned_by_user:
|
|
410
|
+
:category: :runtime
|
|
411
|
+
:symbol: :refresh_token_not_owned_by_user
|
|
412
|
+
:key: runtime.refresh_token_not_owned_by_user
|
|
413
|
+
:error: Foobara::Auth::RefreshLogin::RefreshTokenNotOwnedByUser
|
|
414
|
+
:depends_on:
|
|
415
|
+
- Foobara::Auth::CreateToken
|
|
416
|
+
- Foobara::Auth::VerifyToken
|
|
417
|
+
:inputs_type: *9
|
|
418
|
+
:description:
|
|
419
|
+
:result_type:
|
|
420
|
+
:type: :attributes
|
|
421
|
+
:element_type_declarations:
|
|
422
|
+
:access_token: :string
|
|
423
|
+
:refresh_token: :string
|
|
424
|
+
:required:
|
|
425
|
+
- :access_token
|
|
426
|
+
- :refresh_token
|
|
427
|
+
:serializers:
|
|
428
|
+
- Foobara::CommandConnectors::Serializers::ErrorsSerializer
|
|
429
|
+
- Foobara::CommandConnectors::Serializers::AtomicSerializer
|
|
430
|
+
- Foobara::CommandConnectors::Serializers::JsonSerializer
|
|
431
|
+
:Foobara::Auth::Register:
|
|
432
|
+
:scoped_path:
|
|
433
|
+
- Register
|
|
434
|
+
:scoped_name: Register
|
|
435
|
+
:scoped_short_name: Register
|
|
436
|
+
:scoped_prefix:
|
|
437
|
+
:scoped_full_path:
|
|
438
|
+
- Foobara
|
|
439
|
+
- Auth
|
|
440
|
+
- Register
|
|
441
|
+
:scoped_full_name: Foobara::Auth::Register
|
|
442
|
+
:scoped_category: :command
|
|
443
|
+
:reference: Foobara::Auth::Register
|
|
444
|
+
:domain: Foobara::Auth
|
|
445
|
+
:organization: Foobara
|
|
446
|
+
:parent:
|
|
447
|
+
- :domain
|
|
448
|
+
- Foobara::Auth
|
|
449
|
+
:types_depended_on:
|
|
450
|
+
- Foobara::Auth::Types::User
|
|
451
|
+
- array
|
|
452
|
+
- attributes
|
|
453
|
+
- duck
|
|
454
|
+
- email
|
|
455
|
+
- string
|
|
456
|
+
- symbol
|
|
457
|
+
:inputs_types_depended_on:
|
|
458
|
+
- array
|
|
459
|
+
- attributes
|
|
460
|
+
- duck
|
|
461
|
+
- email
|
|
462
|
+
- string
|
|
463
|
+
- symbol
|
|
464
|
+
:result_types_depended_on:
|
|
465
|
+
- Foobara::Auth::Types::User
|
|
466
|
+
:errors_types_depended_on:
|
|
467
|
+
- array
|
|
468
|
+
- attributes
|
|
469
|
+
- duck
|
|
470
|
+
- symbol
|
|
471
|
+
:possible_errors:
|
|
472
|
+
data.cannot_cast:
|
|
473
|
+
:category: :data
|
|
474
|
+
:symbol: :cannot_cast
|
|
475
|
+
:key: data.cannot_cast
|
|
476
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
477
|
+
:processor_class: Foobara::Value::Processor::Casting
|
|
478
|
+
:processor_manifest_data:
|
|
479
|
+
:casting:
|
|
480
|
+
:cast_to: &12
|
|
481
|
+
:type: :attributes
|
|
482
|
+
:element_type_declarations: &11
|
|
483
|
+
:username: :string
|
|
484
|
+
:email: :email
|
|
485
|
+
:plaintext_password:
|
|
486
|
+
:allow_nil: true
|
|
487
|
+
:type: :string
|
|
488
|
+
:required: &10
|
|
489
|
+
- :username
|
|
490
|
+
- :email
|
|
491
|
+
data.email.cannot_cast:
|
|
492
|
+
:path:
|
|
493
|
+
- :email
|
|
494
|
+
:category: :data
|
|
495
|
+
:symbol: :cannot_cast
|
|
496
|
+
:key: data.email.cannot_cast
|
|
497
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
498
|
+
:processor_manifest_data:
|
|
499
|
+
:casting:
|
|
500
|
+
:cast_to: :email
|
|
501
|
+
data.email.cannot_exceed64_characters:
|
|
502
|
+
:path:
|
|
503
|
+
- :email
|
|
504
|
+
:category: :data
|
|
505
|
+
:symbol: :cannot_exceed64_characters
|
|
506
|
+
:key: data.email.cannot_exceed64_characters
|
|
507
|
+
:error: email::Validators::CannotExceed64Characters::CannotExceed64CharactersError
|
|
508
|
+
:processor_manifest_data:
|
|
509
|
+
:cannot_exceed64_characters: true
|
|
510
|
+
data.email.cannot_have_multiple_at_signs:
|
|
511
|
+
:path:
|
|
512
|
+
- :email
|
|
513
|
+
:category: :data
|
|
514
|
+
:symbol: :cannot_have_multiple_at_signs
|
|
515
|
+
:key: data.email.cannot_have_multiple_at_signs
|
|
516
|
+
:error: email::Validators::CannotHaveMultipleAtSigns::CannotHaveMultipleAtSignsError
|
|
517
|
+
:processor_manifest_data:
|
|
518
|
+
:cannot_have_multiple_at_signs: true
|
|
519
|
+
data.email.domain_cannot_start_with_or_end_with_a_hyphen:
|
|
520
|
+
:path:
|
|
521
|
+
- :email
|
|
522
|
+
:category: :data
|
|
523
|
+
:symbol: :domain_cannot_start_with_or_end_with_a_hyphen
|
|
524
|
+
:key: data.email.domain_cannot_start_with_or_end_with_a_hyphen
|
|
525
|
+
:error: email::Validators::DomainCannotStartWithOrEndWithAHyphen::DomainCannotStartWithOrEndWithAHyphenError
|
|
526
|
+
:processor_manifest_data:
|
|
527
|
+
:domain_cannot_start_with_or_end_with_a_hyphen: true
|
|
528
|
+
data.email.first_part_cannot_be_empty:
|
|
529
|
+
:path:
|
|
530
|
+
- :email
|
|
531
|
+
:category: :data
|
|
532
|
+
:symbol: :first_part_cannot_be_empty
|
|
533
|
+
:key: data.email.first_part_cannot_be_empty
|
|
534
|
+
:error: email::Validators::FirstPartCannotBeEmpty::FirstPartCannotBeEmptyError
|
|
535
|
+
:processor_manifest_data:
|
|
536
|
+
:first_part_cannot_be_empty: true
|
|
537
|
+
data.email.first_part_cannot_start_with_or_end_with_a_dot_or_have_two_dots_in_a_row:
|
|
538
|
+
:path:
|
|
539
|
+
- :email
|
|
540
|
+
:category: :data
|
|
541
|
+
:symbol: :first_part_cannot_start_with_or_end_with_a_dot_or_have_two_dots_in_a_row
|
|
542
|
+
:key: data.email.first_part_cannot_start_with_or_end_with_a_dot_or_have_two_dots_in_a_row
|
|
543
|
+
:error: email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
544
|
+
:processor_manifest_data:
|
|
545
|
+
:first_part_cannot_start_with_or_end_with_a_dot_or_have_two_dots_in_a_row: true
|
|
546
|
+
data.email.first_part_has_bad_characters:
|
|
547
|
+
:path:
|
|
548
|
+
- :email
|
|
549
|
+
:category: :data
|
|
550
|
+
:symbol: :first_part_has_bad_characters
|
|
551
|
+
:key: data.email.first_part_has_bad_characters
|
|
552
|
+
:error: email::Validators::FirstPartHasBadCharacters::FirstPartHasBadCharactersError
|
|
553
|
+
:processor_manifest_data:
|
|
554
|
+
:first_part_has_bad_characters: true
|
|
555
|
+
data.email.missing_required_attribute:
|
|
556
|
+
:path:
|
|
557
|
+
- :email
|
|
558
|
+
:category: :data
|
|
559
|
+
:symbol: :missing_required_attribute
|
|
560
|
+
:key: data.email.missing_required_attribute
|
|
561
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
562
|
+
:processor_class: attributes::SupportedValidators::Required
|
|
563
|
+
:processor_manifest_data:
|
|
564
|
+
:required: *10
|
|
565
|
+
data.email.must_have_an_at_sign:
|
|
566
|
+
:path:
|
|
567
|
+
- :email
|
|
568
|
+
:category: :data
|
|
569
|
+
:symbol: :must_have_an_at_sign
|
|
570
|
+
:key: data.email.must_have_an_at_sign
|
|
571
|
+
:error: email::Validators::MustHaveAnAtSign::MustHaveAnAtSignError
|
|
572
|
+
:processor_manifest_data:
|
|
573
|
+
:must_have_an_at_sign: true
|
|
574
|
+
data.email.second_part_cannot_be_empty:
|
|
575
|
+
:path:
|
|
576
|
+
- :email
|
|
577
|
+
:category: :data
|
|
578
|
+
:symbol: :second_part_cannot_be_empty
|
|
579
|
+
:key: data.email.second_part_cannot_be_empty
|
|
580
|
+
:error: email::Validators::SecondPartCannotBeEmpty::SecondPartCannotBeEmptyError
|
|
581
|
+
:processor_manifest_data:
|
|
582
|
+
:second_part_cannot_be_empty: true
|
|
583
|
+
data.email.second_part_has_bad_characters:
|
|
584
|
+
:path:
|
|
585
|
+
- :email
|
|
586
|
+
:category: :data
|
|
587
|
+
:symbol: :second_part_has_bad_characters
|
|
588
|
+
:key: data.email.second_part_has_bad_characters
|
|
589
|
+
:error: email::Validators::SecondPartHasBadCharacters::SecondPartHasBadCharactersError
|
|
590
|
+
:processor_manifest_data:
|
|
591
|
+
:second_part_has_bad_characters: true
|
|
592
|
+
data.missing_required_attribute:
|
|
593
|
+
:category: :data
|
|
594
|
+
:symbol: :missing_required_attribute
|
|
595
|
+
:key: data.missing_required_attribute
|
|
596
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
597
|
+
:processor_class: Foobara::Value::Processor::Pipeline
|
|
598
|
+
:processor_manifest_data:
|
|
599
|
+
:pipeline:
|
|
600
|
+
data.plaintext_password.cannot_cast:
|
|
601
|
+
:path:
|
|
602
|
+
- :plaintext_password
|
|
603
|
+
:category: :data
|
|
604
|
+
:symbol: :cannot_cast
|
|
605
|
+
:key: data.plaintext_password.cannot_cast
|
|
606
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
607
|
+
:processor_manifest_data: *4
|
|
608
|
+
data.unexpected_attributes:
|
|
609
|
+
:category: :data
|
|
610
|
+
:symbol: :unexpected_attributes
|
|
611
|
+
:key: data.unexpected_attributes
|
|
612
|
+
:error: attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
613
|
+
:processor_class: attributes::SupportedProcessors::ElementTypeDeclarations
|
|
614
|
+
:processor_manifest_data:
|
|
615
|
+
:element_type_declarations: *11
|
|
616
|
+
data.username.cannot_cast:
|
|
617
|
+
:path:
|
|
618
|
+
- :username
|
|
619
|
+
:category: :data
|
|
620
|
+
:symbol: :cannot_cast
|
|
621
|
+
:key: data.username.cannot_cast
|
|
622
|
+
:error: Foobara::Value::Processor::Casting::CannotCastError
|
|
623
|
+
:processor_manifest_data: *6
|
|
624
|
+
data.username.missing_required_attribute:
|
|
625
|
+
:path:
|
|
626
|
+
- :username
|
|
627
|
+
:category: :data
|
|
628
|
+
:symbol: :missing_required_attribute
|
|
629
|
+
:key: data.username.missing_required_attribute
|
|
630
|
+
:error: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
631
|
+
:processor_class: attributes::SupportedValidators::Required
|
|
632
|
+
:processor_manifest_data:
|
|
633
|
+
:required: *10
|
|
634
|
+
:depends_on:
|
|
635
|
+
- Foobara::Auth::CreateUser
|
|
636
|
+
- Foobara::Auth::SetPassword
|
|
637
|
+
:inputs_type: *12
|
|
638
|
+
:description:
|
|
639
|
+
:result_type: :Foobara::Auth::Types::User
|
|
640
|
+
:serializers:
|
|
641
|
+
- Foobara::CommandConnectors::Serializers::ErrorsSerializer
|
|
642
|
+
- Foobara::CommandConnectors::Serializers::AtomicSerializer
|
|
643
|
+
- Foobara::CommandConnectors::Serializers::JsonSerializer
|
|
644
|
+
:domain:
|
|
645
|
+
:Foobara::Auth:
|
|
646
|
+
:scoped_path:
|
|
647
|
+
- Auth
|
|
648
|
+
:scoped_name: Auth
|
|
649
|
+
:scoped_short_name: Auth
|
|
650
|
+
:scoped_prefix:
|
|
651
|
+
:scoped_full_path:
|
|
652
|
+
- Foobara
|
|
653
|
+
- Auth
|
|
654
|
+
:scoped_full_name: Foobara::Auth
|
|
655
|
+
:scoped_category: :domain
|
|
656
|
+
:reference: Foobara::Auth
|
|
657
|
+
:domain: Foobara::Auth
|
|
658
|
+
:organization: Foobara
|
|
659
|
+
:parent:
|
|
660
|
+
- :organization
|
|
661
|
+
- Foobara
|
|
662
|
+
:commands:
|
|
663
|
+
- Foobara::Auth::Login
|
|
664
|
+
- Foobara::Auth::RefreshLogin
|
|
665
|
+
- Foobara::Auth::Register
|
|
666
|
+
:types:
|
|
667
|
+
- Foobara::Auth::Types::Role
|
|
668
|
+
- Foobara::Auth::Types::Secret
|
|
669
|
+
- Foobara::Auth::Types::Token
|
|
670
|
+
- Foobara::Auth::Types::User
|
|
671
|
+
- Foobara::Auth::token_state
|
|
672
|
+
:global_organization::global_domain:
|
|
673
|
+
:scoped_path: []
|
|
674
|
+
:scoped_name:
|
|
675
|
+
:scoped_short_name:
|
|
676
|
+
:scoped_prefix: []
|
|
677
|
+
:scoped_full_path: []
|
|
678
|
+
:scoped_full_name: ''
|
|
679
|
+
:scoped_category: :domain
|
|
680
|
+
:reference: global_organization::global_domain
|
|
681
|
+
:domain: global_organization::global_domain
|
|
682
|
+
:organization: global_organization
|
|
683
|
+
:parent:
|
|
684
|
+
- :organization
|
|
685
|
+
- global_organization
|
|
686
|
+
:commands: []
|
|
687
|
+
:types:
|
|
688
|
+
- array
|
|
689
|
+
- associative_array
|
|
690
|
+
- atomic_duck
|
|
691
|
+
- attributes
|
|
692
|
+
- datetime
|
|
693
|
+
- detached_entity
|
|
694
|
+
- duck
|
|
695
|
+
- duckture
|
|
696
|
+
- email
|
|
697
|
+
- entity
|
|
698
|
+
- integer
|
|
699
|
+
- model
|
|
700
|
+
- number
|
|
701
|
+
- string
|
|
702
|
+
- symbol
|
|
703
|
+
:error:
|
|
704
|
+
:Foobara::Auth::FindUser::UserNotFoundError:
|
|
705
|
+
:scoped_path:
|
|
706
|
+
- UserNotFoundError
|
|
707
|
+
:scoped_name: UserNotFoundError
|
|
708
|
+
:scoped_short_name: UserNotFoundError
|
|
709
|
+
:scoped_prefix:
|
|
710
|
+
:scoped_full_path:
|
|
711
|
+
- Foobara
|
|
712
|
+
- Auth
|
|
713
|
+
- FindUser
|
|
714
|
+
- UserNotFoundError
|
|
715
|
+
:scoped_full_name: Foobara::Auth::FindUser::UserNotFoundError
|
|
716
|
+
:scoped_category: :error
|
|
717
|
+
:reference: Foobara::Auth::FindUser::UserNotFoundError
|
|
718
|
+
:domain: Foobara::Auth
|
|
719
|
+
:organization: Foobara
|
|
720
|
+
:parent:
|
|
721
|
+
- :command
|
|
722
|
+
- Foobara::Auth::FindUser
|
|
723
|
+
:types_depended_on:
|
|
724
|
+
- Foobara::Auth::Types::Role
|
|
725
|
+
- Foobara::Auth::Types::Secret
|
|
726
|
+
- Foobara::Auth::Types::Token
|
|
727
|
+
- array
|
|
728
|
+
- attributes
|
|
729
|
+
- duck
|
|
730
|
+
- email
|
|
731
|
+
- integer
|
|
732
|
+
- string
|
|
733
|
+
- symbol
|
|
734
|
+
:category: :runtime
|
|
735
|
+
:symbol: :user_not_found
|
|
736
|
+
:context_type_declaration:
|
|
737
|
+
:type: :attributes
|
|
738
|
+
:element_type_declarations:
|
|
739
|
+
:id: :integer
|
|
740
|
+
:username: :string
|
|
741
|
+
:email: :email
|
|
742
|
+
:roles:
|
|
743
|
+
:type: :array
|
|
744
|
+
:element_type_declaration: :Foobara::Auth::Types::Role
|
|
745
|
+
:api_keys:
|
|
746
|
+
:type: :array
|
|
747
|
+
:element_type_declaration: :Foobara::Auth::Types::Token
|
|
748
|
+
:refresh_tokens:
|
|
749
|
+
:type: :array
|
|
750
|
+
:element_type_declaration: :Foobara::Auth::Types::Token
|
|
751
|
+
:password_secret:
|
|
752
|
+
:allow_nil: true
|
|
753
|
+
:type: :Foobara::Auth::Types::Secret
|
|
754
|
+
:is_fatal: true
|
|
755
|
+
:error_class: Foobara::Auth::FindUser::UserNotFoundError
|
|
756
|
+
:base_error: Foobara::RuntimeError
|
|
757
|
+
:Foobara::Auth::Login::InvalidPasswordError:
|
|
758
|
+
:scoped_path:
|
|
759
|
+
- InvalidPasswordError
|
|
760
|
+
:scoped_name: InvalidPasswordError
|
|
761
|
+
:scoped_short_name: InvalidPasswordError
|
|
762
|
+
:scoped_prefix:
|
|
763
|
+
:scoped_full_path:
|
|
764
|
+
- Foobara
|
|
765
|
+
- Auth
|
|
766
|
+
- Login
|
|
767
|
+
- InvalidPasswordError
|
|
768
|
+
:scoped_full_name: Foobara::Auth::Login::InvalidPasswordError
|
|
769
|
+
:scoped_category: :error
|
|
770
|
+
:reference: Foobara::Auth::Login::InvalidPasswordError
|
|
771
|
+
:domain: Foobara::Auth
|
|
772
|
+
:organization: Foobara
|
|
773
|
+
:parent:
|
|
774
|
+
- :command
|
|
775
|
+
- Foobara::Auth::Login
|
|
776
|
+
:types_depended_on:
|
|
777
|
+
- array
|
|
778
|
+
- attributes
|
|
779
|
+
- duck
|
|
780
|
+
- symbol
|
|
781
|
+
:category: :runtime
|
|
782
|
+
:symbol: :invalid_password
|
|
783
|
+
:context_type_declaration: &13
|
|
784
|
+
:type: :attributes
|
|
785
|
+
:element_type_declarations: {}
|
|
786
|
+
:is_fatal: true
|
|
787
|
+
:error_class: Foobara::Auth::Login::InvalidPasswordError
|
|
788
|
+
:base_error: Foobara::RuntimeError
|
|
789
|
+
:Foobara::Auth::Login::NoUserIdEmailOrUsernameGivenError:
|
|
790
|
+
:scoped_path:
|
|
791
|
+
- NoUserIdEmailOrUsernameGivenError
|
|
792
|
+
:scoped_name: NoUserIdEmailOrUsernameGivenError
|
|
793
|
+
:scoped_short_name: NoUserIdEmailOrUsernameGivenError
|
|
794
|
+
:scoped_prefix:
|
|
795
|
+
:scoped_full_path:
|
|
796
|
+
- Foobara
|
|
797
|
+
- Auth
|
|
798
|
+
- Login
|
|
799
|
+
- NoUserIdEmailOrUsernameGivenError
|
|
800
|
+
:scoped_full_name: Foobara::Auth::Login::NoUserIdEmailOrUsernameGivenError
|
|
801
|
+
:scoped_category: :error
|
|
802
|
+
:reference: Foobara::Auth::Login::NoUserIdEmailOrUsernameGivenError
|
|
803
|
+
:domain: Foobara::Auth
|
|
804
|
+
:organization: Foobara
|
|
805
|
+
:parent:
|
|
806
|
+
- :command
|
|
807
|
+
- Foobara::Auth::Login
|
|
808
|
+
:types_depended_on:
|
|
809
|
+
- array
|
|
810
|
+
- attributes
|
|
811
|
+
- duck
|
|
812
|
+
- symbol
|
|
813
|
+
:category: :runtime
|
|
814
|
+
:symbol: :no_user_id_email_or_username_given
|
|
815
|
+
:context_type_declaration: *13
|
|
816
|
+
:is_fatal: true
|
|
817
|
+
:error_class: Foobara::Auth::Login::NoUserIdEmailOrUsernameGivenError
|
|
818
|
+
:base_error: Foobara::RuntimeError
|
|
819
|
+
:Foobara::Auth::RefreshLogin::InvalidRefreshTokenError:
|
|
820
|
+
:scoped_path:
|
|
821
|
+
- InvalidRefreshTokenError
|
|
822
|
+
:scoped_name: InvalidRefreshTokenError
|
|
823
|
+
:scoped_short_name: InvalidRefreshTokenError
|
|
824
|
+
:scoped_prefix:
|
|
825
|
+
:scoped_full_path:
|
|
826
|
+
- Foobara
|
|
827
|
+
- Auth
|
|
828
|
+
- RefreshLogin
|
|
829
|
+
- InvalidRefreshTokenError
|
|
830
|
+
:scoped_full_name: Foobara::Auth::RefreshLogin::InvalidRefreshTokenError
|
|
831
|
+
:scoped_category: :error
|
|
832
|
+
:reference: Foobara::Auth::RefreshLogin::InvalidRefreshTokenError
|
|
833
|
+
:domain: Foobara::Auth
|
|
834
|
+
:organization: Foobara
|
|
835
|
+
:parent:
|
|
836
|
+
- :command
|
|
837
|
+
- Foobara::Auth::RefreshLogin
|
|
838
|
+
:types_depended_on:
|
|
839
|
+
- array
|
|
840
|
+
- attributes
|
|
841
|
+
- duck
|
|
842
|
+
- string
|
|
843
|
+
- symbol
|
|
844
|
+
:category: :runtime
|
|
845
|
+
:symbol: :invalid_refresh_token
|
|
846
|
+
:context_type_declaration: &14
|
|
847
|
+
:type: :attributes
|
|
848
|
+
:element_type_declarations:
|
|
849
|
+
:refresh_token_id: :string
|
|
850
|
+
:is_fatal: true
|
|
851
|
+
:error_class: Foobara::Auth::RefreshLogin::InvalidRefreshTokenError
|
|
852
|
+
:base_error: Foobara::RuntimeError
|
|
853
|
+
:Foobara::Auth::RefreshLogin::RefreshTokenNotOwnedByUser:
|
|
854
|
+
:scoped_path:
|
|
855
|
+
- RefreshTokenNotOwnedByUser
|
|
856
|
+
:scoped_name: RefreshTokenNotOwnedByUser
|
|
857
|
+
:scoped_short_name: RefreshTokenNotOwnedByUser
|
|
858
|
+
:scoped_prefix:
|
|
859
|
+
:scoped_full_path:
|
|
860
|
+
- Foobara
|
|
861
|
+
- Auth
|
|
862
|
+
- RefreshLogin
|
|
863
|
+
- RefreshTokenNotOwnedByUser
|
|
864
|
+
:scoped_full_name: Foobara::Auth::RefreshLogin::RefreshTokenNotOwnedByUser
|
|
865
|
+
:scoped_category: :error
|
|
866
|
+
:reference: Foobara::Auth::RefreshLogin::RefreshTokenNotOwnedByUser
|
|
867
|
+
:domain: Foobara::Auth
|
|
868
|
+
:organization: Foobara
|
|
869
|
+
:parent:
|
|
870
|
+
- :command
|
|
871
|
+
- Foobara::Auth::RefreshLogin
|
|
872
|
+
:types_depended_on:
|
|
873
|
+
- array
|
|
874
|
+
- attributes
|
|
875
|
+
- duck
|
|
876
|
+
- string
|
|
877
|
+
- symbol
|
|
878
|
+
:category: :runtime
|
|
879
|
+
:symbol: :refresh_token_not_owned_by_user
|
|
880
|
+
:context_type_declaration: *14
|
|
881
|
+
:is_fatal: true
|
|
882
|
+
:error_class: Foobara::Auth::RefreshLogin::RefreshTokenNotOwnedByUser
|
|
883
|
+
:base_error: Foobara::RuntimeError
|
|
884
|
+
:Foobara::Auth::VerifyToken::ExpiredTokenError:
|
|
885
|
+
:scoped_path:
|
|
886
|
+
- ExpiredTokenError
|
|
887
|
+
:scoped_name: ExpiredTokenError
|
|
888
|
+
:scoped_short_name: ExpiredTokenError
|
|
889
|
+
:scoped_prefix:
|
|
890
|
+
:scoped_full_path:
|
|
891
|
+
- Foobara
|
|
892
|
+
- Auth
|
|
893
|
+
- VerifyToken
|
|
894
|
+
- ExpiredTokenError
|
|
895
|
+
:scoped_full_name: Foobara::Auth::VerifyToken::ExpiredTokenError
|
|
896
|
+
:scoped_category: :error
|
|
897
|
+
:reference: Foobara::Auth::VerifyToken::ExpiredTokenError
|
|
898
|
+
:domain: Foobara::Auth
|
|
899
|
+
:organization: Foobara
|
|
900
|
+
:parent:
|
|
901
|
+
- :command
|
|
902
|
+
- Foobara::Auth::VerifyToken
|
|
903
|
+
:types_depended_on:
|
|
904
|
+
- array
|
|
905
|
+
- attributes
|
|
906
|
+
- duck
|
|
907
|
+
- symbol
|
|
908
|
+
:category: :runtime
|
|
909
|
+
:symbol: :expired_token
|
|
910
|
+
:context_type_declaration: *13
|
|
911
|
+
:is_fatal: true
|
|
912
|
+
:error_class: Foobara::Auth::VerifyToken::ExpiredTokenError
|
|
913
|
+
:base_error: Foobara::RuntimeError
|
|
914
|
+
:Foobara::Auth::VerifyToken::InactiveTokenError:
|
|
915
|
+
:scoped_path:
|
|
916
|
+
- InactiveTokenError
|
|
917
|
+
:scoped_name: InactiveTokenError
|
|
918
|
+
:scoped_short_name: InactiveTokenError
|
|
919
|
+
:scoped_prefix:
|
|
920
|
+
:scoped_full_path:
|
|
921
|
+
- Foobara
|
|
922
|
+
- Auth
|
|
923
|
+
- VerifyToken
|
|
924
|
+
- InactiveTokenError
|
|
925
|
+
:scoped_full_name: Foobara::Auth::VerifyToken::InactiveTokenError
|
|
926
|
+
:scoped_category: :error
|
|
927
|
+
:reference: Foobara::Auth::VerifyToken::InactiveTokenError
|
|
928
|
+
:domain: Foobara::Auth
|
|
929
|
+
:organization: Foobara
|
|
930
|
+
:parent:
|
|
931
|
+
- :command
|
|
932
|
+
- Foobara::Auth::VerifyToken
|
|
933
|
+
:types_depended_on:
|
|
934
|
+
- Foobara::Auth::token_state
|
|
935
|
+
- array
|
|
936
|
+
- attributes
|
|
937
|
+
- duck
|
|
938
|
+
- symbol
|
|
939
|
+
:category: :runtime
|
|
940
|
+
:symbol: :inactive_token
|
|
941
|
+
:context_type_declaration:
|
|
942
|
+
:type: :attributes
|
|
943
|
+
:element_type_declarations:
|
|
944
|
+
:state: :Foobara::Auth::token_state
|
|
945
|
+
:required:
|
|
946
|
+
- :state
|
|
947
|
+
:is_fatal: true
|
|
948
|
+
:error_class: Foobara::Auth::VerifyToken::InactiveTokenError
|
|
949
|
+
:base_error: Foobara::RuntimeError
|
|
950
|
+
:Foobara::RuntimeError:
|
|
951
|
+
:scoped_path:
|
|
952
|
+
- RuntimeError
|
|
953
|
+
:scoped_name: RuntimeError
|
|
954
|
+
:scoped_short_name: RuntimeError
|
|
955
|
+
:scoped_prefix:
|
|
956
|
+
:scoped_full_path:
|
|
957
|
+
- Foobara
|
|
958
|
+
- RuntimeError
|
|
959
|
+
:scoped_full_name: Foobara::RuntimeError
|
|
960
|
+
:scoped_category: :error
|
|
961
|
+
:reference: Foobara::RuntimeError
|
|
962
|
+
:domain: global_organization::global_domain
|
|
963
|
+
:organization: global_organization
|
|
964
|
+
:parent:
|
|
965
|
+
- :organization
|
|
966
|
+
- Foobara
|
|
967
|
+
:category: :runtime
|
|
968
|
+
:symbol: :runtime
|
|
969
|
+
:is_fatal: true
|
|
970
|
+
:error_class: Foobara::RuntimeError
|
|
971
|
+
:abstract: true
|
|
972
|
+
:Foobara::Value::DataError:
|
|
973
|
+
:scoped_path:
|
|
974
|
+
- DataError
|
|
975
|
+
:scoped_name: DataError
|
|
976
|
+
:scoped_short_name: DataError
|
|
977
|
+
:scoped_prefix:
|
|
978
|
+
:scoped_full_path:
|
|
979
|
+
- Foobara
|
|
980
|
+
- Value
|
|
981
|
+
- DataError
|
|
982
|
+
:scoped_full_name: Foobara::Value::DataError
|
|
983
|
+
:scoped_category: :error
|
|
984
|
+
:reference: Foobara::Value::DataError
|
|
985
|
+
:domain: Foobara::Value
|
|
986
|
+
:organization: Foobara
|
|
987
|
+
:parent:
|
|
988
|
+
- :domain
|
|
989
|
+
- Foobara::Value
|
|
990
|
+
:types_depended_on:
|
|
991
|
+
- array
|
|
992
|
+
- attributes
|
|
993
|
+
- duck
|
|
994
|
+
- symbol
|
|
995
|
+
:category: :data
|
|
996
|
+
:symbol: :data
|
|
997
|
+
:context_type_declaration:
|
|
998
|
+
:type: :attributes
|
|
999
|
+
:element_type_declarations:
|
|
1000
|
+
:attribute_name: :symbol
|
|
1001
|
+
:value: :duck
|
|
1002
|
+
:is_fatal: false
|
|
1003
|
+
:error_class: Foobara::Value::DataError
|
|
1004
|
+
:Foobara::Value::Processor::Casting::CannotCastError:
|
|
1005
|
+
:scoped_path:
|
|
1006
|
+
- CannotCastError
|
|
1007
|
+
:scoped_name: CannotCastError
|
|
1008
|
+
:scoped_short_name: CannotCastError
|
|
1009
|
+
:scoped_prefix:
|
|
1010
|
+
:scoped_full_path:
|
|
1011
|
+
- Foobara
|
|
1012
|
+
- Value
|
|
1013
|
+
- Processor
|
|
1014
|
+
- Casting
|
|
1015
|
+
- CannotCastError
|
|
1016
|
+
:scoped_full_name: Foobara::Value::Processor::Casting::CannotCastError
|
|
1017
|
+
:scoped_category: :error
|
|
1018
|
+
:reference: Foobara::Value::Processor::Casting::CannotCastError
|
|
1019
|
+
:domain: Foobara::Value
|
|
1020
|
+
:organization: Foobara
|
|
1021
|
+
:parent:
|
|
1022
|
+
- :processor_class
|
|
1023
|
+
- Foobara::Value::Processor::Casting
|
|
1024
|
+
:types_depended_on:
|
|
1025
|
+
- array
|
|
1026
|
+
- attributes
|
|
1027
|
+
- duck
|
|
1028
|
+
- symbol
|
|
1029
|
+
:category: :data
|
|
1030
|
+
:symbol: :cannot_cast
|
|
1031
|
+
:context_type_declaration:
|
|
1032
|
+
:type: :attributes
|
|
1033
|
+
:element_type_declarations:
|
|
1034
|
+
:cast_to: :duck
|
|
1035
|
+
:value: :duck
|
|
1036
|
+
:attribute_name: :symbol
|
|
1037
|
+
:is_fatal: true
|
|
1038
|
+
:error_class: Foobara::Value::Processor::Casting::CannotCastError
|
|
1039
|
+
:base_error: Foobara::Value::DataError
|
|
1040
|
+
:array::SupportedValidators::Size::IncorrectTupleSizeError:
|
|
1041
|
+
:scoped_path:
|
|
1042
|
+
- IncorrectTupleSizeError
|
|
1043
|
+
:scoped_name: IncorrectTupleSizeError
|
|
1044
|
+
:scoped_short_name: IncorrectTupleSizeError
|
|
1045
|
+
:scoped_prefix:
|
|
1046
|
+
:scoped_full_path:
|
|
1047
|
+
- array
|
|
1048
|
+
- SupportedValidators
|
|
1049
|
+
- Size
|
|
1050
|
+
- IncorrectTupleSizeError
|
|
1051
|
+
:scoped_full_name: array::SupportedValidators::Size::IncorrectTupleSizeError
|
|
1052
|
+
:scoped_category: :error
|
|
1053
|
+
:reference: array::SupportedValidators::Size::IncorrectTupleSizeError
|
|
1054
|
+
:domain: global_organization::global_domain
|
|
1055
|
+
:organization: global_organization
|
|
1056
|
+
:parent:
|
|
1057
|
+
- :processor_class
|
|
1058
|
+
- array::SupportedValidators::Size
|
|
1059
|
+
:types_depended_on:
|
|
1060
|
+
- array
|
|
1061
|
+
- attributes
|
|
1062
|
+
- duck
|
|
1063
|
+
- integer
|
|
1064
|
+
- symbol
|
|
1065
|
+
:category: :data
|
|
1066
|
+
:symbol: :incorrect_tuple_size
|
|
1067
|
+
:context_type_declaration:
|
|
1068
|
+
:type: :attributes
|
|
1069
|
+
:element_type_declarations:
|
|
1070
|
+
:expected_size: :integer
|
|
1071
|
+
:actual_size: :integer
|
|
1072
|
+
:value: :array
|
|
1073
|
+
:is_fatal: false
|
|
1074
|
+
:error_class: Foobara::BuiltinTypes::Array::SupportedValidators::Size::IncorrectTupleSizeError
|
|
1075
|
+
:base_error: Foobara::Value::DataError
|
|
1076
|
+
:attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError:
|
|
1077
|
+
:scoped_path:
|
|
1078
|
+
- UnexpectedAttributesError
|
|
1079
|
+
:scoped_name: UnexpectedAttributesError
|
|
1080
|
+
:scoped_short_name: UnexpectedAttributesError
|
|
1081
|
+
:scoped_prefix:
|
|
1082
|
+
:scoped_full_path:
|
|
1083
|
+
- attributes
|
|
1084
|
+
- SupportedProcessors
|
|
1085
|
+
- ElementTypeDeclarations
|
|
1086
|
+
- UnexpectedAttributesError
|
|
1087
|
+
:scoped_full_name: attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
1088
|
+
:scoped_category: :error
|
|
1089
|
+
:reference: attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
1090
|
+
:domain: global_organization::global_domain
|
|
1091
|
+
:organization: global_organization
|
|
1092
|
+
:parent:
|
|
1093
|
+
- :processor_class
|
|
1094
|
+
- attributes::SupportedProcessors::ElementTypeDeclarations
|
|
1095
|
+
:types_depended_on:
|
|
1096
|
+
- array
|
|
1097
|
+
- attributes
|
|
1098
|
+
- duck
|
|
1099
|
+
- symbol
|
|
1100
|
+
:category: :data
|
|
1101
|
+
:symbol: :unexpected_attributes
|
|
1102
|
+
:context_type_declaration:
|
|
1103
|
+
:type: :attributes
|
|
1104
|
+
:element_type_declarations:
|
|
1105
|
+
:unexpected_attributes:
|
|
1106
|
+
:type: :array
|
|
1107
|
+
:element_type_declaration: :symbol
|
|
1108
|
+
:allowed_attributes:
|
|
1109
|
+
:type: :array
|
|
1110
|
+
:element_type_declaration: :symbol
|
|
1111
|
+
:is_fatal: true
|
|
1112
|
+
:error_class: Foobara::BuiltinTypes::Attributes::SupportedProcessors::ElementTypeDeclarations::UnexpectedAttributesError
|
|
1113
|
+
:base_error: Foobara::Value::DataError
|
|
1114
|
+
:attributes::SupportedValidators::Required::MissingRequiredAttributeError:
|
|
1115
|
+
:scoped_path:
|
|
1116
|
+
- MissingRequiredAttributeError
|
|
1117
|
+
:scoped_name: MissingRequiredAttributeError
|
|
1118
|
+
:scoped_short_name: MissingRequiredAttributeError
|
|
1119
|
+
:scoped_prefix:
|
|
1120
|
+
:scoped_full_path:
|
|
1121
|
+
- attributes
|
|
1122
|
+
- SupportedValidators
|
|
1123
|
+
- Required
|
|
1124
|
+
- MissingRequiredAttributeError
|
|
1125
|
+
:scoped_full_name: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
1126
|
+
:scoped_category: :error
|
|
1127
|
+
:reference: attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
1128
|
+
:domain: global_organization::global_domain
|
|
1129
|
+
:organization: global_organization
|
|
1130
|
+
:parent:
|
|
1131
|
+
- :processor_class
|
|
1132
|
+
- attributes::SupportedValidators::Required
|
|
1133
|
+
:types_depended_on:
|
|
1134
|
+
- array
|
|
1135
|
+
- attributes
|
|
1136
|
+
- duck
|
|
1137
|
+
- symbol
|
|
1138
|
+
:category: :data
|
|
1139
|
+
:symbol: :missing_required_attribute
|
|
1140
|
+
:context_type_declaration:
|
|
1141
|
+
:type: :attributes
|
|
1142
|
+
:element_type_declarations:
|
|
1143
|
+
:attribute_name: :symbol
|
|
1144
|
+
:is_fatal: true
|
|
1145
|
+
:error_class: Foobara::BuiltinTypes::Attributes::SupportedValidators::Required::MissingRequiredAttributeError
|
|
1146
|
+
:base_error: Foobara::Value::DataError
|
|
1147
|
+
:duck::SupportedValidators::InstanceOf::NotInstanceOfError:
|
|
1148
|
+
:scoped_path:
|
|
1149
|
+
- NotInstanceOfError
|
|
1150
|
+
:scoped_name: NotInstanceOfError
|
|
1151
|
+
:scoped_short_name: NotInstanceOfError
|
|
1152
|
+
:scoped_prefix:
|
|
1153
|
+
:scoped_full_path:
|
|
1154
|
+
- duck
|
|
1155
|
+
- SupportedValidators
|
|
1156
|
+
- InstanceOf
|
|
1157
|
+
- NotInstanceOfError
|
|
1158
|
+
:scoped_full_name: duck::SupportedValidators::InstanceOf::NotInstanceOfError
|
|
1159
|
+
:scoped_category: :error
|
|
1160
|
+
:reference: duck::SupportedValidators::InstanceOf::NotInstanceOfError
|
|
1161
|
+
:domain: global_organization::global_domain
|
|
1162
|
+
:organization: global_organization
|
|
1163
|
+
:parent:
|
|
1164
|
+
- :processor_class
|
|
1165
|
+
- duck::SupportedValidators::InstanceOf
|
|
1166
|
+
:types_depended_on:
|
|
1167
|
+
- array
|
|
1168
|
+
- attributes
|
|
1169
|
+
- duck
|
|
1170
|
+
- string
|
|
1171
|
+
- symbol
|
|
1172
|
+
:category: :data
|
|
1173
|
+
:symbol: :not_instance_of
|
|
1174
|
+
:context_type_declaration:
|
|
1175
|
+
:type: :attributes
|
|
1176
|
+
:element_type_declarations:
|
|
1177
|
+
:value: :duck
|
|
1178
|
+
:expected_class_name: :string
|
|
1179
|
+
:is_fatal: false
|
|
1180
|
+
:error_class: Foobara::BuiltinTypes::Duck::SupportedValidators::InstanceOf::NotInstanceOfError
|
|
1181
|
+
:base_error: Foobara::Value::DataError
|
|
1182
|
+
:duck::SupportedValidators::OneOf::ValueNotValidError:
|
|
1183
|
+
:scoped_path:
|
|
1184
|
+
- ValueNotValidError
|
|
1185
|
+
:scoped_name: ValueNotValidError
|
|
1186
|
+
:scoped_short_name: ValueNotValidError
|
|
1187
|
+
:scoped_prefix:
|
|
1188
|
+
:scoped_full_path:
|
|
1189
|
+
- duck
|
|
1190
|
+
- SupportedValidators
|
|
1191
|
+
- OneOf
|
|
1192
|
+
- ValueNotValidError
|
|
1193
|
+
:scoped_full_name: duck::SupportedValidators::OneOf::ValueNotValidError
|
|
1194
|
+
:scoped_category: :error
|
|
1195
|
+
:reference: duck::SupportedValidators::OneOf::ValueNotValidError
|
|
1196
|
+
:domain: global_organization::global_domain
|
|
1197
|
+
:organization: global_organization
|
|
1198
|
+
:parent:
|
|
1199
|
+
- :processor_class
|
|
1200
|
+
- duck::SupportedValidators::OneOf
|
|
1201
|
+
:types_depended_on:
|
|
1202
|
+
- array
|
|
1203
|
+
- attributes
|
|
1204
|
+
- duck
|
|
1205
|
+
- symbol
|
|
1206
|
+
:category: :data
|
|
1207
|
+
:symbol: :value_not_valid
|
|
1208
|
+
:context_type_declaration:
|
|
1209
|
+
:type: :attributes
|
|
1210
|
+
:element_type_declarations:
|
|
1211
|
+
:value: :duck
|
|
1212
|
+
:valid_values:
|
|
1213
|
+
:type: :array
|
|
1214
|
+
:element_type_declaration: :duck
|
|
1215
|
+
:is_fatal: false
|
|
1216
|
+
:error_class: Foobara::BuiltinTypes::Duck::SupportedValidators::OneOf::ValueNotValidError
|
|
1217
|
+
:base_error: Foobara::Value::DataError
|
|
1218
|
+
:email::Validators::CannotExceed64Characters::CannotExceed64CharactersError:
|
|
1219
|
+
:scoped_path:
|
|
1220
|
+
- CannotExceed64CharactersError
|
|
1221
|
+
:scoped_name: CannotExceed64CharactersError
|
|
1222
|
+
:scoped_short_name: CannotExceed64CharactersError
|
|
1223
|
+
:scoped_prefix:
|
|
1224
|
+
:scoped_full_path:
|
|
1225
|
+
- email
|
|
1226
|
+
- Validators
|
|
1227
|
+
- CannotExceed64Characters
|
|
1228
|
+
- CannotExceed64CharactersError
|
|
1229
|
+
:scoped_full_name: email::Validators::CannotExceed64Characters::CannotExceed64CharactersError
|
|
1230
|
+
:scoped_category: :error
|
|
1231
|
+
:reference: email::Validators::CannotExceed64Characters::CannotExceed64CharactersError
|
|
1232
|
+
:domain: global_organization::global_domain
|
|
1233
|
+
:organization: global_organization
|
|
1234
|
+
:parent:
|
|
1235
|
+
- :processor_class
|
|
1236
|
+
- email::Validators::CannotExceed64Characters
|
|
1237
|
+
:types_depended_on:
|
|
1238
|
+
- array
|
|
1239
|
+
- attributes
|
|
1240
|
+
- duck
|
|
1241
|
+
- symbol
|
|
1242
|
+
:category: :data
|
|
1243
|
+
:symbol: :cannot_exceed64_characters
|
|
1244
|
+
:context_type_declaration: &15
|
|
1245
|
+
:type: :attributes
|
|
1246
|
+
:element_type_declarations:
|
|
1247
|
+
:value: :duck
|
|
1248
|
+
:regex: :duck
|
|
1249
|
+
:negate_regex: :duck
|
|
1250
|
+
:is_fatal: false
|
|
1251
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::CannotExceed64Characters::CannotExceed64CharactersError
|
|
1252
|
+
:base_error: Foobara::Value::DataError
|
|
1253
|
+
:email::Validators::CannotHaveMultipleAtSigns::CannotHaveMultipleAtSignsError:
|
|
1254
|
+
:scoped_path:
|
|
1255
|
+
- CannotHaveMultipleAtSignsError
|
|
1256
|
+
:scoped_name: CannotHaveMultipleAtSignsError
|
|
1257
|
+
:scoped_short_name: CannotHaveMultipleAtSignsError
|
|
1258
|
+
:scoped_prefix:
|
|
1259
|
+
:scoped_full_path:
|
|
1260
|
+
- email
|
|
1261
|
+
- Validators
|
|
1262
|
+
- CannotHaveMultipleAtSigns
|
|
1263
|
+
- CannotHaveMultipleAtSignsError
|
|
1264
|
+
:scoped_full_name: email::Validators::CannotHaveMultipleAtSigns::CannotHaveMultipleAtSignsError
|
|
1265
|
+
:scoped_category: :error
|
|
1266
|
+
:reference: email::Validators::CannotHaveMultipleAtSigns::CannotHaveMultipleAtSignsError
|
|
1267
|
+
:domain: global_organization::global_domain
|
|
1268
|
+
:organization: global_organization
|
|
1269
|
+
:parent:
|
|
1270
|
+
- :processor_class
|
|
1271
|
+
- email::Validators::CannotHaveMultipleAtSigns
|
|
1272
|
+
:types_depended_on:
|
|
1273
|
+
- array
|
|
1274
|
+
- attributes
|
|
1275
|
+
- duck
|
|
1276
|
+
- symbol
|
|
1277
|
+
:category: :data
|
|
1278
|
+
:symbol: :cannot_have_multiple_at_signs
|
|
1279
|
+
:context_type_declaration: *15
|
|
1280
|
+
:is_fatal: false
|
|
1281
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::CannotHaveMultipleAtSigns::CannotHaveMultipleAtSignsError
|
|
1282
|
+
:base_error: Foobara::Value::DataError
|
|
1283
|
+
:email::Validators::DomainCannotStartWithOrEndWithAHyphen::DomainCannotStartWithOrEndWithAHyphenError:
|
|
1284
|
+
:scoped_path:
|
|
1285
|
+
- DomainCannotStartWithOrEndWithAHyphenError
|
|
1286
|
+
:scoped_name: DomainCannotStartWithOrEndWithAHyphenError
|
|
1287
|
+
:scoped_short_name: DomainCannotStartWithOrEndWithAHyphenError
|
|
1288
|
+
:scoped_prefix:
|
|
1289
|
+
:scoped_full_path:
|
|
1290
|
+
- email
|
|
1291
|
+
- Validators
|
|
1292
|
+
- DomainCannotStartWithOrEndWithAHyphen
|
|
1293
|
+
- DomainCannotStartWithOrEndWithAHyphenError
|
|
1294
|
+
:scoped_full_name: email::Validators::DomainCannotStartWithOrEndWithAHyphen::DomainCannotStartWithOrEndWithAHyphenError
|
|
1295
|
+
:scoped_category: :error
|
|
1296
|
+
:reference: email::Validators::DomainCannotStartWithOrEndWithAHyphen::DomainCannotStartWithOrEndWithAHyphenError
|
|
1297
|
+
:domain: global_organization::global_domain
|
|
1298
|
+
:organization: global_organization
|
|
1299
|
+
:parent:
|
|
1300
|
+
- :processor_class
|
|
1301
|
+
- email::Validators::DomainCannotStartWithOrEndWithAHyphen
|
|
1302
|
+
:types_depended_on:
|
|
1303
|
+
- array
|
|
1304
|
+
- attributes
|
|
1305
|
+
- duck
|
|
1306
|
+
- symbol
|
|
1307
|
+
:category: :data
|
|
1308
|
+
:symbol: :domain_cannot_start_with_or_end_with_a_hyphen
|
|
1309
|
+
:context_type_declaration: *15
|
|
1310
|
+
:is_fatal: false
|
|
1311
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::DomainCannotStartWithOrEndWithAHyphen::DomainCannotStartWithOrEndWithAHyphenError
|
|
1312
|
+
:base_error: Foobara::Value::DataError
|
|
1313
|
+
:email::Validators::FirstPartCannotBeEmpty::FirstPartCannotBeEmptyError:
|
|
1314
|
+
:scoped_path:
|
|
1315
|
+
- FirstPartCannotBeEmptyError
|
|
1316
|
+
:scoped_name: FirstPartCannotBeEmptyError
|
|
1317
|
+
:scoped_short_name: FirstPartCannotBeEmptyError
|
|
1318
|
+
:scoped_prefix:
|
|
1319
|
+
:scoped_full_path:
|
|
1320
|
+
- email
|
|
1321
|
+
- Validators
|
|
1322
|
+
- FirstPartCannotBeEmpty
|
|
1323
|
+
- FirstPartCannotBeEmptyError
|
|
1324
|
+
:scoped_full_name: email::Validators::FirstPartCannotBeEmpty::FirstPartCannotBeEmptyError
|
|
1325
|
+
:scoped_category: :error
|
|
1326
|
+
:reference: email::Validators::FirstPartCannotBeEmpty::FirstPartCannotBeEmptyError
|
|
1327
|
+
:domain: global_organization::global_domain
|
|
1328
|
+
:organization: global_organization
|
|
1329
|
+
:parent:
|
|
1330
|
+
- :processor_class
|
|
1331
|
+
- email::Validators::FirstPartCannotBeEmpty
|
|
1332
|
+
:types_depended_on:
|
|
1333
|
+
- array
|
|
1334
|
+
- attributes
|
|
1335
|
+
- duck
|
|
1336
|
+
- symbol
|
|
1337
|
+
:category: :data
|
|
1338
|
+
:symbol: :first_part_cannot_be_empty
|
|
1339
|
+
:context_type_declaration: *15
|
|
1340
|
+
:is_fatal: false
|
|
1341
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::FirstPartCannotBeEmpty::FirstPartCannotBeEmptyError
|
|
1342
|
+
:base_error: Foobara::Value::DataError
|
|
1343
|
+
? :email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1344
|
+
: :scoped_path:
|
|
1345
|
+
- FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1346
|
+
:scoped_name: FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1347
|
+
:scoped_short_name: FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1348
|
+
:scoped_prefix:
|
|
1349
|
+
:scoped_full_path:
|
|
1350
|
+
- email
|
|
1351
|
+
- Validators
|
|
1352
|
+
- FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow
|
|
1353
|
+
- FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1354
|
+
:scoped_full_name: email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1355
|
+
:scoped_category: :error
|
|
1356
|
+
:reference: email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1357
|
+
:domain: global_organization::global_domain
|
|
1358
|
+
:organization: global_organization
|
|
1359
|
+
:parent:
|
|
1360
|
+
- :processor_class
|
|
1361
|
+
- email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow
|
|
1362
|
+
:types_depended_on:
|
|
1363
|
+
- array
|
|
1364
|
+
- attributes
|
|
1365
|
+
- duck
|
|
1366
|
+
- symbol
|
|
1367
|
+
:category: :data
|
|
1368
|
+
:symbol: :first_part_cannot_start_with_or_end_with_a_dot_or_have_two_dots_in_a_row
|
|
1369
|
+
:context_type_declaration: *15
|
|
1370
|
+
:is_fatal: false
|
|
1371
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARow::FirstPartCannotStartWithOrEndWithADotOrHaveTwoDotsInARowError
|
|
1372
|
+
:base_error: Foobara::Value::DataError
|
|
1373
|
+
:email::Validators::FirstPartHasBadCharacters::FirstPartHasBadCharactersError:
|
|
1374
|
+
:scoped_path:
|
|
1375
|
+
- FirstPartHasBadCharactersError
|
|
1376
|
+
:scoped_name: FirstPartHasBadCharactersError
|
|
1377
|
+
:scoped_short_name: FirstPartHasBadCharactersError
|
|
1378
|
+
:scoped_prefix:
|
|
1379
|
+
:scoped_full_path:
|
|
1380
|
+
- email
|
|
1381
|
+
- Validators
|
|
1382
|
+
- FirstPartHasBadCharacters
|
|
1383
|
+
- FirstPartHasBadCharactersError
|
|
1384
|
+
:scoped_full_name: email::Validators::FirstPartHasBadCharacters::FirstPartHasBadCharactersError
|
|
1385
|
+
:scoped_category: :error
|
|
1386
|
+
:reference: email::Validators::FirstPartHasBadCharacters::FirstPartHasBadCharactersError
|
|
1387
|
+
:domain: global_organization::global_domain
|
|
1388
|
+
:organization: global_organization
|
|
1389
|
+
:parent:
|
|
1390
|
+
- :processor_class
|
|
1391
|
+
- email::Validators::FirstPartHasBadCharacters
|
|
1392
|
+
:types_depended_on:
|
|
1393
|
+
- array
|
|
1394
|
+
- attributes
|
|
1395
|
+
- duck
|
|
1396
|
+
- symbol
|
|
1397
|
+
:category: :data
|
|
1398
|
+
:symbol: :first_part_has_bad_characters
|
|
1399
|
+
:context_type_declaration: *15
|
|
1400
|
+
:is_fatal: false
|
|
1401
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::FirstPartHasBadCharacters::FirstPartHasBadCharactersError
|
|
1402
|
+
:base_error: Foobara::Value::DataError
|
|
1403
|
+
:email::Validators::MustHaveAnAtSign::MustHaveAnAtSignError:
|
|
1404
|
+
:scoped_path:
|
|
1405
|
+
- MustHaveAnAtSignError
|
|
1406
|
+
:scoped_name: MustHaveAnAtSignError
|
|
1407
|
+
:scoped_short_name: MustHaveAnAtSignError
|
|
1408
|
+
:scoped_prefix:
|
|
1409
|
+
:scoped_full_path:
|
|
1410
|
+
- email
|
|
1411
|
+
- Validators
|
|
1412
|
+
- MustHaveAnAtSign
|
|
1413
|
+
- MustHaveAnAtSignError
|
|
1414
|
+
:scoped_full_name: email::Validators::MustHaveAnAtSign::MustHaveAnAtSignError
|
|
1415
|
+
:scoped_category: :error
|
|
1416
|
+
:reference: email::Validators::MustHaveAnAtSign::MustHaveAnAtSignError
|
|
1417
|
+
:domain: global_organization::global_domain
|
|
1418
|
+
:organization: global_organization
|
|
1419
|
+
:parent:
|
|
1420
|
+
- :processor_class
|
|
1421
|
+
- email::Validators::MustHaveAnAtSign
|
|
1422
|
+
:types_depended_on:
|
|
1423
|
+
- array
|
|
1424
|
+
- attributes
|
|
1425
|
+
- duck
|
|
1426
|
+
- symbol
|
|
1427
|
+
:category: :data
|
|
1428
|
+
:symbol: :must_have_an_at_sign
|
|
1429
|
+
:context_type_declaration: *15
|
|
1430
|
+
:is_fatal: false
|
|
1431
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::MustHaveAnAtSign::MustHaveAnAtSignError
|
|
1432
|
+
:base_error: Foobara::Value::DataError
|
|
1433
|
+
:email::Validators::SecondPartCannotBeEmpty::SecondPartCannotBeEmptyError:
|
|
1434
|
+
:scoped_path:
|
|
1435
|
+
- SecondPartCannotBeEmptyError
|
|
1436
|
+
:scoped_name: SecondPartCannotBeEmptyError
|
|
1437
|
+
:scoped_short_name: SecondPartCannotBeEmptyError
|
|
1438
|
+
:scoped_prefix:
|
|
1439
|
+
:scoped_full_path:
|
|
1440
|
+
- email
|
|
1441
|
+
- Validators
|
|
1442
|
+
- SecondPartCannotBeEmpty
|
|
1443
|
+
- SecondPartCannotBeEmptyError
|
|
1444
|
+
:scoped_full_name: email::Validators::SecondPartCannotBeEmpty::SecondPartCannotBeEmptyError
|
|
1445
|
+
:scoped_category: :error
|
|
1446
|
+
:reference: email::Validators::SecondPartCannotBeEmpty::SecondPartCannotBeEmptyError
|
|
1447
|
+
:domain: global_organization::global_domain
|
|
1448
|
+
:organization: global_organization
|
|
1449
|
+
:parent:
|
|
1450
|
+
- :processor_class
|
|
1451
|
+
- email::Validators::SecondPartCannotBeEmpty
|
|
1452
|
+
:types_depended_on:
|
|
1453
|
+
- array
|
|
1454
|
+
- attributes
|
|
1455
|
+
- duck
|
|
1456
|
+
- symbol
|
|
1457
|
+
:category: :data
|
|
1458
|
+
:symbol: :second_part_cannot_be_empty
|
|
1459
|
+
:context_type_declaration: *15
|
|
1460
|
+
:is_fatal: false
|
|
1461
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::SecondPartCannotBeEmpty::SecondPartCannotBeEmptyError
|
|
1462
|
+
:base_error: Foobara::Value::DataError
|
|
1463
|
+
:email::Validators::SecondPartHasBadCharacters::SecondPartHasBadCharactersError:
|
|
1464
|
+
:scoped_path:
|
|
1465
|
+
- SecondPartHasBadCharactersError
|
|
1466
|
+
:scoped_name: SecondPartHasBadCharactersError
|
|
1467
|
+
:scoped_short_name: SecondPartHasBadCharactersError
|
|
1468
|
+
:scoped_prefix:
|
|
1469
|
+
:scoped_full_path:
|
|
1470
|
+
- email
|
|
1471
|
+
- Validators
|
|
1472
|
+
- SecondPartHasBadCharacters
|
|
1473
|
+
- SecondPartHasBadCharactersError
|
|
1474
|
+
:scoped_full_name: email::Validators::SecondPartHasBadCharacters::SecondPartHasBadCharactersError
|
|
1475
|
+
:scoped_category: :error
|
|
1476
|
+
:reference: email::Validators::SecondPartHasBadCharacters::SecondPartHasBadCharactersError
|
|
1477
|
+
:domain: global_organization::global_domain
|
|
1478
|
+
:organization: global_organization
|
|
1479
|
+
:parent:
|
|
1480
|
+
- :processor_class
|
|
1481
|
+
- email::Validators::SecondPartHasBadCharacters
|
|
1482
|
+
:types_depended_on:
|
|
1483
|
+
- array
|
|
1484
|
+
- attributes
|
|
1485
|
+
- duck
|
|
1486
|
+
- symbol
|
|
1487
|
+
:category: :data
|
|
1488
|
+
:symbol: :second_part_has_bad_characters
|
|
1489
|
+
:context_type_declaration: *15
|
|
1490
|
+
:is_fatal: false
|
|
1491
|
+
:error_class: Foobara::BuiltinTypes::Email::Validators::SecondPartHasBadCharacters::SecondPartHasBadCharactersError
|
|
1492
|
+
:base_error: Foobara::Value::DataError
|
|
1493
|
+
:number::SupportedValidators::Max::MaxExceededError:
|
|
1494
|
+
:scoped_path:
|
|
1495
|
+
- MaxExceededError
|
|
1496
|
+
:scoped_name: MaxExceededError
|
|
1497
|
+
:scoped_short_name: MaxExceededError
|
|
1498
|
+
:scoped_prefix:
|
|
1499
|
+
:scoped_full_path:
|
|
1500
|
+
- number
|
|
1501
|
+
- SupportedValidators
|
|
1502
|
+
- Max
|
|
1503
|
+
- MaxExceededError
|
|
1504
|
+
:scoped_full_name: number::SupportedValidators::Max::MaxExceededError
|
|
1505
|
+
:scoped_category: :error
|
|
1506
|
+
:reference: number::SupportedValidators::Max::MaxExceededError
|
|
1507
|
+
:domain: global_organization::global_domain
|
|
1508
|
+
:organization: global_organization
|
|
1509
|
+
:parent:
|
|
1510
|
+
- :processor_class
|
|
1511
|
+
- number::SupportedValidators::Max
|
|
1512
|
+
:types_depended_on:
|
|
1513
|
+
- array
|
|
1514
|
+
- attributes
|
|
1515
|
+
- duck
|
|
1516
|
+
- number
|
|
1517
|
+
- symbol
|
|
1518
|
+
:category: :data
|
|
1519
|
+
:symbol: :max_exceeded
|
|
1520
|
+
:context_type_declaration:
|
|
1521
|
+
:type: :attributes
|
|
1522
|
+
:element_type_declarations:
|
|
1523
|
+
:value: :number
|
|
1524
|
+
:max: :number
|
|
1525
|
+
:is_fatal: false
|
|
1526
|
+
:error_class: Foobara::BuiltinTypes::Number::SupportedValidators::Max::MaxExceededError
|
|
1527
|
+
:base_error: Foobara::Value::DataError
|
|
1528
|
+
:number::SupportedValidators::Min::BelowMinimumError:
|
|
1529
|
+
:scoped_path:
|
|
1530
|
+
- BelowMinimumError
|
|
1531
|
+
:scoped_name: BelowMinimumError
|
|
1532
|
+
:scoped_short_name: BelowMinimumError
|
|
1533
|
+
:scoped_prefix:
|
|
1534
|
+
:scoped_full_path:
|
|
1535
|
+
- number
|
|
1536
|
+
- SupportedValidators
|
|
1537
|
+
- Min
|
|
1538
|
+
- BelowMinimumError
|
|
1539
|
+
:scoped_full_name: number::SupportedValidators::Min::BelowMinimumError
|
|
1540
|
+
:scoped_category: :error
|
|
1541
|
+
:reference: number::SupportedValidators::Min::BelowMinimumError
|
|
1542
|
+
:domain: global_organization::global_domain
|
|
1543
|
+
:organization: global_organization
|
|
1544
|
+
:parent:
|
|
1545
|
+
- :processor_class
|
|
1546
|
+
- number::SupportedValidators::Min
|
|
1547
|
+
:types_depended_on:
|
|
1548
|
+
- array
|
|
1549
|
+
- attributes
|
|
1550
|
+
- duck
|
|
1551
|
+
- number
|
|
1552
|
+
- symbol
|
|
1553
|
+
:category: :data
|
|
1554
|
+
:symbol: :below_minimum
|
|
1555
|
+
:context_type_declaration:
|
|
1556
|
+
:type: :attributes
|
|
1557
|
+
:element_type_declarations:
|
|
1558
|
+
:value: :number
|
|
1559
|
+
:min: :number
|
|
1560
|
+
:is_fatal: false
|
|
1561
|
+
:error_class: Foobara::BuiltinTypes::Number::SupportedValidators::Min::BelowMinimumError
|
|
1562
|
+
:base_error: Foobara::Value::DataError
|
|
1563
|
+
:string::SupportedValidators::Matches::DoesNotMatchError:
|
|
1564
|
+
:scoped_path:
|
|
1565
|
+
- DoesNotMatchError
|
|
1566
|
+
:scoped_name: DoesNotMatchError
|
|
1567
|
+
:scoped_short_name: DoesNotMatchError
|
|
1568
|
+
:scoped_prefix:
|
|
1569
|
+
:scoped_full_path:
|
|
1570
|
+
- string
|
|
1571
|
+
- SupportedValidators
|
|
1572
|
+
- Matches
|
|
1573
|
+
- DoesNotMatchError
|
|
1574
|
+
:scoped_full_name: string::SupportedValidators::Matches::DoesNotMatchError
|
|
1575
|
+
:scoped_category: :error
|
|
1576
|
+
:reference: string::SupportedValidators::Matches::DoesNotMatchError
|
|
1577
|
+
:domain: global_organization::global_domain
|
|
1578
|
+
:organization: global_organization
|
|
1579
|
+
:parent:
|
|
1580
|
+
- :processor_class
|
|
1581
|
+
- string::SupportedValidators::Matches
|
|
1582
|
+
:types_depended_on:
|
|
1583
|
+
- array
|
|
1584
|
+
- attributes
|
|
1585
|
+
- duck
|
|
1586
|
+
- string
|
|
1587
|
+
- symbol
|
|
1588
|
+
:category: :data
|
|
1589
|
+
:symbol: :does_not_match
|
|
1590
|
+
:context_type_declaration:
|
|
1591
|
+
:type: :attributes
|
|
1592
|
+
:element_type_declarations:
|
|
1593
|
+
:value: :string
|
|
1594
|
+
:regex: :duck
|
|
1595
|
+
:is_fatal: false
|
|
1596
|
+
:error_class: Foobara::BuiltinTypes::String::SupportedValidators::Matches::DoesNotMatchError
|
|
1597
|
+
:base_error: Foobara::Value::DataError
|
|
1598
|
+
:string::SupportedValidators::MaxLength::MaxLengthExceededError:
|
|
1599
|
+
:scoped_path:
|
|
1600
|
+
- MaxLengthExceededError
|
|
1601
|
+
:scoped_name: MaxLengthExceededError
|
|
1602
|
+
:scoped_short_name: MaxLengthExceededError
|
|
1603
|
+
:scoped_prefix:
|
|
1604
|
+
:scoped_full_path:
|
|
1605
|
+
- string
|
|
1606
|
+
- SupportedValidators
|
|
1607
|
+
- MaxLength
|
|
1608
|
+
- MaxLengthExceededError
|
|
1609
|
+
:scoped_full_name: string::SupportedValidators::MaxLength::MaxLengthExceededError
|
|
1610
|
+
:scoped_category: :error
|
|
1611
|
+
:reference: string::SupportedValidators::MaxLength::MaxLengthExceededError
|
|
1612
|
+
:domain: global_organization::global_domain
|
|
1613
|
+
:organization: global_organization
|
|
1614
|
+
:parent:
|
|
1615
|
+
- :processor_class
|
|
1616
|
+
- string::SupportedValidators::MaxLength
|
|
1617
|
+
:types_depended_on:
|
|
1618
|
+
- array
|
|
1619
|
+
- attributes
|
|
1620
|
+
- duck
|
|
1621
|
+
- integer
|
|
1622
|
+
- string
|
|
1623
|
+
- symbol
|
|
1624
|
+
:category: :data
|
|
1625
|
+
:symbol: :max_length_exceeded
|
|
1626
|
+
:context_type_declaration:
|
|
1627
|
+
:type: :attributes
|
|
1628
|
+
:element_type_declarations:
|
|
1629
|
+
:value: :string
|
|
1630
|
+
:max_length: :integer
|
|
1631
|
+
:is_fatal: false
|
|
1632
|
+
:error_class: Foobara::BuiltinTypes::String::SupportedValidators::MaxLength::MaxLengthExceededError
|
|
1633
|
+
:base_error: Foobara::Value::DataError
|
|
1634
|
+
:organization:
|
|
1635
|
+
:Foobara:
|
|
1636
|
+
:scoped_path:
|
|
1637
|
+
- Foobara
|
|
1638
|
+
:scoped_name: Foobara
|
|
1639
|
+
:scoped_short_name: Foobara
|
|
1640
|
+
:scoped_prefix:
|
|
1641
|
+
:scoped_full_path:
|
|
1642
|
+
- Foobara
|
|
1643
|
+
:scoped_full_name: Foobara
|
|
1644
|
+
:scoped_category: :organization
|
|
1645
|
+
:reference: Foobara
|
|
1646
|
+
:domain: global_organization::global_domain
|
|
1647
|
+
:organization: Foobara
|
|
1648
|
+
:domains:
|
|
1649
|
+
- Foobara::Auth
|
|
1650
|
+
:global_organization:
|
|
1651
|
+
:scoped_path: []
|
|
1652
|
+
:scoped_name:
|
|
1653
|
+
:scoped_short_name:
|
|
1654
|
+
:scoped_prefix: []
|
|
1655
|
+
:scoped_full_path: []
|
|
1656
|
+
:scoped_full_name: ''
|
|
1657
|
+
:scoped_category: :organization
|
|
1658
|
+
:reference: global_organization
|
|
1659
|
+
:domain: global_organization::global_domain
|
|
1660
|
+
:organization: global_organization
|
|
1661
|
+
:domains:
|
|
1662
|
+
- global_organization::global_domain
|