@foxglove/schemas 1.2.0 → 1.3.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.
Files changed (35) hide show
  1. package/internal/schemas.d.ts +1 -0
  2. package/internal/schemas.d.ts.map +1 -1
  3. package/internal/schemas.js +45 -0
  4. package/internal/schemas.js.map +1 -1
  5. package/internal/schemas.ts +46 -0
  6. package/package.json +1 -1
  7. package/schemas/README.md +104 -0
  8. package/schemas/flatbuffer/ImageAnnotations.fbs +4 -0
  9. package/schemas/flatbuffer/TextAnnotation.fbs +30 -0
  10. package/schemas/jsonschema/ImageAnnotations.json +96 -0
  11. package/schemas/jsonschema/TextAnnotation.json +93 -0
  12. package/schemas/jsonschema/index.d.ts +189 -0
  13. package/schemas/jsonschema/index.d.ts.map +1 -1
  14. package/schemas/jsonschema/index.js +190 -1
  15. package/schemas/jsonschema/index.js.map +1 -1
  16. package/schemas/jsonschema/index.ts +190 -0
  17. package/schemas/proto/foxglove/ImageAnnotations.proto +4 -0
  18. package/schemas/proto/foxglove/TextAnnotation.proto +30 -0
  19. package/schemas/ros1/ImageAnnotations.msg +3 -0
  20. package/schemas/ros1/TextAnnotation.msg +22 -0
  21. package/schemas/ros2/ImageAnnotations.msg +3 -0
  22. package/schemas/ros2/TextAnnotation.msg +22 -0
  23. package/schemas/typescript/ImageAnnotations.d.ts +3 -0
  24. package/schemas/typescript/ImageAnnotations.d.ts.map +1 -1
  25. package/schemas/typescript/ImageAnnotations.ts +4 -0
  26. package/schemas/typescript/TextAnnotation.d.ts +19 -0
  27. package/schemas/typescript/TextAnnotation.d.ts.map +1 -0
  28. package/schemas/typescript/TextAnnotation.js +4 -0
  29. package/schemas/typescript/TextAnnotation.js.map +1 -0
  30. package/schemas/typescript/TextAnnotation.ts +26 -0
  31. package/schemas/typescript/index.d.ts +1 -0
  32. package/schemas/typescript/index.d.ts.map +1 -1
  33. package/schemas/typescript/index.js +1 -0
  34. package/schemas/typescript/index.js.map +1 -1
  35. package/schemas/typescript/index.ts +1 -0
@@ -1079,6 +1079,102 @@ export declare const ImageAnnotations: {
1079
1079
  };
1080
1080
  description: string;
1081
1081
  };
1082
+ texts: {
1083
+ type: string;
1084
+ items: {
1085
+ title: string;
1086
+ description: string;
1087
+ type: string;
1088
+ properties: {
1089
+ timestamp: {
1090
+ type: string;
1091
+ title: string;
1092
+ properties: {
1093
+ sec: {
1094
+ type: string;
1095
+ minimum: number;
1096
+ };
1097
+ nsec: {
1098
+ type: string;
1099
+ minimum: number;
1100
+ maximum: number;
1101
+ };
1102
+ };
1103
+ description: string;
1104
+ };
1105
+ position: {
1106
+ title: string;
1107
+ description: string;
1108
+ type: string;
1109
+ properties: {
1110
+ x: {
1111
+ type: string;
1112
+ description: string;
1113
+ };
1114
+ y: {
1115
+ type: string;
1116
+ description: string;
1117
+ };
1118
+ };
1119
+ };
1120
+ text: {
1121
+ type: string;
1122
+ description: string;
1123
+ };
1124
+ font_size: {
1125
+ type: string;
1126
+ description: string;
1127
+ };
1128
+ text_color: {
1129
+ title: string;
1130
+ description: string;
1131
+ type: string;
1132
+ properties: {
1133
+ r: {
1134
+ type: string;
1135
+ description: string;
1136
+ };
1137
+ g: {
1138
+ type: string;
1139
+ description: string;
1140
+ };
1141
+ b: {
1142
+ type: string;
1143
+ description: string;
1144
+ };
1145
+ a: {
1146
+ type: string;
1147
+ description: string;
1148
+ };
1149
+ };
1150
+ };
1151
+ background_color: {
1152
+ title: string;
1153
+ description: string;
1154
+ type: string;
1155
+ properties: {
1156
+ r: {
1157
+ type: string;
1158
+ description: string;
1159
+ };
1160
+ g: {
1161
+ type: string;
1162
+ description: string;
1163
+ };
1164
+ b: {
1165
+ type: string;
1166
+ description: string;
1167
+ };
1168
+ a: {
1169
+ type: string;
1170
+ description: string;
1171
+ };
1172
+ };
1173
+ };
1174
+ };
1175
+ };
1176
+ description: string;
1177
+ };
1082
1178
  };
