@foxglove/schemas 1.7.3 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/internal/generateJsonSchema.d.ts.map +1 -1
- package/dist/internal/generateJsonSchema.js +1 -0
- package/dist/internal/generateJsonSchema.js.map +1 -1
- package/dist/internal/generateJsonSchema.test.js +325 -292
- package/dist/internal/generateJsonSchema.test.js.map +1 -1
- package/dist/internal/generatePyclass.d.ts.map +1 -1
- package/dist/internal/generatePyclass.js +68 -28
- package/dist/internal/generatePyclass.js.map +1 -1
- package/dist/internal/generatePyclass.test.js +38 -31
- package/dist/internal/generatePyclass.test.js.map +1 -1
- package/dist/internal/generateSdkCpp.d.ts.map +1 -1
- package/dist/internal/generateSdkCpp.js +98 -7
- package/dist/internal/generateSdkCpp.js.map +1 -1
- package/dist/internal/generateSdkRustCTypes.d.ts.map +1 -1
- package/dist/internal/generateSdkRustCTypes.js +77 -3
- package/dist/internal/generateSdkRustCTypes.js.map +1 -1
- package/dist/internal/schemas.d.ts +3 -0
- package/dist/internal/schemas.d.ts.map +1 -1
- package/dist/internal/schemas.js +124 -11
- package/dist/internal/schemas.js.map +1 -1
- package/dist/internal/types.d.ts +0 -1
- package/dist/internal/types.d.ts.map +1 -1
- package/dist/jsonschema/index.d.ts +559 -0
- package/dist/jsonschema/index.d.ts.map +1 -1
- package/dist/jsonschema/index.js +2012 -251
- package/dist/jsonschema/index.js.map +1 -1
- package/dist/types/CameraCalibration.d.ts +2 -2
- package/dist/types/Grid.d.ts +47 -2
- package/dist/types/Grid.d.ts.map +1 -1
- package/dist/types/LinePrimitive.d.ts +2 -2
- package/dist/types/LinePrimitive.d.ts.map +1 -1
- package/dist/types/LocationFix.d.ts +3 -0
- package/dist/types/LocationFix.d.ts.map +1 -1
- package/dist/types/LocationFixes.d.ts +7 -0
- package/dist/types/LocationFixes.d.ts.map +1 -0
- package/dist/types/LocationFixes.js +5 -0
- package/dist/types/LocationFixes.js.map +1 -0
- package/dist/types/ModelPrimitive.d.ts +2 -2
- package/dist/types/ModelPrimitive.d.ts.map +1 -1
- package/dist/types/Point3InFrame.d.ts +12 -0
- package/dist/types/Point3InFrame.d.ts.map +1 -0
- package/dist/types/Point3InFrame.js +5 -0
- package/dist/types/Point3InFrame.js.map +1 -0
- package/dist/types/RawImage.d.ts +2 -2
- package/dist/types/TriangleListPrimitive.d.ts +2 -2
- package/dist/types/TriangleListPrimitive.d.ts.map +1 -1
- package/dist/types/VoxelGrid.d.ts +37 -0
- package/dist/types/VoxelGrid.d.ts.map +1 -0
- package/dist/types/VoxelGrid.js +5 -0
- package/dist/types/VoxelGrid.js.map +1 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +4 -3
|
@@ -8,298 +8,331 @@ const testFixtures_1 = require("./testFixtures");
|
|
|
8
8
|
describe("generateJsonSchema", () => {
|
|
9
9
|
it("generates expected JSON Schema", () => {
|
|
10
10
|
expect((0, generateJsonSchema_1.generateJsonSchema)(testFixtures_1.exampleMessage)).toMatchInlineSnapshot(`
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
11
|
+
{
|
|
12
|
+
"$comment": "Generated by https://github.com/foxglove/foxglove-sdk",
|
|
13
|
+
"description": "An example type",
|
|
14
|
+
"properties": {
|
|
15
|
+
"field_boolean": {
|
|
16
|
+
"description": "boolean field",
|
|
17
|
+
"type": "boolean",
|
|
18
|
+
},
|
|
19
|
+
"field_boolean_array": {
|
|
20
|
+
"description": "boolean array field",
|
|
21
|
+
"items": {
|
|
22
|
+
"type": "boolean",
|
|
23
|
+
},
|
|
24
|
+
"type": "array",
|
|
25
|
+
},
|
|
26
|
+
"field_boolean_fixed_array": {
|
|
27
|
+
"description": "boolean fixed-length array field",
|
|
28
|
+
"items": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
},
|
|
31
|
+
"maxItems": 3,
|
|
32
|
+
"minItems": 3,
|
|
33
|
+
"type": "array",
|
|
34
|
+
},
|
|
35
|
+
"field_bytes": {
|
|
36
|
+
"contentEncoding": "base64",
|
|
37
|
+
"description": "bytes field",
|
|
38
|
+
"type": "string",
|
|
39
|
+
},
|
|
40
|
+
"field_bytes_array": {
|
|
41
|
+
"description": "bytes array field",
|
|
42
|
+
"items": {
|
|
43
|
+
"contentEncoding": "base64",
|
|
44
|
+
"type": "string",
|
|
45
|
+
},
|
|
46
|
+
"type": "array",
|
|
47
|
+
},
|
|
48
|
+
"field_bytes_fixed_array": {
|
|
49
|
+
"description": "bytes fixed-length array field",
|
|
50
|
+
"items": {
|
|
51
|
+
"contentEncoding": "base64",
|
|
52
|
+
"type": "string",
|
|
53
|
+
},
|
|
54
|
+
"maxItems": 3,
|
|
55
|
+
"minItems": 3,
|
|
56
|
+
"type": "array",
|
|
57
|
+
},
|
|
58
|
+
"field_duration": {
|
|
59
|
+
"description": "duration field",
|
|
60
|
+
"properties": {
|
|
61
|
+
"nsec": {
|
|
62
|
+
"maximum": 999999999,
|
|
63
|
+
"minimum": 0,
|
|
64
|
+
"type": "integer",
|
|
65
|
+
},
|
|
66
|
+
"sec": {
|
|
67
|
+
"type": "integer",
|
|
68
|
+
},
|
|
69
|
+
},
|
|
70
|
+
"title": "duration",
|
|
71
|
+
"type": "object",
|
|
72
|
+
},
|
|
73
|
+
"field_duration_array": {
|
|
74
|
+
"description": "duration array field",
|
|
75
|
+
"items": {
|
|
76
|
+
"properties": {
|
|
77
|
+
"nsec": {
|
|
78
|
+
"maximum": 999999999,
|
|
79
|
+
"minimum": 0,
|
|
80
|
+
"type": "integer",
|
|
81
|
+
},
|
|
82
|
+
"sec": {
|
|
83
|
+
"type": "integer",
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
"title": "duration",
|
|
87
|
+
"type": "object",
|
|
88
|
+
},
|
|
89
|
+
"type": "array",
|
|
90
|
+
},
|
|
91
|
+
"field_duration_fixed_array": {
|
|
92
|
+
"description": "duration fixed-length array field",
|
|
93
|
+
"items": {
|
|
94
|
+
"properties": {
|
|
95
|
+
"nsec": {
|
|
96
|
+
"maximum": 999999999,
|
|
97
|
+
"minimum": 0,
|
|
98
|
+
"type": "integer",
|
|
99
|
+
},
|
|
100
|
+
"sec": {
|
|
101
|
+
"type": "integer",
|
|
102
|
+
},
|
|
103
|
+
},
|
|
104
|
+
"title": "duration",
|
|
105
|
+
"type": "object",
|
|
106
|
+
},
|
|
107
|
+
"maxItems": 3,
|
|
108
|
+
"minItems": 3,
|
|
109
|
+
"type": "array",
|
|
110
|
+
},
|
|
111
|
+
"field_enum": {
|
|
112
|
+
"description": "An enum field",
|
|
113
|
+
"oneOf": [
|
|
114
|
+
{
|
|
115
|
+
"const": 0,
|
|
116
|
+
"description": "Value A",
|
|
117
|
+
"title": "A",
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"const": 1,
|
|
121
|
+
"description": "Value B",
|
|
122
|
+
"title": "B",
|
|
123
|
+
},
|
|
124
|
+
],
|
|
125
|
+
"title": "foxglove.ExampleEnum",
|
|
126
|
+
},
|
|
127
|
+
"field_enum_array": {
|
|
128
|
+
"description": "An enum array field",
|
|
129
|
+
"items": {
|
|
130
|
+
"description": "An enum array field",
|
|
131
|
+
"oneOf": [
|
|
132
|
+
{
|
|
133
|
+
"const": 0,
|
|
134
|
+
"description": "Value A",
|
|
135
|
+
"title": "A",
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"const": 1,
|
|
139
|
+
"description": "Value B",
|
|
140
|
+
"title": "B",
|
|
141
|
+
},
|
|
142
|
+
],
|
|
143
|
+
"title": "foxglove.ExampleEnum",
|
|
144
|
+
},
|
|
145
|
+
"type": "array",
|
|
146
|
+
},
|
|
147
|
+
"field_float64": {
|
|
148
|
+
"description": "float64 field",
|
|
149
|
+
"type": "number",
|
|
150
|
+
},
|
|
151
|
+
"field_float64_array": {
|
|
152
|
+
"description": "float64 array field",
|
|
153
|
+
"items": {
|
|
154
|
+
"type": "number",
|
|
155
|
+
},
|
|
156
|
+
"type": "array",
|
|
157
|
+
},
|
|
158
|
+
"field_float64_fixed_array": {
|
|
159
|
+
"description": "float64 fixed-length array field",
|
|
160
|
+
"items": {
|
|
161
|
+
"type": "number",
|
|
162
|
+
},
|
|
163
|
+
"maxItems": 3,
|
|
164
|
+
"minItems": 3,
|
|
165
|
+
"type": "array",
|
|
166
|
+
},
|
|
167
|
+
"field_nested": {
|
|
168
|
+
"description": "A nested field",
|
|
169
|
+
"properties": {
|
|
170
|
+
"field_enum": {
|
|
171
|
+
"description": "An enum field",
|
|
172
|
+
"minimum": 0,
|
|
173
|
+
"type": "integer",
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
"required": [
|
|
177
|
+
"field_enum",
|
|
178
|
+
],
|
|
179
|
+
"title": "foxglove.NestedMessage",
|
|
180
|
+
"type": "object",
|
|
181
|
+
},
|
|
182
|
+
"field_nested_array": {
|
|
183
|
+
"description": "A nested array field
|
|
184
|
+
With
|
|
185
|
+
a
|
|
186
|
+
very
|
|
187
|
+
long
|
|
188
|
+
description",
|
|
189
|
+
"items": {
|
|
190
|
+
"description": "An example nested message",
|
|
191
|
+
"properties": {
|
|
192
|
+
"field_enum": {
|
|
193
|
+
"description": "An enum field",
|
|
194
|
+
"minimum": 0,
|
|
195
|
+
"type": "integer",
|
|
196
|
+
},
|
|
197
|
+
},
|
|
198
|
+
"required": [
|
|
199
|
+
"field_enum",
|
|
200
|
+
],
|
|
201
|
+
"title": "foxglove.NestedMessage",
|
|
202
|
+
"type": "object",
|
|
203
|
+
},
|
|
204
|
+
"type": "array",
|
|
205
|
+
},
|
|
206
|
+
"field_string": {
|
|
207
|
+
"description": "string field",
|
|
208
|
+
"type": "string",
|
|
209
|
+
},
|
|
210
|
+
"field_string_array": {
|
|
211
|
+
"description": "string array field",
|
|
212
|
+
"items": {
|
|
213
|
+
"type": "string",
|
|
214
|
+
},
|
|
215
|
+
"type": "array",
|
|
216
|
+
},
|
|
217
|
+
"field_string_fixed_array": {
|
|
218
|
+
"description": "string fixed-length array field",
|
|
219
|
+
"items": {
|
|
220
|
+
"type": "string",
|
|
221
|
+
},
|
|
222
|
+
"maxItems": 3,
|
|
223
|
+
"minItems": 3,
|
|
224
|
+
"type": "array",
|
|
225
|
+
},
|
|
226
|
+
"field_time": {
|
|
227
|
+
"description": "time field",
|
|
228
|
+
"properties": {
|
|
229
|
+
"nsec": {
|
|
230
|
+
"maximum": 999999999,
|
|
231
|
+
"minimum": 0,
|
|
232
|
+
"type": "integer",
|
|
233
|
+
},
|
|
234
|
+
"sec": {
|
|
235
|
+
"minimum": 0,
|
|
236
|
+
"type": "integer",
|
|
237
|
+
},
|
|
238
|
+
},
|
|
239
|
+
"title": "time",
|
|
240
|
+
"type": "object",
|
|
241
|
+
},
|
|
242
|
+
"field_time_array": {
|
|
243
|
+
"description": "time array field",
|
|
244
|
+
"items": {
|
|
245
|
+
"properties": {
|
|
246
|
+
"nsec": {
|
|
247
|
+
"maximum": 999999999,
|
|
248
|
+
"minimum": 0,
|
|
249
|
+
"type": "integer",
|
|
250
|
+
},
|
|
251
|
+
"sec": {
|
|
252
|
+
"minimum": 0,
|
|
253
|
+
"type": "integer",
|
|
254
|
+
},
|
|
255
|
+
},
|
|
256
|
+
"title": "time",
|
|
257
|
+
"type": "object",
|
|
258
|
+
},
|
|
259
|
+
"type": "array",
|
|
260
|
+
},
|
|
261
|
+
"field_time_fixed_array": {
|
|
262
|
+
"description": "time fixed-length array field",
|
|
263
|
+
"items": {
|
|
264
|
+
"properties": {
|
|
265
|
+
"nsec": {
|
|
266
|
+
"maximum": 999999999,
|
|
267
|
+
"minimum": 0,
|
|
268
|
+
"type": "integer",
|
|
269
|
+
},
|
|
270
|
+
"sec": {
|
|
271
|
+
"minimum": 0,
|
|
272
|
+
"type": "integer",
|
|
273
|
+
},
|
|
274
|
+
},
|
|
275
|
+
"title": "time",
|
|
276
|
+
"type": "object",
|
|
277
|
+
},
|
|
278
|
+
"maxItems": 3,
|
|
279
|
+
"minItems": 3,
|
|
280
|
+
"type": "array",
|
|
281
|
+
},
|
|
282
|
+
"field_uint32": {
|
|
283
|
+
"description": "uint32 field",
|
|
284
|
+
"minimum": 0,
|
|
285
|
+
"type": "integer",
|
|
286
|
+
},
|
|
287
|
+
"field_uint32_array": {
|
|
288
|
+
"description": "uint32 array field",
|
|
289
|
+
"items": {
|
|
290
|
+
"minimum": 0,
|
|
291
|
+
"type": "integer",
|
|
292
|
+
},
|
|
293
|
+
"type": "array",
|
|
294
|
+
},
|
|
295
|
+
"field_uint32_fixed_array": {
|
|
296
|
+
"description": "uint32 fixed-length array field",
|
|
297
|
+
"items": {
|
|
298
|
+
"minimum": 0,
|
|
299
|
+
"type": "integer",
|
|
300
|
+
},
|
|
301
|
+
"maxItems": 3,
|
|
302
|
+
"minItems": 3,
|
|
303
|
+
"type": "array",
|
|
304
|
+
},
|
|
305
|
+
},
|
|
306
|
+
"required": [
|
|
307
|
+
"field_duration",
|
|
308
|
+
"field_time",
|
|
309
|
+
"field_boolean",
|
|
310
|
+
"field_bytes",
|
|
311
|
+
"field_float64",
|
|
312
|
+
"field_uint32",
|
|
313
|
+
"field_string",
|
|
314
|
+
"field_duration_array",
|
|
315
|
+
"field_time_array",
|
|
316
|
+
"field_boolean_array",
|
|
317
|
+
"field_bytes_array",
|
|
318
|
+
"field_float64_array",
|
|
319
|
+
"field_uint32_array",
|
|
320
|
+
"field_string_array",
|
|
321
|
+
"field_duration_fixed_array",
|
|
322
|
+
"field_time_fixed_array",
|
|
323
|
+
"field_boolean_fixed_array",
|
|
324
|
+
"field_bytes_fixed_array",
|
|
325
|
+
"field_float64_fixed_array",
|
|
326
|
+
"field_uint32_fixed_array",
|
|
327
|
+
"field_string_fixed_array",
|
|
328
|
+
"field_enum",
|
|
329
|
+
"field_enum_array",
|
|
330
|
+
"field_nested",
|
|
331
|
+
"field_nested_array",
|
|
332
|
+
],
|
|
333
|
+
"title": "foxglove.ExampleMessage",
|
|
334
|
+
"type": "object",
|
|
335
|
+
}
|
|
303
336
|
`);
|
|
304
337
|
});
|
|
305
338
|
it.each(Object.values(schemas_1.foxgloveMessageSchemas))("generates parseable JSON Schema for $name", (schema) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generateJsonSchema.test.js","sourceRoot":"","sources":["../../src/internal/generateJsonSchema.test.ts"],"names":[],"mappings":";;;AAAA,sDAAsB;AAEtB,6DAA0D;AAC1D,uCAAmD;AACnD,iDAAgD;AAEhD,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAClC,EAAE,CAAC,gCAAgC,EAAE,GAAG,EAAE;QACxC,MAAM,CAAC,IAAA,uCAAkB,EAAC,6BAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC
|
|
1
|
+
{"version":3,"file":"generateJsonSchema.test.js","sourceRoot":"","sources":["../../src/internal/generateJsonSchema.test.ts"],"names":[],"mappings":";;;AAAA,sDAAsB;AAEtB,6DAA0D;AAC1D,uCAAmD;AACnD,iDAAgD;AAEhD,QAAQ,CAAC,oBAAoB,EAAE,GAAG,EAAE;IAClC,EAAE,CAAC,gCAAgC,EAAE,GAAG,EAAE;QACxC,MAAM,CAAC,IAAA,uCAAkB,EAAC,6BAAc,CAAC,CAAC,CAAC,qBAAqB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAsUhE,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,gCAAsB,CAAC,CAAC,CAC5C,2CAA2C,EAC3C,CAAC,MAAM,EAAE,EAAE;QACT,MAAM,GAAG,GAAG,IAAI,aAAG,EAAE,CAAC;QACtB,MAAM,CAAC,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,IAAA,uCAAkB,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,OAAO,EAAE,CAAC;IACtE,CAAC,CACF,CAAC;AACJ,CAAC,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"generatePyclass.d.ts","sourceRoot":"","sources":["../../src/internal/generatePyclass.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,qBAAqB,EAErB,cAAc,EACf,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,CAwB9C;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CAK9D;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,cAAc,EAAE,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"generatePyclass.d.ts","sourceRoot":"","sources":["../../src/internal/generatePyclass.ts"],"names":[],"mappings":"AAAA,OAAO,EAGL,qBAAqB,EAErB,cAAc,EACf,MAAM,SAAS,CAAC;AAEjB;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,MAAM,CAwB9C;AAED;;GAEG;AACH,wBAAgB,eAAe,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,CAK9D;AAED;;GAEG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,cAAc,EAAE,GAAG,MAAM,CA+EtE;AAED;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,OAAO,EAAE,cAAc,EAAE,GAAG,MAAM,CA6BxE;AAiZD;;;GAGG;AACH,wBAAgB,gCAAgC,CAAC,OAAO,EAAE,cAAc,EAAE,GAAG,MAAM,CAiBlF;AA6CD;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,cAAc,EAAE,qBAAqB,EAAE,GAAG,MAAM,CAmItF;AAED;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,cAAc,EAAE,qBAAqB,EAAE,GAAG,MAAM,CAqFrF;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,OAAO,EAAE,qBAAqB,EAAE,GAAG,MAAM,CAiBhF"}
|