metaobjects 0.9.0__py3-none-any.whl

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.
Files changed (181) hide show
  1. metaobjects/__init__.py +75 -0
  2. metaobjects/agent_context/__init__.py +55 -0
  3. metaobjects/agent_context/_content/README.md +14 -0
  4. metaobjects/agent_context/_content/servers/csharp.meta.json +5 -0
  5. metaobjects/agent_context/_content/servers/java.meta.json +5 -0
  6. metaobjects/agent_context/_content/servers/kotlin.meta.json +5 -0
  7. metaobjects/agent_context/_content/servers/python.meta.json +5 -0
  8. metaobjects/agent_context/_content/servers/typescript.meta.json +5 -0
  9. metaobjects/agent_context/_content/skills/metaobjects-authoring/SKILL.md +301 -0
  10. metaobjects/agent_context/_content/skills/metaobjects-codegen/SKILL.md +99 -0
  11. metaobjects/agent_context/_content/skills/metaobjects-codegen/references/csharp.md +87 -0
  12. metaobjects/agent_context/_content/skills/metaobjects-codegen/references/java.md +94 -0
  13. metaobjects/agent_context/_content/skills/metaobjects-codegen/references/kotlin.md +110 -0
  14. metaobjects/agent_context/_content/skills/metaobjects-codegen/references/typescript.md +135 -0
  15. metaobjects/agent_context/_content/skills/metaobjects-prompts/SKILL.md +148 -0
  16. metaobjects/agent_context/_content/skills/metaobjects-prompts/references/csharp.md +110 -0
  17. metaobjects/agent_context/_content/skills/metaobjects-prompts/references/java.md +108 -0
  18. metaobjects/agent_context/_content/skills/metaobjects-prompts/references/kotlin.md +130 -0
  19. metaobjects/agent_context/_content/skills/metaobjects-prompts/references/python.md +116 -0
  20. metaobjects/agent_context/_content/skills/metaobjects-prompts/references/typescript.md +150 -0
  21. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/SKILL.md +130 -0
  22. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/java.md +96 -0
  23. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/kotlin.md +99 -0
  24. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/react.md +86 -0
  25. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/tanstack.md +119 -0
  26. metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/typescript.md +92 -0
  27. metaobjects/agent_context/_content/skills/metaobjects-verify/SKILL.md +107 -0
  28. metaobjects/agent_context/_content/skills/metaobjects-verify/references/migration.md +72 -0
  29. metaobjects/agent_context/_content/templates/always-on.md.mustache +27 -0
  30. metaobjects/agent_context/assemble.py +133 -0
  31. metaobjects/agent_context/content_root.py +54 -0
  32. metaobjects/agent_context/scaffold.py +191 -0
  33. metaobjects/agent_context/types.py +44 -0
  34. metaobjects/attr_class_map.py +23 -0
  35. metaobjects/cli.py +696 -0
  36. metaobjects/codegen/__init__.py +0 -0
  37. metaobjects/codegen/config.py +11 -0
  38. metaobjects/codegen/constants.py +13 -0
  39. metaobjects/codegen/extract_delegate_emitter.py +384 -0
  40. metaobjects/codegen/extract_schema_emitter.py +139 -0
  41. metaobjects/codegen/format.py +31 -0
  42. metaobjects/codegen/fr010_field_mapping.py +220 -0
  43. metaobjects/codegen/generator.py +62 -0
  44. metaobjects/codegen/generator_registry.py +163 -0
  45. metaobjects/codegen/generators/__init__.py +0 -0
  46. metaobjects/codegen/generators/entity_model.py +263 -0
  47. metaobjects/codegen/generators/extractor_generator.py +317 -0
  48. metaobjects/codegen/generators/filter_allowlist_generator.py +309 -0
  49. metaobjects/codegen/generators/m2m_codegen.py +192 -0
  50. metaobjects/codegen/generators/output_parser_generator.py +272 -0
  51. metaobjects/codegen/generators/output_prompt_generator.py +192 -0
  52. metaobjects/codegen/generators/payload_vo_generator.py +672 -0
  53. metaobjects/codegen/generators/render_helper_generator.py +451 -0
  54. metaobjects/codegen/generators/router_generator.py +635 -0
  55. metaobjects/codegen/generators/template_generator.py +70 -0
  56. metaobjects/codegen/generators/tph_plan.py +120 -0
  57. metaobjects/codegen/generators/trace_helper_generator.py +336 -0
  58. metaobjects/codegen/instance_artifacts.py +15 -0
  59. metaobjects/codegen/output_format_spec_emitter.py +79 -0
  60. metaobjects/codegen/overwrite_policy.py +27 -0
  61. metaobjects/codegen/runner.py +110 -0
  62. metaobjects/codegen/runtime/__init__.py +6 -0
  63. metaobjects/codegen/runtime/filter_parser.py +193 -0
  64. metaobjects/codegen/type_map.py +84 -0
  65. metaobjects/core_types.py +809 -0
  66. metaobjects/datatype.py +19 -0
  67. metaobjects/documentation/__init__.py +28 -0
  68. metaobjects/documentation/doc_constants.py +20 -0
  69. metaobjects/documentation/doc_provider.py +20 -0
  70. metaobjects/documentation/doc_schema.py +24 -0
  71. metaobjects/errors.py +124 -0
  72. metaobjects/loader/__init__.py +0 -0
  73. metaobjects/loader/merge.py +287 -0
  74. metaobjects/loader/meta_data_loader.py +245 -0
  75. metaobjects/loader/sources/__init__.py +24 -0
  76. metaobjects/loader/sources/directory_source.py +50 -0
  77. metaobjects/loader/sources/file_source.py +41 -0
  78. metaobjects/loader/sources/meta_data_source.py +67 -0
  79. metaobjects/loader/sources/uri_source.py +56 -0
  80. metaobjects/loader/validate_discriminator.py +181 -0
  81. metaobjects/loader/validate_field_readonly.py +146 -0
  82. metaobjects/loader/validate_source_parameter_ref.py +159 -0
  83. metaobjects/loader/validate_source_physical_names.py +140 -0
  84. metaobjects/loader/validation_passes.py +1513 -0
  85. metaobjects/meta/__init__.py +1 -0
  86. metaobjects/meta/core/__init__.py +0 -0
  87. metaobjects/meta/core/attr/__init__.py +0 -0
  88. metaobjects/meta/core/attr/attr_constants.py +31 -0
  89. metaobjects/meta/core/attr/meta_attr.py +136 -0
  90. metaobjects/meta/core/field/__init__.py +0 -0
  91. metaobjects/meta/core/field/field_constants.py +105 -0
  92. metaobjects/meta/core/field/meta_field.py +76 -0
  93. metaobjects/meta/core/identity/__init__.py +0 -0
  94. metaobjects/meta/core/identity/identity_constants.py +19 -0
  95. metaobjects/meta/core/identity/meta_identity.py +8 -0
  96. metaobjects/meta/core/object/__init__.py +0 -0
  97. metaobjects/meta/core/object/meta_object.py +65 -0
  98. metaobjects/meta/core/object/meta_object_aware.py +43 -0
  99. metaobjects/meta/core/object/object_class_registry.py +56 -0
  100. metaobjects/meta/core/object/object_constants.py +13 -0
  101. metaobjects/meta/core/object/object_extract.py +400 -0
  102. metaobjects/meta/core/object/value_object.py +70 -0
  103. metaobjects/meta/core/relationship/__init__.py +0 -0
  104. metaobjects/meta/core/relationship/derive_m2m_fields.py +180 -0
  105. metaobjects/meta/core/relationship/meta_relationship.py +54 -0
  106. metaobjects/meta/core/relationship/relationship_constants.py +51 -0
  107. metaobjects/meta/core/validator/__init__.py +0 -0
  108. metaobjects/meta/core/validator/validator_constants.py +18 -0
  109. metaobjects/meta/meta_data.py +206 -0
  110. metaobjects/meta/meta_root.py +8 -0
  111. metaobjects/meta/persistence/__init__.py +0 -0
  112. metaobjects/meta/persistence/db/__init__.py +1 -0
  113. metaobjects/meta/persistence/db/db_constants.py +41 -0
  114. metaobjects/meta/persistence/db/db_provider.py +60 -0
  115. metaobjects/meta/persistence/origin/__init__.py +0 -0
  116. metaobjects/meta/persistence/origin/meta_origin.py +8 -0
  117. metaobjects/meta/persistence/origin/origin_constants.py +20 -0
  118. metaobjects/meta/persistence/source/__init__.py +0 -0
  119. metaobjects/meta/persistence/source/meta_source.py +137 -0
  120. metaobjects/meta/persistence/source/source_constants.py +115 -0
  121. metaobjects/meta/presentation/__init__.py +0 -0
  122. metaobjects/meta/presentation/layout/__init__.py +0 -0
  123. metaobjects/meta/presentation/layout/layout_constants.py +13 -0
  124. metaobjects/meta/presentation/layout/meta_layout.py +8 -0
  125. metaobjects/meta/presentation/view/__init__.py +0 -0
  126. metaobjects/meta/presentation/view/meta_view.py +8 -0
  127. metaobjects/meta/presentation/view/view_constants.py +22 -0
  128. metaobjects/meta/template/__init__.py +0 -0
  129. metaobjects/meta/template/meta_template.py +46 -0
  130. metaobjects/meta/template/template_constants.py +112 -0
  131. metaobjects/meta/template/template_provider.py +43 -0
  132. metaobjects/parser.py +380 -0
  133. metaobjects/parser_yaml.py +82 -0
  134. metaobjects/provider.py +111 -0
  135. metaobjects/py.typed +0 -0
  136. metaobjects/registry.py +210 -0
  137. metaobjects/registry_manifest.py +223 -0
  138. metaobjects/render/__init__.py +74 -0
  139. metaobjects/render/email_document.py +14 -0
  140. metaobjects/render/escapers.py +109 -0
  141. metaobjects/render/extract/__init__.py +59 -0
  142. metaobjects/render/extract/coerce.py +279 -0
  143. metaobjects/render/extract/extract.py +211 -0
  144. metaobjects/render/extract/extract_map.py +61 -0
  145. metaobjects/render/extract/json_forgiving_reader.py +203 -0
  146. metaobjects/render/extract/locate.py +65 -0
  147. metaobjects/render/extract/normalize.py +96 -0
  148. metaobjects/render/extract/strip.py +20 -0
  149. metaobjects/render/extract/types.py +332 -0
  150. metaobjects/render/extract/xml_forgiving_reader.py +162 -0
  151. metaobjects/render/filesystem_provider.py +51 -0
  152. metaobjects/render/prompt/__init__.py +32 -0
  153. metaobjects/render/prompt/output_format_renderer.py +340 -0
  154. metaobjects/render/prompt/output_format_spec.py +28 -0
  155. metaobjects/render/prompt/prompt_field.py +29 -0
  156. metaobjects/render/prompt/prompt_overrides.py +29 -0
  157. metaobjects/render/prompt/prompt_style.py +38 -0
  158. metaobjects/render/renderer.py +358 -0
  159. metaobjects/render/verify.py +266 -0
  160. metaobjects/runtime/__init__.py +39 -0
  161. metaobjects/runtime/llm_recorder.py +210 -0
  162. metaobjects/runtime/n2m_resolver.py +155 -0
  163. metaobjects/runtime/object_manager.py +715 -0
  164. metaobjects/runtime/tph.py +50 -0
  165. metaobjects/serializer_json.py +172 -0
  166. metaobjects/shared/__init__.py +0 -0
  167. metaobjects/shared/base_types.py +16 -0
  168. metaobjects/shared/separators.py +4 -0
  169. metaobjects/shared/structural.py +9 -0
  170. metaobjects/source/__init__.py +79 -0
  171. metaobjects/source/error_source.py +266 -0
  172. metaobjects/source/json_path.py +106 -0
  173. metaobjects/source/semantic_diff.py +98 -0
  174. metaobjects/source/yaml_positions.py +174 -0
  175. metaobjects/super_resolve.py +128 -0
  176. metaobjects/yaml_desugar.py +481 -0
  177. metaobjects-0.9.0.dist-info/METADATA +97 -0
  178. metaobjects-0.9.0.dist-info/RECORD +181 -0
  179. metaobjects-0.9.0.dist-info/WHEEL +4 -0
  180. metaobjects-0.9.0.dist-info/entry_points.txt +2 -0
  181. metaobjects-0.9.0.dist-info/licenses/LICENSE +189 -0
