@skilder-ai/runtime 0.5.8 → 0.5.10
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.js +17 -0
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -113810,10 +113810,12 @@ __export(dgraph_resolvers_types_exports, {
|
|
|
113810
113810
|
InvitationStatus: () => InvitationStatus,
|
|
113811
113811
|
McpTransportType: () => McpTransportType,
|
|
113812
113812
|
MessageRole: () => MessageRole,
|
|
113813
|
+
MigrationStatus: () => MigrationStatus,
|
|
113813
113814
|
OAuthProviderType: () => OAuthProviderType,
|
|
113814
113815
|
OnboardingStepStatus: () => OnboardingStepStatus,
|
|
113815
113816
|
OnboardingStepType: () => OnboardingStepType,
|
|
113816
113817
|
RuntimeType: () => RuntimeType,
|
|
113818
|
+
ScriptType: () => ScriptType,
|
|
113817
113819
|
SkillMode: () => SkillMode,
|
|
113818
113820
|
ToolCallStatus: () => ToolCallStatus,
|
|
113819
113821
|
WorkspaceRole: () => WorkspaceRole
|
|
@@ -113865,6 +113867,14 @@ var MessageRole = /* @__PURE__ */ ((MessageRole2) => {
|
|
|
113865
113867
|
MessageRole2["User"] = "USER";
|
|
113866
113868
|
return MessageRole2;
|
|
113867
113869
|
})(MessageRole || {});
|
|
113870
|
+
var MigrationStatus = /* @__PURE__ */ ((MigrationStatus2) => {
|
|
113871
|
+
MigrationStatus2["Completed"] = "COMPLETED";
|
|
113872
|
+
MigrationStatus2["Failed"] = "FAILED";
|
|
113873
|
+
MigrationStatus2["Pending"] = "PENDING";
|
|
113874
|
+
MigrationStatus2["RolledBack"] = "ROLLED_BACK";
|
|
113875
|
+
MigrationStatus2["Running"] = "RUNNING";
|
|
113876
|
+
return MigrationStatus2;
|
|
113877
|
+
})(MigrationStatus || {});
|
|
113868
113878
|
var OAuthProviderType = /* @__PURE__ */ ((OAuthProviderType2) => {
|
|
113869
113879
|
OAuthProviderType2["Google"] = "GOOGLE";
|
|
113870
113880
|
OAuthProviderType2["Microsoft"] = "MICROSOFT";
|
|
@@ -113888,6 +113898,13 @@ var RuntimeType = /* @__PURE__ */ ((RuntimeType2) => {
|
|
|
113888
113898
|
RuntimeType2["Mcp"] = "MCP";
|
|
113889
113899
|
return RuntimeType2;
|
|
113890
113900
|
})(RuntimeType || {});
|
|
113901
|
+
var ScriptType = /* @__PURE__ */ ((ScriptType2) => {
|
|
113902
|
+
ScriptType2["Bash"] = "BASH";
|
|
113903
|
+
ScriptType2["Javascript"] = "JAVASCRIPT";
|
|
113904
|
+
ScriptType2["Python"] = "PYTHON";
|
|
113905
|
+
ScriptType2["Typescript"] = "TYPESCRIPT";
|
|
113906
|
+
return ScriptType2;
|
|
113907
|
+
})(ScriptType || {});
|
|
113891
113908
|
var SkillMode = /* @__PURE__ */ ((SkillMode2) => {
|
|
113892
113909
|
SkillMode2["List"] = "LIST";
|
|
113893
113910
|
SkillMode2["Optimized"] = "OPTIMIZED";
|