@proveanything/smartlinks 1.1.18 → 1.1.19

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/API_SUMMARY.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Smartlinks API Summary
2
2
 
3
- Version: 1.1.18 | Generated: 2026-01-04T12:18:56.152Z
3
+ Version: 1.1.19 | Generated: 2026-01-04T13:24:27.030Z
4
4
 
5
5
  This is a concise summary of all available API functions and types.
6
6
 
@@ -1319,7 +1319,7 @@ interface SegmentList {
1319
1319
  **SegmentCalculateResult** (interface)
1320
1320
  ```typescript
1321
1321
  interface SegmentCalculateResult {
1322
- scheduled: true
1322
+ scheduled: boolean
1323
1323
  lastCalculatedAt?: string
1324
1324
  estimatedCount?: number | null
1325
1325
  note?: string
@@ -1329,7 +1329,7 @@ interface SegmentCalculateResult {
1329
1329
  **SegmentRecipientsResponse** (interface)
1330
1330
  ```typescript
1331
1331
  interface SegmentRecipientsResponse {
1332
- items: string[]
1332
+ items: import('./contact').Contact[]
1333
1333
  limit: number
1334
1334
  offset: number
1335
1335
  total: number
@@ -26,13 +26,13 @@ export interface SegmentList {
26
26
  offset: number;
27
27
  }
28
28
  export interface SegmentCalculateResult {
29
- scheduled: true;
29
+ scheduled: boolean;
30
30
  lastCalculatedAt?: string;
31
31
  estimatedCount?: number | null;
32
32
  note?: string;
33
33
  }
34
34
  export interface SegmentRecipientsResponse {
35
- items: string[];
35
+ items: import('./contact').Contact[];
36
36
  limit: number;
37
37
  offset: number;
38
38
  total: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proveanything/smartlinks",
3
- "version": "1.1.18",
3
+ "version": "1.1.19",
4
4
  "description": "Official JavaScript/TypeScript SDK for the Smartlinks API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",