@@ -0,0 +1,181 @@
1
+ metaobjects/__init__.py,sha256=S10NyZ39h8Sw_yKcOlXMG_BZCZxNy-58mMP2X4DkaJ4,2041
2
+ metaobjects/attr_class_map.py,sha256=72Dqll_2TpceDxeqR1ga4fN0aTSV-moAYKpMpg51Xgw,738
3
+ metaobjects/cli.py,sha256=e7p_kQmK8GaAcmKtPFOOSR89K0qg3e8cPywd6aNKfP4,25614
4
+ metaobjects/core_types.py,sha256=niflkhNZCNFlQOF-haYNCMbGogfsqMS24Jq7ezR6wgE,32483
5
+ metaobjects/datatype.py,sha256=e0v3a9FZgAUEPEs8nMkqODX_t2VCnhYbTw8XeRou67Y,595
6
+ metaobjects/errors.py,sha256=oFBYitnrVJr5f9pERfFjth57EM36YrOdXayg9svib8g,6548
7
+ metaobjects/parser.py,sha256=yfVsP9iKbXaedrZn9qBy44RnyxB8xYXEpP9SoK8wcNg,15529
8
+ metaobjects/parser_yaml.py,sha256=ZZH6CiyjAfMurQ4_i8F9c197WQE0Oz2C-np15DE53VA,3682
9
+ metaobjects/provider.py,sha256=zIyM6f1aBXTHSlKi3qF9XZhKIbtsBXi-xH6bt3DR0as,4118
10
+ metaobjects/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ metaobjects/registry.py,sha256=JxgIjc9d3R5lsuTqfpEMa4LdHjFdUQmlYQ9fZ1l6D3k,9213
12
+ metaobjects/registry_manifest.py,sha256=twWlM3X16jHAvZHHykVG7DWN1CZPHypvgTdhzZLyOd0,10656
13
+ metaobjects/serializer_json.py,sha256=_BVRabOFw9DJf1jUuQP2pEnC02yDQ4cOMQ99AWPiQBc,7146
14
+ metaobjects/super_resolve.py,sha256=-D2dzJozmdHCeo-LWREPj7RCeZiywJqlPV0FpwFm0_A,5596
15
+ metaobjects/yaml_desugar.py,sha256=g3A1LG_W5YSQuusoujFDUE272SK0fkwtSu8ONcG1aVk,18144
16
+ metaobjects/agent_context/__init__.py,sha256=IgNX4JoCVAdLhcMejzc88fW-sR7vpXzh_OMvffOiym0,1498
17
+ metaobjects/agent_context/assemble.py,sha256=8ssrTjfbv_fpbZ4A5VeSwEjGjjB3pYwdA3g7LyTp_cs,5034
18
+ metaobjects/agent_context/content_root.py,sha256=VqnN94nm4R0blUh3gcJxtlH07vmLyA04u7C08PGYhCU,2034
19
+ metaobjects/agent_context/scaffold.py,sha256=Cv_MgobT1Xl09jzAqFFH4a22Bm6ajDhclbcK04puzak,6988
20
+ metaobjects/agent_context/types.py,sha256=3Aq4HizQp2g-JbEgnsL7HRzxXzzpzUnARN1yOZV-bjk,1495
21
+ metaobjects/agent_context/_content/README.md,sha256=4EECV4fFDDYnTe8uRyagl5QTZDCW861JjJLQIbZ_iWY,885
22
+ metaobjects/agent_context/_content/servers/csharp.meta.json,sha256=iesSGr6FLILZN3UUNpJ1y7Th1voqcW-g3nHALaYQH5w,175
23
+ metaobjects/agent_context/_content/servers/java.meta.json,sha256=_LLzT05WvS8ComK7K6dqcuxcuCJM-opYVoQoikYbd30,205
24
+ metaobjects/agent_context/_content/servers/kotlin.meta.json,sha256=wni2wKhZ5zCCK7O6aSA2OtB25SBwA5hLE9gSKY3pgxo,211
25
+ metaobjects/agent_context/_content/servers/python.meta.json,sha256=ZIGti6W7pi87pq6JsWSvfxorlG8NGGUwbzN5yITMmiY,109
26
+ metaobjects/agent_context/_content/servers/typescript.meta.json,sha256=359KqNt48d9KG0blh5yzhuwO8Q2QCrUiGxgMLzwqX2Y,148
27
+ metaobjects/agent_context/_content/skills/metaobjects-authoring/SKILL.md,sha256=obzwqFyD9y1NTJtlGJCO9p2tyXKwg7XPdP10rI8s_GM,11542
28
+ metaobjects/agent_context/_content/skills/metaobjects-codegen/SKILL.md,sha256=0D1GywZB2GtdjFyBinovlUtvcc-3QwpcNJl-QuAbazc,4963
29
+ metaobjects/agent_context/_content/skills/metaobjects-codegen/references/csharp.md,sha256=bkiExC57kfetGmta9kghNjXbtLaF7kiQ1Jgbvb-0Dok,5623
30
+ metaobjects/agent_context/_content/skills/metaobjects-codegen/references/java.md,sha256=MgUhMvjlglUtez4sqSBN2UsbVz8_IYIBo3U9SE91Seg,4119
31
+ metaobjects/agent_context/_content/skills/metaobjects-codegen/references/kotlin.md,sha256=8cZOJXcWvTVjYsCrhAUTlIl6wXaDzbMrZ_vFWGC9WXE,5061
32
+ metaobjects/agent_context/_content/skills/metaobjects-codegen/references/typescript.md,sha256=UOULz-nJPAM7nJtuk5ws2Hbr8WbULLU_nFCZECzoWEQ,6049
33
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/SKILL.md,sha256=QmiDEL7D2-s4P69Y4eZnFGDQ4rVGGtJLmadGNvdXA_0,6556
34
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/references/csharp.md,sha256=FOJRZowBanUC9Mhtzj6IcSeBtWHVk2TMS3Z0DDUhBFY,4420
35
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/references/java.md,sha256=F8i5NKbpKqyef4_8y9XOIAAnNDvWmpCZj4bk4iMMivQ,4736
36
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/references/kotlin.md,sha256=yUDkaEknbmgYC-fF_RZVFkec_mzt-hHU09uyzwTA6qo,5319
37
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/references/python.md,sha256=3xfQXqz2xLTP98kruByQ2nAYBxUM5mCnhhTmn0G0kLA,4693
38
+ metaobjects/agent_context/_content/skills/metaobjects-prompts/references/typescript.md,sha256=cI6iYUkbNXvX2y5G_16svyv7JMdqcrLkHZVHN21wE98,6449
39
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/SKILL.md,sha256=dLe0zGPtXECvHMD4iOhQ62fH63rtwB17cCw1vsE5xmY,5928
40
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/java.md,sha256=Uz5oOjmAPmgPDiYQwkJPxbBMAI59hDajplxd2pVx9HY,3605
41
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/kotlin.md,sha256=9e3JhBRie_NWcRm7uwvCVqXxN1AE3C_HqJIlcJoYUDc,3841
42
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/react.md,sha256=5uDOmG_s6kLXc7R59ll0qxMDfS7jisI4WFPsFF3jPbE,3191
43
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/tanstack.md,sha256=07I5UD47UqPlZe-4fJXAKTF9uZfPuvD9aaz9NZ2zXj0,4272
44
+ metaobjects/agent_context/_content/skills/metaobjects-runtime-ui/references/typescript.md,sha256=JHDjMLitpDv7GKf_o7yU0jFv2mClM_fbSNNh0LvStZ4,3889
45
+ metaobjects/agent_context/_content/skills/metaobjects-verify/SKILL.md,sha256=TSqVVg6pDf36p7W_71cVyK378cFXsf0CECU6nhZ07wA,5199
46
+ metaobjects/agent_context/_content/skills/metaobjects-verify/references/migration.md,sha256=MV3wOIfudYwwPv3i6RUBDQeu1NU1KQVe9z_KxR4-W3Y,3268
47
+ metaobjects/agent_context/_content/templates/always-on.md.mustache,sha256=Z06FJZGd0dSr-wEOBGzUJSFm87sbzTZQqMBmtzm4aGY,1785
48
+ metaobjects/codegen/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
49
+ metaobjects/codegen/config.py,sha256=pLcQf0onC9VdHtYy8FcmkakIIUzwrQ9GxVAGuJ5dkio,327
50
+ metaobjects/codegen/constants.py,sha256=iXSRpukWzIIu-S7_FEAjiXDt22R_pCsFrfqAFaz02JA,502
51
+ metaobjects/codegen/extract_delegate_emitter.py,sha256=taAw5gX_CD12CSbVeVyT0uYoNmeF-6-MXetyGZVuESo,15316
52
+ metaobjects/codegen/extract_schema_emitter.py,sha256=gK26TuB8XyC13lFGzo6aYJ_v77pZgfjD2LiORMkKjtQ,6457
53
+ metaobjects/codegen/format.py,sha256=0ZkiQNaoRkhsq7V55G7C2WxwgXpLKSW7LBS6ZVMbBps,1030
54
+ metaobjects/codegen/fr010_field_mapping.py,sha256=VsdzNqPO7KlEgL4SnpJgh_SvwaXAuCHGAPLSdbod3Lc,8789
55
+ metaobjects/codegen/generator.py,sha256=ak32LwSHa0lrDa1LjcdEuS5WJWlDuDhlCbygdUykrdA,1871
56
+ metaobjects/codegen/generator_registry.py,sha256=s62IG5H5yMYkt_RcDuQbvkVV8LWlw99Jn1as3uq-08c,6598
57
+ metaobjects/codegen/instance_artifacts.py,sha256=rHHvjR4tdolVOFnXimoAJLZp6T5E9cFNdkYo_Fc7Y8Q,566
58
+ metaobjects/codegen/output_format_spec_emitter.py,sha256=PYQvXj2UcCO2_oLwoHeMGyZ1rA0Z7k8EVBn5eTOZJsE,3145
59
+ metaobjects/codegen/overwrite_policy.py,sha256=1d6GigkSfaIORV2s3h95OGq_TqDEWSvbCVFK6De9l7c,875
60
+ metaobjects/codegen/runner.py,sha256=olZV1hllGI4PnXiCzq0ihbYPMnC04JXxXLnsW7BIojw,3470
61
+ metaobjects/codegen/type_map.py,sha256=6Y-mPcnYk48QT-bApkTuAO2c-pWpn1yEDJWxLJOybbg,3771
62
+ metaobjects/codegen/generators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
63
+ metaobjects/codegen/generators/entity_model.py,sha256=e1XGxjwiSCrrj6OkQO6YyhJ_8lvn6fvHoCWky7jM3IU,11443
64
+ metaobjects/codegen/generators/extractor_generator.py,sha256=iC6YrgIgyzNM--uQR5Z3fw8OuvW8sWXwpjxtIO1pqfA,14212
65
+ metaobjects/codegen/generators/filter_allowlist_generator.py,sha256=H42E9opwoRBv5JwZWZw1iKXpyixVeOgfK3kxcxlB5ro,13194
66
+ metaobjects/codegen/generators/m2m_codegen.py,sha256=SOKzy3DGMUejubhgicpYrAd_onUFWN1a1SK6OAyTHSA,7921
67
+ metaobjects/codegen/generators/output_parser_generator.py,sha256=cS74vVVxCwPrcOfy1M6mfx4vBKIZOJrMSLQaP2Yo3Zc,12129
68
+ metaobjects/codegen/generators/output_prompt_generator.py,sha256=frLNf9pI3T79_M2kCxSpcEGRjZSfz9lHVkol0PVNA6o,7788
69
+ metaobjects/codegen/generators/payload_vo_generator.py,sha256=Onm_VpuByd9bzTGFOjv0JhwPScfMvBSvkfeLG4SIWHk,29397
70
+ metaobjects/codegen/generators/render_helper_generator.py,sha256=AreRDSOyzUQLFSzPyoV3yhZW_1bPq3flJQXRKejRcmg,19213
71
+ metaobjects/codegen/generators/router_generator.py,sha256=9OpDLjxzKLNjWz9zvumXAQ-ap3mKiGZ_HASpSZtq27c,30981
72
+ metaobjects/codegen/generators/template_generator.py,sha256=3W4aow0dBgi0UrRIcVG-QtWkHUPJaqFEgfrCYdHzOy8,2451
73
+ metaobjects/codegen/generators/tph_plan.py,sha256=5Hlh95UE3wne3uORlhP9N7Yk5kctPjkeKKgMMj78ArY,4897
74
+ metaobjects/codegen/generators/trace_helper_generator.py,sha256=A1St4SM2FYFsSqvxvAO2rZJVhGUKwCycvL7uiOa0eqg,15496
75
+ metaobjects/codegen/runtime/__init__.py,sha256=68CYfm9mbsFFdWsSv0SX0Ge3NDy_ACB3Nokaif5keDY,281
76
+ metaobjects/codegen/runtime/filter_parser.py,sha256=Z2AyLcMdxPdZp4joWeqvlhyHfWCmsE28UbZwVCxiUq8,7483
77
+ metaobjects/documentation/__init__.py,sha256=5sBqQmIxjK8FWSuX-ie8qoqKKmJQHF5SD84ijkRxECg,669
78
+ metaobjects/documentation/doc_constants.py,sha256=I_M2Riw7LpfwAonHy3MiB2id9MPogTFKdqbuAGvtNdA,555
79
+ metaobjects/documentation/doc_provider.py,sha256=g8jKdlqEd-roVZ5jx_uxWLLPQvpOXHjIT74PU0YveL4,625
80
+ metaobjects/documentation/doc_schema.py,sha256=eA1gl7GEoDgNtejlrUaT-XXpe_on7rtAiF87tggLYqk,1140
81
+ metaobjects/loader/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
+ metaobjects/loader/merge.py,sha256=PQ4UvGCDog7d8rfTzqZNRH0WfLipdTMGqUlLgg3-YdE,10668
83
+ metaobjects/loader/meta_data_loader.py,sha256=87oCtEQn3Cu5wZFeXKn4aerZYCy8qifUZiAjBKZQ5xs,9643
84
+ metaobjects/loader/validate_discriminator.py,sha256=bnZIXeXKs_gW5B1q0xY8Gvi28NIBMWLrkOwzpc5bMMk,7384
85
+ metaobjects/loader/validate_field_readonly.py,sha256=P2DpECRymr5NzRJGCoNhx21Qsby6EMW8OZ9dS1KhTTM,6380
86
+ metaobjects/loader/validate_source_parameter_ref.py,sha256=XpdTyQQAicKwlfCT13EKTA5n8zVdTbAx1maDzvHs6G8,6702
87
+ metaobjects/loader/validate_source_physical_names.py,sha256=2jqyJZb5U_zy58qFnR586Xzc_uqxzmvuRMQHYhMiCC8,5638
88
+ metaobjects/loader/validation_passes.py,sha256=fhVKRn3tzlD83WWpCrMM7wnm47DM522IQRRRGrrl1VQ,66353
89
+ metaobjects/loader/sources/__init__.py,sha256=SOwpT0fqDl_DBtyoaddOCfLuzdGiaYCI8uKb4DCsAhY,814
90
+ metaobjects/loader/sources/directory_source.py,sha256=p2O_tKi2IM87QwvzIz4pvjAQak0RI4f3NmtUv7qIPag,1561
91
+ metaobjects/loader/sources/file_source.py,sha256=uUtlmzELo_tevWVU38n5ReGBWPnY7vTjTAoP0Z_mjZw,1165
92
+ metaobjects/loader/sources/meta_data_source.py,sha256=1jozDdqmVjqbw6daIB-DKkHLcOi-I3k8l1MjWW088rE,1738
93
+ metaobjects/loader/sources/uri_source.py,sha256=ZjEngBgepbdNMzu3Pb7H_f-blr4JofJRqeNZggze7lw,1821
94
+ metaobjects/meta/__init__.py,sha256=edjF2SXThARzzHw90NSILwfdWhI07sOiTgogvj-M9Lg,67
95
+ metaobjects/meta/meta_data.py,sha256=-bodBZNzRmklgDM4Zvl3Nw-_CzG2eOhbeMlYY-VSZ74,8662
96
+ metaobjects/meta/meta_root.py,sha256=N2A_x93RopPF1TRH_e49wlqOM8WKst-YZMs4K9zO7-w,148
97
+ metaobjects/meta/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
98
+ metaobjects/meta/core/attr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
99
+ metaobjects/meta/core/attr/attr_constants.py,sha256=9xX6i8FMoUeLQ9uu_wlBt53BWsemDqGp15N4QzBns0Y,1111
100
+ metaobjects/meta/core/attr/meta_attr.py,sha256=SGGURFDLC6AGlSTtNIYYJZKg4dMQmZKI-zW3w7hbQ7I,4603
101
+ metaobjects/meta/core/field/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
102
+ metaobjects/meta/core/field/field_constants.py,sha256=TpOUp1OAH7mzDKn3oEnPiuyag4P4QQ0YgME8yT0tMdc,4561
103
+ metaobjects/meta/core/field/meta_field.py,sha256=p-9A3AZTU1D-aSSOeyGT67rSF27XcpIgSy1UlWDYdjE,3053
104
+ metaobjects/meta/core/identity/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
+ metaobjects/meta/core/identity/identity_constants.py,sha256=Ts9OjT4dUOFugMrCo96aCTODuxn1qcnPHB3VfRgha_I,767
106
+ metaobjects/meta/core/identity/meta_identity.py,sha256=_VrJMUTTxrPXbwu0HUZcv5dqg0YUmXBhfn9IF-LAnko,153
107
+ metaobjects/meta/core/object/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
108
+ metaobjects/meta/core/object/meta_object.py,sha256=SKMm27MGnnyk-qHnW325OqmIS0tgQceWULY_07le8zA,2983
109
+ metaobjects/meta/core/object/meta_object_aware.py,sha256=MwwcuhwGSei4D8M2Hv6t_GKumCNG6_53ev9CJpsA5Fw,1686
110
+ metaobjects/meta/core/object/object_class_registry.py,sha256=DzZyE3K7-oyJhqbeFbwQeudJ1G4hUMuzvMkEFq0zFeY,2272
111
+ metaobjects/meta/core/object/object_constants.py,sha256=TdCQIxkCVRWeGPBGPKNNlxZ4Zlb6Ixt5YxxjAsV5qNY,656
112
+ metaobjects/meta/core/object/object_extract.py,sha256=R5djalH3m1j93w82ac5V0UtdJi50rGsPzCGMUOU745c,17662
113
+ metaobjects/meta/core/object/value_object.py,sha256=mhHYNDda2R2nttQJwFAgcwMrFpxANscRfc9As3g7toA,2648
114
+ metaobjects/meta/core/relationship/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
+ metaobjects/meta/core/relationship/derive_m2m_fields.py,sha256=p3MM0yR4d3FTNaVwK5bzfGx6_kSFKPsFA-sQ-NCRZ1s,7384
116
+ metaobjects/meta/core/relationship/meta_relationship.py,sha256=BnASDbUgox38zJDZKX-bK6X8CXPh94y77M5E_ZnZCmw,2225
117
+ metaobjects/meta/core/relationship/relationship_constants.py,sha256=FD8T0KSKOTHRURXcVZ5zF1TODyocBlhzgjmxX21EFzI,2118
118
+ metaobjects/meta/core/validator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
119
+ metaobjects/meta/core/validator/validator_constants.py,sha256=YpKLKDXB_asW8Ave52o8Q2x_XsGW_xVMce58qD26fhA,694
120
+ metaobjects/meta/persistence/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
121
+ metaobjects/meta/persistence/db/__init__.py,sha256=72JhRhObxHwe4UJ6OdzEKUkwxswN0RqmdXI4VRFipoA,87
122
+ metaobjects/meta/persistence/db/db_constants.py,sha256=QfB6lNAVjKa9UW6FclZF8lDkUZo0_IgLRmffGOr3xdw,1946
123
+ metaobjects/meta/persistence/db/db_provider.py,sha256=W0yUSjcMUHiKNiuqgiDO514SuVBb_lnBriYMIFg8dOY,2849
124
+ metaobjects/meta/persistence/origin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
125
+ metaobjects/meta/persistence/origin/meta_origin.py,sha256=8gdHNPBkcZsMCUt3Y9suDxRSw2VjNui8HF2cYNUI-Ek,174
126
+ metaobjects/meta/persistence/origin/origin_constants.py,sha256=9ZMIVRkgpKDn4_-TNcocob8nYWwE1mGnkSF67FBMiHY,485
127
+ metaobjects/meta/persistence/source/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
128
+ metaobjects/meta/persistence/source/meta_source.py,sha256=AIC0iHGbTSRF4p_JkzpWA_wDPvqXP6MTIzB_rYxcqzc,5058
129
+ metaobjects/meta/persistence/source/source_constants.py,sha256=SEJFGXR0AL2dNvid20yjIisWRBb3kPMVdeccwEOoVRU,4647
130
+ metaobjects/meta/presentation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
+ metaobjects/meta/presentation/layout/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
132
+ metaobjects/meta/presentation/layout/layout_constants.py,sha256=5Rqo2eRDULHgRLrb_r1VoeV9HqKXRyA8KO_X8AlEJtw,454
133
+ metaobjects/meta/presentation/layout/meta_layout.py,sha256=9s_v2X1WVGofSid44r8Ejz3b8MVHnWDDe8Xy1N5jvX0,159
134
+ metaobjects/meta/presentation/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
+ metaobjects/meta/presentation/view/meta_view.py,sha256=X8YUjWDAR7qclH92GZ8rJmEBGkmuvWIs6go7871r8-o,165
136
+ metaobjects/meta/presentation/view/view_constants.py,sha256=vAbJW0Dpm0rmihC0gDsNXULCobM_YUWiSS3xCiFaPBw,864
137
+ metaobjects/meta/template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
+ metaobjects/meta/template/meta_template.py,sha256=xF1c5QX1OTFt-gsMt4QrigHhYTuPPtq6xSDJAkH5zmg,1603
139
+ metaobjects/meta/template/template_constants.py,sha256=d3NViuS3WD27VcWgHEvf_BjgFW0BD0whxWiq02GtqvQ,4774
140
+ metaobjects/meta/template/template_provider.py,sha256=5_7y6UHbnjtmWE3kUye6YGo0cEJyuVKVJJJNBPz-u88,1904
141
+ metaobjects/render/__init__.py,sha256=P630ja2qcgyrPl1PMQLhL48LL-acfJMeOey6R15pLgs,1711
142
+ metaobjects/render/email_document.py,sha256=1LUQvISqXfxS6DzgVYi68zwjZpTUxmov4pGChO7nKL0,390
143
+ metaobjects/render/escapers.py,sha256=iwaLb9p97fOudSluAopIBNVVH8x0nYuDefnYGru4rU0,3206
144
+ metaobjects/render/filesystem_provider.py,sha256=RayEiJH4qIuZcSZ37b14h__L8FTyFK7v0C8ARAUFcIA,1971
145
+ metaobjects/render/renderer.py,sha256=dv8P8tEYbaKo3m7ApH2RzZMQ3nMdw0_NfShQMOHtUWM,12550
146
+ metaobjects/render/verify.py,sha256=FkkUmEWd4dtRrKcrACcMjjciA3UexWzS2vKOCfUmbRo,10051
147
+ metaobjects/render/extract/__init__.py,sha256=DpQroByokCdDUSJ2Ws7qHfCVXOeGewTC_himdufZ6QU,1537
148
+ metaobjects/render/extract/coerce.py,sha256=TXrp64B638K5xgx49MN46HkoKcN1qaF4q6p5OKWNpdw,10504
149
+ metaobjects/render/extract/extract.py,sha256=WyDQ2_ht1hGWVTNOQ8VIWpw7OQPykyZZ4fhvFHULMXg,9153
150
+ metaobjects/render/extract/extract_map.py,sha256=kQX3AE5DMJaFyifw0T72HMtZ2mREN_zKbBoRCdoRJpE,1758
151
+ metaobjects/render/extract/json_forgiving_reader.py,sha256=9NbpBtZB7Ns7_cyGpRw6plwGKKWPDzinxzREsj_A72E,7452
152
+ metaobjects/render/extract/locate.py,sha256=HOayXPdvF3RMmPxKunG2v-dhR1QMxbZ61-gE3FUFBiY,1979
153
+ metaobjects/render/extract/normalize.py,sha256=PMHlqpHHaEwBtHAOKAeiv6U0BLJgQ5kyYpkHXSedfDQ,3546
154
+ metaobjects/render/extract/strip.py,sha256=XDgquOxo1BlowzK6qBy8nJtA6xfGikpL8y7QblVOY4s,626
155
+ metaobjects/render/extract/types.py,sha256=IBZTnayooMlRiaEK85eqmdNJOr9-UVKwLqPEFQinpoE,11177
156
+ metaobjects/render/extract/xml_forgiving_reader.py,sha256=0a8PPP5_UcH9d4r3m2d0JlF-Sqkr9zpGEr-Msv5voYg,7195
157
+ metaobjects/render/prompt/__init__.py,sha256=tpz6G2xXfcUkTawOGweuRIhwZ4s14bZwh3EXUx_f4LI,1217
158
+ metaobjects/render/prompt/output_format_renderer.py,sha256=dMplySa4IF473NgDLzLG-rdiqNwIRohCtGLAAns58I4,11326
159
+ metaobjects/render/prompt/output_format_spec.py,sha256=-QSAHEML27AUMZ2jJTBgbD1VA5cku9eiLeC8QK2Yc1I,882
160
+ metaobjects/render/prompt/prompt_field.py,sha256=r9wnVVg136gKJ8CVjMW9RTc0CjwnJC8QuPEEqWRwE4o,925
161
+ metaobjects/render/prompt/prompt_overrides.py,sha256=0aCAaIPEO2aQMSGstWe7KJjR47cYPR48qzWKCIu-kH4,937
162
+ metaobjects/render/prompt/prompt_style.py,sha256=vlE8Hr0DO8u1yCfBzVv8rgunVIy2pOSCco-2nEq1GHE,1390
163
+ metaobjects/runtime/__init__.py,sha256=HMnGVvye-KCWPzrDQISNV7AHi3c7rQHOcBJgJyPcVuQ,1092
164
+ metaobjects/runtime/llm_recorder.py,sha256=uSg6m5iYfEbMKDnUOdE8tKRDcANnoxofh8Ye5z9f0Fk,8061
165
+ metaobjects/runtime/n2m_resolver.py,sha256=a-vgIpAy2ebMb1Yu8RXRkGS3GknXtfa6qHzzs6miq1c,5830
166
+ metaobjects/runtime/object_manager.py,sha256=y0pYPbTuQLKQS8F9eovIXNBaVlECm2UrnhU2MakMRmE,32548
167
+ metaobjects/runtime/tph.py,sha256=g8ptpK2FVOOLo_uV-LrwrYUg9GqsQX5TRSzQd9zxhz4,2059
168
+ metaobjects/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
+ metaobjects/shared/base_types.py,sha256=1ubFJCGFvVP8-e1iBakWjJt9HrZQTU0-fDP_KmCnX0o,415
170
+ metaobjects/shared/separators.py,sha256=WbMjvCqF6rC3R1AEm1uR2mgU_3MK1JK4XVVf9zw4J-Y,134
171
+ metaobjects/shared/structural.py,sha256=3T9p3dPmiFQkHBtpFOR3vpheGB9q2hkklXeCjWDtiKk,280
172
+ metaobjects/source/__init__.py,sha256=IvUtYWvZC8EDp0rXalRCcNvgMcFwLCkx6Pc22fdn0a8,2062
173
+ metaobjects/source/error_source.py,sha256=rkLtnqMKfdAwvsxCCsVS6hyOXlDr4dCPeiuzVZ9peD0,8953
174
+ metaobjects/source/json_path.py,sha256=MPRtNMBalyo8hiLGSebTQIkHLFVxPs51bnm0VEgMvL0,3687
175
+ metaobjects/source/semantic_diff.py,sha256=lF44K-PrwFBOdg90Id-AVGDrA5QRO5ijN8W9bFe_DUs,4021
176
+ metaobjects/source/yaml_positions.py,sha256=fkulU9FA6pqEpibdjGIc0bV9c9ROpNE724y1dF3zlHs,6783
177
+ metaobjects-0.9.0.dist-info/METADATA,sha256=RW9mvd6__t5EPAX2GW-yRTiB5CDN8alA9QtJrOIrW2I,3935
178
+ metaobjects-0.9.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
179
+ metaobjects-0.9.0.dist-info/entry_points.txt,sha256=lAVx2WO-JN2UOMiiOmM4hra2y7Hc_DKv8OKCXvo8oKY,53
180
+ metaobjects-0.9.0.dist-info/licenses/LICENSE,sha256=xzSOYDXwZeinhruAQiZC1nih8f3LCFusQNHSlrZzqdg,10514
181
+ metaobjects-0.9.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ metaobjects = metaobjects.cli:main
@@ -0,0 +1,189 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship made available under
36
+ the License, as indicated by a copyright notice that is included in
37
+ or attached to the work (an example is provided in the Appendix below).
38
+
39
+ "Derivative Works" shall mean any work, whether in Source or Object
40
+ form, that is based on (or derived from) the Work and for which the
41
+ editorial revisions, annotations, elaborations, or other transformations
42
+ represent, as a whole, an original work of authorship. For the purposes
43
+ of this License, Derivative Works shall not include works that remain
44
+ separable from, or merely link (or bind by name) to the interfaces of,
45
+ the Work and Derivative Works thereof.
46
+
47
+ "Contribution" shall mean, as submitted to the Licensor for inclusion
48
+ in the Work by the copyright owner or by an individual or Legal Entity
49
+ authorized to submit on behalf of the copyright owner. For the purposes
50
+ of this definition, "submitted" means any form of electronic, verbal,
51
+ or written communication sent to the Licensor or its representatives,
52
+ including but not limited to communication on electronic mailing lists,
53
+ source code control systems, and issue tracking systems that are managed
54
+ by, or on behalf of, the Licensor for the purpose of recording and
55
+ discussing modifications to the Work, but excluding communication that
56
+ is conspicuously marked or designated in writing by the copyright owner
57
+ as "Not a Contribution."
58
+
59
+ "Contributor" shall mean Licensor and any Legal Entity on behalf of
60
+ whom a Contribution has been received by the Licensor and included
61
+ within the Work.
62
+
63
+ 2. Grant of Copyright License. Subject to the terms and conditions of
64
+ this License, each Contributor hereby grants to You a perpetual,
65
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
66
+ copyright license to reproduce, prepare Derivative Works of,
67
+ publicly display, publicly perform, sublicense, and distribute the
68
+ Work and such Derivative Works in Source or Object form.
69
+
70
+ 3. Grant of Patent License. Subject to the terms and conditions of
71
+ this License, each Contributor hereby grants to You a perpetual,
72
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
73
+ (except as stated in this section) patent license to make, have made,
74
+ use, offer to sell, sell, import, and otherwise transfer the Work,
75
+ where such license applies only to those patent claims licensable
76
+ by such Contributor that are necessarily infringed by their
77
+ Contribution(s) alone or by the combination of their Contribution(s)
78
+ with the Work to which such Contribution(s) was submitted. If You
79
+ institute patent litigation against any entity (including a cross-claim
80
+ or counterclaim in a lawsuit) alleging that the Work or any
81
+ Contribution embodied within the Work constitutes direct or contributory
82
+ patent infringement, then any patent licenses granted to You under
83
+ this License for that Work shall terminate as of the date such
84
+ litigation is filed.
85
+
86
+ 4. Redistribution. You may reproduce and distribute copies of the
87
+ Work or Derivative Works thereof in any medium, with or without
88
+ modifications, and in Source or Object form, provided that You
89
+ meet the following conditions:
90
+
91
+ (a) You must give any other recipients of the Work or Derivative
92
+ Works a copy of this License; and
93
+
94
+ (b) You must cause any modified files to carry prominent notices
95
+ stating that You changed the files; and
96
+
97
+ (c) You must retain, in the Source form of any Derivative Works
98
+ that You distribute, all copyright, patent, trademark, and
99
+ attribution notices from the Source form of the Work,
100
+ excluding those notices that do not pertain to any part of
101
+ the Derivative Works; and
102
+
103
+ (d) If the Work includes a "NOTICE" text file as part of its
104
+ distribution, You must include a readable copy of the
105
+ attribution notices contained within such NOTICE file, in
106
+ at least one of the following places: within a NOTICE text
107
+ file distributed as part of the Derivative Works; within
108
+ the Source form or documentation, if provided along with the
109
+ Derivative Works; or, within a display generated by the
110
+ Derivative Works, if and wherever such third-party notices
111
+ normally appear. The contents of the NOTICE file are for
112
+ informational purposes only and do not modify the License.
113
+ You may add Your own attribution notices within Derivative
114
+ Works that You distribute, alongside or in addition to the
115
+ NOTICE text from the Work, provided that such additional
116
+ attribution notices cannot be construed as modifying the License.
117
+
118
+ You may add Your own license statement for Your modifications and
119
+ may provide additional grant of rights to use, reproduce, modify,
120
+ prepare derivative works of, distribute, and sublicense such modifications,
121
+ as an additional requirement of this License.
122
+
123
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
124
+ any Contribution intentionally submitted for inclusion in the Work
125
+ by You to the Licensor shall be under the terms and conditions of
126
+ this License, without any additional terms or conditions.
127
+ Notwithstanding the above, nothing herein shall supersede or modify
128
+ the terms of any separate license agreement you may have executed
129
+ with Licensor regarding such Contributions.
130
+
131
+ 6. Trademarks. This License does not grant permission to use the trade
132
+ names, trademarks, service marks, or product names of the Licensor,
133
+ except as required for reasonable and customary use in describing the
134
+ origin of the Work and reproducing the content of the NOTICE file.
135
+
136
+ 7. Disclaimer of Warranty. Unless required by applicable law or
137
+ agreed to in writing, Licensor provides the Work (and each
138
+ Contributor provides its Contributions) on an "AS IS" BASIS,
139
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
140
+ implied, including, without limitation, any conditions of TITLE,
141
+ NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR
142
+ PURPOSE. You are solely responsible for determining the
143
+ appropriateness of using or reproducing the Work and assume any
144
+ risks associated with Your exercise of permissions under this License.
145
+
146
+ 8. Limitation of Liability. In no event and under no legal theory,
147
+ whether in tort (including negligence), contract, or otherwise,
148
+ unless required by applicable law (such as deliberate and grossly
149
+ negligent acts) or agreed to in writing, shall any Contributor be
150
+ liable to You for damages, including any direct, indirect, special,
151
+ incidental, or exemplary damages of any character arising as a
152
+ result of this License or out of the use or inability to use the
153
+ Work (including but not limited to damages for loss of goodwill,
154
+ work stoppage, computer failure or malfunction, or all other
155
+ commercial damages or losses), even if such Contributor has been
156
+ advised of the possibility of such damages.
157
+
158
+ 9. Accepting Warranty or Additional Liability. While redistributing
159
+ the Work or Derivative Works thereof, You may choose to offer,
160
+ and charge a fee for, acceptance of support, warranty, indemnity,
161
+ or other liability obligations and/or rights consistent with this
162
+ License. However, in accepting such obligations, You may offer
163
+ only obligations consistent to this License provided that the
164
+ obligations are consistent with this License.
165
+
166
+ END OF TERMS AND CONDITIONS
167
+
168
+ APPENDIX: How to apply the Apache License to your work.
169
+
170
+ To apply the Apache License to your work, attach the following
171
+ boilerplate notice, with the fields enclosed by brackets "[]"
172
+ replaced with your own identifying information. (Don't include
173
+ the brackets!) The text should be enclosed in the appropriate
174
+ comment syntax for the file format in question. Also add information
175
+ on how to contact you electronically and/or by mail.
176
+
177
+ Copyright 2026 MetaObjects Contributors
178
+
179
+ Licensed under the Apache License, Version 2.0 (the "License");
180
+ you may not use this file except in compliance with the License.
181
+ You may obtain a copy of the License at
182
+
183
+ http://www.apache.org/licenses/LICENSE-2.0
184
+
185
+ Unless required by applicable law or agreed to in writing, software
186
+ distributed under the License is distributed on an "AS IS" BASIS,
187
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
188
+ See the License for the specific language governing permissions and
189
+ limitations under the License.