1083
1179
  };
1084
1180
  export declare const KeyValuePair: {
@@ -4333,6 +4429,99 @@ export declare const SpherePrimitive: {
4333
4429
  };
4334
4430
  };
4335
4431
  };
4432
+ export declare const TextAnnotation: {
4433
+ title: string;
4434
+ description: string;
4435
+ $comment: string;
4436
+ type: string;
4437
+ properties: {
4438
+ timestamp: {
4439
+ type: string;
4440
+ title: string;
4441
+ properties: {
4442
+ sec: {
4443
+ type: string;
4444
+ minimum: number;
4445
+ };
4446
+ nsec: {
4447
+ type: string;
4448
+ minimum: number;
4449
+ maximum: number;
4450
+ };
4451
+ };
4452
+ description: string;
4453
+ };
4454
+ position: {
4455
+ title: string;
4456
+ description: string;
4457
+ type: string;
4458
+ properties: {
4459
+ x: {
4460
+ type: string;
4461
+ description: string;
4462
+ };
4463
+ y: {
4464
+ type: string;
4465
+ description: string;
4466
+ };
4467
+ };
4468
+ };
4469
+ text: {
4470
+ type: string;
4471
+ description: string;
4472
+ };
4473
+ font_size: {
4474
+ type: string;
4475
+ description: string;
4476
+ };
4477
+ text_color: {
4478
+ title: string;
4479
+ description: string;
4480
+ type: string;
4481
+ properties: {
4482
+ r: {
4483
+ type: string;
4484
+ description: string;
4485
+ };
4486
+ g: {
4487
+ type: string;
4488
+ description: string;
4489
+ };
4490
+ b: {
4491
+ type: string;
4492
+ description: string;
4493
+ };
4494
+ a: {
4495
+ type: string;
4496
+ description: string;
4497
+ };
4498
+ };
4499
+ };
4500
+ background_color: {
4501
+ title: string;
4502
+ description: string;
4503
+ type: string;
4504
+ properties: {
4505
+ r: {
4506
+ type: string;
4507
+ description: string;
4508
+ };
4509
+ g: {
4510
+ type: string;
4511
+ description: string;
4512
+ };
4513
+ b: {
4514
+ type: string;
4515
+ description: string;
4516
+ };
4517
+ a: {
4518
+ type: string;
4519
+ description: string;
4520
+ };
4521
+ };
4522
+ };
4523
+ };
4524
+ };
4336
4525
  export declare const TextPrimitive: {
4337
4526
  title: string;
4338
4527
  description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm/BvB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm/BvB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  // Generated by https://github.com/foxglove/schemas
3
3
  Object.defineProperty(exports, "__esModule", { value: true });
4
- exports.Vector3 = exports.Vector2 = exports.TriangleListPrimitive = exports.TextPrimitive = exports.SpherePrimitive = exports.RawImage = exports.Quaternion = exports.PosesInFrame = exports.PoseInFrame = exports.Pose = exports.PointsAnnotation = exports.PointCloud = exports.Point3 = exports.Point2 = exports.PackedElementField = exports.ModelPrimitive = exports.SceneUpdate = exports.SceneEntity = exports.SceneEntityDeletion = exports.Log = exports.LocationFix = exports.LinePrimitive = exports.LaserScan = exports.KeyValuePair = exports.ImageAnnotations = exports.Grid = exports.GeoJSON = exports.FrameTransforms = exports.FrameTransform = exports.CubePrimitive = exports.CylinderPrimitive = exports.CompressedImage = exports.Color = exports.CircleAnnotation = exports.CameraCalibration = exports.ArrowPrimitive = void 0;
4
+ exports.Vector3 = exports.Vector2 = exports.TriangleListPrimitive = exports.TextPrimitive = exports.TextAnnotation = exports.SpherePrimitive = exports.RawImage = exports.Quaternion = exports.PosesInFrame = exports.PoseInFrame = exports.Pose = exports.PointsAnnotation = exports.PointCloud = exports.Point3 = exports.Point2 = exports.PackedElementField = exports.ModelPrimitive = exports.SceneUpdate = exports.SceneEntity = exports.SceneEntityDeletion = exports.Log = exports.LocationFix = exports.LinePrimitive = exports.LaserScan = exports.KeyValuePair = exports.ImageAnnotations = exports.Grid = exports.GeoJSON = exports.FrameTransforms = exports.FrameTransform = exports.CubePrimitive = exports.CylinderPrimitive = exports.CompressedImage = exports.Color = exports.CircleAnnotation = exports.CameraCalibration = exports.ArrowPrimitive = void 0;
5
5
  exports.ArrowPrimitive = {
6
6
  "title": "foxglove.ArrowPrimitive",
7
7
  "description": "A primitive representing an arrow",
@@ -1133,6 +1133,102 @@ exports.ImageAnnotations = {
1133
1133
  }
1134
1134
  },
1135
1135
  "description": "Points annotations"
1136
+ },
1137
+ "texts": {
1138
+ "type": "array",
1139
+ "items": {
1140
+ "title": "foxglove.TextAnnotation",
1141
+ "description": "A text label on a 2D image",
1142
+ "type": "object",
1143
+ "properties": {
1144
+ "timestamp": {
1145
+ "type": "object",
1146
+ "title": "time",
1147
+ "properties": {
1148
+ "sec": {
1149
+ "type": "integer",
1150
+ "minimum": 0
1151
+ },
1152
+ "nsec": {
1153
+ "type": "integer",
1154
+ "minimum": 0,
1155
+ "maximum": 999999999
1156
+ }
1157
+ },
1158
+ "description": "Timestamp of annotation"
1159
+ },
1160
+ "position": {
1161
+ "title": "foxglove.Point2",
1162
+ "description": "Bottom-left origin of the text label in 2D image coordinates (pixels)",
1163
+ "type": "object",
1164
+ "properties": {
1165
+ "x": {
1166
+ "type": "number",
1167
+ "description": "x coordinate position"
1168
+ },
1169
+ "y": {
1170
+ "type": "number",
1171
+ "description": "y coordinate position"
1172
+ }
1173
+ }
1174
+ },
1175
+ "text": {
1176
+ "type": "string",
1177
+ "description": "Text to display"
1178
+ },
1179
+ "font_size": {
1180
+ "type": "number",
1181
+ "description": "Font size in pixels"
1182
+ },
1183
+ "text_color": {
1184
+ "title": "foxglove.Color",
1185
+ "description": "Text color",
1186
+ "type": "object",
1187
+ "properties": {
1188
+ "r": {
1189
+ "type": "number",
1190
+ "description": "Red value between 0 and 1"
1191
+ },
1192
+ "g": {
1193
+ "type": "number",
1194
+ "description": "Green value between 0 and 1"
1195
+ },
1196
+ "b": {
1197
+ "type": "number",
1198
+ "description": "Blue value between 0 and 1"
1199
+ },
1200
+ "a": {
1201
+ "type": "number",
1202
+ "description": "Alpha value between 0 and 1"
1203
+ }
1204
+ }
1205
+ },
1206
+ "background_color": {
1207
+ "title": "foxglove.Color",
1208
+ "description": "Background fill color",
1209
+ "type": "object",
1210
+ "properties": {
1211
+ "r": {
1212
+ "type": "number",
1213
+ "description": "Red value between 0 and 1"
1214
+ },
1215
+ "g": {
1216
+ "type": "number",
1217
+ "description": "Green value between 0 and 1"
1218
+ },
1219
+ "b": {
1220
+ "type": "number",
1221
+ "description": "Blue value between 0 and 1"
1222
+ },
1223
+ "a": {
1224
+ "type": "number",
1225
+ "description": "Alpha value between 0 and 1"
1226
+ }
1227
+ }
1228
+ }
1229
+ }
1230
+ },
1231
+ "description": "Text annotations"
1136
1232
  }
