├── .github ├── CODEOWNERS ├── dependabot.yaml └── workflows │ ├── ci.yaml │ ├── docs.yaml │ ├── grafana-foundation-sdk-diff-preview.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .golangci.yaml ├── .goreleaser.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── catalog-info.yaml ├── cmd ├── cli │ ├── generate │ │ └── command.go │ ├── inspect │ │ └── command.go │ └── main.go ├── cog-config-schemas │ └── main.go └── compiler-passes-docs │ └── main.go ├── config ├── ci │ └── php │ │ └── phpstan.neon ├── foundation_sdk.dev.yaml └── foundation_sdk.tests.yaml ├── devbox.d └── php │ ├── php-fpm.conf │ └── php.ini ├── devbox.json ├── devbox.lock ├── docs ├── assets │ ├── custom.css │ └── logo.svg ├── index.md ├── pipelines │ ├── builder_transformations.md │ ├── creating_pipeline.md │ ├── index.md │ └── schema_transformations.md └── reference │ ├── builders_transformations.md │ ├── glossary.md │ ├── index.md │ ├── schema_transformations.md │ └── template_blocks.md ├── examples ├── _as_library │ └── main.go ├── _go │ ├── common.go │ ├── cpu.go │ ├── disk.go │ ├── logs.go │ ├── main.go │ ├── memory.go │ └── network.go ├── _go_alerting │ └── main.go ├── _go_dashboardv2 │ ├── common.go │ ├── cpu.go │ ├── disk.go │ ├── logs.go │ ├── main.go │ ├── memory.go │ └── network.go ├── java │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── test │ │ ├── CPU.java │ │ ├── Common.java │ │ ├── Disk.java │ │ ├── Logs.java │ │ ├── Main.java │ │ ├── Memory.java │ │ └── Network.java ├── java_dashboardv2 │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── test │ │ ├── CPU.java │ │ ├── Common.java │ │ ├── Disk.java │ │ ├── Logs.java │ │ ├── Main.java │ │ ├── Memory.java │ │ └── Network.java ├── php │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── src │ │ └── Monitoring │ │ ├── CPU.php │ │ ├── Common.php │ │ ├── Disk.php │ │ ├── Logs.php │ │ ├── Memory.php │ │ └── Network.php ├── php_dashboardv2 │ ├── composer.json │ ├── composer.lock │ ├── index.php │ ├── src │ │ └── Monitoring │ │ │ ├── CPU.php │ │ │ ├── Common.php │ │ │ ├── Disk.php │ │ │ ├── Logs.php │ │ │ ├── Memory.php │ │ │ └── Network.php │ └── vendor │ │ ├── autoload.php │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installed.php ├── python │ ├── main.py │ └── raspberry │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── common.py │ │ ├── cpu.py │ │ ├── disk.py │ │ ├── logs.py │ │ ├── memory.py │ │ └── network.py ├── python_dashboardv2 │ ├── main.py │ └── raspberry │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── common.py │ │ ├── cpu.py │ │ ├── disk.py │ │ ├── logs.py │ │ ├── memory.py │ │ └── network.py ├── typescript │ ├── common.ts │ ├── cpu.ts │ ├── disk.ts │ ├── index.ts │ ├── logs.ts │ ├── memory.ts │ └── network.ts └── typescript_dashboardv2 │ ├── common.ts │ ├── cpu.ts │ ├── disk.ts │ ├── index.ts │ ├── logs.ts │ ├── memory.ts │ └── network.ts ├── examples_test.go ├── go.mod ├── go.sum ├── helpers.go ├── helpers_test.go ├── internal ├── ast │ ├── builder.go │ ├── builder_factories.go │ ├── buildervisitor.go │ ├── compiler │ │ ├── add_fields.go │ │ ├── add_fields_test.go │ │ ├── add_object.go │ │ ├── anonymous_enum.go │ │ ├── anonymous_enum_test.go │ │ ├── anonymous_structs_to_named.go │ │ ├── append_comment_objects.go │ │ ├── append_comment_objects_test.go │ │ ├── cleanup_k8_resource_name.go │ │ ├── cleanup_k8_resource_name_test.go │ │ ├── compiler.go │ │ ├── constant_to_enum.go │ │ ├── constant_to_enum_test.go │ │ ├── dataquery_identification.go │ │ ├── disjunction_of_constants_to_enum.go │ │ ├── disjunction_of_constants_to_enum_test.go │ │ ├── disjunction_with_constant_to_default.go │ │ ├── disjunction_with_constant_to_default_test.go │ │ ├── disjunctions.go │ │ ├── disjunctions_infer_mapping.go │ │ ├── disjunctions_infer_mapping_test.go │ │ ├── disjunctions_of_anonymous_to_explicit.go │ │ ├── disjunctions_of_anonymous_to_explicit_test.go │ │ ├── disjunctions_test.go │ │ ├── disjunctions_with_null_to_optional.go │ │ ├── disjunctions_with_null_to_optional_test.go │ │ ├── duplicate_object.go │ │ ├── fields_set_default.go │ │ ├── fields_set_default_test.go │ │ ├── fields_set_not_required.go │ │ ├── fields_set_required.go │ │ ├── fields_set_required_test.go │ │ ├── filter_schemas.go │ │ ├── filter_schemas_test.go │ │ ├── flatten_disjunctions.go │ │ ├── flatten_disjunctions_test.go │ │ ├── hint_object.go │ │ ├── hint_object_test.go │ │ ├── infer_entrypoint.go │ │ ├── inline_objects_with_types.go │ │ ├── inline_objects_with_types_test.go │ │ ├── name_anonymous_struct.go │ │ ├── name_anonymous_struct_test.go │ │ ├── not_required_as_nullable.go │ │ ├── not_required_as_nullable_test.go │ │ ├── omit.go │ │ ├── omit_fields.go │ │ ├── omit_fields_test.go │ │ ├── omit_test.go │ │ ├── prefix_enum_values.go │ │ ├── prefix_enum_values_test.go │ │ ├── prefix_object_names_test.go │ │ ├── prefix_objects_names.go │ │ ├── remove_intersections.go │ │ ├── rename_numeric_enum_values.go │ │ ├── rename_numeric_enum_values_test.go │ │ ├── rename_object.go │ │ ├── rename_object_test.go │ │ ├── replace_reference.go │ │ ├── replace_reference_test.go │ │ ├── retype_field.go │ │ ├── retype_field_test.go │ │ ├── retype_object.go │ │ ├── retype_object_test.go │ │ ├── sanitize_enum_member_names.go │ │ ├── schema_set_entrypoint.go │ │ ├── schema_set_identifier.go │ │ ├── trim_enum_values.go │ │ ├── trim_enum_values_test.go │ │ ├── types.go │ │ ├── undiscriminated_disjunctions_to_any.go │ │ ├── undiscriminated_disjunctions_to_any_test.go │ │ ├── unspec.go │ │ ├── unspec_test.go │ │ ├── utils_test.go │ │ └── visitor.go │ ├── hints.go │ ├── schema.go │ ├── tools.go │ ├── types.go │ └── types_test.go ├── codegen │ ├── cue.go │ ├── input.go │ ├── jsonschema.go │ ├── kindregistry.go │ ├── kindsyscomposable.go │ ├── kindsyscore.go │ ├── openapi.go │ ├── options.go │ ├── output.go │ ├── pipeline.go │ ├── run.go │ ├── tools.go │ └── transforms.go ├── envvars │ └── env.go ├── jennies │ ├── common │ │ ├── apireference.go │ │ ├── codejen.go │ │ ├── codejen_test.go │ │ ├── customtemplate.go │ │ ├── dynamicfilestemplate.go │ │ ├── importmap.go │ │ ├── repotemplate.go │ │ └── templatehelpers.go │ ├── golang │ │ ├── apiref.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── converter.go │ │ ├── converter_test.go │ │ ├── equality.go │ │ ├── equality_test.go │ │ ├── imports.go │ │ ├── jennies.go │ │ ├── jsonmarshalling.go │ │ ├── postprocessor.go │ │ ├── rawtypes.go │ │ ├── rawtypes_test.go │ │ ├── runtime.go │ │ ├── strictjson.go │ │ ├── templates │ │ │ ├── builders │ │ │ │ ├── args.tmpl │ │ │ │ ├── assignment.tmpl │ │ │ │ ├── builder.tmpl │ │ │ │ ├── factory.tmpl │ │ │ │ ├── nilcheck.tmpl │ │ │ │ └── options.tmpl │ │ │ ├── converters │ │ │ │ └── converter.tmpl │ │ │ ├── runtime │ │ │ │ └── tools.tmpl │ │ │ └── types │ │ │ │ ├── dataquery_equality_method.tmpl │ │ │ │ ├── disjunction_of_refs.json_marshal.tmpl │ │ │ │ ├── disjunction_of_refs.json_unmarshal.tmpl │ │ │ │ ├── disjunction_of_refs.strict.json_unmarshal.tmpl │ │ │ │ ├── disjunction_of_scalars.json_marshal.tmpl │ │ │ │ ├── disjunction_of_scalars.json_unmarshal.tmpl │ │ │ │ ├── disjunction_of_scalars.strict.json_unmarshal.tmpl │ │ │ │ ├── disjunction_of_scalars_and_refs.json_marshal.tmpl │ │ │ │ ├── disjunction_of_scalars_and_refs.json_unmarshal.tmpl │ │ │ │ ├── disjunction_of_scalars_and_refs.strict.json_unmarshal.tmpl │ │ │ │ ├── struct.strict.json_unmarshal.tmpl │ │ │ │ ├── struct_equality_method.tmpl │ │ │ │ └── struct_validation_method.tmpl │ │ ├── tmpl.go │ │ ├── tools.go │ │ ├── types.go │ │ ├── validation.go │ │ └── validation_test.go │ ├── java │ │ ├── apiref.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── converter.go │ │ ├── deserializers.go │ │ ├── deserializers_test.go │ │ ├── factory.go │ │ ├── imports.go │ │ ├── jennies.go │ │ ├── jsonmarshalling.go │ │ ├── rawtypes.go │ │ ├── rawtypes_test.go │ │ ├── runtime.go │ │ ├── serializers.go │ │ ├── serializers_test.go │ │ ├── templates │ │ │ ├── builders │ │ │ │ ├── args.tmpl │ │ │ │ ├── assigments.tmpl │ │ │ │ ├── builder.tmpl │ │ │ │ ├── constraints.tmpl │ │ │ │ ├── factories.tmpl │ │ │ │ └── nilcheck.tmpl │ │ │ ├── converters │ │ │ │ ├── converter.tmpl │ │ │ │ ├── converter_runtime.tmpl │ │ │ │ └── dataquery_converter.tmpl │ │ │ ├── marshalling │ │ │ │ ├── disjunctions.json_marshall.tmpl │ │ │ │ ├── disjunctions_of_refs.json_unmarshall.tmpl │ │ │ │ ├── disjunctions_of_scalars.json_unmarshall.tmpl │ │ │ │ ├── disjunctions_of_scalars_and_refs.json_unmarshall.tmpl │ │ │ │ ├── map_check.json_unmarshal.tmpl │ │ │ │ ├── marshalling.tmpl │ │ │ │ └── unmarshalling.tmpl │ │ │ ├── runtime │ │ │ │ ├── builder.tmpl │ │ │ │ ├── converter_interface.tmpl │ │ │ │ └── variants.tmpl │ │ │ └── types │ │ │ │ ├── class.tmpl │ │ │ │ ├── constants.tmpl │ │ │ │ └── enum.tmpl │ │ ├── tmpl.go │ │ ├── tools.go │ │ └── types.go │ ├── jsonschema │ │ ├── jennies.go │ │ ├── schema.go │ │ └── schema_test.go │ ├── openapi │ │ ├── jennies.go │ │ ├── schema.go │ │ └── schema_test.go │ ├── php │ │ ├── add_typehints_comments.go │ │ ├── apiref.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── converter.go │ │ ├── converter_test.go │ │ ├── factory.go │ │ ├── jennies.go │ │ ├── rawtypes.go │ │ ├── rawtypes_test.go │ │ ├── runtime.go │ │ ├── shape.go │ │ ├── templates │ │ │ ├── builders │ │ │ │ ├── args.tmpl │ │ │ │ ├── assignment.tmpl │ │ │ │ ├── builder.tmpl │ │ │ │ ├── constraints.tmpl │ │ │ │ ├── factories.tmpl │ │ │ │ ├── factory.tmpl │ │ │ │ ├── nilcheck.tmpl │ │ │ │ └── option.tmpl │ │ │ ├── converters │ │ │ │ └── converter.tmpl │ │ │ ├── runtime │ │ │ │ └── builder.tmpl │ │ │ └── types │ │ │ │ └── enum.tmpl │ │ ├── tmpl.go │ │ ├── tools.go │ │ ├── typehints.go │ │ └── types.go │ ├── python │ │ ├── apiref.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── imports.go │ │ ├── jennies.go │ │ ├── module_init.go │ │ ├── rawtypes.go │ │ ├── rawtypes_test.go │ │ ├── runtime.go │ │ ├── templates │ │ │ ├── builders │ │ │ │ ├── args.tmpl │ │ │ │ ├── assignment.tmpl │ │ │ │ ├── builder.tmpl │ │ │ │ ├── comments.tmpl │ │ │ │ ├── constraints.tmpl │ │ │ │ ├── factories.tmpl │ │ │ │ ├── factory.tmpl │ │ │ │ ├── nilcheck.tmpl │ │ │ │ └── options.tmpl │ │ │ └── runtime │ │ │ │ ├── builder.tmpl │ │ │ │ └── encoder.tmpl │ │ ├── tmpl.go │ │ ├── tools.go │ │ └── types.go │ ├── template │ │ ├── blocks.go │ │ └── template.go │ └── typescript │ │ ├── apiref.go │ │ ├── builder.go │ │ ├── builder_test.go │ │ ├── imports.go │ │ ├── index.go │ │ ├── jennies.go │ │ ├── rawtypes.go │ │ ├── rawtypes_test.go │ │ ├── runtime.go │ │ ├── runtime_test.go │ │ ├── templates │ │ ├── args.tmpl │ │ ├── builder.tmpl │ │ ├── constraints.tmpl │ │ ├── factory.tmpl │ │ ├── nilcheck.tmpl │ │ └── options.tmpl │ │ ├── tmpl.go │ │ ├── tools.go │ │ └── types.go ├── jsonschema │ ├── generator.go │ ├── generator_test.go │ └── utils.go ├── languages │ ├── config.go │ ├── context.go │ ├── context_test.go │ ├── converter.go │ ├── language.go │ └── nilchecks.go ├── openapi │ ├── generator.go │ ├── generator_test.go │ └── utils.go ├── orderedmap │ ├── map.go │ └── map_test.go ├── semver │ └── semver.go ├── simplecue │ ├── generator.go │ ├── generator_test.go │ ├── referenceresolver.go │ └── utils.go ├── testutils │ ├── constants.go │ ├── jennytestsuite.go │ └── orderedmap.go ├── tools │ ├── arrays.go │ ├── maps.go │ ├── regexp.go │ ├── strings.go │ └── types.go ├── veneers │ ├── builder │ │ ├── rules.go │ │ ├── rules_test.go │ │ ├── selectors.go │ │ └── selectors_test.go │ ├── option │ │ ├── actions.go │ │ ├── actions_test.go │ │ ├── rules.go │ │ ├── selectors.go │ │ └── selectors_test.go │ ├── rewrite │ │ ├── rewrite.go │ │ └── rewrite_test.go │ └── types.go └── yaml │ ├── builder.go │ ├── compiler.go │ ├── compilerpasses.go │ ├── converter_config.go │ ├── option.go │ ├── veneers.go │ └── veneers_test.go ├── mkdocs-github.yml ├── mkdocs.yml ├── requirements.txt ├── schemas ├── compiler_passes.json ├── pipeline.json └── veneers.json ├── scripts └── ci │ ├── build-go.sh │ ├── build-java.sh │ ├── build-php.sh │ ├── build-python.sh │ └── build-ts.sh ├── testdata ├── generated │ ├── cog │ │ ├── errors.go │ │ ├── plugins │ │ │ └── variants.go │ │ ├── runtime.go │ │ └── variants │ │ │ └── variants.go │ ├── defaults │ │ └── types_gen.go │ ├── equality │ │ └── types_gen.go │ └── validation │ │ └── types_gen.go ├── jennies │ ├── builders │ │ ├── anonymous_struct │ │ │ ├── GoBuilder │ │ │ │ └── anonymous_struct │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── anonymous_struct │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── AnonymousStruct │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── anonymousStruct │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── array_append │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── basic_struct │ │ │ ├── GoBuilder │ │ │ │ └── basic_struct │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── basic_struct │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── basic_struct │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── BasicStruct │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── BasicStruct │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── basic_struct.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── basicStruct │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── basic_struct_defaults │ │ │ ├── GoBuilder │ │ │ │ └── basic_struct_defaults │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── basic_struct_defaults │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── basic_struct_defaults │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── BasicStructDefaults │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── BasicStructDefaults │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── basic_struct_defaults.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── basicStructDefaults │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── builder_delegation │ │ │ ├── GoBuilder │ │ │ │ └── builder_delegation │ │ │ │ │ ├── dashboard_builder_gen.go │ │ │ │ │ └── dashboardlink_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── builder_delegation │ │ │ │ │ ├── dashboard_converter_gen.go │ │ │ │ │ └── dashboardlink_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── builder_delegation │ │ │ │ │ ├── DashboardBuilder.java │ │ │ │ │ └── DashboardLinkBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── BuilderDelegation │ │ │ │ │ ├── DashboardBuilder.php │ │ │ │ │ └── DashboardLinkBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── BuilderDelegation │ │ │ │ │ ├── DashboardConverter.php │ │ │ │ │ └── DashboardLinkConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── builder_delegation.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── builderDelegation │ │ │ │ │ ├── dashboardBuilder.gen.ts │ │ │ │ │ └── dashboardLinkBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── builder_delegation_in_disjunction │ │ │ ├── JavaBuilder │ │ │ │ └── builder_delegation_in_disjunction │ │ │ │ │ ├── DashboardBuilder.java │ │ │ │ │ ├── DashboardLinkBuilder.java │ │ │ │ │ └── ExternalLinkBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── BuilderDelegationInDisjunction │ │ │ │ │ ├── DashboardBuilder.php │ │ │ │ │ ├── DashboardLinkBuilder.php │ │ │ │ │ └── ExternalLinkBuilder.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── builder_delegation_in_disjunction.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── builderDelegationInDisjunction │ │ │ │ │ ├── dashboardBuilder.gen.ts │ │ │ │ │ ├── dashboardLinkBuilder.gen.ts │ │ │ │ │ └── externalLinkBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── composable_slot │ │ │ ├── GoBuilder │ │ │ │ └── composable_slot │ │ │ │ │ └── lokibuilder_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── composable_slot │ │ │ │ │ └── lokibuilder_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── composable_slot │ │ │ │ │ └── LokiBuilderBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── ComposableSlot │ │ │ │ │ └── LokiBuilderBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── ComposableSlot │ │ │ │ │ └── LokiBuilderConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── composable_slot.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── composableSlot │ │ │ │ │ └── lokiBuilderBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── constant_assignment │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── constraints │ │ │ ├── GoBuilder │ │ │ │ └── constraints │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── constraints │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── constraints │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Constraints │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Constraints │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── constraints.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── constraints │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── constructor_argument │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── constructor_initializations │ │ │ ├── GoBuilder │ │ │ │ └── constructor_initializations │ │ │ │ │ └── somepanel_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── constructor_initializations │ │ │ │ │ └── somepanel_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── constructor_initializations │ │ │ │ │ └── SomePanelBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── ConstructorInitializations │ │ │ │ │ └── SomePanelBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── ConstructorInitializations │ │ │ │ │ └── SomePanelConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── constructor_initializations.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── constructorInitializations │ │ │ │ │ └── somePanelBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── dashboard_panel │ │ │ ├── JavaBuilder │ │ │ │ └── dashboard │ │ │ │ │ └── PanelBuilder.java │ │ │ └── builders_context.json │ │ ├── dataquery_variant_builder │ │ │ ├── GoBuilder │ │ │ │ └── dataquery_variant_builder │ │ │ │ │ └── lokibuilder_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── dataquery_variant_builder │ │ │ │ │ └── lokibuilder_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── dataquery_variant_builder │ │ │ │ │ └── LokiBuilderBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── DataqueryVariantBuilder │ │ │ │ │ └── LokiBuilderBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── DataqueryVariantBuilder │ │ │ │ │ └── LokiBuilderConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── dataquery_variant_builder.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── dataqueryVariantBuilder │ │ │ │ │ └── lokiBuilderBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── discriminator_without_option │ │ │ ├── GoBuilder │ │ │ │ └── discriminator_without_option │ │ │ │ │ ├── noshowfieldoption_builder_gen.go │ │ │ │ │ └── showfieldoption_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── discriminator_without_option │ │ │ │ │ ├── noshowfieldoption_converter_gen.go │ │ │ │ │ └── showfieldoption_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── discriminator_without_option │ │ │ │ │ ├── NoShowFieldOptionBuilder.java │ │ │ │ │ └── ShowFieldOptionBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── DiscriminatorWithoutOption │ │ │ │ │ ├── NoShowFieldOptionBuilder.php │ │ │ │ │ └── ShowFieldOptionBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── DiscriminatorWithoutOption │ │ │ │ │ ├── NoShowFieldOptionConverter.php │ │ │ │ │ └── ShowFieldOptionConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── discriminator_without_option.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── discriminatorWithoutOption │ │ │ │ │ ├── noShowFieldOptionBuilder.gen.ts │ │ │ │ │ └── showFieldOptionBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── envelope_assignment │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── dashboard_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── dashboard_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── DashboardBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── DashboardBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── DashboardConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── dashboardBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── factories │ │ │ ├── GoBuilder │ │ │ │ └── promql │ │ │ │ │ └── funccallexpr_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── promql │ │ │ │ │ └── funccallexpr_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── promql │ │ │ │ │ └── FuncCallExprBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Promql │ │ │ │ │ └── FuncCallExprBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Promql │ │ │ │ │ └── FuncCallExprConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── promql.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── promql │ │ │ │ │ └── funcCallExprBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── foreign_builder │ │ │ ├── GoBuilder │ │ │ │ └── builder_pkg │ │ │ │ │ └── somenicebuilder_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── builder_pkg │ │ │ │ │ └── somenicebuilder_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── builder_pkg │ │ │ │ │ └── BuilderPkgSomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── BuilderPkg │ │ │ │ │ └── SomeNiceBuilderBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── BuilderPkg │ │ │ │ │ └── SomeNiceBuilderConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── builder_pkg.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── builderPkg │ │ │ │ │ └── someNiceBuilderBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── initialization_safeguards │ │ │ ├── GoBuilder │ │ │ │ └── initialization_safeguards │ │ │ │ │ └── somepanel_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── initialization_safeguards │ │ │ │ │ └── somepanel_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── initialization_safeguards │ │ │ │ │ └── SomePanelBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── InitializationSafeguards │ │ │ │ │ └── SomePanelBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── InitializationSafeguards │ │ │ │ │ └── SomePanelConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── initialization_safeguards.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── initializationSafeguards │ │ │ │ │ └── somePanelBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── known_any │ │ │ ├── GoBuilder │ │ │ │ └── known_any │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── known_any │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── known_any │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── KnownAny │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── KnownAny │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── known_any.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── knownAny │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── map_index_assignment │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── map_of_builders │ │ │ ├── GoBuilder │ │ │ │ └── map_of_builders │ │ │ │ │ ├── dashboard_builder_gen.go │ │ │ │ │ └── panel_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── map_of_builders │ │ │ │ │ ├── dashboard_converter_gen.go │ │ │ │ │ └── panel_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── map_of_builders │ │ │ │ │ ├── DashboardBuilder.java │ │ │ │ │ └── PanelBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── MapOfBuilders │ │ │ │ │ ├── DashboardBuilder.php │ │ │ │ │ └── PanelBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── MapOfBuilders │ │ │ │ │ ├── DashboardConverter.php │ │ │ │ │ └── PanelConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── map_of_builders.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── mapOfBuilders │ │ │ │ │ ├── dashboardBuilder.gen.ts │ │ │ │ │ └── panelBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── map_of_disjunctions │ │ │ ├── GoBuilder │ │ │ │ └── map_of_disjunctions │ │ │ │ │ ├── dashboard_builder_gen.go │ │ │ │ │ ├── element_builder_gen.go │ │ │ │ │ ├── librarypanel_builder_gen.go │ │ │ │ │ ├── panel_builder_gen.go │ │ │ │ │ └── panelorlibrarypanel_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── map_of_disjunctions │ │ │ │ │ ├── dashboard_converter_gen.go │ │ │ │ │ ├── element_converter_gen.go │ │ │ │ │ ├── librarypanel_converter_gen.go │ │ │ │ │ ├── panel_converter_gen.go │ │ │ │ │ └── panelorlibrarypanel_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── map_of_disjunctions │ │ │ │ │ ├── DashboardBuilder.java │ │ │ │ │ ├── ElementBuilder.java │ │ │ │ │ ├── LibraryPanelBuilder.java │ │ │ │ │ ├── PanelBuilder.java │ │ │ │ │ └── PanelOrLibraryPanelBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── MapOfDisjunctions │ │ │ │ │ ├── DashboardBuilder.php │ │ │ │ │ ├── ElementBuilder.php │ │ │ │ │ ├── LibraryPanelBuilder.php │ │ │ │ │ ├── PanelBuilder.php │ │ │ │ │ └── PanelOrLibraryPanelBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── MapOfDisjunctions │ │ │ │ │ ├── DashboardConverter.php │ │ │ │ │ ├── ElementConverter.php │ │ │ │ │ ├── LibraryPanelConverter.php │ │ │ │ │ ├── PanelConverter.php │ │ │ │ │ └── PanelOrLibraryPanelConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── map_of_disjunctions.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── mapOfDisjunctions │ │ │ │ │ ├── dashboardBuilder.gen.ts │ │ │ │ │ ├── elementBuilder.gen.ts │ │ │ │ │ ├── libraryPanelBuilder.gen.ts │ │ │ │ │ ├── panelBuilder.gen.ts │ │ │ │ │ └── panelOrLibraryPanelBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ │ ├── nullable_map_assignment │ │ │ ├── GoBuilder │ │ │ │ └── nullable_map_assignment │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── nullable_map_assignment │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── nullable_map_assignment │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── NullableMapAssignment │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── NullableMapAssignment │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── nullable_map_assignment.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── nullableMapAssignment │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── package-with-dashes │ │ │ ├── GoBuilder │ │ │ │ └── builderpkg │ │ │ │ │ └── somenicebuilder_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── builderpkg │ │ │ │ │ └── somenicebuilder_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── builderpkg │ │ │ │ │ └── BuilderPkgSomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Builderpkg │ │ │ │ │ └── SomeNiceBuilderBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Builderpkg │ │ │ │ │ └── SomeNiceBuilderConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── builder-pkg.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── builderPkg │ │ │ │ │ └── someNiceBuilderBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── panel_builders │ │ │ ├── GoBuilder │ │ │ │ └── panelbuilder │ │ │ │ │ └── panel_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── panelbuilder │ │ │ │ │ └── panel_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── panelbuilder │ │ │ │ │ └── PanelBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Panelbuilder │ │ │ │ │ └── PanelBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Panelbuilder │ │ │ │ │ └── PanelConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── panelbuilder.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── panelbuilder │ │ │ │ │ └── panelBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── properties │ │ │ ├── GoBuilder │ │ │ │ └── properties │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── properties │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── properties │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Properties │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Properties │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── properties.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── properties │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── references │ │ │ ├── GoBuilder │ │ │ │ └── some_pkg │ │ │ │ │ └── person_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── some_pkg │ │ │ │ │ └── person_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── some_pkg │ │ │ │ │ └── PersonBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── SomePkg │ │ │ │ │ └── PersonBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── SomePkg │ │ │ │ │ └── PersonConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── some_pkg.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── somePkg │ │ │ │ │ └── personBuilder.gen.ts │ │ │ └── builders_context.json │ │ ├── struct_fields_as_args_assignment │ │ │ ├── GoBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_builder_gen.go │ │ │ ├── GoConverter │ │ │ │ └── sandbox │ │ │ │ │ └── somestruct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ │ └── sandbox │ │ │ │ │ └── SomeStructBuilder.java │ │ │ ├── PHPBuilder │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructBuilder.php │ │ │ ├── PHPConverter │ │ │ │ └── src │ │ │ │ │ └── Sandbox │ │ │ │ │ └── SomeStructConverter.php │ │ │ ├── PythonBuilder │ │ │ │ └── builders │ │ │ │ │ └── sandbox.py │ │ │ ├── TypescriptBuilder │ │ │ │ └── src │ │ │ │ │ └── sandbox │ │ │ │ │ └── someStructBuilder.gen.ts │ │ │ └── builders_context.json │ │ └── struct_with_defaults │ │ │ ├── GoBuilder │ │ │ └── struct_with_defaults │ │ │ │ ├── nestedstruct_builder_gen.go │ │ │ │ └── struct_builder_gen.go │ │ │ ├── GoConverter │ │ │ └── struct_with_defaults │ │ │ │ ├── nestedstruct_converter_gen.go │ │ │ │ └── struct_converter_gen.go │ │ │ ├── JavaBuilder │ │ │ └── struct_with_defaults │ │ │ │ ├── NestedStructBuilder.java │ │ │ │ └── StructBuilder.java │ │ │ ├── PHPBuilder │ │ │ └── src │ │ │ │ └── StructWithDefaults │ │ │ │ ├── NestedStructBuilder.php │ │ │ │ └── StructBuilder.php │ │ │ ├── PHPConverter │ │ │ └── src │ │ │ │ └── StructWithDefaults │ │ │ │ ├── NestedStructConverter.php │ │ │ │ └── StructConverter.php │ │ │ ├── PythonBuilder │ │ │ └── builders │ │ │ │ └── struct_with_defaults.py │ │ │ ├── TypescriptBuilder │ │ │ └── src │ │ │ │ └── structWithDefaults │ │ │ │ ├── nestedStructBuilder.gen.ts │ │ │ │ └── structBuilder.gen.ts │ │ │ ├── builders_context.json │ │ │ └── schema.cue │ ├── deserializers │ │ ├── disjunctions_of_refs │ │ │ ├── JavaRawTypes │ │ │ │ └── disjunctions_of_refs │ │ │ │ │ └── DisjunctionOfRefsDeserializer.java │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── disjunctions_of_scalars │ │ │ ├── JavaRawTypes │ │ │ │ └── disjunctions_of_scalars │ │ │ │ │ └── DisjunctionOfScalarsDeserializer.java │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ └── disjunctions_of_scalars_and_refs │ │ │ ├── JavaRawTypes │ │ │ └── disjunctions_of_scalars_and_refs │ │ │ │ └── DisjunctionOfScalarsAndRefsDeserializer.java │ │ │ ├── ir.json │ │ │ └── schema.cue │ ├── rawtypes │ │ ├── arrays │ │ │ ├── GoRawTypes │ │ │ │ └── arrays │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── arrays.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── arrays │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── arrays.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Arrays │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── arrays.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── arrays │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── constant_reference_as_default │ │ │ ├── GoRawTypes │ │ │ │ └── constant_reference_as_default │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── constant_reference_as_default.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── constant_reference_as_default │ │ │ │ │ ├── Constants.java │ │ │ │ │ └── MyStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── constant_reference_as_default.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── ConstantReferenceAsDefault │ │ │ │ │ ├── Constants.php │ │ │ │ │ └── MyStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── constant_reference_as_default.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── constantReferenceAsDefault │ │ │ │ │ └── types.gen.ts │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── constant_reference_discriminator │ │ │ ├── GoRawTypes │ │ │ │ └── constant_reference_discriminator │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── constant_reference_discriminator.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── constant_reference_discriminator │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── GridLayoutUsingValue.java │ │ │ │ │ ├── GridLayoutWithoutValue.java │ │ │ │ │ ├── LayoutWithValue.java │ │ │ │ │ ├── LayoutWithoutValue.java │ │ │ │ │ ├── RowsLayoutUsingValue.java │ │ │ │ │ └── RowsLayoutWithoutValue.java │ │ │ ├── OpenAPI │ │ │ │ └── constant_reference_discriminator.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── ConstantReferenceDiscriminator │ │ │ │ │ ├── Constants.php │ │ │ │ │ ├── GridLayoutUsingValue.php │ │ │ │ │ ├── GridLayoutWithoutValue.php │ │ │ │ │ ├── RowsLayoutUsingValue.php │ │ │ │ │ └── RowsLayoutWithoutValue.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── constant_reference_discriminator.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── constantReferenceDiscriminator │ │ │ │ │ └── types.gen.ts │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── constant_references │ │ │ ├── GoRawTypes │ │ │ │ └── constant_references │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── constant_references.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── constant_references │ │ │ │ │ ├── Enum.java │ │ │ │ │ ├── ParentStruct.java │ │ │ │ │ ├── Struct.java │ │ │ │ │ ├── StructA.java │ │ │ │ │ └── StructB.java │ │ │ ├── OpenAPI │ │ │ │ └── constant_references.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── ConstantReferences │ │ │ │ │ ├── Enum.php │ │ │ │ │ ├── ParentStruct.php │ │ │ │ │ ├── Struct.php │ │ │ │ │ ├── StructA.php │ │ │ │ │ └── StructB.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── constant_references.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── constantReferences │ │ │ │ │ └── types.gen.ts │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── constraints │ │ │ ├── GoRawTypes │ │ │ │ └── constraints │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── constraints.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── constraints │ │ │ │ │ ├── RefStruct.java │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── constraints.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Constraints │ │ │ │ │ ├── RefStruct.php │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── constraints.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── constraints │ │ │ │ │ └── types.gen.ts │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── dashboard │ │ │ ├── GoRawTypes │ │ │ │ └── dashboard │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── dashboard.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── dashboard │ │ │ │ │ ├── Dashboard.java │ │ │ │ │ ├── DataSourceRef.java │ │ │ │ │ ├── FieldConfig.java │ │ │ │ │ ├── FieldConfigSource.java │ │ │ │ │ └── Panel.java │ │ │ ├── OpenAPI │ │ │ │ └── dashboard.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Dashboard │ │ │ │ │ ├── Dashboard.php │ │ │ │ │ ├── DataSourceRef.php │ │ │ │ │ ├── FieldConfig.php │ │ │ │ │ ├── FieldConfigSource.php │ │ │ │ │ └── Panel.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── dashboard.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── dashboard │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── disjunctions │ │ │ ├── GoRawTypes │ │ │ │ └── disjunctions │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── disjunctions.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── disjunctions │ │ │ │ │ ├── BoolOrRef.java │ │ │ │ │ ├── RefreshRate.java │ │ │ │ │ ├── SeveralRefs.java │ │ │ │ │ ├── SomeOtherStruct.java │ │ │ │ │ ├── SomeStruct.java │ │ │ │ │ └── YetAnotherStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── disjunctions.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Disjunctions │ │ │ │ │ ├── SomeOtherStruct.php │ │ │ │ │ ├── SomeStruct.php │ │ │ │ │ └── YetAnotherStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── disjunctions.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── disjunctions │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── disjunctions_of_scalars_and_refs │ │ │ ├── GoRawTypes │ │ │ │ └── disjunctions_of_scalars_and_refs │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── disjunctions_of_scalars_and_refs.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── disjunctions_of_scalars_and_refs │ │ │ │ │ ├── DisjunctionOfScalarsAndRefs.java │ │ │ │ │ ├── MyRefA.java │ │ │ │ │ └── MyRefB.java │ │ │ ├── OpenAPI │ │ │ │ └── disjunctions_of_scalars_and_refs.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── DisjunctionsOfScalarsAndRefs │ │ │ │ │ ├── MyRefA.php │ │ │ │ │ └── MyRefB.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── disjunctions_of_scalars_and_refs.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── disjunctionsOfScalarsAndRefs │ │ │ │ │ └── types.gen.ts │ │ │ ├── ir.json │ │ │ └── schema.cue │ │ ├── enums │ │ │ ├── GoRawTypes │ │ │ │ └── enums │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── enums.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── enums │ │ │ │ │ ├── DashboardCursorSync.java │ │ │ │ │ ├── LogsSortOrder.java │ │ │ │ │ ├── Operator.java │ │ │ │ │ └── TableSortOrder.java │ │ │ ├── OpenAPI │ │ │ │ └── enums.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Enums │ │ │ │ │ ├── DashboardCursorSync.php │ │ │ │ │ ├── LogsSortOrder.php │ │ │ │ │ ├── Operator.php │ │ │ │ │ └── TableSortOrder.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── enums.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── enums │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── field_with_struct_with_defaults │ │ │ ├── GoRawTypes │ │ │ │ └── defaults │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── defaults.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── defaults │ │ │ │ │ ├── DefaultsStructComplexField.java │ │ │ │ │ ├── DefaultsStructComplexFieldNested.java │ │ │ │ │ ├── DefaultsStructPartialComplexField.java │ │ │ │ │ ├── NestedStruct.java │ │ │ │ │ └── Struct.java │ │ │ ├── OpenAPI │ │ │ │ └── defaults.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Defaults │ │ │ │ │ ├── DefaultsStructComplexField.php │ │ │ │ │ ├── DefaultsStructComplexFieldNested.php │ │ │ │ │ ├── DefaultsStructPartialComplexField.php │ │ │ │ │ ├── NestedStruct.php │ │ │ │ │ └── Struct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── defaults.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── defaults │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── intersections │ │ │ ├── GoRawTypes │ │ │ │ └── intersections │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── intersections.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── intersections │ │ │ │ │ ├── Common.java │ │ │ │ │ ├── CommonContains.java │ │ │ │ │ ├── CommonType.java │ │ │ │ │ ├── Counter.java │ │ │ │ │ ├── Intersections.java │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── intersections.openapi.json │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── intersections │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── maps │ │ │ ├── GoRawTypes │ │ │ │ └── maps │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── maps.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── maps │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── maps.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Maps │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── maps.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── maps │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── package-with-dashes │ │ │ ├── GoRawTypes │ │ │ │ └── withdashes │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── with-dashes.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── withdashes │ │ │ │ │ ├── RefreshRate.java │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── with-dashes.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Withdashes │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── with-dashes.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── withDashes │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── refs │ │ │ ├── GoRawTypes │ │ │ │ └── refs │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── refs.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── refs │ │ │ │ │ ├── RefToSomeStruct.java │ │ │ │ │ └── RefToSomeStructFromOtherPackage.java │ │ │ ├── OpenAPI │ │ │ │ └── refs.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Refs │ │ │ │ │ ├── RefToSomeStruct.php │ │ │ │ │ ├── RefToSomeStructFromOtherPackage.php │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── refs.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── refs │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── scalars │ │ │ ├── GoRawTypes │ │ │ │ └── scalars │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── scalars.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── scalars │ │ │ │ │ └── Constants.java │ │ │ ├── OpenAPI │ │ │ │ └── scalars.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Scalars │ │ │ │ │ └── Constants.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── scalars.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── scalars │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── struct_with_complex_fields │ │ │ ├── GoRawTypes │ │ │ │ └── struct_complex_fields │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── struct_complex_fields.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── struct_complex_fields │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── SomeOtherStruct.java │ │ │ │ │ ├── SomeStruct.java │ │ │ │ │ ├── SomeStructOperator.java │ │ │ │ │ ├── StringOrBool.java │ │ │ │ │ ├── StringOrSomeOtherStruct.java │ │ │ │ │ └── StructComplexFieldsSomeStructFieldAnonymousStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── struct_complex_fields.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── StructComplexFields │ │ │ │ │ ├── Constants.php │ │ │ │ │ ├── SomeOtherStruct.php │ │ │ │ │ ├── SomeStruct.php │ │ │ │ │ ├── SomeStructOperator.php │ │ │ │ │ └── StructComplexFieldsSomeStructFieldAnonymousStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── struct_complex_fields.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── structComplexFields │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── struct_with_defaults │ │ │ ├── GoRawTypes │ │ │ │ └── defaults │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── defaults.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── defaults │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── defaults.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Defaults │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── defaults.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── defaults │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── struct_with_optional_fields │ │ │ ├── GoRawTypes │ │ │ │ └── struct_optional_fields │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── struct_optional_fields.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── struct_optional_fields │ │ │ │ │ ├── SomeOtherStruct.java │ │ │ │ │ ├── SomeStruct.java │ │ │ │ │ ├── SomeStructOperator.java │ │ │ │ │ └── StructOptionalFieldsSomeStructFieldAnonymousStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── struct_optional_fields.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── StructOptionalFields │ │ │ │ │ ├── SomeOtherStruct.php │ │ │ │ │ ├── SomeStruct.php │ │ │ │ │ ├── SomeStructOperator.php │ │ │ │ │ └── StructOptionalFieldsSomeStructFieldAnonymousStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── struct_optional_fields.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── structOptionalFields │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── struct_with_scalar_fields │ │ │ ├── GoRawTypes │ │ │ │ └── basic │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── basic.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── basic │ │ │ │ │ └── SomeStruct.java │ │ │ ├── OpenAPI │ │ │ │ └── basic.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── Basic │ │ │ │ │ └── SomeStruct.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── basic.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── basic │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── time_hint │ │ │ ├── GoRawTypes │ │ │ │ └── time_hint │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── time_hint.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── time_hint │ │ │ │ │ └── ObjWithTimeField.java │ │ │ ├── OpenAPI │ │ │ │ └── time_hint.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── TimeHint │ │ │ │ │ └── ObjWithTimeField.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── time_hint.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── timeHint │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── variant_dataquery │ │ │ ├── GoRawTypes │ │ │ │ └── variant_dataquery │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── variant_dataquery.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── variant_dataquery │ │ │ │ │ └── Query.java │ │ │ ├── OpenAPI │ │ │ │ └── variant_dataquery.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── VariantDataquery │ │ │ │ │ └── Query.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── variant_dataquery.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── variantDataquery │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ ├── variant_panelcfg_full │ │ │ ├── GoRawTypes │ │ │ │ └── variant_panelcfg_full │ │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ │ └── variant_panelcfg_full.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ │ └── variant_panelcfg_full │ │ │ │ │ ├── FieldConfig.java │ │ │ │ │ └── Options.java │ │ │ ├── OpenAPI │ │ │ │ └── variant_panelcfg_full.openapi.json │ │ │ ├── PHPRawTypes │ │ │ │ └── src │ │ │ │ │ └── VariantPanelcfgFull │ │ │ │ │ ├── FieldConfig.php │ │ │ │ │ └── Options.php │ │ │ ├── PythonRawTypes │ │ │ │ └── models │ │ │ │ │ └── variant_panelcfg_full.py │ │ │ ├── TypescriptRawTypes │ │ │ │ └── src │ │ │ │ │ └── variantPanelcfgFull │ │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ │ └── variant_panelcfg_only_options │ │ │ ├── GoRawTypes │ │ │ └── variant_panelcfg_only_options │ │ │ │ └── types_gen.go │ │ │ ├── JSONSchema │ │ │ └── variant_panelcfg_only_options.jsonschema.json │ │ │ ├── JavaRawTypes │ │ │ └── variant_panelcfg_only_options │ │ │ │ └── Options.java │ │ │ ├── OpenAPI │ │ │ └── variant_panelcfg_only_options.openapi.json │ │ │ ├── PHPRawTypes │ │ │ └── src │ │ │ │ └── VariantPanelcfgOnlyOptions │ │ │ │ └── Options.php │ │ │ ├── PythonRawTypes │ │ │ └── models │ │ │ │ └── variant_panelcfg_only_options.py │ │ │ ├── TypescriptRawTypes │ │ │ └── src │ │ │ │ └── variantPanelcfgOnlyOptions │ │ │ │ └── types.gen.ts │ │ │ └── ir.json │ └── serializers │ │ ├── disjunctions_of_refs │ │ ├── JavaRawTypes │ │ │ └── disjunctions_of_refs │ │ │ │ └── DisjunctionOfRefsSerializer.java │ │ ├── ir.json │ │ └── schema.cue │ │ ├── disjunctions_of_scalars │ │ ├── JavaRawTypes │ │ │ └── disjunctions_of_scalars │ │ │ │ └── DisjunctionOfScalarsSerializer.java │ │ ├── ir.json │ │ └── schema.cue │ │ └── disjunctions_of_scalars_and_refs │ │ ├── JavaRawTypes │ │ └── disjunctions_of_scalars_and_refs │ │ │ └── DisjunctionOfScalarsAndRefsSerializer.java │ │ ├── ir.json │ │ └── schema.cue ├── jsonschema │ ├── allof_object │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── anyof_object │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── anyof_struct_field │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── array_any │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── basic_object │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── consts │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── defaults │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── enum │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── influxdbquery │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── number_constraints │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── object_no_properties │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── oneof_object │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── oneof_struct_field │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── recursive │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── ref_struct_field │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── relative_refs │ │ ├── GenerateAST │ │ │ └── ir.json │ │ ├── refs │ │ │ └── common │ │ │ │ └── schema.json │ │ └── schema.json │ ├── string_length_constraints │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ └── time │ │ ├── GenerateAST │ │ └── ir.json │ │ └── schema.json ├── openapi │ ├── arrays │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── consts │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── datatypes │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── defaults │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── discriminator │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── enums │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── external_refs │ │ ├── GenerateAST │ │ │ └── ir.json │ │ ├── refs │ │ │ └── refs.json │ │ └── schema.json │ ├── intersections │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── nested_structs │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── object_no_properties │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── refs │ │ ├── GenerateAST │ │ │ └── ir.json │ │ └── schema.json │ ├── split_schema │ │ ├── GenerateAST │ │ │ └── ir.json │ │ ├── refs │ │ │ ├── partial.json │ │ │ ├── partial2.json │ │ │ └── refs.json │ │ └── schema.json │ └── time │ │ ├── GenerateAST │ │ └── ir.json │ │ └── schema.json ├── schemas │ ├── defaults │ │ └── defaults.cue │ ├── equality │ │ └── equality.cue │ └── validation │ │ └── validation.cue └── simplecue │ ├── arrays │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── common_timezone_disjunction │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── defaults │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── defaults_on_struct │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── disjunctions │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── enums │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── maps │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── nested_disjunctions │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── numbers_constraints │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── refs │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── scalars │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── strings_constraints │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ ├── time │ ├── GenerateAST │ │ └── ir.json │ └── schema.cue │ └── unifications │ ├── GenerateAST │ └── ir.json │ └── schema.cue └── tsconfig.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/workflows/docs.yaml -------------------------------------------------------------------------------- /.github/workflows/grafana-foundation-sdk-diff-preview.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/workflows/grafana-foundation-sdk-diff-preview.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/README.md -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /cmd/cli/generate/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/cmd/cli/generate/command.go -------------------------------------------------------------------------------- /cmd/cli/inspect/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/cmd/cli/inspect/command.go -------------------------------------------------------------------------------- /cmd/cli/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/cmd/cli/main.go -------------------------------------------------------------------------------- /cmd/cog-config-schemas/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/cmd/cog-config-schemas/main.go -------------------------------------------------------------------------------- /cmd/compiler-passes-docs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/cmd/compiler-passes-docs/main.go -------------------------------------------------------------------------------- /config/ci/php/phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/config/ci/php/phpstan.neon -------------------------------------------------------------------------------- /config/foundation_sdk.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/config/foundation_sdk.dev.yaml -------------------------------------------------------------------------------- /config/foundation_sdk.tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/config/foundation_sdk.tests.yaml -------------------------------------------------------------------------------- /devbox.d/php/php-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/devbox.d/php/php-fpm.conf -------------------------------------------------------------------------------- /devbox.d/php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/devbox.d/php/php.ini -------------------------------------------------------------------------------- /devbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/devbox.json -------------------------------------------------------------------------------- /devbox.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/devbox.lock -------------------------------------------------------------------------------- /docs/assets/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/assets/custom.css -------------------------------------------------------------------------------- /docs/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/assets/logo.svg -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/pipelines/builder_transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/pipelines/builder_transformations.md -------------------------------------------------------------------------------- /docs/pipelines/creating_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/pipelines/creating_pipeline.md -------------------------------------------------------------------------------- /docs/pipelines/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/pipelines/index.md -------------------------------------------------------------------------------- /docs/pipelines/schema_transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/pipelines/schema_transformations.md -------------------------------------------------------------------------------- /docs/reference/builders_transformations.md: -------------------------------------------------------------------------------- 1 | --- 2 | weight: 10 3 | --- 4 | 5 | # Builder transformations 6 | 7 | TBD 8 | -------------------------------------------------------------------------------- /docs/reference/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/reference/glossary.md -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- 1 | # Reference 2 | 3 | -------------------------------------------------------------------------------- /docs/reference/schema_transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/reference/schema_transformations.md -------------------------------------------------------------------------------- /docs/reference/template_blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/docs/reference/template_blocks.md -------------------------------------------------------------------------------- /examples/_as_library/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_as_library/main.go -------------------------------------------------------------------------------- /examples/_go/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/common.go -------------------------------------------------------------------------------- /examples/_go/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/cpu.go -------------------------------------------------------------------------------- /examples/_go/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/disk.go -------------------------------------------------------------------------------- /examples/_go/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/logs.go -------------------------------------------------------------------------------- /examples/_go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/main.go -------------------------------------------------------------------------------- /examples/_go/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/memory.go -------------------------------------------------------------------------------- /examples/_go/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go/network.go -------------------------------------------------------------------------------- /examples/_go_alerting/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_alerting/main.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/common.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/cpu.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/disk.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/logs.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/main.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/memory.go -------------------------------------------------------------------------------- /examples/_go_dashboardv2/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/_go_dashboardv2/network.go -------------------------------------------------------------------------------- /examples/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/build.gradle -------------------------------------------------------------------------------- /examples/java/src/main/java/test/CPU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/CPU.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Common.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Disk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Disk.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Logs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Logs.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Main.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Memory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Memory.java -------------------------------------------------------------------------------- /examples/java/src/main/java/test/Network.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java/src/main/java/test/Network.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/build.gradle -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/CPU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/CPU.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Common.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Disk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Disk.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Logs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Logs.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Main.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Memory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Memory.java -------------------------------------------------------------------------------- /examples/java_dashboardv2/src/main/java/test/Network.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/java_dashboardv2/src/main/java/test/Network.java -------------------------------------------------------------------------------- /examples/php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/composer.json -------------------------------------------------------------------------------- /examples/php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/composer.lock -------------------------------------------------------------------------------- /examples/php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/index.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/CPU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/CPU.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/Common.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/Disk.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/Logs.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/Memory.php -------------------------------------------------------------------------------- /examples/php/src/Monitoring/Network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php/src/Monitoring/Network.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/composer.json -------------------------------------------------------------------------------- /examples/php_dashboardv2/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/composer.lock -------------------------------------------------------------------------------- /examples/php_dashboardv2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/index.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/CPU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/CPU.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/Common.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/Disk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/Disk.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/Logs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/Logs.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/Memory.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/src/Monitoring/Network.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/src/Monitoring/Network.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/autoload.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/LICENSE -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/installed.json -------------------------------------------------------------------------------- /examples/php_dashboardv2/vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/php_dashboardv2/vendor/composer/installed.php -------------------------------------------------------------------------------- /examples/python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/main.py -------------------------------------------------------------------------------- /examples/python/raspberry/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /examples/python/raspberry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/python/raspberry/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/common.py -------------------------------------------------------------------------------- /examples/python/raspberry/cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/cpu.py -------------------------------------------------------------------------------- /examples/python/raspberry/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/disk.py -------------------------------------------------------------------------------- /examples/python/raspberry/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/logs.py -------------------------------------------------------------------------------- /examples/python/raspberry/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/memory.py -------------------------------------------------------------------------------- /examples/python/raspberry/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python/raspberry/network.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/main.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/common.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/cpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/cpu.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/disk.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/logs.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/memory.py -------------------------------------------------------------------------------- /examples/python_dashboardv2/raspberry/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/python_dashboardv2/raspberry/network.py -------------------------------------------------------------------------------- /examples/typescript/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/common.ts -------------------------------------------------------------------------------- /examples/typescript/cpu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/cpu.ts -------------------------------------------------------------------------------- /examples/typescript/disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/disk.ts -------------------------------------------------------------------------------- /examples/typescript/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/index.ts -------------------------------------------------------------------------------- /examples/typescript/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/logs.ts -------------------------------------------------------------------------------- /examples/typescript/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/memory.ts -------------------------------------------------------------------------------- /examples/typescript/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript/network.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/common.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/cpu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/cpu.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/disk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/disk.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/index.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/logs.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/memory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/memory.ts -------------------------------------------------------------------------------- /examples/typescript_dashboardv2/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples/typescript_dashboardv2/network.ts -------------------------------------------------------------------------------- /examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/examples_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/go.sum -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/helpers.go -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/helpers_test.go -------------------------------------------------------------------------------- /internal/ast/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/builder.go -------------------------------------------------------------------------------- /internal/ast/builder_factories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/builder_factories.go -------------------------------------------------------------------------------- /internal/ast/buildervisitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/buildervisitor.go -------------------------------------------------------------------------------- /internal/ast/compiler/add_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/add_fields.go -------------------------------------------------------------------------------- /internal/ast/compiler/add_fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/add_fields_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/add_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/add_object.go -------------------------------------------------------------------------------- /internal/ast/compiler/anonymous_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/anonymous_enum.go -------------------------------------------------------------------------------- /internal/ast/compiler/anonymous_enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/anonymous_enum_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/anonymous_structs_to_named.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/anonymous_structs_to_named.go -------------------------------------------------------------------------------- /internal/ast/compiler/append_comment_objects.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/append_comment_objects.go -------------------------------------------------------------------------------- /internal/ast/compiler/append_comment_objects_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/append_comment_objects_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/cleanup_k8_resource_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/cleanup_k8_resource_name.go -------------------------------------------------------------------------------- /internal/ast/compiler/cleanup_k8_resource_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/cleanup_k8_resource_name_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/compiler.go -------------------------------------------------------------------------------- /internal/ast/compiler/constant_to_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/constant_to_enum.go -------------------------------------------------------------------------------- /internal/ast/compiler/constant_to_enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/constant_to_enum_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/dataquery_identification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/dataquery_identification.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunction_of_constants_to_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunction_of_constants_to_enum.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunction_of_constants_to_enum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunction_of_constants_to_enum_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunction_with_constant_to_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunction_with_constant_to_default.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunction_with_constant_to_default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunction_with_constant_to_default_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_infer_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_infer_mapping.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_infer_mapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_infer_mapping_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_of_anonymous_to_explicit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_of_anonymous_to_explicit.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_of_anonymous_to_explicit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_of_anonymous_to_explicit_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_with_null_to_optional.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_with_null_to_optional.go -------------------------------------------------------------------------------- /internal/ast/compiler/disjunctions_with_null_to_optional_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/disjunctions_with_null_to_optional_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/duplicate_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/duplicate_object.go -------------------------------------------------------------------------------- /internal/ast/compiler/fields_set_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/fields_set_default.go -------------------------------------------------------------------------------- /internal/ast/compiler/fields_set_default_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/fields_set_default_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/fields_set_not_required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/fields_set_not_required.go -------------------------------------------------------------------------------- /internal/ast/compiler/fields_set_required.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/fields_set_required.go -------------------------------------------------------------------------------- /internal/ast/compiler/fields_set_required_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/fields_set_required_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/filter_schemas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/filter_schemas.go -------------------------------------------------------------------------------- /internal/ast/compiler/filter_schemas_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/filter_schemas_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/flatten_disjunctions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/flatten_disjunctions.go -------------------------------------------------------------------------------- /internal/ast/compiler/flatten_disjunctions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/flatten_disjunctions_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/hint_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/hint_object.go -------------------------------------------------------------------------------- /internal/ast/compiler/hint_object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/hint_object_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/infer_entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/infer_entrypoint.go -------------------------------------------------------------------------------- /internal/ast/compiler/inline_objects_with_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/inline_objects_with_types.go -------------------------------------------------------------------------------- /internal/ast/compiler/inline_objects_with_types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/inline_objects_with_types_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/name_anonymous_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/name_anonymous_struct.go -------------------------------------------------------------------------------- /internal/ast/compiler/name_anonymous_struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/name_anonymous_struct_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/not_required_as_nullable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/not_required_as_nullable.go -------------------------------------------------------------------------------- /internal/ast/compiler/not_required_as_nullable_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/not_required_as_nullable_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/omit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/omit.go -------------------------------------------------------------------------------- /internal/ast/compiler/omit_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/omit_fields.go -------------------------------------------------------------------------------- /internal/ast/compiler/omit_fields_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/omit_fields_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/omit_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/omit_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/prefix_enum_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/prefix_enum_values.go -------------------------------------------------------------------------------- /internal/ast/compiler/prefix_enum_values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/prefix_enum_values_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/prefix_object_names_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/prefix_object_names_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/prefix_objects_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/prefix_objects_names.go -------------------------------------------------------------------------------- /internal/ast/compiler/remove_intersections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/remove_intersections.go -------------------------------------------------------------------------------- /internal/ast/compiler/rename_numeric_enum_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/rename_numeric_enum_values.go -------------------------------------------------------------------------------- /internal/ast/compiler/rename_numeric_enum_values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/rename_numeric_enum_values_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/rename_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/rename_object.go -------------------------------------------------------------------------------- /internal/ast/compiler/rename_object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/rename_object_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/replace_reference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/replace_reference.go -------------------------------------------------------------------------------- /internal/ast/compiler/replace_reference_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/replace_reference_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/retype_field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/retype_field.go -------------------------------------------------------------------------------- /internal/ast/compiler/retype_field_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/retype_field_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/retype_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/retype_object.go -------------------------------------------------------------------------------- /internal/ast/compiler/retype_object_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/retype_object_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/sanitize_enum_member_names.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/sanitize_enum_member_names.go -------------------------------------------------------------------------------- /internal/ast/compiler/schema_set_entrypoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/schema_set_entrypoint.go -------------------------------------------------------------------------------- /internal/ast/compiler/schema_set_identifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/schema_set_identifier.go -------------------------------------------------------------------------------- /internal/ast/compiler/trim_enum_values.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/trim_enum_values.go -------------------------------------------------------------------------------- /internal/ast/compiler/trim_enum_values_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/trim_enum_values_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/types.go -------------------------------------------------------------------------------- /internal/ast/compiler/undiscriminated_disjunctions_to_any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/undiscriminated_disjunctions_to_any.go -------------------------------------------------------------------------------- /internal/ast/compiler/undiscriminated_disjunctions_to_any_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/undiscriminated_disjunctions_to_any_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/unspec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/unspec.go -------------------------------------------------------------------------------- /internal/ast/compiler/unspec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/unspec_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/utils_test.go -------------------------------------------------------------------------------- /internal/ast/compiler/visitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/compiler/visitor.go -------------------------------------------------------------------------------- /internal/ast/hints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/hints.go -------------------------------------------------------------------------------- /internal/ast/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/schema.go -------------------------------------------------------------------------------- /internal/ast/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/tools.go -------------------------------------------------------------------------------- /internal/ast/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/types.go -------------------------------------------------------------------------------- /internal/ast/types_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/ast/types_test.go -------------------------------------------------------------------------------- /internal/codegen/cue.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/cue.go -------------------------------------------------------------------------------- /internal/codegen/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/input.go -------------------------------------------------------------------------------- /internal/codegen/jsonschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/jsonschema.go -------------------------------------------------------------------------------- /internal/codegen/kindregistry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/kindregistry.go -------------------------------------------------------------------------------- /internal/codegen/kindsyscomposable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/kindsyscomposable.go -------------------------------------------------------------------------------- /internal/codegen/kindsyscore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/kindsyscore.go -------------------------------------------------------------------------------- /internal/codegen/openapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/openapi.go -------------------------------------------------------------------------------- /internal/codegen/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/options.go -------------------------------------------------------------------------------- /internal/codegen/output.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/output.go -------------------------------------------------------------------------------- /internal/codegen/pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/pipeline.go -------------------------------------------------------------------------------- /internal/codegen/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/run.go -------------------------------------------------------------------------------- /internal/codegen/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/tools.go -------------------------------------------------------------------------------- /internal/codegen/transforms.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/codegen/transforms.go -------------------------------------------------------------------------------- /internal/envvars/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/envvars/env.go -------------------------------------------------------------------------------- /internal/jennies/common/apireference.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/apireference.go -------------------------------------------------------------------------------- /internal/jennies/common/codejen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/codejen.go -------------------------------------------------------------------------------- /internal/jennies/common/codejen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/codejen_test.go -------------------------------------------------------------------------------- /internal/jennies/common/customtemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/customtemplate.go -------------------------------------------------------------------------------- /internal/jennies/common/dynamicfilestemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/dynamicfilestemplate.go -------------------------------------------------------------------------------- /internal/jennies/common/importmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/importmap.go -------------------------------------------------------------------------------- /internal/jennies/common/repotemplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/repotemplate.go -------------------------------------------------------------------------------- /internal/jennies/common/templatehelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/common/templatehelpers.go -------------------------------------------------------------------------------- /internal/jennies/golang/apiref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/apiref.go -------------------------------------------------------------------------------- /internal/jennies/golang/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/builder.go -------------------------------------------------------------------------------- /internal/jennies/golang/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/builder_test.go -------------------------------------------------------------------------------- /internal/jennies/golang/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/converter.go -------------------------------------------------------------------------------- /internal/jennies/golang/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/converter_test.go -------------------------------------------------------------------------------- /internal/jennies/golang/equality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/equality.go -------------------------------------------------------------------------------- /internal/jennies/golang/equality_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/equality_test.go -------------------------------------------------------------------------------- /internal/jennies/golang/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/imports.go -------------------------------------------------------------------------------- /internal/jennies/golang/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/jennies.go -------------------------------------------------------------------------------- /internal/jennies/golang/jsonmarshalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/jsonmarshalling.go -------------------------------------------------------------------------------- /internal/jennies/golang/postprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/postprocessor.go -------------------------------------------------------------------------------- /internal/jennies/golang/rawtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/rawtypes.go -------------------------------------------------------------------------------- /internal/jennies/golang/rawtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/rawtypes_test.go -------------------------------------------------------------------------------- /internal/jennies/golang/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/runtime.go -------------------------------------------------------------------------------- /internal/jennies/golang/strictjson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/strictjson.go -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/args.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/args.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/assignment.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/assignment.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/factory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/factory.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/nilcheck.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/nilcheck.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/builders/options.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/builders/options.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/converters/converter.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/converters/converter.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/runtime/tools.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/runtime/tools.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/dataquery_equality_method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/dataquery_equality_method.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/disjunction_of_refs.json_marshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/disjunction_of_refs.json_marshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/disjunction_of_refs.json_unmarshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/disjunction_of_refs.json_unmarshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/disjunction_of_scalars.json_marshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/disjunction_of_scalars.json_marshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/disjunction_of_scalars.json_unmarshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/disjunction_of_scalars.json_unmarshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/struct.strict.json_unmarshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/struct.strict.json_unmarshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/struct_equality_method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/struct_equality_method.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/templates/types/struct_validation_method.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/templates/types/struct_validation_method.tmpl -------------------------------------------------------------------------------- /internal/jennies/golang/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/tmpl.go -------------------------------------------------------------------------------- /internal/jennies/golang/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/tools.go -------------------------------------------------------------------------------- /internal/jennies/golang/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/types.go -------------------------------------------------------------------------------- /internal/jennies/golang/validation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/validation.go -------------------------------------------------------------------------------- /internal/jennies/golang/validation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/golang/validation_test.go -------------------------------------------------------------------------------- /internal/jennies/java/apiref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/apiref.go -------------------------------------------------------------------------------- /internal/jennies/java/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/builder.go -------------------------------------------------------------------------------- /internal/jennies/java/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/builder_test.go -------------------------------------------------------------------------------- /internal/jennies/java/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/converter.go -------------------------------------------------------------------------------- /internal/jennies/java/deserializers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/deserializers.go -------------------------------------------------------------------------------- /internal/jennies/java/deserializers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/deserializers_test.go -------------------------------------------------------------------------------- /internal/jennies/java/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/factory.go -------------------------------------------------------------------------------- /internal/jennies/java/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/imports.go -------------------------------------------------------------------------------- /internal/jennies/java/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/jennies.go -------------------------------------------------------------------------------- /internal/jennies/java/jsonmarshalling.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/jsonmarshalling.go -------------------------------------------------------------------------------- /internal/jennies/java/rawtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/rawtypes.go -------------------------------------------------------------------------------- /internal/jennies/java/rawtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/rawtypes_test.go -------------------------------------------------------------------------------- /internal/jennies/java/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/runtime.go -------------------------------------------------------------------------------- /internal/jennies/java/serializers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/serializers.go -------------------------------------------------------------------------------- /internal/jennies/java/serializers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/serializers_test.go -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/args.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/args.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/assigments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/assigments.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/constraints.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/constraints.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/factories.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/factories.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/builders/nilcheck.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/builders/nilcheck.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/converters/converter.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/converters/converter.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/converters/converter_runtime.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/converters/converter_runtime.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/converters/dataquery_converter.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/converters/dataquery_converter.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/marshalling/disjunctions.json_marshall.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/marshalling/disjunctions.json_marshall.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/marshalling/disjunctions_of_refs.json_unmarshall.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/marshalling/disjunctions_of_refs.json_unmarshall.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/marshalling/map_check.json_unmarshal.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/marshalling/map_check.json_unmarshal.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/marshalling/marshalling.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/marshalling/marshalling.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/marshalling/unmarshalling.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/marshalling/unmarshalling.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/runtime/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/runtime/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/runtime/converter_interface.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/runtime/converter_interface.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/runtime/variants.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/runtime/variants.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/types/class.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/types/class.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/types/constants.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/types/constants.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/templates/types/enum.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/templates/types/enum.tmpl -------------------------------------------------------------------------------- /internal/jennies/java/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/tmpl.go -------------------------------------------------------------------------------- /internal/jennies/java/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/tools.go -------------------------------------------------------------------------------- /internal/jennies/java/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/java/types.go -------------------------------------------------------------------------------- /internal/jennies/jsonschema/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/jsonschema/jennies.go -------------------------------------------------------------------------------- /internal/jennies/jsonschema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/jsonschema/schema.go -------------------------------------------------------------------------------- /internal/jennies/jsonschema/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/jsonschema/schema_test.go -------------------------------------------------------------------------------- /internal/jennies/openapi/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/openapi/jennies.go -------------------------------------------------------------------------------- /internal/jennies/openapi/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/openapi/schema.go -------------------------------------------------------------------------------- /internal/jennies/openapi/schema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/openapi/schema_test.go -------------------------------------------------------------------------------- /internal/jennies/php/add_typehints_comments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/add_typehints_comments.go -------------------------------------------------------------------------------- /internal/jennies/php/apiref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/apiref.go -------------------------------------------------------------------------------- /internal/jennies/php/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/builder.go -------------------------------------------------------------------------------- /internal/jennies/php/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/builder_test.go -------------------------------------------------------------------------------- /internal/jennies/php/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/converter.go -------------------------------------------------------------------------------- /internal/jennies/php/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/converter_test.go -------------------------------------------------------------------------------- /internal/jennies/php/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/factory.go -------------------------------------------------------------------------------- /internal/jennies/php/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/jennies.go -------------------------------------------------------------------------------- /internal/jennies/php/rawtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/rawtypes.go -------------------------------------------------------------------------------- /internal/jennies/php/rawtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/rawtypes_test.go -------------------------------------------------------------------------------- /internal/jennies/php/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/runtime.go -------------------------------------------------------------------------------- /internal/jennies/php/shape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/shape.go -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/args.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/args.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/assignment.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/assignment.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/constraints.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/constraints.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/factories.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/factories.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/factory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/factory.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/nilcheck.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/nilcheck.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/builders/option.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/builders/option.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/converters/converter.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/converters/converter.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/runtime/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/runtime/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/templates/types/enum.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/templates/types/enum.tmpl -------------------------------------------------------------------------------- /internal/jennies/php/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/tmpl.go -------------------------------------------------------------------------------- /internal/jennies/php/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/tools.go -------------------------------------------------------------------------------- /internal/jennies/php/typehints.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/typehints.go -------------------------------------------------------------------------------- /internal/jennies/php/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/php/types.go -------------------------------------------------------------------------------- /internal/jennies/python/apiref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/apiref.go -------------------------------------------------------------------------------- /internal/jennies/python/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/builder.go -------------------------------------------------------------------------------- /internal/jennies/python/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/builder_test.go -------------------------------------------------------------------------------- /internal/jennies/python/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/imports.go -------------------------------------------------------------------------------- /internal/jennies/python/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/jennies.go -------------------------------------------------------------------------------- /internal/jennies/python/module_init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/module_init.go -------------------------------------------------------------------------------- /internal/jennies/python/rawtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/rawtypes.go -------------------------------------------------------------------------------- /internal/jennies/python/rawtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/rawtypes_test.go -------------------------------------------------------------------------------- /internal/jennies/python/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/runtime.go -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/args.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/args.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/assignment.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/assignment.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/comments.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/comments.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/constraints.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/constraints.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/factories.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/factories.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/factory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/factory.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/nilcheck.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/nilcheck.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/builders/options.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/builders/options.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/runtime/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/runtime/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/templates/runtime/encoder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/templates/runtime/encoder.tmpl -------------------------------------------------------------------------------- /internal/jennies/python/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/tmpl.go -------------------------------------------------------------------------------- /internal/jennies/python/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/tools.go -------------------------------------------------------------------------------- /internal/jennies/python/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/python/types.go -------------------------------------------------------------------------------- /internal/jennies/template/blocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/template/blocks.go -------------------------------------------------------------------------------- /internal/jennies/template/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/template/template.go -------------------------------------------------------------------------------- /internal/jennies/typescript/apiref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/apiref.go -------------------------------------------------------------------------------- /internal/jennies/typescript/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/builder.go -------------------------------------------------------------------------------- /internal/jennies/typescript/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/builder_test.go -------------------------------------------------------------------------------- /internal/jennies/typescript/imports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/imports.go -------------------------------------------------------------------------------- /internal/jennies/typescript/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/index.go -------------------------------------------------------------------------------- /internal/jennies/typescript/jennies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/jennies.go -------------------------------------------------------------------------------- /internal/jennies/typescript/rawtypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/rawtypes.go -------------------------------------------------------------------------------- /internal/jennies/typescript/rawtypes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/rawtypes_test.go -------------------------------------------------------------------------------- /internal/jennies/typescript/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/runtime.go -------------------------------------------------------------------------------- /internal/jennies/typescript/runtime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/runtime_test.go -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/args.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/args.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/builder.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/builder.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/constraints.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/constraints.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/factory.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/factory.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/nilcheck.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/nilcheck.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/templates/options.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/templates/options.tmpl -------------------------------------------------------------------------------- /internal/jennies/typescript/tmpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/tmpl.go -------------------------------------------------------------------------------- /internal/jennies/typescript/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/tools.go -------------------------------------------------------------------------------- /internal/jennies/typescript/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jennies/typescript/types.go -------------------------------------------------------------------------------- /internal/jsonschema/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jsonschema/generator.go -------------------------------------------------------------------------------- /internal/jsonschema/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jsonschema/generator_test.go -------------------------------------------------------------------------------- /internal/jsonschema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/jsonschema/utils.go -------------------------------------------------------------------------------- /internal/languages/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/config.go -------------------------------------------------------------------------------- /internal/languages/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/context.go -------------------------------------------------------------------------------- /internal/languages/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/context_test.go -------------------------------------------------------------------------------- /internal/languages/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/converter.go -------------------------------------------------------------------------------- /internal/languages/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/language.go -------------------------------------------------------------------------------- /internal/languages/nilchecks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/languages/nilchecks.go -------------------------------------------------------------------------------- /internal/openapi/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/openapi/generator.go -------------------------------------------------------------------------------- /internal/openapi/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/openapi/generator_test.go -------------------------------------------------------------------------------- /internal/openapi/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/openapi/utils.go -------------------------------------------------------------------------------- /internal/orderedmap/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/orderedmap/map.go -------------------------------------------------------------------------------- /internal/orderedmap/map_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/orderedmap/map_test.go -------------------------------------------------------------------------------- /internal/semver/semver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/semver/semver.go -------------------------------------------------------------------------------- /internal/simplecue/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/simplecue/generator.go -------------------------------------------------------------------------------- /internal/simplecue/generator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/simplecue/generator_test.go -------------------------------------------------------------------------------- /internal/simplecue/referenceresolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/simplecue/referenceresolver.go -------------------------------------------------------------------------------- /internal/simplecue/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/simplecue/utils.go -------------------------------------------------------------------------------- /internal/testutils/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/testutils/constants.go -------------------------------------------------------------------------------- /internal/testutils/jennytestsuite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/testutils/jennytestsuite.go -------------------------------------------------------------------------------- /internal/testutils/orderedmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/testutils/orderedmap.go -------------------------------------------------------------------------------- /internal/tools/arrays.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/tools/arrays.go -------------------------------------------------------------------------------- /internal/tools/maps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/tools/maps.go -------------------------------------------------------------------------------- /internal/tools/regexp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/tools/regexp.go -------------------------------------------------------------------------------- /internal/tools/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/tools/strings.go -------------------------------------------------------------------------------- /internal/tools/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/tools/types.go -------------------------------------------------------------------------------- /internal/veneers/builder/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/builder/rules.go -------------------------------------------------------------------------------- /internal/veneers/builder/rules_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/builder/rules_test.go -------------------------------------------------------------------------------- /internal/veneers/builder/selectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/builder/selectors.go -------------------------------------------------------------------------------- /internal/veneers/builder/selectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/builder/selectors_test.go -------------------------------------------------------------------------------- /internal/veneers/option/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/option/actions.go -------------------------------------------------------------------------------- /internal/veneers/option/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/option/actions_test.go -------------------------------------------------------------------------------- /internal/veneers/option/rules.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/option/rules.go -------------------------------------------------------------------------------- /internal/veneers/option/selectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/option/selectors.go -------------------------------------------------------------------------------- /internal/veneers/option/selectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/option/selectors_test.go -------------------------------------------------------------------------------- /internal/veneers/rewrite/rewrite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/rewrite/rewrite.go -------------------------------------------------------------------------------- /internal/veneers/rewrite/rewrite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/rewrite/rewrite_test.go -------------------------------------------------------------------------------- /internal/veneers/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/veneers/types.go -------------------------------------------------------------------------------- /internal/yaml/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/builder.go -------------------------------------------------------------------------------- /internal/yaml/compiler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/compiler.go -------------------------------------------------------------------------------- /internal/yaml/compilerpasses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/compilerpasses.go -------------------------------------------------------------------------------- /internal/yaml/converter_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/converter_config.go -------------------------------------------------------------------------------- /internal/yaml/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/option.go -------------------------------------------------------------------------------- /internal/yaml/veneers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/veneers.go -------------------------------------------------------------------------------- /internal/yaml/veneers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/internal/yaml/veneers_test.go -------------------------------------------------------------------------------- /mkdocs-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/mkdocs-github.yml -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas/compiler_passes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/schemas/compiler_passes.json -------------------------------------------------------------------------------- /schemas/pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/schemas/pipeline.json -------------------------------------------------------------------------------- /schemas/veneers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/schemas/veneers.json -------------------------------------------------------------------------------- /scripts/ci/build-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/scripts/ci/build-go.sh -------------------------------------------------------------------------------- /scripts/ci/build-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/scripts/ci/build-java.sh -------------------------------------------------------------------------------- /scripts/ci/build-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/scripts/ci/build-php.sh -------------------------------------------------------------------------------- /scripts/ci/build-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/scripts/ci/build-python.sh -------------------------------------------------------------------------------- /scripts/ci/build-ts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/scripts/ci/build-ts.sh -------------------------------------------------------------------------------- /testdata/generated/cog/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/cog/errors.go -------------------------------------------------------------------------------- /testdata/generated/cog/plugins/variants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/cog/plugins/variants.go -------------------------------------------------------------------------------- /testdata/generated/cog/runtime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/cog/runtime.go -------------------------------------------------------------------------------- /testdata/generated/cog/variants/variants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/cog/variants/variants.go -------------------------------------------------------------------------------- /testdata/generated/defaults/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/defaults/types_gen.go -------------------------------------------------------------------------------- /testdata/generated/equality/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/equality/types_gen.go -------------------------------------------------------------------------------- /testdata/generated/validation/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/generated/validation/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/anonymous_struct/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/anonymous_struct/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/array_append/GoBuilder/sandbox/somestruct_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/array_append/GoBuilder/sandbox/somestruct_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/array_append/JavaBuilder/sandbox/SomeStructBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/array_append/JavaBuilder/sandbox/SomeStructBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/array_append/PHPBuilder/src/Sandbox/SomeStructBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/array_append/PHPBuilder/src/Sandbox/SomeStructBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/array_append/PythonBuilder/builders/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/array_append/PythonBuilder/builders/sandbox.py -------------------------------------------------------------------------------- /testdata/jennies/builders/array_append/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/array_append/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/basic_struct/PythonBuilder/builders/basic_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/basic_struct/PythonBuilder/builders/basic_struct.py -------------------------------------------------------------------------------- /testdata/jennies/builders/basic_struct/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/basic_struct/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/basic_struct/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/basic_struct/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/basic_struct_defaults/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/basic_struct_defaults/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/basic_struct_defaults/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/basic_struct_defaults/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/builder_delegation/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/builder_delegation/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/builder_delegation/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/builder_delegation/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/builder_delegation_in_disjunction/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/builder_delegation_in_disjunction/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/builder_delegation_in_disjunction/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/builder_delegation_in_disjunction/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/composable_slot/PythonBuilder/builders/composable_slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/composable_slot/PythonBuilder/builders/composable_slot.py -------------------------------------------------------------------------------- /testdata/jennies/builders/composable_slot/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/composable_slot/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/constant_assignment/PythonBuilder/builders/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constant_assignment/PythonBuilder/builders/sandbox.py -------------------------------------------------------------------------------- /testdata/jennies/builders/constant_assignment/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constant_assignment/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/constraints/GoBuilder/constraints/somestruct_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constraints/GoBuilder/constraints/somestruct_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/constraints/JavaBuilder/constraints/SomeStructBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constraints/JavaBuilder/constraints/SomeStructBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/constraints/PythonBuilder/builders/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constraints/PythonBuilder/builders/constraints.py -------------------------------------------------------------------------------- /testdata/jennies/builders/constraints/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constraints/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/constraints/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constraints/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/constructor_argument/PythonBuilder/builders/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constructor_argument/PythonBuilder/builders/sandbox.py -------------------------------------------------------------------------------- /testdata/jennies/builders/constructor_argument/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constructor_argument/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/constructor_initializations/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/constructor_initializations/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/dashboard_panel/JavaBuilder/dashboard/PanelBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/dashboard_panel/JavaBuilder/dashboard/PanelBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/dashboard_panel/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/dashboard_panel/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/dataquery_variant_builder/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/dataquery_variant_builder/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/discriminator_without_option/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/discriminator_without_option/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/discriminator_without_option/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/discriminator_without_option/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/envelope_assignment/PythonBuilder/builders/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/envelope_assignment/PythonBuilder/builders/sandbox.py -------------------------------------------------------------------------------- /testdata/jennies/builders/envelope_assignment/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/envelope_assignment/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/GoBuilder/promql/funccallexpr_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/GoBuilder/promql/funccallexpr_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/GoConverter/promql/funccallexpr_converter_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/GoConverter/promql/funccallexpr_converter_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/JavaBuilder/promql/FuncCallExprBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/JavaBuilder/promql/FuncCallExprBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/PHPBuilder/src/Promql/FuncCallExprBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/PHPBuilder/src/Promql/FuncCallExprBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/PHPConverter/src/Promql/FuncCallExprConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/PHPConverter/src/Promql/FuncCallExprConverter.php -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/PythonBuilder/builders/promql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/PythonBuilder/builders/promql.py -------------------------------------------------------------------------------- /testdata/jennies/builders/factories/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/factories/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/foreign_builder/PythonBuilder/builders/builder_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/foreign_builder/PythonBuilder/builders/builder_pkg.py -------------------------------------------------------------------------------- /testdata/jennies/builders/foreign_builder/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/foreign_builder/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/initialization_safeguards/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/initialization_safeguards/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/GoBuilder/known_any/somestruct_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/GoBuilder/known_any/somestruct_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/GoConverter/known_any/somestruct_converter_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/GoConverter/known_any/somestruct_converter_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/JavaBuilder/known_any/SomeStructBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/JavaBuilder/known_any/SomeStructBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/PHPBuilder/src/KnownAny/SomeStructBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/PHPBuilder/src/KnownAny/SomeStructBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/PHPConverter/src/KnownAny/SomeStructConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/PHPConverter/src/KnownAny/SomeStructConverter.php -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/PythonBuilder/builders/known_any.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/PythonBuilder/builders/known_any.py -------------------------------------------------------------------------------- /testdata/jennies/builders/known_any/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/known_any/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/map_index_assignment/PythonBuilder/builders/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_index_assignment/PythonBuilder/builders/sandbox.py -------------------------------------------------------------------------------- /testdata/jennies/builders/map_index_assignment/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_index_assignment/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/map_of_builders/PythonBuilder/builders/map_of_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_of_builders/PythonBuilder/builders/map_of_builders.py -------------------------------------------------------------------------------- /testdata/jennies/builders/map_of_builders/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_of_builders/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/map_of_builders/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_of_builders/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/map_of_disjunctions/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_of_disjunctions/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/map_of_disjunctions/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/map_of_disjunctions/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/builders/nullable_map_assignment/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/nullable_map_assignment/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/package-with-dashes/PythonBuilder/builders/builder-pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/package-with-dashes/PythonBuilder/builders/builder-pkg.py -------------------------------------------------------------------------------- /testdata/jennies/builders/package-with-dashes/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/package-with-dashes/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/panel_builders/GoBuilder/panelbuilder/panel_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/panel_builders/GoBuilder/panelbuilder/panel_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/panel_builders/JavaBuilder/panelbuilder/PanelBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/panel_builders/JavaBuilder/panelbuilder/PanelBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/panel_builders/PHPBuilder/src/Panelbuilder/PanelBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/panel_builders/PHPBuilder/src/Panelbuilder/PanelBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/panel_builders/PythonBuilder/builders/panelbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/panel_builders/PythonBuilder/builders/panelbuilder.py -------------------------------------------------------------------------------- /testdata/jennies/builders/panel_builders/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/panel_builders/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/properties/GoBuilder/properties/somestruct_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/properties/GoBuilder/properties/somestruct_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/properties/JavaBuilder/properties/SomeStructBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/properties/JavaBuilder/properties/SomeStructBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/properties/PHPBuilder/src/Properties/SomeStructBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/properties/PHPBuilder/src/Properties/SomeStructBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/properties/PythonBuilder/builders/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/properties/PythonBuilder/builders/properties.py -------------------------------------------------------------------------------- /testdata/jennies/builders/properties/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/properties/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/references/GoBuilder/some_pkg/person_builder_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/GoBuilder/some_pkg/person_builder_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/references/GoConverter/some_pkg/person_converter_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/GoConverter/some_pkg/person_converter_gen.go -------------------------------------------------------------------------------- /testdata/jennies/builders/references/JavaBuilder/some_pkg/PersonBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/JavaBuilder/some_pkg/PersonBuilder.java -------------------------------------------------------------------------------- /testdata/jennies/builders/references/PHPBuilder/src/SomePkg/PersonBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/PHPBuilder/src/SomePkg/PersonBuilder.php -------------------------------------------------------------------------------- /testdata/jennies/builders/references/PHPConverter/src/SomePkg/PersonConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/PHPConverter/src/SomePkg/PersonConverter.php -------------------------------------------------------------------------------- /testdata/jennies/builders/references/PythonBuilder/builders/some_pkg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/PythonBuilder/builders/some_pkg.py -------------------------------------------------------------------------------- /testdata/jennies/builders/references/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/references/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/struct_fields_as_args_assignment/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/struct_fields_as_args_assignment/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/struct_with_defaults/builders_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/struct_with_defaults/builders_context.json -------------------------------------------------------------------------------- /testdata/jennies/builders/struct_with_defaults/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/builders/struct_with_defaults/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_refs/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_scalars/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_scalars/ir.json -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_scalars/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_scalars/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_scalars_and_refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_scalars_and_refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/deserializers/disjunctions_of_scalars_and_refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/deserializers/disjunctions_of_scalars_and_refs/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/GoRawTypes/arrays/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/GoRawTypes/arrays/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/JSONSchema/arrays.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/JSONSchema/arrays.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/JavaRawTypes/arrays/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/JavaRawTypes/arrays/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/OpenAPI/arrays.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/OpenAPI/arrays.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/PHPRawTypes/src/Arrays/SomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/PHPRawTypes/src/Arrays/SomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/PythonRawTypes/models/arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/PythonRawTypes/models/arrays.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/TypescriptRawTypes/src/arrays/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/TypescriptRawTypes/src/arrays/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/arrays/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/arrays/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_reference_as_default/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_reference_as_default/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_reference_as_default/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_reference_as_default/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_reference_discriminator/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_reference_discriminator/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_reference_discriminator/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_reference_discriminator/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_references/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_references/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constant_references/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constant_references/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/GoRawTypes/constraints/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/GoRawTypes/constraints/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/JSONSchema/constraints.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/JSONSchema/constraints.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/JavaRawTypes/constraints/RefStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/JavaRawTypes/constraints/RefStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/JavaRawTypes/constraints/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/JavaRawTypes/constraints/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/OpenAPI/constraints.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/OpenAPI/constraints.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/PHPRawTypes/src/Constraints/RefStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/PHPRawTypes/src/Constraints/RefStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/PHPRawTypes/src/Constraints/SomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/PHPRawTypes/src/Constraints/SomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/PythonRawTypes/models/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/PythonRawTypes/models/constraints.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/TypescriptRawTypes/src/constraints/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/TypescriptRawTypes/src/constraints/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/constraints/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/constraints/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/GoRawTypes/dashboard/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/GoRawTypes/dashboard/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JSONSchema/dashboard.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JSONSchema/dashboard.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/Dashboard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/Dashboard.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/DataSourceRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/DataSourceRef.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/FieldConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/FieldConfig.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/FieldConfigSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/FieldConfigSource.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/Panel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/JavaRawTypes/dashboard/Panel.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/OpenAPI/dashboard.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/OpenAPI/dashboard.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/Dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/Dashboard.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/DataSourceRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/DataSourceRef.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/FieldConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/FieldConfig.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/FieldConfigSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/FieldConfigSource.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/Panel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PHPRawTypes/src/Dashboard/Panel.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/PythonRawTypes/models/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/PythonRawTypes/models/dashboard.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/TypescriptRawTypes/src/dashboard/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/TypescriptRawTypes/src/dashboard/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/dashboard/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/dashboard/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/GoRawTypes/disjunctions/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/GoRawTypes/disjunctions/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JSONSchema/disjunctions.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JSONSchema/disjunctions.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/BoolOrRef.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/BoolOrRef.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/RefreshRate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/RefreshRate.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SeveralRefs.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SeveralRefs.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SomeOtherStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SomeOtherStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/JavaRawTypes/disjunctions/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/OpenAPI/disjunctions.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/OpenAPI/disjunctions.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/PHPRawTypes/src/Disjunctions/SomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/PHPRawTypes/src/Disjunctions/SomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/PythonRawTypes/models/disjunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/PythonRawTypes/models/disjunctions.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions_of_scalars_and_refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions_of_scalars_and_refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/disjunctions_of_scalars_and_refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/disjunctions_of_scalars_and_refs/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/GoRawTypes/enums/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/GoRawTypes/enums/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/JSONSchema/enums.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/JSONSchema/enums.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/JavaRawTypes/enums/DashboardCursorSync.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/JavaRawTypes/enums/DashboardCursorSync.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/JavaRawTypes/enums/LogsSortOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/JavaRawTypes/enums/LogsSortOrder.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/JavaRawTypes/enums/Operator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/JavaRawTypes/enums/Operator.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/JavaRawTypes/enums/TableSortOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/JavaRawTypes/enums/TableSortOrder.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/OpenAPI/enums.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/OpenAPI/enums.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/DashboardCursorSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/DashboardCursorSync.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/LogsSortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/LogsSortOrder.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/Operator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/Operator.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/TableSortOrder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/PHPRawTypes/src/Enums/TableSortOrder.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/PythonRawTypes/models/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/PythonRawTypes/models/enums.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/TypescriptRawTypes/src/enums/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/TypescriptRawTypes/src/enums/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/enums/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/enums/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/field_with_struct_with_defaults/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/field_with_struct_with_defaults/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/GoRawTypes/intersections/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/GoRawTypes/intersections/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JSONSchema/intersections.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JSONSchema/intersections.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Common.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/CommonType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/CommonType.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Counter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Counter.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Intersections.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/Intersections.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/JavaRawTypes/intersections/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/OpenAPI/intersections.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/OpenAPI/intersections.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/intersections/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/intersections/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/GoRawTypes/maps/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/GoRawTypes/maps/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/JSONSchema/maps.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/JSONSchema/maps.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/JavaRawTypes/maps/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/JavaRawTypes/maps/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/OpenAPI/maps.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/OpenAPI/maps.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/PHPRawTypes/src/Maps/SomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/PHPRawTypes/src/Maps/SomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/PythonRawTypes/models/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/PythonRawTypes/models/maps.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/TypescriptRawTypes/src/maps/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/TypescriptRawTypes/src/maps/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/maps/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/maps/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/GoRawTypes/withdashes/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/GoRawTypes/withdashes/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/JSONSchema/with-dashes.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/JSONSchema/with-dashes.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/JavaRawTypes/withdashes/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/JavaRawTypes/withdashes/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/OpenAPI/with-dashes.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/OpenAPI/with-dashes.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/PythonRawTypes/models/with-dashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/PythonRawTypes/models/with-dashes.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/package-with-dashes/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/package-with-dashes/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/GoRawTypes/refs/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/GoRawTypes/refs/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/JSONSchema/refs.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/JSONSchema/refs.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/JavaRawTypes/refs/RefToSomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/JavaRawTypes/refs/RefToSomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/JavaRawTypes/refs/RefToSomeStructFromOtherPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/JavaRawTypes/refs/RefToSomeStructFromOtherPackage.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/OpenAPI/refs.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/OpenAPI/refs.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/PHPRawTypes/src/Refs/RefToSomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/PHPRawTypes/src/Refs/RefToSomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/PHPRawTypes/src/Refs/SomeStruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/PHPRawTypes/src/Refs/SomeStruct.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/PythonRawTypes/models/refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/PythonRawTypes/models/refs.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/TypescriptRawTypes/src/refs/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/TypescriptRawTypes/src/refs/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/GoRawTypes/scalars/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/GoRawTypes/scalars/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/JSONSchema/scalars.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/JSONSchema/scalars.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/JavaRawTypes/scalars/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/JavaRawTypes/scalars/Constants.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/OpenAPI/scalars.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/OpenAPI/scalars.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/PHPRawTypes/src/Scalars/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/PHPRawTypes/src/Scalars/Constants.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/PythonRawTypes/models/scalars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/PythonRawTypes/models/scalars.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/TypescriptRawTypes/src/scalars/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/TypescriptRawTypes/src/scalars/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/scalars/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/scalars/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_complex_fields/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_complex_fields/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/GoRawTypes/defaults/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/GoRawTypes/defaults/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/JSONSchema/defaults.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/JSONSchema/defaults.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/JavaRawTypes/defaults/SomeStruct.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/JavaRawTypes/defaults/SomeStruct.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/OpenAPI/defaults.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/OpenAPI/defaults.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/PythonRawTypes/models/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/PythonRawTypes/models/defaults.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_defaults/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_defaults/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_optional_fields/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_optional_fields/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_scalar_fields/GoRawTypes/basic/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_scalar_fields/GoRawTypes/basic/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_scalar_fields/JSONSchema/basic.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_scalar_fields/JSONSchema/basic.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_scalar_fields/OpenAPI/basic.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_scalar_fields/OpenAPI/basic.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_scalar_fields/PythonRawTypes/models/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_scalar_fields/PythonRawTypes/models/basic.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/struct_with_scalar_fields/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/struct_with_scalar_fields/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/GoRawTypes/time_hint/types_gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/GoRawTypes/time_hint/types_gen.go -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/JSONSchema/time_hint.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/JSONSchema/time_hint.jsonschema.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/JavaRawTypes/time_hint/ObjWithTimeField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/JavaRawTypes/time_hint/ObjWithTimeField.java -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/OpenAPI/time_hint.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/OpenAPI/time_hint.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/PHPRawTypes/src/TimeHint/ObjWithTimeField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/PHPRawTypes/src/TimeHint/ObjWithTimeField.php -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/PythonRawTypes/models/time_hint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/PythonRawTypes/models/time_hint.py -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/TypescriptRawTypes/src/timeHint/types.gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/TypescriptRawTypes/src/timeHint/types.gen.ts -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/time_hint/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/time_hint/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/variant_dataquery/OpenAPI/variant_dataquery.openapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/variant_dataquery/OpenAPI/variant_dataquery.openapi.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/variant_dataquery/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/variant_dataquery/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/variant_panelcfg_full/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/variant_panelcfg_full/ir.json -------------------------------------------------------------------------------- /testdata/jennies/rawtypes/variant_panelcfg_only_options/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/rawtypes/variant_panelcfg_only_options/ir.json -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_refs/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_scalars/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_scalars/ir.json -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_scalars/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_scalars/schema.cue -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_scalars_and_refs/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_scalars_and_refs/ir.json -------------------------------------------------------------------------------- /testdata/jennies/serializers/disjunctions_of_scalars_and_refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jennies/serializers/disjunctions_of_scalars_and_refs/schema.cue -------------------------------------------------------------------------------- /testdata/jsonschema/allof_object/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/allof_object/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/allof_object/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/allof_object/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/anyof_object/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/anyof_object/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/anyof_object/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/anyof_object/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/anyof_struct_field/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/anyof_struct_field/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/anyof_struct_field/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/anyof_struct_field/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/array_any/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/array_any/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/array_any/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/array_any/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/basic_object/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/basic_object/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/basic_object/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/basic_object/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/consts/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/consts/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/consts/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/consts/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/defaults/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/defaults/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/defaults/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/defaults/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/enum/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/enum/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/enum/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/enum/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/influxdbquery/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/influxdbquery/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/influxdbquery/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/influxdbquery/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/number_constraints/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/number_constraints/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/number_constraints/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/number_constraints/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/object_no_properties/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/object_no_properties/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/object_no_properties/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/object_no_properties/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/oneof_object/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/oneof_object/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/oneof_object/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/oneof_object/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/oneof_struct_field/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/oneof_struct_field/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/oneof_struct_field/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/oneof_struct_field/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/recursive/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/recursive/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/recursive/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/recursive/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/ref_struct_field/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/ref_struct_field/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/ref_struct_field/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/ref_struct_field/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/relative_refs/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/relative_refs/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/relative_refs/refs/common/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/relative_refs/refs/common/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/relative_refs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/relative_refs/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/string_length_constraints/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/string_length_constraints/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/string_length_constraints/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/string_length_constraints/schema.json -------------------------------------------------------------------------------- /testdata/jsonschema/time/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/time/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/jsonschema/time/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/jsonschema/time/schema.json -------------------------------------------------------------------------------- /testdata/openapi/arrays/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/arrays/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/arrays/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/arrays/schema.json -------------------------------------------------------------------------------- /testdata/openapi/consts/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/consts/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/consts/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/consts/schema.json -------------------------------------------------------------------------------- /testdata/openapi/datatypes/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/datatypes/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/datatypes/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/datatypes/schema.json -------------------------------------------------------------------------------- /testdata/openapi/defaults/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/defaults/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/defaults/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/defaults/schema.json -------------------------------------------------------------------------------- /testdata/openapi/discriminator/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/discriminator/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/discriminator/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/discriminator/schema.json -------------------------------------------------------------------------------- /testdata/openapi/enums/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/enums/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/enums/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/enums/schema.json -------------------------------------------------------------------------------- /testdata/openapi/external_refs/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/external_refs/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/external_refs/refs/refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/external_refs/refs/refs.json -------------------------------------------------------------------------------- /testdata/openapi/external_refs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/external_refs/schema.json -------------------------------------------------------------------------------- /testdata/openapi/intersections/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/intersections/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/intersections/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/intersections/schema.json -------------------------------------------------------------------------------- /testdata/openapi/nested_structs/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/nested_structs/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/nested_structs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/nested_structs/schema.json -------------------------------------------------------------------------------- /testdata/openapi/object_no_properties/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/object_no_properties/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/object_no_properties/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/object_no_properties/schema.json -------------------------------------------------------------------------------- /testdata/openapi/refs/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/refs/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/refs/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/refs/schema.json -------------------------------------------------------------------------------- /testdata/openapi/split_schema/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/split_schema/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/split_schema/refs/partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/split_schema/refs/partial.json -------------------------------------------------------------------------------- /testdata/openapi/split_schema/refs/partial2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/split_schema/refs/partial2.json -------------------------------------------------------------------------------- /testdata/openapi/split_schema/refs/refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/split_schema/refs/refs.json -------------------------------------------------------------------------------- /testdata/openapi/split_schema/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/split_schema/schema.json -------------------------------------------------------------------------------- /testdata/openapi/time/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/time/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/openapi/time/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/openapi/time/schema.json -------------------------------------------------------------------------------- /testdata/schemas/defaults/defaults.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/schemas/defaults/defaults.cue -------------------------------------------------------------------------------- /testdata/schemas/equality/equality.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/schemas/equality/equality.cue -------------------------------------------------------------------------------- /testdata/schemas/validation/validation.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/schemas/validation/validation.cue -------------------------------------------------------------------------------- /testdata/simplecue/arrays/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/arrays/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/arrays/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/arrays/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/common_timezone_disjunction/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/common_timezone_disjunction/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/common_timezone_disjunction/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/common_timezone_disjunction/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/defaults/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/defaults/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/defaults/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/defaults/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/defaults_on_struct/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/defaults_on_struct/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/defaults_on_struct/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/defaults_on_struct/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/disjunctions/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/disjunctions/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/disjunctions/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/disjunctions/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/enums/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/enums/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/enums/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/enums/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/maps/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/maps/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/maps/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/maps/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/nested_disjunctions/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/nested_disjunctions/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/nested_disjunctions/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/nested_disjunctions/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/numbers_constraints/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/numbers_constraints/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/numbers_constraints/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/numbers_constraints/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/refs/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/refs/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/refs/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/refs/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/scalars/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/scalars/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/scalars/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/scalars/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/strings_constraints/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/strings_constraints/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/strings_constraints/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/strings_constraints/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/time/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/time/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/time/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/time/schema.cue -------------------------------------------------------------------------------- /testdata/simplecue/unifications/GenerateAST/ir.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/unifications/GenerateAST/ir.json -------------------------------------------------------------------------------- /testdata/simplecue/unifications/schema.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/testdata/simplecue/unifications/schema.cue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grafana/cog/HEAD/tsconfig.json --------------------------------------------------------------------------------