@proveanything/smartlinks 1.13.0 → 1.13.1
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/README.md +1 -1
- package/dist/docs/API_SUMMARY.md +3 -3
- package/dist/docs/assets.md +1 -1
- package/dist/openapi.yaml +3 -3
- package/dist/types/asset.d.ts +2 -2
- package/docs/API_SUMMARY.md +3 -3
- package/docs/assets.md +1 -1
- package/openapi.yaml +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/docs/API_SUMMARY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smartlinks API Summary
|
|
2
2
|
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.1 | Generated: 2026-05-07T10:59:17.642Z
|
|
4
4
|
|
|
5
5
|
This is a concise summary of all available API functions and types.
|
|
6
6
|
|
|
@@ -2291,7 +2291,7 @@ interface Asset {
|
|
|
2291
2291
|
site: string
|
|
2292
2292
|
productId: string | null
|
|
2293
2293
|
proofId: string | null
|
|
2294
|
-
|
|
2294
|
+
appId: string | null
|
|
2295
2295
|
url: string
|
|
2296
2296
|
* CDN URL of the WebP thumbnail (max 512px longest edge, no crop).
|
|
2297
2297
|
* Always .webp — null until thumbnail generation has run.
|
|
@@ -2427,7 +2427,7 @@ interface UpdateAssetOptions {
|
|
|
2427
2427
|
collectionId: string
|
|
2428
2428
|
assetId: string
|
|
2429
2429
|
name?: string
|
|
2430
|
-
|
|
2430
|
+
appId?: string
|
|
2431
2431
|
labels?: string[]
|
|
2432
2432
|
metadata?: Record<string, any>
|
|
2433
2433
|
thumbnail?: string
|
package/dist/docs/assets.md
CHANGED
|
@@ -14,7 +14,7 @@ interface Asset {
|
|
|
14
14
|
site: string // alias for collectionId (compat)
|
|
15
15
|
productId: string | null // set when scoped to a product
|
|
16
16
|
proofId: string | null // set when scoped to a proof (ledger entry)
|
|
17
|
-
|
|
17
|
+
appId: string | null // app that owns this asset, e.g. 'homepage'
|
|
18
18
|
|
|
19
19
|
// File
|
|
20
20
|
url: string // CDN URL of the original file
|
package/dist/openapi.yaml
CHANGED
|
@@ -16539,7 +16539,7 @@ components:
|
|
|
16539
16539
|
type: string
|
|
16540
16540
|
proofId:
|
|
16541
16541
|
type: string
|
|
16542
|
-
|
|
16542
|
+
appId:
|
|
16543
16543
|
type: string
|
|
16544
16544
|
url:
|
|
16545
16545
|
type: string
|
|
@@ -16618,7 +16618,7 @@ components:
|
|
|
16618
16618
|
- site
|
|
16619
16619
|
- productId
|
|
16620
16620
|
- proofId
|
|
16621
|
-
-
|
|
16621
|
+
- appId
|
|
16622
16622
|
- url
|
|
16623
16623
|
- thumbnail
|
|
16624
16624
|
- name
|
|
@@ -16769,7 +16769,7 @@ components:
|
|
|
16769
16769
|
type: string
|
|
16770
16770
|
name:
|
|
16771
16771
|
type: string
|
|
16772
|
-
|
|
16772
|
+
appId:
|
|
16773
16773
|
type: string
|
|
16774
16774
|
labels:
|
|
16775
16775
|
type: array
|
package/dist/types/asset.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ export interface Asset {
|
|
|
38
38
|
/** Set when scoped to a proof (ledger entry) */
|
|
39
39
|
proofId: string | null;
|
|
40
40
|
/** App that owns this asset, e.g. 'homepage' */
|
|
41
|
-
|
|
41
|
+
appId: string | null;
|
|
42
42
|
/** CDN URL of the original file */
|
|
43
43
|
url: string;
|
|
44
44
|
/**
|
|
@@ -230,7 +230,7 @@ export interface UpdateAssetOptions {
|
|
|
230
230
|
collectionId: string;
|
|
231
231
|
assetId: string;
|
|
232
232
|
name?: string;
|
|
233
|
-
|
|
233
|
+
appId?: string;
|
|
234
234
|
labels?: string[];
|
|
235
235
|
metadata?: Record<string, any>;
|
|
236
236
|
/** Manually override the thumbnail URL */
|
package/docs/API_SUMMARY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smartlinks API Summary
|
|
2
2
|
|
|
3
|
-
Version: 1.13.
|
|
3
|
+
Version: 1.13.1 | Generated: 2026-05-07T10:59:17.642Z
|
|
4
4
|
|
|
5
5
|
This is a concise summary of all available API functions and types.
|
|
6
6
|
|
|
@@ -2291,7 +2291,7 @@ interface Asset {
|
|
|
2291
2291
|
site: string
|
|
2292
2292
|
productId: string | null
|
|
2293
2293
|
proofId: string | null
|
|
2294
|
-
|
|
2294
|
+
appId: string | null
|
|
2295
2295
|
url: string
|
|
2296
2296
|
* CDN URL of the WebP thumbnail (max 512px longest edge, no crop).
|
|
2297
2297
|
* Always .webp — null until thumbnail generation has run.
|
|
@@ -2427,7 +2427,7 @@ interface UpdateAssetOptions {
|
|
|
2427
2427
|
collectionId: string
|
|
2428
2428
|
assetId: string
|
|
2429
2429
|
name?: string
|
|
2430
|
-
|
|
2430
|
+
appId?: string
|
|
2431
2431
|
labels?: string[]
|
|
2432
2432
|
metadata?: Record<string, any>
|
|
2433
2433
|
thumbnail?: string
|
package/docs/assets.md
CHANGED
|
@@ -14,7 +14,7 @@ interface Asset {
|
|
|
14
14
|
site: string // alias for collectionId (compat)
|
|
15
15
|
productId: string | null // set when scoped to a product
|
|
16
16
|
proofId: string | null // set when scoped to a proof (ledger entry)
|
|
17
|
-
|
|
17
|
+
appId: string | null // app that owns this asset, e.g. 'homepage'
|
|
18
18
|
|
|
19
19
|
// File
|
|
20
20
|
url: string // CDN URL of the original file
|
package/openapi.yaml
CHANGED
|
@@ -16539,7 +16539,7 @@ components:
|
|
|
16539
16539
|
type: string
|
|
16540
16540
|
proofId:
|
|
16541
16541
|
type: string
|
|
16542
|
-
|
|
16542
|
+
appId:
|
|
16543
16543
|
type: string
|
|
16544
16544
|
url:
|
|
16545
16545
|
type: string
|
|
@@ -16618,7 +16618,7 @@ components:
|
|
|
16618
16618
|
- site
|
|
16619
16619
|
- productId
|
|
16620
16620
|
- proofId
|
|
16621
|
-
-
|
|
16621
|
+
- appId
|
|
16622
16622
|
- url
|
|
16623
16623
|
- thumbnail
|
|
16624
16624
|
- name
|
|
@@ -16769,7 +16769,7 @@ components:
|
|
|
16769
16769
|
type: string
|
|
16770
16770
|
name:
|
|
16771
16771
|
type: string
|
|
16772
|
-
|
|
16772
|
+
appId:
|
|
16773
16773
|
type: string
|
|
16774
16774
|
labels:
|
|
16775
16775
|
type: array
|