asteroid-odyssey 1.6.29 → 1.6.51
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/index.d.mts +52 -0
- package/dist/index.d.ts +52 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -544,6 +544,10 @@ type AgentsExecutionActivityTransitionedNodePayload = {
|
|
|
544
544
|
* Output variables provided by the from node
|
|
545
545
|
*/
|
|
546
546
|
fromNodeOutput?: Array<AgentsExecutionNodeOutputItem>;
|
|
547
|
+
/**
|
|
548
|
+
* The reasoning provided by the LLM for why this transition was made
|
|
549
|
+
*/
|
|
550
|
+
transitionReasoning?: string;
|
|
547
551
|
};
|
|
548
552
|
type AgentsExecutionActivityUserMessageReceivedPayload = {
|
|
549
553
|
activityType: 'user_message_received';
|
|
@@ -1026,6 +1030,22 @@ type AgentsProfileAgentProfile = {
|
|
|
1026
1030
|
* Whether to persist browser cache between sessions
|
|
1027
1031
|
*/
|
|
1028
1032
|
cachePersistence: boolean;
|
|
1033
|
+
/**
|
|
1034
|
+
* Whether to enable ad blocking
|
|
1035
|
+
*/
|
|
1036
|
+
adblockActive: boolean;
|
|
1037
|
+
/**
|
|
1038
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1039
|
+
*/
|
|
1040
|
+
popupBlockerActive: boolean;
|
|
1041
|
+
/**
|
|
1042
|
+
* Whether to force popups to open as tabs
|
|
1043
|
+
*/
|
|
1044
|
+
forcePopupsAsTabsActive: boolean;
|
|
1045
|
+
/**
|
|
1046
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1047
|
+
*/
|
|
1048
|
+
mediaBlockerActive: boolean;
|
|
1029
1049
|
/**
|
|
1030
1050
|
* List of credentials associated with this profile
|
|
1031
1051
|
*/
|
|
@@ -1136,6 +1156,22 @@ type AgentsProfileCreateAgentProfileRequest = {
|
|
|
1136
1156
|
* Whether to persist browser cache between sessions
|
|
1137
1157
|
*/
|
|
1138
1158
|
cachePersistence?: boolean;
|
|
1159
|
+
/**
|
|
1160
|
+
* Whether to enable ad blocking
|
|
1161
|
+
*/
|
|
1162
|
+
adblockActive?: boolean;
|
|
1163
|
+
/**
|
|
1164
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1165
|
+
*/
|
|
1166
|
+
popupBlockerActive?: boolean;
|
|
1167
|
+
/**
|
|
1168
|
+
* Whether to force popups to open as tabs
|
|
1169
|
+
*/
|
|
1170
|
+
forcePopupsAsTabsActive?: boolean;
|
|
1171
|
+
/**
|
|
1172
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1173
|
+
*/
|
|
1174
|
+
mediaBlockerActive?: boolean;
|
|
1139
1175
|
/**
|
|
1140
1176
|
* Initial credentials to create with the profile
|
|
1141
1177
|
*/
|
|
@@ -1231,6 +1267,22 @@ type AgentsProfileUpdateAgentProfileRequest = {
|
|
|
1231
1267
|
* Whether to persist browser cache between sessions
|
|
1232
1268
|
*/
|
|
1233
1269
|
cachePersistence?: boolean;
|
|
1270
|
+
/**
|
|
1271
|
+
* Whether to enable ad blocking
|
|
1272
|
+
*/
|
|
1273
|
+
adblockActive?: boolean;
|
|
1274
|
+
/**
|
|
1275
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1276
|
+
*/
|
|
1277
|
+
popupBlockerActive?: boolean;
|
|
1278
|
+
/**
|
|
1279
|
+
* Whether to force popups to open as tabs
|
|
1280
|
+
*/
|
|
1281
|
+
forcePopupsAsTabsActive?: boolean;
|
|
1282
|
+
/**
|
|
1283
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1284
|
+
*/
|
|
1285
|
+
mediaBlockerActive?: boolean;
|
|
1234
1286
|
/**
|
|
1235
1287
|
* Credentials to add to the profile
|
|
1236
1288
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -544,6 +544,10 @@ type AgentsExecutionActivityTransitionedNodePayload = {
|
|
|
544
544
|
* Output variables provided by the from node
|
|
545
545
|
*/
|
|
546
546
|
fromNodeOutput?: Array<AgentsExecutionNodeOutputItem>;
|
|
547
|
+
/**
|
|
548
|
+
* The reasoning provided by the LLM for why this transition was made
|
|
549
|
+
*/
|
|
550
|
+
transitionReasoning?: string;
|
|
547
551
|
};
|
|
548
552
|
type AgentsExecutionActivityUserMessageReceivedPayload = {
|
|
549
553
|
activityType: 'user_message_received';
|
|
@@ -1026,6 +1030,22 @@ type AgentsProfileAgentProfile = {
|
|
|
1026
1030
|
* Whether to persist browser cache between sessions
|
|
1027
1031
|
*/
|
|
1028
1032
|
cachePersistence: boolean;
|
|
1033
|
+
/**
|
|
1034
|
+
* Whether to enable ad blocking
|
|
1035
|
+
*/
|
|
1036
|
+
adblockActive: boolean;
|
|
1037
|
+
/**
|
|
1038
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1039
|
+
*/
|
|
1040
|
+
popupBlockerActive: boolean;
|
|
1041
|
+
/**
|
|
1042
|
+
* Whether to force popups to open as tabs
|
|
1043
|
+
*/
|
|
1044
|
+
forcePopupsAsTabsActive: boolean;
|
|
1045
|
+
/**
|
|
1046
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1047
|
+
*/
|
|
1048
|
+
mediaBlockerActive: boolean;
|
|
1029
1049
|
/**
|
|
1030
1050
|
* List of credentials associated with this profile
|
|
1031
1051
|
*/
|
|
@@ -1136,6 +1156,22 @@ type AgentsProfileCreateAgentProfileRequest = {
|
|
|
1136
1156
|
* Whether to persist browser cache between sessions
|
|
1137
1157
|
*/
|
|
1138
1158
|
cachePersistence?: boolean;
|
|
1159
|
+
/**
|
|
1160
|
+
* Whether to enable ad blocking
|
|
1161
|
+
*/
|
|
1162
|
+
adblockActive?: boolean;
|
|
1163
|
+
/**
|
|
1164
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1165
|
+
*/
|
|
1166
|
+
popupBlockerActive?: boolean;
|
|
1167
|
+
/**
|
|
1168
|
+
* Whether to force popups to open as tabs
|
|
1169
|
+
*/
|
|
1170
|
+
forcePopupsAsTabsActive?: boolean;
|
|
1171
|
+
/**
|
|
1172
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1173
|
+
*/
|
|
1174
|
+
mediaBlockerActive?: boolean;
|
|
1139
1175
|
/**
|
|
1140
1176
|
* Initial credentials to create with the profile
|
|
1141
1177
|
*/
|
|
@@ -1231,6 +1267,22 @@ type AgentsProfileUpdateAgentProfileRequest = {
|
|
|
1231
1267
|
* Whether to persist browser cache between sessions
|
|
1232
1268
|
*/
|
|
1233
1269
|
cachePersistence?: boolean;
|
|
1270
|
+
/**
|
|
1271
|
+
* Whether to enable ad blocking
|
|
1272
|
+
*/
|
|
1273
|
+
adblockActive?: boolean;
|
|
1274
|
+
/**
|
|
1275
|
+
* Whether to enable popup blocking (requires adblock to be active)
|
|
1276
|
+
*/
|
|
1277
|
+
popupBlockerActive?: boolean;
|
|
1278
|
+
/**
|
|
1279
|
+
* Whether to force popups to open as tabs
|
|
1280
|
+
*/
|
|
1281
|
+
forcePopupsAsTabsActive?: boolean;
|
|
1282
|
+
/**
|
|
1283
|
+
* Whether to enable media blocking (images, videos, etc.)
|
|
1284
|
+
*/
|
|
1285
|
+
mediaBlockerActive?: boolean;
|
|
1234
1286
|
/**
|
|
1235
1287
|
* Credentials to add to the profile
|
|
1236
1288
|
*/
|