@crewx/sdk 0.9.0-rc.84 → 0.9.0-rc.85

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.
@@ -64,11 +64,13 @@ export declare class Crewx extends TypedEventEmitter {
64
64
  private readonly _activeTasks;
65
65
  private readonly _remoteFactory?;
66
66
  private readonly _remoteTargets;
67
+ private readonly _detachedRemoteTargets;
67
68
  private readonly _additionalArgsProvider?;
68
69
  private _globalSettings?;
69
70
  private readonly _callerIdentityOverrides;
70
71
  private constructor();
71
72
  private resolveFileRemoteTarget;
73
+ private _readRemoteTargetStat;
72
74
  private static loadBuiltInConfig;
73
75
  private static mergeCrewxConfig;
74
76
  static loadYaml(path: string | undefined, options?: CrewxOptions, fsAdapter?: IFsAdapter): Promise<Crewx>;
package/dist/index.d.ts CHANGED
@@ -124,7 +124,8 @@ export type { NewThreadEvent, NewThreadHighlight, NewThreadHighlightRun, ThreadA
124
124
  export { RemoteProviderRuntime, createRemoteProviderFactory } from './remote/remote-provider';
125
125
  export { RemoteAgentManager } from './remote/remote-agent-manager';
126
126
  export { McpHttpTransport } from './remote/remote-transport';
127
- export type { RemoteTransport, RemoteAgentConfig, RemoteProviderConfig, RemoteAgentQueryRequest, RemoteAgentExecuteRequest, RemoteAgentResponse, McpJsonRpcRequest, McpJsonRpcResponse, RemoteAgentDescriptor, } from './remote/types';
127
+ export { resolveAgentExecutionProfile, resolveAgentExecutionProfiles, } from './remote/execution-profile';
128
+ export type { RemoteTransport, RemoteAgentConfig, RemoteProviderConfig, RemoteAgentQueryRequest, RemoteAgentExecuteRequest, RemoteAgentResponse, McpJsonRpcRequest, McpJsonRpcResponse, RemoteAgentDescriptor, AgentExecutionProfile, AgentExecutionProfileSlot, AgentExecutionProfileStatus, AgentExecutionProfileErrorCode, } from './remote/types';
128
129
  export { createHandler } from './server/handler';
129
130
  export type { HandlerOptions, CrewxHandler } from './server/handler';
130
131
  export type { AuthOptions } from './server/auth';