@proveanything/smartlinks 1.3.21 → 1.3.22
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/dist/docs/API_SUMMARY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smartlinks API Summary
|
|
2
2
|
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.22 | Generated: 2026-02-13T10:45:57.755Z
|
|
4
4
|
|
|
5
5
|
This is a concise summary of all available API functions and types.
|
|
6
6
|
|
|
@@ -1796,6 +1796,7 @@ interface AdminInteractionsQueryRequest {
|
|
|
1796
1796
|
contactId?: string
|
|
1797
1797
|
appId?: string
|
|
1798
1798
|
interactionId?: string
|
|
1799
|
+
scope?: string
|
|
1799
1800
|
interactionIds?: string[]
|
|
1800
1801
|
broadcastId?: string
|
|
1801
1802
|
outcome?: string | null
|
|
@@ -1814,6 +1815,7 @@ interface AdminInteractionsQueryRequest {
|
|
|
1814
1815
|
interface AdminInteractionsCountsByOutcomeRequest {
|
|
1815
1816
|
appId?: string
|
|
1816
1817
|
interactionId?: string
|
|
1818
|
+
scope?: string
|
|
1817
1819
|
from?: string
|
|
1818
1820
|
to?: string
|
|
1819
1821
|
limit?: number
|
|
@@ -1827,6 +1829,7 @@ interface AdminInteractionsCountsByOutcomeRequest {
|
|
|
1827
1829
|
interface PublicInteractionsCountsByOutcomeRequest {
|
|
1828
1830
|
appId: string
|
|
1829
1831
|
interactionId: string
|
|
1832
|
+
scope?: string
|
|
1830
1833
|
from?: string
|
|
1831
1834
|
to?: string
|
|
1832
1835
|
limit?: number
|
|
@@ -1838,6 +1841,7 @@ interface PublicInteractionsCountsByOutcomeRequest {
|
|
|
1838
1841
|
interface PublicInteractionsByUserRequest {
|
|
1839
1842
|
appId?: string
|
|
1840
1843
|
interactionId?: string
|
|
1844
|
+
scope?: string
|
|
1841
1845
|
from?: string
|
|
1842
1846
|
to?: string
|
|
1843
1847
|
limit?: number
|
|
@@ -1851,7 +1855,8 @@ interface InteractionEventRow {
|
|
|
1851
1855
|
collectionId: string
|
|
1852
1856
|
timestamp: string
|
|
1853
1857
|
appId?: string
|
|
1854
|
-
interactionId?: string
|
|
1858
|
+
interactionId?: string // a link to a Interaction Object
|
|
1859
|
+
scope?: string // a customizable string to segment interactions
|
|
1855
1860
|
broadcastId?: string
|
|
1856
1861
|
userId?: string
|
|
1857
1862
|
contactId?: string
|
|
@@ -1876,6 +1881,7 @@ interface InteractionEventBase {
|
|
|
1876
1881
|
userId?: string
|
|
1877
1882
|
contactId?: string
|
|
1878
1883
|
interactionId: string
|
|
1884
|
+
scope?: string
|
|
1879
1885
|
appId?: string
|
|
1880
1886
|
broadcastId?: string
|
|
1881
1887
|
journeyId?: string
|
|
@@ -4,6 +4,7 @@ export interface AdminInteractionsQueryRequest {
|
|
|
4
4
|
contactId?: string;
|
|
5
5
|
appId?: string;
|
|
6
6
|
interactionId?: string;
|
|
7
|
+
scope?: string;
|
|
7
8
|
interactionIds?: string[];
|
|
8
9
|
broadcastId?: string;
|
|
9
10
|
outcome?: string | null;
|
|
@@ -18,6 +19,7 @@ export interface AdminInteractionsQueryRequest {
|
|
|
18
19
|
export interface AdminInteractionsCountsByOutcomeRequest {
|
|
19
20
|
appId?: string;
|
|
20
21
|
interactionId?: string;
|
|
22
|
+
scope?: string;
|
|
21
23
|
from?: string;
|
|
22
24
|
to?: string;
|
|
23
25
|
limit?: number;
|
|
@@ -27,6 +29,7 @@ export interface AdminInteractionsCountsByOutcomeRequest {
|
|
|
27
29
|
export interface PublicInteractionsCountsByOutcomeRequest {
|
|
28
30
|
appId: string;
|
|
29
31
|
interactionId: string;
|
|
32
|
+
scope?: string;
|
|
30
33
|
from?: string;
|
|
31
34
|
to?: string;
|
|
32
35
|
limit?: number;
|
|
@@ -34,6 +37,7 @@ export interface PublicInteractionsCountsByOutcomeRequest {
|
|
|
34
37
|
export interface PublicInteractionsByUserRequest {
|
|
35
38
|
appId?: string;
|
|
36
39
|
interactionId?: string;
|
|
40
|
+
scope?: string;
|
|
37
41
|
from?: string;
|
|
38
42
|
to?: string;
|
|
39
43
|
limit?: number;
|
|
@@ -44,6 +48,7 @@ export interface InteractionEventRow {
|
|
|
44
48
|
timestamp: string;
|
|
45
49
|
appId?: string;
|
|
46
50
|
interactionId?: string;
|
|
51
|
+
scope?: string;
|
|
47
52
|
broadcastId?: string;
|
|
48
53
|
userId?: string;
|
|
49
54
|
contactId?: string;
|
|
@@ -61,6 +66,7 @@ export interface InteractionEventBase {
|
|
|
61
66
|
userId?: string;
|
|
62
67
|
contactId?: string;
|
|
63
68
|
interactionId: string;
|
|
69
|
+
scope?: string;
|
|
64
70
|
appId?: string;
|
|
65
71
|
broadcastId?: string;
|
|
66
72
|
journeyId?: string;
|
package/docs/API_SUMMARY.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Smartlinks API Summary
|
|
2
2
|
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.22 | Generated: 2026-02-13T10:45:57.755Z
|
|
4
4
|
|
|
5
5
|
This is a concise summary of all available API functions and types.
|
|
6
6
|
|
|
@@ -1796,6 +1796,7 @@ interface AdminInteractionsQueryRequest {
|
|
|
1796
1796
|
contactId?: string
|
|
1797
1797
|
appId?: string
|
|
1798
1798
|
interactionId?: string
|
|
1799
|
+
scope?: string
|
|
1799
1800
|
interactionIds?: string[]
|
|
1800
1801
|
broadcastId?: string
|
|
1801
1802
|
outcome?: string | null
|
|
@@ -1814,6 +1815,7 @@ interface AdminInteractionsQueryRequest {
|
|
|
1814
1815
|
interface AdminInteractionsCountsByOutcomeRequest {
|
|
1815
1816
|
appId?: string
|
|
1816
1817
|
interactionId?: string
|
|
1818
|
+
scope?: string
|
|
1817
1819
|
from?: string
|
|
1818
1820
|
to?: string
|
|
1819
1821
|
limit?: number
|
|
@@ -1827,6 +1829,7 @@ interface AdminInteractionsCountsByOutcomeRequest {
|
|
|
1827
1829
|
interface PublicInteractionsCountsByOutcomeRequest {
|
|
1828
1830
|
appId: string
|
|
1829
1831
|
interactionId: string
|
|
1832
|
+
scope?: string
|
|
1830
1833
|
from?: string
|
|
1831
1834
|
to?: string
|
|
1832
1835
|
limit?: number
|
|
@@ -1838,6 +1841,7 @@ interface PublicInteractionsCountsByOutcomeRequest {
|
|
|
1838
1841
|
interface PublicInteractionsByUserRequest {
|
|
1839
1842
|
appId?: string
|
|
1840
1843
|
interactionId?: string
|
|
1844
|
+
scope?: string
|
|
1841
1845
|
from?: string
|
|
1842
1846
|
to?: string
|
|
1843
1847
|
limit?: number
|
|
@@ -1851,7 +1855,8 @@ interface InteractionEventRow {
|
|
|
1851
1855
|
collectionId: string
|
|
1852
1856
|
timestamp: string
|
|
1853
1857
|
appId?: string
|
|
1854
|
-
interactionId?: string
|
|
1858
|
+
interactionId?: string // a link to a Interaction Object
|
|
1859
|
+
scope?: string // a customizable string to segment interactions
|
|
1855
1860
|
broadcastId?: string
|
|
1856
1861
|
userId?: string
|
|
1857
1862
|
contactId?: string
|
|
@@ -1876,6 +1881,7 @@ interface InteractionEventBase {
|
|
|
1876
1881
|
userId?: string
|
|
1877
1882
|
contactId?: string
|
|
1878
1883
|
interactionId: string
|
|
1884
|
+
scope?: string
|
|
1879
1885
|
appId?: string
|
|
1880
1886
|
broadcastId?: string
|
|
1881
1887
|
journeyId?: string
|