inversify 6.0.1 → 6.0.3
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.
- package/.nyc_output/c29b2307-4e95-47d0-b220-9efcfa7ee49f.json +1 -0
- package/.nyc_output/processinfo/c29b2307-4e95-47d0-b220-9efcfa7ee49f.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/CHANGELOG.md +33 -3
- package/README.md +27 -24
- package/amd/annotation/decorator_utils.js +14 -12
- package/amd/annotation/inject.js +5 -2
- package/amd/annotation/inject_base.js +2 -4
- package/amd/annotation/injectable.js +6 -4
- package/amd/annotation/lazy_service_identifier.js +6 -7
- package/amd/annotation/multi_inject.js +5 -2
- package/amd/annotation/named.js +6 -4
- package/amd/annotation/optional.js +6 -4
- package/amd/annotation/post_construct.js +5 -2
- package/amd/annotation/pre_destroy.js +5 -2
- package/amd/annotation/property_event_decorator.js +1 -3
- package/amd/annotation/tagged.js +1 -3
- package/amd/annotation/target_name.js +6 -4
- package/amd/annotation/unmanaged.js +6 -4
- package/amd/bindings/binding.js +0 -1
- package/amd/bindings/binding_count.js +1 -3
- package/amd/constants/error_msgs.js +52 -43
- package/amd/constants/literal_types.js +14 -15
- package/amd/constants/metadata_keys.js +12 -13
- package/amd/container/container.js +27 -18
- package/amd/container/container_module.js +0 -1
- package/amd/container/container_snapshot.js +0 -1
- package/amd/container/lookup.js +5 -2
- package/amd/container/module_activation_store.js +0 -1
- package/amd/interfaces/interfaces.js +1 -3
- package/amd/inversify.js +9 -5
- package/amd/planning/context.js +0 -1
- package/amd/planning/metadata.js +7 -4
- package/amd/planning/metadata_reader.js +5 -2
- package/amd/planning/plan.js +0 -1
- package/amd/planning/planner.js +13 -11
- package/amd/planning/queryable_string.js +3 -4
- package/amd/planning/reflection_utils.js +15 -12
- package/amd/planning/request.js +0 -1
- package/amd/planning/target.js +6 -3
- package/amd/resolution/instantiation.js +19 -13
- package/amd/resolution/resolver.js +10 -8
- package/amd/scope/scope.js +8 -9
- package/amd/syntax/binding_in_syntax.js +0 -1
- package/amd/syntax/binding_in_when_on_syntax.js +0 -1
- package/amd/syntax/binding_on_syntax.js +0 -1
- package/amd/syntax/binding_to_syntax.js +6 -3
- package/amd/syntax/binding_when_on_syntax.js +0 -1
- package/amd/syntax/binding_when_syntax.js +0 -1
- package/amd/syntax/constraint_helpers.js +6 -3
- package/amd/utils/async.js +2 -4
- package/amd/utils/binding_utils.js +9 -6
- package/amd/utils/clonable.js +1 -3
- package/amd/utils/exceptions.js +9 -6
- package/amd/utils/factory_type.js +1 -2
- package/amd/utils/id.js +1 -3
- package/amd/utils/js.js +1 -3
- package/amd/utils/serialization.js +26 -24
- package/es/annotation/decorator_utils.js +8 -9
- package/es/annotation/inject.js +2 -3
- package/es/annotation/inject_base.js +4 -5
- package/es/annotation/injectable.js +2 -3
- package/es/annotation/lazy_service_identifier.js +5 -6
- package/es/annotation/multi_inject.js +2 -3
- package/es/annotation/named.js +3 -4
- package/es/annotation/optional.js +3 -4
- package/es/annotation/post_construct.js +3 -4
- package/es/annotation/pre_destroy.js +3 -4
- package/es/annotation/property_event_decorator.js +1 -2
- package/es/annotation/tagged.js +0 -1
- package/es/annotation/target_name.js +0 -1
- package/es/annotation/unmanaged.js +3 -4
- package/es/bindings/binding.js +2 -3
- package/es/bindings/binding_count.js +1 -3
- package/es/constants/error_msgs.js +52 -43
- package/es/constants/literal_types.js +14 -15
- package/es/constants/metadata_keys.js +12 -13
- package/es/container/container.js +36 -31
- package/es/container/container_module.js +1 -2
- package/es/container/container_snapshot.js +0 -1
- package/es/container/lookup.js +2 -3
- package/es/container/module_activation_store.js +1 -2
- package/es/interfaces/interfaces.js +0 -1
- package/es/inversify.js +24 -24
- package/es/planning/context.js +1 -2
- package/es/planning/metadata.js +3 -4
- package/es/planning/metadata_reader.js +1 -2
- package/es/planning/plan.js +0 -1
- package/es/planning/planner.js +17 -18
- package/es/planning/queryable_string.js +3 -4
- package/es/planning/reflection_utils.js +13 -14
- package/es/planning/request.js +1 -2
- package/es/planning/target.js +1 -2
- package/es/resolution/instantiation.js +17 -14
- package/es/resolution/resolver.js +12 -13
- package/es/scope/scope.js +5 -6
- package/es/syntax/binding_in_syntax.js +2 -3
- package/es/syntax/binding_in_when_on_syntax.js +3 -4
- package/es/syntax/binding_on_syntax.js +1 -2
- package/es/syntax/binding_to_syntax.js +1 -2
- package/es/syntax/binding_when_on_syntax.js +2 -3
- package/es/syntax/binding_when_syntax.js +2 -3
- package/es/syntax/constraint_helpers.js +3 -4
- package/es/utils/async.js +0 -1
- package/es/utils/binding_utils.js +6 -7
- package/es/utils/clonable.js +0 -1
- package/es/utils/exceptions.js +3 -4
- package/es/utils/factory_type.js +0 -1
- package/es/utils/id.js +0 -1
- package/es/utils/js.js +0 -1
- package/es/utils/serialization.js +16 -17
- package/es6/annotation/decorator_utils.js +12 -10
- package/es6/annotation/inject.js +5 -2
- package/es6/annotation/inject_base.js +2 -4
- package/es6/annotation/injectable.js +6 -4
- package/es6/annotation/lazy_service_identifier.js +3 -4
- package/es6/annotation/multi_inject.js +5 -2
- package/es6/annotation/named.js +6 -4
- package/es6/annotation/optional.js +6 -4
- package/es6/annotation/post_construct.js +5 -2
- package/es6/annotation/pre_destroy.js +5 -2
- package/es6/annotation/property_event_decorator.js +1 -3
- package/es6/annotation/tagged.js +1 -3
- package/es6/annotation/target_name.js +6 -4
- package/es6/annotation/unmanaged.js +6 -4
- package/es6/bindings/binding.js +0 -1
- package/es6/bindings/binding_count.js +1 -3
- package/es6/constants/error_msgs.js +46 -38
- package/es6/constants/literal_types.js +14 -15
- package/es6/constants/metadata_keys.js +12 -13
- package/es6/container/container.js +35 -27
- package/es6/container/container_module.js +0 -1
- package/es6/container/container_snapshot.js +0 -1
- package/es6/container/lookup.js +5 -2
- package/es6/container/module_activation_store.js +0 -1
- package/es6/interfaces/interfaces.js +1 -3
- package/es6/inversify.js +9 -4
- package/es6/planning/context.js +0 -1
- package/es6/planning/metadata.js +5 -2
- package/es6/planning/metadata_reader.js +5 -2
- package/es6/planning/plan.js +0 -1
- package/es6/planning/planner.js +12 -10
- package/es6/planning/queryable_string.js +3 -4
- package/es6/planning/reflection_utils.js +12 -9
- package/es6/planning/request.js +0 -1
- package/es6/planning/target.js +6 -3
- package/es6/resolution/instantiation.js +15 -9
- package/es6/resolution/resolver.js +7 -5
- package/es6/scope/scope.js +5 -6
- package/es6/syntax/binding_in_syntax.js +0 -1
- package/es6/syntax/binding_in_when_on_syntax.js +0 -1
- package/es6/syntax/binding_on_syntax.js +0 -1
- package/es6/syntax/binding_to_syntax.js +5 -2
- package/es6/syntax/binding_when_on_syntax.js +0 -1
- package/es6/syntax/binding_when_syntax.js +0 -1
- package/es6/syntax/constraint_helpers.js +6 -3
- package/es6/utils/async.js +2 -4
- package/es6/utils/binding_utils.js +7 -4
- package/es6/utils/clonable.js +1 -3
- package/es6/utils/exceptions.js +9 -6
- package/es6/utils/factory_type.js +1 -2
- package/es6/utils/id.js +1 -3
- package/es6/utils/js.js +1 -3
- package/es6/utils/serialization.js +20 -18
- package/lib/annotation/decorator_utils.d.ts +5 -5
- package/lib/annotation/decorator_utils.js +14 -12
- package/lib/annotation/inject.d.ts +1 -1
- package/lib/annotation/inject.js +5 -2
- package/lib/annotation/inject_base.d.ts +3 -3
- package/lib/annotation/inject_base.js +2 -4
- package/lib/annotation/injectable.d.ts +1 -1
- package/lib/annotation/injectable.js +6 -4
- package/lib/annotation/lazy_service_identifier.d.ts +3 -3
- package/lib/annotation/lazy_service_identifier.js +6 -7
- package/lib/annotation/multi_inject.d.ts +1 -1
- package/lib/annotation/multi_inject.js +5 -2
- package/lib/annotation/named.d.ts +1 -1
- package/lib/annotation/named.js +6 -4
- package/lib/annotation/optional.d.ts +1 -1
- package/lib/annotation/optional.js +6 -4
- package/lib/annotation/post_construct.js +5 -2
- package/lib/annotation/pre_destroy.js +5 -2
- package/lib/annotation/property_event_decorator.js +1 -3
- package/lib/annotation/tagged.d.ts +1 -1
- package/lib/annotation/tagged.js +1 -3
- package/lib/annotation/target_name.d.ts +1 -1
- package/lib/annotation/target_name.js +6 -4
- package/lib/annotation/unmanaged.d.ts +2 -2
- package/lib/annotation/unmanaged.js +6 -4
- package/lib/bindings/binding.d.ts +2 -2
- package/lib/bindings/binding.js +0 -1
- package/lib/bindings/binding_count.d.ts +1 -2
- package/lib/bindings/binding_count.js +1 -3
- package/lib/constants/error_msgs.js +52 -43
- package/lib/constants/literal_types.d.ts +1 -1
- package/lib/constants/literal_types.js +14 -15
- package/lib/constants/metadata_keys.js +12 -13
- package/lib/container/container.d.ts +2 -2
- package/lib/container/container.js +27 -18
- package/lib/container/container_module.d.ts +1 -1
- package/lib/container/container_module.js +0 -1
- package/lib/container/container_snapshot.d.ts +1 -1
- package/lib/container/container_snapshot.js +0 -1
- package/lib/container/lookup.d.ts +1 -1
- package/lib/container/lookup.js +5 -2
- package/lib/container/module_activation_store.d.ts +1 -1
- package/lib/container/module_activation_store.js +0 -1
- package/lib/interfaces/interfaces.d.ts +23 -22
- package/lib/interfaces/interfaces.js +1 -3
- package/lib/inversify.d.ts +24 -23
- package/lib/inversify.js +9 -4
- package/lib/planning/context.d.ts +1 -1
- package/lib/planning/context.js +0 -1
- package/lib/planning/metadata.d.ts +1 -1
- package/lib/planning/metadata.js +7 -4
- package/lib/planning/metadata_reader.d.ts +1 -1
- package/lib/planning/metadata_reader.js +5 -2
- package/lib/planning/plan.d.ts +1 -1
- package/lib/planning/plan.js +0 -1
- package/lib/planning/planner.d.ts +1 -1
- package/lib/planning/planner.js +13 -11
- package/lib/planning/queryable_string.d.ts +1 -1
- package/lib/planning/queryable_string.js +3 -4
- package/lib/planning/reflection_utils.d.ts +2 -2
- package/lib/planning/reflection_utils.js +15 -12
- package/lib/planning/request.d.ts +1 -1
- package/lib/planning/request.js +0 -1
- package/lib/planning/target.js +6 -3
- package/lib/resolution/instantiation.d.ts +1 -1
- package/lib/resolution/instantiation.js +19 -13
- package/lib/resolution/resolver.d.ts +1 -1
- package/lib/resolution/resolver.js +10 -8
- package/lib/scope/scope.d.ts +1 -1
- package/lib/scope/scope.js +8 -9
- package/lib/syntax/binding_in_syntax.d.ts +1 -1
- package/lib/syntax/binding_in_syntax.js +0 -1
- package/lib/syntax/binding_in_when_on_syntax.d.ts +1 -1
- package/lib/syntax/binding_in_when_on_syntax.js +0 -1
- package/lib/syntax/binding_on_syntax.d.ts +1 -1
- package/lib/syntax/binding_on_syntax.js +0 -1
- package/lib/syntax/binding_to_syntax.d.ts +1 -1
- package/lib/syntax/binding_to_syntax.js +6 -3
- package/lib/syntax/binding_when_on_syntax.d.ts +1 -1
- package/lib/syntax/binding_when_on_syntax.js +0 -1
- package/lib/syntax/binding_when_syntax.d.ts +1 -1
- package/lib/syntax/binding_when_syntax.js +0 -1
- package/lib/syntax/constraint_helpers.d.ts +1 -1
- package/lib/syntax/constraint_helpers.js +6 -3
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/utils/async.js +2 -4
- package/lib/utils/binding_utils.d.ts +1 -1
- package/lib/utils/binding_utils.js +9 -6
- package/lib/utils/clonable.d.ts +1 -1
- package/lib/utils/clonable.js +1 -3
- package/lib/utils/exceptions.d.ts +1 -1
- package/lib/utils/exceptions.js +9 -6
- package/lib/utils/factory_type.js +1 -2
- package/lib/utils/id.js +1 -3
- package/lib/utils/js.js +1 -3
- package/lib/utils/serialization.d.ts +1 -1
- package/lib/utils/serialization.js +26 -24
- package/package.json +46 -61
- package/.auditignore +0 -2
- package/.nyc_output/c19faffc-964b-4370-81a6-9b4942f3c35e.json +0 -1
- package/.nyc_output/processinfo/c19faffc-964b-4370-81a6-9b4942f3c35e.json +0 -1
- package/CODE_OF_CONDUCT.md +0 -46
- package/amd/annotation/decorator_utils.js.map +0 -1
- package/amd/annotation/inject.js.map +0 -1
- package/amd/annotation/inject_base.js.map +0 -1
- package/amd/annotation/injectable.js.map +0 -1
- package/amd/annotation/lazy_service_identifier.js.map +0 -1
- package/amd/annotation/multi_inject.js.map +0 -1
- package/amd/annotation/named.js.map +0 -1
- package/amd/annotation/optional.js.map +0 -1
- package/amd/annotation/post_construct.js.map +0 -1
- package/amd/annotation/pre_destroy.js.map +0 -1
- package/amd/annotation/property_event_decorator.js.map +0 -1
- package/amd/annotation/tagged.js.map +0 -1
- package/amd/annotation/target_name.js.map +0 -1
- package/amd/annotation/unmanaged.js.map +0 -1
- package/amd/bindings/binding.js.map +0 -1
- package/amd/bindings/binding_count.js.map +0 -1
- package/amd/constants/error_msgs.js.map +0 -1
- package/amd/constants/literal_types.js.map +0 -1
- package/amd/constants/metadata_keys.js.map +0 -1
- package/amd/container/container.js.map +0 -1
- package/amd/container/container_module.js.map +0 -1
- package/amd/container/container_snapshot.js.map +0 -1
- package/amd/container/lookup.js.map +0 -1
- package/amd/container/module_activation_store.js.map +0 -1
- package/amd/interfaces/interfaces.js.map +0 -1
- package/amd/inversify.js.map +0 -1
- package/amd/planning/context.js.map +0 -1
- package/amd/planning/metadata.js.map +0 -1
- package/amd/planning/metadata_reader.js.map +0 -1
- package/amd/planning/plan.js.map +0 -1
- package/amd/planning/planner.js.map +0 -1
- package/amd/planning/queryable_string.js.map +0 -1
- package/amd/planning/reflection_utils.js.map +0 -1
- package/amd/planning/request.js.map +0 -1
- package/amd/planning/target.js.map +0 -1
- package/amd/resolution/instantiation.js.map +0 -1
- package/amd/resolution/resolver.js.map +0 -1
- package/amd/scope/scope.js.map +0 -1
- package/amd/syntax/binding_in_syntax.js.map +0 -1
- package/amd/syntax/binding_in_when_on_syntax.js.map +0 -1
- package/amd/syntax/binding_on_syntax.js.map +0 -1
- package/amd/syntax/binding_to_syntax.js.map +0 -1
- package/amd/syntax/binding_when_on_syntax.js.map +0 -1
- package/amd/syntax/binding_when_syntax.js.map +0 -1
- package/amd/syntax/constraint_helpers.js.map +0 -1
- package/amd/utils/async.js.map +0 -1
- package/amd/utils/binding_utils.js.map +0 -1
- package/amd/utils/clonable.js.map +0 -1
- package/amd/utils/exceptions.js.map +0 -1
- package/amd/utils/factory_type.js.map +0 -1
- package/amd/utils/id.js.map +0 -1
- package/amd/utils/js.js.map +0 -1
- package/amd/utils/serialization.js.map +0 -1
- package/es/annotation/decorator_utils.js.map +0 -1
- package/es/annotation/inject.js.map +0 -1
- package/es/annotation/inject_base.js.map +0 -1
- package/es/annotation/injectable.js.map +0 -1
- package/es/annotation/lazy_service_identifier.js.map +0 -1
- package/es/annotation/multi_inject.js.map +0 -1
- package/es/annotation/named.js.map +0 -1
- package/es/annotation/optional.js.map +0 -1
- package/es/annotation/post_construct.js.map +0 -1
- package/es/annotation/pre_destroy.js.map +0 -1
- package/es/annotation/property_event_decorator.js.map +0 -1
- package/es/annotation/tagged.js.map +0 -1
- package/es/annotation/target_name.js.map +0 -1
- package/es/annotation/unmanaged.js.map +0 -1
- package/es/bindings/binding.js.map +0 -1
- package/es/bindings/binding_count.js.map +0 -1
- package/es/constants/error_msgs.js.map +0 -1
- package/es/constants/literal_types.js.map +0 -1
- package/es/constants/metadata_keys.js.map +0 -1
- package/es/container/container.js.map +0 -1
- package/es/container/container_module.js.map +0 -1
- package/es/container/container_snapshot.js.map +0 -1
- package/es/container/lookup.js.map +0 -1
- package/es/container/module_activation_store.js.map +0 -1
- package/es/interfaces/interfaces.js.map +0 -1
- package/es/inversify.js.map +0 -1
- package/es/planning/context.js.map +0 -1
- package/es/planning/metadata.js.map +0 -1
- package/es/planning/metadata_reader.js.map +0 -1
- package/es/planning/plan.js.map +0 -1
- package/es/planning/planner.js.map +0 -1
- package/es/planning/queryable_string.js.map +0 -1
- package/es/planning/reflection_utils.js.map +0 -1
- package/es/planning/request.js.map +0 -1
- package/es/planning/target.js.map +0 -1
- package/es/resolution/instantiation.js.map +0 -1
- package/es/resolution/resolver.js.map +0 -1
- package/es/scope/scope.js.map +0 -1
- package/es/syntax/binding_in_syntax.js.map +0 -1
- package/es/syntax/binding_in_when_on_syntax.js.map +0 -1
- package/es/syntax/binding_on_syntax.js.map +0 -1
- package/es/syntax/binding_to_syntax.js.map +0 -1
- package/es/syntax/binding_when_on_syntax.js.map +0 -1
- package/es/syntax/binding_when_syntax.js.map +0 -1
- package/es/syntax/constraint_helpers.js.map +0 -1
- package/es/utils/async.js.map +0 -1
- package/es/utils/binding_utils.js.map +0 -1
- package/es/utils/clonable.js.map +0 -1
- package/es/utils/exceptions.js.map +0 -1
- package/es/utils/factory_type.js.map +0 -1
- package/es/utils/id.js.map +0 -1
- package/es/utils/js.js.map +0 -1
- package/es/utils/serialization.js.map +0 -1
- package/es6/annotation/decorator_utils.js.map +0 -1
- package/es6/annotation/inject.js.map +0 -1
- package/es6/annotation/inject_base.js.map +0 -1
- package/es6/annotation/injectable.js.map +0 -1
- package/es6/annotation/lazy_service_identifier.js.map +0 -1
- package/es6/annotation/multi_inject.js.map +0 -1
- package/es6/annotation/named.js.map +0 -1
- package/es6/annotation/optional.js.map +0 -1
- package/es6/annotation/post_construct.js.map +0 -1
- package/es6/annotation/pre_destroy.js.map +0 -1
- package/es6/annotation/property_event_decorator.js.map +0 -1
- package/es6/annotation/tagged.js.map +0 -1
- package/es6/annotation/target_name.js.map +0 -1
- package/es6/annotation/unmanaged.js.map +0 -1
- package/es6/bindings/binding.js.map +0 -1
- package/es6/bindings/binding_count.js.map +0 -1
- package/es6/constants/error_msgs.js.map +0 -1
- package/es6/constants/literal_types.js.map +0 -1
- package/es6/constants/metadata_keys.js.map +0 -1
- package/es6/container/container.js.map +0 -1
- package/es6/container/container_module.js.map +0 -1
- package/es6/container/container_snapshot.js.map +0 -1
- package/es6/container/lookup.js.map +0 -1
- package/es6/container/module_activation_store.js.map +0 -1
- package/es6/interfaces/interfaces.js.map +0 -1
- package/es6/inversify.js.map +0 -1
- package/es6/planning/context.js.map +0 -1
- package/es6/planning/metadata.js.map +0 -1
- package/es6/planning/metadata_reader.js.map +0 -1
- package/es6/planning/plan.js.map +0 -1
- package/es6/planning/planner.js.map +0 -1
- package/es6/planning/queryable_string.js.map +0 -1
- package/es6/planning/reflection_utils.js.map +0 -1
- package/es6/planning/request.js.map +0 -1
- package/es6/planning/target.js.map +0 -1
- package/es6/resolution/instantiation.js.map +0 -1
- package/es6/resolution/resolver.js.map +0 -1
- package/es6/scope/scope.js.map +0 -1
- package/es6/syntax/binding_in_syntax.js.map +0 -1
- package/es6/syntax/binding_in_when_on_syntax.js.map +0 -1
- package/es6/syntax/binding_on_syntax.js.map +0 -1
- package/es6/syntax/binding_to_syntax.js.map +0 -1
- package/es6/syntax/binding_when_on_syntax.js.map +0 -1
- package/es6/syntax/binding_when_syntax.js.map +0 -1
- package/es6/syntax/constraint_helpers.js.map +0 -1
- package/es6/utils/async.js.map +0 -1
- package/es6/utils/binding_utils.js.map +0 -1
- package/es6/utils/clonable.js.map +0 -1
- package/es6/utils/exceptions.js.map +0 -1
- package/es6/utils/factory_type.js.map +0 -1
- package/es6/utils/id.js.map +0 -1
- package/es6/utils/js.js.map +0 -1
- package/es6/utils/serialization.js.map +0 -1
- package/lib/annotation/decorator_utils.js.map +0 -1
- package/lib/annotation/inject.js.map +0 -1
- package/lib/annotation/inject_base.js.map +0 -1
- package/lib/annotation/injectable.js.map +0 -1
- package/lib/annotation/lazy_service_identifier.js.map +0 -1
- package/lib/annotation/multi_inject.js.map +0 -1
- package/lib/annotation/named.js.map +0 -1
- package/lib/annotation/optional.js.map +0 -1
- package/lib/annotation/post_construct.js.map +0 -1
- package/lib/annotation/pre_destroy.js.map +0 -1
- package/lib/annotation/property_event_decorator.js.map +0 -1
- package/lib/annotation/tagged.js.map +0 -1
- package/lib/annotation/target_name.js.map +0 -1
- package/lib/annotation/unmanaged.js.map +0 -1
- package/lib/bindings/binding.js.map +0 -1
- package/lib/bindings/binding_count.js.map +0 -1
- package/lib/constants/error_msgs.js.map +0 -1
- package/lib/constants/literal_types.js.map +0 -1
- package/lib/constants/metadata_keys.js.map +0 -1
- package/lib/container/container.js.map +0 -1
- package/lib/container/container_module.js.map +0 -1
- package/lib/container/container_snapshot.js.map +0 -1
- package/lib/container/lookup.js.map +0 -1
- package/lib/container/module_activation_store.js.map +0 -1
- package/lib/interfaces/interfaces.js.map +0 -1
- package/lib/inversify.js.map +0 -1
- package/lib/planning/context.js.map +0 -1
- package/lib/planning/metadata.js.map +0 -1
- package/lib/planning/metadata_reader.js.map +0 -1
- package/lib/planning/plan.js.map +0 -1
- package/lib/planning/planner.js.map +0 -1
- package/lib/planning/queryable_string.js.map +0 -1
- package/lib/planning/reflection_utils.js.map +0 -1
- package/lib/planning/request.js.map +0 -1
- package/lib/planning/target.js.map +0 -1
- package/lib/resolution/instantiation.js.map +0 -1
- package/lib/resolution/resolver.js.map +0 -1
- package/lib/scope/scope.js.map +0 -1
- package/lib/syntax/binding_in_syntax.js.map +0 -1
- package/lib/syntax/binding_in_when_on_syntax.js.map +0 -1
- package/lib/syntax/binding_on_syntax.js.map +0 -1
- package/lib/syntax/binding_to_syntax.js.map +0 -1
- package/lib/syntax/binding_when_on_syntax.js.map +0 -1
- package/lib/syntax/binding_when_syntax.js.map +0 -1
- package/lib/syntax/constraint_helpers.js.map +0 -1
- package/lib/utils/async.js.map +0 -1
- package/lib/utils/binding_utils.js.map +0 -1
- package/lib/utils/clonable.js.map +0 -1
- package/lib/utils/exceptions.js.map +0 -1
- package/lib/utils/factory_type.js.map +0 -1
- package/lib/utils/id.js.map +0 -1
- package/lib/utils/js.js.map +0 -1
- package/lib/utils/serialization.js.map +0 -1
- package/mocha.opts +0 -3
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/constants/metadata_keys.ts","../src/utils/factory_type.ts","../src/interfaces/interfaces.ts","../src/constants/literal_types.ts","../src/utils/id.ts","../src/bindings/binding.ts","../src/constants/error_msgs.ts","../src/planning/metadata_reader.ts","../src/bindings/binding_count.ts","../src/utils/exceptions.ts","../src/utils/serialization.ts","../src/planning/context.ts","../src/planning/metadata.ts","../src/planning/plan.ts","../src/annotation/lazy_service_identifier.ts","../src/planning/queryable_string.ts","../src/planning/target.ts","../src/planning/reflection_utils.ts","../src/planning/request.ts","../src/planning/planner.ts","../src/utils/async.ts","../src/scope/scope.ts","../src/utils/binding_utils.ts","../src/resolution/instantiation.ts","../src/resolution/resolver.ts","../src/syntax/constraint_helpers.ts","../src/syntax/binding_when_syntax.ts","../src/syntax/binding_on_syntax.ts","../src/syntax/binding_when_on_syntax.ts","../src/syntax/binding_in_syntax.ts","../src/syntax/binding_in_when_on_syntax.ts","../src/syntax/binding_to_syntax.ts","../src/container/container_snapshot.ts","../src/utils/clonable.ts","../src/container/lookup.ts","../src/container/module_activation_store.ts","../src/container/container.ts","../src/container/container_module.ts","../src/utils/js.ts","../src/annotation/decorator_utils.ts","../src/annotation/injectable.ts","../src/annotation/tagged.ts","../src/annotation/named.ts","../src/annotation/inject_base.ts","../src/annotation/inject.ts","../src/annotation/optional.ts","../src/annotation/unmanaged.ts","../src/annotation/multi_inject.ts","../src/annotation/target_name.ts","../src/annotation/property_event_decorator.ts","../src/annotation/post_construct.ts","../src/annotation/pre_destroy.ts","../src/inversify.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"e54c8715a4954cfdc66cd69489f2b725c09ebf37492dbd91cff0a1688b1159e8","affectsGlobalScope":true},{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},{"version":"4986bee237323346e7defc242a6891344f0de9fdb083487c4707f8dc600228b7","signature":"eaabb1e7b81cd2721213042e4f0da99bfe10967809d5f2041f59a0561a76062e"},{"version":"1577879ad5b320e1b66b7f0db10ec9583962df4aeff56a2429dacd5b3ce5b353","signature":"1978f60de633b51c1b37112343938a3396e0f34efd33ec350319625006f44644"},{"version":"39ae6c92281eb196289589fe0282f4999d091d060539e45680946744d5fcc47a","signature":"ed2e5f00ed2331035a55060fe4cf566563d9a0ad4f244626ac3c68d7746a409e"},{"version":"f75cde36f0a73877f43e5c2ed05c42710bed2dec030413866e4b66d57467d5f8","signature":"223c30250c2d0774405136fe412f0c654acbd1f5ebc80d711d0a4413ced11520"},{"version":"9d92c0642ca5422ccd029a80827a5879ec31e2aee23245bd9a251f3190d9ff97","signature":"c624c0d0d777a670e2b2d8003ec91519e93048963a3236aeab1ec55a8529c382"},{"version":"152e1e76d74a2ce87c4ca0ebc48bcb68a03c2f451a111e0cf6f7765796f56bc3","signature":"990d8521473c8ce457160875a9e754bddb0003bc8055cd72a4862bf6c2bacb19"},{"version":"0cc44ed2876a27c823f93a4ad6e4c31abf909348f75eb12bbc2fef901aa0eb79","signature":"f55b2db8ac16486fab8d628b23620d22fda8ddb0a977a7a93f157e6f8f4f6bd5"},{"version":"57f86e116acc6ca488a33eb74d10c0242780bd911a2e8684ec179643ea7b498c","signature":"fbb2d0bf92c4cd6129ff2174d98d023c823c9669fc7136b6eee4cf68739afd64"},{"version":"47aeb4ca2d489d87ed9c09b91703d564d99fafac5596197eda49b1e9d4c9f16e","signature":"2643762a79c290aa2bd3ffc2d8f41e5904c2b228dbb37a8178ae384ff5b2f2a2"},{"version":"d470cdbc9f082eb3186a1c422028d8bb804e7535134fc78f3b01ed903570de02","signature":"0052c85f3f1602a427a1c471a4377348c3f56bf8c5ac25c952dd3ef7004660c2"},{"version":"7747b8b3eb3ad1b145a7c99a7e746b0ef20ae538cb3c8be3b4f2aa898be79a34","signature":"107039042b3e99af6580791cb93c6e1f4986d988a59c96a3eec215977ec9da84"},{"version":"4892a0c32dee1f72c4d8842184f44cddce848232b474bf37b26a3dcfc9821102","signature":"8329275370bc7f2ed265a34bae6e811e0e58dd500c0c23d261c5694219590131"},{"version":"57a7d52b2dc4b64cfff2f1a46bfb3e3d5cfffb703b54f0a59ffea13323dc44f3","signature":"b00c43819ac892c43f50ac48d56526c9f10a3889c2f099f9d7fd6fa0d1ec0553"},{"version":"ab2b1c4607f8c952289f5b48c6ea887f176660ea8230446c20b3cc37f92f0dd7","signature":"cf7870ed88ff1f386043db6546d70a8893e94f41864c96eedb114c5defb03395"},{"version":"e8b63f9ea7b40fa07e44418eb2600897adf1f999f50c9beb494a75458e7e3d6d","signature":"14f8f7229dc160da4e777209fff13e0dc1ea916812c45710ffc10271e445b372"},{"version":"ac16d3ae2b517c50b0dfa7d0df2f6e3dfab448c677fcd4163650bea8108272c4","signature":"26456f8e8fe88eaf86a8a144798b569d0dfa147e287f3ed5e9fc18225f917b62"},{"version":"e10973050b9006890cdc5317e05ef427bf0d5e326219cb9f6756c387a7d383cc","signature":"7dd03f55716e722f52d3345842b4136a485bd288c1812e1a8efb21fae65e56fa"},{"version":"3f68dacec370cbcce449bda301f4ec6f9a30fbf1fd67c698b7b6fba013fc61f9","signature":"1cc26b71c9d5603e6c2a603d4ad02736582701efcbc88b833bd1ba530856a708"},{"version":"19486a07036a01531e166b4faf393b7bcc5b9d7fb2c70c605b9237c54abfbfc1","signature":"ea7e4e0ff0622ef82a9656855a54b9692497cc1a574653909341a11ea4202b79"},{"version":"d50c91cb1578b15fd4d94dbbd6b2d92ff55b0e322ea2f081dd8f028438b1bed9","signature":"8f4dca290be7eacb8171a7e6f30359a27349b35038edaccf616670b16a3b68e2"},{"version":"44786221f798332728a6b5c47324f4365108c14a27c88f3e5c86c896c64a1786","signature":"9addde6e27b9f91d561d7c84a06ca78012bf438b1f0b2e2f20fd84a6aa307602"},{"version":"b640568a24411fb2a83d7443e735ffb87260ee60f7bb6baafef24ad30bd2d007","signature":"f074ff18d951c43a6ab95a5de363f0c2d0fc2b3a50f2bf1e2cafd231c98b2a64"},{"version":"122be2c030f28c1a0ded46e598f1e4038e613a9b3c7372f0227b3e653854a469","signature":"162ecd4a2cd71e1162858c0c436085d4335bc0e16f1a7b6e5de174bc228476c1"},{"version":"4eb1fb5a42d1a95cbb308435292563190fc4b230dfba3015013c5ff880b8781d","signature":"7963a739717fa32564ad3b3e05c33f7f658867694692d17b3d4c1345f0ad42fa"},{"version":"e2b6a01967a047cccc80a410bf2a776070d6e9543ee279ea2ee0ba956fd3fe3f","signature":"e734e2f12b8685a0bd073188a01d5e7dda95d504a93180dcca6e94576e92e6a7"},{"version":"6d833cbb2b8290bd74e3990e6e052c62c7f6b56949cd412b127bbf5063cabef4","signature":"9cf63e5a94711b93ee4866432f44b7b1011fe12a44ed527687bc94e0cb69a8f1"},{"version":"cb520a28f8e382c1d04060498b89151a0d7ca41ebf0a2e1e8f9d785e78936ebd","signature":"a6f6225a05eb1d49dfe76dd32416d59b05805a730fe07dcfdd44cd9e34247117"},{"version":"35a4267b6ecb4593e6a93109b798e9e3755d4ab23288c4ee1e487222555e86c6","signature":"794264bd0d100205281ec56a556d4d05c37c26c9459702a8b3be1e0af9e94008"},{"version":"04dc3b5eccbbb59043c55de05c09beef1b3ea11b58c53a76d4a190cb8e3abf39","signature":"c6bc75ffb95dd46b6b1010f82e633ad2fd5ed80b1e241b752db3ca42011ae38f"},{"version":"f51798dfabd0c61e20dcdada26eb03f2bee1ea9b5a918661d74593f13fb1f064","signature":"e72b75f50f2678ad7796d02d74a877c9d4acc249012c83bbe74fd5b1796d96b9"},{"version":"7303da70440e108ed192baf354960e6b4cdff24424e68230049eb5ace227085c","signature":"c31145976cfc697aa8385c5b8cc07266c5900cbb1a561cc2204af878af19d1b2"},{"version":"bc845eec8ba1a57e8ca44abdc2025835b241e69308da16093d95f2dac28f0b31","signature":"a008935bd9f99022c41fcf02c74f0f6643e82360a629f174d720fa5238fc7b1b"},{"version":"55942c41a51f176f017d40d03b2d6b5c3a118969b3bbf9f431f6c34a8c4a7a37","signature":"c49b4ee1e21cfdd2291cbc33266c60cb12ff2a5b6a5a8b90d89050e7aa7da9ea"},{"version":"ace4a9ab6dfe87bf805619730e7a9f2aafdc0b8ccb90c7dc8c86125c1d9005a7","signature":"460de82e957f6782712f391184e88c8cb66973cc544a94b8f3bd64449351cede"},{"version":"df6280c6818434db3f4f4a9f993067dc2002a563e8e329dad4295543318eb5d4","signature":"6044ac4576c2e8bbc704afbbe7fd453402bdb3cbe7473d0409d7cedaafe14f53"},{"version":"229300a3a4f24f7cd315a5156797b5f28d3d3e4538e243b01cc00f0aa0e050a5","signature":"bc45cb74fabd96ec0c4153658d18bf6074be33a78bb22b320975060bdccf1d9c"},{"version":"c552e883247fae8432a87940a09c82e3980a4c93548ab5f21aed0e69289a6529","signature":"aa7bea1088ca848f8acbc95ad721cfad66564b36ae686f0d8e0f61f5f1eebc74"},{"version":"5ae75cbd1d9a779268db4cbadcd468a03946eefdb232350383adb783944d1c8d","signature":"d21addb8e9f07e85fe34b65dd38d156b2d29491585eb3a2d3754c85ff024dc78"},{"version":"fac32298c3077c5ca07862bc3e08c2253a943f0528aa51ce47cb00193e627020","signature":"44bf2d545c9ef5038b04fc7c60f8ef6867373875b83066646fef342683b5c274"},{"version":"59b8f6cd96dbfb661a0311ffc27ecbb142d809ab65d9268fadf972489281609e","signature":"b450999dcd3022198b654aca998bc7e791a18078546bba94cc5a761cf4d745ac"},{"version":"2ab8b6f3fcaeb3794c38db64b13eb0fa51874c9dbd32c0bc8c3366807d667cfb","signature":"6cb2aff9091fb8d29b769ddb8077f6b7e60e807205ac81e1b744108c46c23e43"},{"version":"7b731725c4a809855a80805efb972884db8acaa5f7c4de0118a5d2c11a9806b8","signature":"083bdbd3d16d43a8229e0685cac1bc115a02b4f4cd4529349e4f704640348e05"},{"version":"5157982c1048df9fcaf7ddf354d574890be317539ae5df6d6ec6ecdee51d3a82","signature":"4a189baba4918b3455ad1a4edb5dab25a7ce17aae973f699391372db375dc4bc"},{"version":"aceedc56c07e655b945252c3712795a3cc1ccdd1d4494218e974b90f1f02f207","signature":"6dec5837fce161e0222208664c8942ecf46a7720b41cc9516167b1d2598534e4"},{"version":"49e8fd72e562827a28681e15b4d6f678c49c5a902b7acd4ea25be0631582d677","signature":"6374d1d692ca3148c270fa8839426acb48e435883ae8ca0f2ee05de84fd2ce5e"},{"version":"50bf74aee511fe9c874ac9ac0cffa926326ee1a02befdfd9fe0ce5935e04dd49","signature":"97460ae7b9cd78a2eecbeac0ab270059350f0413907d436fd33f5126df86de0a"},{"version":"89631649a6f5d5d98adf8c3fd822dec45d31967670a1795ac41c30b12a47efd2","signature":"4d794bc0040a24b1108a2202f5ccb80733b58b03ecb031f36eba706018ec5e38"},{"version":"5bcc4caa46add342a67827b269d8ccef5ce508f081c52ab53852263d13a581eb","signature":"18a21bc2a815cd3ae0c03cf940cede0e73050c7913ca581de50c95cc5c8bf820"},{"version":"a8801ef4610c4b40887671009361693818b96cf558410e5419da6fd8f3902a2b","signature":"ec2f218c6c166acf0a56fbd083c37409d0887f6450c1758a9f546f444cb9397f"},{"version":"5ef12e433c65ccbf0d29f2ea9eac55156b12421d8c91ddc070ff9932e759bc1a","signature":"aee09aa0cc7908bff7a545e23757dc49640e3196e7efac21c0ce6d6630d0b4a4"},{"version":"e30a30378461e161789a0cba348a954f66c82538726537158c47387ca1cdb750","signature":"4c793a9fd5774f738e39559692d5aa61a829b67a64b78510acedba16403b04a9"},{"version":"9ba9ccf4b9c93c78b5f7b4d3a072048929fb0d48ee6c5981715efb14ce6ccabb","signature":"e4c5c9ac0ae2cefaff8e83ffde0f4b267e227afca15cd5ae7add0071cf2c5372"},{"version":"59de2e38d31a0f081a0a140444214c1d62552b0bcf449040f444c4ead01a6eac","signature":"a16fe48180c72fa9f95e016ca45e20f8da952a0e65504a998f41955d24c86b84"},{"version":"e8bf92aabac2b11e1bf60a0161039cd6f5f0cd9713863ca2289dd7b10eddece8","affectsGlobalScope":true},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true},"0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"43978f18d1165eea81040bc9bfac1a551717f5cc9bd0f13b31bf490c5fcdc75f","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","57a558a99ab24fdff45a2c2db0c34285de2dcbc66149d9a3d83fcde844426e37","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","cb428529763c6c8e38e42db2a39f333ffcc6d3aab396b24ac84b22da752c1de0","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"b5b1dff8e34c95907cf032450b67e8b3469308d6ded8e061a6f6cd2a26e4440b","a570c3f31ab0aaa84d83cbd9a272ab06011868a0eb9122324f67fe77751a98b1","944660c079e97f62f513c33ec64cebc44154374053d3a9adb04bf02f67ee1066","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"f3e8bcce378a26bc672fce0ec05affabbbbfa18493b76f24c39136dea87100d0","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","e70339a3d63f806c43f24250c42aa0000093923457b0ed7dfc10e0ac910ebca9","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","b810390059fc34122556c644f586e7a2b4598ded8afe5ba70bb82fc2e50577b1","ba9de5c5823e06ee3314f959c138cdaf4477d3a1a0769f0d24e62911020e8088","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"893f4b8552c248f6542174b53d1519f739b20428c970dda89cd90485dab059d0"],"options":{"allowUnreachableCode":false,"allowUnusedLabels":false,"composite":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":2,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../src","sourceMap":true,"strictNullChecks":true,"strictPropertyInitialization":true,"suppressImplicitAnyIndexErrors":false,"target":1},"fileIdsList":[[143],[100,143],[103,143],[104,109,143],[105,115,116,123,132,142,143],[105,106,115,123,143],[107,143],[108,109,116,124,143],[109,132,139,143],[110,112,115,123,143],[111,143],[112,113,143],[114,115,143],[115,143],[115,116,117,132,142,143],[115,116,117,132,143],[118,123,132,142,143],[115,116,118,119,123,132,139,142,143],[118,120,132,139,142,143],[100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149],[115,121,143],[122,142,143],[112,115,123,132,143],[124,143],[125,143],[103,126,143],[127,141,143,147],[128,143],[129,143],[115,130,143],[130,131,143,145],[115,132,133,134,143],[132,134,143],[132,133,143],[135,143],[136,143],[115,137,138,143],[137,138,143],[109,123,139,143],[140,143],[123,141,143],[104,118,129,142,143],[109,143],[132,143,144],[143,145],[143,146],[104,109,115,117,126,132,142,143,145,147],[132,143,148],[45,47,51,83,143],[45,88,143],[51,57,59,84,143],[45,51,143],[47,143],[45,57,84,143],[45,51,94,143],[57,143],[57,84,143],[47,48,49,143],[45,47,48,49,50,51,52,55,64,65,69,76,77,79,80,143],[47,49,143],[47,51,78,143],[47,79,143],[46,143],[45,47,48,49,52,55,59,67,70,81,82,84,85,86,87,89,90,91,92,93,95,96,143],[45,47,143],[45,47,48,51,53,54,55,56,57,58,61,62,63,143],[45,47,48,51,55,57,59,61,143],[45,47,49,55,57,60,143],[45,47,48,51,57,65,143],[47,48,51,54,64,65,66,67,68,143],[65,97,143],[47,48,73,143],[47,71,72,74,143],[47,71,143],[47,48,51,73,75,143],[47,71,72,143],[47,70,72,143],[45,47,57,143],[46,48,51,97,143],[51,143],[47,51,143],[47],[59,84],[84],[46],[45,47,48,49,52,55,59,67,70,81,82,84,85,86,87,89,90,91,92,93,95,96],[47,55],[47,57],[97],[47,73]],"referencedMap":[[98,1],[100,2],[101,2],[103,3],[104,4],[105,5],[106,6],[107,7],[108,8],[109,9],[110,10],[111,11],[112,12],[113,12],[114,13],[115,14],[116,15],[117,16],[102,1],[149,1],[118,17],[119,18],[120,19],[150,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,29],[130,30],[131,31],[132,32],[134,33],[133,34],[135,35],[136,36],[137,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[145,45],[146,46],[147,47],[148,48],[99,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[32,1],[33,1],[34,1],[35,1],[7,1],[40,1],[36,1],[37,1],[38,1],[39,1],[8,1],[41,1],[42,1],[43,1],[1,1],[9,1],[44,1],[84,49],[89,50],[88,51],[85,52],[59,53],[92,50],[87,54],[90,54],[95,55],[96,55],[94,56],[86,57],[93,54],[91,54],[50,58],[53,1],[51,1],[48,53],[45,1],[81,59],[82,60],[77,53],[79,61],[80,62],[47,63],[97,64],[56,60],[57,65],[52,65],[58,53],[64,66],[60,53],[62,67],[63,60],[61,68],[68,69],[69,70],[66,71],[74,72],[75,73],[72,74],[76,75],[73,76],[71,77],[70,78],[65,1],[67,79],[78,53],[54,80],[46,1],[49,1],[83,1],[55,81]],"exportedModulesMap":[[98,1],[100,2],[101,2],[103,3],[104,4],[105,5],[106,6],[107,7],[108,8],[109,9],[110,10],[111,11],[112,12],[113,12],[114,13],[115,14],[116,15],[117,16],[102,1],[149,1],[118,17],[119,18],[120,19],[150,20],[121,21],[122,22],[123,23],[124,24],[125,25],[126,26],[127,27],[128,28],[129,29],[130,30],[131,31],[132,32],[134,33],[133,34],[135,35],[136,36],[137,37],[138,38],[139,39],[140,40],[141,41],[142,42],[143,43],[144,44],[145,45],[146,46],[147,47],[148,48],[99,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[4,1],[24,1],[21,1],[22,1],[23,1],[25,1],[26,1],[27,1],[5,1],[28,1],[29,1],[30,1],[31,1],[6,1],[32,1],[33,1],[34,1],[35,1],[7,1],[40,1],[36,1],[37,1],[38,1],[39,1],[8,1],[41,1],[42,1],[43,1],[1,1],[9,1],[44,1],[84,82],[89,83],[88,83],[59,82],[92,83],[87,84],[90,84],[86,84],[93,84],[91,84],[50,82],[48,82],[81,82],[82,82],[77,82],[79,82],[80,82],[47,85],[97,86],[56,82],[57,82],[52,82],[58,82],[64,82],[60,82],[62,87],[63,82],[61,88],[68,82],[69,82],[66,89],[74,82],[75,82],[72,82],[76,90],[73,82],[71,82],[70,82],[67,89],[78,82],[55,82]],"semanticDiagnosticsPerFile":[98,100,101,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,102,149,118,119,120,150,121,122,123,124,125,126,127,128,129,130,131,132,134,133,135,136,137,138,139,140,141,142,143,144,145,146,147,148,99,10,12,11,2,13,14,15,16,17,18,19,20,3,4,24,21,22,23,25,26,27,5,28,29,30,31,6,32,33,34,35,7,40,36,37,38,39,8,41,42,43,1,9,44,84,89,88,85,59,92,87,90,95,96,94,86,93,91,50,53,51,48,45,81,82,77,79,80,47,97,56,57,52,58,64,60,62,63,61,68,69,66,74,75,72,76,73,71,70,65,67,78,54,46,49,83,55]},"version":"4.4.4"}
|
|
1
|
+
{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.array.d.ts","../node_modules/typescript/lib/lib.esnext.collection.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.string.d.ts","../node_modules/typescript/lib/lib.esnext.promise.d.ts","../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../node_modules/typescript/lib/lib.esnext.object.d.ts","../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants/metadata_keys.ts","../src/utils/factory_type.ts","../src/interfaces/interfaces.ts","../src/constants/literal_types.ts","../src/utils/id.ts","../src/bindings/binding.ts","../src/constants/error_msgs.ts","../src/planning/metadata_reader.ts","../src/bindings/binding_count.ts","../src/utils/exceptions.ts","../src/utils/serialization.ts","../src/planning/context.ts","../src/planning/metadata.ts","../src/planning/plan.ts","../src/annotation/lazy_service_identifier.ts","../src/planning/queryable_string.ts","../src/planning/target.ts","../src/planning/reflection_utils.ts","../src/planning/request.ts","../src/planning/planner.ts","../src/utils/async.ts","../src/scope/scope.ts","../src/utils/binding_utils.ts","../src/resolution/instantiation.ts","../src/resolution/resolver.ts","../src/syntax/constraint_helpers.ts","../src/syntax/binding_when_syntax.ts","../src/syntax/binding_on_syntax.ts","../src/syntax/binding_when_on_syntax.ts","../src/syntax/binding_in_syntax.ts","../src/syntax/binding_in_when_on_syntax.ts","../src/syntax/binding_to_syntax.ts","../src/container/container_snapshot.ts","../src/utils/clonable.ts","../src/container/lookup.ts","../src/container/module_activation_store.ts","../src/container/container.ts","../src/container/container_module.ts","../src/utils/js.ts","../src/annotation/decorator_utils.ts","../src/annotation/injectable.ts","../src/annotation/tagged.ts","../src/annotation/named.ts","../src/annotation/inject_base.ts","../src/annotation/inject.ts","../src/annotation/optional.ts","../src/annotation/unmanaged.ts","../src/annotation/multi_inject.ts","../src/annotation/target_name.ts","../src/annotation/property_event_decorator.ts","../src/annotation/post_construct.ts","../src/annotation/pre_destroy.ts","../src/inversify.ts","../node_modules/@types/mocha/index.d.ts","../node_modules/reflect-metadata/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileIdsList":[[172],[129,172],[132,172],[133,138,172],[134,144,145,152,161,171,172],[134,135,144,152,172],[136,172],[137,138,145,153,172],[138,161,168,172],[139,141,144,152,172],[140,172],[141,142,172],[143,144,172],[144,172],[144,145,146,161,171,172],[144,145,146,161,172],[147,152,161,171,172],[144,145,147,148,152,161,168,171,172],[147,149,161,168,171,172],[129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178],[144,150,172],[151,171,172],[141,144,152,161,172],[153,172],[154,172],[132,155,172],[156,170,172,176],[157,172],[158,172],[144,159,172],[159,160,172,174],[144,161,162,163,172],[161,163,172],[161,162,172],[164,172],[165,172],[144,166,167,172],[166,167,172],[138,152,161,168,172],[169,172],[152,170,172],[133,147,158,171,172],[138,172],[161,172,173],[172,174],[172,175],[133,138,144,146,155,161,171,172,174,176],[161,172,177],[74,76,80,112,172],[74,117,172],[80,86,88,113,172],[74,80,172],[76,172],[74,86,113,172],[74,80,123,172],[86,172],[86,113,172],[76,77,78,172],[74,76,77,78,79,80,81,84,93,94,98,105,106,108,109,172],[76,78,172],[76,80,107,172],[76,108,172],[75,172],[74,76,77,78,81,84,88,96,99,110,111,113,114,115,116,118,119,120,121,122,124,125,172],[74,76,172],[74,76,77,80,82,83,84,85,86,87,90,91,92,172],[74,76,77,80,84,86,88,90,172],[74,76,78,84,86,89,172],[74,76,77,80,86,94,172],[76,77,80,83,93,94,95,96,97,172],[76,77,94,172],[76,77,102,172],[76,100,101,103,172],[76,100,172],[76,77,80,102,104,172],[76,100,101,172],[76,99,101,172],[74,76,86,172],[75,76,77,80,84,172],[80,172],[76,80,172]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"b07e8b6e1af808dbe5c360e8daef12bd5024fcb79239e91f01f6ef254e384652","signature":"eaabb1e7b81cd2721213042e4f0da99bfe10967809d5f2041f59a0561a76062e"},{"version":"63e9b81cd080d71daf01b8cdd42ebb8d27c007475e38a3b3bc624319818aebb6","signature":"1978f60de633b51c1b37112343938a3396e0f34efd33ec350319625006f44644"},{"version":"051f1f66c209791db39aee6cb5f8d57291145986fc6cb9c3818f784a8aa34e6b","signature":"8c9964262bc3f38f80c3c58634d2cb3a1603af152ca75ae70aecac3ea2dd89e5"},{"version":"c06f19c760e5878a0c68d69d01e62435c9036983f230d7206283b8d2706e547c","signature":"d0097c53e2e3efc727c631831c268ab1b348d02e8eb38881751cda6eb64407e4"},{"version":"9d92c0642ca5422ccd029a80827a5879ec31e2aee23245bd9a251f3190d9ff97","signature":"c624c0d0d777a670e2b2d8003ec91519e93048963a3236aeab1ec55a8529c382"},{"version":"8af4ca288c2002d2c739a78349311d2a59dc0028d71553cb9b296a90a5d5bc00","signature":"1d9c1f8af689bd1c5b2828bb97c7fb7c3e4242fc368ee646b4e29e23c3530aaa"},{"version":"c61028f84f9f70b4205b356363bf3390880ed34d64b6dfb83352b3b6e0e7f1e4","signature":"f55b2db8ac16486fab8d628b23620d22fda8ddb0a977a7a93f157e6f8f4f6bd5"},{"version":"1a223170dab7ff7e106a4dd10737fd983b5e2e25cb5e5d8cf36e44cdd4dece0f","signature":"1509924b4df6a9d8e929ba1f096eb400db16aab9f13c2c6fac8f8eabd63d34c5"},{"version":"ceaad4488a4de8dfb6406aad0cfa0d3661b5157d0e81c8844b02be44134b2ca5","signature":"7fffe384654fd54ca2d6879cea3222c716a548463018dcf3444f2a47d45bf561"},{"version":"c1b593cb9cb830c0dd8e564a9d00b3e904b81d859e0e547076fe6c948b7a387e","signature":"aa866eaafc97b808fc075b24f9d89d14ca5285c4eedcf74679cde11f6c3fd97b"},{"version":"14f831a9a34e933c72ed66484c516cd777232b80ed3ebed1526af7eb89df9398","signature":"1d1a1acc404e9efd4a4063c555939511025bd926354fee847353e8b6fa58ae3e"},{"version":"7e04b461297ec958f273fd107d0b50c49197b393b5e22a7736aa22f8989979c9","signature":"e907cc100eb5c0f86a22c42e2afc70c1e4c6cb8ed999c273e50f908a62ae9d27"},{"version":"50be4062c705793342a71cdc9a433c72558c0a98c2a3372507a06e1effa93a79","signature":"102c621fd2739f95b37ceb6be430f04cf5061532d1ce6fef611ef42e21879cdb"},{"version":"d5e0b895d04a99fec8b8ed9b4e2f9613026893cf855b569f8456c940d9955399","signature":"16a283c00bef24e462406f105489add8c6d6dec5f25f5e233417b92f9465ed6e"},{"version":"144e88c0380ff95a0f7bcf98fe65565220a9550f2cde12bdcb88921d7fd7fa43","signature":"099d4abcf7d93c7f18ef059b86f7fdebc166168965912bfa61e26557c2e9e56a"},{"version":"fba02133583e26d63cf974c6ad14c1ae1334bffbd10b03088ac51c5c5b979a8d","signature":"bc903e737412b337d010571127b613bb9b5b914fd8799decd122555b38f8ee38"},{"version":"30644d5dd42430716d5f4a047bbc1d400b02dcb3c310902b267b29675563a7e3","signature":"7dd03f55716e722f52d3345842b4136a485bd288c1812e1a8efb21fae65e56fa"},{"version":"3f04513c819f4b839ca589a451d8a1fa2e2628933cc01cb2e625edb771aeb6df","signature":"de55cca7013027128557fc1256134609c5fe6d48f13f526813e2761e05816880"},{"version":"a16eadf49a52cb22f186bca514837851956689ae6e0089f71697123d36ccd78d","signature":"13349e1fc2f4196289b9ea55c8a1c94fb8d9ddde70e4dc1ed8813697c2509073"},{"version":"2e4904e14f4874301892405abeff347b3bed9f7f00892242208d436bbb2293e6","signature":"bddce9cb261018898febb5de1fc4d003f09fc5676adbe8360f573b29e830e852"},{"version":"44786221f798332728a6b5c47324f4365108c14a27c88f3e5c86c896c64a1786","signature":"9addde6e27b9f91d561d7c84a06ca78012bf438b1f0b2e2f20fd84a6aa307602"},{"version":"99bae83d9ab88b356ff03759b836975ac9f3e67b1aaacacf9f358356a6f0e3a7","signature":"629a14df483d6b9f941bd4fee81b32e912407b002139cb9ed8b835fafa8dcc09"},{"version":"7f7f5fcb0d767a3fce51ef334de47b323ea6751405b4ce3736b0bfe5cb90735d","signature":"cb1f72fbe3832f25c3a23847b185b66fefaa9c575787d5dd09da87d8e3d642f1"},{"version":"d50aa38977a614f20e3ede01481bae9ef9e2f7f990949b244d5d974398aeeabb","signature":"ad7c0b4fa0f9a4b063dd9b5f4bd6740dafcad2f1d7e929c8a4ceb04df2d9220f"},{"version":"14672c16c8f07cb1f63c98f985ab6da652fcd123f140ecc3cbbaa2e576f77fee","signature":"4e35bb3aa00ca96cde19a69139df98cae7652f79fd49d2bcdd7ae95f32f8f4d9"},{"version":"559dd29c00fb0e32049c58b8ecbb26911eb772796a1b485eead7b277e1b13e6e","signature":"9af00c7e4a2b5470bb071c738e8fb55aa47c07b3fe5eee0f2e422fcf2ba9fd46"},{"version":"2fdb4a6cdc35883f166a2d5f4d9dd1d4f097340ca37304175d5b25cdbf7c8abd","signature":"7c24a57259fb4f7d3a23b2c0995cf7e027e7defb6d561ae634707327ab0a1832"},{"version":"0e0dc465a1b1a34bcc24bc497ad28b4c99f33f2ea02ece4c435ac4616b645a72","signature":"67ce90c66b83fd78e93b614e143afac9613a061ef254a691c61610745779d48b"},{"version":"ddbc36f91c8ae82432024abf16c1a325d5bdc9042bad62cef10363f35d1d5f05","signature":"acf3d5daf10f5141dc139bdeb59b36ad4cdbc96e177ebeb4d16445c82c0227c2"},{"version":"6abd964940776fce32e0398ddc6d8813c4402f4d390198bd69ec8351925a5f6a","signature":"94a883a8ac0d2ac391b2c4633806d0dbc0afb122d85f9df02e1bbf494f69b6f4"},{"version":"2b9d5717a2599e34b6da475a4cf414c48fc4fe2cde00f0d21be6addb90e53056","signature":"71aa8697892444e4c5db42cba75c1854ce0289a0b33759bc094716eedfec9002"},{"version":"d71596b0936f32383ebb5493597a8d87b32660f146bd7ddf18b7432aacae7a5e","signature":"8126b341151204f9b8dad5f275b9a9d0ce98fba93d676ac4b3b80efe4fcf4f4a"},{"version":"610d4d2a3a5f4a0727d69ff2d14ed0564211d391ee12906392c31aac61fb03ab","signature":"7c66cb01747af809560d7de85dd352abfa5299fbb6ff1cd707dee44d5df029d7"},{"version":"d8d07a4766f7048b674e3257bbff84c5403b7318699334f10e2d56a9304323f0","signature":"0bcb1a8273bc63d131694fda84cc6cae93743efe068b2648598264cd221721a6"},{"version":"7356a501ac50ab852b10d6d28bea42f42e4b6a93ff0168ee12ffb9864271c5a3","signature":"2903f98d956629d061871542a8cfdbb9ad6fad69c0b273dee3dec104ace15ff0"},{"version":"1353d92789a37bc57b3736f464c8f7336bee3d115b37f1bb904d86bfaea577d0","signature":"7d292e1344ab5220b2e79c592ae20db9f9b2e040135ffcd873e17096d3dba94b"},{"version":"d1a7e7eff04b3491baa5d350343d47d43a1750a971a943167190a884bae8feef","signature":"8d99928835a36096e996a2b32caabca2bde475ade6b6f48ecf82333d4de44d42"},{"version":"c9809ff53254f9bf0b69c449629bf003b84fcde07abcede2224315ed27d1a922","signature":"a81024ffa80cec8e53b1fb2a9e46c488aee9ccfa9443858fd33162caddcfbd63"},{"version":"fac32298c3077c5ca07862bc3e08c2253a943f0528aa51ce47cb00193e627020","signature":"44bf2d545c9ef5038b04fc7c60f8ef6867373875b83066646fef342683b5c274"},{"version":"2ffb113dc257f44648a7e6651a53de503721d6c31537dbe1aee7f1f68d46fadb","signature":"8f1b598805fb649e315bf19f4190716598005ea389e5a0744d02e167d7e09673"},{"version":"44edbecee83dbfec244375d8e7a5cc0a6dd50413b2e3a2b6ca6bd53955c08494","signature":"546a222066bf36e698eda706b61350e35e9f6cd6ab403806c5b86b45aa370739"},{"version":"7b731725c4a809855a80805efb972884db8acaa5f7c4de0118a5d2c11a9806b8","signature":"fc6161a0d01db88845ea87729bac1b2a32c88f029e75976b8fc4acf53f4aa705"},{"version":"8c2b304efb7e3652723a419d6bbd9aa745aa6f71b4ced9ea2c5a6d2a4cce4f65","signature":"ac339048fd9ee756787fa5b86ca98443c81dff96fc6e3eafaab8edc28cee4b35"},{"version":"b2d3f309c94b47a5aecd78cafbde7ab0b357274f3d6382a8cc38ce45e7a81549","signature":"24ee58635a9d29ea0387b331e9a7d1201ebc27b51ca478e2a6fd484f51c32048"},{"version":"f4c14d29718afca0d886fefb84dc48a461795c592f99ec72beb91ff6e23cd920","signature":"a806001c7aac70c1aa7f03eb6bec7b3a500657347db63d1c13088f8071e035cf"},{"version":"89b026efa17fd604074c485fc651870bb4cd9d7c89c02df23cdbbc3df871ebc3","signature":"45c769d21b43b989cbb46d9816a851b59a95a6316b9dae2dca76db900f4d118c"},{"version":"fd3d46afc7952bf6d694665b390546377242454857f9daa0659b7656eeab9606","signature":"ccd0803f6a5d7d1db99360e2bc5929334280f5f46a3ce9329ba6616d452bf97a"},{"version":"60ae118f15da84b109e0f184fadea8341c6ff6125746304f2c0e1532a49cffd7","signature":"8555906361161b1f7e43616f94305408bbf96cfabfae97dbc49094a5ba132762"},{"version":"7addc12ef6277b8ea2d893c4ce735ff498904cb144e434fe7b56bb32a219105b","signature":"b2affabfa17d5e5e23abaed45bd0af1a9323a9051071e7d5d271b02ee8e8f0b2"},{"version":"00040f6cde5584904743d88a1fa9cbfe4c72d1f1a901a783da4d5e94df743e0d","signature":"aee09aa0cc7908bff7a545e23757dc49640e3196e7efac21c0ce6d6630d0b4a4"},{"version":"80f9a9aed3f18d0e17994a6fa106fa19b4ec880537894fa848d21245f8bc3807","signature":"4c793a9fd5774f738e39559692d5aa61a829b67a64b78510acedba16403b04a9"},{"version":"8205ec111d45af98911af6b1675988ad55773fefdf2fe30afc8996b2c758b322","signature":"e4c5c9ac0ae2cefaff8e83ffde0f4b267e227afca15cd5ae7add0071cf2c5372"},{"version":"939c8f8f52e645e386b40f8a69e1887099fe6b0cb74d646178623dd36f9cf391","signature":"17965a024a696421798495401b0e5ba60bc2d4581ccd198a1ce6b0e976cf59fa"},{"version":"ed2e21d0d42025b6a09c30fe0923e2ee4f8911f5c41f4ff0525ea0c2fd315e75","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d6d51a5118d000ed3bfe6e1dd1335bebfff3fef23cd2af2f84a24d30f90cc90","affectsGlobalScope":true,"impliedFormat":1},{"version":"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","impliedFormat":1},{"version":"a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a","impliedFormat":1},{"version":"c2ab70bbc7a24c42a790890739dd8a0ba9d2e15038b40dff8163a97a5d148c00","affectsGlobalScope":true,"impliedFormat":1},{"version":"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a","impliedFormat":1},{"version":"712ba0d43b44d144dfd01593f61af6e2e21cfae83e834d297643e7973e55ed61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","impliedFormat":1},{"version":"f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894","impliedFormat":1},{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","impliedFormat":1},{"version":"98a3ebfa494b46265634a73459050befba5da8fdc6ca0ef9b7269421780f4ff3","impliedFormat":1},{"version":"34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","impliedFormat":1},{"version":"cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","impliedFormat":1},{"version":"f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","impliedFormat":1},{"version":"c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","impliedFormat":1},{"version":"f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79","impliedFormat":1},{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","impliedFormat":1},{"version":"ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","impliedFormat":1},{"version":"10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","impliedFormat":1},{"version":"ad41bb744149e92adb06eb953da195115620a3f2ad48e7d3ae04d10762dae197","impliedFormat":1},{"version":"bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","impliedFormat":1},{"version":"7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82","impliedFormat":1},{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5d0a9ea09d990b5788f867f1c79d4878f86f7384cb7dab38eecbf22f9efd063d","impliedFormat":1},{"version":"12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","impliedFormat":1},{"version":"08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","impliedFormat":1},{"version":"08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304","impliedFormat":1},{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","impliedFormat":1},{"version":"002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","impliedFormat":1},{"version":"1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","impliedFormat":1},{"version":"a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","impliedFormat":1},{"version":"00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","impliedFormat":1},{"version":"1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","impliedFormat":1},{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true,"impliedFormat":1},{"version":"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","impliedFormat":1},{"version":"5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248","impliedFormat":1},{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true,"impliedFormat":1},{"version":"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","impliedFormat":1},{"version":"e383ff72aabf294913f8c346f5da1445ae6ad525836d28efd52cbadc01a361a6","impliedFormat":1},{"version":"f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","impliedFormat":1},{"version":"59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","impliedFormat":1},{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","impliedFormat":1},{"version":"3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","impliedFormat":1},{"version":"a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","impliedFormat":1},{"version":"85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","impliedFormat":1},{"version":"9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","impliedFormat":1},{"version":"f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","impliedFormat":1}],"root":[[74,126]],"options":{"allowSyntheticDefaultImports":true,"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"assumeChangesOnlyAffectDirectDependencies":true,"composite":true,"declaration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"exactOptionalPropertyTypes":true,"experimentalDecorators":true,"importsNotUsedAsValues":0,"module":1,"noErrorTruncation":true,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitOverride":true,"noImplicitReturns":true,"noImplicitThis":true,"noPropertyAccessFromIndexSignature":true,"noUncheckedIndexedAccess":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"target":1},"referencedMap":[[127,1],[129,2],[130,2],[132,3],[133,4],[134,5],[135,6],[136,7],[137,8],[138,9],[139,10],[140,11],[141,12],[142,12],[143,13],[144,14],[145,15],[146,16],[131,1],[178,1],[147,17],[148,18],[149,19],[179,20],[150,21],[151,22],[152,23],[153,24],[154,25],[155,26],[156,27],[157,28],[158,29],[159,30],[160,31],[161,32],[163,33],[162,34],[164,35],[165,36],[166,37],[167,38],[168,39],[169,40],[170,41],[171,42],[172,43],[173,44],[174,45],[175,46],[176,47],[177,48],[128,1],[72,1],[73,1],[12,1],[14,1],[13,1],[2,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[3,1],[23,1],[4,1],[24,1],[28,1],[25,1],[26,1],[27,1],[29,1],[30,1],[31,1],[5,1],[32,1],[33,1],[34,1],[35,1],[6,1],[39,1],[36,1],[37,1],[38,1],[40,1],[7,1],[41,1],[46,1],[47,1],[42,1],[43,1],[44,1],[45,1],[8,1],[51,1],[48,1],[49,1],[50,1],[52,1],[9,1],[53,1],[54,1],[55,1],[58,1],[56,1],[57,1],[59,1],[60,1],[10,1],[61,1],[1,1],[62,1],[63,1],[11,1],[68,1],[65,1],[64,1],[71,1],[69,1],[67,1],[70,1],[66,1],[113,49],[118,50],[117,51],[114,52],[88,53],[121,50],[116,54],[119,54],[124,55],[125,55],[123,56],[115,57],[122,54],[120,54],[79,58],[82,1],[80,1],[77,53],[74,1],[110,59],[111,60],[106,53],[108,61],[109,62],[76,63],[126,64],[85,60],[86,65],[81,65],[87,53],[93,66],[89,53],[91,67],[92,60],[90,68],[97,69],[98,70],[95,71],[103,72],[104,73],[101,74],[105,75],[102,76],[100,77],[99,78],[94,1],[96,79],[107,53],[83,80],[75,1],[78,1],[112,1],[84,81]],"latestChangedDtsFile":"./utils/exceptions.d.ts","version":"5.6.3"}
|
package/lib/utils/async.js
CHANGED
|
@@ -1,16 +1,14 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.isPromise = isPromise;
|
|
4
|
+
exports.isPromiseOrContainsPromise = isPromiseOrContainsPromise;
|
|
4
5
|
function isPromise(object) {
|
|
5
6
|
var isObjectOrFunction = (typeof object === 'object' && object !== null) || typeof object === 'function';
|
|
6
7
|
return isObjectOrFunction && typeof object.then === "function";
|
|
7
8
|
}
|
|
8
|
-
exports.isPromise = isPromise;
|
|
9
9
|
function isPromiseOrContainsPromise(object) {
|
|
10
10
|
if (isPromise(object)) {
|
|
11
11
|
return true;
|
|
12
12
|
}
|
|
13
13
|
return Array.isArray(object) && object.some(isPromise);
|
|
14
14
|
}
|
|
15
|
-
exports.isPromiseOrContainsPromise = isPromiseOrContainsPromise;
|
|
16
|
-
//# sourceMappingURL=async.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { interfaces } from
|
|
1
|
+
import type { interfaces } from '../interfaces/interfaces';
|
|
2
2
|
export declare const multiBindToService: (container: interfaces.Container) => (service: interfaces.ServiceIdentifier) => (...types: interfaces.ServiceIdentifier[]) => void;
|
|
3
3
|
export declare const ensureFullyBound: <T = unknown>(binding: interfaces.Binding<T>) => void;
|
|
4
4
|
export declare const getFactoryDetails: <T = unknown>(binding: interfaces.Binding<T>) => interfaces.FactoryDetails;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -20,7 +24,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
20
24
|
};
|
|
21
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
26
|
exports.getFactoryDetails = exports.ensureFullyBound = exports.multiBindToService = void 0;
|
|
23
|
-
var
|
|
27
|
+
var serialization_1 = require("../utils/serialization");
|
|
24
28
|
var ERROR_MSGS = __importStar(require("../constants/error_msgs"));
|
|
25
29
|
var literal_types_1 = require("../constants/literal_types");
|
|
26
30
|
var factory_type_1 = require("./factory_type");
|
|
@@ -58,8 +62,8 @@ var ensureFullyBound = function (binding) {
|
|
|
58
62
|
break;
|
|
59
63
|
}
|
|
60
64
|
if (boundValue === null) {
|
|
61
|
-
var serviceIdentifierAsString = (0,
|
|
62
|
-
throw new Error(ERROR_MSGS.INVALID_BINDING_TYPE
|
|
65
|
+
var serviceIdentifierAsString = (0, serialization_1.getServiceIdentifierAsString)(binding.serviceIdentifier);
|
|
66
|
+
throw new Error("".concat(ERROR_MSGS.INVALID_BINDING_TYPE, " ").concat(serviceIdentifierAsString));
|
|
63
67
|
}
|
|
64
68
|
};
|
|
65
69
|
exports.ensureFullyBound = ensureFullyBound;
|
|
@@ -72,8 +76,7 @@ var getFactoryDetails = function (binding) {
|
|
|
72
76
|
case literal_types_1.BindingTypeEnum.DynamicValue:
|
|
73
77
|
return { factory: binding.dynamicValue, factoryType: factory_type_1.FactoryType.DynamicValue };
|
|
74
78
|
default:
|
|
75
|
-
throw new Error("Unexpected factory type "
|
|
79
|
+
throw new Error("Unexpected factory type ".concat(binding.type));
|
|
76
80
|
}
|
|
77
81
|
};
|
|
78
82
|
exports.getFactoryDetails = getFactoryDetails;
|
|
79
|
-
//# sourceMappingURL=binding_utils.js.map
|
package/lib/utils/clonable.d.ts
CHANGED
package/lib/utils/clonable.js
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isClonable =
|
|
3
|
+
exports.isClonable = isClonable;
|
|
4
4
|
function isClonable(obj) {
|
|
5
5
|
return (typeof obj === 'object')
|
|
6
6
|
&& (obj !== null)
|
|
7
7
|
&& ('clone' in obj)
|
|
8
8
|
&& typeof obj.clone === 'function';
|
|
9
9
|
}
|
|
10
|
-
exports.isClonable = isClonable;
|
|
11
|
-
//# sourceMappingURL=clonable.js.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare function
|
|
1
|
+
export declare function isStackOverflowException(error: unknown): error is RangeError;
|
|
2
2
|
export declare const tryAndThrowErrorIfStackOverflow: <T>(fn: () => T, errorCallback: () => Error) => T;
|
package/lib/utils/exceptions.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -19,23 +23,22 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
23
|
return result;
|
|
20
24
|
};
|
|
21
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.tryAndThrowErrorIfStackOverflow =
|
|
26
|
+
exports.tryAndThrowErrorIfStackOverflow = void 0;
|
|
27
|
+
exports.isStackOverflowException = isStackOverflowException;
|
|
23
28
|
var ERROR_MSGS = __importStar(require("../constants/error_msgs"));
|
|
24
|
-
function
|
|
29
|
+
function isStackOverflowException(error) {
|
|
25
30
|
return (error instanceof RangeError ||
|
|
26
31
|
error.message === ERROR_MSGS.STACK_OVERFLOW);
|
|
27
32
|
}
|
|
28
|
-
exports.isStackOverflowExeption = isStackOverflowExeption;
|
|
29
33
|
var tryAndThrowErrorIfStackOverflow = function (fn, errorCallback) {
|
|
30
34
|
try {
|
|
31
35
|
return fn();
|
|
32
36
|
}
|
|
33
37
|
catch (error) {
|
|
34
|
-
if (
|
|
38
|
+
if (isStackOverflowException(error)) {
|
|
35
39
|
error = errorCallback();
|
|
36
40
|
}
|
|
37
41
|
throw error;
|
|
38
42
|
}
|
|
39
43
|
};
|
|
40
44
|
exports.tryAndThrowErrorIfStackOverflow = tryAndThrowErrorIfStackOverflow;
|
|
41
|
-
//# sourceMappingURL=exceptions.js.map
|
|
@@ -6,5 +6,4 @@ var FactoryType;
|
|
|
6
6
|
FactoryType["DynamicValue"] = "toDynamicValue";
|
|
7
7
|
FactoryType["Factory"] = "toFactory";
|
|
8
8
|
FactoryType["Provider"] = "toProvider";
|
|
9
|
-
})(FactoryType
|
|
10
|
-
//# sourceMappingURL=factory_type.js.map
|
|
9
|
+
})(FactoryType || (exports.FactoryType = FactoryType = {}));
|
package/lib/utils/id.js
CHANGED
package/lib/utils/js.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getFirstArrayDuplicate =
|
|
3
|
+
exports.getFirstArrayDuplicate = getFirstArrayDuplicate;
|
|
4
4
|
function getFirstArrayDuplicate(array) {
|
|
5
5
|
var seenValues = new Set();
|
|
6
6
|
for (var _i = 0, array_1 = array; _i < array_1.length; _i++) {
|
|
@@ -14,5 +14,3 @@ function getFirstArrayDuplicate(array) {
|
|
|
14
14
|
}
|
|
15
15
|
return undefined;
|
|
16
16
|
}
|
|
17
|
-
exports.getFirstArrayDuplicate = getFirstArrayDuplicate;
|
|
18
|
-
//# sourceMappingURL=js.js.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { interfaces } from
|
|
1
|
+
import { interfaces } from '../interfaces/interfaces';
|
|
2
2
|
declare function getServiceIdentifierAsString(serviceIdentifier: interfaces.ServiceIdentifier): string;
|
|
3
3
|
declare function listRegisteredBindingsForServiceIdentifier(container: interfaces.Container, serviceIdentifier: string, getBindings: <T>(container: interfaces.Container, serviceIdentifier: interfaces.ServiceIdentifier<T>) => interfaces.Binding<T>[]): string;
|
|
4
4
|
declare function circularDependencyToException(request: interfaces.Request): void;
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -19,14 +23,19 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
23
|
return result;
|
|
20
24
|
};
|
|
21
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.
|
|
26
|
+
exports.getFunctionName = getFunctionName;
|
|
27
|
+
exports.getServiceIdentifierAsString = getServiceIdentifierAsString;
|
|
28
|
+
exports.listRegisteredBindingsForServiceIdentifier = listRegisteredBindingsForServiceIdentifier;
|
|
29
|
+
exports.listMetadataForTarget = listMetadataForTarget;
|
|
30
|
+
exports.circularDependencyToException = circularDependencyToException;
|
|
31
|
+
exports.getSymbolDescription = getSymbolDescription;
|
|
23
32
|
var ERROR_MSGS = __importStar(require("../constants/error_msgs"));
|
|
24
33
|
function getServiceIdentifierAsString(serviceIdentifier) {
|
|
25
|
-
if (typeof serviceIdentifier ===
|
|
34
|
+
if (typeof serviceIdentifier === 'function') {
|
|
26
35
|
var _serviceIdentifier = serviceIdentifier;
|
|
27
36
|
return _serviceIdentifier.name;
|
|
28
37
|
}
|
|
29
|
-
else if (typeof serviceIdentifier ===
|
|
38
|
+
else if (typeof serviceIdentifier === 'symbol') {
|
|
30
39
|
return serviceIdentifier.toString();
|
|
31
40
|
}
|
|
32
41
|
else {
|
|
@@ -34,26 +43,24 @@ function getServiceIdentifierAsString(serviceIdentifier) {
|
|
|
34
43
|
return _serviceIdentifier;
|
|
35
44
|
}
|
|
36
45
|
}
|
|
37
|
-
exports.getServiceIdentifierAsString = getServiceIdentifierAsString;
|
|
38
46
|
function listRegisteredBindingsForServiceIdentifier(container, serviceIdentifier, getBindings) {
|
|
39
|
-
var registeredBindingsList =
|
|
47
|
+
var registeredBindingsList = '';
|
|
40
48
|
var registeredBindings = getBindings(container, serviceIdentifier);
|
|
41
49
|
if (registeredBindings.length !== 0) {
|
|
42
|
-
registeredBindingsList =
|
|
50
|
+
registeredBindingsList = '\nRegistered bindings:';
|
|
43
51
|
registeredBindings.forEach(function (binding) {
|
|
44
|
-
var name =
|
|
52
|
+
var name = 'Object';
|
|
45
53
|
if (binding.implementationType !== null) {
|
|
46
54
|
name = getFunctionName(binding.implementationType);
|
|
47
55
|
}
|
|
48
|
-
registeredBindingsList = registeredBindingsList
|
|
56
|
+
registeredBindingsList = "".concat(registeredBindingsList, "\n ").concat(name);
|
|
49
57
|
if (binding.constraint.metaData) {
|
|
50
|
-
registeredBindingsList = registeredBindingsList
|
|
58
|
+
registeredBindingsList = "".concat(registeredBindingsList, " - ").concat(binding.constraint.metaData);
|
|
51
59
|
}
|
|
52
60
|
});
|
|
53
61
|
}
|
|
54
62
|
return registeredBindingsList;
|
|
55
63
|
}
|
|
56
|
-
exports.listRegisteredBindingsForServiceIdentifier = listRegisteredBindingsForServiceIdentifier;
|
|
57
64
|
function alreadyDependencyChain(request, serviceIdentifier) {
|
|
58
65
|
if (request.parentRequest === null) {
|
|
59
66
|
return false;
|
|
@@ -76,40 +83,38 @@ function dependencyChainToString(request) {
|
|
|
76
83
|
return result;
|
|
77
84
|
}
|
|
78
85
|
var stringArr = _createStringArr(request);
|
|
79
|
-
return stringArr.reverse().join(
|
|
86
|
+
return stringArr.reverse().join(' --> ');
|
|
80
87
|
}
|
|
81
88
|
function circularDependencyToException(request) {
|
|
82
89
|
request.childRequests.forEach(function (childRequest) {
|
|
83
90
|
if (alreadyDependencyChain(childRequest, childRequest.serviceIdentifier)) {
|
|
84
91
|
var services = dependencyChainToString(childRequest);
|
|
85
|
-
throw new Error(ERROR_MSGS.CIRCULAR_DEPENDENCY
|
|
92
|
+
throw new Error("".concat(ERROR_MSGS.CIRCULAR_DEPENDENCY, " ").concat(services));
|
|
86
93
|
}
|
|
87
94
|
else {
|
|
88
95
|
circularDependencyToException(childRequest);
|
|
89
96
|
}
|
|
90
97
|
});
|
|
91
98
|
}
|
|
92
|
-
exports.circularDependencyToException = circularDependencyToException;
|
|
93
99
|
function listMetadataForTarget(serviceIdentifierString, target) {
|
|
94
100
|
if (target.isTagged() || target.isNamed()) {
|
|
95
|
-
var m_1 =
|
|
101
|
+
var m_1 = '';
|
|
96
102
|
var namedTag = target.getNamedTag();
|
|
97
103
|
var otherTags = target.getCustomTags();
|
|
98
104
|
if (namedTag !== null) {
|
|
99
|
-
m_1 += namedTag.toString() +
|
|
105
|
+
m_1 += namedTag.toString() + '\n';
|
|
100
106
|
}
|
|
101
107
|
if (otherTags !== null) {
|
|
102
108
|
otherTags.forEach(function (tag) {
|
|
103
|
-
m_1 += tag.toString() +
|
|
109
|
+
m_1 += tag.toString() + '\n';
|
|
104
110
|
});
|
|
105
111
|
}
|
|
106
|
-
return " "
|
|
112
|
+
return " ".concat(serviceIdentifierString, "\n ").concat(serviceIdentifierString, " - ").concat(m_1);
|
|
107
113
|
}
|
|
108
114
|
else {
|
|
109
|
-
return " "
|
|
115
|
+
return " ".concat(serviceIdentifierString);
|
|
110
116
|
}
|
|
111
117
|
}
|
|
112
|
-
exports.listMetadataForTarget = listMetadataForTarget;
|
|
113
118
|
function getFunctionName(func) {
|
|
114
119
|
if (func.name) {
|
|
115
120
|
return func.name;
|
|
@@ -117,12 +122,9 @@ function getFunctionName(func) {
|
|
|
117
122
|
else {
|
|
118
123
|
var name_1 = func.toString();
|
|
119
124
|
var match = name_1.match(/^function\s*([^\s(]+)/);
|
|
120
|
-
return match ? match[1] : "Anonymous function: "
|
|
125
|
+
return match ? match[1] : "Anonymous function: ".concat(name_1);
|
|
121
126
|
}
|
|
122
127
|
}
|
|
123
|
-
exports.getFunctionName = getFunctionName;
|
|
124
128
|
function getSymbolDescription(symbol) {
|
|
125
129
|
return symbol.toString().slice(7, -1);
|
|
126
130
|
}
|
|
127
|
-
exports.getSymbolDescription = getSymbolDescription;
|
|
128
|
-
//# sourceMappingURL=serialization.js.map
|
package/package.json
CHANGED
|
@@ -1,75 +1,60 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
2
|
+
"author": "Remo H. Jansen",
|
|
3
|
+
"bugs": {
|
|
4
|
+
"url": "https://github.com/inversify/InversifyJS/issues"
|
|
5
|
+
},
|
|
4
6
|
"description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
|
|
5
|
-
"
|
|
7
|
+
"devDependencies": {
|
|
8
|
+
"@types/chai": "4.3.6",
|
|
9
|
+
"@types/mocha": "10.0.9",
|
|
10
|
+
"@types/sinon": "17.0.3",
|
|
11
|
+
"chai": "4.3.8",
|
|
12
|
+
"mocha": "10.7.3",
|
|
13
|
+
"nyc": "17.1.0",
|
|
14
|
+
"publish-please": "5.5.2",
|
|
15
|
+
"reflect-metadata": "0.2.2",
|
|
16
|
+
"sinon": "19.0.2",
|
|
17
|
+
"ts-node": "10.9.2",
|
|
18
|
+
"tslint": "6.1.3",
|
|
19
|
+
"typescript": "5.6.3",
|
|
20
|
+
"updates": "16.4.0"
|
|
21
|
+
},
|
|
22
|
+
"engines": {},
|
|
23
|
+
"homepage": "http://inversify.io",
|
|
6
24
|
"jsnext:main": "es/inversify.js",
|
|
25
|
+
"keywords": [
|
|
26
|
+
"dependency injection",
|
|
27
|
+
"dependency inversion",
|
|
28
|
+
"di",
|
|
29
|
+
"inversion of control container",
|
|
30
|
+
"ioc",
|
|
31
|
+
"javascript",
|
|
32
|
+
"node",
|
|
33
|
+
"typescript"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"main": "lib/inversify.js",
|
|
7
37
|
"module": "es/inversify.js",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
38
|
+
"name": "inversify",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/inversify/InversifyJS.git"
|
|
42
|
+
},
|
|
10
43
|
"scripts": {
|
|
11
44
|
"build": "npm run build:lib && npm run build:amd && npm run build:es && npm run build:es6",
|
|
12
|
-
"build:lib": "tsc -p src/tsconfig.json",
|
|
13
45
|
"build:amd": "tsc -p src/tsconfig-amd.json",
|
|
14
46
|
"build:es": "tsc -p src/tsconfig-es.json",
|
|
15
47
|
"build:es6": "tsc -p src/tsconfig-es6.json",
|
|
48
|
+
"build:lib": "tsc -p src/tsconfig.json",
|
|
16
49
|
"clean": "rm -r amd es lib",
|
|
50
|
+
"postupdate": "git diff-files --quiet package-lock.json || npm test",
|
|
51
|
+
"prepublish": "npm run build && publish-please guard",
|
|
17
52
|
"pretest": "tslint --project .",
|
|
18
|
-
"test": "nyc --require ts-node/register mocha test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
|
|
19
|
-
"test:browser": "browserify test/inversify.test.ts -p [ tsify --noImplicitAny ] > ./test/bundle.test.js && karma start",
|
|
20
53
|
"publish-please": "publish-please",
|
|
21
|
-
"
|
|
22
|
-
"update": "updates --update --minor && npm install"
|
|
23
|
-
"postupdate": "git diff-files --quiet package-lock.json || npm test"
|
|
24
|
-
},
|
|
25
|
-
"repository": {
|
|
26
|
-
"type": "git",
|
|
27
|
-
"url": "https://github.com/inversify/InversifyJS.git"
|
|
28
|
-
},
|
|
29
|
-
"keywords": [
|
|
30
|
-
"ioc",
|
|
31
|
-
"di",
|
|
32
|
-
"javascript",
|
|
33
|
-
"typescript",
|
|
34
|
-
"node",
|
|
35
|
-
"dependency injection",
|
|
36
|
-
"dependency inversion",
|
|
37
|
-
"inversion of control container"
|
|
38
|
-
],
|
|
39
|
-
"author": "Remo H. Jansen",
|
|
40
|
-
"license": "MIT",
|
|
41
|
-
"bugs": {
|
|
42
|
-
"url": "https://github.com/inversify/InversifyJS/issues"
|
|
54
|
+
"test": "nyc --reporter=lcov --require ts-node/register mocha test/**/*.test.ts --reporter spec --retries 3 --require 'node_modules/reflect-metadata/Reflect.js' --exit",
|
|
55
|
+
"update": "updates --update --minor && npm install"
|
|
43
56
|
},
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"@types/chai": "4.2.22",
|
|
48
|
-
"@types/mocha": "9.0.0",
|
|
49
|
-
"@types/sinon": "9.0.11",
|
|
50
|
-
"browserify": "17.0.0",
|
|
51
|
-
"chai": "4.3.4",
|
|
52
|
-
"istanbul": "0.4.5",
|
|
53
|
-
"karma": "6.3.4",
|
|
54
|
-
"karma-chai": "0.1.0",
|
|
55
|
-
"karma-chrome-launcher": "3.1.0",
|
|
56
|
-
"karma-commonjs": "1.0.0",
|
|
57
|
-
"karma-es6-shim": "1.0.0",
|
|
58
|
-
"karma-firefox-launcher": "2.1.1",
|
|
59
|
-
"karma-ie-launcher": "1.0.0",
|
|
60
|
-
"karma-mocha": "2.0.1",
|
|
61
|
-
"karma-mocha-reporter": "2.2.5",
|
|
62
|
-
"karma-phantomjs-launcher": "1.0.4",
|
|
63
|
-
"karma-sinon": "1.0.5",
|
|
64
|
-
"mocha": "9.1.2",
|
|
65
|
-
"nyc": "15.1.0",
|
|
66
|
-
"publish-please": "5.5.2",
|
|
67
|
-
"reflect-metadata": "0.1.13",
|
|
68
|
-
"sinon": "9.2.4",
|
|
69
|
-
"ts-node": "10.3.0",
|
|
70
|
-
"tsify": "5.0.4",
|
|
71
|
-
"tslint": "6.1.3",
|
|
72
|
-
"typescript": "4.4.4",
|
|
73
|
-
"updates": "12.2.2"
|
|
74
|
-
}
|
|
57
|
+
"sideEffects": false,
|
|
58
|
+
"types": "lib/inversify.d.ts",
|
|
59
|
+
"version": "6.0.3"
|
|
75
60
|
}
|
package/.auditignore
DELETED