avrotize 2.20.3__py3-none-any.whl → 2.20.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- avrotize/__init__.py +2 -0
- avrotize/_version.py +2 -2
- avrotize/avrotocsharp/README.md.jinja +166 -0
- avrotize/avrotocsharp/class_test.cs.jinja +126 -0
- avrotize/avrotocsharp/dataclass_core.jinja +67 -5
- avrotize/avrotocsharp/project.csproj.jinja +6 -0
- avrotize/avrotocsharp/run_coverage.ps1.jinja +98 -0
- avrotize/avrotocsharp/run_coverage.sh.jinja +149 -0
- avrotize/avrotocsharp/testproject.csproj.jinja +4 -0
- avrotize/avrotocsharp.py +121 -16
- avrotize/commands.json +168 -9
- avrotize/constants.py +15 -0
- avrotize/dependencies/cs/net90/dependencies.csproj +2 -0
- avrotize/dependencies/java/jdk21/pom.xml +1 -1
- avrotize/jsonstostructure.py +234 -12
- avrotize/openapitostructure.py +717 -0
- avrotize/structuretojs/class_core.js.jinja +33 -0
- avrotize/structuretojs/enum_core.js.jinja +10 -0
- avrotize/structuretojs/package.json.jinja +12 -0
- avrotize/structuretojs/test_class.js.jinja +84 -0
- avrotize/structuretojs/test_enum.js.jinja +58 -0
- avrotize/structuretojs/test_runner.js.jinja +45 -0
- avrotize/structuretojs.py +657 -0
- avrotize/structuretots.py +26 -2
- {avrotize-2.20.3.dist-info → avrotize-2.20.4.dist-info}/METADATA +66 -1
- {avrotize-2.20.3.dist-info → avrotize-2.20.4.dist-info}/RECORD +29 -18
- {avrotize-2.20.3.dist-info → avrotize-2.20.4.dist-info}/WHEEL +0 -0
- {avrotize-2.20.3.dist-info → avrotize-2.20.4.dist-info}/entry_points.txt +0 -0
- {avrotize-2.20.3.dist-info → avrotize-2.20.4.dist-info}/licenses/LICENSE +0 -0
avrotize/structuretots.py
CHANGED
|
@@ -608,12 +608,19 @@ class StructureToTypeScript:
|
|
|
608
608
|
f.write(index_content)
|
|
609
609
|
|
|
610
610
|
def convert(self, structure_schema_path: str, output_dir: str, package_name: str = '') -> None:
|
|
611
|
-
"""
|
|
611
|
+
""" Converts a JSON Structure schema file to TypeScript classes """
|
|
612
612
|
self.output_dir = output_dir
|
|
613
613
|
|
|
614
614
|
# Load schema
|
|
615
615
|
with open(structure_schema_path, 'r', encoding='utf-8') as f:
|
|
616
|
-
|
|
616
|
+
schema = json.load(f)
|
|
617
|
+
|
|
618
|
+
self.convert_schema(schema, output_dir, package_name)
|
|
619
|
+
|
|
620
|
+
def convert_schema(self, schema: JsonNode, output_dir: str, package_name: str = '') -> None:
|
|
621
|
+
""" Converts a JSON Structure schema to TypeScript classes """
|
|
622
|
+
self.output_dir = output_dir
|
|
623
|
+
self.schema_doc = schema
|
|
617
624
|
|
|
618
625
|
# Register schema IDs
|
|
619
626
|
self.register_schema_ids(self.schema_doc)
|
|
@@ -651,3 +658,20 @@ def convert_structure_to_typescript(structure_schema_path: str, ts_file_path: st
|
|
|
651
658
|
"""
|
|
652
659
|
converter = StructureToTypeScript(package_name, typedjson_annotation, avro_annotation)
|
|
653
660
|
converter.convert(structure_schema_path, ts_file_path, package_name)
|
|
661
|
+
|
|
662
|
+
|
|
663
|
+
def convert_structure_schema_to_typescript(structure_schema: JsonNode, output_dir: str,
|
|
664
|
+
package_name: str = '', typedjson_annotation: bool = False,
|
|
665
|
+
avro_annotation: bool = False) -> None:
|
|
666
|
+
"""
|
|
667
|
+
Converts a JSON Structure schema to TypeScript classes.
|
|
668
|
+
|
|
669
|
+
Args:
|
|
670
|
+
structure_schema: JSON Structure schema to convert
|
|
671
|
+
output_dir: Output directory for TypeScript files
|
|
672
|
+
package_name: Package name for the generated TypeScript project
|
|
673
|
+
typedjson_annotation: Whether to include TypedJSON annotations
|
|
674
|
+
avro_annotation: Whether to include Avro annotations
|
|
675
|
+
"""
|
|
676
|
+
converter = StructureToTypeScript(package_name, typedjson_annotation, avro_annotation)
|
|
677
|
+
converter.convert_schema(structure_schema, output_dir, package_name)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: avrotize
|
|
3
|
-
Version: 2.20.
|
|
3
|
+
Version: 2.20.4
|
|
4
4
|
Summary: Tools to convert from and to Avro Schema from various other schema languages.
|
|
5
5
|
Author-email: Clemens Vasters <clemensv@microsoft.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -111,6 +111,7 @@ Converting from Avrotize Schema:
|
|
|
111
111
|
Direct conversions (JSON Structure):
|
|
112
112
|
|
|
113
113
|
- [`avrotize s2p`](#convert-json-structure-to-protocol-buffers) - Convert JSON Structure to Protocol Buffers (.proto files).
|
|
114
|
+
- [`avrotize oas2s`](#convert-openapi-to-json-structure) - Convert OpenAPI 3.x document to JSON Structure.
|
|
114
115
|
|
|
115
116
|
Generate code from Avrotize Schema:
|
|
116
117
|
|
|
@@ -1067,6 +1068,29 @@ Conversion notes:
|
|
|
1067
1068
|
- The tool generates a complete Maven project with pom.xml including Jackson dependencies.
|
|
1068
1069
|
- Generated classes include `equals()` and `hashCode()` implementations.
|
|
1069
1070
|
|
|
1071
|
+
### Convert JSON Structure to JavaScript classes
|
|
1072
|
+
|
|
1073
|
+
```bash
|
|
1074
|
+
avrotize s2js <path_to_structure_schema_file> [--out <path_to_js_dir>] [--package <package_name>] [--avro-annotation]
|
|
1075
|
+
```
|
|
1076
|
+
|
|
1077
|
+
Parameters:
|
|
1078
|
+
|
|
1079
|
+
- `<path_to_structure_schema_file>`: The path to the JSON Structure schema file to be converted. If omitted, the file is read from stdin.
|
|
1080
|
+
- `--out`: The path to the directory to write the JavaScript classes to. Required.
|
|
1081
|
+
- `--package`: (optional) The package name for the generated classes.
|
|
1082
|
+
- `--avro-annotation`: (optional) Add Avro binary serialization support.
|
|
1083
|
+
|
|
1084
|
+
Conversion notes:
|
|
1085
|
+
|
|
1086
|
+
- The tool generates JavaScript ES6 classes from JSON Structure schemas with full type support.
|
|
1087
|
+
- JSON Structure primitive types are mapped to JavaScript types. Extended types like `date`, `time`, `datetime` are handled as Date objects or strings.
|
|
1088
|
+
- Integer types are mapped to JavaScript Number or BigInt depending on size.
|
|
1089
|
+
- Choice types are generated as union type classes with factory methods.
|
|
1090
|
+
- Tuple types are generated as arrays with fixed length.
|
|
1091
|
+
- The tool generates a complete npm package with package.json.
|
|
1092
|
+
- Generated classes include serialization/deserialization methods and optional Avro support when enabled.
|
|
1093
|
+
|
|
1070
1094
|
### Convert Avrotize Schema to Datapackage schema
|
|
1071
1095
|
|
|
1072
1096
|
```bash
|
|
@@ -1200,6 +1224,47 @@ Conversion notes:
|
|
|
1200
1224
|
- Choice types (unions) are converted to Protocol Buffers `oneof` constructs.
|
|
1201
1225
|
- Abstract types and extensions (`$extends`) are handled by generating appropriate message hierarchies.
|
|
1202
1226
|
|
|
1227
|
+
### Convert OpenAPI to JSON Structure
|
|
1228
|
+
|
|
1229
|
+
```bash
|
|
1230
|
+
avrotize oas2s <path_to_openapi_file> --out <path_to_json_structure_file> [--namespace <namespace>] [--preserve-composition] [--detect-discriminators] [--lift-inline-schemas]
|
|
1231
|
+
```
|
|
1232
|
+
|
|
1233
|
+
Parameters:
|
|
1234
|
+
|
|
1235
|
+
- `<path_to_openapi_file>`: The path to the OpenAPI 3.x document (JSON or YAML). If omitted, the file is read from stdin.
|
|
1236
|
+
- `--out`: The path to the JSON Structure schema file to write the conversion result to. If omitted, the result is written to stdout.
|
|
1237
|
+
- `--namespace`: (optional) Namespace for the JSON Structure schema.
|
|
1238
|
+
- `--preserve-composition`: (optional) Preserve composition keywords (allOf, oneOf, anyOf). Default is `true`.
|
|
1239
|
+
- `--detect-discriminators`: (optional) Detect OpenAPI discriminator patterns and convert to choice types. Default is `true`.
|
|
1240
|
+
- `--lift-inline-schemas`: (optional) Lift inline schemas from paths/operations to named definitions. Default is `false`.
|
|
1241
|
+
|
|
1242
|
+
Conversion notes:
|
|
1243
|
+
|
|
1244
|
+
- The tool extracts schema definitions from `components.schemas` in the OpenAPI document and converts them to JSON Structure format.
|
|
1245
|
+
- OpenAPI-specific keywords are handled as follows:
|
|
1246
|
+
- `nullable`: Converted to type union with `null`
|
|
1247
|
+
- `readOnly`, `writeOnly`, `deprecated`: Mapped to metadata annotations
|
|
1248
|
+
- `discriminator`: Used to create choice types with proper discriminator mapping
|
|
1249
|
+
- OpenAPI `$ref` references (e.g., `#/components/schemas/Pet`) are converted to JSON Structure references (`#/definitions/Pet`).
|
|
1250
|
+
- All JSON Schema features supported by the JSON Schema converter are preserved, including:
|
|
1251
|
+
- Object structures with properties and required fields
|
|
1252
|
+
- Enumerations
|
|
1253
|
+
- Numeric and string constraints (minimum, maximum, minLength, maxLength, pattern)
|
|
1254
|
+
- Array and set types (with uniqueItems)
|
|
1255
|
+
- Map types (from additionalProperties)
|
|
1256
|
+
- Composition (allOf, oneOf, anyOf)
|
|
1257
|
+
|
|
1258
|
+
Example:
|
|
1259
|
+
|
|
1260
|
+
```bash
|
|
1261
|
+
# Convert an OpenAPI document to JSON Structure
|
|
1262
|
+
avrotize oas2s petstore.yaml --out petstore.struct.json
|
|
1263
|
+
|
|
1264
|
+
# With namespace and inline schema lifting
|
|
1265
|
+
avrotize oas2s api.json --out api.struct.json --namespace com.example.api --lift-inline-schemas
|
|
1266
|
+
```
|
|
1267
|
+
|
|
1203
1268
|
### Create the Parsing Canonical Form (PCF) of an Avrotize schema
|
|
1204
1269
|
|
|
1205
1270
|
```bash
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
avrotize/__init__.py,sha256=
|
|
1
|
+
avrotize/__init__.py,sha256=t5h5wkHXr6M0mmHAB5rhjZ3Gxy9xutGTGIfojfao9rI,3820
|
|
2
2
|
avrotize/__main__.py,sha256=5pY8dYAURcOnFRvgb6fgaOIa_SOzPLIWbU8-ZTQ0jG4,88
|
|
3
|
-
avrotize/_version.py,sha256=
|
|
3
|
+
avrotize/_version.py,sha256=zvxYQS75W6tQMmcBYRUyt_s6E2_4egLg5KScXeE_kAo,706
|
|
4
4
|
avrotize/asn1toavro.py,sha256=QDNwfBfXMxSH-k487CA3CaGCGDzOLs4PpVbbENm5uF0,8386
|
|
5
5
|
avrotize/avrotize.py,sha256=VHFpBltMVBpyt0ju3ZWW725BKjQ4Fk-nrAy8udW-X44,5713
|
|
6
6
|
avrotize/avrotocpp.py,sha256=hRZV247_TDD7Sm6_8sFx-UH5SueLLx2Wg6TvAVUX0iE,25693
|
|
7
|
-
avrotize/avrotocsharp.py,sha256=
|
|
7
|
+
avrotize/avrotocsharp.py,sha256=k-tBex_vT-79yKZNetP9pKF63206NlT7KKBIXies9Cg,71400
|
|
8
8
|
avrotize/avrotocsv.py,sha256=PaDEW2aGRFVNLwewWhJ3OwxbKFI3PBg_mTgtT4uLMko,3689
|
|
9
9
|
avrotize/avrotodatapackage.py,sha256=zSCphLvCYiBKRAUCdccsr-4JysH3PyAS6fSgwa65Tss,7259
|
|
10
10
|
avrotize/avrotodb.py,sha256=5fNJgz00VMimyOl7eI0lIxlcaN_JnN0mb2Q9lzCRecw,46989
|
|
@@ -25,18 +25,19 @@ avrotize/avrotorust.py,sha256=QMIBNkFpDlH44kuQo24k5D-f0lmdhoA5b7hEbhKsnMw,22214
|
|
|
25
25
|
avrotize/avrotots.py,sha256=u_XLjlHN0Gof5QYlpqK4X9WoX9rL30TjQMPg4TiyYnI,33241
|
|
26
26
|
avrotize/avrotoxsd.py,sha256=iGQq_8kC0kfKsqvqS6s_mO-kJ8N5G8vXOwqRI_DZUxc,17744
|
|
27
27
|
avrotize/cddltostructure.py,sha256=MA2c-P3CIEAxEaBX-FF299gR55xcLEV3FrfTr2QfayM,74491
|
|
28
|
-
avrotize/commands.json,sha256=
|
|
28
|
+
avrotize/commands.json,sha256=pD9H4fyT7nG2QBj-yLZc5JW-8JQsf2mnVjQ0k-Ubc5o,92489
|
|
29
29
|
avrotize/common.py,sha256=enqNR1I9-SbW7fNJE3w7N2R87kiN6_9Oa7VB4b2AUBc,31913
|
|
30
|
-
avrotize/constants.py,sha256=
|
|
30
|
+
avrotize/constants.py,sha256=AH9ITnLsGs-izJWhlZA30ADHYjV1P7NWumyvtU3mqrg,2627
|
|
31
31
|
avrotize/csvtoavro.py,sha256=TuIYm_Xv8gioEHl1YgWQKOYkFGGHfuwmK5RuEAEXbt8,4293
|
|
32
32
|
avrotize/datapackagetoavro.py,sha256=lw1S3H6UpKtjJj9ywDTuRw-qcihFx0vFJNPK7SlgKvY,2607
|
|
33
33
|
avrotize/dependency_resolver.py,sha256=LGOTutpobJ4kMjAwvs-l0Mt2tEoZFaXCazs-u38qnYk,19374
|
|
34
34
|
avrotize/dependency_version.py,sha256=tvbpO2VstTSTmNA5jbzQl48u6jnIM7BHyASQrrgsRYU,16844
|
|
35
35
|
avrotize/jsonstoavro.py,sha256=ZzigsCjAxw_TflXCjTLKHTrPmkiZRZMpuaZICfT_r_I,120069
|
|
36
|
-
avrotize/jsonstostructure.py,sha256=
|
|
36
|
+
avrotize/jsonstostructure.py,sha256=AXqrh3gJsQveWmC9Pfj1rTcUY_4KaDP7L9ObBSQehF4,147687
|
|
37
37
|
avrotize/jstructtoavro.py,sha256=sOq7Ru1b8_ZLCEsnBqx3gsMWd7dPAaYxoraAD0bz6rk,33891
|
|
38
38
|
avrotize/kstructtoavro.py,sha256=t97JY22n0uILK3WcvQu_Yp9ONvouJRLAC2bZ3rvZ1L0,2856
|
|
39
39
|
avrotize/kustotoavro.py,sha256=1oEk9mbqmP3N5-V7mBHSXpbSlYFzjJ7ajIDNJZxA1r8,21756
|
|
40
|
+
avrotize/openapitostructure.py,sha256=b86NYHHh8L9LF6-MD7jy57Pw80bo6pez-6Ve3F36hgs,31442
|
|
40
41
|
avrotize/parquettoavro.py,sha256=iAPrSYNkiH3fBKNVDfIgeXkQbAiopa252ULJrGgmBDI,5531
|
|
41
42
|
avrotize/proto2parser.py,sha256=__9R3cqiUJXc_efPCZZcF7rt18kA7mfhmX0qm2v0eSw,19742
|
|
42
43
|
avrotize/proto3parser.py,sha256=MfE84c-oAWWuzYmKlEZ5g5LUF7YzZaASFh2trX3UCaw,15604
|
|
@@ -51,13 +52,14 @@ avrotize/structuretogo.py,sha256=VCEUz-5J8uRqX1hWaTimtfVzEsIB-gs4wxa308rYD0s,324
|
|
|
51
52
|
avrotize/structuretographql.py,sha256=wcGXnrup5v5saRa1BhR6o-X8q8ujsQMVqrFHQTBPjww,20468
|
|
52
53
|
avrotize/structuretoiceberg.py,sha256=itKb33Kj-7-udk4eHTLmTEasIeh1ggpZ3e_bwCxLABM,15344
|
|
53
54
|
avrotize/structuretojava.py,sha256=jG2Vcf1KdezWrZo5lsecxLnmnMw1rA96uOxVWJQ4Rso,43372
|
|
55
|
+
avrotize/structuretojs.py,sha256=TJuhUGqn0F2omjPVcrPeFPHY2KynRceFg9gMGvEenxA,29608
|
|
54
56
|
avrotize/structuretojsons.py,sha256=PJrQBaf6yQHu5eFkePxbjPBEmL-fYfX2wj6OmH1jsWw,22495
|
|
55
57
|
avrotize/structuretokusto.py,sha256=rOKgYIcm7ZK8RS-VvMFPNzPzwtv7c4dIKU-fKjrJLyM,30618
|
|
56
58
|
avrotize/structuretomd.py,sha256=exfCldYbieVdduhotSoLrxsbphmyJQyeQso9qv4qyUw,13642
|
|
57
59
|
avrotize/structuretoproto.py,sha256=Aq0-fwMXSjjAxgZ5mq1kpo_TauigMRrJK9LNyoN-YGs,42679
|
|
58
60
|
avrotize/structuretopython.py,sha256=ePlXrwbqA9r63Vw6xL-Gq3hBUScdcF9aqCQSi_xtaGo,37980
|
|
59
61
|
avrotize/structuretorust.py,sha256=ChRmO7uzU-pMdDdS0Vtg-MVUaOaNhNUPwH-ZKKOHglU,35134
|
|
60
|
-
avrotize/structuretots.py,sha256=
|
|
62
|
+
avrotize/structuretots.py,sha256=y58jzClvVzudZurquW9nLIxvCXNvoYhiDycurpS4wlc,31990
|
|
61
63
|
avrotize/structuretoxsd.py,sha256=01VpasyWSMOx04sILHLP7H-WkhGdXAEGKohUUfgrNf0,32797
|
|
62
64
|
avrotize/xsdtoavro.py,sha256=nQtNH_3pEZBp67oUCPqzhvItEExHTe-8obsIfNRXt8Y,19064
|
|
63
65
|
avrotize/avrotocpp/CMakeLists.txt.jinja,sha256=t2ADvvi3o20xfVrsRBaUvZlpVCDR4h6Szsf0GcuSkH0,3015
|
|
@@ -65,12 +67,15 @@ avrotize/avrotocpp/build.bat.jinja,sha256=Wc_QbzaW9Zz5wnUoHLg1agmpfv_2LtWhqnRoNa
|
|
|
65
67
|
avrotize/avrotocpp/build.sh.jinja,sha256=kBTv3w1iwSFzwI_MLS6nOjezcUC2mOI0yWndfynt3G0,73
|
|
66
68
|
avrotize/avrotocpp/dataclass_body.jinja,sha256=miwbmWNPFn5wv_ncgphXAtAeaB5yx1023lj7bbsbB9I,4621
|
|
67
69
|
avrotize/avrotocpp/vcpkg.json.jinja,sha256=gEBg8px6sPwdyVTFf8RuLCaz4tkgbiantnLyToUvtxo,464
|
|
68
|
-
avrotize/avrotocsharp/
|
|
69
|
-
avrotize/avrotocsharp/
|
|
70
|
+
avrotize/avrotocsharp/README.md.jinja,sha256=g1TRA1bV2wEudRGDasHQrwlVmxd2HGTmH3itk8pTCoQ,4518
|
|
71
|
+
avrotize/avrotocsharp/class_test.cs.jinja,sha256=D8u6RtMdD-A_ZYSJU_NIojpEAF5HrQrEePXKEoUjM40,12152
|
|
72
|
+
avrotize/avrotocsharp/dataclass_core.jinja,sha256=oNy8_m4C9FgWWd8jJS7_HuVTOzVM1-JiZd4U2NNqe9U,14107
|
|
70
73
|
avrotize/avrotocsharp/enum_test.cs.jinja,sha256=BUiBLe1yvnxs-4cgwEjYXqkWmR94iVJsRIhBd_quFYc,579
|
|
71
|
-
avrotize/avrotocsharp/project.csproj.jinja,sha256=
|
|
74
|
+
avrotize/avrotocsharp/project.csproj.jinja,sha256=3Iqv2_CdtEiThyE0_nun4RH_Ox6itqSvgqW7d18FOio,1435
|
|
72
75
|
avrotize/avrotocsharp/project.sln.jinja,sha256=a5DcTeRa63bf9mOQzczMrYgmjHCOhdHMB7wVFPagnWU,1480
|
|
73
|
-
avrotize/avrotocsharp/
|
|
76
|
+
avrotize/avrotocsharp/run_coverage.ps1.jinja,sha256=oydzkAqmxYij3vH64q3FxLI8T3lPiYop8B3qyyXdqlI,3988
|
|
77
|
+
avrotize/avrotocsharp/run_coverage.sh.jinja,sha256=ua7Bfj4SAwb4JWz2bYbP85LXLNfzvVAR7ktW-XGslk4,4480
|
|
78
|
+
avrotize/avrotocsharp/testproject.csproj.jinja,sha256=dIL_rnJTKDyo3lPjKLb7wNIRmJ02UNtxdze_nlMcwzY,924
|
|
74
79
|
avrotize/avrotogo/go_enum.jinja,sha256=aaVwQJxJDHFsWYyujooWjI6MbM65jTdJqytE4l7QRsk,226
|
|
75
80
|
avrotize/avrotogo/go_helpers.jinja,sha256=WSjLIqkrYLUKdQBejEpOnNiENCaU8HQvm4gshy1gEiA,506
|
|
76
81
|
avrotize/avrotogo/go_struct.jinja,sha256=vI-xGVC1O7uAFYoY0T0kbT2Be5gFDkgc_UdFUbbpHZk,4272
|
|
@@ -96,9 +101,9 @@ avrotize/avrotots/index.ts.jinja,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
96
101
|
avrotize/avrotots/package.json.jinja,sha256=3ZqMVLP1ALkyXcVVA5j8Kyi5obNLJBv7dlgwKzYZfa8,555
|
|
97
102
|
avrotize/avrotots/tsconfig.json.jinja,sha256=Job00bmIiHEWQjA-Ze2-OdoTzT-GjVbL36fYuqtXLNs,537
|
|
98
103
|
avrotize/dependencies/cpp/vcpkg/vcpkg.json,sha256=se5qnUVQ1Q6wN_DqgIioqKg_y7ouh9oly2iBAJJXkgw,414
|
|
99
|
-
avrotize/dependencies/cs/net90/dependencies.csproj,sha256=
|
|
104
|
+
avrotize/dependencies/cs/net90/dependencies.csproj,sha256=etdV6bv9kgaNIrwnUpfB_Gghp8Qa8feJmP_0xoJFfZI,1169
|
|
100
105
|
avrotize/dependencies/go/go121/go.mod,sha256=ZHjoQNugEIJdkfwwLupG5x6KpUyDp8HxyVnJfHG3wuE,203
|
|
101
|
-
avrotize/dependencies/java/jdk21/pom.xml,sha256=
|
|
106
|
+
avrotize/dependencies/java/jdk21/pom.xml,sha256=Tbq8arhxXD4GEnSA_Y4NYuG9H4aqAdNVX3VoQBUef5I,3177
|
|
102
107
|
avrotize/dependencies/python/py312/requirements.txt,sha256=zMr7YjvCg75g66b-HURTr-n_vjxSv0J7A97aydoyYLA,336
|
|
103
108
|
avrotize/dependencies/rust/stable/Cargo.toml,sha256=p2s1Q-dzyV7QUkJUkUW3mr4yDAdnLQc3C9f6E_iZZB0,506
|
|
104
109
|
avrotize/dependencies/typescript/node22/package.json,sha256=oAW_2X-b715kV7aajwuONZEMkyQUJGviG3GwnoUa7hU,387
|
|
@@ -136,6 +141,12 @@ avrotize/structuretojava/enum_core.jinja,sha256=yXnXQbr3IEudUj5OOFqDUJT7TfGqAJMy
|
|
|
136
141
|
avrotize/structuretojava/equals_hashcode.jinja,sha256=m_6EBJdRfQWnP8dmEJ2vkosyFaNkVyYDtyb9RKQCZtQ,946
|
|
137
142
|
avrotize/structuretojava/pom.xml.jinja,sha256=0Je9fnd0Gb1RSPoD_chu3fafIu8SnRPuCKCw0mPXOTc,1089
|
|
138
143
|
avrotize/structuretojava/tuple_core.jinja,sha256=IZl3s_olYhwasA21uFqSZCyq4tLZ_jtQVD6ZQgUKmkk,1731
|
|
144
|
+
avrotize/structuretojs/class_core.js.jinja,sha256=-DiN6dHxiEAc3bWCV6EAH1TpEdO2Fhs6d3tgYzxdLM4,779
|
|
145
|
+
avrotize/structuretojs/enum_core.js.jinja,sha256=iMDePiuj4d7s7VuUOv3MnkFLKV9XBzReMR4TudZ3MbQ,205
|
|
146
|
+
avrotize/structuretojs/package.json.jinja,sha256=h5FbSPMShptOBKbypiqfzNtt9b6Y0yKvtaJbyMHBNjc,272
|
|
147
|
+
avrotize/structuretojs/test_class.js.jinja,sha256=XTQEtuFRgQb0ixrA_E9uK3tM4OJCf3F9KPCPUhaAG5A,2213
|
|
148
|
+
avrotize/structuretojs/test_enum.js.jinja,sha256=5vGrqUigmSFx_wFQQD-nE7P6o_HAyZEnmWpW0ScAkfw,1393
|
|
149
|
+
avrotize/structuretojs/test_runner.js.jinja,sha256=RH-wqqBTVjiFzp0k5id5vtMGVllHTQbihnRRgsM5C7k,1185
|
|
139
150
|
avrotize/structuretomd/README.md.jinja,sha256=UBBkspRnVI9E3RLRWPbxKSvoU9y4tKi1iqzn2iGJbDQ,4824
|
|
140
151
|
avrotize/structuretopython/dataclass_core.jinja,sha256=fUTLjlRjkH0P-1lK91o4IKGFarjk1cnyhYhqA_9d5_s,15702
|
|
141
152
|
avrotize/structuretopython/enum_core.jinja,sha256=DDE7Mw9M2hjb0x1ErY9IvwASgAkI1hzFWjKbHsTfDRs,1253
|
|
@@ -153,8 +164,8 @@ avrotize/structuretots/index.ts.jinja,sha256=-R4R_En1N4W_BEN3z3bLts9Xi4KnBTDLrYM
|
|
|
153
164
|
avrotize/structuretots/package.json.jinja,sha256=fYC2mguywpYf1-poALreCK4kH_OGWMUF6-7KWBzTprk,751
|
|
154
165
|
avrotize/structuretots/test_class.ts.jinja,sha256=GHNzFdv3V-gYnk-rAnGS74JZD_3hSdiWzp3i_pPyGsQ,1059
|
|
155
166
|
avrotize/structuretots/tsconfig.json.jinja,sha256=8Pl65JW8uOMEexxkteobo0ZEqsJBO31HegNRUrf8XGQ,515
|
|
156
|
-
avrotize-2.20.
|
|
157
|
-
avrotize-2.20.
|
|
158
|
-
avrotize-2.20.
|
|
159
|
-
avrotize-2.20.
|
|
160
|
-
avrotize-2.20.
|
|
167
|
+
avrotize-2.20.4.dist-info/entry_points.txt,sha256=m8J2TWiqbZh7SBQezc1CNrM_GVPWf01zOFcAKhzCC0U,51
|
|
168
|
+
avrotize-2.20.4.dist-info/licenses/LICENSE,sha256=xGtQGygTETTtDQJafZCUbpsed3GxO6grmqig-jGEuSk,11348
|
|
169
|
+
avrotize-2.20.4.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
170
|
+
avrotize-2.20.4.dist-info/METADATA,sha256=2Rayxcpm1QjuWe_Y08ZC6zEn1uT1n1uuTpbxXXZGDi0,80208
|
|
171
|
+
avrotize-2.20.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|