@treasuredata/tdx 0.1.7 → 0.1.9
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/README.md +85 -0
- package/dist/cli.js +1 -1
- package/dist/cli.js.map +1 -1
- package/dist/client/cdp-client.js +1 -1
- package/dist/client/http-client.js +1 -1
- package/dist/client/llm-client.js +1 -1
- package/dist/client/rate-limiter.js +1 -1
- package/dist/client/td-client.js +1 -1
- package/dist/client/trino-client.js +1 -1
- package/dist/client/workflow-client.js +1 -1
- package/dist/commands/activations.js +1 -1
- package/dist/commands/api-command.js +1 -1
- package/dist/commands/chat-command.js +1 -1
- package/dist/commands/command.js +1 -1
- package/dist/commands/context-command.js +1 -1
- package/dist/commands/databases.js +1 -1
- package/dist/commands/describe.js +1 -1
- package/dist/commands/llm-command.js +1 -1
- package/dist/commands/llm-proxy.d.ts +24 -0
- package/dist/commands/llm-proxy.d.ts.map +1 -0
- package/dist/commands/llm-proxy.js +1 -0
- package/dist/commands/llm-proxy.js.map +1 -0
- package/dist/commands/profiles-command.js +1 -1
- package/dist/commands/query-command.js +1 -1
- package/dist/commands/segment-command.js +1 -1
- package/dist/commands/segments.js +1 -1
- package/dist/commands/show.js +1 -1
- package/dist/commands/tables.js +1 -1
- package/dist/commands/use-command.js +1 -1
- package/dist/commands/workflow-command.js +1 -1
- package/dist/core/auth.js +1 -1
- package/dist/core/config.js +1 -1
- package/dist/core/global-context.js +1 -1
- package/dist/core/profile.js +1 -1
- package/dist/core/project-config.js +1 -1
- package/dist/core/session.js +1 -1
- package/dist/index.js +1 -1
- package/dist/proxy/anthropic-adapter.d.ts +79 -0
- package/dist/proxy/anthropic-adapter.d.ts.map +1 -0
- package/dist/proxy/anthropic-adapter.js +1 -0
- package/dist/proxy/anthropic-adapter.js.map +1 -0
- package/dist/proxy/server.d.ts +59 -0
- package/dist/proxy/server.d.ts.map +1 -0
- package/dist/proxy/server.js +1 -0
- package/dist/proxy/server.js.map +1 -0
- package/dist/sdk/api.js +1 -1
- package/dist/sdk/database.js +1 -1
- package/dist/sdk/errors.js +1 -1
- package/dist/sdk/index.js +1 -1
- package/dist/sdk/llm.js +1 -1
- package/dist/sdk/query.js +1 -1
- package/dist/sdk/segment.js +1 -1
- package/dist/sdk/table.js +1 -1
- package/dist/sdk/workflow.js +1 -1
- package/dist/types/anthropic.d.ts +139 -0
- package/dist/types/anthropic.d.ts.map +1 -0
- package/dist/types/anthropic.js +1 -0
- package/dist/types/anthropic.js.map +1 -0
- package/dist/types/endpoints.js +1 -1
- package/dist/types/index.js +1 -1
- package/dist/utils/agent-ref-parser.js +1 -1
- package/dist/utils/chat-cache.js +1 -1
- package/dist/utils/colors.js +1 -1
- package/dist/utils/command-output.js +1 -1
- package/dist/utils/file-permissions.js +1 -1
- package/dist/utils/format-detector.js +1 -1
- package/dist/utils/formatters.js +1 -1
- package/dist/utils/model-aliases.js +1 -1
- package/dist/utils/option-validation.js +1 -1
- package/dist/utils/process.js +1 -1
- package/dist/utils/segment-ref-parser.js +1 -1
- package/dist/utils/spinner.js +1 -1
- package/dist/utils/sql-parser.js +1 -1
- package/dist/utils/sse-parser.js +1 -1
- package/dist/utils/string-utils.js +1 -1
- package/dist/utils/table-ref-parser.js +1 -1
- package/dist/utils/workflow-utils.js +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -752,6 +752,7 @@ Manage LLM projects, agents, and chat sessions with streaming support.
|
|
|
752
752
|
| `llm agent update <name>` | Update an agent | `tdx llm agent update "Agent" --name "New Name"` |
|
|
753
753
|
| `llm agent delete <name>` | Delete an agent | `tdx llm agent delete "Agent"` |
|
|
754
754
|
| `llm history [chat-id]` | List chat sessions or show messages | `tdx llm history` or `tdx llm history chat456` |
|
|
755
|
+
| `llm proxy` | **[EXPERIMENTAL]** Start proxy server for Claude Code | `tdx llm proxy --port 4000` |
|
|
755
756
|
|
|
756
757
|
**Project Resolution (Precedence Order):**
|
|
757
758
|
|
|
@@ -833,6 +834,90 @@ tdx llm history chat456 # Show specific chat messages
|
|
|
833
834
|
tdx llm agents --format json --output agents.json
|
|
834
835
|
```
|
|
835
836
|
|
|
837
|
+
#### LLM Proxy Server for Claude Code
|
|
838
|
+
|
|
839
|
+
> **⚠️ EXPERIMENTAL FEATURE**: This proxy server is experimental and may have limitations. Please report issues at https://github.com/treasure-data/tdx/issues
|
|
840
|
+
|
|
841
|
+
The `tdx llm proxy` command starts a local HTTP server that provides Anthropic-compatible API endpoints, allowing Claude Code and other AI coding assistants to use Treasure Data's LLM API as a backend.
|
|
842
|
+
|
|
843
|
+
**Starting the Proxy:**
|
|
844
|
+
|
|
845
|
+
```bash
|
|
846
|
+
# Start proxy with default settings (port 4000)
|
|
847
|
+
tdx llm proxy
|
|
848
|
+
|
|
849
|
+
# Specify custom port
|
|
850
|
+
tdx llm proxy --port 8000
|
|
851
|
+
|
|
852
|
+
# Use specific project and agent
|
|
853
|
+
tdx llm proxy --project "MyProject" --agent "MyAgent"
|
|
854
|
+
|
|
855
|
+
# Use context (set with 'tdx llm use')
|
|
856
|
+
tdx llm use "MyProject/MyAgent"
|
|
857
|
+
tdx llm proxy
|
|
858
|
+
|
|
859
|
+
# Enable debug mode to see request/response JSON
|
|
860
|
+
tdx llm proxy --debug
|
|
861
|
+
```
|
|
862
|
+
|
|
863
|
+
**Claude Code Configuration:**
|
|
864
|
+
|
|
865
|
+
Create a `.claude/settings.local.json` file in your project directory:
|
|
866
|
+
|
|
867
|
+
```json
|
|
868
|
+
{
|
|
869
|
+
"env": {
|
|
870
|
+
"ANTHROPIC_BASE_URL": "http://127.0.0.1:4000",
|
|
871
|
+
"ANTHROPIC_AUTH_TOKEN": "dummy",
|
|
872
|
+
"ANTHROPIC_MODEL": "sonnet"
|
|
873
|
+
}
|
|
874
|
+
}
|
|
875
|
+
```
|
|
876
|
+
|
|
877
|
+
**Testing with Agent SDK:**
|
|
878
|
+
|
|
879
|
+
You can also test the proxy using [Claude Agent SDK](https://docs.claude.com/en/docs/agent-sdk/typescript):
|
|
880
|
+
|
|
881
|
+
```bash
|
|
882
|
+
npm install @anthropic-ai/sdk
|
|
883
|
+
```
|
|
884
|
+
|
|
885
|
+
The SDK reads `.claude/settings.json` for `ANTHROPIC_BASE_URL` configuration.
|
|
886
|
+
|
|
887
|
+
**How It Works:**
|
|
888
|
+
|
|
889
|
+
1. The proxy translates Anthropic Messages API calls to TD LLM API format
|
|
890
|
+
2. Maintains conversation state across multiple requests
|
|
891
|
+
3. Streams responses in real-time using Server-Sent Events (SSE)
|
|
892
|
+
4. Maps model names (sonnet/haiku/opus) to TD models
|
|
893
|
+
5. Supports tool calls via prompt engineering (see Tool Support below)
|
|
894
|
+
|
|
895
|
+
**Proxy Options:**
|
|
896
|
+
|
|
897
|
+
- `--port <number>`: Port to run the server on (default: 4000)
|
|
898
|
+
- `--project <name>`: LLM project name (uses context or default)
|
|
899
|
+
- `--agent <name>`: Agent name (uses context or default)
|
|
900
|
+
- `--debug`: Enable debug mode (logs request/response JSON to stderr)
|
|
901
|
+
|
|
902
|
+
**Tool Support:**
|
|
903
|
+
|
|
904
|
+
The proxy supports Anthropic-style tool calls via prompt engineering:
|
|
905
|
+
|
|
906
|
+
1. **Tool Definition Injection**: Tool definitions from the Anthropic request are converted into clear instructions and prepended to the user message
|
|
907
|
+
2. **JSON-based Tool Calls**: The LLM is instructed to output tool calls as JSON: `{"tool_use":{"id":"toolu_xxx","name":"tool_name","input":{...}}}`
|
|
908
|
+
3. **Automatic Detection**: The proxy parses the response stream to detect tool call JSON and converts it to proper Anthropic SSE events
|
|
909
|
+
4. **Tool Results**: When the client sends tool results back, they're formatted and included in the next message to the LLM
|
|
910
|
+
|
|
911
|
+
This approach works around the architectural differences between TD's server-driven tool system and Anthropic's client-driven model.
|
|
912
|
+
|
|
913
|
+
**Known Limitations:**
|
|
914
|
+
|
|
915
|
+
- Tool calls rely on prompt engineering (LLM must output correct JSON format)
|
|
916
|
+
- Non-streaming responses are not implemented
|
|
917
|
+
- Image inputs are not supported
|
|
918
|
+
- System prompt is prepended to first message only (not persisted in agent)
|
|
919
|
+
- TD's built-in tools (knowledge base, functions) are not directly accessible
|
|
920
|
+
|
|
836
921
|
## Advanced Query Features
|
|
837
922
|
|
|
838
923
|
### File Input
|
package/dist/cli.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const a0_0x26301c=a0_0x518f;(function(_0x59828c,_0x1b8350){const _0x5e0c90=a0_0x518f,_0x4a52bc=_0x59828c();while(!![]){try{const _0x553979=parseInt(_0x5e0c90(0x1b9))/0x1*(-parseInt(_0x5e0c90(0x245))/0x2)+parseInt(_0x5e0c90(0x21f))/0x3+parseInt(_0x5e0c90(0x1cd))/0x4*(-parseInt(_0x5e0c90(0x224))/0x5)+-parseInt(_0x5e0c90(0x1a0))/0x6*(-parseInt(_0x5e0c90(0x1b7))/0x7)+-parseInt(_0x5e0c90(0x1c3))/0x8*(-parseInt(_0x5e0c90(0x204))/0x9)+parseInt(_0x5e0c90(0x22e))/0xa*(-parseInt(_0x5e0c90(0x1c1))/0xb)+parseInt(_0x5e0c90(0x236))/0xc;if(_0x553979===_0x1b8350)break;else _0x4a52bc['push'](_0x4a52bc['shift']());}catch(_0x5daf9d){_0x4a52bc['push'](_0x4a52bc['shift']());}}}(a0_0x5e3d,0x59523));import{Command}from'commander';import{readFileSync}from'fs';import{fileURLToPath}from'url';import{dirname,join}from'path';import{TDX}from'./sdk/index.js';import{GlobalContext}from'./core/global-context.js';import{QueryCommand}from'./commands/query-command.js';import{ChatCommand}from'./commands/chat-command.js';import{ApiCommand}from'./commands/api-command.js';import{DatabasesCommand}from'./commands/databases.js';import{TablesCommand}from'./commands/tables.js';import{SegmentsCommand}from'./commands/segments.js';import{ActivationsCommand}from'./commands/activations.js';import{ShowCommand}from'./commands/show.js';import{DescribeCommand}from'./commands/describe.js';import{SegmentDescribeCommand,SegmentShowCommand,SegmentFolderListCommand,SegmentFolderShowCommand,SegmentSQLCommand}from'./commands/segment-command.js';import{WorkflowProjectsCommand,WorkflowWorkflowsCommand,WorkflowSessionsCommand,WorkflowAttemptsCommand,WorkflowAttemptCommand,WorkflowTasksCommand,WorkflowLogsCommand,WorkflowKillCommand,WorkflowRetryCommand,WorkflowDownloadCommand,WorkflowPushCommand,WorkflowDeleteCommand}from'./commands/workflow-command.js';import{LLMModelsCommand,LLMProjectsCommand,LLMAgentsCommand,LLMAgentShowCommand,LLMAgentCreateCommand,LLMAgentUpdateCommand,LLMAgentDeleteCommand,LLMHistoryCommand,LLMUseCommand,LLMProjectCreateCommand,LLMProjectDeleteCommand}from'./commands/llm-command.js';function a0_0x518f(_0x4f7fbe,_0x17e529){const _0x5e3d44=a0_0x5e3d();return a0_0x518f=function(_0x518f29,_0x5b2014){_0x518f29=_0x518f29-0x15c;let _0x72de4=_0x5e3d44[_0x518f29];return _0x72de4;},a0_0x518f(_0x4f7fbe,_0x17e529);}import{ContextCommand}from'./commands/context-command.js';import{UseCommand}from'./commands/use-command.js';import{ProfilesCommand}from'./commands/profiles-command.js';const __filename=fileURLToPath(import.meta[a0_0x26301c(0x1c2)]),__dirname=dirname(__filename),packageJson=JSON['parse'](readFileSync(join(__dirname,a0_0x26301c(0x1e6)),'utf-8')),program=new Command();program[a0_0x26301c(0x20a)](a0_0x26301c(0x1d4))[a0_0x26301c(0x232)](a0_0x26301c(0x217))[a0_0x26301c(0x17a)](packageJson[a0_0x26301c(0x17a)],a0_0x26301c(0x16e),a0_0x26301c(0x1d8)),program[a0_0x26301c(0x18a)](a0_0x26301c(0x1f3),a0_0x26301c(0x175),a0_0x26301c(0x188))[a0_0x26301c(0x18a)](a0_0x26301c(0x214),a0_0x26301c(0x1c7))[a0_0x26301c(0x18a)](a0_0x26301c(0x1dd),a0_0x26301c(0x1e4))[a0_0x26301c(0x18a)]('--jsonl',a0_0x26301c(0x20c))[a0_0x26301c(0x18a)]('--tsv',a0_0x26301c(0x183))[a0_0x26301c(0x18a)](a0_0x26301c(0x172),'Save\x20output\x20to\x20file')[a0_0x26301c(0x18a)]('--limit\x20<rows>',a0_0x26301c(0x17d),'40')[a0_0x26301c(0x18a)](a0_0x26301c(0x1a7),a0_0x26301c(0x1ec),![])[a0_0x26301c(0x18a)](a0_0x26301c(0x19d),'Disable\x20ANSI\x20color\x20output\x20(also\x20respects\x20NO_COLOR\x20env\x20var)',![])[a0_0x26301c(0x18a)](a0_0x26301c(0x1c5),a0_0x26301c(0x18b),![])['option']('--timeout\x20<seconds>',a0_0x26301c(0x198),'30')[a0_0x26301c(0x18a)](a0_0x26301c(0x1f0),a0_0x26301c(0x1d9),![])['option'](a0_0x26301c(0x1ef),a0_0x26301c(0x189),![])[a0_0x26301c(0x18a)](a0_0x26301c(0x190),a0_0x26301c(0x211))[a0_0x26301c(0x18a)](a0_0x26301c(0x241),'Profile\x20to\x20use\x20(overrides\x20active\x20profile)')[a0_0x26301c(0x18a)](a0_0x26301c(0x1d0),a0_0x26301c(0x222))[a0_0x26301c(0x18a)]('--in\x20<name>',a0_0x26301c(0x234))[a0_0x26301c(0x18a)](a0_0x26301c(0x201),'Parent\x20segment\x20to\x20use\x20(overrides\x20context)')[a0_0x26301c(0x18a)](a0_0x26301c(0x1c9),a0_0x26301c(0x20d)),program[a0_0x26301c(0x21b)]({'formatHelp':(_0x2d59bf,_0x43feff)=>{const _0x3ca297=a0_0x26301c,_0x277924=_0x43feff['padWidth'](_0x2d59bf,_0x43feff),_0x4cf65f=0x2,_0x339781=0x2;function _0x4d7a43(_0x535f4a){const _0x4beb14=a0_0x518f;return!!_0x535f4a[_0x4beb14(0x16a)];}function _0x327d65(_0x3d1405,_0x5d8012){const _0x57bacd=a0_0x518f;if(_0x5d8012){const _0x416bdd=''+_0x3d1405[_0x57bacd(0x15c)](_0x277924+_0x339781)+_0x5d8012;return _0x416bdd;}return _0x3d1405;}function _0x2781ec(_0x450e9d){const _0x5397a1=a0_0x518f;return _0x450e9d[_0x5397a1(0x1db)]('\x0a')[_0x5397a1(0x1e7)](/^/gm,'\x20'['repeat'](_0x4cf65f));}const _0x2f953e=[];_0x2f953e[_0x3ca297(0x1dc)]('Usage:\x20'+_0x43feff[_0x3ca297(0x230)](_0x2d59bf));const _0x2f12aa=_0x43feff[_0x3ca297(0x210)](_0x2d59bf);_0x2f12aa&&(_0x2f953e['push'](''),_0x2f953e[_0x3ca297(0x1dc)](_0x2f12aa));const _0x5e8450=_0x2d59bf[_0x3ca297(0x235)][_0x3ca297(0x184)](_0x31da22=>!_0x4d7a43(_0x31da22));if(_0x5e8450[_0x3ca297(0x1b5)]>0x0){const _0x240b40=_0x5e8450[_0x3ca297(0x22f)](_0x27136c=>{const _0x5054d7=_0x3ca297,_0x5b2985=_0x43feff[_0x5054d7(0x23d)](_0x27136c),_0x327215=_0x43feff[_0x5054d7(0x1ab)](_0x27136c);return _0x327d65(_0x5b2985,_0x327215);});_0x2f953e['push'](''),_0x2f953e[_0x3ca297(0x1dc)](_0x3ca297(0x225)),_0x2f953e['push'](_0x2781ec(_0x240b40));}const _0x551a8f=_0x2d59bf[_0x3ca297(0x177)]['filter'](_0x2479d3=>!_0x4d7a43(_0x2479d3));if(_0x551a8f[_0x3ca297(0x1b5)]>0x0){const _0x5b18d3=_0x551a8f[_0x3ca297(0x22f)](_0x1df6fa=>{const _0x566937=_0x3ca297,_0x5c03a0=_0x43feff[_0x566937(0x1ff)](_0x1df6fa),_0x2915f1=_0x43feff[_0x566937(0x228)](_0x1df6fa);return _0x327d65(_0x5c03a0,_0x2915f1);});_0x2f953e[_0x3ca297(0x1dc)](''),_0x2f953e[_0x3ca297(0x1dc)]('Options:'),_0x2f953e[_0x3ca297(0x1dc)](_0x2781ec(_0x5b18d3));}const _0x20a47b=(_0x2d59bf[_0x3ca297(0x22c)]||[])[_0x3ca297(0x184)](_0x4c8fed=>!_0x4d7a43(_0x4c8fed));if(_0x20a47b[_0x3ca297(0x1b5)]>0x0){const _0x38c11c=_0x20a47b[_0x3ca297(0x22f)](_0x601b4d=>{const _0x29172a=_0x3ca297,_0x1ee823=_0x43feff[_0x29172a(0x1b2)](_0x601b4d),_0x4aaba2=_0x43feff['argumentDescription'](_0x601b4d);return _0x327d65(_0x1ee823,_0x4aaba2);});_0x2f953e['push'](''),_0x2f953e[_0x3ca297(0x1dc)](_0x3ca297(0x1a8)),_0x2f953e['push'](_0x2781ec(_0x38c11c));}return _0x2f953e[_0x3ca297(0x1db)]('\x0a');},'subcommandTerm':_0x30c849=>{const _0x44adb7=a0_0x26301c,_0x1c5afd=(_0x30c849[_0x44adb7(0x22c)]||[])[_0x44adb7(0x22f)](_0x1002be=>_0x1002be['required']?'<'+_0x1002be[_0x44adb7(0x20a)]()+'>':'['+_0x1002be[_0x44adb7(0x20a)]()+']')[_0x44adb7(0x1db)]('\x20'),_0x136820=_0x30c849[_0x44adb7(0x1ca)](),_0x1f2261=_0x136820[_0x44adb7(0x1b5)]>0x0?_0x30c849[_0x44adb7(0x20a)]()+',\x20'+_0x136820[_0x44adb7(0x1db)](',\x20'):_0x30c849[_0x44adb7(0x20a)]();return _0x1c5afd?_0x1f2261+'\x20'+_0x1c5afd:_0x1f2261;}}),program['hook'](a0_0x26301c(0x1e0),_0x341d3f=>{const _0xe93f1c=a0_0x26301c,_0x5971b7=_0x341d3f[_0xe93f1c(0x23e)]();if(!_0x5971b7[_0xe93f1c(0x20e)]){if(_0x5971b7['json'])_0x5971b7[_0xe93f1c(0x20e)]=_0xe93f1c(0x233);else{if(_0x5971b7[_0xe93f1c(0x16d)])_0x5971b7[_0xe93f1c(0x20e)]=_0xe93f1c(0x16d);else _0x5971b7[_0xe93f1c(0x170)]&&(_0x5971b7[_0xe93f1c(0x20e)]='tsv');}}_0x5971b7['in']&&!_0x5971b7[_0xe93f1c(0x209)]&&(_0x5971b7[_0xe93f1c(0x209)]=_0x5971b7['in']);});function createTDXInstance(_0x332539){const _0x163b63=a0_0x26301c,_0x5db131=new GlobalContext(_0x332539);_0x5db131[_0x163b63(0x17e)](_0x332539);const _0x74855={'site':_0x5db131['site'],'apiKey':_0x5db131[_0x163b63(0x20b)],'verbose':_0x5db131['verbose']};return new TDX(_0x74855);}program[a0_0x26301c(0x203)](a0_0x26301c(0x1b8))[a0_0x26301c(0x232)](a0_0x26301c(0x23b))['action'](async(_0x154dfc,_0x18594f)=>{const _0x469e0b=a0_0x26301c,_0x44afde=new DatabasesCommand(),_0x5e9449=program[_0x469e0b(0x23e)](),_0x19f5bc=createTDXInstance(_0x5e9449),_0x298488=await _0x44afde['run']({'options':{..._0x5e9449,..._0x18594f},'args':_0x154dfc?[_0x154dfc]:[],'tdx':_0x19f5bc});process[_0x469e0b(0x240)](_0x298488);}),program['command'](a0_0x26301c(0x1a3))[a0_0x26301c(0x232)](a0_0x26301c(0x22b))['option'](a0_0x26301c(0x1ee),a0_0x26301c(0x16c))['option']('--model\x20<name>',a0_0x26301c(0x1ba))['option'](a0_0x26301c(0x229),a0_0x26301c(0x179))[a0_0x26301c(0x18a)](a0_0x26301c(0x1c6),a0_0x26301c(0x215))[a0_0x26301c(0x1ed)](async(_0x38917d,_0x1fd182)=>{const _0x2e221f=a0_0x26301c,_0x515371=new ChatCommand(),_0x3bc6ac=program[_0x2e221f(0x23e)](),_0x29793b=createTDXInstance(_0x3bc6ac),_0x3c455b=await _0x515371[_0x2e221f(0x1f7)]({'options':{..._0x3bc6ac,..._0x1fd182},'args':_0x38917d,'tdx':_0x29793b});process[_0x2e221f(0x240)](_0x3c455b);});const apiCmd=program['command'](a0_0x26301c(0x1e1))[a0_0x26301c(0x1fc)](a0_0x26301c(0x1e8))[a0_0x26301c(0x1c0)]('after',a0_0x26301c(0x1cf))[a0_0x26301c(0x18a)](a0_0x26301c(0x206),a0_0x26301c(0x185),a0_0x26301c(0x1bb))[a0_0x26301c(0x18a)](a0_0x26301c(0x212),'Request\x20body\x20as\x20JSON\x20string')[a0_0x26301c(0x18a)](a0_0x26301c(0x195),a0_0x26301c(0x19e))[a0_0x26301c(0x18a)](a0_0x26301c(0x181),a0_0x26301c(0x218),(_0x3eb653,_0xa47381)=>{return _0xa47381?[..._0xa47381,_0x3eb653]:[_0x3eb653];})[a0_0x26301c(0x18a)](a0_0x26301c(0x1ae),'API\x20type\x20(td,\x20cdp,\x20workflow,\x20trino,\x20llm)','td')[a0_0x26301c(0x1ed)](async(_0x4527a0,_0x4bb058)=>{const _0x2c7bdb=a0_0x26301c;if(!_0x4527a0){apiCmd['help']();return;}const _0x432c6c=new ApiCommand(),_0x16c190=program['opts'](),_0x160d49=createTDXInstance(_0x16c190),_0x49d9ef=await _0x432c6c[_0x2c7bdb(0x1f7)]({'options':{..._0x16c190,..._0x4bb058},'args':[_0x4527a0],'tdx':_0x160d49});process[_0x2c7bdb(0x240)](_0x49d9ef);});program[a0_0x26301c(0x203)](a0_0x26301c(0x17f))[a0_0x26301c(0x232)](a0_0x26301c(0x1b3))[a0_0x26301c(0x18a)](a0_0x26301c(0x1bf),a0_0x26301c(0x1ce))[a0_0x26301c(0x18a)](a0_0x26301c(0x1f4),a0_0x26301c(0x234))[a0_0x26301c(0x1ed)](async(_0x3807ab,_0x1e7d09)=>{const _0x4c340d=a0_0x26301c,_0x5aecdb=new TablesCommand(),_0x5d68f9=program[_0x4c340d(0x23e)](),_0x56bc33=createTDXInstance(_0x5d68f9);_0x1e7d09['in']&&(_0x1e7d09['database']=_0x1e7d09['in']);const _0x285fb7=await _0x5aecdb[_0x4c340d(0x1f7)]({'options':{..._0x5d68f9,..._0x1e7d09},'args':_0x3807ab?[_0x3807ab]:[],'tdx':_0x56bc33});process[_0x4c340d(0x240)](_0x285fb7);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x166))[a0_0x26301c(0x232)](a0_0x26301c(0x194))['option']('-d,\x20--database\x20<database>',a0_0x26301c(0x23f))['option'](a0_0x26301c(0x1f4),a0_0x26301c(0x234))[a0_0x26301c(0x1ed)](async(_0x35c34a,_0x4d57f8)=>{const _0x3c4b9f=a0_0x26301c,_0x361af0=new ShowCommand(),_0x8999d4=program[_0x3c4b9f(0x23e)](),_0x1992c6=createTDXInstance(_0x8999d4);_0x4d57f8['in']&&(_0x4d57f8[_0x3c4b9f(0x209)]=_0x4d57f8['in']);const _0x3300db=await _0x361af0[_0x3c4b9f(0x1f7)]({'options':{..._0x8999d4,..._0x4d57f8},'args':_0x35c34a?[_0x35c34a]:[],'tdx':_0x1992c6});process['exit'](_0x3300db);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x168))[a0_0x26301c(0x180)]('desc')[a0_0x26301c(0x232)]('Describe\x20table\x20schema')[a0_0x26301c(0x18a)](a0_0x26301c(0x1bf),a0_0x26301c(0x23f))[a0_0x26301c(0x18a)](a0_0x26301c(0x1f4),a0_0x26301c(0x234))['action'](async(_0x32c4bb,_0x2b1a3c)=>{const _0x38995f=a0_0x26301c,_0xa8559e=new DescribeCommand(),_0x207a7e=program[_0x38995f(0x23e)](),_0x321e42=createTDXInstance(_0x207a7e);_0x2b1a3c['in']&&(_0x2b1a3c[_0x38995f(0x209)]=_0x2b1a3c['in']);const _0x18d2d1=await _0xa8559e[_0x38995f(0x1f7)]({'options':{..._0x207a7e,..._0x2b1a3c},'args':_0x32c4bb?[_0x32c4bb]:[],'tdx':_0x321e42});process[_0x38995f(0x240)](_0x18d2d1);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x162))['description'](a0_0x26301c(0x219))['option'](a0_0x26301c(0x1bf),'Database\x20to\x20query\x20(default:\x20information_schema)')[a0_0x26301c(0x18a)]('--in\x20<database>','Alias\x20for\x20--database\x20(natural\x20language\x20style)')[a0_0x26301c(0x18a)](a0_0x26301c(0x1f8),'Trino\x20catalog\x20(default:\x20td)')[a0_0x26301c(0x18a)]('-f,\x20--file\x20<path>',a0_0x26301c(0x213))['option'](a0_0x26301c(0x19f),a0_0x26301c(0x17d),'40')[a0_0x26301c(0x1ed)](async(_0x4ff531,_0x2f2bd6)=>{const _0x4b5f79=a0_0x26301c,_0x4ee3c6=new QueryCommand(),_0x48472b=program[_0x4b5f79(0x23e)](),_0x1e75c8=createTDXInstance(_0x48472b);_0x2f2bd6['in']&&(_0x2f2bd6[_0x4b5f79(0x209)]=_0x2f2bd6['in']);const _0x52c789=await _0x4ee3c6[_0x4b5f79(0x1f7)]({'options':{..._0x48472b,..._0x2f2bd6},'args':_0x4ff531?[_0x4ff531]:[],'tdx':_0x1e75c8});process['exit'](_0x52c789);}),program['command'](a0_0x26301c(0x18e))[a0_0x26301c(0x232)](a0_0x26301c(0x226))['action'](()=>{const _0x24577e=a0_0x26301c;console[_0x24577e(0x1e9)](_0x24577e(0x21e));}),program['command'](a0_0x26301c(0x227))[a0_0x26301c(0x232)](a0_0x26301c(0x21c))[a0_0x26301c(0x1ed)](async(_0x452685,_0xd0743a)=>{const _0x33ceb6=a0_0x26301c,_0x5bdf78=new SegmentsCommand(),_0x3e1b5d=program[_0x33ceb6(0x23e)](),_0x1966ce=createTDXInstance(_0x3e1b5d),_0x38c7a0=await _0x5bdf78[_0x33ceb6(0x1f7)]({'options':{..._0x3e1b5d,..._0xd0743a},'args':_0x452685?[_0x452685]:[],'tdx':_0x1966ce});process[_0x33ceb6(0x240)](_0x38c7a0);});const segmentCmd=program[a0_0x26301c(0x203)](a0_0x26301c(0x1e2))[a0_0x26301c(0x232)]('CDP\x20segment\x20management\x20commands');segmentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x199))['alias'](a0_0x26301c(0x208))[a0_0x26301c(0x232)]('Show\x20segment\x20details\x20(use\x20parent_name\x20or\x20parent_name/child_name)')['action'](async(_0x1c3bd6,_0x4af1f3)=>{const _0x2fdd6f=a0_0x26301c,_0x13cee0=new SegmentDescribeCommand(),_0x46f26b=program['opts'](),_0x4e6478=createTDXInstance(_0x46f26b),_0x1f5e81=await _0x13cee0[_0x2fdd6f(0x1f7)]({'options':{..._0x46f26b,..._0x4af1f3},'args':[_0x1c3bd6],'tdx':_0x4e6478});process[_0x2fdd6f(0x240)](_0x1f5e81);}),segmentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x15e))['description'](a0_0x26301c(0x1ad))[a0_0x26301c(0x1ed)](async(_0xa6bf83,_0x3a80e4)=>{const _0x10b406=a0_0x26301c,_0x37d4ff=new SegmentShowCommand(),_0x21a060=program['opts'](),_0x1fdd6a=createTDXInstance(_0x21a060),_0x2e3a54=await _0x37d4ff[_0x10b406(0x1f7)]({'options':{..._0x21a060,..._0x3a80e4},'args':[_0xa6bf83],'tdx':_0x1fdd6a});process[_0x10b406(0x240)](_0x2e3a54);}),segmentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1a6))['description'](a0_0x26301c(0x1b6))['action'](async(_0x2d5093,_0x556ad6)=>{const _0x2812e7=a0_0x26301c,_0x1a49c3=new SegmentFolderListCommand(),_0x188b08=program[_0x2812e7(0x23e)](),_0x1bc6ea=createTDXInstance(_0x188b08),_0x23a102=await _0x1a49c3[_0x2812e7(0x1f7)]({'options':{..._0x188b08,..._0x556ad6},'args':[_0x2d5093],'tdx':_0x1bc6ea});process[_0x2812e7(0x240)](_0x23a102);});const folderCmd=segmentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x15d))[a0_0x26301c(0x232)](a0_0x26301c(0x1fa));folderCmd['command'](a0_0x26301c(0x231))[a0_0x26301c(0x232)](a0_0x26301c(0x1d6))[a0_0x26301c(0x1ed)](async(_0x5bdb51,_0x6aefb8)=>{const _0x86d60a=a0_0x26301c,_0x113300=new SegmentFolderShowCommand(),_0xfb5cec=program[_0x86d60a(0x23e)](),_0x2f58dd=createTDXInstance(_0xfb5cec),_0x4572ae=await _0x113300[_0x86d60a(0x1f7)]({'options':{..._0xfb5cec,..._0x6aefb8},'args':[_0x5bdb51],'tdx':_0x2f58dd});process[_0x86d60a(0x240)](_0x4572ae);}),segmentCmd[a0_0x26301c(0x203)]('sql\x20<segment_name>')[a0_0x26301c(0x232)]('Get\x20SQL\x20query\x20for\x20segment\x20(use\x20parent_name\x20or\x20parent_name/child_name)')[a0_0x26301c(0x1ed)](async(_0x4eaaa8,_0x1dbe5c)=>{const _0x1cb8cb=a0_0x26301c,_0x4791de=new SegmentSQLCommand(),_0x56efe1=program[_0x1cb8cb(0x23e)](),_0x456169=createTDXInstance(_0x56efe1),_0x12f5fe=await _0x4791de[_0x1cb8cb(0x1f7)]({'options':{..._0x56efe1,..._0x1dbe5c},'args':[_0x4eaaa8],'tdx':_0x456169});process[_0x1cb8cb(0x240)](_0x12f5fe);}),program[a0_0x26301c(0x203)]('activations\x20<segment_name>')[a0_0x26301c(0x232)]('List\x20activations\x20for\x20a\x20segment\x20(use\x20parent_name/child_name)')[a0_0x26301c(0x1ed)](async(_0x255a0b,_0x5c8070)=>{const _0x11a9cd=a0_0x26301c,_0xda8327=new ActivationsCommand(),_0x267521=program[_0x11a9cd(0x23e)](),_0x5e8c84=createTDXInstance(_0x267521),_0x3ce4a4=await _0xda8327[_0x11a9cd(0x1f7)]({'options':{..._0x267521,..._0x5c8070},'args':[_0x255a0b],'tdx':_0x5e8c84});process['exit'](_0x3ce4a4);});const workflowCmd=program[a0_0x26301c(0x203)](a0_0x26301c(0x1cc))[a0_0x26301c(0x180)]('wf')[a0_0x26301c(0x232)](a0_0x26301c(0x23a));workflowCmd[a0_0x26301c(0x203)]('projects\x20[pattern]')[a0_0x26301c(0x232)](a0_0x26301c(0x173))[a0_0x26301c(0x1ed)](async(_0x19fa18,_0x3c4d21)=>{const _0x521728=new WorkflowProjectsCommand(),_0x28deee=program['opts'](),_0x55f457=createTDXInstance(_0x28deee),_0x8b68c0=await _0x521728['run']({'options':{..._0x28deee,..._0x3c4d21},'args':_0x19fa18?[_0x19fa18]:[],'tdx':_0x55f457});process['exit'](_0x8b68c0);}),workflowCmd[a0_0x26301c(0x203)]('workflows\x20[project]')[a0_0x26301c(0x180)]('ls')['description'](a0_0x26301c(0x207))[a0_0x26301c(0x1ed)](async(_0x526282,_0x1d792f)=>{const _0x3ede38=a0_0x26301c,_0x6477a0=new WorkflowWorkflowsCommand(),_0x35ea23=program['opts'](),_0xfc3e26=createTDXInstance(_0x35ea23),_0x1b99bd=await _0x6477a0[_0x3ede38(0x1f7)]({'options':{..._0x35ea23,..._0x1d792f},'args':_0x526282?[_0x526282]:[],'tdx':_0xfc3e26});process[_0x3ede38(0x240)](_0x1b99bd);}),workflowCmd['command'](a0_0x26301c(0x196))[a0_0x26301c(0x232)](a0_0x26301c(0x16b))[a0_0x26301c(0x18a)]('--status\x20<status>','Filter\x20by\x20status\x20(running,\x20success,\x20error,\x20blocked,\x20all)')[a0_0x26301c(0x18a)](a0_0x26301c(0x1fd),a0_0x26301c(0x22d))['option'](a0_0x26301c(0x20f),a0_0x26301c(0x1e3))['action'](async(_0x17bde5,_0x36eda6)=>{const _0x32c1c9=a0_0x26301c,_0x290221=new WorkflowSessionsCommand(),_0x4521b5=program['opts'](),_0x53fff2=createTDXInstance(_0x4521b5),_0x56d0e4=await _0x290221[_0x32c1c9(0x1f7)]({'options':{..._0x4521b5,..._0x36eda6},'args':_0x17bde5?[_0x17bde5]:[],'tdx':_0x53fff2});process['exit'](_0x56d0e4);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1eb))[a0_0x26301c(0x232)](a0_0x26301c(0x18d))['option'](a0_0x26301c(0x1e5),a0_0x26301c(0x164))[a0_0x26301c(0x1ed)](async(_0x511786,_0x5266c4)=>{const _0xcc328b=a0_0x26301c,_0x145cf5=new WorkflowAttemptsCommand(),_0x4eb536=program[_0xcc328b(0x23e)](),_0xfd7869=createTDXInstance(_0x4eb536),_0x2fdb49=await _0x145cf5['run']({'options':{..._0x4eb536,..._0x5266c4},'args':_0x511786?[_0x511786]:[],'tdx':_0xfd7869});process[_0xcc328b(0x240)](_0x2fdb49);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x19c))[a0_0x26301c(0x232)](a0_0x26301c(0x17c))[a0_0x26301c(0x1ed)](async(_0x5abc71,_0x2a1765)=>{const _0xcb9289=a0_0x26301c,_0x2fb623=new WorkflowAttemptCommand(),_0x3ef218=program['opts'](),_0x329ef9=createTDXInstance(_0x3ef218),_0x1f3f1c=await _0x2fb623[_0xcb9289(0x1f7)]({'options':{..._0x3ef218,..._0x2a1765},'args':[_0x5abc71],'tdx':_0x329ef9});process['exit'](_0x1f3f1c);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1bc))['description'](a0_0x26301c(0x1d7))['option'](a0_0x26301c(0x167),a0_0x26301c(0x163))[a0_0x26301c(0x1ed)](async(_0x28ad33,_0xab1736)=>{const _0x530402=a0_0x26301c,_0x4d58ab=new WorkflowTasksCommand(),_0x4038dd=program[_0x530402(0x23e)](),_0x2b0e25=createTDXInstance(_0x4038dd),_0xd542e=await _0x4d58ab[_0x530402(0x1f7)]({'options':{..._0x4038dd,..._0xab1736},'args':[_0x28ad33],'tdx':_0x2b0e25});process[_0x530402(0x240)](_0xd542e);}),workflowCmd['command'](a0_0x26301c(0x242))[a0_0x26301c(0x232)](a0_0x26301c(0x187))[a0_0x26301c(0x18a)]('--offset\x20<number>','Starting\x20offset\x20for\x20logs\x20(default:\x200)',_0x3485b9=>parseInt(_0x3485b9,0xa),0x0)['action'](async(_0x6ab9be,_0x421e93,_0x2aa5a5)=>{const _0x36dcea=a0_0x26301c,_0x269dd2=new WorkflowLogsCommand(),_0x3b5fde=program['opts'](),_0x58124e=createTDXInstance(_0x3b5fde),_0x1964a0=await _0x269dd2['run']({'options':{..._0x3b5fde,..._0x2aa5a5},'args':[_0x6ab9be,_0x421e93],'tdx':_0x58124e});process[_0x36dcea(0x240)](_0x1964a0);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1f5))[a0_0x26301c(0x232)](a0_0x26301c(0x174))[a0_0x26301c(0x18a)](a0_0x26301c(0x1fe),a0_0x26301c(0x160))['action'](async(_0xff5bea,_0x5f21f6)=>{const _0x2a3e3e=a0_0x26301c,_0x4ec959=new WorkflowKillCommand(),_0x18d1b5=program['opts'](),_0x46be8b=createTDXInstance(_0x18d1b5),_0x18aa5e=await _0x4ec959[_0x2a3e3e(0x1f7)]({'options':{..._0x18d1b5,..._0x5f21f6},'args':[_0xff5bea],'tdx':_0x46be8b});process[_0x2a3e3e(0x240)](_0x18aa5e);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x182))[a0_0x26301c(0x232)]('Retry\x20a\x20session\x20or\x20attempt\x20(prefix\x20with\x20session:\x20or\x20attempt:)')[a0_0x26301c(0x18a)](a0_0x26301c(0x21d),'Resume\x20from\x20specific\x20task\x20(session\x20retry\x20only)')[a0_0x26301c(0x18a)](a0_0x26301c(0x1d2),'Resume\x20from\x20specific\x20task\x20(attempt\x20retry\x20only)')['option'](a0_0x26301c(0x1aa),a0_0x26301c(0x244))[a0_0x26301c(0x18a)]('--force','Force\x20retry\x20even\x20if\x20not\x20failed\x20(attempt\x20retry\x20only)')[a0_0x26301c(0x1ed)](async(_0x154ae4,_0x22ca00)=>{const _0x2bfd89=a0_0x26301c,_0x192027=new WorkflowRetryCommand(),_0x52bfcc=program[_0x2bfd89(0x23e)](),_0x357081=createTDXInstance(_0x52bfcc),_0x4d249b=await _0x192027[_0x2bfd89(0x1f7)]({'options':{..._0x52bfcc,..._0x22ca00},'args':[_0x154ae4],'tdx':_0x357081});process[_0x2bfd89(0x240)](_0x4d249b);}),workflowCmd['command'](a0_0x26301c(0x1b4))[a0_0x26301c(0x232)](a0_0x26301c(0x1f1))[a0_0x26301c(0x18a)](a0_0x26301c(0x1a1),'Specific\x20revision\x20to\x20download\x20(default:\x20latest)')[a0_0x26301c(0x1ed)](async(_0x3f6d5f,_0x1ef204,_0x2044b2)=>{const _0x1ee516=a0_0x26301c,_0xd387dc=new WorkflowDownloadCommand(),_0x3cf065=program[_0x1ee516(0x23e)](),_0x2646d0=createTDXInstance(_0x3cf065),_0x9ade2d=await _0xd387dc['run']({'options':{..._0x3cf065,..._0x2044b2},'args':[_0x3f6d5f,_0x1ef204||'.'],'tdx':_0x2646d0});process[_0x1ee516(0x240)](_0x9ade2d);}),workflowCmd['command'](a0_0x26301c(0x205))['description'](a0_0x26301c(0x1af))[a0_0x26301c(0x18a)]('--name\x20<name>',a0_0x26301c(0x21a))['option']('--revision\x20<revision>',a0_0x26301c(0x200))[a0_0x26301c(0x18a)](a0_0x26301c(0x1a4),a0_0x26301c(0x1de))['action'](async(_0x636c34,_0x505773)=>{const _0x438b65=a0_0x26301c,_0x4c7115=new WorkflowPushCommand(),_0x4cba97=program[_0x438b65(0x23e)](),_0x4fbcd8=createTDXInstance(_0x4cba97),_0x2af85a=await _0x4c7115[_0x438b65(0x1f7)]({'options':{..._0x4cba97,..._0x505773},'args':_0x636c34?[_0x636c34]:[],'tdx':_0x4fbcd8});process['exit'](_0x2af85a);}),workflowCmd[a0_0x26301c(0x203)](a0_0x26301c(0x17b))[a0_0x26301c(0x232)](a0_0x26301c(0x171))[a0_0x26301c(0x1ed)](async(_0x1c4fd5,_0x3a3f2f)=>{const _0x42dc56=a0_0x26301c,_0xf78f11=new WorkflowDeleteCommand(),_0x6a0f32=program[_0x42dc56(0x23e)](),_0x80ad0f=createTDXInstance(_0x6a0f32),_0x4bb660=await _0xf78f11[_0x42dc56(0x1f7)]({'options':{..._0x6a0f32,..._0x3a3f2f},'args':[_0x1c4fd5],'tdx':_0x80ad0f});process['exit'](_0x4bb660);});const llmCmd=program[a0_0x26301c(0x203)](a0_0x26301c(0x1b1))['description'](a0_0x26301c(0x23c));llmCmd[a0_0x26301c(0x203)](a0_0x26301c(0x22a))[a0_0x26301c(0x232)](a0_0x26301c(0x15f))[a0_0x26301c(0x1ed)](async(_0x1ffd26,_0x4a5224)=>{const _0x27be91=a0_0x26301c,_0x3f36eb=new LLMUseCommand(),_0x4aff59=program[_0x27be91(0x23e)](),_0x217133=createTDXInstance(_0x4aff59),_0x295503=await _0x3f36eb['run']({'options':{..._0x4aff59,..._0x4a5224},'args':[_0x1ffd26],'tdx':_0x217133});process[_0x27be91(0x240)](_0x295503);}),llmCmd['command']('models')['description'](a0_0x26301c(0x186))['action'](async _0x144b45=>{const _0x47615f=a0_0x26301c,_0x2919e3=new LLMModelsCommand(),_0x5c216d=program[_0x47615f(0x23e)](),_0x3d4a1d=createTDXInstance(_0x5c216d),_0x167185=await _0x2919e3[_0x47615f(0x1f7)]({'options':{..._0x5c216d,..._0x144b45},'args':[],'tdx':_0x3d4a1d});process[_0x47615f(0x240)](_0x167185);}),llmCmd['command'](a0_0x26301c(0x1c8))[a0_0x26301c(0x232)](a0_0x26301c(0x1df))[a0_0x26301c(0x1ed)](async(_0x28311a,_0x15b30a)=>{const _0x214663=a0_0x26301c,_0x1a34f3=new LLMProjectsCommand(),_0x1cfd22=program['opts'](),_0x188e84=createTDXInstance(_0x1cfd22),_0x4a900b=await _0x1a34f3[_0x214663(0x1f7)]({'options':{..._0x1cfd22,..._0x15b30a},'args':_0x28311a?[_0x28311a]:[],'tdx':_0x188e84});process[_0x214663(0x240)](_0x4a900b);});function a0_0x5e3d(){const _0x591d88=['Run\x20Trino\x20query\x20with\x20streaming\x20results','Override\x20project\x20name','configureHelp','List\x20parent\x20segments\x20or\x20child\x20segments\x20under\x20a\x20parent','--from-task\x20<task>','Job\x20commands\x20-\x20coming\x20soon','1889199BQicGF','--starter-message\x20<text>','Show\x20context\x20with\x20sources\x20(for\x20debugging)','Database\x20to\x20use\x20(overrides\x20context)','--clear','89190VGPozG','Commands:','Job\x20management\x20commands','segments\x20[parent_name]','optionDescription','--temperature\x20<n>','use\x20<project-name>','Chat\x20with\x20an\x20LLM\x20agent\x20(simplified\x20interface)','registeredArguments','Start\x20time\x20filter\x20(ISO\x208601\x20format)','34070wsQpLP','map','commandUsage','show\x20<folder_ref>','description','json','Alias\x20for\x20--database\x20(natural\x20language\x20style)','commands','6953340WcVTot','Model\x20type\x20(default:\x20claude-4.5-sonnet)','update\x20<agent-name>','Clear\x20session\x20context','Workflow\x20(Digdag)\x20management\x20commands','List\x20all\x20databases\x20(optionally\x20filtered\x20by\x20glob\x20pattern)','LLM\x20operations\x20(models,\x20projects,\x20agents,\x20chat)','subcommandTerm','opts','Database\x20name\x20(used\x20when\x20not\x20specified\x20in\x20table\x20pattern)','exit','--profile\x20<name>','logs\x20<attempt-id>\x20<task-name>','--prompt\x20<text>','Override\x20parameters\x20(JSON\x20string\x20or\x20@file.json)','2ZKTBJB','padEnd','folder','show\x20<segment_name>','Set\x20current\x20project\x20context\x20for\x20agent\x20operations','Reason\x20for\x20killing\x20the\x20attempt','Delete\x20an\x20agent','query\x20[sql]','Include\x20subtasks\x20in\x20the\x20output','Include\x20retried\x20attempts','claude-4.5-sonnet','show\x20[table]','--include-subtasks','describe\x20[table]','slice','hidden','List\x20workflow\x20execution\x20sessions\x20(filter\x20by\x20project\x20or\x20project.workflow)','Agent\x20reference\x20(project-name/agent-name)','jsonl','-v,\x20--version','Show\x20current\x20resolved\x20context','tsv','Delete\x20workflow\x20project\x20from\x20Treasure\x20Data','--output\x20<file>','List\x20all\x20workflow\x20projects\x20(optionally\x20filtered\x20by\x20glob\x20pattern)','Kill\x20a\x20running\x20attempt','TD\x20site/region\x20(us01,\x20jp01,\x20eu01,\x20ap02,\x20ap03,\x20dev-us01,\x20dev-eu01,\x20stg-us01,\x20stg-jp01,\x20stg-ap03;\x20aliases:\x20us,\x20jp,\x20aws,\x20dev,\x20stg)','--description\x20<text>','options','project','Temperature\x20(0.0-2.0,\x20default:\x200.7)','version','delete\x20<project-name-or-id>','Show\x20specific\x20attempt\x20details','Maximum\x20rows\x20to\x20display\x20in\x20table\x20format\x20(default:\x2040)','injectIntoOptions','tables\x20[pattern]','alias','-H,\x20--header\x20<header>','retry\x20<session-id|attempt-id>','Output\x20in\x20TSV\x20format\x20(shorthand\x20for\x20--format\x20tsv)','filter','HTTP\x20method\x20(GET,\x20POST,\x20PUT,\x20DELETE,\x20PATCH)','List\x20available\x20LLM\x20models','Show\x20logs\x20for\x20a\x20specific\x20task','us01','Skip\x20confirmation\x20prompts','option','Enable\x20verbose\x20logging','Show\x20agent\x20details','List\x20workflow\x20attempts\x20(filter\x20by\x20project\x20or\x20project.workflow)','job','Starter\x20message','--session\x20<id>','profiles','Create\x20a\x20new\x20agent\x20in\x20current\x20project','--model\x20<name>','Show\x20table\x20contents\x20(SELECT\x20*\x20with\x20limit)','-f,\x20--file\x20<path>','sessions\x20[project]','System\x20prompt/instructions\x20(default:\x20empty)','Set\x20operation\x20timeout\x20in\x20seconds','describe\x20<segment_name>','LLM\x20project\x20management','--name\x20<text>','attempt\x20<attempt-id>','--no-color','Read\x20request\x20body\x20from\x20file','--limit\x20<rows>','194100ghozLd','--revision\x20<revision>','--debug','chat\x20[message...]','--skip-validation','Create\x20a\x20new\x20LLM\x20project','folders\x20<parent_name>','--color','Arguments:','use\x20[resource]\x20[value]','--params\x20<json>','subcommandDescription','Show\x20chat\x20history\x20(or\x20list\x20all\x20sessions\x20if\x20no\x20ID\x20provided)','Execute\x20segment\x20SQL\x20query\x20and\x20show\x20results\x20(use\x20parent_name\x20or\x20parent_name/child_name)','--type\x20<api_type>','Push\x20workflow\x20project\x20to\x20Treasure\x20Data\x20(digdag-style:\x20cd\x20into\x20project,\x20then\x20push\x20<name>)','argv','llm','argumentTerm','List\x20tables\x20(e.g.,\x20mydb,\x20mydb.*,\x20*.user*,\x20mydb.user*)','download\x20<project-name>\x20[output-dir]','length','List\x20segment\x20folders\x20under\x20a\x20parent\x20segment','7KuFEJI','databases\x20[pattern]','437313TIZBWK','Model\x20name\x20(default:\x20claude-4.5-sonnet)','GET','tasks\x20<attempt-id>','context','0.7','-d,\x20--database\x20<database>','addHelpText','1958xSlXuB','url','16oLxMBY','Delete\x20an\x20LLM\x20project','--verbose','--new','Output\x20format\x20(table,\x20json,\x20jsonl,\x20tsv)','projects\x20[pattern]','--llm-project\x20<name>','aliases','--max-tool-iterations\x20<n>','workflow','8ZqQMaV','Database\x20name\x20(used\x20when\x20not\x20specified\x20in\x20pattern)','\x0aExamples:\x0a\x20\x20$\x20tdx\x20api\x20/v3/database/list\x0a\x20\x20$\x20tdx\x20api\x20/v3/database/show/mydb\x0a\x20\x20$\x20tdx\x20api\x20-X\x20POST\x20--data\x20\x27{\x22query\x22:\x22SELECT\x201\x22}\x27\x20/v3/job/issue/hive/mydb\x0a\x20\x20$\x20tdx\x20api\x20/entities/parent_segments\x20--type\x20cdp\x0a\x20\x20$\x20tdx\x20api\x20/api/workflows\x20--type\x20workflow\x0a','-d,\x20--database\x20<name>','history\x20[chat-id]','--resume-from\x20<task>','show\x20<agent-name>','tdx','List\x20agents\x20in\x20current\x20project\x20(optionally\x20filtered\x20by\x20pattern)','Show\x20folder\x20details\x20(use\x20parent_name/folder_name)','Show\x20tasks\x20for\x20an\x20attempt','output\x20the\x20version\x20number','Preview\x20operation\x20without\x20executing','Agent\x20name','join','push','--json','Skip\x20validation\x20of\x20.dig\x20files','List\x20all\x20LLM\x20projects\x20(optionally\x20filtered\x20by\x20pattern)','preAction','api\x20[endpoint]','segment','End\x20time\x20filter\x20(ISO\x208601\x20format)','Output\x20in\x20JSON\x20format\x20(shorthand\x20for\x20--format\x20json)','--include-retried','../package.json','replace','Make\x20raw\x20HTTP\x20requests\x20to\x20TD\x20APIs','log','Maximum\x20tool\x20iterations\x20(default:\x204)','attempts\x20[project]','Force\x20ANSI\x20color\x20output\x20(overrides\x20TTY\x20detection)','action','--agent\x20<ref>','-y,\x20--yes','--dry-run','Download\x20workflow\x20project\x20from\x20Treasure\x20Data','parse','--site\x20<site>','--in\x20<database>','kill\x20<attempt-id>','Update\x20an\x20existing\x20agent','run','--catalog\x20<catalog>','create\x20<name>','Segment\x20folder\x20management','Agent\x20prompt/instructions','summary','--from\x20<timestamp>','--reason\x20<text>','optionTerm','Revision\x20name\x20(default:\x20timestamp)','--parent-segment\x20<name>','Agent\x20description','command','916947IlOqJO','push\x20[project-name-or-dir]','-X,\x20--method\x20<method>','List\x20workflows\x20(optionally\x20filtered\x20by\x20project)','desc','database','name','apiKey','Output\x20in\x20JSON\x20Lines\x20format\x20(shorthand\x20for\x20--format\x20jsonl)','LLM\x20project\x20to\x20use\x20(overrides\x20context)','format','--to\x20<timestamp>','commandDescription','Session\x20ID\x20to\x20use\x20(defaults\x20to\x20parent\x20PID,\x20allows\x20sharing\x20sessions\x20across\x20processes)','--data\x20<data>','Read\x20SQL\x20query\x20from\x20file','--format\x20<format>','Start\x20a\x20new\x20chat\x20session','Project\x20description','AI-native\x20CLI\x20for\x20Treasure\x20Data','Custom\x20header\x20(format:\x20\x22Key:\x20Value\x22,\x20repeatable)'];a0_0x5e3d=function(){return _0x591d88;};return a0_0x5e3d();}const projectCmd=llmCmd[a0_0x26301c(0x203)](a0_0x26301c(0x178))[a0_0x26301c(0x232)](a0_0x26301c(0x19a));projectCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1f9))[a0_0x26301c(0x232)](a0_0x26301c(0x1a5))[a0_0x26301c(0x18a)](a0_0x26301c(0x176),a0_0x26301c(0x216))[a0_0x26301c(0x1ed)](async(_0x4ee86e,_0x2b2a9f)=>{const _0x559b63=a0_0x26301c,_0x29d2d0=new LLMProjectCreateCommand(),_0x4c5566=program[_0x559b63(0x23e)](),_0x261916=createTDXInstance(_0x4c5566),_0x3642aa=await _0x29d2d0['run']({'options':{..._0x4c5566,..._0x2b2a9f},'args':[_0x4ee86e],'tdx':_0x261916});process[_0x559b63(0x240)](_0x3642aa);}),projectCmd['command']('delete\x20<name>')['description'](a0_0x26301c(0x1c4))[a0_0x26301c(0x1ed)](async(_0x17f103,_0x26adbf)=>{const _0x1fc7b8=a0_0x26301c,_0x564dd0=new LLMProjectDeleteCommand(),_0x2b1a63=program[_0x1fc7b8(0x23e)](),_0x576249=createTDXInstance(_0x2b1a63),_0x48c0db=await _0x564dd0['run']({'options':{..._0x2b1a63,..._0x26adbf},'args':[_0x17f103],'tdx':_0x576249});process[_0x1fc7b8(0x240)](_0x48c0db);}),llmCmd[a0_0x26301c(0x203)]('agents\x20[pattern]')['description'](a0_0x26301c(0x1d5))[a0_0x26301c(0x1ed)](async(_0x1b5a09,_0x3f1233)=>{const _0x3143ce=a0_0x26301c,_0x586a41=new LLMAgentsCommand(),_0x375862=program[_0x3143ce(0x23e)](),_0x11f209=createTDXInstance(_0x375862),_0x984a57=await _0x586a41[_0x3143ce(0x1f7)]({'options':{..._0x375862,..._0x3f1233},'args':_0x1b5a09?[_0x1b5a09]:[],'tdx':_0x11f209});process[_0x3143ce(0x240)](_0x984a57);});const agentCmd=llmCmd[a0_0x26301c(0x203)]('agent')['description']('LLM\x20agent\x20management');agentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1d3))[a0_0x26301c(0x232)](a0_0x26301c(0x18c))['action'](async(_0xf86e63,_0x21f63d)=>{const _0x3e46ae=a0_0x26301c,_0xe5a8d7=new LLMAgentShowCommand(),_0x3048ce=program['opts'](),_0x94877e=createTDXInstance(_0x3048ce),_0x2246c0=await _0xe5a8d7[_0x3e46ae(0x1f7)]({'options':{..._0x3048ce,..._0x21f63d},'args':[_0xf86e63],'tdx':_0x94877e});process[_0x3e46ae(0x240)](_0x2246c0);}),agentCmd['command']('create\x20<name>')[a0_0x26301c(0x232)](a0_0x26301c(0x192))[a0_0x26301c(0x18a)]('--system-prompt\x20<text>',a0_0x26301c(0x197))[a0_0x26301c(0x18a)](a0_0x26301c(0x193),a0_0x26301c(0x237),a0_0x26301c(0x165))['option'](a0_0x26301c(0x220),'Starter\x20message')[a0_0x26301c(0x18a)](a0_0x26301c(0x1cb),a0_0x26301c(0x1ea),'4')['option']('--temperature\x20<n>',a0_0x26301c(0x179),a0_0x26301c(0x1be))[a0_0x26301c(0x1ed)](async(_0x3dc5a7,_0x69d5a5)=>{const _0x5cb6ea=a0_0x26301c,_0x30d8e6=new LLMAgentCreateCommand(),_0x41c564=program[_0x5cb6ea(0x23e)](),_0x55fc7c=createTDXInstance(_0x41c564),_0x5b3e42=await _0x30d8e6['run']({'options':{..._0x41c564,..._0x69d5a5},'args':[_0x3dc5a7],'tdx':_0x55fc7c});process['exit'](_0x5b3e42);}),agentCmd[a0_0x26301c(0x203)](a0_0x26301c(0x238))[a0_0x26301c(0x232)](a0_0x26301c(0x1f6))[a0_0x26301c(0x18a)](a0_0x26301c(0x19b),a0_0x26301c(0x1da))[a0_0x26301c(0x18a)](a0_0x26301c(0x243),a0_0x26301c(0x1fb))[a0_0x26301c(0x18a)](a0_0x26301c(0x176),a0_0x26301c(0x202))['option'](a0_0x26301c(0x220),a0_0x26301c(0x18f))['action'](async(_0x2b4398,_0x375c23)=>{const _0x36a7ca=a0_0x26301c,_0x14bcf5=new LLMAgentUpdateCommand(),_0x3593c7=program[_0x36a7ca(0x23e)](),_0x3c83d4=createTDXInstance(_0x3593c7),_0x439a92=await _0x14bcf5[_0x36a7ca(0x1f7)]({'options':{..._0x3593c7,..._0x375c23},'args':[_0x2b4398],'tdx':_0x3c83d4});process['exit'](_0x439a92);}),agentCmd['command']('delete\x20<agent-name>')[a0_0x26301c(0x232)](a0_0x26301c(0x161))[a0_0x26301c(0x1ed)](async(_0x6717f4,_0xb9958b)=>{const _0x3afc49=a0_0x26301c,_0x4cb3dd=new LLMAgentDeleteCommand(),_0x345a79=program['opts'](),_0x57d5f4=createTDXInstance(_0x345a79),_0x594715=await _0x4cb3dd[_0x3afc49(0x1f7)]({'options':{..._0x345a79,..._0xb9958b},'args':[_0x6717f4],'tdx':_0x57d5f4});process[_0x3afc49(0x240)](_0x594715);}),llmCmd[a0_0x26301c(0x203)](a0_0x26301c(0x1d1))['description'](a0_0x26301c(0x1ac))[a0_0x26301c(0x1ed)](async(_0x588fdc,_0x38df2f)=>{const _0x2e42b9=a0_0x26301c,_0x553dad=new LLMHistoryCommand(),_0x4e7a8c=program[_0x2e42b9(0x23e)](),_0x21e94f=createTDXInstance(_0x4e7a8c),_0x1749e=await _0x553dad[_0x2e42b9(0x1f7)]({'options':{..._0x4e7a8c,..._0x38df2f},'args':_0x588fdc?[_0x588fdc]:[],'tdx':_0x21e94f});process[_0x2e42b9(0x240)](_0x1749e);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x1bd))['description'](a0_0x26301c(0x16f))['option'](a0_0x26301c(0x1a2),a0_0x26301c(0x221))[a0_0x26301c(0x18a)](a0_0x26301c(0x223),a0_0x26301c(0x239))[a0_0x26301c(0x1ed)](async _0x2203d2=>{const _0x3132a9=a0_0x26301c,_0x174e6f=new ContextCommand(),_0x36cc48=program[_0x3132a9(0x23e)](),_0xf262d1=await _0x174e6f[_0x3132a9(0x1f7)]({'options':{..._0x36cc48,..._0x2203d2},'args':[],'tdx':null});process[_0x3132a9(0x240)](_0xf262d1);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x1a9))['description']('Set\x20session-level\x20context\x20(resources:\x20database,\x20parent_segment,\x20llm_project,\x20llm_agent,\x20profile)')[a0_0x26301c(0x1ed)](async(_0x53fdbf,_0x2ce9bb,_0x54772f)=>{const _0x26408d=a0_0x26301c,_0x1f4851=new UseCommand(),_0x43cf41=program[_0x26408d(0x23e)](),_0x5ba593=[];if(_0x53fdbf)_0x5ba593[_0x26408d(0x1dc)](_0x53fdbf);if(_0x2ce9bb)_0x5ba593[_0x26408d(0x1dc)](_0x2ce9bb);const _0x3b8453=await _0x1f4851[_0x26408d(0x1f7)]({'options':{..._0x43cf41,..._0x54772f},'args':_0x5ba593,'tdx':null});process[_0x26408d(0x240)](_0x3b8453);}),program[a0_0x26301c(0x203)](a0_0x26301c(0x191))[a0_0x26301c(0x232)]('List\x20all\x20available\x20profiles')[a0_0x26301c(0x1ed)](async _0x3d8bdd=>{const _0x3f23c8=new ProfilesCommand(),_0x339c6f=program['opts'](),_0x34273b=await _0x3f23c8['run']({'options':{..._0x339c6f,..._0x3d8bdd},'args':[],'tdx':null});process['exit'](_0x34273b);}),program[a0_0x26301c(0x1f2)](process[a0_0x26301c(0x1b0)]);!process[a0_0x26301c(0x1b0)][a0_0x26301c(0x169)](0x2)[a0_0x26301c(0x1b5)]&&program['outputHelp']();
|
|
2
|
+
const a0_0x5cb1e9=a0_0x29af;(function(_0x10a5cb,_0x16fb6d){const _0x52427d=a0_0x29af,_0x242b33=_0x10a5cb();while(!![]){try{const _0x30edaa=-parseInt(_0x52427d(0x1db))/0x1*(parseInt(_0x52427d(0x1da))/0x2)+parseInt(_0x52427d(0x18f))/0x3*(parseInt(_0x52427d(0x134))/0x4)+-parseInt(_0x52427d(0x1c0))/0x5+-parseInt(_0x52427d(0x133))/0x6+-parseInt(_0x52427d(0x14b))/0x7+-parseInt(_0x52427d(0x189))/0x8+-parseInt(_0x52427d(0x1d7))/0x9*(-parseInt(_0x52427d(0x1b2))/0xa);if(_0x30edaa===_0x16fb6d)break;else _0x242b33['push'](_0x242b33['shift']());}catch(_0x1162be){_0x242b33['push'](_0x242b33['shift']());}}}(a0_0x3def,0xd67a6));import{Command}from'commander';import{readFileSync}from'fs';import{fileURLToPath}from'url';import{dirname,join}from'path';import{TDX}from'./sdk/index.js';import{GlobalContext}from'./core/global-context.js';import{QueryCommand}from'./commands/query-command.js';import{ChatCommand}from'./commands/chat-command.js';import{ApiCommand}from'./commands/api-command.js';import{DatabasesCommand}from'./commands/databases.js';import{TablesCommand}from'./commands/tables.js';import{SegmentsCommand}from'./commands/segments.js';import{ActivationsCommand}from'./commands/activations.js';function a0_0x29af(_0x1cb61f,_0x21d0c2){const _0x3def70=a0_0x3def();return a0_0x29af=function(_0x29af32,_0x1b7103){_0x29af32=_0x29af32-0x133;let _0x4cfac4=_0x3def70[_0x29af32];return _0x4cfac4;},a0_0x29af(_0x1cb61f,_0x21d0c2);}import{ShowCommand}from'./commands/show.js';import{DescribeCommand}from'./commands/describe.js';import{SegmentDescribeCommand,SegmentShowCommand,SegmentFolderListCommand,SegmentFolderShowCommand,SegmentSQLCommand}from'./commands/segment-command.js';import{WorkflowProjectsCommand,WorkflowWorkflowsCommand,WorkflowSessionsCommand,WorkflowAttemptsCommand,WorkflowAttemptCommand,WorkflowTasksCommand,WorkflowLogsCommand,WorkflowKillCommand,WorkflowRetryCommand,WorkflowDownloadCommand,WorkflowPushCommand,WorkflowDeleteCommand}from'./commands/workflow-command.js';import{LLMModelsCommand,LLMProjectsCommand,LLMAgentsCommand,LLMAgentShowCommand,LLMAgentCreateCommand,LLMAgentUpdateCommand,LLMAgentDeleteCommand,LLMHistoryCommand,LLMUseCommand,LLMProjectCreateCommand,LLMProjectDeleteCommand}from'./commands/llm-command.js';import{LLMProxyCommand}from'./commands/llm-proxy.js';import{ContextCommand}from'./commands/context-command.js';import{UseCommand}from'./commands/use-command.js';import{ProfilesCommand}from'./commands/profiles-command.js';const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename),packageJson=JSON[a0_0x5cb1e9(0x1ad)](readFileSync(join(__dirname,a0_0x5cb1e9(0x165)),'utf-8')),program=new Command();program['name'](a0_0x5cb1e9(0x19d))[a0_0x5cb1e9(0x1ab)]('AI-native\x20CLI\x20for\x20Treasure\x20Data')[a0_0x5cb1e9(0x209)](packageJson['version'],a0_0x5cb1e9(0x151),a0_0x5cb1e9(0x1f4)),program[a0_0x5cb1e9(0x1cd)]('--site\x20<site>',a0_0x5cb1e9(0x16e),a0_0x5cb1e9(0x1eb))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1e8),a0_0x5cb1e9(0x1f8))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x193),a0_0x5cb1e9(0x1fd))[a0_0x5cb1e9(0x1cd)]('--jsonl',a0_0x5cb1e9(0x161))['option'](a0_0x5cb1e9(0x17e),a0_0x5cb1e9(0x1c4))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x13f),'Save\x20output\x20to\x20file')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1f6),a0_0x5cb1e9(0x173),'40')[a0_0x5cb1e9(0x1cd)]('--color',a0_0x5cb1e9(0x19a),![])[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1b1),a0_0x5cb1e9(0x1a2),![])[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1d1),a0_0x5cb1e9(0x1fc),![])[a0_0x5cb1e9(0x1cd)]('--timeout\x20<seconds>',a0_0x5cb1e9(0x1b0),'30')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x137),a0_0x5cb1e9(0x180),![])[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1bf),a0_0x5cb1e9(0x191),![])[a0_0x5cb1e9(0x1cd)]('--session\x20<id>',a0_0x5cb1e9(0x18e))[a0_0x5cb1e9(0x1cd)]('--profile\x20<name>',a0_0x5cb1e9(0x1a9))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1e3),a0_0x5cb1e9(0x1bd))['option'](a0_0x5cb1e9(0x19b),a0_0x5cb1e9(0x183))['option'](a0_0x5cb1e9(0x186),a0_0x5cb1e9(0x198))['option'](a0_0x5cb1e9(0x196),'LLM\x20project\x20to\x20use\x20(overrides\x20context)'),program[a0_0x5cb1e9(0x17c)]({'formatHelp':(_0x3d82c0,_0x262291)=>{const _0x4f0ae2=a0_0x5cb1e9,_0x281766=_0x262291[_0x4f0ae2(0x16a)](_0x3d82c0,_0x262291),_0x2a9342=0x2,_0xa9999a=0x2;function _0x1fa668(_0x5a736e){const _0x4555d8=_0x4f0ae2;return!!_0x5a736e[_0x4555d8(0x1d0)];}function _0x2c65c7(_0x31657a,_0x3d2418){const _0x248dcd=_0x4f0ae2;if(_0x3d2418){const _0x23da90=''+_0x31657a[_0x248dcd(0x187)](_0x281766+_0xa9999a)+_0x3d2418;return _0x23da90;}return _0x31657a;}function _0x3e4fc8(_0x3c8a34){const _0x715f89=_0x4f0ae2;return _0x3c8a34[_0x715f89(0x1be)]('\x0a')['replace'](/^/gm,'\x20'[_0x715f89(0x1b9)](_0x2a9342));}const _0x3ca559=[];_0x3ca559[_0x4f0ae2(0x1ca)](_0x4f0ae2(0x13e)+_0x262291[_0x4f0ae2(0x1ed)](_0x3d82c0));const _0x25d93a=_0x262291[_0x4f0ae2(0x16c)](_0x3d82c0);_0x25d93a&&(_0x3ca559[_0x4f0ae2(0x1ca)](''),_0x3ca559[_0x4f0ae2(0x1ca)](_0x25d93a));const _0x10badb=_0x3d82c0[_0x4f0ae2(0x212)][_0x4f0ae2(0x175)](_0x2d0729=>!_0x1fa668(_0x2d0729));if(_0x10badb['length']>0x0){const _0x40ec9e=_0x10badb['map'](_0x580f83=>{const _0xe67d27=_0x4f0ae2,_0x1929fb=_0x262291[_0xe67d27(0x1d2)](_0x580f83),_0x1bc836=_0x262291['subcommandDescription'](_0x580f83);return _0x2c65c7(_0x1929fb,_0x1bc836);});_0x3ca559['push'](''),_0x3ca559['push'](_0x4f0ae2(0x207)),_0x3ca559[_0x4f0ae2(0x1ca)](_0x3e4fc8(_0x40ec9e));}const _0x5ef164=_0x3d82c0[_0x4f0ae2(0x1d3)][_0x4f0ae2(0x175)](_0x3fc069=>!_0x1fa668(_0x3fc069));if(_0x5ef164[_0x4f0ae2(0x15a)]>0x0){const _0x2459b0=_0x5ef164[_0x4f0ae2(0x179)](_0xd2739b=>{const _0x4a632c=_0x4f0ae2,_0x435b78=_0x262291[_0x4a632c(0x1fb)](_0xd2739b),_0x52bf30=_0x262291['optionDescription'](_0xd2739b);return _0x2c65c7(_0x435b78,_0x52bf30);});_0x3ca559['push'](''),_0x3ca559['push']('Options:'),_0x3ca559[_0x4f0ae2(0x1ca)](_0x3e4fc8(_0x2459b0));}const _0x107ef9=(_0x3d82c0['registeredArguments']||[])[_0x4f0ae2(0x175)](_0x1c75f7=>!_0x1fa668(_0x1c75f7));if(_0x107ef9['length']>0x0){const _0x5dc108=_0x107ef9['map'](_0x2c8e09=>{const _0x18d75d=_0x4f0ae2,_0x292d6f=_0x262291['argumentTerm'](_0x2c8e09),_0x463fe6=_0x262291[_0x18d75d(0x20f)](_0x2c8e09);return _0x2c65c7(_0x292d6f,_0x463fe6);});_0x3ca559[_0x4f0ae2(0x1ca)](''),_0x3ca559[_0x4f0ae2(0x1ca)](_0x4f0ae2(0x1b6)),_0x3ca559[_0x4f0ae2(0x1ca)](_0x3e4fc8(_0x5dc108));}return _0x3ca559[_0x4f0ae2(0x1be)]('\x0a');},'subcommandTerm':_0x2ab477=>{const _0x391a99=a0_0x5cb1e9,_0x512b84=(_0x2ab477[_0x391a99(0x146)]||[])[_0x391a99(0x179)](_0x51e0e3=>_0x51e0e3[_0x391a99(0x13a)]?'<'+_0x51e0e3['name']()+'>':'['+_0x51e0e3[_0x391a99(0x181)]()+']')[_0x391a99(0x1be)]('\x20'),_0x24fcf6=_0x2ab477[_0x391a99(0x1ce)](),_0x3947f1=_0x24fcf6[_0x391a99(0x15a)]>0x0?_0x2ab477['name']()+',\x20'+_0x24fcf6['join'](',\x20'):_0x2ab477[_0x391a99(0x181)]();return _0x512b84?_0x3947f1+'\x20'+_0x512b84:_0x3947f1;}}),program['hook'](a0_0x5cb1e9(0x1a0),_0x3a5743=>{const _0x2f145f=a0_0x5cb1e9,_0x3e4676=_0x3a5743[_0x2f145f(0x185)]();if(!_0x3e4676[_0x2f145f(0x178)]){if(_0x3e4676[_0x2f145f(0x15d)])_0x3e4676[_0x2f145f(0x178)]=_0x2f145f(0x15d);else{if(_0x3e4676[_0x2f145f(0x1bb)])_0x3e4676[_0x2f145f(0x178)]=_0x2f145f(0x1bb);else _0x3e4676[_0x2f145f(0x20b)]&&(_0x3e4676[_0x2f145f(0x178)]=_0x2f145f(0x20b));}}_0x3e4676['in']&&!_0x3e4676[_0x2f145f(0x1ef)]&&(_0x3e4676[_0x2f145f(0x1ef)]=_0x3e4676['in']);});function createTDXInstance(_0x4ff080){const _0xd83f8e=a0_0x5cb1e9,_0xe16ab7=new GlobalContext(_0x4ff080);_0xe16ab7[_0xd83f8e(0x208)](_0x4ff080);const _0x3f73de={'site':_0xe16ab7['site'],'apiKey':_0xe16ab7['apiKey'],'verbose':_0xe16ab7[_0xd83f8e(0x1bc)]};return new TDX(_0x3f73de);}program[a0_0x5cb1e9(0x1ba)]('databases\x20[pattern]')['description'](a0_0x5cb1e9(0x15e))[a0_0x5cb1e9(0x14e)](async(_0x5f3c10,_0x3c9b04)=>{const _0x255950=a0_0x5cb1e9,_0x4da7b6=new DatabasesCommand(),_0x4fcccb=program[_0x255950(0x185)](),_0x3a086a=createTDXInstance(_0x4fcccb),_0x5a4e97=await _0x4da7b6[_0x255950(0x163)]({'options':{..._0x4fcccb,..._0x3c9b04},'args':_0x5f3c10?[_0x5f3c10]:[],'tdx':_0x3a086a});process['exit'](_0x5a4e97);}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x147))['description'](a0_0x5cb1e9(0x1ff))['option'](a0_0x5cb1e9(0x1f3),a0_0x5cb1e9(0x19e))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1a7),'Model\x20name\x20(default:\x20claude-4.5-sonnet)')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x15c),'Temperature\x20(0.0-2.0,\x20default:\x200.7)')['option']('--new','Start\x20a\x20new\x20chat\x20session')['action'](async(_0x1432a1,_0x36a0bc)=>{const _0x24ad21=a0_0x5cb1e9,_0x3ae296=new ChatCommand(),_0x206ecd=program['opts'](),_0x2d3f49=createTDXInstance(_0x206ecd),_0x50156c=await _0x3ae296[_0x24ad21(0x163)]({'options':{..._0x206ecd,..._0x36a0bc},'args':_0x1432a1,'tdx':_0x2d3f49});process[_0x24ad21(0x162)](_0x50156c);});const apiCmd=program['command'](a0_0x5cb1e9(0x1c1))[a0_0x5cb1e9(0x166)](a0_0x5cb1e9(0x200))['addHelpText']('after',a0_0x5cb1e9(0x17f))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x176),a0_0x5cb1e9(0x13b),a0_0x5cb1e9(0x13d))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1a4),a0_0x5cb1e9(0x20c))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1fe),a0_0x5cb1e9(0x1b7))['option']('-H,\x20--header\x20<header>',a0_0x5cb1e9(0x1b4),(_0x51cb77,_0x928e45)=>{return _0x928e45?[..._0x928e45,_0x51cb77]:[_0x51cb77];})[a0_0x5cb1e9(0x1cd)]('--type\x20<api_type>',a0_0x5cb1e9(0x1e7),'td')['action'](async(_0x586150,_0x24ff02)=>{const _0x564534=a0_0x5cb1e9;if(!_0x586150){apiCmd[_0x564534(0x190)]();return;}const _0x2c76a2=new ApiCommand(),_0x3397f7=program['opts'](),_0x317b0b=createTDXInstance(_0x3397f7),_0x3f136b=await _0x2c76a2['run']({'options':{..._0x3397f7,..._0x24ff02},'args':[_0x586150],'tdx':_0x317b0b});process[_0x564534(0x162)](_0x3f136b);});program[a0_0x5cb1e9(0x1ba)]('tables\x20[pattern]')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1cc))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x168),a0_0x5cb1e9(0x1a1))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x156),a0_0x5cb1e9(0x183))[a0_0x5cb1e9(0x14e)](async(_0x32e819,_0x2058d2)=>{const _0x509466=a0_0x5cb1e9,_0x17a942=new TablesCommand(),_0x472c55=program[_0x509466(0x185)](),_0x12842b=createTDXInstance(_0x472c55);_0x2058d2['in']&&(_0x2058d2[_0x509466(0x1ef)]=_0x2058d2['in']);const _0xc83b17=await _0x17a942[_0x509466(0x163)]({'options':{..._0x472c55,..._0x2058d2},'args':_0x32e819?[_0x32e819]:[],'tdx':_0x12842b});process[_0x509466(0x162)](_0xc83b17);}),program['command']('show\x20[table]')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1dc))[a0_0x5cb1e9(0x1cd)]('-d,\x20--database\x20<database>',a0_0x5cb1e9(0x1d5))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x156),a0_0x5cb1e9(0x183))[a0_0x5cb1e9(0x14e)](async(_0x2876eb,_0x1f1362)=>{const _0x67cb02=a0_0x5cb1e9,_0xda1232=new ShowCommand(),_0x1d3218=program['opts'](),_0x57cab8=createTDXInstance(_0x1d3218);_0x1f1362['in']&&(_0x1f1362[_0x67cb02(0x1ef)]=_0x1f1362['in']);const _0x1bc7e0=await _0xda1232[_0x67cb02(0x163)]({'options':{..._0x1d3218,..._0x1f1362},'args':_0x2876eb?[_0x2876eb]:[],'tdx':_0x57cab8});process[_0x67cb02(0x162)](_0x1bc7e0);}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x194))['alias'](a0_0x5cb1e9(0x199))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x158))['option'](a0_0x5cb1e9(0x168),a0_0x5cb1e9(0x1d5))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x156),a0_0x5cb1e9(0x183))[a0_0x5cb1e9(0x14e)](async(_0x4bcaec,_0x72b402)=>{const _0x5322fb=a0_0x5cb1e9,_0x5201e6=new DescribeCommand(),_0x98680a=program[_0x5322fb(0x185)](),_0x144661=createTDXInstance(_0x98680a);_0x72b402['in']&&(_0x72b402['database']=_0x72b402['in']);const _0x2861ab=await _0x5201e6[_0x5322fb(0x163)]({'options':{..._0x98680a,..._0x72b402},'args':_0x4bcaec?[_0x4bcaec]:[],'tdx':_0x144661});process[_0x5322fb(0x162)](_0x2861ab);}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1a8))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1e2))['option'](a0_0x5cb1e9(0x168),a0_0x5cb1e9(0x1f7))['option'](a0_0x5cb1e9(0x156),'Alias\x20for\x20--database\x20(natural\x20language\x20style)')[a0_0x5cb1e9(0x1cd)]('--catalog\x20<catalog>',a0_0x5cb1e9(0x136))['option'](a0_0x5cb1e9(0x1fe),'Read\x20SQL\x20query\x20from\x20file')[a0_0x5cb1e9(0x1cd)]('--limit\x20<rows>',a0_0x5cb1e9(0x173),'40')[a0_0x5cb1e9(0x14e)](async(_0x612b5,_0x5024c3)=>{const _0x464aea=a0_0x5cb1e9,_0x289608=new QueryCommand(),_0x181ed3=program['opts'](),_0x28f169=createTDXInstance(_0x181ed3);_0x5024c3['in']&&(_0x5024c3['database']=_0x5024c3['in']);const _0x1f572f=await _0x289608['run']({'options':{..._0x181ed3,..._0x5024c3},'args':_0x612b5?[_0x612b5]:[],'tdx':_0x28f169});process[_0x464aea(0x162)](_0x1f572f);}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x16d))['description'](a0_0x5cb1e9(0x195))['action'](()=>{const _0x1ac755=a0_0x5cb1e9;console[_0x1ac755(0x1cb)](_0x1ac755(0x152));}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1d9))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x135))[a0_0x5cb1e9(0x14e)](async(_0x256916,_0x309619)=>{const _0x370767=a0_0x5cb1e9,_0x116be7=new SegmentsCommand(),_0x520046=program[_0x370767(0x185)](),_0x51643d=createTDXInstance(_0x520046),_0x146e46=await _0x116be7['run']({'options':{..._0x520046,..._0x309619},'args':_0x256916?[_0x256916]:[],'tdx':_0x51643d});process[_0x370767(0x162)](_0x146e46);});const segmentCmd=program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x145))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1c8));segmentCmd[a0_0x5cb1e9(0x1ba)]('describe\x20<segment_name>')[a0_0x5cb1e9(0x17d)](a0_0x5cb1e9(0x199))['description']('Show\x20segment\x20details\x20(use\x20parent_name\x20or\x20parent_name/child_name)')['action'](async(_0x491567,_0x5a4005)=>{const _0x13c290=a0_0x5cb1e9,_0x53d3f3=new SegmentDescribeCommand(),_0x114956=program[_0x13c290(0x185)](),_0x12febd=createTDXInstance(_0x114956),_0x1a2576=await _0x53d3f3['run']({'options':{..._0x114956,..._0x5a4005},'args':[_0x491567],'tdx':_0x12febd});process[_0x13c290(0x162)](_0x1a2576);}),segmentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x174))[a0_0x5cb1e9(0x1ab)]('Execute\x20segment\x20SQL\x20query\x20and\x20show\x20results\x20(use\x20parent_name\x20or\x20parent_name/child_name)')[a0_0x5cb1e9(0x14e)](async(_0x5cff7d,_0x2a17d6)=>{const _0x37b61a=a0_0x5cb1e9,_0xe36d1e=new SegmentShowCommand(),_0x3c1066=program[_0x37b61a(0x185)](),_0x426c0f=createTDXInstance(_0x3c1066),_0x59ee86=await _0xe36d1e[_0x37b61a(0x163)]({'options':{..._0x3c1066,..._0x2a17d6},'args':[_0x5cff7d],'tdx':_0x426c0f});process[_0x37b61a(0x162)](_0x59ee86);}),segmentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x182))['description']('List\x20segment\x20folders\x20under\x20a\x20parent\x20segment')[a0_0x5cb1e9(0x14e)](async(_0x4b1482,_0x5fe5cc)=>{const _0x377a35=a0_0x5cb1e9,_0x21a9cf=new SegmentFolderListCommand(),_0x1c385b=program['opts'](),_0x264953=createTDXInstance(_0x1c385b),_0x49722e=await _0x21a9cf[_0x377a35(0x163)]({'options':{..._0x1c385b,..._0x5fe5cc},'args':[_0x4b1482],'tdx':_0x264953});process[_0x377a35(0x162)](_0x49722e);});const folderCmd=segmentCmd[a0_0x5cb1e9(0x1ba)]('folder')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1ec));folderCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1a6))['description']('Show\x20folder\x20details\x20(use\x20parent_name/folder_name)')[a0_0x5cb1e9(0x14e)](async(_0x477e0c,_0xa58a0b)=>{const _0x508961=a0_0x5cb1e9,_0x4faf43=new SegmentFolderShowCommand(),_0x940c2c=program[_0x508961(0x185)](),_0x15f8b8=createTDXInstance(_0x940c2c),_0x461169=await _0x4faf43[_0x508961(0x163)]({'options':{..._0x940c2c,..._0xa58a0b},'args':[_0x477e0c],'tdx':_0x15f8b8});process[_0x508961(0x162)](_0x461169);}),segmentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1fa))['description'](a0_0x5cb1e9(0x144))[a0_0x5cb1e9(0x14e)](async(_0x4d43d0,_0x364228)=>{const _0x340b9a=a0_0x5cb1e9,_0x58e842=new SegmentSQLCommand(),_0x46e3e5=program[_0x340b9a(0x185)](),_0x991883=createTDXInstance(_0x46e3e5),_0x26a77d=await _0x58e842[_0x340b9a(0x163)]({'options':{..._0x46e3e5,..._0x364228},'args':[_0x4d43d0],'tdx':_0x991883});process[_0x340b9a(0x162)](_0x26a77d);}),program[a0_0x5cb1e9(0x1ba)]('activations\x20<segment_name>')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1c3))[a0_0x5cb1e9(0x14e)](async(_0x5cafd4,_0x111f04)=>{const _0x635bc5=a0_0x5cb1e9,_0x1758e5=new ActivationsCommand(),_0x1f5e86=program[_0x635bc5(0x185)](),_0x5c13da=createTDXInstance(_0x1f5e86),_0x3778ff=await _0x1758e5[_0x635bc5(0x163)]({'options':{..._0x1f5e86,..._0x111f04},'args':[_0x5cafd4],'tdx':_0x5c13da});process[_0x635bc5(0x162)](_0x3778ff);});const workflowCmd=program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x18d))[a0_0x5cb1e9(0x17d)]('wf')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1d8));workflowCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1a3))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x188))[a0_0x5cb1e9(0x14e)](async(_0x10ca35,_0x1a1b36)=>{const _0x18eac4=a0_0x5cb1e9,_0xdbfb7c=new WorkflowProjectsCommand(),_0x4c935f=program[_0x18eac4(0x185)](),_0x3e1bb9=createTDXInstance(_0x4c935f),_0x3cb596=await _0xdbfb7c[_0x18eac4(0x163)]({'options':{..._0x4c935f,..._0x1a1b36},'args':_0x10ca35?[_0x10ca35]:[],'tdx':_0x3e1bb9});process[_0x18eac4(0x162)](_0x3cb596);}),workflowCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1e1))['alias']('ls')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1de))[a0_0x5cb1e9(0x14e)](async(_0x92b68f,_0x25579e)=>{const _0x18b653=a0_0x5cb1e9,_0x308b3f=new WorkflowWorkflowsCommand(),_0x486bde=program[_0x18b653(0x185)](),_0x3ab5c8=createTDXInstance(_0x486bde),_0x2da9a7=await _0x308b3f[_0x18b653(0x163)]({'options':{..._0x486bde,..._0x25579e},'args':_0x92b68f?[_0x92b68f]:[],'tdx':_0x3ab5c8});process[_0x18b653(0x162)](_0x2da9a7);}),workflowCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x18c))[a0_0x5cb1e9(0x1ab)]('List\x20workflow\x20execution\x20sessions\x20(filter\x20by\x20project\x20or\x20project.workflow)')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1cf),a0_0x5cb1e9(0x170))[a0_0x5cb1e9(0x1cd)]('--from\x20<timestamp>',a0_0x5cb1e9(0x1c9))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x211),a0_0x5cb1e9(0x184))[a0_0x5cb1e9(0x14e)](async(_0x2da9d6,_0x32d77a)=>{const _0x34543f=a0_0x5cb1e9,_0x6e57bd=new WorkflowSessionsCommand(),_0x4e6063=program[_0x34543f(0x185)](),_0x168fa7=createTDXInstance(_0x4e6063),_0x179a08=await _0x6e57bd['run']({'options':{..._0x4e6063,..._0x32d77a},'args':_0x2da9d6?[_0x2da9d6]:[],'tdx':_0x168fa7});process[_0x34543f(0x162)](_0x179a08);}),workflowCmd['command'](a0_0x5cb1e9(0x19c))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x164))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1e6),'Include\x20retried\x20attempts')[a0_0x5cb1e9(0x14e)](async(_0x1329c8,_0x22de0d)=>{const _0x29e49a=a0_0x5cb1e9,_0x31524e=new WorkflowAttemptsCommand(),_0x138183=program['opts'](),_0x2e7d23=createTDXInstance(_0x138183),_0x4983b0=await _0x31524e['run']({'options':{..._0x138183,..._0x22de0d},'args':_0x1329c8?[_0x1329c8]:[],'tdx':_0x2e7d23});process[_0x29e49a(0x162)](_0x4983b0);}),workflowCmd['command'](a0_0x5cb1e9(0x14f))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x20e))['action'](async(_0x595dcc,_0xe0a280)=>{const _0x42504a=a0_0x5cb1e9,_0x4eb5ed=new WorkflowAttemptCommand(),_0x699f8=program[_0x42504a(0x185)](),_0x351461=createTDXInstance(_0x699f8),_0x5aefdd=await _0x4eb5ed[_0x42504a(0x163)]({'options':{..._0x699f8,..._0xe0a280},'args':[_0x595dcc],'tdx':_0x351461});process[_0x42504a(0x162)](_0x5aefdd);}),workflowCmd['command']('tasks\x20<attempt-id>')[a0_0x5cb1e9(0x1ab)]('Show\x20tasks\x20for\x20an\x20attempt')['option'](a0_0x5cb1e9(0x1d6),'Include\x20subtasks\x20in\x20the\x20output')['action'](async(_0x2c6209,_0x555b35)=>{const _0x405592=a0_0x5cb1e9,_0x505e9c=new WorkflowTasksCommand(),_0x44fa5c=program[_0x405592(0x185)](),_0x378ee2=createTDXInstance(_0x44fa5c),_0x2207ff=await _0x505e9c[_0x405592(0x163)]({'options':{..._0x44fa5c,..._0x555b35},'args':[_0x2c6209],'tdx':_0x378ee2});process[_0x405592(0x162)](_0x2207ff);}),workflowCmd[a0_0x5cb1e9(0x1ba)]('logs\x20<attempt-id>\x20<task-name>')['description'](a0_0x5cb1e9(0x14c))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1e0),a0_0x5cb1e9(0x1b8),_0x16f19a=>parseInt(_0x16f19a,0xa),0x0)['action'](async(_0x5146a1,_0x1f0060,_0x37ab0c)=>{const _0x2f72c1=a0_0x5cb1e9,_0x29ce2b=new WorkflowLogsCommand(),_0x573b4f=program[_0x2f72c1(0x185)](),_0xea9c60=createTDXInstance(_0x573b4f),_0x30779c=await _0x29ce2b[_0x2f72c1(0x163)]({'options':{..._0x573b4f,..._0x37ab0c},'args':[_0x5146a1,_0x1f0060],'tdx':_0xea9c60});process['exit'](_0x30779c);}),workflowCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x214))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1f1))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1b5),a0_0x5cb1e9(0x202))[a0_0x5cb1e9(0x14e)](async(_0x57abe4,_0x469446)=>{const _0x544655=a0_0x5cb1e9,_0x2d1d6b=new WorkflowKillCommand(),_0x11fa4b=program['opts'](),_0x1ff036=createTDXInstance(_0x11fa4b),_0x2a770c=await _0x2d1d6b[_0x544655(0x163)]({'options':{..._0x11fa4b,..._0x469446},'args':[_0x57abe4],'tdx':_0x1ff036});process[_0x544655(0x162)](_0x2a770c);}),workflowCmd['command'](a0_0x5cb1e9(0x18a))[a0_0x5cb1e9(0x1ab)]('Retry\x20a\x20session\x20or\x20attempt\x20(prefix\x20with\x20session:\x20or\x20attempt:)')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x159),a0_0x5cb1e9(0x1d4))['option'](a0_0x5cb1e9(0x1f2),a0_0x5cb1e9(0x197))['option']('--params\x20<json>',a0_0x5cb1e9(0x157))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x139),a0_0x5cb1e9(0x169))[a0_0x5cb1e9(0x14e)](async(_0x2e63f0,_0x2dbce3)=>{const _0x150697=a0_0x5cb1e9,_0x121111=new WorkflowRetryCommand(),_0x361337=program['opts'](),_0x2b177c=createTDXInstance(_0x361337),_0x3e3eb4=await _0x121111[_0x150697(0x163)]({'options':{..._0x361337,..._0x2dbce3},'args':[_0x2e63f0],'tdx':_0x2b177c});process[_0x150697(0x162)](_0x3e3eb4);}),workflowCmd['command']('download\x20<project-name>\x20[output-dir]')['description']('Download\x20workflow\x20project\x20from\x20Treasure\x20Data')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1b3),'Specific\x20revision\x20to\x20download\x20(default:\x20latest)')['action'](async(_0x574ce0,_0xf8b537,_0x47473b)=>{const _0x4993fe=a0_0x5cb1e9,_0x279c20=new WorkflowDownloadCommand(),_0x551074=program[_0x4993fe(0x185)](),_0x5a6bc1=createTDXInstance(_0x551074),_0x4f6ea4=await _0x279c20[_0x4993fe(0x163)]({'options':{..._0x551074,..._0x47473b},'args':[_0x574ce0,_0xf8b537||'.'],'tdx':_0x5a6bc1});process['exit'](_0x4f6ea4);}),workflowCmd[a0_0x5cb1e9(0x1ba)]('push\x20[project-name-or-dir]')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x206))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x143),'Override\x20project\x20name')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1b3),a0_0x5cb1e9(0x140))[a0_0x5cb1e9(0x1cd)]('--skip-validation','Skip\x20validation\x20of\x20.dig\x20files')['action'](async(_0x58cac7,_0x15c99a)=>{const _0x405763=a0_0x5cb1e9,_0x2f5331=new WorkflowPushCommand(),_0x4bd225=program[_0x405763(0x185)](),_0x2fea80=createTDXInstance(_0x4bd225),_0x113694=await _0x2f5331[_0x405763(0x163)]({'options':{..._0x4bd225,..._0x15c99a},'args':_0x58cac7?[_0x58cac7]:[],'tdx':_0x2fea80});process[_0x405763(0x162)](_0x113694);}),workflowCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x213))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x148))[a0_0x5cb1e9(0x14e)](async(_0x4c483e,_0x16ac41)=>{const _0x4b3c13=a0_0x5cb1e9,_0x3d4985=new WorkflowDeleteCommand(),_0x418b8f=program['opts'](),_0x2869f4=createTDXInstance(_0x418b8f),_0x202f11=await _0x3d4985['run']({'options':{..._0x418b8f,..._0x16ac41},'args':[_0x4c483e],'tdx':_0x2869f4});process[_0x4b3c13(0x162)](_0x202f11);});function a0_0x3def(){const _0x1759bf=['padEnd','List\x20all\x20workflow\x20projects\x20(optionally\x20filtered\x20by\x20glob\x20pattern)','10515872gtHOWd','retry\x20<session-id|attempt-id>','--system-prompt\x20<text>','sessions\x20[project]','workflow','Session\x20ID\x20to\x20use\x20(defaults\x20to\x20parent\x20PID,\x20allows\x20sharing\x20sessions\x20across\x20processes)','209868qkEWjS','help','Skip\x20confirmation\x20prompts','Starter\x20message','--json','describe\x20[table]','Job\x20management\x20commands','--llm-project\x20<name>','Resume\x20from\x20specific\x20task\x20(attempt\x20retry\x20only)','Parent\x20segment\x20to\x20use\x20(overrides\x20context)','desc','Force\x20ANSI\x20color\x20output\x20(overrides\x20TTY\x20detection)','--in\x20<name>','attempts\x20[project]','tdx','Agent\x20reference\x20(project-name/agent-name)','LLM\x20operations\x20(models,\x20projects,\x20agents,\x20chat)','preAction','Database\x20name\x20(used\x20when\x20not\x20specified\x20in\x20pattern)','Disable\x20ANSI\x20color\x20output\x20(also\x20respects\x20NO_COLOR\x20env\x20var)','projects\x20[pattern]','--data\x20<data>','Show\x20chat\x20history\x20(or\x20list\x20all\x20sessions\x20if\x20no\x20ID\x20provided)','show\x20<folder_ref>','--model\x20<name>','query\x20[sql]','Profile\x20to\x20use\x20(overrides\x20active\x20profile)','Temperature\x20(0.0-2.0,\x20default:\x200.7)','description','Set\x20session-level\x20context\x20(resources:\x20database,\x20parent_segment,\x20llm_project,\x20llm_agent,\x20profile)','parse','use\x20[resource]\x20[value]','Port\x20to\x20run\x20the\x20proxy\x20server\x20on','Set\x20operation\x20timeout\x20in\x20seconds','--no-color','10qLUxdC','--revision\x20<revision>','Custom\x20header\x20(format:\x20\x22Key:\x20Value\x22,\x20repeatable)','--reason\x20<text>','Arguments:','Read\x20request\x20body\x20from\x20file','Starting\x20offset\x20for\x20logs\x20(default:\x200)','repeat','command','jsonl','verbose','Database\x20to\x20use\x20(overrides\x20context)','join','-y,\x20--yes','8568635NvgrlI','api\x20[endpoint]','context','List\x20activations\x20for\x20a\x20segment\x20(use\x20parent_name/child_name)','Output\x20in\x20TSV\x20format\x20(shorthand\x20for\x20--format\x20tsv)','LLM\x20agent\x20management','LLM\x20project\x20name\x20(uses\x20context\x20or\x20default\x20if\x20not\x20specified)','port','CDP\x20segment\x20management\x20commands','Start\x20time\x20filter\x20(ISO\x208601\x20format)','push','log','List\x20tables\x20(e.g.,\x20mydb,\x20mydb.*,\x20*.user*,\x20mydb.user*)','option','aliases','--status\x20<status>','hidden','--verbose','subcommandTerm','options','Resume\x20from\x20specific\x20task\x20(session\x20retry\x20only)','Database\x20name\x20(used\x20when\x20not\x20specified\x20in\x20table\x20pattern)','--include-subtasks','67260663UbsLzZ','Workflow\x20(Digdag)\x20management\x20commands','segments\x20[parent_name]','454CfHjoT','3535RNEYiL','Show\x20table\x20contents\x20(SELECT\x20*\x20with\x20limit)','[EXPERIMENTAL]\x20Start\x20LLM\x20proxy\x20server\x20for\x20Claude\x20Code\x20integration','List\x20workflows\x20(optionally\x20filtered\x20by\x20project)','Agent\x20name','--offset\x20<number>','workflows\x20[project]','Run\x20Trino\x20query\x20with\x20streaming\x20results','-d,\x20--database\x20<name>','Show\x20agent\x20details','Create\x20a\x20new\x20LLM\x20project','--include-retried','API\x20type\x20(td,\x20cdp,\x20workflow,\x20trino,\x20llm)','--format\x20<format>','agent','--debug','us01','Segment\x20folder\x20management','commandUsage','slice','database','Delete\x20an\x20agent','Kill\x20a\x20running\x20attempt','--resume-from\x20<task>','--agent\x20<ref>','output\x20the\x20version\x20number','use\x20<project-name>','--limit\x20<rows>','Database\x20to\x20query\x20(default:\x20information_schema)','Output\x20format\x20(table,\x20json,\x20jsonl,\x20tsv)','--port\x20<number>','sql\x20<segment_name>','optionTerm','Enable\x20verbose\x20logging','Output\x20in\x20JSON\x20format\x20(shorthand\x20for\x20--format\x20json)','-f,\x20--file\x20<path>','Chat\x20with\x20an\x20LLM\x20agent\x20(simplified\x20interface)','Make\x20raw\x20HTTP\x20requests\x20to\x20TD\x20APIs','List\x20all\x20LLM\x20projects\x20(optionally\x20filtered\x20by\x20pattern)','Reason\x20for\x20killing\x20the\x20attempt','Create\x20a\x20new\x20agent\x20in\x20current\x20project','--max-tool-iterations\x20<n>','Maximum\x20tool\x20iterations\x20(default:\x204)','Push\x20workflow\x20project\x20to\x20Treasure\x20Data\x20(digdag-style:\x20cd\x20into\x20project,\x20then\x20push\x20<name>)','Commands:','injectIntoOptions','version','System\x20prompt/instructions\x20(default:\x20empty)','tsv','Request\x20body\x20as\x20JSON\x20string','argv','Show\x20specific\x20attempt\x20details','argumentDescription','List\x20available\x20LLM\x20models','--to\x20<timestamp>','commands','delete\x20<project-name-or-id>','kill\x20<attempt-id>','7663374gGjwBT','8QwsJrw','List\x20parent\x20segments\x20or\x20child\x20segments\x20under\x20a\x20parent','Trino\x20catalog\x20(default:\x20td)','--dry-run','Show\x20context\x20with\x20sources\x20(for\x20debugging)','--force','required','HTTP\x20method\x20(GET,\x20POST,\x20PUT,\x20DELETE,\x20PATCH)','Update\x20an\x20existing\x20agent','GET','Usage:\x20','--output\x20<file>','Revision\x20name\x20(default:\x20timestamp)','--description\x20<text>','--prompt\x20<text>','--name\x20<name>','Get\x20SQL\x20query\x20for\x20segment\x20(use\x20parent_name\x20or\x20parent_name/child_name)','segment','registeredArguments','chat\x20[message...]','Delete\x20workflow\x20project\x20from\x20Treasure\x20Data','Project\x20description','agents\x20[pattern]','11388524BmHZgH','Show\x20logs\x20for\x20a\x20specific\x20task','0.7','action','attempt\x20<attempt-id>','create\x20<name>','-v,\x20--version','Job\x20commands\x20-\x20coming\x20soon','--clear','update\x20<agent-name>','Set\x20current\x20project\x20context\x20for\x20agent\x20operations','--in\x20<database>','Override\x20parameters\x20(JSON\x20string\x20or\x20@file.json)','Describe\x20table\x20schema','--from-task\x20<task>','length','--starter-message\x20<text>','--temperature\x20<n>','json','List\x20all\x20databases\x20(optionally\x20filtered\x20by\x20glob\x20pattern)','Agent\x20prompt/instructions','Clear\x20session\x20context','Output\x20in\x20JSON\x20Lines\x20format\x20(shorthand\x20for\x20--format\x20jsonl)','exit','run','List\x20workflow\x20attempts\x20(filter\x20by\x20project\x20or\x20project.workflow)','../package.json','summary','show\x20<agent-name>','-d,\x20--database\x20<database>','Force\x20retry\x20even\x20if\x20not\x20failed\x20(attempt\x20retry\x20only)','padWidth','Agent\x20description','commandDescription','job','TD\x20site/region\x20(us01,\x20jp01,\x20eu01,\x20ap02,\x20ap03,\x20dev-us01,\x20dev-eu01,\x20stg-us01,\x20stg-jp01,\x20stg-ap03;\x20aliases:\x20us,\x20jp,\x20aws,\x20dev,\x20stg)','delete\x20<name>','Filter\x20by\x20status\x20(running,\x20success,\x20error,\x20blocked,\x20all)','project','Show\x20current\x20resolved\x20context','Maximum\x20rows\x20to\x20display\x20in\x20table\x20format\x20(default:\x2040)','show\x20<segment_name>','filter','-X,\x20--method\x20<method>','llm','format','map','--name\x20<text>','delete\x20<agent-name>','configureHelp','alias','--tsv','\x0aExamples:\x0a\x20\x20$\x20tdx\x20api\x20/v3/database/list\x0a\x20\x20$\x20tdx\x20api\x20/v3/database/show/mydb\x0a\x20\x20$\x20tdx\x20api\x20-X\x20POST\x20--data\x20\x27{\x22query\x22:\x22SELECT\x201\x22}\x27\x20/v3/job/issue/hive/mydb\x0a\x20\x20$\x20tdx\x20api\x20/entities/parent_segments\x20--type\x20cdp\x0a\x20\x20$\x20tdx\x20api\x20/api/workflows\x20--type\x20workflow\x0a','Preview\x20operation\x20without\x20executing','name','folders\x20<parent_name>','Alias\x20for\x20--database\x20(natural\x20language\x20style)','End\x20time\x20filter\x20(ISO\x208601\x20format)','opts','--parent-segment\x20<name>'];a0_0x3def=function(){return _0x1759bf;};return a0_0x3def();}const llmCmd=program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x177))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x19f));llmCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1f5))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x155))[a0_0x5cb1e9(0x14e)](async(_0x25777a,_0x1c6ac2)=>{const _0xa5637f=a0_0x5cb1e9,_0x20cb71=new LLMUseCommand(),_0x4189ba=program['opts'](),_0x225aed=createTDXInstance(_0x4189ba),_0x329792=await _0x20cb71[_0xa5637f(0x163)]({'options':{..._0x4189ba,..._0x1c6ac2},'args':[_0x25777a],'tdx':_0x225aed});process[_0xa5637f(0x162)](_0x329792);}),llmCmd[a0_0x5cb1e9(0x1ba)]('models')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x210))[a0_0x5cb1e9(0x14e)](async _0x48b67a=>{const _0x5ba66b=a0_0x5cb1e9,_0x234e48=new LLMModelsCommand(),_0x4e22d5=program[_0x5ba66b(0x185)](),_0x12410d=createTDXInstance(_0x4e22d5),_0x4f7a6e=await _0x234e48[_0x5ba66b(0x163)]({'options':{..._0x4e22d5,..._0x48b67a},'args':[],'tdx':_0x12410d});process[_0x5ba66b(0x162)](_0x4f7a6e);}),llmCmd[a0_0x5cb1e9(0x1ba)]('projects\x20[pattern]')[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x201))['action'](async(_0x546c9f,_0x4e3d37)=>{const _0x203a9e=a0_0x5cb1e9,_0x55ab35=new LLMProjectsCommand(),_0x422d7e=program[_0x203a9e(0x185)](),_0x3daad7=createTDXInstance(_0x422d7e),_0x10a512=await _0x55ab35['run']({'options':{..._0x422d7e,..._0x4e3d37},'args':_0x546c9f?[_0x546c9f]:[],'tdx':_0x3daad7});process[_0x203a9e(0x162)](_0x10a512);});const projectCmd=llmCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x171))[a0_0x5cb1e9(0x1ab)]('LLM\x20project\x20management');projectCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x150))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1e5))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x141),a0_0x5cb1e9(0x149))[a0_0x5cb1e9(0x14e)](async(_0x28f717,_0x33b512)=>{const _0x35495b=a0_0x5cb1e9,_0x16345a=new LLMProjectCreateCommand(),_0xa10dc0=program['opts'](),_0x2d01cf=createTDXInstance(_0xa10dc0),_0x4a62b0=await _0x16345a[_0x35495b(0x163)]({'options':{..._0xa10dc0,..._0x33b512},'args':[_0x28f717],'tdx':_0x2d01cf});process[_0x35495b(0x162)](_0x4a62b0);}),projectCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x16f))[a0_0x5cb1e9(0x1ab)]('Delete\x20an\x20LLM\x20project')[a0_0x5cb1e9(0x14e)](async(_0x9b796b,_0x345425)=>{const _0x3b9209=a0_0x5cb1e9,_0x36089f=new LLMProjectDeleteCommand(),_0x12c6bb=program[_0x3b9209(0x185)](),_0x26ebd4=createTDXInstance(_0x12c6bb),_0x4a7eb3=await _0x36089f[_0x3b9209(0x163)]({'options':{..._0x12c6bb,..._0x345425},'args':[_0x9b796b],'tdx':_0x26ebd4});process[_0x3b9209(0x162)](_0x4a7eb3);}),llmCmd['command'](a0_0x5cb1e9(0x14a))[a0_0x5cb1e9(0x1ab)]('List\x20agents\x20in\x20current\x20project\x20(optionally\x20filtered\x20by\x20pattern)')['action'](async(_0xa9a72a,_0x4d2a93)=>{const _0x499c33=a0_0x5cb1e9,_0x39e5b1=new LLMAgentsCommand(),_0x3c2da8=program[_0x499c33(0x185)](),_0x578248=createTDXInstance(_0x3c2da8),_0x2de896=await _0x39e5b1[_0x499c33(0x163)]({'options':{..._0x3c2da8,..._0x4d2a93},'args':_0xa9a72a?[_0xa9a72a]:[],'tdx':_0x578248});process[_0x499c33(0x162)](_0x2de896);});const agentCmd=llmCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1e9))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1c5));agentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x167))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1e4))[a0_0x5cb1e9(0x14e)](async(_0x20a49b,_0x30c7bb)=>{const _0x41181a=a0_0x5cb1e9,_0x34ae20=new LLMAgentShowCommand(),_0x16f4dd=program[_0x41181a(0x185)](),_0x50ff07=createTDXInstance(_0x16f4dd),_0x2489d5=await _0x34ae20['run']({'options':{..._0x16f4dd,..._0x30c7bb},'args':[_0x20a49b],'tdx':_0x50ff07});process['exit'](_0x2489d5);}),agentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x150))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x203))['option'](a0_0x5cb1e9(0x18b),a0_0x5cb1e9(0x20a))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1a7),'Model\x20type\x20(default:\x20claude-4.5-sonnet)','claude-4.5-sonnet')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x15b),a0_0x5cb1e9(0x192))['option'](a0_0x5cb1e9(0x204),a0_0x5cb1e9(0x205),'4')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x15c),a0_0x5cb1e9(0x1aa),a0_0x5cb1e9(0x14d))[a0_0x5cb1e9(0x14e)](async(_0x561414,_0x286cd5)=>{const _0x261304=a0_0x5cb1e9,_0x55c0e7=new LLMAgentCreateCommand(),_0x2bff97=program[_0x261304(0x185)](),_0xc44b8a=createTDXInstance(_0x2bff97),_0x33ac63=await _0x55c0e7[_0x261304(0x163)]({'options':{..._0x2bff97,..._0x286cd5},'args':[_0x561414],'tdx':_0xc44b8a});process['exit'](_0x33ac63);}),agentCmd['command'](a0_0x5cb1e9(0x154))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x13c))['option'](a0_0x5cb1e9(0x17a),a0_0x5cb1e9(0x1df))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x142),a0_0x5cb1e9(0x15f))[a0_0x5cb1e9(0x1cd)]('--description\x20<text>',a0_0x5cb1e9(0x16b))['option'](a0_0x5cb1e9(0x15b),'Starter\x20message')[a0_0x5cb1e9(0x14e)](async(_0x582087,_0x5f4b9b)=>{const _0x92043=a0_0x5cb1e9,_0x366469=new LLMAgentUpdateCommand(),_0x437211=program[_0x92043(0x185)](),_0x10aa7c=createTDXInstance(_0x437211),_0x1f318b=await _0x366469[_0x92043(0x163)]({'options':{..._0x437211,..._0x5f4b9b},'args':[_0x582087],'tdx':_0x10aa7c});process[_0x92043(0x162)](_0x1f318b);}),agentCmd[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x17b))['description'](a0_0x5cb1e9(0x1f0))['action'](async(_0x4befa1,_0x4ba679)=>{const _0x4cb6ca=a0_0x5cb1e9,_0x31067d=new LLMAgentDeleteCommand(),_0x15fca6=program['opts'](),_0x1f1ee4=createTDXInstance(_0x15fca6),_0x48c2ef=await _0x31067d[_0x4cb6ca(0x163)]({'options':{..._0x15fca6,..._0x4ba679},'args':[_0x4befa1],'tdx':_0x1f1ee4});process[_0x4cb6ca(0x162)](_0x48c2ef);}),llmCmd[a0_0x5cb1e9(0x1ba)]('history\x20[chat-id]')['description'](a0_0x5cb1e9(0x1a5))[a0_0x5cb1e9(0x14e)](async(_0x3a9e3c,_0xe72a21)=>{const _0x1bde85=a0_0x5cb1e9,_0x3173e2=new LLMHistoryCommand(),_0x30c205=program[_0x1bde85(0x185)](),_0x17eb0c=createTDXInstance(_0x30c205),_0x3eff81=await _0x3173e2[_0x1bde85(0x163)]({'options':{..._0x30c205,..._0xe72a21},'args':_0x3a9e3c?[_0x3a9e3c]:[],'tdx':_0x17eb0c});process[_0x1bde85(0x162)](_0x3eff81);}),llmCmd[a0_0x5cb1e9(0x1ba)]('proxy')['description'](a0_0x5cb1e9(0x1dd))['option'](a0_0x5cb1e9(0x1f9),a0_0x5cb1e9(0x1af),'4000')[a0_0x5cb1e9(0x1cd)]('--project\x20<name>',a0_0x5cb1e9(0x1c6))[a0_0x5cb1e9(0x1cd)]('--agent\x20<name>','Agent\x20name\x20(uses\x20context\x20or\x20default\x20if\x20not\x20specified)')[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1ea),'Enable\x20debug\x20mode\x20(logs\x20request/response\x20to\x20stderr)')[a0_0x5cb1e9(0x14e)](async _0x10c3da=>{const _0x15010a=a0_0x5cb1e9,_0x1154f2=new LLMProxyCommand(),_0x4e47dc=program[_0x15010a(0x185)](),_0x5031b1=createTDXInstance(_0x4e47dc),_0x1cbef1={..._0x10c3da,'port':_0x10c3da[_0x15010a(0x1c7)]?parseInt(_0x10c3da['port'],0xa):undefined},_0x3c2f21=await _0x1154f2['run']({'options':{..._0x4e47dc,..._0x1cbef1},'args':[],'tdx':_0x5031b1});process['exit'](_0x3c2f21);}),program['command'](a0_0x5cb1e9(0x1c2))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x172))[a0_0x5cb1e9(0x1cd)](a0_0x5cb1e9(0x1ea),a0_0x5cb1e9(0x138))['option'](a0_0x5cb1e9(0x153),a0_0x5cb1e9(0x160))[a0_0x5cb1e9(0x14e)](async _0x35a759=>{const _0x1a875c=a0_0x5cb1e9,_0x38ec65=new ContextCommand(),_0x56ae98=program[_0x1a875c(0x185)](),_0x48ff76=await _0x38ec65['run']({'options':{..._0x56ae98,..._0x35a759},'args':[],'tdx':null});process['exit'](_0x48ff76);}),program[a0_0x5cb1e9(0x1ba)](a0_0x5cb1e9(0x1ae))[a0_0x5cb1e9(0x1ab)](a0_0x5cb1e9(0x1ac))['action'](async(_0x153899,_0x126945,_0x521936)=>{const _0xc17132=a0_0x5cb1e9,_0x58fdf1=new UseCommand(),_0x14aa14=program['opts'](),_0x21c957=[];if(_0x153899)_0x21c957['push'](_0x153899);if(_0x126945)_0x21c957[_0xc17132(0x1ca)](_0x126945);const _0x5318d1=await _0x58fdf1['run']({'options':{..._0x14aa14,..._0x521936},'args':_0x21c957,'tdx':null});process[_0xc17132(0x162)](_0x5318d1);}),program[a0_0x5cb1e9(0x1ba)]('profiles')[a0_0x5cb1e9(0x1ab)]('List\x20all\x20available\x20profiles')[a0_0x5cb1e9(0x14e)](async _0x1400c1=>{const _0x4ac1e0=a0_0x5cb1e9,_0x5c2f34=new ProfilesCommand(),_0x5b08f6=program[_0x4ac1e0(0x185)](),_0xcfbf3f=await _0x5c2f34[_0x4ac1e0(0x163)]({'options':{..._0x5b08f6,..._0x1400c1},'args':[],'tdx':null});process[_0x4ac1e0(0x162)](_0xcfbf3f);}),program[a0_0x5cb1e9(0x1ad)](process[a0_0x5cb1e9(0x20d)]);!process[a0_0x5cb1e9(0x20d)][a0_0x5cb1e9(0x1ee)](0x2)[a0_0x5cb1e9(0x15a)]&&program['outputHelp']();
|
package/dist/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
const a1_0x1a487d=a1_0x2968;function a1_0x2a01(){const _0x457dc8=['91QAybBk','httpClient','/segments/','/syndications','/entities/parent_segments','query','getParentSegmentSQL','6QJfQSi','getSegmentFolder','site','/segments/query','data','24FYjOwX','30DtTmYo','rule','logVerbose','8INPers','42636RxkUKZ','listActivations','stringify','696ibFfMf','2027020EaYDdo','/entities/parent_segments/','sql','getParentSegment','cdp','listSegments','58176yrYYOP','/audiences/','listParentSegments','verbose','listSegmentFolders','authHeaders','/entities/folders/','437129tlmFUm','GET','241752IaDwQM','POST','request','/folders','isArray','273086Gauxvy','374700GZrKFe','application/json'];a1_0x2a01=function(){return _0x457dc8;};return a1_0x2a01();}(function(_0xe60dd8,_0x47db26){const _0x203fdf=a1_0x2968,_0x5b923f=_0xe60dd8();while(!![]){try{const _0x32c6fc=-parseInt(_0x203fdf(0x89))/0x1*(parseInt(_0x203fdf(0x8a))/0x2)+parseInt(_0x203fdf(0x80))/0x3*(-parseInt(_0x203fdf(0x71))/0x4)+parseInt(_0x203fdf(0x8e))/0x5+parseInt(_0x203fdf(0x85))/0x6*(-parseInt(_0x203fdf(0x6f))/0x7)+parseInt(_0x203fdf(0x8d))/0x8*(parseInt(_0x203fdf(0x68))/0x9)+-parseInt(_0x203fdf(0x86))/0xa*(-parseInt(_0x203fdf(0x76))/0xb)+-parseInt(_0x203fdf(0x77))/0xc*(parseInt(_0x203fdf(0x79))/0xd);if(_0x32c6fc===_0x47db26)break;else _0x5b923f['push'](_0x5b923f['shift']());}catch(_0x314d0e){_0x5b923f['push'](_0x5b923f['shift']());}}}(a1_0x2a01,0x44f63));function a1_0x2968(_0x348e90,_0x563040){const _0x2a01f8=a1_0x2a01();return a1_0x2968=function(_0x2968f5,_0x734efc){_0x2968f5=_0x2968f5-0x66;let _0x4da8ac=_0x2a01f8[_0x2968f5];return _0x4da8ac;},a1_0x2968(_0x348e90,_0x563040);}import{HTTPClient}from'./http-client.js';import{getEndpoint}from'../types/index.js';import{getAuthHeaders,toHeaderRecord}from'../core/auth.js';export class CDPClient{[a1_0x1a487d(0x7a)];[a1_0x1a487d(0x6d)];[a1_0x1a487d(0x6b)];constructor(_0x341fa1){const _0x7a8e9d=a1_0x1a487d,_0x4a2272=getEndpoint(_0x341fa1[_0x7a8e9d(0x82)],_0x7a8e9d(0x66));this[_0x7a8e9d(0x6d)]=toHeaderRecord(getAuthHeaders(_0x341fa1[_0x7a8e9d(0x82)],_0x341fa1['apiKey'])),this[_0x7a8e9d(0x6b)]=_0x341fa1[_0x7a8e9d(0x6b)],this[_0x7a8e9d(0x7a)]=new HTTPClient(_0x4a2272,{...this[_0x7a8e9d(0x6d)],'Accept':'application/vnd.treasuredata.v1+json','Content-Type':_0x7a8e9d(0x78)});}['logVerbose'](_0xd78883,_0x545a8d){const _0x3ea764=a1_0x1a487d;this[_0x3ea764(0x6b)]&&(console['error']('\x0a[CDP\x20API\x20Response]\x20'+_0xd78883),console['error'](JSON[_0x3ea764(0x8c)](_0x545a8d,null,0x2)));}async[a1_0x1a487d(0x6a)](){const _0x53b54f=a1_0x1a487d,_0x4b156a=_0x53b54f(0x7d),_0x380b0c=await this[_0x53b54f(0x7a)][_0x53b54f(0x73)](_0x53b54f(0x70),_0x4b156a);return this[_0x53b54f(0x88)](_0x4b156a,_0x380b0c),Array[_0x53b54f(0x75)](_0x380b0c)?_0x380b0c:_0x380b0c[_0x53b54f(0x84)];}async[a1_0x1a487d(0x91)](_0x1a5b0c){const _0x34c35a=a1_0x1a487d,_0x2ee568=_0x34c35a(0x8f)+_0x1a5b0c,_0x437f0e=await this['httpClient'][_0x34c35a(0x73)]('GET',_0x2ee568);return this['logVerbose'](_0x2ee568,_0x437f0e),_0x34c35a(0x84)in _0x437f0e?_0x437f0e[_0x34c35a(0x84)]:_0x437f0e;}async[a1_0x1a487d(0x67)](_0x5e80e3){const _0x74c07c=a1_0x1a487d,_0x4583db=_0x74c07c(0x69)+_0x5e80e3+'/segments',_0x18074c=await this[_0x74c07c(0x7a)][_0x74c07c(0x73)]('GET',_0x4583db);return this['logVerbose'](_0x4583db,_0x18074c),Array[_0x74c07c(0x75)](_0x18074c)?_0x18074c:_0x18074c[_0x74c07c(0x84)];}async['getSegment'](_0x529f6d,_0x105a6e){const _0x160966=a1_0x1a487d,_0x239884=_0x160966(0x69)+_0x529f6d+_0x160966(0x7b)+_0x105a6e,_0x2c6317=await this[_0x160966(0x7a)][_0x160966(0x73)]('GET',_0x239884);return this[_0x160966(0x88)](_0x239884,_0x2c6317),_0x160966(0x84)in _0x2c6317?_0x2c6317[_0x160966(0x84)]:_0x2c6317;}async[a1_0x1a487d(0x6c)](_0x5154e0){const _0x40063b=a1_0x1a487d,_0x33b97b=_0x40063b(0x69)+_0x5154e0+_0x40063b(0x74),_0x5f8950=await this[_0x40063b(0x7a)][_0x40063b(0x73)](_0x40063b(0x70),_0x33b97b);return this['logVerbose'](_0x33b97b,_0x5f8950),Array[_0x40063b(0x75)](_0x5f8950)?_0x5f8950:_0x5f8950[_0x40063b(0x84)];}async[a1_0x1a487d(0x81)](_0x366f5e){const _0x1d06f9=a1_0x1a487d,_0x43a86a=_0x1d06f9(0x6e)+_0x366f5e,_0x1e066=await this[_0x1d06f9(0x7a)]['request'](_0x1d06f9(0x70),_0x43a86a);return this[_0x1d06f9(0x88)](_0x43a86a,_0x1e066),_0x1d06f9(0x84)in _0x1e066?_0x1e066['data']:_0x1e066;}async[a1_0x1a487d(0x8b)](_0x178206,_0x3398ac){const _0x2c00cc=a1_0x1a487d,_0x46f35e=_0x2c00cc(0x69)+_0x178206+'/segments/'+_0x3398ac+_0x2c00cc(0x7c),_0x1114fa=await this[_0x2c00cc(0x7a)][_0x2c00cc(0x73)](_0x2c00cc(0x70),_0x46f35e);return this[_0x2c00cc(0x88)](_0x46f35e,_0x1114fa),Array[_0x2c00cc(0x75)](_0x1114fa)?_0x1114fa:_0x1114fa['data'];}async[a1_0x1a487d(0x7f)](_0x564f45){const _0x29032b=a1_0x1a487d,_0x37a3a9=_0x29032b(0x69)+_0x564f45+_0x29032b(0x83),_0x125bd7=await this['httpClient'][_0x29032b(0x73)]('POST',_0x37a3a9,{'body':{'format':_0x29032b(0x90)}});return this['logVerbose'](_0x37a3a9,_0x125bd7),_0x125bd7['sql']||_0x125bd7[_0x29032b(0x7e)]||'';}async['getSegmentSQL'](_0x24d0eb,_0x168803){const _0xbdd2f5=a1_0x1a487d,_0x11919e=await this['getSegment'](_0x24d0eb,_0x168803),_0x3c555e={'format':_0xbdd2f5(0x90)};_0xbdd2f5(0x87)in _0x11919e&&_0x11919e['rule']&&(_0x3c555e[_0xbdd2f5(0x87)]=_0x11919e['rule']);const _0x3206d0=_0xbdd2f5(0x69)+_0x24d0eb+_0xbdd2f5(0x83),_0x3f9cd7=await this['httpClient'][_0xbdd2f5(0x73)](_0xbdd2f5(0x72),_0x3206d0,{'body':_0x3c555e});return this[_0xbdd2f5(0x88)](_0x3206d0,_0x3f9cd7),_0x3f9cd7[_0xbdd2f5(0x90)]||_0x3f9cd7[_0xbdd2f5(0x7e)]||'';}}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const a2_0x5e393b=a2_0x22e1;(function(_0x44f8f8,_0x377f81){const _0x1b2e51=a2_0x22e1,_0x3b271c=_0x44f8f8();while(!![]){try{const _0x2fa7ae=-parseInt(_0x1b2e51(0xc5))/0x1+-parseInt(_0x1b2e51(0xbb))/0x2*(-parseInt(_0x1b2e51(0xdf))/0x3)+parseInt(_0x1b2e51(0xef))/0x4+-parseInt(_0x1b2e51(0xb3))/0x5+-parseInt(_0x1b2e51(0xbd))/0x6+parseInt(_0x1b2e51(0xf0))/0x7+parseInt(_0x1b2e51(0xca))/0x8*(parseInt(_0x1b2e51(0xac))/0x9);if(_0x2fa7ae===_0x377f81)break;else _0x3b271c['push'](_0x3b271c['shift']());}catch(_0x1fcac4){_0x3b271c['push'](_0x3b271c['shift']());}}}(a2_0x55c4,0x53f0e));import{ErrorCode,SDKError}from'../sdk/errors.js';import a2_0xe8faad from'json-bigint';const DEFAULT_RETRY_CONFIG={'maxRetries':0x3,'baseDelay':0x3e8,'maxDelay':0x1f40};function isRetryableError(_0x53bb06){return _0x53bb06>=0x1f4||_0x53bb06===0x1ad;}function a2_0x22e1(_0xa3ab43,_0x1f0cfb){const _0x55c45d=a2_0x55c4();return a2_0x22e1=function(_0x22e1f2,_0x2c0053){_0x22e1f2=_0x22e1f2-0xa9;let _0x20f2ef=_0x55c45d[_0x22e1f2];return _0x20f2ef;},a2_0x22e1(_0xa3ab43,_0x1f0cfb);}function getRetryDelay(_0x57d6ae,_0x25bacf){const _0x5621ca=a2_0x22e1,_0x4ffe9a=Math['min'](_0x25bacf['baseDelay']*Math[_0x5621ca(0xe2)](0x2,_0x57d6ae),_0x25bacf[_0x5621ca(0xa9)]);return Math[_0x5621ca(0xc9)]()*_0x4ffe9a;}function a2_0x55c4(){const _0x598f52=['title','forEach','arrayBuffer','signal','retryConfig','detail','get','\x20failed:\x20','Request\x20cancelled\x20by\x20user','HTTP\x20','UNAUTHENTICATED','combineSignals','\x0a\x20\x20Details:\x20','round','body','message','warn','1053gGuPmK','problemDetails','type','pow','parse','instance','RATE_LIMITED','HTTPClientError','Content-Type','json','AbortError','Error','addEventListener','defaultHeaders','arraybuffer','stringify','392828IAxeQP','3578253seWcaL','maxDelay','name','abort','12429bGyFyJ','application/json','ms...','string','code','status','aborted','2810285dmoEkf','parseProblemDetails','text','UNAVAILABLE',']\x20Request\x20failed\x20with\x20HTTP\x20','from','requestSSE',']\x20Request\x20failed\x20with\x20','3186vqCLUr','request','2903718zNaJpi','retrying\x20in\x20','baseUrl','Request\x20failed\x20after\x20retries','statusText','\x0a\x20\x20URL:\x20','object','safeParseJSON','266190uOwhaL','about:blank','headers','HTTP_REQUEST_FAILURE','random','2824UNWezw','sleep','[Retry\x20','PERMISSION_DENIED'];a2_0x55c4=function(){return _0x598f52;};return a2_0x55c4();}function statusCodeToErrorCode(_0x45fe5e){const _0x208466=a2_0x22e1;if(_0x45fe5e===0x191)return ErrorCode[_0x208466(0xd8)];else{if(_0x45fe5e===0x193)return ErrorCode[_0x208466(0xcd)];else{if(_0x45fe5e===0x194)return ErrorCode['NOT_FOUND'];else{if(_0x45fe5e===0x1ad)return ErrorCode[_0x208466(0xe5)];else return _0x45fe5e>=0x1f4?ErrorCode[_0x208466(0xb6)]:ErrorCode['INVALID_ARGUMENT'];}}}}export class HTTPClientError extends Error{[a2_0x5e393b(0xb1)];[a2_0x5e393b(0xe0)];[a2_0x5e393b(0xb0)];constructor(_0x4fb260,_0xfc75f1,_0x5d4d5a){const _0x5eca4d=a2_0x5e393b,_0x3913dc=statusCodeToErrorCode(_0xfc75f1);super('['+_0x3913dc+']\x20'+_0x4fb260),this[_0x5eca4d(0xb1)]=_0xfc75f1,this['problemDetails']=_0x5d4d5a,this[_0x5eca4d(0xaa)]=_0x5eca4d(0xe6),this[_0x5eca4d(0xb0)]=_0x3913dc;}}export class HTTPClient{[a2_0x5e393b(0xd2)];[a2_0x5e393b(0xbf)];['defaultHeaders'];constructor(_0x6f92ee,_0x54d3e4={},_0x56abd2){const _0x4fea7e=a2_0x5e393b;this[_0x4fea7e(0xbf)]=_0x6f92ee,this['defaultHeaders']=_0x54d3e4,this[_0x4fea7e(0xd2)]={...DEFAULT_RETRY_CONFIG,..._0x56abd2};}async[a2_0x5e393b(0xbc)](_0x5f3f2b,_0x1e4a73,_0x255a2={}){const _0x17b887=a2_0x5e393b,{headers:headers={},body:_0xc082ed,timeout:timeout=0x7530,retries:retries=this[_0x17b887(0xd2)]['maxRetries'],signal:_0x4de688,includeHeaders:includeHeaders=![],responseType:responseType=_0x17b887(0xe8)}=_0x255a2,_0x1902a1=''+this[_0x17b887(0xbf)]+_0x1e4a73,_0x528f77={...this[_0x17b887(0xec)],...headers};if(_0xc082ed&&!_0x528f77[_0x17b887(0xe7)]){if(_0xc082ed instanceof Buffer){}else _0x528f77[_0x17b887(0xe7)]=_0x17b887(0xad);}let _0x552f99;_0xc082ed&&(_0xc082ed instanceof Buffer?_0x552f99=_0xc082ed:_0x552f99=typeof _0xc082ed===_0x17b887(0xaf)?_0xc082ed:JSON[_0x17b887(0xee)](_0xc082ed));let _0x31ac1d=null;for(let _0x58ee37=0x0;_0x58ee37<=retries;_0x58ee37++){try{const _0x1b37aa=new AbortController(),_0x1990f7=setTimeout(()=>_0x1b37aa[_0x17b887(0xab)](),timeout);if(_0x4de688){if(_0x4de688[_0x17b887(0xb2)])throw new Error(_0x17b887(0xd6));_0x4de688[_0x17b887(0xeb)]('abort',()=>_0x1b37aa[_0x17b887(0xab)](),{'once':!![]});}const _0x5a84af=await fetch(_0x1902a1,{'method':_0x5f3f2b,'headers':_0x528f77,'body':_0x552f99,'signal':_0x1b37aa[_0x17b887(0xd1)]});clearTimeout(_0x1990f7);if(_0x58ee37<retries&&isRetryableError(_0x5a84af['status'])){const _0xe96238=_0x5a84af[_0x17b887(0xc7)][_0x17b887(0xd4)]('Retry-After'),_0x294e2d=_0xe96238?parseInt(_0xe96238,0xa)*0x3e8:getRetryDelay(_0x58ee37,this['retryConfig']);console[_0x17b887(0xde)](_0x17b887(0xcc)+(_0x58ee37+0x1)+'/'+retries+_0x17b887(0xba)+_0x5a84af['status']+',\x20'+(_0x17b887(0xbe)+Math['round'](_0x294e2d)+_0x17b887(0xae))),await this[_0x17b887(0xcb)](_0x294e2d);continue;}if(!_0x5a84af['ok']){const _0x3a1abc=await this[_0x17b887(0xc4)](_0x5a84af),_0xf60d9c=this[_0x17b887(0xb4)](_0x3a1abc,_0x5a84af['status']);let _0x1534c7;if(_0x5a84af[_0x17b887(0xb1)]===0x191)_0x1534c7=_0x17b887(0xd7)+_0x5a84af['status']+':\x20'+_0x5a84af[_0x17b887(0xc1)]+'\x0a\x20\x20URL:\x20'+_0x1902a1;else{if(_0xf60d9c?.[_0x17b887(0xd3)])_0x1534c7=_0xf60d9c[_0x17b887(0xd3)];else{if(_0x3a1abc){const _0x901076=JSON[_0x17b887(0xee)](_0x3a1abc);_0x1534c7=_0x17b887(0xd7)+_0x5a84af[_0x17b887(0xb1)]+':\x20'+_0x5a84af['statusText']+'\x0a\x20\x20Details:\x20'+_0x901076;}else _0x1534c7=_0x17b887(0xd7)+_0x5a84af[_0x17b887(0xb1)]+':\x20'+_0x5a84af[_0x17b887(0xc1)];}}throw new HTTPClientError(_0x1534c7,_0x5a84af['status'],_0xf60d9c);}let _0x5a1105;if(responseType===_0x17b887(0xed)){const _0x455e4e=await _0x5a84af[_0x17b887(0xd0)]();_0x5a1105=Buffer[_0x17b887(0xb8)](_0x455e4e);}else responseType===_0x17b887(0xb5)?_0x5a1105=await _0x5a84af[_0x17b887(0xb5)]():_0x5a1105=await this['safeParseJSON'](_0x5a84af);if(includeHeaders){const _0x370b4f={};return _0x5a84af['headers'][_0x17b887(0xcf)]((_0xfbab1c,_0x274507)=>{_0x370b4f[_0x274507]=_0xfbab1c;}),{'data':_0x5a1105,'status':_0x5a84af[_0x17b887(0xb1)],'headers':_0x370b4f};}return _0x5a1105;}catch(_0x466525){_0x31ac1d=_0x466525 instanceof Error?_0x466525:new Error(String(_0x466525));if(_0x466525 instanceof HTTPClientError&&!isRetryableError(_0x466525['status']))throw _0x466525;if(_0x58ee37>=retries)throw _0x31ac1d;const _0x338d3f=getRetryDelay(_0x58ee37,this['retryConfig']);let _0x434d57;_0x31ac1d instanceof HTTPClientError?_0x434d57=_0x17b887(0xcc)+(_0x58ee37+0x1)+'/'+retries+_0x17b887(0xb7)+_0x31ac1d['status']+':\x20'+_0x31ac1d[_0x17b887(0xdd)]+',\x20'+(_0x17b887(0xbe)+Math[_0x17b887(0xdb)](_0x338d3f)+_0x17b887(0xae)):_0x434d57='[Retry\x20'+(_0x58ee37+0x1)+'/'+retries+']\x20Request\x20to\x20'+_0x1902a1+_0x17b887(0xd5)+_0x31ac1d[_0x17b887(0xdd)]+',\x20'+('retrying\x20in\x20'+Math[_0x17b887(0xdb)](_0x338d3f)+'ms...'),console['warn'](_0x434d57),await this['sleep'](_0x338d3f);}}if(_0x31ac1d&&!(_0x31ac1d instanceof HTTPClientError))throw new SDKError(ErrorCode[_0x17b887(0xc8)],'Request\x20to\x20'+_0x1902a1+_0x17b887(0xd5)+_0x31ac1d[_0x17b887(0xdd)],_0x31ac1d);throw _0x31ac1d||new SDKError(ErrorCode['INTERNAL'],_0x17b887(0xc0));}async[a2_0x5e393b(0xc4)](_0x416a64){const _0x57d6ca=a2_0x5e393b,_0xa3a65d=await _0x416a64[_0x57d6ca(0xb5)]();if(!_0xa3a65d)return null;try{const _0x69e2fc=a2_0xe8faad({'storeAsString':!![]});return _0x69e2fc[_0x57d6ca(0xe3)](_0xa3a65d);}catch{return{'body':_0xa3a65d};}}[a2_0x5e393b(0xb4)](_0xcdb920,_0xd8cc39){const _0xd6ed87=a2_0x5e393b;if(!_0xcdb920||typeof _0xcdb920!==_0xd6ed87(0xc3))return undefined;const _0x1a5ddc=_0xcdb920;if(_0x1a5ddc['type']||_0x1a5ddc[_0xd6ed87(0xce)]||_0x1a5ddc[_0xd6ed87(0xd3)])return{'type':_0x1a5ddc[_0xd6ed87(0xe1)]||_0xd6ed87(0xc6),'title':_0x1a5ddc[_0xd6ed87(0xce)]||_0xd6ed87(0xea),'status':_0x1a5ddc[_0xd6ed87(0xb1)]||_0xd8cc39,'detail':_0x1a5ddc[_0xd6ed87(0xd3)]||'An\x20error\x20occurred','instance':_0x1a5ddc[_0xd6ed87(0xe4)]||'',..._0x1a5ddc};return undefined;}[a2_0x5e393b(0xcb)](_0xc8fe07){return new Promise(_0x499088=>setTimeout(_0x499088,_0xc8fe07));}async[a2_0x5e393b(0xb9)](_0x1b0191,_0x227db6,_0x21d397={}){const _0x38d0dc=a2_0x5e393b,{headers:headers={},body:_0x30f334,timeout:timeout=0x7530,signal:_0x3c8be8}=_0x21d397,_0x1dd4bf=''+this[_0x38d0dc(0xbf)]+_0x227db6,_0x3db45b={...this['defaultHeaders'],...headers},_0x33f5b3=new AbortController(),_0x5dc251=setTimeout(()=>_0x33f5b3[_0x38d0dc(0xab)](),timeout),_0x1a8dcf=_0x3c8be8?[_0x33f5b3['signal'],_0x3c8be8]:[_0x33f5b3[_0x38d0dc(0xd1)]],_0x5ebc40=this['combineSignals'](_0x1a8dcf);try{const _0x2d9f87={'method':_0x1b0191,'headers':_0x3db45b,'signal':_0x5ebc40};if(_0x30f334){if(typeof _0x30f334==='string')_0x2d9f87[_0x38d0dc(0xdc)]=_0x30f334;else _0x30f334 instanceof Buffer?_0x2d9f87[_0x38d0dc(0xdc)]=_0x30f334:_0x2d9f87[_0x38d0dc(0xdc)]=JSON[_0x38d0dc(0xee)](_0x30f334);}const _0x40dd4c=await fetch(_0x1dd4bf,_0x2d9f87);clearTimeout(_0x5dc251);if(!_0x40dd4c['ok']){const _0x1a77b8=await this[_0x38d0dc(0xc4)](_0x40dd4c),_0x219e9a=this[_0x38d0dc(0xb4)](_0x1a77b8,_0x40dd4c[_0x38d0dc(0xb1)]);let _0x3f6b7c;if(_0x40dd4c[_0x38d0dc(0xb1)]===0x191)_0x3f6b7c=_0x38d0dc(0xd7)+_0x40dd4c['status']+':\x20'+_0x40dd4c[_0x38d0dc(0xc1)]+_0x38d0dc(0xc2)+_0x1dd4bf;else{if(_0x219e9a?.['detail'])_0x3f6b7c=_0x219e9a[_0x38d0dc(0xd3)];else{if(_0x1a77b8){const _0x4e8c45=JSON['stringify'](_0x1a77b8);_0x3f6b7c=_0x38d0dc(0xd7)+_0x40dd4c[_0x38d0dc(0xb1)]+':\x20'+_0x40dd4c[_0x38d0dc(0xc1)]+_0x38d0dc(0xda)+_0x4e8c45;}else _0x3f6b7c='HTTP\x20'+_0x40dd4c['status']+':\x20'+_0x40dd4c[_0x38d0dc(0xc1)];}}throw new HTTPClientError(_0x3f6b7c,_0x40dd4c['status'],_0x219e9a);}return _0x40dd4c;}catch(_0x5217a7){clearTimeout(_0x5dc251);if(_0x5217a7 instanceof HTTPClientError)throw _0x5217a7;if(_0x5217a7['name']===_0x38d0dc(0xe9))throw new Error(_0x38d0dc(0xd6));throw _0x5217a7;}}[a2_0x5e393b(0xd9)](_0x8f80a8){const _0x3f932d=a2_0x5e393b,_0x485b28=new AbortController();for(const _0x586044 of _0x8f80a8){if(_0x586044[_0x3f932d(0xb2)])return _0x485b28[_0x3f932d(0xab)](),_0x485b28[_0x3f932d(0xd1)];_0x586044[_0x3f932d(0xeb)]('abort',()=>_0x485b28[_0x3f932d(0xab)](),{'once':!![]});}return _0x485b28['signal'];}}
|
|
1
|
+
const a2_0x364182=a2_0x4470;function a2_0x2c5c(){const _0x39f29a=['text','addEventListener','parseProblemDetails','title','parse','retryConfig','\x0a\x20\x20Details:\x20','8237320leezrm','forEach','retrying\x20in\x20','abort','[Retry\x20','name','random','baseUrl','551682RKtLQY','detail','UNAVAILABLE','status','Error','warn','headers','json','HTTP_REQUEST_FAILURE','requestSSE','sleep','ms...','15DnNulG','arrayBuffer','13Vyqiqe','signal','arraybuffer','HTTP\x20','from','maxDelay','4477396VmNwMu','AbortError','body','stringify','Content-Type','string','INTERNAL','\x20failed:\x20','RATE_LIMITED',']\x20Request\x20failed\x20with\x20','aborted','object','code','NOT_FOUND','179378cWUBmI','Request\x20failed\x20after\x20retries','pow','15526800lgoAXr','maxRetries','problemDetails','request',']\x20Request\x20to\x20','Request\x20cancelled\x20by\x20user','round','Request\x20to\x20','type','statusText','3119865Olnjtt','combineSignals','3261102HqUCGc','\x0a\x20\x20URL:\x20','safeParseJSON','message','defaultHeaders'];a2_0x2c5c=function(){return _0x39f29a;};return a2_0x2c5c();}(function(_0x5c3047,_0x9ca30e){const _0x29ff70=a2_0x4470,_0x367737=_0x5c3047();while(!![]){try{const _0x5070b4=-parseInt(_0x29ff70(0xd8))/0x1*(-parseInt(_0x29ff70(0xec))/0x2)+-parseInt(_0x29ff70(0xfb))/0x3+parseInt(_0x29ff70(0xde))/0x4+-parseInt(_0x29ff70(0x11b))/0x5*(parseInt(_0x29ff70(0x10f))/0x6)+parseInt(_0x29ff70(0xf9))/0x7+parseInt(_0x29ff70(0x107))/0x8+-parseInt(_0x29ff70(0xef))/0x9;if(_0x5070b4===_0x9ca30e)break;else _0x367737['push'](_0x367737['shift']());}catch(_0x1609aa){_0x367737['push'](_0x367737['shift']());}}}(a2_0x2c5c,0xa434f));import{ErrorCode,SDKError}from'../sdk/errors.js';function a2_0x4470(_0x1722eb,_0x44a895){const _0x2c5ce5=a2_0x2c5c();return a2_0x4470=function(_0x4470c1,_0x199292){_0x4470c1=_0x4470c1-0xd7;let _0x3d5adc=_0x2c5ce5[_0x4470c1];return _0x3d5adc;},a2_0x4470(_0x1722eb,_0x44a895);}import a2_0x13134c from'json-bigint';const DEFAULT_RETRY_CONFIG={'maxRetries':0x3,'baseDelay':0x3e8,'maxDelay':0x1f40};function isRetryableError(_0x2b12f8){return _0x2b12f8>=0x1f4||_0x2b12f8===0x1ad;}function getRetryDelay(_0x3cd62a,_0x50bbbc){const _0x220339=a2_0x4470,_0x1472a2=Math['min'](_0x50bbbc['baseDelay']*Math[_0x220339(0xee)](0x2,_0x3cd62a),_0x50bbbc[_0x220339(0xdd)]);return Math[_0x220339(0x10d)]()*_0x1472a2;}function statusCodeToErrorCode(_0x2bd896){const _0x312191=a2_0x4470;if(_0x2bd896===0x191)return ErrorCode['UNAUTHENTICATED'];else{if(_0x2bd896===0x193)return ErrorCode['PERMISSION_DENIED'];else{if(_0x2bd896===0x194)return ErrorCode[_0x312191(0xeb)];else{if(_0x2bd896===0x1ad)return ErrorCode[_0x312191(0xe6)];else return _0x2bd896>=0x1f4?ErrorCode[_0x312191(0x111)]:ErrorCode['INVALID_ARGUMENT'];}}}}export class HTTPClientError extends Error{[a2_0x364182(0x112)];[a2_0x364182(0xf1)];['code'];constructor(_0x1062af,_0x984d59,_0x28061c){const _0x4a9d36=a2_0x364182,_0x22edec=statusCodeToErrorCode(_0x984d59);super('['+_0x22edec+']\x20'+_0x1062af),this['status']=_0x984d59,this[_0x4a9d36(0xf1)]=_0x28061c,this[_0x4a9d36(0x10c)]='HTTPClientError',this[_0x4a9d36(0xea)]=_0x22edec;}}export class HTTPClient{['retryConfig'];[a2_0x364182(0x10e)];['defaultHeaders'];constructor(_0x207d76,_0x2c4895={},_0x4bfed6){const _0x1de405=a2_0x364182;this[_0x1de405(0x10e)]=_0x207d76,this['defaultHeaders']=_0x2c4895,this[_0x1de405(0x105)]={...DEFAULT_RETRY_CONFIG,..._0x4bfed6};}async[a2_0x364182(0xf2)](_0x456ae6,_0x5f0eb9,_0x573717={}){const _0x163c10=a2_0x364182,{headers:headers={},body:_0x1d73f0,timeout:timeout=0x7530,retries:retries=this[_0x163c10(0x105)][_0x163c10(0xf0)],signal:_0x204d5a,includeHeaders:includeHeaders=![],responseType:responseType=_0x163c10(0x116)}=_0x573717,_0x2eb034=''+this[_0x163c10(0x10e)]+_0x5f0eb9,_0x821ff9={...this[_0x163c10(0xff)],...headers};if(_0x1d73f0&&!_0x821ff9['Content-Type']){if(_0x1d73f0 instanceof Buffer){}else _0x821ff9[_0x163c10(0xe2)]='application/json';}let _0x3163ac;_0x1d73f0&&(_0x1d73f0 instanceof Buffer?_0x3163ac=_0x1d73f0:_0x3163ac=typeof _0x1d73f0===_0x163c10(0xe3)?_0x1d73f0:JSON['stringify'](_0x1d73f0));let _0x179b9b=null;for(let _0x199ac8=0x0;_0x199ac8<=retries;_0x199ac8++){try{const _0x5bf34a=new AbortController(),_0x338b1f=setTimeout(()=>_0x5bf34a[_0x163c10(0x10a)](),timeout);if(_0x204d5a){if(_0x204d5a[_0x163c10(0xe8)])throw new Error('Request\x20cancelled\x20by\x20user');_0x204d5a[_0x163c10(0x101)](_0x163c10(0x10a),()=>_0x5bf34a[_0x163c10(0x10a)](),{'once':!![]});}const _0x341284=await fetch(_0x2eb034,{'method':_0x456ae6,'headers':_0x821ff9,'body':_0x3163ac,'signal':_0x5bf34a['signal']});clearTimeout(_0x338b1f);if(_0x199ac8<retries&&isRetryableError(_0x341284[_0x163c10(0x112)])){const _0x202736=_0x341284[_0x163c10(0x115)]['get']('Retry-After'),_0x101061=_0x202736?parseInt(_0x202736,0xa)*0x3e8:getRetryDelay(_0x199ac8,this[_0x163c10(0x105)]);console[_0x163c10(0x114)](_0x163c10(0x10b)+(_0x199ac8+0x1)+'/'+retries+_0x163c10(0xe7)+_0x341284[_0x163c10(0x112)]+',\x20'+(_0x163c10(0x109)+Math[_0x163c10(0xf5)](_0x101061)+_0x163c10(0x11a))),await this['sleep'](_0x101061);continue;}if(!_0x341284['ok']){const _0x108c0c=await this[_0x163c10(0xfd)](_0x341284),_0x4a1c42=this[_0x163c10(0x102)](_0x108c0c,_0x341284[_0x163c10(0x112)]);let _0x1abcf5;if(_0x341284[_0x163c10(0x112)]===0x191)_0x1abcf5=_0x163c10(0xdb)+_0x341284[_0x163c10(0x112)]+':\x20'+_0x341284[_0x163c10(0xf8)]+_0x163c10(0xfc)+_0x2eb034;else{if(_0x4a1c42?.[_0x163c10(0x110)])_0x1abcf5=_0x4a1c42['detail'];else{if(_0x108c0c){const _0x5e44c4=JSON['stringify'](_0x108c0c);_0x1abcf5=_0x163c10(0xdb)+_0x341284[_0x163c10(0x112)]+':\x20'+_0x341284[_0x163c10(0xf8)]+_0x163c10(0x106)+_0x5e44c4;}else _0x1abcf5=_0x163c10(0xdb)+_0x341284[_0x163c10(0x112)]+':\x20'+_0x341284[_0x163c10(0xf8)];}}throw new HTTPClientError(_0x1abcf5,_0x341284[_0x163c10(0x112)],_0x4a1c42);}let _0xb17a0a;if(responseType===_0x163c10(0xda)){const _0x1241a3=await _0x341284[_0x163c10(0xd7)]();_0xb17a0a=Buffer[_0x163c10(0xdc)](_0x1241a3);}else responseType===_0x163c10(0x100)?_0xb17a0a=await _0x341284[_0x163c10(0x100)]():_0xb17a0a=await this[_0x163c10(0xfd)](_0x341284);if(includeHeaders){const _0x3406c7={};return _0x341284[_0x163c10(0x115)][_0x163c10(0x108)]((_0xbe8c0a,_0x538425)=>{_0x3406c7[_0x538425]=_0xbe8c0a;}),{'data':_0xb17a0a,'status':_0x341284['status'],'headers':_0x3406c7};}return _0xb17a0a;}catch(_0x1b0f7f){_0x179b9b=_0x1b0f7f instanceof Error?_0x1b0f7f:new Error(String(_0x1b0f7f));if(_0x1b0f7f instanceof HTTPClientError&&!isRetryableError(_0x1b0f7f['status']))throw _0x1b0f7f;if(_0x199ac8>=retries)throw _0x179b9b;const _0x4aa1f5=getRetryDelay(_0x199ac8,this[_0x163c10(0x105)]);let _0x5ad00f;_0x179b9b instanceof HTTPClientError?_0x5ad00f=_0x163c10(0x10b)+(_0x199ac8+0x1)+'/'+retries+']\x20Request\x20failed\x20with\x20HTTP\x20'+_0x179b9b['status']+':\x20'+_0x179b9b['message']+',\x20'+(_0x163c10(0x109)+Math[_0x163c10(0xf5)](_0x4aa1f5)+_0x163c10(0x11a)):_0x5ad00f=_0x163c10(0x10b)+(_0x199ac8+0x1)+'/'+retries+_0x163c10(0xf3)+_0x2eb034+_0x163c10(0xe5)+_0x179b9b['message']+',\x20'+(_0x163c10(0x109)+Math[_0x163c10(0xf5)](_0x4aa1f5)+'ms...'),console[_0x163c10(0x114)](_0x5ad00f),await this[_0x163c10(0x119)](_0x4aa1f5);}}if(_0x179b9b&&!(_0x179b9b instanceof HTTPClientError))throw new SDKError(ErrorCode[_0x163c10(0x117)],_0x163c10(0xf6)+_0x2eb034+_0x163c10(0xe5)+_0x179b9b[_0x163c10(0xfe)],_0x179b9b);throw _0x179b9b||new SDKError(ErrorCode[_0x163c10(0xe4)],_0x163c10(0xed));}async['safeParseJSON'](_0x10b33b){const _0x669a6=a2_0x364182,_0xc5c2c=await _0x10b33b[_0x669a6(0x100)]();if(!_0xc5c2c)return null;try{const _0x4d22ca=a2_0x13134c({'storeAsString':!![]});return _0x4d22ca[_0x669a6(0x104)](_0xc5c2c);}catch{return{'body':_0xc5c2c};}}[a2_0x364182(0x102)](_0x52983a,_0x9fac04){const _0x247e80=a2_0x364182;if(!_0x52983a||typeof _0x52983a!==_0x247e80(0xe9))return undefined;const _0x163c9e=_0x52983a;if(_0x163c9e[_0x247e80(0xf7)]||_0x163c9e[_0x247e80(0x103)]||_0x163c9e[_0x247e80(0x110)])return{'type':_0x163c9e['type']||'about:blank','title':_0x163c9e[_0x247e80(0x103)]||_0x247e80(0x113),'status':_0x163c9e[_0x247e80(0x112)]||_0x9fac04,'detail':_0x163c9e[_0x247e80(0x110)]||'An\x20error\x20occurred','instance':_0x163c9e['instance']||'',..._0x163c9e};return undefined;}[a2_0x364182(0x119)](_0x52b83a){return new Promise(_0x558206=>setTimeout(_0x558206,_0x52b83a));}async[a2_0x364182(0x118)](_0x37d351,_0x26ee3d,_0x373926={}){const _0x47e4cf=a2_0x364182,{headers:headers={},body:_0x38b838,timeout:timeout=0x7530,signal:_0x5b9b78}=_0x373926,_0x5f0b2e=''+this[_0x47e4cf(0x10e)]+_0x26ee3d,_0x32ccbe={...this[_0x47e4cf(0xff)],...headers},_0x1a9dca=new AbortController(),_0x175023=setTimeout(()=>_0x1a9dca[_0x47e4cf(0x10a)](),timeout),_0x216a6f=_0x5b9b78?[_0x1a9dca['signal'],_0x5b9b78]:[_0x1a9dca[_0x47e4cf(0xd9)]],_0x3910a6=this[_0x47e4cf(0xfa)](_0x216a6f);try{const _0x4d3a14={'method':_0x37d351,'headers':_0x32ccbe,'signal':_0x3910a6};if(_0x38b838){if(typeof _0x38b838===_0x47e4cf(0xe3))_0x4d3a14['body']=_0x38b838;else _0x38b838 instanceof Buffer?_0x4d3a14[_0x47e4cf(0xe0)]=_0x38b838:_0x4d3a14['body']=JSON['stringify'](_0x38b838);}const _0x5268fb=await fetch(_0x5f0b2e,_0x4d3a14);clearTimeout(_0x175023);if(!_0x5268fb['ok']){const _0x4ca5ae=await this[_0x47e4cf(0xfd)](_0x5268fb),_0x81f9fc=this[_0x47e4cf(0x102)](_0x4ca5ae,_0x5268fb[_0x47e4cf(0x112)]);let _0x126533;if(_0x5268fb[_0x47e4cf(0x112)]===0x191)_0x126533=_0x47e4cf(0xdb)+_0x5268fb[_0x47e4cf(0x112)]+':\x20'+_0x5268fb[_0x47e4cf(0xf8)]+'\x0a\x20\x20URL:\x20'+_0x5f0b2e;else{if(_0x81f9fc?.['detail'])_0x126533=_0x81f9fc[_0x47e4cf(0x110)];else{if(_0x4ca5ae){const _0x3146ac=JSON[_0x47e4cf(0xe1)](_0x4ca5ae);_0x126533=_0x47e4cf(0xdb)+_0x5268fb[_0x47e4cf(0x112)]+':\x20'+_0x5268fb[_0x47e4cf(0xf8)]+_0x47e4cf(0x106)+_0x3146ac;}else _0x126533=_0x47e4cf(0xdb)+_0x5268fb[_0x47e4cf(0x112)]+':\x20'+_0x5268fb[_0x47e4cf(0xf8)];}}throw new HTTPClientError(_0x126533,_0x5268fb[_0x47e4cf(0x112)],_0x81f9fc);}return _0x5268fb;}catch(_0x5e9a95){clearTimeout(_0x175023);if(_0x5e9a95 instanceof HTTPClientError)throw _0x5e9a95;if(_0x5e9a95[_0x47e4cf(0x10c)]===_0x47e4cf(0xdf))throw new Error(_0x47e4cf(0xf4));throw _0x5e9a95;}}[a2_0x364182(0xfa)](_0x50f1cf){const _0x48a6ac=a2_0x364182,_0x38eb04=new AbortController();for(const _0x5141d8 of _0x50f1cf){if(_0x5141d8['aborted'])return _0x38eb04[_0x48a6ac(0x10a)](),_0x38eb04[_0x48a6ac(0xd9)];_0x5141d8[_0x48a6ac(0x101)]('abort',()=>_0x38eb04[_0x48a6ac(0x10a)](),{'once':!![]});}return _0x38eb04[_0x48a6ac(0xd9)];}}
|