@adaptive-ai/sdk 0.1.37 → 0.1.39
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 +3 -0
- package/dist/client/index.js +8 -8
- package/dist/server/index.d.ts +109 -425
- package/dist/server/index.js +7 -7
- package/package.json +1 -2
package/dist/server/index.d.ts
CHANGED
|
@@ -14,11 +14,6 @@ declare const UserTier: {
|
|
|
14
14
|
readonly TWO: "TWO";
|
|
15
15
|
};
|
|
16
16
|
export type UserTier = (typeof UserTier)[keyof typeof UserTier];
|
|
17
|
-
declare const ProductKind: {
|
|
18
|
-
readonly SUBSCRIPTION: "SUBSCRIPTION";
|
|
19
|
-
readonly IN_APP_PURCHASE: "IN_APP_PURCHASE";
|
|
20
|
-
};
|
|
21
|
-
export type ProductKind = (typeof ProductKind)[keyof typeof ProductKind];
|
|
22
17
|
export type Primitive = string | number | symbol | bigint | boolean | null | undefined;
|
|
23
18
|
export type Scalars = Primitive | Primitive[];
|
|
24
19
|
declare namespace util {
|
|
@@ -1629,6 +1624,10 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1629
1624
|
stopAt: z.ZodOptional<z.ZodString>;
|
|
1630
1625
|
maxExecutions: z.ZodOptional<z.ZodNumber>;
|
|
1631
1626
|
timezone: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
modelOverride: z.ZodOptional<z.ZodEnum<[
|
|
1628
|
+
"standard",
|
|
1629
|
+
"ultra"
|
|
1630
|
+
]>>;
|
|
1632
1631
|
}, "strip", z.ZodTypeAny, {
|
|
1633
1632
|
slug: string;
|
|
1634
1633
|
schedule: string;
|
|
@@ -1639,6 +1638,7 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1639
1638
|
timezone?: string | undefined;
|
|
1640
1639
|
stopAt?: string | undefined;
|
|
1641
1640
|
maxExecutions?: number | undefined;
|
|
1641
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1642
1642
|
}, {
|
|
1643
1643
|
slug: string;
|
|
1644
1644
|
schedule: string;
|
|
@@ -1649,6 +1649,7 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1649
1649
|
isEnabled?: boolean | undefined;
|
|
1650
1650
|
stopAt?: string | undefined;
|
|
1651
1651
|
maxExecutions?: number | undefined;
|
|
1652
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1652
1653
|
}>, "many">;
|
|
1653
1654
|
events: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1654
1655
|
provider: z.ZodNativeEnum<{
|
|
@@ -1671,9 +1672,13 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1671
1672
|
}>;
|
|
1672
1673
|
event: z.ZodString;
|
|
1673
1674
|
handler: z.ZodEffects<z.ZodString, string, string>;
|
|
1674
|
-
slug: z.ZodString
|
|
1675
|
-
name: z.ZodString
|
|
1676
|
-
description: z.ZodString
|
|
1675
|
+
slug: z.ZodDefault<z.ZodString>;
|
|
1676
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1677
|
+
description: z.ZodDefault<z.ZodString>;
|
|
1678
|
+
modelOverride: z.ZodOptional<z.ZodEnum<[
|
|
1679
|
+
"standard",
|
|
1680
|
+
"ultra"
|
|
1681
|
+
]>>;
|
|
1677
1682
|
}, "strip", z.ZodTypeAny, {
|
|
1678
1683
|
description: string;
|
|
1679
1684
|
event: string;
|
|
@@ -1681,13 +1686,15 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1681
1686
|
provider: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1";
|
|
1682
1687
|
slug: string;
|
|
1683
1688
|
handler: string;
|
|
1689
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1684
1690
|
}, {
|
|
1685
|
-
description: string;
|
|
1686
1691
|
event: string;
|
|
1687
|
-
name: string;
|
|
1688
1692
|
provider: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1";
|
|
1689
|
-
slug: string;
|
|
1690
1693
|
handler: string;
|
|
1694
|
+
description?: string | undefined;
|
|
1695
|
+
name?: string | undefined;
|
|
1696
|
+
slug?: string | undefined;
|
|
1697
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1691
1698
|
}>, "many">>;
|
|
1692
1699
|
webhooks: z.ZodDefault<z.ZodArray<z.ZodObject<{
|
|
1693
1700
|
handler: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1709,21 +1716,27 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1709
1716
|
readonly SHOPIFY: "SHOPIFY";
|
|
1710
1717
|
readonly WHOOP: "WHOOP";
|
|
1711
1718
|
}>>>;
|
|
1712
|
-
slug: z.ZodString
|
|
1713
|
-
name: z.ZodString
|
|
1714
|
-
description: z.ZodString
|
|
1719
|
+
slug: z.ZodDefault<z.ZodString>;
|
|
1720
|
+
name: z.ZodDefault<z.ZodString>;
|
|
1721
|
+
description: z.ZodDefault<z.ZodString>;
|
|
1722
|
+
modelOverride: z.ZodOptional<z.ZodEnum<[
|
|
1723
|
+
"standard",
|
|
1724
|
+
"ultra"
|
|
1725
|
+
]>>;
|
|
1715
1726
|
}, "strip", z.ZodTypeAny, {
|
|
1716
1727
|
description: string;
|
|
1717
1728
|
name: string;
|
|
1718
1729
|
slug: string;
|
|
1719
1730
|
handler: string;
|
|
1720
1731
|
provider?: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1" | null | undefined;
|
|
1732
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1721
1733
|
}, {
|
|
1722
|
-
description: string;
|
|
1723
|
-
name: string;
|
|
1724
|
-
slug: string;
|
|
1725
1734
|
handler: string;
|
|
1735
|
+
description?: string | undefined;
|
|
1736
|
+
name?: string | undefined;
|
|
1726
1737
|
provider?: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1" | null | undefined;
|
|
1738
|
+
slug?: string | undefined;
|
|
1739
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1727
1740
|
}>, "many">>;
|
|
1728
1741
|
}, "strip", z.ZodTypeAny, {
|
|
1729
1742
|
webhooks: {
|
|
@@ -1732,6 +1745,7 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1732
1745
|
slug: string;
|
|
1733
1746
|
handler: string;
|
|
1734
1747
|
provider?: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1" | null | undefined;
|
|
1748
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1735
1749
|
}[];
|
|
1736
1750
|
crons: {
|
|
1737
1751
|
slug: string;
|
|
@@ -1743,6 +1757,7 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1743
1757
|
timezone?: string | undefined;
|
|
1744
1758
|
stopAt?: string | undefined;
|
|
1745
1759
|
maxExecutions?: number | undefined;
|
|
1760
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1746
1761
|
}[];
|
|
1747
1762
|
events: {
|
|
1748
1763
|
description: string;
|
|
@@ -1751,6 +1766,7 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1751
1766
|
provider: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1";
|
|
1752
1767
|
slug: string;
|
|
1753
1768
|
handler: string;
|
|
1769
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1754
1770
|
}[];
|
|
1755
1771
|
}, {
|
|
1756
1772
|
crons: {
|
|
@@ -1763,21 +1779,24 @@ export declare const appConfigSchema: z.ZodObject<{
|
|
|
1763
1779
|
isEnabled?: boolean | undefined;
|
|
1764
1780
|
stopAt?: string | undefined;
|
|
1765
1781
|
maxExecutions?: number | undefined;
|
|
1782
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1766
1783
|
}[];
|
|
1767
1784
|
webhooks?: {
|
|
1768
|
-
description: string;
|
|
1769
|
-
name: string;
|
|
1770
|
-
slug: string;
|
|
1771
1785
|
handler: string;
|
|
1786
|
+
description?: string | undefined;
|
|
1787
|
+
name?: string | undefined;
|
|
1772
1788
|
provider?: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1" | null | undefined;
|
|
1789
|
+
slug?: string | undefined;
|
|
1790
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1773
1791
|
}[] | undefined;
|
|
1774
1792
|
events?: {
|
|
1775
|
-
description: string;
|
|
1776
1793
|
event: string;
|
|
1777
|
-
name: string;
|
|
1778
1794
|
provider: "GITHUB_USER" | "GITHUB_BOT" | "GOOGLE" | "SLACK" | "SLACK_BOT" | "DISCORD" | "NOTION" | "TWITTER" | "LINKEDIN" | "YAHOO" | "FIGMA" | "SQUARE" | "SHOPIFY" | "WHOOP" | "PLAID" | "AC1";
|
|
1779
|
-
slug: string;
|
|
1780
1795
|
handler: string;
|
|
1796
|
+
description?: string | undefined;
|
|
1797
|
+
name?: string | undefined;
|
|
1798
|
+
slug?: string | undefined;
|
|
1799
|
+
modelOverride?: "standard" | "ultra" | undefined;
|
|
1781
1800
|
}[] | undefined;
|
|
1782
1801
|
}>;
|
|
1783
1802
|
export type AppConfig = z.infer<typeof appConfigSchema>;
|
|
@@ -1919,11 +1938,12 @@ declare let client: {
|
|
|
1919
1938
|
isDevelopment: boolean | null;
|
|
1920
1939
|
appId?: string | null | undefined;
|
|
1921
1940
|
appFolder?: string | null | undefined;
|
|
1941
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
1922
1942
|
rpcMethod?: string | null | undefined;
|
|
1923
1943
|
requestId?: string | null | undefined;
|
|
1924
1944
|
channelId?: string | null | undefined;
|
|
1925
1945
|
platformUserId?: string | null | undefined;
|
|
1926
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
1946
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
1927
1947
|
agent?: string | null | undefined;
|
|
1928
1948
|
sessionId?: string | null | undefined;
|
|
1929
1949
|
pushToken?: string | null | undefined;
|
|
@@ -1961,11 +1981,12 @@ declare let client: {
|
|
|
1961
1981
|
appId: string | null | undefined;
|
|
1962
1982
|
boxId: string;
|
|
1963
1983
|
appFolder: string | null | undefined;
|
|
1984
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
1964
1985
|
rpcMethod: string | null | undefined;
|
|
1965
1986
|
requestId: string | null | undefined;
|
|
1966
1987
|
channelId: string | null | undefined;
|
|
1967
1988
|
platformUserId: string | null | undefined;
|
|
1968
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
1989
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
1969
1990
|
isDevelopment: boolean | null;
|
|
1970
1991
|
agent: string | null | undefined;
|
|
1971
1992
|
sessionId: string | null | undefined;
|
|
@@ -2012,11 +2033,12 @@ declare let client: {
|
|
|
2012
2033
|
isDevelopment: boolean | null;
|
|
2013
2034
|
appId?: string | null | undefined;
|
|
2014
2035
|
appFolder?: string | null | undefined;
|
|
2036
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2015
2037
|
rpcMethod?: string | null | undefined;
|
|
2016
2038
|
requestId?: string | null | undefined;
|
|
2017
2039
|
channelId?: string | null | undefined;
|
|
2018
2040
|
platformUserId?: string | null | undefined;
|
|
2019
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2041
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2020
2042
|
agent?: string | null | undefined;
|
|
2021
2043
|
sessionId?: string | null | undefined;
|
|
2022
2044
|
pushToken?: string | null | undefined;
|
|
@@ -2054,11 +2076,12 @@ declare let client: {
|
|
|
2054
2076
|
appId: string | null | undefined;
|
|
2055
2077
|
boxId: string;
|
|
2056
2078
|
appFolder: string | null | undefined;
|
|
2079
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2057
2080
|
rpcMethod: string | null | undefined;
|
|
2058
2081
|
requestId: string | null | undefined;
|
|
2059
2082
|
channelId: string | null | undefined;
|
|
2060
2083
|
platformUserId: string | null | undefined;
|
|
2061
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2084
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2062
2085
|
isDevelopment: boolean | null;
|
|
2063
2086
|
agent: string | null | undefined;
|
|
2064
2087
|
sessionId: string | null | undefined;
|
|
@@ -2099,11 +2122,12 @@ declare let client: {
|
|
|
2099
2122
|
isDevelopment: boolean | null;
|
|
2100
2123
|
appId?: string | null | undefined;
|
|
2101
2124
|
appFolder?: string | null | undefined;
|
|
2125
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2102
2126
|
rpcMethod?: string | null | undefined;
|
|
2103
2127
|
requestId?: string | null | undefined;
|
|
2104
2128
|
channelId?: string | null | undefined;
|
|
2105
2129
|
platformUserId?: string | null | undefined;
|
|
2106
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2130
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2107
2131
|
agent?: string | null | undefined;
|
|
2108
2132
|
sessionId?: string | null | undefined;
|
|
2109
2133
|
pushToken?: string | null | undefined;
|
|
@@ -2141,11 +2165,12 @@ declare let client: {
|
|
|
2141
2165
|
appId: string | null | undefined;
|
|
2142
2166
|
boxId: string;
|
|
2143
2167
|
appFolder: string | null | undefined;
|
|
2168
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2144
2169
|
rpcMethod: string | null | undefined;
|
|
2145
2170
|
requestId: string | null | undefined;
|
|
2146
2171
|
channelId: string | null | undefined;
|
|
2147
2172
|
platformUserId: string | null | undefined;
|
|
2148
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2173
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2149
2174
|
isDevelopment: boolean | null;
|
|
2150
2175
|
agent: string | null | undefined;
|
|
2151
2176
|
sessionId: string | null | undefined;
|
|
@@ -2166,6 +2191,7 @@ declare let client: {
|
|
|
2166
2191
|
providers: never[];
|
|
2167
2192
|
userId?: undefined;
|
|
2168
2193
|
tier?: undefined;
|
|
2194
|
+
planName?: undefined;
|
|
2169
2195
|
handle?: undefined;
|
|
2170
2196
|
credits?: undefined;
|
|
2171
2197
|
} | {
|
|
@@ -2173,6 +2199,7 @@ declare let client: {
|
|
|
2173
2199
|
error: null;
|
|
2174
2200
|
providers: never[];
|
|
2175
2201
|
tier?: undefined;
|
|
2202
|
+
planName?: undefined;
|
|
2176
2203
|
handle?: undefined;
|
|
2177
2204
|
credits?: undefined;
|
|
2178
2205
|
} | {
|
|
@@ -2180,6 +2207,7 @@ declare let client: {
|
|
|
2180
2207
|
error: null;
|
|
2181
2208
|
providers: AuthProvider[];
|
|
2182
2209
|
tier: UserTier | null;
|
|
2210
|
+
planName: string | null;
|
|
2183
2211
|
handle: string | null;
|
|
2184
2212
|
credits: {
|
|
2185
2213
|
available: number;
|
|
@@ -2188,6 +2216,8 @@ declare let client: {
|
|
|
2188
2216
|
promotional: number;
|
|
2189
2217
|
nextDailyRefresh: Date;
|
|
2190
2218
|
nextMonthlyRefresh: Date;
|
|
2219
|
+
paygSpendLimitCents: number | null;
|
|
2220
|
+
paygSpendUsedCents: number;
|
|
2191
2221
|
} | null;
|
|
2192
2222
|
}>>;
|
|
2193
2223
|
};
|
|
@@ -2213,11 +2243,12 @@ declare let client: {
|
|
|
2213
2243
|
isDevelopment: boolean | null;
|
|
2214
2244
|
appId?: string | null | undefined;
|
|
2215
2245
|
appFolder?: string | null | undefined;
|
|
2246
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2216
2247
|
rpcMethod?: string | null | undefined;
|
|
2217
2248
|
requestId?: string | null | undefined;
|
|
2218
2249
|
channelId?: string | null | undefined;
|
|
2219
2250
|
platformUserId?: string | null | undefined;
|
|
2220
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2251
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2221
2252
|
agent?: string | null | undefined;
|
|
2222
2253
|
sessionId?: string | null | undefined;
|
|
2223
2254
|
pushToken?: string | null | undefined;
|
|
@@ -2255,11 +2286,12 @@ declare let client: {
|
|
|
2255
2286
|
appId: string | null | undefined;
|
|
2256
2287
|
boxId: string;
|
|
2257
2288
|
appFolder: string | null | undefined;
|
|
2289
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2258
2290
|
rpcMethod: string | null | undefined;
|
|
2259
2291
|
requestId: string | null | undefined;
|
|
2260
2292
|
channelId: string | null | undefined;
|
|
2261
2293
|
platformUserId: string | null | undefined;
|
|
2262
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2294
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2263
2295
|
isDevelopment: boolean | null;
|
|
2264
2296
|
agent: string | null | undefined;
|
|
2265
2297
|
sessionId: string | null | undefined;
|
|
@@ -2303,11 +2335,12 @@ declare let client: {
|
|
|
2303
2335
|
isDevelopment: boolean | null;
|
|
2304
2336
|
appId?: string | null | undefined;
|
|
2305
2337
|
appFolder?: string | null | undefined;
|
|
2338
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2306
2339
|
rpcMethod?: string | null | undefined;
|
|
2307
2340
|
requestId?: string | null | undefined;
|
|
2308
2341
|
channelId?: string | null | undefined;
|
|
2309
2342
|
platformUserId?: string | null | undefined;
|
|
2310
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2343
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2311
2344
|
agent?: string | null | undefined;
|
|
2312
2345
|
sessionId?: string | null | undefined;
|
|
2313
2346
|
pushToken?: string | null | undefined;
|
|
@@ -2345,406 +2378,39 @@ declare let client: {
|
|
|
2345
2378
|
appId: string | null | undefined;
|
|
2346
2379
|
boxId: string;
|
|
2347
2380
|
appFolder: string | null | undefined;
|
|
2381
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2348
2382
|
rpcMethod: string | null | undefined;
|
|
2349
2383
|
requestId: string | null | undefined;
|
|
2350
2384
|
channelId: string | null | undefined;
|
|
2351
2385
|
platformUserId: string | null | undefined;
|
|
2352
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2386
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2353
2387
|
isDevelopment: boolean | null;
|
|
2354
2388
|
agent: string | null | undefined;
|
|
2355
2389
|
sessionId: string | null | undefined;
|
|
2356
2390
|
pushToken: string | null | undefined;
|
|
2357
2391
|
};
|
|
2358
2392
|
_input_in: {
|
|
2359
|
-
appId: string;
|
|
2360
2393
|
email: string;
|
|
2361
|
-
subject: string;
|
|
2362
2394
|
markdown: string;
|
|
2395
|
+
appId?: string | undefined;
|
|
2396
|
+
subject?: string | undefined;
|
|
2363
2397
|
unauthenticatedLinks?: boolean | undefined;
|
|
2364
|
-
aclLevel?: "VIEWER" | undefined;
|
|
2398
|
+
aclLevel?: "EDITOR" | "VIEWER" | undefined;
|
|
2365
2399
|
};
|
|
2366
2400
|
_input_out: {
|
|
2367
|
-
appId: string;
|
|
2368
2401
|
email: string;
|
|
2369
|
-
subject: string;
|
|
2370
2402
|
markdown: string;
|
|
2371
|
-
aclLevel: "VIEWER";
|
|
2372
|
-
unauthenticatedLinks?: boolean | undefined;
|
|
2373
|
-
};
|
|
2374
|
-
_output_in: typeof _trpc_server.unsetMarker;
|
|
2375
|
-
_output_out: typeof _trpc_server.unsetMarker;
|
|
2376
|
-
}, {
|
|
2377
|
-
id: string;
|
|
2378
|
-
}>>;
|
|
2379
|
-
};
|
|
2380
|
-
createProduct: {
|
|
2381
|
-
mutate: _trpc_client.Resolver<_trpc_server.BuildProcedure<"mutation", {
|
|
2382
|
-
_config: _trpc_server.RootConfig<{
|
|
2383
|
-
ctx: {
|
|
2384
|
-
appId: string;
|
|
2385
|
-
versionId: string;
|
|
2386
|
-
appName: string;
|
|
2387
|
-
appSubdomain: string;
|
|
2388
|
-
userId: string;
|
|
2389
|
-
isTesting: boolean;
|
|
2390
|
-
rpcMethod: string;
|
|
2391
|
-
requestId: string;
|
|
2392
|
-
type?: undefined;
|
|
2393
|
-
dbUrl?: string | null | undefined;
|
|
2394
|
-
userIdActual?: string | null | undefined;
|
|
2395
|
-
channelId?: string | null | undefined;
|
|
2396
|
-
} | {
|
|
2397
|
-
type: "BOXMAN_REQUEST";
|
|
2398
|
-
boxId: string;
|
|
2399
|
-
isDevelopment: boolean | null;
|
|
2400
|
-
appId?: string | null | undefined;
|
|
2401
|
-
appFolder?: string | null | undefined;
|
|
2402
|
-
rpcMethod?: string | null | undefined;
|
|
2403
|
-
requestId?: string | null | undefined;
|
|
2404
|
-
channelId?: string | null | undefined;
|
|
2405
|
-
platformUserId?: string | null | undefined;
|
|
2406
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2407
|
-
agent?: string | null | undefined;
|
|
2408
|
-
sessionId?: string | null | undefined;
|
|
2409
|
-
pushToken?: string | null | undefined;
|
|
2410
|
-
};
|
|
2411
|
-
meta: object;
|
|
2412
|
-
errorShape: {
|
|
2413
|
-
data: {
|
|
2414
|
-
zodError: typeToFlattenedError<any, string> | null;
|
|
2415
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_KEY;
|
|
2416
|
-
httpStatus: number;
|
|
2417
|
-
path?: string;
|
|
2418
|
-
stack?: string;
|
|
2419
|
-
};
|
|
2420
|
-
message: string;
|
|
2421
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
|
|
2422
|
-
};
|
|
2423
|
-
transformer: typeof superjson;
|
|
2424
|
-
}>;
|
|
2425
|
-
_meta: object;
|
|
2426
|
-
_ctx_out: {
|
|
2427
|
-
type: undefined;
|
|
2428
|
-
appId: string;
|
|
2429
|
-
versionId: string;
|
|
2430
|
-
dbUrl: string | null | undefined;
|
|
2431
|
-
appName: string;
|
|
2432
|
-
appSubdomain: string;
|
|
2433
|
-
userId: string;
|
|
2434
|
-
userIdActual: string | null | undefined;
|
|
2435
|
-
isTesting: boolean;
|
|
2436
|
-
rpcMethod: string;
|
|
2437
|
-
requestId: string;
|
|
2438
|
-
channelId: string | null | undefined;
|
|
2439
|
-
} | {
|
|
2440
|
-
type: "BOXMAN_REQUEST";
|
|
2441
|
-
appId: string | null | undefined;
|
|
2442
|
-
boxId: string;
|
|
2443
|
-
appFolder: string | null | undefined;
|
|
2444
|
-
rpcMethod: string | null | undefined;
|
|
2445
|
-
requestId: string | null | undefined;
|
|
2446
|
-
channelId: string | null | undefined;
|
|
2447
|
-
platformUserId: string | null | undefined;
|
|
2448
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2449
|
-
isDevelopment: boolean | null;
|
|
2450
|
-
agent: string | null | undefined;
|
|
2451
|
-
sessionId: string | null | undefined;
|
|
2452
|
-
pushToken: string | null | undefined;
|
|
2453
|
-
};
|
|
2454
|
-
_input_in: {
|
|
2455
|
-
name: string;
|
|
2456
|
-
description: string;
|
|
2457
|
-
kind: "IN_APP_PURCHASE" | "SUBSCRIPTION";
|
|
2458
|
-
price: number;
|
|
2459
|
-
appId?: string | undefined;
|
|
2460
|
-
};
|
|
2461
|
-
_input_out: {
|
|
2462
|
-
name: string;
|
|
2463
|
-
description: string;
|
|
2464
|
-
kind: "IN_APP_PURCHASE" | "SUBSCRIPTION";
|
|
2465
|
-
price: number;
|
|
2403
|
+
aclLevel: "EDITOR" | "VIEWER";
|
|
2466
2404
|
appId?: string | undefined;
|
|
2405
|
+
subject?: string | undefined;
|
|
2406
|
+
unauthenticatedLinks?: boolean | undefined;
|
|
2467
2407
|
};
|
|
2468
2408
|
_output_in: typeof _trpc_server.unsetMarker;
|
|
2469
2409
|
_output_out: typeof _trpc_server.unsetMarker;
|
|
2470
2410
|
}, {
|
|
2471
|
-
purchaseLink: string;
|
|
2472
2411
|
id: string;
|
|
2473
|
-
name: string;
|
|
2474
|
-
description: string;
|
|
2475
|
-
kind: ProductKind;
|
|
2476
|
-
price: number;
|
|
2477
2412
|
}>>;
|
|
2478
2413
|
};
|
|
2479
|
-
listProducts: {
|
|
2480
|
-
mutate: _trpc_client.Resolver<_trpc_server.BuildProcedure<"mutation", {
|
|
2481
|
-
_config: _trpc_server.RootConfig<{
|
|
2482
|
-
ctx: {
|
|
2483
|
-
appId: string;
|
|
2484
|
-
versionId: string;
|
|
2485
|
-
appName: string;
|
|
2486
|
-
appSubdomain: string;
|
|
2487
|
-
userId: string;
|
|
2488
|
-
isTesting: boolean;
|
|
2489
|
-
rpcMethod: string;
|
|
2490
|
-
requestId: string;
|
|
2491
|
-
type?: undefined;
|
|
2492
|
-
dbUrl?: string | null | undefined;
|
|
2493
|
-
userIdActual?: string | null | undefined;
|
|
2494
|
-
channelId?: string | null | undefined;
|
|
2495
|
-
} | {
|
|
2496
|
-
type: "BOXMAN_REQUEST";
|
|
2497
|
-
boxId: string;
|
|
2498
|
-
isDevelopment: boolean | null;
|
|
2499
|
-
appId?: string | null | undefined;
|
|
2500
|
-
appFolder?: string | null | undefined;
|
|
2501
|
-
rpcMethod?: string | null | undefined;
|
|
2502
|
-
requestId?: string | null | undefined;
|
|
2503
|
-
channelId?: string | null | undefined;
|
|
2504
|
-
platformUserId?: string | null | undefined;
|
|
2505
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2506
|
-
agent?: string | null | undefined;
|
|
2507
|
-
sessionId?: string | null | undefined;
|
|
2508
|
-
pushToken?: string | null | undefined;
|
|
2509
|
-
};
|
|
2510
|
-
meta: object;
|
|
2511
|
-
errorShape: {
|
|
2512
|
-
data: {
|
|
2513
|
-
zodError: typeToFlattenedError<any, string> | null;
|
|
2514
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_KEY;
|
|
2515
|
-
httpStatus: number;
|
|
2516
|
-
path?: string;
|
|
2517
|
-
stack?: string;
|
|
2518
|
-
};
|
|
2519
|
-
message: string;
|
|
2520
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
|
|
2521
|
-
};
|
|
2522
|
-
transformer: typeof superjson;
|
|
2523
|
-
}>;
|
|
2524
|
-
_meta: object;
|
|
2525
|
-
_ctx_out: {
|
|
2526
|
-
type: undefined;
|
|
2527
|
-
appId: string;
|
|
2528
|
-
versionId: string;
|
|
2529
|
-
dbUrl: string | null | undefined;
|
|
2530
|
-
appName: string;
|
|
2531
|
-
appSubdomain: string;
|
|
2532
|
-
userId: string;
|
|
2533
|
-
userIdActual: string | null | undefined;
|
|
2534
|
-
isTesting: boolean;
|
|
2535
|
-
rpcMethod: string;
|
|
2536
|
-
requestId: string;
|
|
2537
|
-
channelId: string | null | undefined;
|
|
2538
|
-
} | {
|
|
2539
|
-
type: "BOXMAN_REQUEST";
|
|
2540
|
-
appId: string | null | undefined;
|
|
2541
|
-
boxId: string;
|
|
2542
|
-
appFolder: string | null | undefined;
|
|
2543
|
-
rpcMethod: string | null | undefined;
|
|
2544
|
-
requestId: string | null | undefined;
|
|
2545
|
-
channelId: string | null | undefined;
|
|
2546
|
-
platformUserId: string | null | undefined;
|
|
2547
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2548
|
-
isDevelopment: boolean | null;
|
|
2549
|
-
agent: string | null | undefined;
|
|
2550
|
-
sessionId: string | null | undefined;
|
|
2551
|
-
pushToken: string | null | undefined;
|
|
2552
|
-
};
|
|
2553
|
-
_input_in: {
|
|
2554
|
-
appId?: string | undefined;
|
|
2555
|
-
} | undefined;
|
|
2556
|
-
_input_out: {
|
|
2557
|
-
appId?: string | undefined;
|
|
2558
|
-
} | undefined;
|
|
2559
|
-
_output_in: typeof _trpc_server.unsetMarker;
|
|
2560
|
-
_output_out: typeof _trpc_server.unsetMarker;
|
|
2561
|
-
}, {
|
|
2562
|
-
purchaseLink: string;
|
|
2563
|
-
id: string;
|
|
2564
|
-
name: string;
|
|
2565
|
-
description: string;
|
|
2566
|
-
kind: ProductKind;
|
|
2567
|
-
price: number;
|
|
2568
|
-
}[]>>;
|
|
2569
|
-
};
|
|
2570
|
-
listUserPurchases: {
|
|
2571
|
-
mutate: _trpc_client.Resolver<_trpc_server.BuildProcedure<"mutation", {
|
|
2572
|
-
_config: _trpc_server.RootConfig<{
|
|
2573
|
-
ctx: {
|
|
2574
|
-
appId: string;
|
|
2575
|
-
versionId: string;
|
|
2576
|
-
appName: string;
|
|
2577
|
-
appSubdomain: string;
|
|
2578
|
-
userId: string;
|
|
2579
|
-
isTesting: boolean;
|
|
2580
|
-
rpcMethod: string;
|
|
2581
|
-
requestId: string;
|
|
2582
|
-
type?: undefined;
|
|
2583
|
-
dbUrl?: string | null | undefined;
|
|
2584
|
-
userIdActual?: string | null | undefined;
|
|
2585
|
-
channelId?: string | null | undefined;
|
|
2586
|
-
} | {
|
|
2587
|
-
type: "BOXMAN_REQUEST";
|
|
2588
|
-
boxId: string;
|
|
2589
|
-
isDevelopment: boolean | null;
|
|
2590
|
-
appId?: string | null | undefined;
|
|
2591
|
-
appFolder?: string | null | undefined;
|
|
2592
|
-
rpcMethod?: string | null | undefined;
|
|
2593
|
-
requestId?: string | null | undefined;
|
|
2594
|
-
channelId?: string | null | undefined;
|
|
2595
|
-
platformUserId?: string | null | undefined;
|
|
2596
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2597
|
-
agent?: string | null | undefined;
|
|
2598
|
-
sessionId?: string | null | undefined;
|
|
2599
|
-
pushToken?: string | null | undefined;
|
|
2600
|
-
};
|
|
2601
|
-
meta: object;
|
|
2602
|
-
errorShape: {
|
|
2603
|
-
data: {
|
|
2604
|
-
zodError: typeToFlattenedError<any, string> | null;
|
|
2605
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_KEY;
|
|
2606
|
-
httpStatus: number;
|
|
2607
|
-
path?: string;
|
|
2608
|
-
stack?: string;
|
|
2609
|
-
};
|
|
2610
|
-
message: string;
|
|
2611
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
|
|
2612
|
-
};
|
|
2613
|
-
transformer: typeof superjson;
|
|
2614
|
-
}>;
|
|
2615
|
-
_meta: object;
|
|
2616
|
-
_ctx_out: {
|
|
2617
|
-
type: undefined;
|
|
2618
|
-
appId: string;
|
|
2619
|
-
versionId: string;
|
|
2620
|
-
dbUrl: string | null | undefined;
|
|
2621
|
-
appName: string;
|
|
2622
|
-
appSubdomain: string;
|
|
2623
|
-
userId: string;
|
|
2624
|
-
userIdActual: string | null | undefined;
|
|
2625
|
-
isTesting: boolean;
|
|
2626
|
-
rpcMethod: string;
|
|
2627
|
-
requestId: string;
|
|
2628
|
-
channelId: string | null | undefined;
|
|
2629
|
-
} | {
|
|
2630
|
-
type: "BOXMAN_REQUEST";
|
|
2631
|
-
appId: string | null | undefined;
|
|
2632
|
-
boxId: string;
|
|
2633
|
-
appFolder: string | null | undefined;
|
|
2634
|
-
rpcMethod: string | null | undefined;
|
|
2635
|
-
requestId: string | null | undefined;
|
|
2636
|
-
channelId: string | null | undefined;
|
|
2637
|
-
platformUserId: string | null | undefined;
|
|
2638
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2639
|
-
isDevelopment: boolean | null;
|
|
2640
|
-
agent: string | null | undefined;
|
|
2641
|
-
sessionId: string | null | undefined;
|
|
2642
|
-
pushToken: string | null | undefined;
|
|
2643
|
-
};
|
|
2644
|
-
_input_in: {
|
|
2645
|
-
appId?: string | undefined;
|
|
2646
|
-
userId?: string | undefined;
|
|
2647
|
-
} | undefined;
|
|
2648
|
-
_input_out: {
|
|
2649
|
-
appId?: string | undefined;
|
|
2650
|
-
userId?: string | undefined;
|
|
2651
|
-
} | undefined;
|
|
2652
|
-
_output_in: typeof _trpc_server.unsetMarker;
|
|
2653
|
-
_output_out: typeof _trpc_server.unsetMarker;
|
|
2654
|
-
}, {
|
|
2655
|
-
id: string;
|
|
2656
|
-
name: string;
|
|
2657
|
-
description: string;
|
|
2658
|
-
kind: ProductKind;
|
|
2659
|
-
price: number;
|
|
2660
|
-
}[]>>;
|
|
2661
|
-
};
|
|
2662
|
-
discontinueProduct: {
|
|
2663
|
-
mutate: _trpc_client.Resolver<_trpc_server.BuildProcedure<"mutation", {
|
|
2664
|
-
_config: _trpc_server.RootConfig<{
|
|
2665
|
-
ctx: {
|
|
2666
|
-
appId: string;
|
|
2667
|
-
versionId: string;
|
|
2668
|
-
appName: string;
|
|
2669
|
-
appSubdomain: string;
|
|
2670
|
-
userId: string;
|
|
2671
|
-
isTesting: boolean;
|
|
2672
|
-
rpcMethod: string;
|
|
2673
|
-
requestId: string;
|
|
2674
|
-
type?: undefined;
|
|
2675
|
-
dbUrl?: string | null | undefined;
|
|
2676
|
-
userIdActual?: string | null | undefined;
|
|
2677
|
-
channelId?: string | null | undefined;
|
|
2678
|
-
} | {
|
|
2679
|
-
type: "BOXMAN_REQUEST";
|
|
2680
|
-
boxId: string;
|
|
2681
|
-
isDevelopment: boolean | null;
|
|
2682
|
-
appId?: string | null | undefined;
|
|
2683
|
-
appFolder?: string | null | undefined;
|
|
2684
|
-
rpcMethod?: string | null | undefined;
|
|
2685
|
-
requestId?: string | null | undefined;
|
|
2686
|
-
channelId?: string | null | undefined;
|
|
2687
|
-
platformUserId?: string | null | undefined;
|
|
2688
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2689
|
-
agent?: string | null | undefined;
|
|
2690
|
-
sessionId?: string | null | undefined;
|
|
2691
|
-
pushToken?: string | null | undefined;
|
|
2692
|
-
};
|
|
2693
|
-
meta: object;
|
|
2694
|
-
errorShape: {
|
|
2695
|
-
data: {
|
|
2696
|
-
zodError: typeToFlattenedError<any, string> | null;
|
|
2697
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_KEY;
|
|
2698
|
-
httpStatus: number;
|
|
2699
|
-
path?: string;
|
|
2700
|
-
stack?: string;
|
|
2701
|
-
};
|
|
2702
|
-
message: string;
|
|
2703
|
-
code: _trpc_server_rpc.TRPC_ERROR_CODE_NUMBER;
|
|
2704
|
-
};
|
|
2705
|
-
transformer: typeof superjson;
|
|
2706
|
-
}>;
|
|
2707
|
-
_meta: object;
|
|
2708
|
-
_ctx_out: {
|
|
2709
|
-
type: undefined;
|
|
2710
|
-
appId: string;
|
|
2711
|
-
versionId: string;
|
|
2712
|
-
dbUrl: string | null | undefined;
|
|
2713
|
-
appName: string;
|
|
2714
|
-
appSubdomain: string;
|
|
2715
|
-
userId: string;
|
|
2716
|
-
userIdActual: string | null | undefined;
|
|
2717
|
-
isTesting: boolean;
|
|
2718
|
-
rpcMethod: string;
|
|
2719
|
-
requestId: string;
|
|
2720
|
-
channelId: string | null | undefined;
|
|
2721
|
-
} | {
|
|
2722
|
-
type: "BOXMAN_REQUEST";
|
|
2723
|
-
appId: string | null | undefined;
|
|
2724
|
-
boxId: string;
|
|
2725
|
-
appFolder: string | null | undefined;
|
|
2726
|
-
rpcMethod: string | null | undefined;
|
|
2727
|
-
requestId: string | null | undefined;
|
|
2728
|
-
channelId: string | null | undefined;
|
|
2729
|
-
platformUserId: string | null | undefined;
|
|
2730
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2731
|
-
isDevelopment: boolean | null;
|
|
2732
|
-
agent: string | null | undefined;
|
|
2733
|
-
sessionId: string | null | undefined;
|
|
2734
|
-
pushToken: string | null | undefined;
|
|
2735
|
-
};
|
|
2736
|
-
_input_in: {
|
|
2737
|
-
productId: string;
|
|
2738
|
-
appId?: string | undefined;
|
|
2739
|
-
};
|
|
2740
|
-
_input_out: {
|
|
2741
|
-
productId: string;
|
|
2742
|
-
appId?: string | undefined;
|
|
2743
|
-
};
|
|
2744
|
-
_output_in: typeof _trpc_server.unsetMarker;
|
|
2745
|
-
_output_out: typeof _trpc_server.unsetMarker;
|
|
2746
|
-
}, void>>;
|
|
2747
|
-
};
|
|
2748
2414
|
browseWeb: {
|
|
2749
2415
|
mutate: _trpc_client.Resolver<_trpc_server.BuildProcedure<"mutation", {
|
|
2750
2416
|
_config: _trpc_server.RootConfig<{
|
|
@@ -2767,11 +2433,12 @@ declare let client: {
|
|
|
2767
2433
|
isDevelopment: boolean | null;
|
|
2768
2434
|
appId?: string | null | undefined;
|
|
2769
2435
|
appFolder?: string | null | undefined;
|
|
2436
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2770
2437
|
rpcMethod?: string | null | undefined;
|
|
2771
2438
|
requestId?: string | null | undefined;
|
|
2772
2439
|
channelId?: string | null | undefined;
|
|
2773
2440
|
platformUserId?: string | null | undefined;
|
|
2774
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2441
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2775
2442
|
agent?: string | null | undefined;
|
|
2776
2443
|
sessionId?: string | null | undefined;
|
|
2777
2444
|
pushToken?: string | null | undefined;
|
|
@@ -2809,11 +2476,12 @@ declare let client: {
|
|
|
2809
2476
|
appId: string | null | undefined;
|
|
2810
2477
|
boxId: string;
|
|
2811
2478
|
appFolder: string | null | undefined;
|
|
2479
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2812
2480
|
rpcMethod: string | null | undefined;
|
|
2813
2481
|
requestId: string | null | undefined;
|
|
2814
2482
|
channelId: string | null | undefined;
|
|
2815
2483
|
platformUserId: string | null | undefined;
|
|
2816
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2484
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2817
2485
|
isDevelopment: boolean | null;
|
|
2818
2486
|
agent: string | null | undefined;
|
|
2819
2487
|
sessionId: string | null | undefined;
|
|
@@ -2881,11 +2549,12 @@ declare let client: {
|
|
|
2881
2549
|
isDevelopment: boolean | null;
|
|
2882
2550
|
appId?: string | null | undefined;
|
|
2883
2551
|
appFolder?: string | null | undefined;
|
|
2552
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2884
2553
|
rpcMethod?: string | null | undefined;
|
|
2885
2554
|
requestId?: string | null | undefined;
|
|
2886
2555
|
channelId?: string | null | undefined;
|
|
2887
2556
|
platformUserId?: string | null | undefined;
|
|
2888
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2557
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2889
2558
|
agent?: string | null | undefined;
|
|
2890
2559
|
sessionId?: string | null | undefined;
|
|
2891
2560
|
pushToken?: string | null | undefined;
|
|
@@ -2923,11 +2592,12 @@ declare let client: {
|
|
|
2923
2592
|
appId: string | null | undefined;
|
|
2924
2593
|
boxId: string;
|
|
2925
2594
|
appFolder: string | null | undefined;
|
|
2595
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
2926
2596
|
rpcMethod: string | null | undefined;
|
|
2927
2597
|
requestId: string | null | undefined;
|
|
2928
2598
|
channelId: string | null | undefined;
|
|
2929
2599
|
platformUserId: string | null | undefined;
|
|
2930
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2600
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2931
2601
|
isDevelopment: boolean | null;
|
|
2932
2602
|
agent: string | null | undefined;
|
|
2933
2603
|
sessionId: string | null | undefined;
|
|
@@ -2971,11 +2641,12 @@ declare let client: {
|
|
|
2971
2641
|
isDevelopment: boolean | null;
|
|
2972
2642
|
appId?: string | null | undefined;
|
|
2973
2643
|
appFolder?: string | null | undefined;
|
|
2644
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
2974
2645
|
rpcMethod?: string | null | undefined;
|
|
2975
2646
|
requestId?: string | null | undefined;
|
|
2976
2647
|
channelId?: string | null | undefined;
|
|
2977
2648
|
platformUserId?: string | null | undefined;
|
|
2978
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2649
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
2979
2650
|
agent?: string | null | undefined;
|
|
2980
2651
|
sessionId?: string | null | undefined;
|
|
2981
2652
|
pushToken?: string | null | undefined;
|
|
@@ -3013,11 +2684,12 @@ declare let client: {
|
|
|
3013
2684
|
appId: string | null | undefined;
|
|
3014
2685
|
boxId: string;
|
|
3015
2686
|
appFolder: string | null | undefined;
|
|
2687
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3016
2688
|
rpcMethod: string | null | undefined;
|
|
3017
2689
|
requestId: string | null | undefined;
|
|
3018
2690
|
channelId: string | null | undefined;
|
|
3019
2691
|
platformUserId: string | null | undefined;
|
|
3020
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2692
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3021
2693
|
isDevelopment: boolean | null;
|
|
3022
2694
|
agent: string | null | undefined;
|
|
3023
2695
|
sessionId: string | null | undefined;
|
|
@@ -3061,11 +2733,12 @@ declare let client: {
|
|
|
3061
2733
|
isDevelopment: boolean | null;
|
|
3062
2734
|
appId?: string | null | undefined;
|
|
3063
2735
|
appFolder?: string | null | undefined;
|
|
2736
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3064
2737
|
rpcMethod?: string | null | undefined;
|
|
3065
2738
|
requestId?: string | null | undefined;
|
|
3066
2739
|
channelId?: string | null | undefined;
|
|
3067
2740
|
platformUserId?: string | null | undefined;
|
|
3068
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2741
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3069
2742
|
agent?: string | null | undefined;
|
|
3070
2743
|
sessionId?: string | null | undefined;
|
|
3071
2744
|
pushToken?: string | null | undefined;
|
|
@@ -3103,11 +2776,12 @@ declare let client: {
|
|
|
3103
2776
|
appId: string | null | undefined;
|
|
3104
2777
|
boxId: string;
|
|
3105
2778
|
appFolder: string | null | undefined;
|
|
2779
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3106
2780
|
rpcMethod: string | null | undefined;
|
|
3107
2781
|
requestId: string | null | undefined;
|
|
3108
2782
|
channelId: string | null | undefined;
|
|
3109
2783
|
platformUserId: string | null | undefined;
|
|
3110
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2784
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3111
2785
|
isDevelopment: boolean | null;
|
|
3112
2786
|
agent: string | null | undefined;
|
|
3113
2787
|
sessionId: string | null | undefined;
|
|
@@ -3157,11 +2831,12 @@ declare let client: {
|
|
|
3157
2831
|
isDevelopment: boolean | null;
|
|
3158
2832
|
appId?: string | null | undefined;
|
|
3159
2833
|
appFolder?: string | null | undefined;
|
|
2834
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3160
2835
|
rpcMethod?: string | null | undefined;
|
|
3161
2836
|
requestId?: string | null | undefined;
|
|
3162
2837
|
channelId?: string | null | undefined;
|
|
3163
2838
|
platformUserId?: string | null | undefined;
|
|
3164
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2839
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3165
2840
|
agent?: string | null | undefined;
|
|
3166
2841
|
sessionId?: string | null | undefined;
|
|
3167
2842
|
pushToken?: string | null | undefined;
|
|
@@ -3199,11 +2874,12 @@ declare let client: {
|
|
|
3199
2874
|
appId: string | null | undefined;
|
|
3200
2875
|
boxId: string;
|
|
3201
2876
|
appFolder: string | null | undefined;
|
|
2877
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3202
2878
|
rpcMethod: string | null | undefined;
|
|
3203
2879
|
requestId: string | null | undefined;
|
|
3204
2880
|
channelId: string | null | undefined;
|
|
3205
2881
|
platformUserId: string | null | undefined;
|
|
3206
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2882
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3207
2883
|
isDevelopment: boolean | null;
|
|
3208
2884
|
agent: string | null | undefined;
|
|
3209
2885
|
sessionId: string | null | undefined;
|
|
@@ -3271,11 +2947,12 @@ declare let client: {
|
|
|
3271
2947
|
isDevelopment: boolean | null;
|
|
3272
2948
|
appId?: string | null | undefined;
|
|
3273
2949
|
appFolder?: string | null | undefined;
|
|
2950
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3274
2951
|
rpcMethod?: string | null | undefined;
|
|
3275
2952
|
requestId?: string | null | undefined;
|
|
3276
2953
|
channelId?: string | null | undefined;
|
|
3277
2954
|
platformUserId?: string | null | undefined;
|
|
3278
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
2955
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3279
2956
|
agent?: string | null | undefined;
|
|
3280
2957
|
sessionId?: string | null | undefined;
|
|
3281
2958
|
pushToken?: string | null | undefined;
|
|
@@ -3313,11 +2990,12 @@ declare let client: {
|
|
|
3313
2990
|
appId: string | null | undefined;
|
|
3314
2991
|
boxId: string;
|
|
3315
2992
|
appFolder: string | null | undefined;
|
|
2993
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3316
2994
|
rpcMethod: string | null | undefined;
|
|
3317
2995
|
requestId: string | null | undefined;
|
|
3318
2996
|
channelId: string | null | undefined;
|
|
3319
2997
|
platformUserId: string | null | undefined;
|
|
3320
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
2998
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3321
2999
|
isDevelopment: boolean | null;
|
|
3322
3000
|
agent: string | null | undefined;
|
|
3323
3001
|
sessionId: string | null | undefined;
|
|
@@ -3372,11 +3050,12 @@ declare let client: {
|
|
|
3372
3050
|
isDevelopment: boolean | null;
|
|
3373
3051
|
appId?: string | null | undefined;
|
|
3374
3052
|
appFolder?: string | null | undefined;
|
|
3053
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3375
3054
|
rpcMethod?: string | null | undefined;
|
|
3376
3055
|
requestId?: string | null | undefined;
|
|
3377
3056
|
channelId?: string | null | undefined;
|
|
3378
3057
|
platformUserId?: string | null | undefined;
|
|
3379
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3058
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3380
3059
|
agent?: string | null | undefined;
|
|
3381
3060
|
sessionId?: string | null | undefined;
|
|
3382
3061
|
pushToken?: string | null | undefined;
|
|
@@ -3414,11 +3093,12 @@ declare let client: {
|
|
|
3414
3093
|
appId: string | null | undefined;
|
|
3415
3094
|
boxId: string;
|
|
3416
3095
|
appFolder: string | null | undefined;
|
|
3096
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3417
3097
|
rpcMethod: string | null | undefined;
|
|
3418
3098
|
requestId: string | null | undefined;
|
|
3419
3099
|
channelId: string | null | undefined;
|
|
3420
3100
|
platformUserId: string | null | undefined;
|
|
3421
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3101
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3422
3102
|
isDevelopment: boolean | null;
|
|
3423
3103
|
agent: string | null | undefined;
|
|
3424
3104
|
sessionId: string | null | undefined;
|
|
@@ -3462,11 +3142,12 @@ declare let client: {
|
|
|
3462
3142
|
isDevelopment: boolean | null;
|
|
3463
3143
|
appId?: string | null | undefined;
|
|
3464
3144
|
appFolder?: string | null | undefined;
|
|
3145
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3465
3146
|
rpcMethod?: string | null | undefined;
|
|
3466
3147
|
requestId?: string | null | undefined;
|
|
3467
3148
|
channelId?: string | null | undefined;
|
|
3468
3149
|
platformUserId?: string | null | undefined;
|
|
3469
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3150
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3470
3151
|
agent?: string | null | undefined;
|
|
3471
3152
|
sessionId?: string | null | undefined;
|
|
3472
3153
|
pushToken?: string | null | undefined;
|
|
@@ -3504,11 +3185,12 @@ declare let client: {
|
|
|
3504
3185
|
appId: string | null | undefined;
|
|
3505
3186
|
boxId: string;
|
|
3506
3187
|
appFolder: string | null | undefined;
|
|
3188
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3507
3189
|
rpcMethod: string | null | undefined;
|
|
3508
3190
|
requestId: string | null | undefined;
|
|
3509
3191
|
channelId: string | null | undefined;
|
|
3510
3192
|
platformUserId: string | null | undefined;
|
|
3511
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3193
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3512
3194
|
isDevelopment: boolean | null;
|
|
3513
3195
|
agent: string | null | undefined;
|
|
3514
3196
|
sessionId: string | null | undefined;
|
|
@@ -3544,11 +3226,12 @@ declare let client: {
|
|
|
3544
3226
|
isDevelopment: boolean | null;
|
|
3545
3227
|
appId?: string | null | undefined;
|
|
3546
3228
|
appFolder?: string | null | undefined;
|
|
3229
|
+
modelOverride?: "standard" | "ultra" | null | undefined;
|
|
3547
3230
|
rpcMethod?: string | null | undefined;
|
|
3548
3231
|
requestId?: string | null | undefined;
|
|
3549
3232
|
channelId?: string | null | undefined;
|
|
3550
3233
|
platformUserId?: string | null | undefined;
|
|
3551
|
-
invocationTrigger?: "user" | "scheduled" | null | undefined;
|
|
3234
|
+
invocationTrigger?: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3552
3235
|
agent?: string | null | undefined;
|
|
3553
3236
|
sessionId?: string | null | undefined;
|
|
3554
3237
|
pushToken?: string | null | undefined;
|
|
@@ -3586,11 +3269,12 @@ declare let client: {
|
|
|
3586
3269
|
appId: string | null | undefined;
|
|
3587
3270
|
boxId: string;
|
|
3588
3271
|
appFolder: string | null | undefined;
|
|
3272
|
+
modelOverride: "standard" | "ultra" | null | undefined;
|
|
3589
3273
|
rpcMethod: string | null | undefined;
|
|
3590
3274
|
requestId: string | null | undefined;
|
|
3591
3275
|
channelId: string | null | undefined;
|
|
3592
3276
|
platformUserId: string | null | undefined;
|
|
3593
|
-
invocationTrigger: "user" | "scheduled" | null | undefined;
|
|
3277
|
+
invocationTrigger: "event" | "webhook" | "user" | "scheduled" | "composio" | null | undefined;
|
|
3594
3278
|
isDevelopment: boolean | null;
|
|
3595
3279
|
agent: string | null | undefined;
|
|
3596
3280
|
sessionId: string | null | undefined;
|