@digipair/skill-exif 0.82.2

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.
@@ -0,0 +1 @@
1
+ export * from './lib/skill-exif';
@@ -0,0 +1,2 @@
1
+ import { PinsSettings } from '@digipair/engine';
2
+ export declare const parse: (params: any, pinsSettingsList: PinsSettings[], context: any) => Promise<any>;
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "@digipair/skill-exif",
3
+ "version": "0.82.2",
4
+ "keywords": [
5
+ "digipair",
6
+ "service",
7
+ "tool"
8
+ ],
9
+ "dependencies": {
10
+ "exif-parser": "^0.1.12"
11
+ },
12
+ "main": "./index.cjs.js",
13
+ "module": "./index.esm.js"
14
+ }
package/schema.fr.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-exif",
5
+ "summary": "Extraction EXIF",
6
+ "description": "Cette compétence permet d'extraire les métadonnées EXIF des images.",
7
+ "version": "0.1.0",
8
+ "x-icon": "🖼️"
9
+ },
10
+ "paths": {
11
+ "/parse": {
12
+ "post": {
13
+ "tags": ["service"],
14
+ "summary": "Extraire",
15
+ "parameters": [
16
+ {
17
+ "name": "content",
18
+ "summary": "Contenu",
19
+ "required": true,
20
+ "description": "Contenu de l'image sous forme de chaîne encodée en base64 ou binaire",
21
+ "schema": {
22
+ "type": "string"
23
+ }
24
+ }
25
+ ],
26
+ "x-events": []
27
+ }
28
+ }
29
+ },
30
+ "components": {
31
+ "schemas": {}
32
+ },
33
+ "x-scene-blocks": {}
34
+ }
package/schema.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "@digipair/skill-exif",
5
+ "summary": "EXIF extraction",
6
+ "description": "This skill allows parsing and extracting EXIF metadata from images.",
7
+ "version": "0.1.0",
8
+ "x-icon": "🖼️"
9
+ },
10
+ "paths": {
11
+ "/parse": {
12
+ "post": {
13
+ "tags": ["service"],
14
+ "summary": "Parse",
15
+ "description": "Parses EXIF data from the provided image content.",
16
+ "parameters": [
17
+ {
18
+ "name": "content",
19
+ "summary": "Content",
20
+ "required": true,
21
+ "description": "Image content as a base64-encoded string or binary string",
22
+ "schema": {
23
+ "type": "string"
24
+ }
25
+ }
26
+ ],
27
+ "x-events": []
28
+ }
29
+ }
30
+ },
31
+ "components": {
32
+ "schemas": {}
33
+ },
34
+ "x-scene-blocks": {}
35
+ }