@proveanything/smartlinks 1.3.22 → 1.3.24

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.
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.3.22 | Generated: 2026-02-13T10:45:57.755Z
3
+ Version: 1.3.24 | Generated: 2026-02-13T14:31:22.778Z
4
4
 
5
5
  This is a concise summary of all available API functions and types.
6
6
 
@@ -1922,6 +1922,16 @@ interface InteractionPermissions {
1922
1922
  }
1923
1923
  ```
1924
1924
 
1925
+ **InteractionDisplay** (interface)
1926
+ ```typescript
1927
+ interface InteractionDisplay {
1928
+ title?: string
1929
+ description?: string
1930
+ icon?: string
1931
+ color?: string
1932
+ }
1933
+ ```
1934
+
1925
1935
  **InteractionTypeRecord** (interface)
1926
1936
  ```typescript
1927
1937
  interface InteractionTypeRecord {
@@ -1930,12 +1940,8 @@ interface InteractionTypeRecord {
1930
1940
  appId: string
1931
1941
  permissions?: InteractionPermissions
1932
1942
  data?: {
1933
- display?: {
1934
- title?: string
1935
- description?: string
1936
- icon?: string
1937
- color?: string
1938
- }
1943
+ display?: InteractionDisplay
1944
+ scopes?: Record<string, InteractionDisplay>;
1939
1945
  interactionType?: string
1940
1946
  [key: string]: unknown
1941
1947
  }
@@ -129,18 +129,20 @@ export interface InteractionPermissions {
129
129
  /** Allow an authenticated user to read their own interaction history via the public API. */
130
130
  allowOwnRead?: boolean;
131
131
  }
132
+ export interface InteractionDisplay {
133
+ title?: string;
134
+ description?: string;
135
+ icon?: string;
136
+ color?: string;
137
+ }
132
138
  export interface InteractionTypeRecord {
133
139
  id?: string;
134
140
  collectionId: string;
135
141
  appId: string;
136
142
  permissions?: InteractionPermissions;
137
143
  data?: {
138
- display?: {
139
- title?: string;
140
- description?: string;
141
- icon?: string;
142
- color?: string;
143
- };
144
+ display?: InteractionDisplay;
145
+ scopes?: Record<string, InteractionDisplay>;
144
146
  interactionType?: string;
145
147
  [key: string]: unknown;
146
148
  };
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.3.22 | Generated: 2026-02-13T10:45:57.755Z
3
+ Version: 1.3.24 | Generated: 2026-02-13T14:31:22.778Z
4
4
 
5
5
  This is a concise summary of all available API functions and types.
6
6
 
@@ -1922,6 +1922,16 @@ interface InteractionPermissions {
1922
1922
  }
1923
1923
  ```
1924
1924
 
1925
+ **InteractionDisplay** (interface)
1926
+ ```typescript
1927
+ interface InteractionDisplay {
1928
+ title?: string
1929
+ description?: string
1930
+ icon?: string
1931
+ color?: string
1932
+ }
1933
+ ```
1934
+
1925
1935
  **InteractionTypeRecord** (interface)
1926
1936
  ```typescript
1927
1937
  interface InteractionTypeRecord {
@@ -1930,12 +1940,8 @@ interface InteractionTypeRecord {
1930
1940
  appId: string
1931
1941
  permissions?: InteractionPermissions
1932
1942
  data?: {
1933
- display?: {
1934
- title?: string
1935
- description?: string
1936
- icon?: string
1937
- color?: string
1938
- }
1943
+ display?: InteractionDisplay
1944
+ scopes?: Record<string, InteractionDisplay>;
1939
1945
  interactionType?: string
1940
1946
  [key: string]: unknown
1941
1947
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.3.22",
3
+ "version": "1.3.24",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",