@kitalive/sfdx-plugin 1.0.0-rc.1 → 1.0.0-rc.3
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 +127 -127
- package/lib/bulk.js +58 -111
- package/lib/bulk.js.map +1 -1
- package/lib/commands/kit/data/bulk/delete.js +21 -14
- package/lib/commands/kit/data/bulk/delete.js.map +1 -1
- package/lib/commands/kit/data/bulk/query.js +7 -4
- package/lib/commands/kit/data/bulk/query.js.map +1 -1
- package/lib/commands/kit/data/bulk/upsert.js +5 -2
- package/lib/commands/kit/data/bulk/upsert.js.map +1 -1
- package/lib/commands/kit/data/csv/convert.js +104 -30
- package/lib/commands/kit/data/csv/convert.js.map +1 -1
- package/lib/commands/kit/graphql/editor.js +1 -1
- package/lib/commands/kit/graphql/editor.js.map +1 -1
- package/lib/commands/kit/layout/assignments/retrieve.js.map +1 -1
- package/lib/commands/kit/metadata/dependencies.js +1 -1
- package/lib/commands/kit/metadata/dependencies.js.map +1 -1
- package/lib/commands/kit/object/fields/setup.js +4 -4
- package/lib/commands/kit/object/fields/setup.js.map +1 -1
- package/lib/commands/kit/script/execute.js +11 -1
- package/lib/commands/kit/script/execute.js.map +1 -1
- package/lib/server.js +11 -5
- package/lib/server.js.map +1 -1
- package/lib/utils.js.map +1 -1
- package/messages/data.bulk.md +7 -7
- package/messages/data.bulk.query.md +1 -1
- package/messages/data.bulk.upsert.md +1 -1
- package/messages/data.csv.convert.md +2 -2
- package/messages/server.md +4 -0
- package/oclif.lock +3326 -1981
- package/oclif.manifest.json +239 -116
- package/package.json +16 -16
- package/public/graphql/index.html +67 -53
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ $ npm install -g @kitalive/sfdx-plugin
|
|
|
17
17
|
$ sf COMMAND
|
|
18
18
|
running command...
|
|
19
19
|
$ sf (--version)
|
|
20
|
-
@kitalive/sfdx-plugin/1.0.0-rc.
|
|
20
|
+
@kitalive/sfdx-plugin/1.0.0-rc.3 darwin-arm64 node-v22.17.1
|
|
21
21
|
$ sf --help [COMMAND]
|
|
22
22
|
USAGE
|
|
23
23
|
$ sf COMMAND
|
|
@@ -49,18 +49,20 @@ Bulk delete records by SOQL select query.
|
|
|
49
49
|
|
|
50
50
|
```
|
|
51
51
|
USAGE
|
|
52
|
-
$ sf kit data bulk delete -q <value> -o <value> [--json] [--flags-dir <value>] [--hard] [--
|
|
53
|
-
<value>] [-w <value>] [--api-version <value>]
|
|
52
|
+
$ sf kit data bulk delete -q <value> -o <value> [--json] [--flags-dir <value>] [--hard] [--concurrency-mode
|
|
53
|
+
Serial|Parallel] [-s <value>] [-w <value>] [--api-version <value>]
|
|
54
54
|
|
|
55
55
|
FLAGS
|
|
56
|
-
-o, --target-org=<value>
|
|
57
|
-
|
|
58
|
-
-q, --query=<value>
|
|
59
|
-
-s, --
|
|
60
|
-
-w, --wait=<value>
|
|
61
|
-
|
|
62
|
-
--
|
|
63
|
-
--
|
|
56
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
57
|
+
configuration variable is already set.
|
|
58
|
+
-q, --query=<value> (required) SOQL query to delete
|
|
59
|
+
-s, --batch-size=<value> [default: 10000] The batch size of the job
|
|
60
|
+
-w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
|
|
61
|
+
results
|
|
62
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
63
|
+
--concurrency-mode=<option> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
|
|
64
|
+
<options: Serial|Parallel>
|
|
65
|
+
--hard Perform a hard delete
|
|
64
66
|
|
|
65
67
|
GLOBAL FLAGS
|
|
66
68
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -72,7 +74,7 @@ EXAMPLES
|
|
|
72
74
|
$ sf kit data bulk delete -q "SELECT Id FROM Opportunity WHERE CloseDate < LAST_N_YEARS:2"
|
|
73
75
|
```
|
|
74
76
|
|
|
75
|
-
_See code: [src/commands/kit/data/bulk/delete.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
77
|
+
_See code: [src/commands/kit/data/bulk/delete.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/bulk/delete.ts)_
|
|
76
78
|
|
|
77
79
|
## `sf kit data bulk insert`
|
|
78
80
|
|
|
@@ -80,36 +82,33 @@ For information about CSV file formats, see [Prepare CSV Files](https://develope
|
|
|
80
82
|
|
|
81
83
|
```
|
|
82
84
|
USAGE
|
|
83
|
-
$ sf kit data bulk insert -s <value> -f <value> -o <value> [
|
|
84
|
-
|
|
85
|
-
|
|
85
|
+
$ sf kit data bulk insert -s <value> -f <value> -o <value> [-r <value>] [-e <value>] [-d <value>] [-q <value>]
|
|
86
|
+
[--skip-lines <value>] [--trim] [-m <value>] [-c <value>] [--set-null] [--convert-only] [--concurrency-mode
|
|
87
|
+
Serial|Parallel] [--assignment-rule-id <value>] [--batch-size <value>] [-w <value>] [--api-version <value>]
|
|
86
88
|
|
|
87
89
|
FLAGS
|
|
88
|
-
-c, --converter=<value>
|
|
89
|
-
-d, --delimiter=<value>
|
|
90
|
-
-e, --encoding=<value>
|
|
91
|
-
-f, --
|
|
92
|
-
-m, --mapping=<value>
|
|
93
|
-
-o, --target-org=<value>
|
|
94
|
-
|
|
95
|
-
-q, --quote=<value>
|
|
96
|
-
-r, --
|
|
97
|
-
-s, --sobject=<value>
|
|
98
|
-
-w, --wait=<value>
|
|
99
|
-
|
|
100
|
-
--api-version=<value>
|
|
101
|
-
--
|
|
102
|
-
--
|
|
103
|
-
--
|
|
104
|
-
|
|
105
|
-
--
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
--
|
|
109
|
-
|
|
110
|
-
GLOBAL FLAGS
|
|
111
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
112
|
-
--json Format output as json.
|
|
90
|
+
-c, --converter=<value> The path of the script to convert CSV rows
|
|
91
|
+
-d, --delimiter=<value> [default: ,] The input CSV file delimiter
|
|
92
|
+
-e, --encoding=<value> [default: utf8] The input CSV file encoding
|
|
93
|
+
-f, --csv-file=<value> (required) The CSV file path that defines the records to insert
|
|
94
|
+
-m, --mapping=<value> The path of the JSON file that defines CSV column mappings
|
|
95
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
96
|
+
configuration variable is already set.
|
|
97
|
+
-q, --quote=<value> [default: "] The input CSV file quote character
|
|
98
|
+
-r, --result-file=<value> The CSV file path for writing the insert results
|
|
99
|
+
-s, --sobject=<value> (required) The SObject name to insert
|
|
100
|
+
-w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
|
|
101
|
+
results
|
|
102
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
103
|
+
--assignment-rule-id=<value> The ID of a specific assignment rule to run for a case or a lead
|
|
104
|
+
--batch-size=<value> [default: 10000] The batch size of the job
|
|
105
|
+
--concurrency-mode=<option> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
|
|
106
|
+
<options: Serial|Parallel>
|
|
107
|
+
--convert-only Output converted.csv file and skip insert for debugging
|
|
108
|
+
--set-null Set blank values as null values during insert operations (default: empty field
|
|
109
|
+
values are ignored)
|
|
110
|
+
--skip-lines=<value> The number of lines to skip
|
|
111
|
+
--trim Trim all white space from columns
|
|
113
112
|
|
|
114
113
|
DESCRIPTION
|
|
115
114
|
For information about CSV file formats, see [Prepare CSV
|
|
@@ -121,12 +120,12 @@ EXAMPLES
|
|
|
121
120
|
|
|
122
121
|
$ sf kit data bulk insert -o Account -f ./path/to/Account.csv -m ./path/to/mapping.json
|
|
123
122
|
|
|
124
|
-
|
|
123
|
+
%s MyObject__c records with convert.js:
|
|
125
124
|
|
|
126
125
|
$ sf kit data bulk insert -o MyObject__c -f ./path/to/MyObject__c.csv -c ./path/to/convert.js -w 10
|
|
127
126
|
```
|
|
128
127
|
|
|
129
|
-
_See code: [src/commands/kit/data/bulk/insert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
128
|
+
_See code: [src/commands/kit/data/bulk/insert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/bulk/insert.ts)_
|
|
130
129
|
|
|
131
130
|
## `sf kit data bulk query`
|
|
132
131
|
|
|
@@ -138,7 +137,7 @@ USAGE
|
|
|
138
137
|
[--api-version <value>]
|
|
139
138
|
|
|
140
139
|
FLAGS
|
|
141
|
-
-f, --
|
|
140
|
+
-f, --csv-file=<value> [default: standard output] Output csv file
|
|
142
141
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
143
142
|
configuration variable is already set.
|
|
144
143
|
-q, --query=<value> (required) SOQL query to export
|
|
@@ -157,7 +156,7 @@ EXAMPLES
|
|
|
157
156
|
$ sf kit data bulk query -q "SELECT Id, Name FROM Account" -f ./path/to/Account.csv
|
|
158
157
|
```
|
|
159
158
|
|
|
160
|
-
_See code: [src/commands/kit/data/bulk/query.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
159
|
+
_See code: [src/commands/kit/data/bulk/query.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/bulk/query.ts)_
|
|
161
160
|
|
|
162
161
|
## `sf kit data bulk update`
|
|
163
162
|
|
|
@@ -165,36 +164,33 @@ For information about CSV file formats, see [Prepare CSV Files](https://develope
|
|
|
165
164
|
|
|
166
165
|
```
|
|
167
166
|
USAGE
|
|
168
|
-
$ sf kit data bulk update -s <value> -f <value> -o <value> [
|
|
169
|
-
|
|
170
|
-
|
|
167
|
+
$ sf kit data bulk update -s <value> -f <value> -o <value> [-r <value>] [-e <value>] [-d <value>] [-q <value>]
|
|
168
|
+
[--skip-lines <value>] [--trim] [-m <value>] [-c <value>] [--set-null] [--convert-only] [--concurrency-mode
|
|
169
|
+
Serial|Parallel] [--assignment-rule-id <value>] [--batch-size <value>] [-w <value>] [--api-version <value>]
|
|
171
170
|
|
|
172
171
|
FLAGS
|
|
173
|
-
-c, --converter=<value>
|
|
174
|
-
-d, --delimiter=<value>
|
|
175
|
-
-e, --encoding=<value>
|
|
176
|
-
-f, --
|
|
177
|
-
-m, --mapping=<value>
|
|
178
|
-
-o, --target-org=<value>
|
|
179
|
-
|
|
180
|
-
-q, --quote=<value>
|
|
181
|
-
-r, --
|
|
182
|
-
-s, --sobject=<value>
|
|
183
|
-
-w, --wait=<value>
|
|
184
|
-
|
|
185
|
-
--api-version=<value>
|
|
186
|
-
--
|
|
187
|
-
--
|
|
188
|
-
--
|
|
189
|
-
|
|
190
|
-
--
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
--
|
|
194
|
-
|
|
195
|
-
GLOBAL FLAGS
|
|
196
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
197
|
-
--json Format output as json.
|
|
172
|
+
-c, --converter=<value> The path of the script to convert CSV rows
|
|
173
|
+
-d, --delimiter=<value> [default: ,] The input CSV file delimiter
|
|
174
|
+
-e, --encoding=<value> [default: utf8] The input CSV file encoding
|
|
175
|
+
-f, --csv-file=<value> (required) The CSV file path that defines the records to update
|
|
176
|
+
-m, --mapping=<value> The path of the JSON file that defines CSV column mappings
|
|
177
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
178
|
+
configuration variable is already set.
|
|
179
|
+
-q, --quote=<value> [default: "] The input CSV file quote character
|
|
180
|
+
-r, --result-file=<value> The CSV file path for writing the update results
|
|
181
|
+
-s, --sobject=<value> (required) The SObject name to update
|
|
182
|
+
-w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
|
|
183
|
+
results
|
|
184
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
185
|
+
--assignment-rule-id=<value> The ID of a specific assignment rule to run for a case or a lead
|
|
186
|
+
--batch-size=<value> [default: 10000] The batch size of the job
|
|
187
|
+
--concurrency-mode=<option> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
|
|
188
|
+
<options: Serial|Parallel>
|
|
189
|
+
--convert-only Output converted.csv file and skip update for debugging
|
|
190
|
+
--set-null Set blank values as null values during update operations (default: empty field
|
|
191
|
+
values are ignored)
|
|
192
|
+
--skip-lines=<value> The number of lines to skip
|
|
193
|
+
--trim Trim all white space from columns
|
|
198
194
|
|
|
199
195
|
DESCRIPTION
|
|
200
196
|
For information about CSV file formats, see [Prepare CSV
|
|
@@ -206,12 +202,12 @@ EXAMPLES
|
|
|
206
202
|
|
|
207
203
|
$ sf kit data bulk update -o Account -f ./path/to/Account.csv -m ./path/to/mapping.json
|
|
208
204
|
|
|
209
|
-
|
|
205
|
+
%s MyObject__c records with convert.js:
|
|
210
206
|
|
|
211
207
|
$ sf kit data bulk update -o MyObject__c -f ./path/to/MyObject__c.csv -c ./path/to/convert.js -w 10
|
|
212
208
|
```
|
|
213
209
|
|
|
214
|
-
_See code: [src/commands/kit/data/bulk/update.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
210
|
+
_See code: [src/commands/kit/data/bulk/update.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/bulk/update.ts)_
|
|
215
211
|
|
|
216
212
|
## `sf kit data bulk upsert`
|
|
217
213
|
|
|
@@ -219,38 +215,34 @@ For information about CSV file formats, see [Prepare CSV Files](https://develope
|
|
|
219
215
|
|
|
220
216
|
```
|
|
221
217
|
USAGE
|
|
222
|
-
$ sf kit data bulk upsert -s <value> -f <value> -o <value> -i <value> [
|
|
223
|
-
<value>] [-
|
|
224
|
-
|
|
225
|
-
[--api-version <value>]
|
|
218
|
+
$ sf kit data bulk upsert -s <value> -f <value> -o <value> -i <value> [-r <value>] [-e <value>] [-d <value>] [-q
|
|
219
|
+
<value>] [--skip-lines <value>] [--trim] [-m <value>] [-c <value>] [--set-null] [--convert-only] [--concurrency-mode
|
|
220
|
+
Serial|Parallel] [--assignment-rule-id <value>] [--batch-size <value>] [-w <value>] [--api-version <value>]
|
|
226
221
|
|
|
227
222
|
FLAGS
|
|
228
|
-
-c, --converter=<value>
|
|
229
|
-
-d, --delimiter=<value>
|
|
230
|
-
-e, --encoding=<value>
|
|
231
|
-
-f, --
|
|
232
|
-
-i, --
|
|
233
|
-
-m, --mapping=<value>
|
|
234
|
-
-o, --target-org=<value>
|
|
235
|
-
|
|
236
|
-
-q, --quote=<value>
|
|
237
|
-
-r, --
|
|
238
|
-
-s, --sobject=<value>
|
|
239
|
-
-w, --wait=<value>
|
|
240
|
-
|
|
241
|
-
--api-version=<value>
|
|
242
|
-
--
|
|
243
|
-
--
|
|
244
|
-
--
|
|
245
|
-
|
|
246
|
-
--
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
--
|
|
250
|
-
|
|
251
|
-
GLOBAL FLAGS
|
|
252
|
-
--flags-dir=<value> Import flag values from a directory.
|
|
253
|
-
--json Format output as json.
|
|
223
|
+
-c, --converter=<value> The path of the script to convert CSV rows
|
|
224
|
+
-d, --delimiter=<value> [default: ,] The input CSV file delimiter
|
|
225
|
+
-e, --encoding=<value> [default: utf8] The input CSV file encoding
|
|
226
|
+
-f, --csv-file=<value> (required) The CSV file path that defines the records to upsert
|
|
227
|
+
-i, --external-id=<value> (required) [default: Id] The column name of the external ID
|
|
228
|
+
-m, --mapping=<value> The path of the JSON file that defines CSV column mappings
|
|
229
|
+
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
230
|
+
configuration variable is already set.
|
|
231
|
+
-q, --quote=<value> [default: "] The input CSV file quote character
|
|
232
|
+
-r, --result-file=<value> The CSV file path for writing the upsert results
|
|
233
|
+
-s, --sobject=<value> (required) The SObject name to upsert
|
|
234
|
+
-w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
|
|
235
|
+
results
|
|
236
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
237
|
+
--assignment-rule-id=<value> The ID of a specific assignment rule to run for a case or a lead
|
|
238
|
+
--batch-size=<value> [default: 10000] The batch size of the job
|
|
239
|
+
--concurrency-mode=<option> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
|
|
240
|
+
<options: Serial|Parallel>
|
|
241
|
+
--convert-only Output converted.csv file and skip upsert for debugging
|
|
242
|
+
--set-null Set blank values as null values during upsert operations (default: empty field
|
|
243
|
+
values are ignored)
|
|
244
|
+
--skip-lines=<value> The number of lines to skip
|
|
245
|
+
--trim Trim all white space from columns
|
|
254
246
|
|
|
255
247
|
DESCRIPTION
|
|
256
248
|
For information about CSV file formats, see [Prepare CSV
|
|
@@ -268,7 +260,7 @@ EXAMPLES
|
|
|
268
260
|
-w 10
|
|
269
261
|
```
|
|
270
262
|
|
|
271
|
-
_See code: [src/commands/kit/data/bulk/upsert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
263
|
+
_See code: [src/commands/kit/data/bulk/upsert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/bulk/upsert.ts)_
|
|
272
264
|
|
|
273
265
|
## `sf kit data csv convert`
|
|
274
266
|
|
|
@@ -276,19 +268,21 @@ Convert CSV data using column mapping file or Node.js script.
|
|
|
276
268
|
|
|
277
269
|
```
|
|
278
270
|
USAGE
|
|
279
|
-
$ sf kit data csv convert [--json] [--flags-dir <value>] [-i <value>] [-
|
|
280
|
-
<value>] [--
|
|
271
|
+
$ sf kit data csv convert [--json] [--flags-dir <value>] [-i <value>] [-f <value>] [-e <value>] [-d <value>] [-q
|
|
272
|
+
<value>] [--skip-lines <value>] [--trim] [-m <value>] [-c <value>] [-o <value>] [--api-version <value>]
|
|
281
273
|
|
|
282
274
|
FLAGS
|
|
283
|
-
-c, --converter=<value>
|
|
284
|
-
-d, --delimiter=<value>
|
|
285
|
-
-e, --encoding=<value>
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
|
|
291
|
-
--
|
|
275
|
+
-c, --converter=<value> The path of the script to convert CSV rows
|
|
276
|
+
-d, --delimiter=<value> [default: ,] The input CSV file delimiter
|
|
277
|
+
-e, --encoding=<value> [default: utf8] The input CSV file encoding
|
|
278
|
+
-f, --output=<value> [default: standard output] The path of the output CSV file
|
|
279
|
+
-i, --input=<value> [default: standard input] The path of the input CSV file
|
|
280
|
+
-m, --mapping=<value> The path of the JSON file that defines CSV column mappings
|
|
281
|
+
-o, --target-org=<value> Username or alias of the target org.
|
|
282
|
+
-q, --quote=<value> [default: "] The input CSV file quote character
|
|
283
|
+
--api-version=<value> Override the api version used for api requests made by this command
|
|
284
|
+
--skip-lines=<value> The number of lines to skip
|
|
285
|
+
--trim Trim all white space from columns
|
|
292
286
|
|
|
293
287
|
GLOBAL FLAGS
|
|
294
288
|
--flags-dir=<value> Import flag values from a directory.
|
|
@@ -301,10 +295,10 @@ EXAMPLES
|
|
|
301
295
|
|
|
302
296
|
Convert csv file using script and output to specified path:
|
|
303
297
|
|
|
304
|
-
$ sf kit data csv convert -i ./path/to/input.csv -
|
|
298
|
+
$ sf kit data csv convert -i ./path/to/input.csv -f ./path/to/output.csv -c ./path/to/convert.js
|
|
305
299
|
```
|
|
306
300
|
|
|
307
|
-
_See code: [src/commands/kit/data/csv/convert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
301
|
+
_See code: [src/commands/kit/data/csv/convert.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/data/csv/convert.ts)_
|
|
308
302
|
|
|
309
303
|
## `sf kit graphql editor`
|
|
310
304
|
|
|
@@ -312,9 +306,12 @@ Open the GraphQL Editor in a browser
|
|
|
312
306
|
|
|
313
307
|
```
|
|
314
308
|
USAGE
|
|
315
|
-
$ sf kit graphql editor -o <value> [--json] [--flags-dir <value>] [-p <value>] [--api-version
|
|
309
|
+
$ sf kit graphql editor -o <value> [--json] [--flags-dir <value>] [-b chrome|firefox|edge] [-p <value>] [--api-version
|
|
310
|
+
<value>]
|
|
316
311
|
|
|
317
312
|
FLAGS
|
|
313
|
+
-b, --browser=<option> browser to use
|
|
314
|
+
<options: chrome|firefox|edge>
|
|
318
315
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
319
316
|
configuration variable is already set.
|
|
320
317
|
-p, --port=<value> [default: 3000] local server port number
|
|
@@ -335,7 +332,7 @@ EXAMPLES
|
|
|
335
332
|
$ sf kit graphql editor --port 8080
|
|
336
333
|
```
|
|
337
334
|
|
|
338
|
-
_See code: [src/commands/kit/graphql/editor.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
335
|
+
_See code: [src/commands/kit/graphql/editor.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/graphql/editor.ts)_
|
|
339
336
|
|
|
340
337
|
## `sf kit layout assignments deploy`
|
|
341
338
|
|
|
@@ -370,7 +367,7 @@ EXAMPLES
|
|
|
370
367
|
$ sf kit layout assignments deploy -o me@my.org -f config/layout-assignments.sandbox.json
|
|
371
368
|
```
|
|
372
369
|
|
|
373
|
-
_See code: [src/commands/kit/layout/assignments/deploy.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
370
|
+
_See code: [src/commands/kit/layout/assignments/deploy.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/layout/assignments/deploy.ts)_
|
|
374
371
|
|
|
375
372
|
## `sf kit layout assignments retrieve`
|
|
376
373
|
|
|
@@ -409,7 +406,7 @@ EXAMPLES
|
|
|
409
406
|
$ sf kit layout assignments retrieve -o me@my.org -f config/layout-assignments.sandbox.json
|
|
410
407
|
```
|
|
411
408
|
|
|
412
|
-
_See code: [src/commands/kit/layout/assignments/retrieve.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
409
|
+
_See code: [src/commands/kit/layout/assignments/retrieve.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/layout/assignments/retrieve.ts)_
|
|
413
410
|
|
|
414
411
|
## `sf kit metadata dependencies`
|
|
415
412
|
|
|
@@ -417,9 +414,12 @@ Analyze metadata dependencies
|
|
|
417
414
|
|
|
418
415
|
```
|
|
419
416
|
USAGE
|
|
420
|
-
$ sf kit metadata dependencies -o <value> [--json] [--flags-dir <value>] [-p <value>] [--api-version
|
|
417
|
+
$ sf kit metadata dependencies -o <value> [--json] [--flags-dir <value>] [-b chrome|firefox|edge] [-p <value>] [--api-version
|
|
418
|
+
<value>]
|
|
421
419
|
|
|
422
420
|
FLAGS
|
|
421
|
+
-b, --browser=<option> browser to use
|
|
422
|
+
<options: chrome|firefox|edge>
|
|
423
423
|
-o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
|
|
424
424
|
configuration variable is already set.
|
|
425
425
|
-p, --port=<value> [default: 3000] local server port number
|
|
@@ -433,7 +433,7 @@ EXAMPLES
|
|
|
433
433
|
$ sf kit metadata dependencies
|
|
434
434
|
```
|
|
435
435
|
|
|
436
|
-
_See code: [src/commands/kit/metadata/dependencies.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
436
|
+
_See code: [src/commands/kit/metadata/dependencies.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/metadata/dependencies.ts)_
|
|
437
437
|
|
|
438
438
|
## `sf kit object fields describe`
|
|
439
439
|
|
|
@@ -465,7 +465,7 @@ EXAMPLES
|
|
|
465
465
|
$ sf kit object fields describe -o me@my.org -s CustomObject__c --json
|
|
466
466
|
```
|
|
467
467
|
|
|
468
|
-
_See code: [src/commands/kit/object/fields/describe.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
468
|
+
_See code: [src/commands/kit/object/fields/describe.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/object/fields/describe.ts)_
|
|
469
469
|
|
|
470
470
|
## `sf kit object fields setup`
|
|
471
471
|
|
|
@@ -499,7 +499,7 @@ EXAMPLES
|
|
|
499
499
|
$ sf kit object fields setup -o me@my.org -s CustomObject__c -f path/to/custom_object_fields.csv --delete
|
|
500
500
|
```
|
|
501
501
|
|
|
502
|
-
_See code: [src/commands/kit/object/fields/setup.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
502
|
+
_See code: [src/commands/kit/object/fields/setup.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/object/fields/setup.ts)_
|
|
503
503
|
|
|
504
504
|
## `sf kit script`
|
|
505
505
|
|
|
@@ -593,5 +593,5 @@ EXAMPLES
|
|
|
593
593
|
> await conn.query('SELECT Id, Name FROM Account LIMIT 1')
|
|
594
594
|
```
|
|
595
595
|
|
|
596
|
-
_See code: [src/commands/kit/script/execute.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.
|
|
596
|
+
_See code: [src/commands/kit/script/execute.ts](https://github.com/Kitalive-Inc/sfdx-plugin/blob/v1.0.0-rc.3/src/commands/kit/script/execute.ts)_
|
|
597
597
|
<!-- commandsstop -->
|