sim 2.1.18-dev.133.1 → 2.1.18
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 +3654 -4127
- package/package.json +2 -12
- package/dist/auth/device-flow.d.ts +0 -39
- package/dist/auth/oauth-flow.d.ts +0 -119
- package/dist/auth/refresh.d.ts +0 -16
- package/dist/commands/auth.d.ts +0 -5
- package/dist/commands/configure.d.ts +0 -2
- package/dist/commands/credentials.d.ts +0 -3
- package/dist/commands/protocol/chat.d.ts +0 -11
- package/dist/commands/protocol/files-get.d.ts +0 -25
- package/dist/commands/protocol/files-upload.d.ts +0 -2
- package/dist/commands/protocol/index.d.ts +0 -3
- package/dist/commands/protocol/knowledge-document-upload.d.ts +0 -2
- package/dist/commands/protocol/knowledge-export.d.ts +0 -14
- package/dist/commands/protocol/logs-follow.d.ts +0 -39
- package/dist/commands/protocol/resource-directory.d.ts +0 -24
- package/dist/commands/protocol/result.d.ts +0 -2
- package/dist/commands/protocol/tables-import.d.ts +0 -2
- package/dist/commands/protocol/workflow-run-follow.d.ts +0 -56
- package/dist/commands/protocol/workflow-run-get.d.ts +0 -15
- package/dist/commands/protocol/workflow-run-wait.d.ts +0 -3
- package/dist/commands/protocol/workspace-operation-wait.d.ts +0 -14
- package/dist/commands/secrets.d.ts +0 -3
- package/dist/commands/telemetry.d.ts +0 -2
- package/dist/commands/update.d.ts +0 -2
- package/dist/config/index.d.ts +0 -2
- package/dist/config/ini.d.ts +0 -111
- package/dist/config/json-file.d.ts +0 -18
- package/dist/config/paths.d.ts +0 -29
- package/dist/config/profile.d.ts +0 -210
- package/dist/context.d.ts +0 -21
- package/dist/contract/commands.d.ts +0 -14
- package/dist/contract/types.d.ts +0 -306
- package/dist/embed-context.d.ts +0 -79
- package/dist/embed-output.d.ts +0 -15
- package/dist/embed.d.ts +0 -40
- package/dist/environment.d.ts +0 -22
- package/dist/generated/v2-api.d.ts +0 -15057
- package/dist/helpers.d.ts +0 -9
- package/dist/http/client.d.ts +0 -173
- package/dist/http/environment.d.ts +0 -24
- package/dist/http/ndjson.d.ts +0 -5
- package/dist/output/io.d.ts +0 -5
- package/dist/output/presentation.d.ts +0 -4
- package/dist/output/render.d.ts +0 -60
- package/dist/output/terminal-text.d.ts +0 -17
- package/dist/output/trace.d.ts +0 -3
- package/dist/output/truncation.d.ts +0 -3
- package/dist/program.d.ts +0 -21
- package/dist/runtime/build.d.ts +0 -38
- package/dist/runtime/derive.d.ts +0 -20
- package/dist/runtime/execute.d.ts +0 -32
- package/dist/runtime/naming.d.ts +0 -25
- package/dist/runtime/options.d.ts +0 -9
- package/dist/runtime/renamed.d.ts +0 -6
- package/dist/runtime/request.d.ts +0 -110
- package/dist/runtime/result.d.ts +0 -41
- package/dist/runtime/types.d.ts +0 -23
- package/dist/runtime.d.ts +0 -5
- package/dist/runtime.js +0 -21864
- package/dist/telemetry/client-info.d.ts +0 -20
- package/dist/telemetry/coding-agent.d.ts +0 -31
- package/dist/telemetry/index.d.ts +0 -4
- package/dist/telemetry/invocation.d.ts +0 -98
- package/dist/telemetry/policy.d.ts +0 -38
- package/dist/telemetry/state.d.ts +0 -47
- package/dist/telemetry/transport.d.ts +0 -47
- package/dist/terminal/secret-input.d.ts +0 -15
- package/dist/terminal.d.ts +0 -7
- package/dist/transfer/local-file.d.ts +0 -16
- package/dist/transfer/streaming-upload.d.ts +0 -16
- package/dist/transfer/upload-session.d.ts +0 -18
- package/dist/update/check.d.ts +0 -53
- package/dist/update/install.d.ts +0 -20
- package/dist/version.d.ts +0 -10
package/dist/runtime/types.d.ts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type { RequestOptions } from '../http/client';
|
|
2
|
-
import type { FieldSpec } from './request';
|
|
3
|
-
export interface OperationSpec {
|
|
4
|
-
method: NonNullable<RequestOptions['method']>;
|
|
5
|
-
path: string;
|
|
6
|
-
pathParams: readonly string[];
|
|
7
|
-
/** `.describe()` per path parameter, used as positional-argument help. */
|
|
8
|
-
pathParamDocs?: Record<string, string>;
|
|
9
|
-
query?: Record<string, FieldSpec>;
|
|
10
|
-
body?: Record<string, FieldSpec>;
|
|
11
|
-
/** Contract-declared request headers, minus any the CLI sets itself. */
|
|
12
|
-
headers?: Record<string, FieldSpec>;
|
|
13
|
-
opaqueBody?: boolean;
|
|
14
|
-
summary?: string;
|
|
15
|
-
/**
|
|
16
|
-
* The operation rejects a workspace API key; an OAuth login or personal key works.
|
|
17
|
-
*
|
|
18
|
-
* Emitted by `scripts/generate-v2-cli-api.ts` from the OpenAPI description so
|
|
19
|
-
* `--help` states the restriction the caller would otherwise meet as a `403`.
|
|
20
|
-
*/
|
|
21
|
-
workspaceKeyUnsupported?: true;
|
|
22
|
-
responseMode?: 'json' | 'binary' | 'stream';
|
|
23
|
-
}
|