@uipath/integrationservice-tool 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 +10 -10
- package/dist/index.js +6 -30797
- package/dist/tool.js +5677 -27729
- package/package.json +9 -8
package/README.md
CHANGED
|
@@ -24,14 +24,14 @@ uip is connectors list
|
|
|
24
24
|
uip is connectors get <connector-key>
|
|
25
25
|
|
|
26
26
|
# Examples
|
|
27
|
-
uip is connectors list --
|
|
27
|
+
uip is connectors list --output json
|
|
28
28
|
uip is connectors get uipath-zoho-desk
|
|
29
29
|
uip is connectors get uipath-salesforce-sfdc
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
**Available Options:**
|
|
33
33
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
34
|
-
- `--
|
|
34
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: table)
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
@@ -64,7 +64,7 @@ uip is connections edit 73ca047b-24dd-4789-a37e-e7afb67654cd
|
|
|
64
64
|
**Available Options:**
|
|
65
65
|
- `--folder-key <key>` - Filter connections by folder key (optional, for list command only)
|
|
66
66
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
67
|
-
- `--
|
|
67
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: table)
|
|
68
68
|
- `--refresh` - Force re-fetch from API, ignoring cache (for list command only)
|
|
69
69
|
- `--no-browser` - Don't auto-open browser (for create/edit commands only)
|
|
70
70
|
|
|
@@ -127,12 +127,12 @@ uip is activities list <connector-key>
|
|
|
127
127
|
|
|
128
128
|
# Examples
|
|
129
129
|
uip is activities list uipath-zoho-desk
|
|
130
|
-
uip is activities list uipath-salesforce-sfdc --
|
|
130
|
+
uip is activities list uipath-salesforce-sfdc --output json
|
|
131
131
|
```
|
|
132
132
|
|
|
133
133
|
**Available Options:**
|
|
134
134
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
135
|
-
- `--
|
|
135
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: table)
|
|
136
136
|
|
|
137
137
|
**Note:** Only non-trigger activities are returned (filtered by `isTrigger: false`)
|
|
138
138
|
|
|
@@ -168,7 +168,7 @@ uip is resources list uipath-salesforce-sfdc --operation List --connection-id <i
|
|
|
168
168
|
- `--operation <operation>` - Filter by operation: List, Retrieve, Create, Update, Delete, Replace
|
|
169
169
|
- `--connection-id <id>` - Connection/Instance ID (optional)
|
|
170
170
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
171
|
-
- `--
|
|
171
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: table)
|
|
172
172
|
|
|
173
173
|
#### Describe Object Metadata
|
|
174
174
|
|
|
@@ -196,7 +196,7 @@ uip is resources describe uipath-salesforce-sfdc Account --connection-id <id> --
|
|
|
196
196
|
- `--operation <operation>` - Filter fields by operation: List, Retrieve, Create, Update, Delete, Replace
|
|
197
197
|
- `--connection-id <id>` - Connection/Instance ID (optional)
|
|
198
198
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
199
|
-
- `--
|
|
199
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: json)
|
|
200
200
|
|
|
201
201
|
#### Execute Data Operations
|
|
202
202
|
|
|
@@ -270,7 +270,7 @@ uip is resources execute delete uipath-zoho-desk tickets \
|
|
|
270
270
|
- `--body <json>` - Request body as JSON string (required for create, update, replace)
|
|
271
271
|
- `--query <params>` - Query parameters as key=value pairs, separated by `&`
|
|
272
272
|
- `-t, --tenant <name>` - Specify tenant (optional)
|
|
273
|
-
- `--
|
|
273
|
+
- `--output <format>` - Output format: table, json, yaml, plain (default: json)
|
|
274
274
|
|
|
275
275
|
---
|
|
276
276
|
|
|
@@ -281,7 +281,7 @@ All commands support these common options:
|
|
|
281
281
|
| Option | Description | Default |
|
|
282
282
|
|--------|-------------|---------|
|
|
283
283
|
| `-t, --tenant <name>` | Specify tenant name | From login session |
|
|
284
|
-
| `--
|
|
284
|
+
| `--output <format>` | Output format | `table` |
|
|
285
285
|
| `-h, --help` | Show command help | - |
|
|
286
286
|
|
|
287
287
|
**Available Formats:**
|
|
@@ -298,7 +298,7 @@ All commands support these common options:
|
|
|
298
298
|
|
|
299
299
|
```bash
|
|
300
300
|
# 1. Find a connector
|
|
301
|
-
uip is connectors list --
|
|
301
|
+
uip is connectors list --output json | grep salesforce
|
|
302
302
|
|
|
303
303
|
# 2. Get connector details
|
|
304
304
|
uip is connectors get uipath-salesforce-sfdc
|