@adaptive-ai/sdk 0.1.25 → 0.1.27
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/client/index.d.ts +307 -4
- package/dist/client/index.js +12 -22
- package/dist/server/index.d.ts +76 -7
- package/package.json +2 -2
package/dist/server/index.d.ts
CHANGED
|
@@ -1627,19 +1627,19 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1627
1627
|
isEnabled: boolean;
|
|
1628
1628
|
description?: string | undefined;
|
|
1629
1629
|
name?: string | undefined;
|
|
1630
|
+
timezone?: string | undefined;
|
|
1630
1631
|
stopAt?: string | undefined;
|
|
1631
1632
|
maxExecutions?: number | undefined;
|
|
1632
|
-
timezone?: string | undefined;
|
|
1633
1633
|
}, {
|
|
1634
1634
|
slug: string;
|
|
1635
1635
|
schedule: string;
|
|
1636
1636
|
rpcEndpoint: string;
|
|
1637
1637
|
description?: string | undefined;
|
|
1638
1638
|
name?: string | undefined;
|
|
1639
|
+
timezone?: string | undefined;
|
|
1639
1640
|
isEnabled?: boolean | undefined;
|
|
1640
1641
|
stopAt?: string | undefined;
|
|
1641
1642
|
maxExecutions?: number | undefined;
|
|
1642
|
-
timezone?: string | undefined;
|
|
1643
1643
|
}>, "many">;
|
|
1644
1644
|
}, "strip", z.ZodTypeAny, {
|
|
1645
1645
|
crons: {
|
|
@@ -1649,9 +1649,9 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1649
1649
|
isEnabled: boolean;
|
|
1650
1650
|
description?: string | undefined;
|
|
1651
1651
|
name?: string | undefined;
|
|
1652
|
+
timezone?: string | undefined;
|
|
1652
1653
|
stopAt?: string | undefined;
|
|
1653
1654
|
maxExecutions?: number | undefined;
|
|
1654
|
-
timezone?: string | undefined;
|
|
1655
1655
|
}[];
|
|
1656
1656
|
}, {
|
|
1657
1657
|
crons: {
|
|
@@ -1660,10 +1660,10 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1660
1660
|
rpcEndpoint: string;
|
|
1661
1661
|
description?: string | undefined;
|
|
1662
1662
|
name?: string | undefined;
|
|
1663
|
+
timezone?: string | undefined;
|
|
1663
1664
|
isEnabled?: boolean | undefined;
|
|
1664
1665
|
stopAt?: string | undefined;
|
|
1665
1666
|
maxExecutions?: number | undefined;
|
|
1666
|
-
timezone?: string | undefined;
|
|
1667
1667
|
}[];
|
|
1668
1668
|
}>;
|
|
1669
1669
|
export type AppConfig = z.infer<typeof appConfigSchema>;
|
|
@@ -1678,10 +1678,10 @@ declare const AuthProvider: {
|
|
|
1678
1678
|
readonly NOTION: "NOTION";
|
|
1679
1679
|
readonly TWITTER: "TWITTER";
|
|
1680
1680
|
readonly LINKEDIN: "LINKEDIN";
|
|
1681
|
-
readonly LINKEDIN_MEMBER_DATA: "LINKEDIN_MEMBER_DATA";
|
|
1682
1681
|
readonly YAHOO: "YAHOO";
|
|
1683
1682
|
readonly FIGMA: "FIGMA";
|
|
1684
1683
|
readonly PLAID: "PLAID";
|
|
1684
|
+
readonly SQUARE: "SQUARE";
|
|
1685
1685
|
readonly WHOOP: "WHOOP";
|
|
1686
1686
|
};
|
|
1687
1687
|
export type AuthProvider = (typeof AuthProvider)[keyof typeof AuthProvider];
|
|
@@ -1728,10 +1728,12 @@ declare let client: {
|
|
|
1728
1728
|
boxId: string;
|
|
1729
1729
|
isDevelopment: boolean | null;
|
|
1730
1730
|
appId?: string | null | undefined;
|
|
1731
|
+
appFolder?: string | null | undefined;
|
|
1731
1732
|
rpcMethod?: string | null | undefined;
|
|
1732
1733
|
requestId?: string | null | undefined;
|
|
1733
1734
|
channelId?: string | null | undefined;
|
|
1734
1735
|
platformUserId?: string | null | undefined;
|
|
1736
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
1735
1737
|
agent?: string | null | undefined;
|
|
1736
1738
|
sessionId?: string | null | undefined;
|
|
1737
1739
|
pushToken?: string | null | undefined;
|
|
@@ -1768,10 +1770,12 @@ declare let client: {
|
|
|
1768
1770
|
type: "BOXMAN_REQUEST";
|
|
1769
1771
|
appId: string | null | undefined;
|
|
1770
1772
|
boxId: string;
|
|
1773
|
+
appFolder: string | null | undefined;
|
|
1771
1774
|
rpcMethod: string | null | undefined;
|
|
1772
1775
|
requestId: string | null | undefined;
|
|
1773
1776
|
channelId: string | null | undefined;
|
|
1774
1777
|
platformUserId: string | null | undefined;
|
|
1778
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
1775
1779
|
isDevelopment: boolean | null;
|
|
1776
1780
|
agent: string | null | undefined;
|
|
1777
1781
|
sessionId: string | null | undefined;
|
|
@@ -1793,6 +1797,7 @@ declare let client: {
|
|
|
1793
1797
|
response: object;
|
|
1794
1798
|
status: string;
|
|
1795
1799
|
sessionId: string;
|
|
1800
|
+
previousSessionId: string | undefined;
|
|
1796
1801
|
}>>;
|
|
1797
1802
|
};
|
|
1798
1803
|
cancelAgentPrompt: {
|
|
@@ -1816,10 +1821,12 @@ declare let client: {
|
|
|
1816
1821
|
boxId: string;
|
|
1817
1822
|
isDevelopment: boolean | null;
|
|
1818
1823
|
appId?: string | null | undefined;
|
|
1824
|
+
appFolder?: string | null | undefined;
|
|
1819
1825
|
rpcMethod?: string | null | undefined;
|
|
1820
1826
|
requestId?: string | null | undefined;
|
|
1821
1827
|
channelId?: string | null | undefined;
|
|
1822
1828
|
platformUserId?: string | null | undefined;
|
|
1829
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
1823
1830
|
agent?: string | null | undefined;
|
|
1824
1831
|
sessionId?: string | null | undefined;
|
|
1825
1832
|
pushToken?: string | null | undefined;
|
|
@@ -1856,10 +1863,12 @@ declare let client: {
|
|
|
1856
1863
|
type: "BOXMAN_REQUEST";
|
|
1857
1864
|
appId: string | null | undefined;
|
|
1858
1865
|
boxId: string;
|
|
1866
|
+
appFolder: string | null | undefined;
|
|
1859
1867
|
rpcMethod: string | null | undefined;
|
|
1860
1868
|
requestId: string | null | undefined;
|
|
1861
1869
|
channelId: string | null | undefined;
|
|
1862
1870
|
platformUserId: string | null | undefined;
|
|
1871
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
1863
1872
|
isDevelopment: boolean | null;
|
|
1864
1873
|
agent: string | null | undefined;
|
|
1865
1874
|
sessionId: string | null | undefined;
|
|
@@ -1899,10 +1908,12 @@ declare let client: {
|
|
|
1899
1908
|
boxId: string;
|
|
1900
1909
|
isDevelopment: boolean | null;
|
|
1901
1910
|
appId?: string | null | undefined;
|
|
1911
|
+
appFolder?: string | null | undefined;
|
|
1902
1912
|
rpcMethod?: string | null | undefined;
|
|
1903
1913
|
requestId?: string | null | undefined;
|
|
1904
1914
|
channelId?: string | null | undefined;
|
|
1905
1915
|
platformUserId?: string | null | undefined;
|
|
1916
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
1906
1917
|
agent?: string | null | undefined;
|
|
1907
1918
|
sessionId?: string | null | undefined;
|
|
1908
1919
|
pushToken?: string | null | undefined;
|
|
@@ -1939,10 +1950,12 @@ declare let client: {
|
|
|
1939
1950
|
type: "BOXMAN_REQUEST";
|
|
1940
1951
|
appId: string | null | undefined;
|
|
1941
1952
|
boxId: string;
|
|
1953
|
+
appFolder: string | null | undefined;
|
|
1942
1954
|
rpcMethod: string | null | undefined;
|
|
1943
1955
|
requestId: string | null | undefined;
|
|
1944
1956
|
channelId: string | null | undefined;
|
|
1945
1957
|
platformUserId: string | null | undefined;
|
|
1958
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
1946
1959
|
isDevelopment: boolean | null;
|
|
1947
1960
|
agent: string | null | undefined;
|
|
1948
1961
|
sessionId: string | null | undefined;
|
|
@@ -1993,10 +2006,12 @@ declare let client: {
|
|
|
1993
2006
|
boxId: string;
|
|
1994
2007
|
isDevelopment: boolean | null;
|
|
1995
2008
|
appId?: string | null | undefined;
|
|
2009
|
+
appFolder?: string | null | undefined;
|
|
1996
2010
|
rpcMethod?: string | null | undefined;
|
|
1997
2011
|
requestId?: string | null | undefined;
|
|
1998
2012
|
channelId?: string | null | undefined;
|
|
1999
2013
|
platformUserId?: string | null | undefined;
|
|
2014
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2000
2015
|
agent?: string | null | undefined;
|
|
2001
2016
|
sessionId?: string | null | undefined;
|
|
2002
2017
|
pushToken?: string | null | undefined;
|
|
@@ -2033,10 +2048,12 @@ declare let client: {
|
|
|
2033
2048
|
type: "BOXMAN_REQUEST";
|
|
2034
2049
|
appId: string | null | undefined;
|
|
2035
2050
|
boxId: string;
|
|
2051
|
+
appFolder: string | null | undefined;
|
|
2036
2052
|
rpcMethod: string | null | undefined;
|
|
2037
2053
|
requestId: string | null | undefined;
|
|
2038
2054
|
channelId: string | null | undefined;
|
|
2039
2055
|
platformUserId: string | null | undefined;
|
|
2056
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2040
2057
|
isDevelopment: boolean | null;
|
|
2041
2058
|
agent: string | null | undefined;
|
|
2042
2059
|
sessionId: string | null | undefined;
|
|
@@ -2079,10 +2096,12 @@ declare let client: {
|
|
|
2079
2096
|
boxId: string;
|
|
2080
2097
|
isDevelopment: boolean | null;
|
|
2081
2098
|
appId?: string | null | undefined;
|
|
2099
|
+
appFolder?: string | null | undefined;
|
|
2082
2100
|
rpcMethod?: string | null | undefined;
|
|
2083
2101
|
requestId?: string | null | undefined;
|
|
2084
2102
|
channelId?: string | null | undefined;
|
|
2085
2103
|
platformUserId?: string | null | undefined;
|
|
2104
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2086
2105
|
agent?: string | null | undefined;
|
|
2087
2106
|
sessionId?: string | null | undefined;
|
|
2088
2107
|
pushToken?: string | null | undefined;
|
|
@@ -2119,10 +2138,12 @@ declare let client: {
|
|
|
2119
2138
|
type: "BOXMAN_REQUEST";
|
|
2120
2139
|
appId: string | null | undefined;
|
|
2121
2140
|
boxId: string;
|
|
2141
|
+
appFolder: string | null | undefined;
|
|
2122
2142
|
rpcMethod: string | null | undefined;
|
|
2123
2143
|
requestId: string | null | undefined;
|
|
2124
2144
|
channelId: string | null | undefined;
|
|
2125
2145
|
platformUserId: string | null | undefined;
|
|
2146
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2126
2147
|
isDevelopment: boolean | null;
|
|
2127
2148
|
agent: string | null | undefined;
|
|
2128
2149
|
sessionId: string | null | undefined;
|
|
@@ -2171,10 +2192,12 @@ declare let client: {
|
|
|
2171
2192
|
boxId: string;
|
|
2172
2193
|
isDevelopment: boolean | null;
|
|
2173
2194
|
appId?: string | null | undefined;
|
|
2195
|
+
appFolder?: string | null | undefined;
|
|
2174
2196
|
rpcMethod?: string | null | undefined;
|
|
2175
2197
|
requestId?: string | null | undefined;
|
|
2176
2198
|
channelId?: string | null | undefined;
|
|
2177
2199
|
platformUserId?: string | null | undefined;
|
|
2200
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2178
2201
|
agent?: string | null | undefined;
|
|
2179
2202
|
sessionId?: string | null | undefined;
|
|
2180
2203
|
pushToken?: string | null | undefined;
|
|
@@ -2211,10 +2234,12 @@ declare let client: {
|
|
|
2211
2234
|
type: "BOXMAN_REQUEST";
|
|
2212
2235
|
appId: string | null | undefined;
|
|
2213
2236
|
boxId: string;
|
|
2237
|
+
appFolder: string | null | undefined;
|
|
2214
2238
|
rpcMethod: string | null | undefined;
|
|
2215
2239
|
requestId: string | null | undefined;
|
|
2216
2240
|
channelId: string | null | undefined;
|
|
2217
2241
|
platformUserId: string | null | undefined;
|
|
2242
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2218
2243
|
isDevelopment: boolean | null;
|
|
2219
2244
|
agent: string | null | undefined;
|
|
2220
2245
|
sessionId: string | null | undefined;
|
|
@@ -2266,10 +2291,12 @@ declare let client: {
|
|
|
2266
2291
|
boxId: string;
|
|
2267
2292
|
isDevelopment: boolean | null;
|
|
2268
2293
|
appId?: string | null | undefined;
|
|
2294
|
+
appFolder?: string | null | undefined;
|
|
2269
2295
|
rpcMethod?: string | null | undefined;
|
|
2270
2296
|
requestId?: string | null | undefined;
|
|
2271
2297
|
channelId?: string | null | undefined;
|
|
2272
2298
|
platformUserId?: string | null | undefined;
|
|
2299
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2273
2300
|
agent?: string | null | undefined;
|
|
2274
2301
|
sessionId?: string | null | undefined;
|
|
2275
2302
|
pushToken?: string | null | undefined;
|
|
@@ -2306,10 +2333,12 @@ declare let client: {
|
|
|
2306
2333
|
type: "BOXMAN_REQUEST";
|
|
2307
2334
|
appId: string | null | undefined;
|
|
2308
2335
|
boxId: string;
|
|
2336
|
+
appFolder: string | null | undefined;
|
|
2309
2337
|
rpcMethod: string | null | undefined;
|
|
2310
2338
|
requestId: string | null | undefined;
|
|
2311
2339
|
channelId: string | null | undefined;
|
|
2312
2340
|
platformUserId: string | null | undefined;
|
|
2341
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2313
2342
|
isDevelopment: boolean | null;
|
|
2314
2343
|
agent: string | null | undefined;
|
|
2315
2344
|
sessionId: string | null | undefined;
|
|
@@ -2353,10 +2382,12 @@ declare let client: {
|
|
|
2353
2382
|
boxId: string;
|
|
2354
2383
|
isDevelopment: boolean | null;
|
|
2355
2384
|
appId?: string | null | undefined;
|
|
2385
|
+
appFolder?: string | null | undefined;
|
|
2356
2386
|
rpcMethod?: string | null | undefined;
|
|
2357
2387
|
requestId?: string | null | undefined;
|
|
2358
2388
|
channelId?: string | null | undefined;
|
|
2359
2389
|
platformUserId?: string | null | undefined;
|
|
2390
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2360
2391
|
agent?: string | null | undefined;
|
|
2361
2392
|
sessionId?: string | null | undefined;
|
|
2362
2393
|
pushToken?: string | null | undefined;
|
|
@@ -2393,10 +2424,12 @@ declare let client: {
|
|
|
2393
2424
|
type: "BOXMAN_REQUEST";
|
|
2394
2425
|
appId: string | null | undefined;
|
|
2395
2426
|
boxId: string;
|
|
2427
|
+
appFolder: string | null | undefined;
|
|
2396
2428
|
rpcMethod: string | null | undefined;
|
|
2397
2429
|
requestId: string | null | undefined;
|
|
2398
2430
|
channelId: string | null | undefined;
|
|
2399
2431
|
platformUserId: string | null | undefined;
|
|
2432
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2400
2433
|
isDevelopment: boolean | null;
|
|
2401
2434
|
agent: string | null | undefined;
|
|
2402
2435
|
sessionId: string | null | undefined;
|
|
@@ -2441,10 +2474,12 @@ declare let client: {
|
|
|
2441
2474
|
boxId: string;
|
|
2442
2475
|
isDevelopment: boolean | null;
|
|
2443
2476
|
appId?: string | null | undefined;
|
|
2477
|
+
appFolder?: string | null | undefined;
|
|
2444
2478
|
rpcMethod?: string | null | undefined;
|
|
2445
2479
|
requestId?: string | null | undefined;
|
|
2446
2480
|
channelId?: string | null | undefined;
|
|
2447
2481
|
platformUserId?: string | null | undefined;
|
|
2482
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2448
2483
|
agent?: string | null | undefined;
|
|
2449
2484
|
sessionId?: string | null | undefined;
|
|
2450
2485
|
pushToken?: string | null | undefined;
|
|
@@ -2481,10 +2516,12 @@ declare let client: {
|
|
|
2481
2516
|
type: "BOXMAN_REQUEST";
|
|
2482
2517
|
appId: string | null | undefined;
|
|
2483
2518
|
boxId: string;
|
|
2519
|
+
appFolder: string | null | undefined;
|
|
2484
2520
|
rpcMethod: string | null | undefined;
|
|
2485
2521
|
requestId: string | null | undefined;
|
|
2486
2522
|
channelId: string | null | undefined;
|
|
2487
2523
|
platformUserId: string | null | undefined;
|
|
2524
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2488
2525
|
isDevelopment: boolean | null;
|
|
2489
2526
|
agent: string | null | undefined;
|
|
2490
2527
|
sessionId: string | null | undefined;
|
|
@@ -2523,10 +2560,12 @@ declare let client: {
|
|
|
2523
2560
|
boxId: string;
|
|
2524
2561
|
isDevelopment: boolean | null;
|
|
2525
2562
|
appId?: string | null | undefined;
|
|
2563
|
+
appFolder?: string | null | undefined;
|
|
2526
2564
|
rpcMethod?: string | null | undefined;
|
|
2527
2565
|
requestId?: string | null | undefined;
|
|
2528
2566
|
channelId?: string | null | undefined;
|
|
2529
2567
|
platformUserId?: string | null | undefined;
|
|
2568
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2530
2569
|
agent?: string | null | undefined;
|
|
2531
2570
|
sessionId?: string | null | undefined;
|
|
2532
2571
|
pushToken?: string | null | undefined;
|
|
@@ -2563,10 +2602,12 @@ declare let client: {
|
|
|
2563
2602
|
type: "BOXMAN_REQUEST";
|
|
2564
2603
|
appId: string | null | undefined;
|
|
2565
2604
|
boxId: string;
|
|
2605
|
+
appFolder: string | null | undefined;
|
|
2566
2606
|
rpcMethod: string | null | undefined;
|
|
2567
2607
|
requestId: string | null | undefined;
|
|
2568
2608
|
channelId: string | null | undefined;
|
|
2569
2609
|
platformUserId: string | null | undefined;
|
|
2610
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2570
2611
|
isDevelopment: boolean | null;
|
|
2571
2612
|
agent: string | null | undefined;
|
|
2572
2613
|
sessionId: string | null | undefined;
|
|
@@ -2633,10 +2674,12 @@ declare let client: {
|
|
|
2633
2674
|
boxId: string;
|
|
2634
2675
|
isDevelopment: boolean | null;
|
|
2635
2676
|
appId?: string | null | undefined;
|
|
2677
|
+
appFolder?: string | null | undefined;
|
|
2636
2678
|
rpcMethod?: string | null | undefined;
|
|
2637
2679
|
requestId?: string | null | undefined;
|
|
2638
2680
|
channelId?: string | null | undefined;
|
|
2639
2681
|
platformUserId?: string | null | undefined;
|
|
2682
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2640
2683
|
agent?: string | null | undefined;
|
|
2641
2684
|
sessionId?: string | null | undefined;
|
|
2642
2685
|
pushToken?: string | null | undefined;
|
|
@@ -2673,10 +2716,12 @@ declare let client: {
|
|
|
2673
2716
|
type: "BOXMAN_REQUEST";
|
|
2674
2717
|
appId: string | null | undefined;
|
|
2675
2718
|
boxId: string;
|
|
2719
|
+
appFolder: string | null | undefined;
|
|
2676
2720
|
rpcMethod: string | null | undefined;
|
|
2677
2721
|
requestId: string | null | undefined;
|
|
2678
2722
|
channelId: string | null | undefined;
|
|
2679
2723
|
platformUserId: string | null | undefined;
|
|
2724
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2680
2725
|
isDevelopment: boolean | null;
|
|
2681
2726
|
agent: string | null | undefined;
|
|
2682
2727
|
sessionId: string | null | undefined;
|
|
@@ -2719,10 +2764,12 @@ declare let client: {
|
|
|
2719
2764
|
boxId: string;
|
|
2720
2765
|
isDevelopment: boolean | null;
|
|
2721
2766
|
appId?: string | null | undefined;
|
|
2767
|
+
appFolder?: string | null | undefined;
|
|
2722
2768
|
rpcMethod?: string | null | undefined;
|
|
2723
2769
|
requestId?: string | null | undefined;
|
|
2724
2770
|
channelId?: string | null | undefined;
|
|
2725
2771
|
platformUserId?: string | null | undefined;
|
|
2772
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2726
2773
|
agent?: string | null | undefined;
|
|
2727
2774
|
sessionId?: string | null | undefined;
|
|
2728
2775
|
pushToken?: string | null | undefined;
|
|
@@ -2759,10 +2806,12 @@ declare let client: {
|
|
|
2759
2806
|
type: "BOXMAN_REQUEST";
|
|
2760
2807
|
appId: string | null | undefined;
|
|
2761
2808
|
boxId: string;
|
|
2809
|
+
appFolder: string | null | undefined;
|
|
2762
2810
|
rpcMethod: string | null | undefined;
|
|
2763
2811
|
requestId: string | null | undefined;
|
|
2764
2812
|
channelId: string | null | undefined;
|
|
2765
2813
|
platformUserId: string | null | undefined;
|
|
2814
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2766
2815
|
isDevelopment: boolean | null;
|
|
2767
2816
|
agent: string | null | undefined;
|
|
2768
2817
|
sessionId: string | null | undefined;
|
|
@@ -2805,10 +2854,12 @@ declare let client: {
|
|
|
2805
2854
|
boxId: string;
|
|
2806
2855
|
isDevelopment: boolean | null;
|
|
2807
2856
|
appId?: string | null | undefined;
|
|
2857
|
+
appFolder?: string | null | undefined;
|
|
2808
2858
|
rpcMethod?: string | null | undefined;
|
|
2809
2859
|
requestId?: string | null | undefined;
|
|
2810
2860
|
channelId?: string | null | undefined;
|
|
2811
2861
|
platformUserId?: string | null | undefined;
|
|
2862
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2812
2863
|
agent?: string | null | undefined;
|
|
2813
2864
|
sessionId?: string | null | undefined;
|
|
2814
2865
|
pushToken?: string | null | undefined;
|
|
@@ -2845,10 +2896,12 @@ declare let client: {
|
|
|
2845
2896
|
type: "BOXMAN_REQUEST";
|
|
2846
2897
|
appId: string | null | undefined;
|
|
2847
2898
|
boxId: string;
|
|
2899
|
+
appFolder: string | null | undefined;
|
|
2848
2900
|
rpcMethod: string | null | undefined;
|
|
2849
2901
|
requestId: string | null | undefined;
|
|
2850
2902
|
channelId: string | null | undefined;
|
|
2851
2903
|
platformUserId: string | null | undefined;
|
|
2904
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2852
2905
|
isDevelopment: boolean | null;
|
|
2853
2906
|
agent: string | null | undefined;
|
|
2854
2907
|
sessionId: string | null | undefined;
|
|
@@ -2897,10 +2950,12 @@ declare let client: {
|
|
|
2897
2950
|
boxId: string;
|
|
2898
2951
|
isDevelopment: boolean | null;
|
|
2899
2952
|
appId?: string | null | undefined;
|
|
2953
|
+
appFolder?: string | null | undefined;
|
|
2900
2954
|
rpcMethod?: string | null | undefined;
|
|
2901
2955
|
requestId?: string | null | undefined;
|
|
2902
2956
|
channelId?: string | null | undefined;
|
|
2903
2957
|
platformUserId?: string | null | undefined;
|
|
2958
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2904
2959
|
agent?: string | null | undefined;
|
|
2905
2960
|
sessionId?: string | null | undefined;
|
|
2906
2961
|
pushToken?: string | null | undefined;
|
|
@@ -2937,25 +2992,27 @@ declare let client: {
|
|
|
2937
2992
|
type: "BOXMAN_REQUEST";
|
|
2938
2993
|
appId: string | null | undefined;
|
|
2939
2994
|
boxId: string;
|
|
2995
|
+
appFolder: string | null | undefined;
|
|
2940
2996
|
rpcMethod: string | null | undefined;
|
|
2941
2997
|
requestId: string | null | undefined;
|
|
2942
2998
|
channelId: string | null | undefined;
|
|
2943
2999
|
platformUserId: string | null | undefined;
|
|
3000
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2944
3001
|
isDevelopment: boolean | null;
|
|
2945
3002
|
agent: string | null | undefined;
|
|
2946
3003
|
sessionId: string | null | undefined;
|
|
2947
3004
|
pushToken: string | null | undefined;
|
|
2948
3005
|
};
|
|
2949
3006
|
_input_in: {
|
|
2950
|
-
url: string;
|
|
2951
3007
|
connectionToken: string;
|
|
3008
|
+
url: string;
|
|
2952
3009
|
method: string;
|
|
2953
3010
|
body?: any;
|
|
2954
3011
|
headers?: Record<string, string> | undefined;
|
|
2955
3012
|
};
|
|
2956
3013
|
_input_out: {
|
|
2957
|
-
url: string;
|
|
2958
3014
|
connectionToken: string;
|
|
3015
|
+
url: string;
|
|
2959
3016
|
method: string;
|
|
2960
3017
|
body?: any;
|
|
2961
3018
|
headers?: Record<string, string> | undefined;
|
|
@@ -2993,10 +3050,12 @@ declare let client: {
|
|
|
2993
3050
|
boxId: string;
|
|
2994
3051
|
isDevelopment: boolean | null;
|
|
2995
3052
|
appId?: string | null | undefined;
|
|
3053
|
+
appFolder?: string | null | undefined;
|
|
2996
3054
|
rpcMethod?: string | null | undefined;
|
|
2997
3055
|
requestId?: string | null | undefined;
|
|
2998
3056
|
channelId?: string | null | undefined;
|
|
2999
3057
|
platformUserId?: string | null | undefined;
|
|
3058
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3000
3059
|
agent?: string | null | undefined;
|
|
3001
3060
|
sessionId?: string | null | undefined;
|
|
3002
3061
|
pushToken?: string | null | undefined;
|
|
@@ -3033,10 +3092,12 @@ declare let client: {
|
|
|
3033
3092
|
type: "BOXMAN_REQUEST";
|
|
3034
3093
|
appId: string | null | undefined;
|
|
3035
3094
|
boxId: string;
|
|
3095
|
+
appFolder: string | null | undefined;
|
|
3036
3096
|
rpcMethod: string | null | undefined;
|
|
3037
3097
|
requestId: string | null | undefined;
|
|
3038
3098
|
channelId: string | null | undefined;
|
|
3039
3099
|
platformUserId: string | null | undefined;
|
|
3100
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3040
3101
|
isDevelopment: boolean | null;
|
|
3041
3102
|
agent: string | null | undefined;
|
|
3042
3103
|
sessionId: string | null | undefined;
|
|
@@ -3090,10 +3151,12 @@ declare let client: {
|
|
|
3090
3151
|
boxId: string;
|
|
3091
3152
|
isDevelopment: boolean | null;
|
|
3092
3153
|
appId?: string | null | undefined;
|
|
3154
|
+
appFolder?: string | null | undefined;
|
|
3093
3155
|
rpcMethod?: string | null | undefined;
|
|
3094
3156
|
requestId?: string | null | undefined;
|
|
3095
3157
|
channelId?: string | null | undefined;
|
|
3096
3158
|
platformUserId?: string | null | undefined;
|
|
3159
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3097
3160
|
agent?: string | null | undefined;
|
|
3098
3161
|
sessionId?: string | null | undefined;
|
|
3099
3162
|
pushToken?: string | null | undefined;
|
|
@@ -3130,10 +3193,12 @@ declare let client: {
|
|
|
3130
3193
|
type: "BOXMAN_REQUEST";
|
|
3131
3194
|
appId: string | null | undefined;
|
|
3132
3195
|
boxId: string;
|
|
3196
|
+
appFolder: string | null | undefined;
|
|
3133
3197
|
rpcMethod: string | null | undefined;
|
|
3134
3198
|
requestId: string | null | undefined;
|
|
3135
3199
|
channelId: string | null | undefined;
|
|
3136
3200
|
platformUserId: string | null | undefined;
|
|
3201
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3137
3202
|
isDevelopment: boolean | null;
|
|
3138
3203
|
agent: string | null | undefined;
|
|
3139
3204
|
sessionId: string | null | undefined;
|
|
@@ -3168,10 +3233,12 @@ declare let client: {
|
|
|
3168
3233
|
boxId: string;
|
|
3169
3234
|
isDevelopment: boolean | null;
|
|
3170
3235
|
appId?: string | null | undefined;
|
|
3236
|
+
appFolder?: string | null | undefined;
|
|
3171
3237
|
rpcMethod?: string | null | undefined;
|
|
3172
3238
|
requestId?: string | null | undefined;
|
|
3173
3239
|
channelId?: string | null | undefined;
|
|
3174
3240
|
platformUserId?: string | null | undefined;
|
|
3241
|
+
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3175
3242
|
agent?: string | null | undefined;
|
|
3176
3243
|
sessionId?: string | null | undefined;
|
|
3177
3244
|
pushToken?: string | null | undefined;
|
|
@@ -3208,10 +3275,12 @@ declare let client: {
|
|
|
3208
3275
|
type: "BOXMAN_REQUEST";
|
|
3209
3276
|
appId: string | null | undefined;
|
|
3210
3277
|
boxId: string;
|
|
3278
|
+
appFolder: string | null | undefined;
|
|
3211
3279
|
rpcMethod: string | null | undefined;
|
|
3212
3280
|
requestId: string | null | undefined;
|
|
3213
3281
|
channelId: string | null | undefined;
|
|
3214
3282
|
platformUserId: string | null | undefined;
|
|
3283
|
+
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3215
3284
|
isDevelopment: boolean | null;
|
|
3216
3285
|
agent: string | null | undefined;
|
|
3217
3286
|
sessionId: string | null | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptive-ai/sdk",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.27",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
"eslint-formatter-codeframe": "^7.32.1",
|
|
74
74
|
"eslint-plugin-prettier": "^5.5.4",
|
|
75
75
|
"eslint-plugin-simple-import-sort": "^12.1.0",
|
|
76
|
-
"npm-run-
|
|
76
|
+
"npm-run-all2": "^8.0.4",
|
|
77
77
|
"object-inspect": "^1.13.4",
|
|
78
78
|
"prettier": "^3.7.4",
|
|
79
79
|
"rimraf": "^6.0.1",
|