1137
1233
  }
1138
1234
  };
@@ -4559,6 +4655,99 @@ exports.SpherePrimitive = {
4559
4655
  }
4560
4656
  }
4561
4657
  };
4658
+ exports.TextAnnotation = {
4659
+ "title": "foxglove.TextAnnotation",
4660
+ "description": "A text label on a 2D image",
4661
+ "$comment": "Generated by https://github.com/foxglove/schemas",
4662
+ "type": "object",
4663
+ "properties": {
4664
+ "timestamp": {
4665
+ "type": "object",
4666
+ "title": "time",
4667
+ "properties": {
4668
+ "sec": {
4669
+ "type": "integer",
4670
+ "minimum": 0
4671
+ },
4672
+ "nsec": {
4673
+ "type": "integer",
4674
+ "minimum": 0,
4675
+ "maximum": 999999999
4676
+ }
4677
+ },
4678
+ "description": "Timestamp of annotation"
4679
+ },
4680
+ "position": {
4681
+ "title": "foxglove.Point2",
4682
+ "description": "Bottom-left origin of the text label in 2D image coordinates (pixels)",
4683
+ "type": "object",
4684
+ "properties": {
4685
+ "x": {
4686
+ "type": "number",
4687
+ "description": "x coordinate position"
4688
+ },
4689
+ "y": {
4690
+ "type": "number",
4691
+ "description": "y coordinate position"
4692
+ }
4693
+ }
4694
+ },
4695
+ "text": {
4696
+ "type": "string",
4697
+ "description": "Text to display"
4698
+ },
4699
+ "font_size": {
4700
+ "type": "number",
4701
+ "description": "Font size in pixels"
4702
+ },
4703
+ "text_color": {
4704
+ "title": "foxglove.Color",
4705
+ "description": "Text color",
4706
+ "type": "object",
4707
+ "properties": {
4708
+ "r": {
4709
+ "type": "number",
4710
+ "description": "Red value between 0 and 1"
4711
+ },
4712
+ "g": {
4713
+ "type": "number",
4714
+ "description": "Green value between 0 and 1"
4715
+ },
4716
+ "b": {
4717
+ "type": "number",
4718
+ "description": "Blue value between 0 and 1"
4719
+ },
4720
+ "a": {
4721
+ "type": "number",
4722
+ "description": "Alpha value between 0 and 1"
4723
+ }
4724
+ }
4725
+ },
4726
+ "background_color": {
4727
+ "title": "foxglove.Color",
4728
+ "description": "Background fill color",
4729
+ "type": "object",
4730
+ "properties": {
4731
+ "r": {
4732
+ "type": "number",
4733
+ "description": "Red value between 0 and 1"
4734
+ },
4735
+ "g": {
4736
+ "type": "number",
4737
+ "description": "Green value between 0 and 1"
4738
+ },
4739
+ "b": {
4740
+ "type": "number",
4741
+ "description": "Blue value between 0 and 1"
4742
+ },
4743
+ "a": {
4744
+ "type": "number",
4745
+ "description": "Alpha value between 0 and 1"
4746
+ }
4747
+ }
4748
+ }
4749
+ }
4750
+ };
4562
4751
  exports.TextPrimitive = {
4563
4752
  "title": "foxglove.TextPrimitive",
4564
4753
  "description": "A primitive representing a text label",