@runtypelabs/sdk 6.3.3 → 6.3.5
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.cjs +2 -2
- package/dist/index.d.cts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6362,7 +6362,7 @@ var Runtype = class {
|
|
|
6362
6362
|
|
|
6363
6363
|
// src/version.ts
|
|
6364
6364
|
var FALLBACK_VERSION = "0.0.0";
|
|
6365
|
-
var SDK_VERSION = "6.3.
|
|
6365
|
+
var SDK_VERSION = "6.3.5".length > 0 ? "6.3.5" : FALLBACK_VERSION;
|
|
6366
6366
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6367
6367
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6368
6368
|
|
|
@@ -11648,7 +11648,7 @@ var _AgentsEndpoint = class _AgentsEndpoint {
|
|
|
11648
11648
|
const references = /* @__PURE__ */ new Set();
|
|
11649
11649
|
const offloadPrefix = "[Output saved to ";
|
|
11650
11650
|
const ledgerArtifactPrefix = LEDGER_ARTIFACT_LINE_PREFIX;
|
|
11651
|
-
const savedToPattern = /saved to\s+([^—\]\n]
|
|
11651
|
+
const savedToPattern = /saved to\s+([^—\]\n\s][^—\]\n]*?)(?:\s+—|\]|\n|$)/gi;
|
|
11652
11652
|
for (const message of messages) {
|
|
11653
11653
|
if (!message.toolResults) continue;
|
|
11654
11654
|
for (const toolResult of message.toolResults) {
|
package/dist/index.d.cts
CHANGED
|
@@ -16583,7 +16583,7 @@ interface paths {
|
|
|
16583
16583
|
content: {
|
|
16584
16584
|
"application/json": {
|
|
16585
16585
|
/** @enum {string} */
|
|
16586
|
-
provider: "slack" | "telegram";
|
|
16586
|
+
provider: "slack" | "telegram" | "google";
|
|
16587
16587
|
};
|
|
16588
16588
|
};
|
|
16589
16589
|
};
|
|
@@ -16754,6 +16754,9 @@ interface paths {
|
|
|
16754
16754
|
accountName: string;
|
|
16755
16755
|
createdAt: string;
|
|
16756
16756
|
integrationId: string;
|
|
16757
|
+
metadata?: {
|
|
16758
|
+
[key: string]: unknown;
|
|
16759
|
+
};
|
|
16757
16760
|
provider: string;
|
|
16758
16761
|
status: string;
|
|
16759
16762
|
}[];
|
|
@@ -35821,9 +35824,11 @@ interface paths {
|
|
|
35821
35824
|
data: {
|
|
35822
35825
|
agentExecutionId: string | null;
|
|
35823
35826
|
createdAt: string;
|
|
35827
|
+
durationMs: number | null;
|
|
35824
35828
|
error: string | null;
|
|
35825
35829
|
executedAt: string | null;
|
|
35826
35830
|
failedAt: string | null;
|
|
35831
|
+
failedStepCount: number | null;
|
|
35827
35832
|
flowId: string | null;
|
|
35828
35833
|
flowName: string | null;
|
|
35829
35834
|
record: {
|
|
@@ -35835,6 +35840,7 @@ interface paths {
|
|
|
35835
35840
|
recordResultId: string | null;
|
|
35836
35841
|
result?: unknown;
|
|
35837
35842
|
status: string;
|
|
35843
|
+
stepCount: number | null;
|
|
35838
35844
|
}[];
|
|
35839
35845
|
pagination: {
|
|
35840
35846
|
hasMore: boolean;
|
|
@@ -35842,6 +35848,9 @@ interface paths {
|
|
|
35842
35848
|
offset: number;
|
|
35843
35849
|
total: number;
|
|
35844
35850
|
};
|
|
35851
|
+
summary?: {
|
|
35852
|
+
recordsWithFailedSteps: number;
|
|
35853
|
+
};
|
|
35845
35854
|
};
|
|
35846
35855
|
};
|
|
35847
35856
|
};
|
|
@@ -36002,9 +36011,11 @@ interface paths {
|
|
|
36002
36011
|
data: {
|
|
36003
36012
|
agentExecutionId: string | null;
|
|
36004
36013
|
createdAt: string;
|
|
36014
|
+
durationMs: number | null;
|
|
36005
36015
|
error: string | null;
|
|
36006
36016
|
executedAt: string | null;
|
|
36007
36017
|
failedAt: string | null;
|
|
36018
|
+
failedStepCount: number | null;
|
|
36008
36019
|
flowId: string | null;
|
|
36009
36020
|
flowName: string | null;
|
|
36010
36021
|
record: {
|
|
@@ -36016,6 +36027,7 @@ interface paths {
|
|
|
36016
36027
|
recordResultId: string | null;
|
|
36017
36028
|
result?: unknown;
|
|
36018
36029
|
status: string;
|
|
36030
|
+
stepCount: number | null;
|
|
36019
36031
|
}[];
|
|
36020
36032
|
pagination: {
|
|
36021
36033
|
hasMore: boolean;
|
|
@@ -36023,6 +36035,9 @@ interface paths {
|
|
|
36023
36035
|
offset: number;
|
|
36024
36036
|
total: number;
|
|
36025
36037
|
};
|
|
36038
|
+
summary?: {
|
|
36039
|
+
recordsWithFailedSteps: number;
|
|
36040
|
+
};
|
|
36026
36041
|
};
|
|
36027
36042
|
};
|
|
36028
36043
|
};
|
|
@@ -41213,6 +41228,7 @@ interface paths {
|
|
|
41213
41228
|
enableMassiveWebRender: boolean;
|
|
41214
41229
|
enableRuntown: boolean;
|
|
41215
41230
|
enableRuntypeApps: boolean;
|
|
41231
|
+
enableSelfServeOauthClients: boolean;
|
|
41216
41232
|
enableSkillScanner: boolean;
|
|
41217
41233
|
enableVoice: boolean;
|
|
41218
41234
|
enableWorkspaceModel: boolean;
|
package/dist/index.d.ts
CHANGED
|
@@ -16583,7 +16583,7 @@ interface paths {
|
|
|
16583
16583
|
content: {
|
|
16584
16584
|
"application/json": {
|
|
16585
16585
|
/** @enum {string} */
|
|
16586
|
-
provider: "slack" | "telegram";
|
|
16586
|
+
provider: "slack" | "telegram" | "google";
|
|
16587
16587
|
};
|
|
16588
16588
|
};
|
|
16589
16589
|
};
|
|
@@ -16754,6 +16754,9 @@ interface paths {
|
|
|
16754
16754
|
accountName: string;
|
|
16755
16755
|
createdAt: string;
|
|
16756
16756
|
integrationId: string;
|
|
16757
|
+
metadata?: {
|
|
16758
|
+
[key: string]: unknown;
|
|
16759
|
+
};
|
|
16757
16760
|
provider: string;
|
|
16758
16761
|
status: string;
|
|
16759
16762
|
}[];
|
|
@@ -35821,9 +35824,11 @@ interface paths {
|
|
|
35821
35824
|
data: {
|
|
35822
35825
|
agentExecutionId: string | null;
|
|
35823
35826
|
createdAt: string;
|
|
35827
|
+
durationMs: number | null;
|
|
35824
35828
|
error: string | null;
|
|
35825
35829
|
executedAt: string | null;
|
|
35826
35830
|
failedAt: string | null;
|
|
35831
|
+
failedStepCount: number | null;
|
|
35827
35832
|
flowId: string | null;
|
|
35828
35833
|
flowName: string | null;
|
|
35829
35834
|
record: {
|
|
@@ -35835,6 +35840,7 @@ interface paths {
|
|
|
35835
35840
|
recordResultId: string | null;
|
|
35836
35841
|
result?: unknown;
|
|
35837
35842
|
status: string;
|
|
35843
|
+
stepCount: number | null;
|
|
35838
35844
|
}[];
|
|
35839
35845
|
pagination: {
|
|
35840
35846
|
hasMore: boolean;
|
|
@@ -35842,6 +35848,9 @@ interface paths {
|
|
|
35842
35848
|
offset: number;
|
|
35843
35849
|
total: number;
|
|
35844
35850
|
};
|
|
35851
|
+
summary?: {
|
|
35852
|
+
recordsWithFailedSteps: number;
|
|
35853
|
+
};
|
|
35845
35854
|
};
|
|
35846
35855
|
};
|
|
35847
35856
|
};
|
|
@@ -36002,9 +36011,11 @@ interface paths {
|
|
|
36002
36011
|
data: {
|
|
36003
36012
|
agentExecutionId: string | null;
|
|
36004
36013
|
createdAt: string;
|
|
36014
|
+
durationMs: number | null;
|
|
36005
36015
|
error: string | null;
|
|
36006
36016
|
executedAt: string | null;
|
|
36007
36017
|
failedAt: string | null;
|
|
36018
|
+
failedStepCount: number | null;
|
|
36008
36019
|
flowId: string | null;
|
|
36009
36020
|
flowName: string | null;
|
|
36010
36021
|
record: {
|
|
@@ -36016,6 +36027,7 @@ interface paths {
|
|
|
36016
36027
|
recordResultId: string | null;
|
|
36017
36028
|
result?: unknown;
|
|
36018
36029
|
status: string;
|
|
36030
|
+
stepCount: number | null;
|
|
36019
36031
|
}[];
|
|
36020
36032
|
pagination: {
|
|
36021
36033
|
hasMore: boolean;
|
|
@@ -36023,6 +36035,9 @@ interface paths {
|
|
|
36023
36035
|
offset: number;
|
|
36024
36036
|
total: number;
|
|
36025
36037
|
};
|
|
36038
|
+
summary?: {
|
|
36039
|
+
recordsWithFailedSteps: number;
|
|
36040
|
+
};
|
|
36026
36041
|
};
|
|
36027
36042
|
};
|
|
36028
36043
|
};
|
|
@@ -41213,6 +41228,7 @@ interface paths {
|
|
|
41213
41228
|
enableMassiveWebRender: boolean;
|
|
41214
41229
|
enableRuntown: boolean;
|
|
41215
41230
|
enableRuntypeApps: boolean;
|
|
41231
|
+
enableSelfServeOauthClients: boolean;
|
|
41216
41232
|
enableSkillScanner: boolean;
|
|
41217
41233
|
enableVoice: boolean;
|
|
41218
41234
|
enableWorkspaceModel: boolean;
|
package/dist/index.mjs
CHANGED
|
@@ -6175,7 +6175,7 @@ var Runtype = class {
|
|
|
6175
6175
|
|
|
6176
6176
|
// src/version.ts
|
|
6177
6177
|
var FALLBACK_VERSION = "0.0.0";
|
|
6178
|
-
var SDK_VERSION = "6.3.
|
|
6178
|
+
var SDK_VERSION = "6.3.5".length > 0 ? "6.3.5" : FALLBACK_VERSION;
|
|
6179
6179
|
var RUNTYPE_CLIENT_KIND = "sdk";
|
|
6180
6180
|
var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
|
|
6181
6181
|
|
|
@@ -11461,7 +11461,7 @@ var _AgentsEndpoint = class _AgentsEndpoint {
|
|
|
11461
11461
|
const references = /* @__PURE__ */ new Set();
|
|
11462
11462
|
const offloadPrefix = "[Output saved to ";
|
|
11463
11463
|
const ledgerArtifactPrefix = LEDGER_ARTIFACT_LINE_PREFIX;
|
|
11464
|
-
const savedToPattern = /saved to\s+([^—\]\n]
|
|
11464
|
+
const savedToPattern = /saved to\s+([^—\]\n\s][^—\]\n]*?)(?:\s+—|\]|\n|$)/gi;
|
|
11465
11465
|
for (const message of messages) {
|
|
11466
11466
|
if (!message.toolResults) continue;
|
|
11467
11467
|
for (const toolResult of message.toolResults) {
|
package/package.json
CHANGED