linkedin-resume 0.2.0 → 0.3.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "linkedin-resume",
3
3
  "description": "A CLI tool to generate a LinkedIn resume in PDF format.",
4
- "version": "0.2.0",
4
+ "version": "0.3.2",
5
5
  "packageManager": "yarn@4.3.1",
6
6
  "type": "module",
7
7
  "main": "dist/cli.mjs",
@@ -27,13 +27,6 @@
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "dependencies": {
31
- "@sinclair/typebox": "^0.34.37",
32
- "commander": "^14.0.0",
33
- "fs-extra": "^11.3.0",
34
- "puppeteer": "^24.37.3",
35
- "upath": "^2.0.1"
36
- },
37
30
  "repository": {
38
31
  "type": "git",
39
32
  "url": "https://github.com/bemoje/mono.git",
@@ -134,6 +134,24 @@
134
134
  "type": "string"
135
135
  }
136
136
  },
137
+ "mediaLinks": {
138
+ "description": "Attached media items (images, documents, links) from the LinkedIn entry.",
139
+ "type": "array",
140
+ "items": {
141
+ "type": "object",
142
+ "properties": {
143
+ "title": {
144
+ "description": "Display text for the link.",
145
+ "type": "string"
146
+ },
147
+ "url": {
148
+ "description": "Full URL of the linked resource.",
149
+ "type": "string"
150
+ }
151
+ },
152
+ "required": ["title", "url"]
153
+ }
154
+ },
137
155
  "logoUrl": {
138
156
  "description": "URL to the company logo image (typically a LinkedIn company logo). Falls back to a placeholder initial if empty.",
139
157
  "type": "string"
@@ -186,6 +204,24 @@
186
204
  "type": "string"
187
205
  }
188
206
  },
207
+ "mediaLinks": {
208
+ "description": "Attached media items (images, documents, links) from the LinkedIn entry.",
209
+ "type": "array",
210
+ "items": {
211
+ "type": "object",
212
+ "properties": {
213
+ "title": {
214
+ "description": "Display text for the link.",
215
+ "type": "string"
216
+ },
217
+ "url": {
218
+ "description": "Full URL of the linked resource.",
219
+ "type": "string"
220
+ }
221
+ },
222
+ "required": ["title", "url"]
223
+ }
224
+ },
189
225
  "logoUrl": {
190
226
  "description": "URL to the institution's logo image. Falls back to a placeholder initial if empty.",
191
227
  "type": "string"