@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 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.1 darwin-arm64 node-v20.14.0
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] [--concurrencymode <value>] [-s
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> (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, --batchsize=<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 results
61
- --api-version=<value> Override the api version used for api requests made by this command
62
- --concurrencymode=<value> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
63
- --hard Perform a hard delete
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.1/src/commands/kit/data/bulk/delete.ts)_
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> [--json] [--flags-dir <value>] [-r <value>] [-e <value>] [-d
84
- <value>] [-q <value>] [--skiplines <value>] [--trim] [-m <value>] [-c <value>] [--setnull] [--convertonly]
85
- [--concurrencymode <value>] [--assignmentruleid <value>] [--batchsize <value>] [-w <value>] [--api-version <value>]
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> The path of the script to convert CSV rows
89
- -d, --delimiter=<value> [default: ,] The input CSV file delimiter
90
- -e, --encoding=<value> [default: utf8] The input CSV file encoding
91
- -f, --csvfile=<value> (required) The CSV file path that defines the records to insert
92
- -m, --mapping=<value> The path of the JSON file that defines CSV column mappings
93
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
94
- configuration variable is already set.
95
- -q, --quote=<value> [default: "] The input CSV file quote character
96
- -r, --resultfile=<value> The CSV file path for writing the insert results
97
- -s, --sobject=<value> (required) The SObject name to insert
98
- -w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
99
- results
100
- --api-version=<value> Override the api version used for api requests made by this command
101
- --assignmentruleid=<value> The ID of a specific assignment rule to run for a case or a lead
102
- --batchsize=<value> [default: 10000] The batch size of the job
103
- --concurrencymode=<value> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
104
- --convertonly Output converted.csv file and skip insert for debugging
105
- --setnull Set blank values as null values during insert operations (default: empty field values
106
- are ignored)
107
- --skiplines=<value> The number of lines to skip
108
- --trim Trim all white space from columns
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
- Insert MyObject__c records with convert.js:
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.1/src/commands/kit/data/bulk/insert.ts)_
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, --csvfile=<value> [default: standard output] Output csv file
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.1/src/commands/kit/data/bulk/query.ts)_
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> [--json] [--flags-dir <value>] [-r <value>] [-e <value>] [-d
169
- <value>] [-q <value>] [--skiplines <value>] [--trim] [-m <value>] [-c <value>] [--setnull] [--convertonly]
170
- [--concurrencymode <value>] [--assignmentruleid <value>] [--batchsize <value>] [-w <value>] [--api-version <value>]
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> The path of the script to convert CSV rows
174
- -d, --delimiter=<value> [default: ,] The input CSV file delimiter
175
- -e, --encoding=<value> [default: utf8] The input CSV file encoding
176
- -f, --csvfile=<value> (required) The CSV file path that defines the records to update
177
- -m, --mapping=<value> The path of the JSON file that defines CSV column mappings
178
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
179
- configuration variable is already set.
180
- -q, --quote=<value> [default: "] The input CSV file quote character
181
- -r, --resultfile=<value> The CSV file path for writing the update results
182
- -s, --sobject=<value> (required) The SObject name to update
183
- -w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
184
- results
185
- --api-version=<value> Override the api version used for api requests made by this command
186
- --assignmentruleid=<value> The ID of a specific assignment rule to run for a case or a lead
187
- --batchsize=<value> [default: 10000] The batch size of the job
188
- --concurrencymode=<value> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
189
- --convertonly Output converted.csv file and skip update for debugging
190
- --setnull Set blank values as null values during update operations (default: empty field values
191
- are ignored)
192
- --skiplines=<value> The number of lines to skip
193
- --trim Trim all white space from columns
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
- Update MyObject__c records with convert.js:
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.1/src/commands/kit/data/bulk/update.ts)_
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> [--json] [--flags-dir <value>] [-r <value>] [-e
223
- <value>] [-d <value>] [-q <value>] [--skiplines <value>] [--trim] [-m <value>] [-c <value>] [--setnull]
224
- [--convertonly] [--concurrencymode <value>] [--assignmentruleid <value>] [--batchsize <value>] [-w <value>]
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> The path of the script to convert CSV rows
229
- -d, --delimiter=<value> [default: ,] The input CSV file delimiter
230
- -e, --encoding=<value> [default: utf8] The input CSV file encoding
231
- -f, --csvfile=<value> (required) The CSV file path that defines the records to upsert
232
- -i, --externalid=<value> (required) [default: Id] The column name of the external ID
233
- -m, --mapping=<value> The path of the JSON file that defines CSV column mappings
234
- -o, --target-org=<value> (required) Username or alias of the target org. Not required if the `target-org`
235
- configuration variable is already set.
236
- -q, --quote=<value> [default: "] The input CSV file quote character
237
- -r, --resultfile=<value> The CSV file path for writing the upsert results
238
- -s, --sobject=<value> (required) The SObject name to upsert
239
- -w, --wait=<value> The number of minutes to wait for the command to complete before displaying the
240
- results
241
- --api-version=<value> Override the api version used for api requests made by this command
242
- --assignmentruleid=<value> The ID of a specific assignment rule to run for a case or a lead
243
- --batchsize=<value> [default: 10000] The batch size of the job
244
- --concurrencymode=<value> [default: Parallel] The concurrency mode (Parallel or Serial) for the job
245
- --convertonly Output converted.csv file and skip upsert for debugging
246
- --setnull Set blank values as null values during upsert operations (default: empty field values
247
- are ignored)
248
- --skiplines=<value> The number of lines to skip
249
- --trim Trim all white space from columns
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.1/src/commands/kit/data/bulk/upsert.ts)_
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>] [-o <value>] [-e <value>] [-d <value>] [-q
280
- <value>] [--skiplines <value>] [--trim] [-m <value>] [-c <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> The path of the script to convert CSV rows
284
- -d, --delimiter=<value> [default: ,] The input CSV file delimiter
285
- -e, --encoding=<value> [default: utf8] The input CSV file encoding
286
- -i, --input=<value> [default: standard input] The path of the input CSV file
287
- -m, --mapping=<value> The path of the JSON file that defines CSV column mappings
288
- -o, --output=<value> [default: standard output] The path of the output CSV file
289
- -q, --quote=<value> [default: "] The input CSV file quote character
290
- --skiplines=<value> The number of lines to skip
291
- --trim Trim all white space from columns
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 -o ./path/to/output.csv -c ./path/to/convert.js
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.1/src/commands/kit/data/csv/convert.ts)_
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 <value>]
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.1/src/commands/kit/graphql/editor.ts)_
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.1/src/commands/kit/layout/assignments/deploy.ts)_
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.1/src/commands/kit/layout/assignments/retrieve.ts)_
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 <value>]
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.1/src/commands/kit/metadata/dependencies.ts)_
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.1/src/commands/kit/object/fields/describe.ts)_
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.1/src/commands/kit/object/fields/setup.ts)_
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.1/src/commands/kit/script/execute.ts)_
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 -->