@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 CHANGED
@@ -368,7 +368,7 @@ await asset.remove({
368
368
  "site": "acme-demo",
369
369
  "productId": null,
370
370
  "proofId": null,
371
- "app": null,
371
+ "appId": null,
372
372
  "name": "product-hero-shot",
373
373
  "cleanName": "product-hero-shot",
374
374
  "assetType": "Image",
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.13.0 | Generated: 2026-05-06T20:31:38.856Z
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
- app: string | null
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
- app?: string
2430
+ appId?: string
2431
2431
  labels?: string[]
2432
2432
  metadata?: Record<string, any>
2433
2433
  thumbnail?: string
@@ -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
- app: string | null // app that owns this asset, e.g. 'homepage'
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
- app:
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
- - app
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
- app:
16772
+ appId:
16773
16773
  type: string
16774
16774
  labels:
16775
16775
  type: array
@@ -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
- app: string | null;
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
- app?: string;
233
+ appId?: string;
234
234
  labels?: string[];
235
235
  metadata?: Record<string, any>;
236
236
  /** Manually override the thumbnail URL */
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.13.0 | Generated: 2026-05-06T20:31:38.856Z
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
- app: string | null
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
- app?: string
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
- app: string | null // app that owns this asset, e.g. 'homepage'
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
- app:
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
- - app
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
- app:
16772
+ appId:
16773
16773
  type: string
16774
16774
  labels:
16775
16775
  type: array
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.13.0",
3
+ "version": "1.13.1",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",