@digipair/skill-exif 0.96.0 → 0.97.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-exif",
3
- "version": "0.96.0",
3
+ "version": "0.97.0",
4
4
  "keywords": [
5
5
  "digipair",
6
6
  "service",
package/schema.fr.json CHANGED
@@ -23,7 +23,56 @@
23
23
  }
24
24
  }
25
25
  ],
26
- "x-events": []
26
+ "x-events": [],
27
+ "responses": {
28
+ "200": {
29
+ "description": "Métadonnées EXIF extraites avec succès",
30
+ "content": {
31
+ "application/json": {
32
+ "schema": {
33
+ "type": "object",
34
+ "properties": {
35
+ "tags": {
36
+ "type": "object",
37
+ "description": "Tags EXIF contenant les paramètres de l'appareil photo, date/heure, coordonnées GPS, etc.",
38
+ "additionalProperties": true
39
+ },
40
+ "imageSize": {
41
+ "type": "object",
42
+ "description": "Dimensions de l'image",
43
+ "properties": {
44
+ "width": {
45
+ "type": "number",
46
+ "description": "Largeur de l'image en pixels"
47
+ },
48
+ "height": {
49
+ "type": "number",
50
+ "description": "Hauteur de l'image en pixels"
51
+ }
52
+ }
53
+ },
54
+ "thumbnailOffset": {
55
+ "type": "number",
56
+ "description": "Offset des données de miniature en octets"
57
+ },
58
+ "thumbnailLength": {
59
+ "type": "number",
60
+ "description": "Taille des données de miniature en octets"
61
+ },
62
+ "thumbnailType": {
63
+ "type": "number",
64
+ "description": "Type d'image de la miniature"
65
+ },
66
+ "app1Offset": {
67
+ "type": "number",
68
+ "description": "Offset du segment APP1"
69
+ }
70
+ }
71
+ }
72
+ }
73
+ }
74
+ }
75
+ }
27
76
  }
28
77
  }
29
78
  },
package/schema.json CHANGED
@@ -24,7 +24,56 @@
24
24
  }
25
25
  }
26
26
  ],
27
- "x-events": []
27
+ "x-events": [],
28
+ "responses": {
29
+ "200": {
30
+ "description": "EXIF metadata successfully parsed",
31
+ "content": {
32
+ "application/json": {
33
+ "schema": {
34
+ "type": "object",
35
+ "properties": {
36
+ "tags": {
37
+ "type": "object",
38
+ "description": "EXIF tags containing camera settings, date/time, GPS coordinates, etc.",
39
+ "additionalProperties": true
40
+ },
41
+ "imageSize": {
42
+ "type": "object",
43
+ "description": "Image dimensions",
44
+ "properties": {
45
+ "width": {
46
+ "type": "number",
47
+ "description": "Image width in pixels"
48
+ },
49
+ "height": {
50
+ "type": "number",
51
+ "description": "Image height in pixels"
52
+ }
53
+ }
54
+ },
55
+ "thumbnailOffset": {
56
+ "type": "number",
57
+ "description": "Offset to thumbnail data in bytes"
58
+ },
59
+ "thumbnailLength": {
60
+ "type": "number",
61
+ "description": "Length of thumbnail data in bytes"
62
+ },
63
+ "thumbnailType": {
64
+ "type": "number",
65
+ "description": "Thumbnail image type"
66
+ },
67
+ "app1Offset": {
68
+ "type": "number",
69
+ "description": "Offset to APP1 segment"
70
+ }
71
+ }
72
+ }
73
+ }
74
+ }
75
+ }
76
+ }
28
77
  }
29
78
  }
30
79
  },