@salesforce/analytics 1.0.4 → 1.0.5
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/CHANGELOG.md +3 -1
- package/README.md +35 -35
- package/lib/lib/analytics/app/folder.js +10 -1
- package/lib/lib/analytics/app/folder.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,10 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
-
### [1.0.
|
|
5
|
+
### [1.0.5](https://github.com/salesforcecli/plugin-analytics/compare/v1.0.3...v1.0.5) (2022-04-06)
|
|
6
6
|
|
|
7
7
|
### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- app update use domino W-10809399 ([#101](https://github.com/salesforcecli/plugin-analytics/issues/101)) ([0373e13](https://github.com/salesforcecli/plugin-analytics/commit/0373e13ef1bd82739216d8fa4003e2e1dd3804f0))
|
|
10
|
+
- update version number ([#102](https://github.com/salesforcecli/plugin-analytics/issues/102)) ([9778614](https://github.com/salesforcecli/plugin-analytics/commit/97786148e154e53cc6e021c1699b0c06382ea2cb))
|
|
9
11
|
- use domino by default for app create W-10809399 ([#90](https://github.com/salesforcecli/plugin-analytics/issues/90)) ([0300f5c](https://github.com/salesforcecli/plugin-analytics/commit/0300f5c20c736b302711ba566c175eef2041c3c7))
|
|
10
12
|
|
|
11
13
|
### [1.0.3](https://github.com/salesforcecli/plugin-analytics/compare/v1.0.2...v1.0.3) (2022-02-02)
|
package/README.md
CHANGED
|
@@ -165,7 +165,7 @@ EXAMPLES
|
|
|
165
165
|
$ sfdx analytics:app:create -f path_to_json_file
|
|
166
166
|
```
|
|
167
167
|
|
|
168
|
-
_See code: [src/commands/analytics/app/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
168
|
+
_See code: [src/commands/analytics/app/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/create.ts)_
|
|
169
169
|
|
|
170
170
|
## `sfdx analytics:app:decouple -f <id> -t <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
171
171
|
|
|
@@ -195,7 +195,7 @@ EXAMPLE
|
|
|
195
195
|
$ sfdx analytics:app:decouple -f folderId -t templateId
|
|
196
196
|
```
|
|
197
197
|
|
|
198
|
-
_See code: [src/commands/analytics/app/decouple.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
198
|
+
_See code: [src/commands/analytics/app/decouple.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/decouple.ts)_
|
|
199
199
|
|
|
200
200
|
## `sfdx analytics:app:delete -f <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
201
201
|
|
|
@@ -227,7 +227,7 @@ EXAMPLE
|
|
|
227
227
|
$ sfdx analytics:app:delete -f folderid
|
|
228
228
|
```
|
|
229
229
|
|
|
230
|
-
_See code: [src/commands/analytics/app/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
230
|
+
_See code: [src/commands/analytics/app/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/delete.ts)_
|
|
231
231
|
|
|
232
232
|
## `sfdx analytics:app:display -f <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
233
233
|
|
|
@@ -259,7 +259,7 @@ EXAMPLE
|
|
|
259
259
|
$ sfdx analytics:app:display -f folderId -a
|
|
260
260
|
```
|
|
261
261
|
|
|
262
|
-
_See code: [src/commands/analytics/app/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
262
|
+
_See code: [src/commands/analytics/app/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/display.ts)_
|
|
263
263
|
|
|
264
264
|
## `sfdx analytics:app:list [-f <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
265
265
|
|
|
@@ -288,7 +288,7 @@ EXAMPLE
|
|
|
288
288
|
$ sfdx analytics:app:list
|
|
289
289
|
```
|
|
290
290
|
|
|
291
|
-
_See code: [src/commands/analytics/app/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
291
|
+
_See code: [src/commands/analytics/app/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/list.ts)_
|
|
292
292
|
|
|
293
293
|
## `sfdx analytics:app:update -t <id> -f <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
294
294
|
|
|
@@ -318,7 +318,7 @@ EXAMPLE
|
|
|
318
318
|
$ sfdx analytics:app:update -f folderId -t templateId
|
|
319
319
|
```
|
|
320
320
|
|
|
321
|
-
_See code: [src/commands/analytics/app/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
321
|
+
_See code: [src/commands/analytics/app/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/app/update.ts)_
|
|
322
322
|
|
|
323
323
|
## `sfdx analytics:asset:publisher:create -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
324
324
|
|
|
@@ -348,7 +348,7 @@ EXAMPLE
|
|
|
348
348
|
$ sfdx analytics:asset:publisher:create -i assetId
|
|
349
349
|
```
|
|
350
350
|
|
|
351
|
-
_See code: [src/commands/analytics/asset/publisher/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
351
|
+
_See code: [src/commands/analytics/asset/publisher/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/asset/publisher/create.ts)_
|
|
352
352
|
|
|
353
353
|
## `sfdx analytics:asset:publisher:delete -i <id> -a <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
354
354
|
|
|
@@ -381,7 +381,7 @@ EXAMPLE
|
|
|
381
381
|
$ sfdx analytics:asset:publisher:delete -a assetId -i assetPublisherId
|
|
382
382
|
```
|
|
383
383
|
|
|
384
|
-
_See code: [src/commands/analytics/asset/publisher/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
384
|
+
_See code: [src/commands/analytics/asset/publisher/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/asset/publisher/delete.ts)_
|
|
385
385
|
|
|
386
386
|
## `sfdx analytics:asset:publisher:deleteall -i <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
387
387
|
|
|
@@ -414,7 +414,7 @@ EXAMPLE
|
|
|
414
414
|
$ sfdx analytics:asset:publisher:deleteall -i assetId
|
|
415
415
|
```
|
|
416
416
|
|
|
417
|
-
_See code: [src/commands/analytics/asset/publisher/deleteall.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
417
|
+
_See code: [src/commands/analytics/asset/publisher/deleteall.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/asset/publisher/deleteall.ts)_
|
|
418
418
|
|
|
419
419
|
## `sfdx analytics:asset:publisher:list -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
420
420
|
|
|
@@ -444,7 +444,7 @@ EXAMPLE
|
|
|
444
444
|
$ sfdx analytics:asset:publisher:list -i assetId
|
|
445
445
|
```
|
|
446
446
|
|
|
447
|
-
_See code: [src/commands/analytics/asset/publisher/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
447
|
+
_See code: [src/commands/analytics/asset/publisher/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/asset/publisher/list.ts)_
|
|
448
448
|
|
|
449
449
|
## `sfdx analytics:autoinstall:app:create [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
450
450
|
|
|
@@ -484,7 +484,7 @@ EXAMPLES
|
|
|
484
484
|
$ sfdx analytics:autoinstall:app:create -n templatename
|
|
485
485
|
```
|
|
486
486
|
|
|
487
|
-
_See code: [src/commands/analytics/autoinstall/app/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
487
|
+
_See code: [src/commands/analytics/autoinstall/app/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/autoinstall/app/create.ts)_
|
|
488
488
|
|
|
489
489
|
## `sfdx analytics:autoinstall:app:delete -f <id> [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
490
490
|
|
|
@@ -521,7 +521,7 @@ EXAMPLE
|
|
|
521
521
|
$ sfdx analytics:autoinstall:app:delete -f folderid
|
|
522
522
|
```
|
|
523
523
|
|
|
524
|
-
_See code: [src/commands/analytics/autoinstall/app/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
524
|
+
_See code: [src/commands/analytics/autoinstall/app/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/autoinstall/app/delete.ts)_
|
|
525
525
|
|
|
526
526
|
## `sfdx analytics:autoinstall:app:update -f <id> [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
527
527
|
|
|
@@ -562,7 +562,7 @@ EXAMPLES
|
|
|
562
562
|
$ sfdx analytics:autoinstall:app:update -n templatename -f folderid
|
|
563
563
|
```
|
|
564
564
|
|
|
565
|
-
_See code: [src/commands/analytics/autoinstall/app/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
565
|
+
_See code: [src/commands/analytics/autoinstall/app/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/autoinstall/app/update.ts)_
|
|
566
566
|
|
|
567
567
|
## `sfdx analytics:autoinstall:display -i <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
568
568
|
|
|
@@ -594,7 +594,7 @@ EXAMPLE
|
|
|
594
594
|
$ sfdx analytics:autoinstall:display -i id
|
|
595
595
|
```
|
|
596
596
|
|
|
597
|
-
_See code: [src/commands/analytics/autoinstall/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
597
|
+
_See code: [src/commands/analytics/autoinstall/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/autoinstall/display.ts)_
|
|
598
598
|
|
|
599
599
|
## `sfdx analytics:autoinstall:list [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
600
600
|
|
|
@@ -621,7 +621,7 @@ EXAMPLE
|
|
|
621
621
|
$ sfdx analytics:autoinstall:list
|
|
622
622
|
```
|
|
623
623
|
|
|
624
|
-
_See code: [src/commands/analytics/autoinstall/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
624
|
+
_See code: [src/commands/analytics/autoinstall/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/autoinstall/list.ts)_
|
|
625
625
|
|
|
626
626
|
## `sfdx analytics:dashboard:history:list -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
627
627
|
|
|
@@ -650,7 +650,7 @@ EXAMPLE
|
|
|
650
650
|
$ sfdx analytics:dashboard:history:list --dashboardid <dashboardid>
|
|
651
651
|
```
|
|
652
652
|
|
|
653
|
-
_See code: [src/commands/analytics/dashboard/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
653
|
+
_See code: [src/commands/analytics/dashboard/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dashboard/history/list.ts)_
|
|
654
654
|
|
|
655
655
|
## `sfdx analytics:dashboard:history:revert -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
656
656
|
|
|
@@ -684,7 +684,7 @@ EXAMPLE
|
|
|
684
684
|
$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel>
|
|
685
685
|
```
|
|
686
686
|
|
|
687
|
-
_See code: [src/commands/analytics/dashboard/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
687
|
+
_See code: [src/commands/analytics/dashboard/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dashboard/history/revert.ts)_
|
|
688
688
|
|
|
689
689
|
## `sfdx analytics:dashboard:list [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
690
690
|
|
|
@@ -711,7 +711,7 @@ EXAMPLE
|
|
|
711
711
|
$ sfdx analytics:dashboard:list
|
|
712
712
|
```
|
|
713
713
|
|
|
714
|
-
_See code: [src/commands/analytics/dashboard/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
714
|
+
_See code: [src/commands/analytics/dashboard/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dashboard/list.ts)_
|
|
715
715
|
|
|
716
716
|
## `sfdx analytics:dashboard:update -i <id> [-y <id>] [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
717
717
|
|
|
@@ -746,7 +746,7 @@ EXAMPLES
|
|
|
746
746
|
$ sfdx analytics:dashboard:update -i dashboardId -r
|
|
747
747
|
```
|
|
748
748
|
|
|
749
|
-
_See code: [src/commands/analytics/dashboard/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
749
|
+
_See code: [src/commands/analytics/dashboard/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dashboard/update.ts)_
|
|
750
750
|
|
|
751
751
|
## `sfdx analytics:dataflow:history:list -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
752
752
|
|
|
@@ -775,7 +775,7 @@ EXAMPLE
|
|
|
775
775
|
$ sfdx analytics:dataflow:history:list --dataflowid <dataflowid>
|
|
776
776
|
```
|
|
777
777
|
|
|
778
|
-
_See code: [src/commands/analytics/dataflow/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
778
|
+
_See code: [src/commands/analytics/dataflow/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataflow/history/list.ts)_
|
|
779
779
|
|
|
780
780
|
## `sfdx analytics:dataflow:history:revert -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
781
781
|
|
|
@@ -809,7 +809,7 @@ EXAMPLE
|
|
|
809
809
|
$ sfdx analytics:dataflow:history:revert -i <dataflowid> -y <historyid> -l <historyLabel>
|
|
810
810
|
```
|
|
811
811
|
|
|
812
|
-
_See code: [src/commands/analytics/dataflow/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
812
|
+
_See code: [src/commands/analytics/dataflow/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataflow/history/revert.ts)_
|
|
813
813
|
|
|
814
814
|
## `sfdx analytics:dataflow:list [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
815
815
|
|
|
@@ -836,7 +836,7 @@ EXAMPLE
|
|
|
836
836
|
$ sfdx analytics:dataflow:list
|
|
837
837
|
```
|
|
838
838
|
|
|
839
|
-
_See code: [src/commands/analytics/dataflow/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
839
|
+
_See code: [src/commands/analytics/dataflow/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataflow/list.ts)_
|
|
840
840
|
|
|
841
841
|
## `sfdx analytics:dataset:display [-i <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
842
842
|
|
|
@@ -867,7 +867,7 @@ EXAMPLES
|
|
|
867
867
|
$ sfdx analytics:dataset:display -n datasetApiName
|
|
868
868
|
```
|
|
869
869
|
|
|
870
|
-
_See code: [src/commands/analytics/dataset/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
870
|
+
_See code: [src/commands/analytics/dataset/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataset/display.ts)_
|
|
871
871
|
|
|
872
872
|
## `sfdx analytics:dataset:list [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
873
873
|
|
|
@@ -894,7 +894,7 @@ EXAMPLE
|
|
|
894
894
|
$ sfdx analytics:dataset:list
|
|
895
895
|
```
|
|
896
896
|
|
|
897
|
-
_See code: [src/commands/analytics/dataset/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
897
|
+
_See code: [src/commands/analytics/dataset/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataset/list.ts)_
|
|
898
898
|
|
|
899
899
|
## `sfdx analytics:dataset:rows:fetch [-i <id> | -n <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
900
900
|
|
|
@@ -930,7 +930,7 @@ EXAMPLES
|
|
|
930
930
|
$ sfdx analytics:dataset:rows:fetch -n datasetApiName -r csv
|
|
931
931
|
```
|
|
932
932
|
|
|
933
|
-
_See code: [src/commands/analytics/dataset/rows/fetch.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
933
|
+
_See code: [src/commands/analytics/dataset/rows/fetch.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/dataset/rows/fetch.ts)_
|
|
934
934
|
|
|
935
935
|
## `sfdx analytics:enable [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
936
936
|
|
|
@@ -966,7 +966,7 @@ EXAMPLE
|
|
|
966
966
|
$ sfdx analytics:enable
|
|
967
967
|
```
|
|
968
968
|
|
|
969
|
-
_See code: [src/commands/analytics/enable.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
969
|
+
_See code: [src/commands/analytics/enable.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/enable.ts)_
|
|
970
970
|
|
|
971
971
|
## `sfdx analytics:lens:history:list -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
972
972
|
|
|
@@ -995,7 +995,7 @@ EXAMPLE
|
|
|
995
995
|
$ sfdx analytics:lens:history:list --lensid <lensid>
|
|
996
996
|
```
|
|
997
997
|
|
|
998
|
-
_See code: [src/commands/analytics/lens/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
998
|
+
_See code: [src/commands/analytics/lens/history/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/lens/history/list.ts)_
|
|
999
999
|
|
|
1000
1000
|
## `sfdx analytics:lens:history:revert -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1001
1001
|
|
|
@@ -1029,7 +1029,7 @@ EXAMPLE
|
|
|
1029
1029
|
$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel>
|
|
1030
1030
|
```
|
|
1031
1031
|
|
|
1032
|
-
_See code: [src/commands/analytics/lens/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1032
|
+
_See code: [src/commands/analytics/lens/history/revert.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/lens/history/revert.ts)_
|
|
1033
1033
|
|
|
1034
1034
|
## `sfdx analytics:lens:list [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1035
1035
|
|
|
@@ -1056,7 +1056,7 @@ EXAMPLE
|
|
|
1056
1056
|
$ sfdx analytics:lens:list
|
|
1057
1057
|
```
|
|
1058
1058
|
|
|
1059
|
-
_See code: [src/commands/analytics/lens/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1059
|
+
_See code: [src/commands/analytics/lens/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/lens/list.ts)_
|
|
1060
1060
|
|
|
1061
1061
|
## `sfdx analytics:query [-f <filepath> | -q <string>] [--nomapnames] [--sql] [-t <string>] [--connector <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1062
1062
|
|
|
@@ -1106,7 +1106,7 @@ EXAMPLES
|
|
|
1106
1106
|
sfdx analytics:query -q "..." --sql --limit 10 -r csv
|
|
1107
1107
|
```
|
|
1108
1108
|
|
|
1109
|
-
_See code: [src/commands/analytics/query.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1109
|
+
_See code: [src/commands/analytics/query.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/query.ts)_
|
|
1110
1110
|
|
|
1111
1111
|
## `sfdx analytics:template:create -f <id> [-l <string>] [--description <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1112
1112
|
|
|
@@ -1138,7 +1138,7 @@ EXAMPLE
|
|
|
1138
1138
|
$ sfdx analytics:template:create -f folderid
|
|
1139
1139
|
```
|
|
1140
1140
|
|
|
1141
|
-
_See code: [src/commands/analytics/template/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1141
|
+
_See code: [src/commands/analytics/template/create.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/template/create.ts)_
|
|
1142
1142
|
|
|
1143
1143
|
## `sfdx analytics:template:delete -t <id> [--forcedelete] [--decouple] [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1144
1144
|
|
|
@@ -1176,7 +1176,7 @@ EXAMPLE
|
|
|
1176
1176
|
$ sfdx analytics:template:delete -t templateid
|
|
1177
1177
|
```
|
|
1178
1178
|
|
|
1179
|
-
_See code: [src/commands/analytics/template/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1179
|
+
_See code: [src/commands/analytics/template/delete.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/template/delete.ts)_
|
|
1180
1180
|
|
|
1181
1181
|
## `sfdx analytics:template:display [-t <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1182
1182
|
|
|
@@ -1207,7 +1207,7 @@ EXAMPLES
|
|
|
1207
1207
|
$ sfdx analytics:template:display -n templatename
|
|
1208
1208
|
```
|
|
1209
1209
|
|
|
1210
|
-
_See code: [src/commands/analytics/template/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1210
|
+
_See code: [src/commands/analytics/template/display.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/template/display.ts)_
|
|
1211
1211
|
|
|
1212
1212
|
## `sfdx analytics:template:list [-a] [-e] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1213
1213
|
|
|
@@ -1239,7 +1239,7 @@ EXAMPLES
|
|
|
1239
1239
|
$ sfdx analytics:template:list --includesalesforcetemplates
|
|
1240
1240
|
```
|
|
1241
1241
|
|
|
1242
|
-
_See code: [src/commands/analytics/template/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1242
|
+
_See code: [src/commands/analytics/template/list.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/template/list.ts)_
|
|
1243
1243
|
|
|
1244
1244
|
## `sfdx analytics:template:update [-t <id> | -n <string>] [-f <id>] [-v <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
|
|
1245
1245
|
|
|
@@ -1274,6 +1274,6 @@ EXAMPLE
|
|
|
1274
1274
|
$ sfdx analytics:template:update -t templateid -f folderid
|
|
1275
1275
|
```
|
|
1276
1276
|
|
|
1277
|
-
_See code: [src/commands/analytics/template/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.
|
|
1277
|
+
_See code: [src/commands/analytics/template/update.ts](https://github.com/salesforcecli/plugin-analytics/blob/v1.0.4/src/commands/analytics/template/update.ts)_
|
|
1278
1278
|
|
|
1279
1279
|
<!-- commandsstop -->
|
|
@@ -48,7 +48,16 @@ class Folder {
|
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
async update(folderid, templateid) {
|
|
51
|
-
|
|
51
|
+
let body = JSON.stringify({ templateSourceId: templateid, templateOptions: { appAction: 'Upgrade' } });
|
|
52
|
+
if (this.serverVersion >= 55.0) {
|
|
53
|
+
body = JSON.stringify({
|
|
54
|
+
templateSourceId: templateid,
|
|
55
|
+
templateOptions: {
|
|
56
|
+
appAction: 'Upgrade',
|
|
57
|
+
dynamicOptions: { productionType: 'ATF_3_0', runtimeLogEntryLevel: 'Warning' }
|
|
58
|
+
}
|
|
59
|
+
});
|
|
60
|
+
}
|
|
52
61
|
const wtUrl = this.foldersUrl + encodeURIComponent(folderid);
|
|
53
62
|
const response = await (0, request_1.connectRequest)(this.connection, {
|
|
54
63
|
method: 'PUT',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"folder.js","sourceRoot":"","sources":["../../../../src/lib/analytics/app/folder.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;AAGH,wCAA2D;AAC3D,oCAAsC;AAwCtC,MAAqB,MAAM;IAKzB,YAAmB,YAAiB;QAClC,IAAI,CAAC,UAAU,GAAG,YAAY,CAAC,aAAa,EAAE,CAAC;QAC/C,IAAI,CAAC,UAAU,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC;QAC/D,IAAI,CAAC,aAAa,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC;IACxD,CAAC;IAEM,KAAK,CAAC,KAAK,CAAC,QAAgB,EAAE,UAAU,GAAG,KAAK;QACrD,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,IAAI,CAAC,UAAU,GAAG,kBAAkB,CAAC,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,EAAE,CAAC;SACtG,CAAC,CAAC;QACH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC;SACjB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,IAAmB;QACrC,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE;gBACzB,IAAI,CAAC,eAAe,GAAG,EAAE,cAAc,EAAE,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS,EAAE,EAAE,CAAC;aAC3G;iBAAM,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,cAAc,EAAE;gBAC/C,IAAI,CAAC,eAAe,CAAC,cAAc,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS,EAAE,CAAC;aACtG;SACF;QACD,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,IAAI,CAAC,UAAU;YACpB,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;SAC3B,CAAC,CAAC;QACH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC,EAAE,CAAC;SACpB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,QAAgB,EAAE,UAAkB;QACtD,
|
|
1
|
+
{"version":3,"file":"folder.js","sourceRoot":"","sources":["../../../../src/lib/analytics/app/folder.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;AAGH,wCAA2D;AAC3D,oCAAsC;AAwCtC,MAAqB,MAAM;IAKzB,YAAmB,YAAiB;QAClC,IAAI,CAAC,UAAU,GAAG,YAAY,CAAC,aAAa,EAAE,CAAC;QAC/C,IAAI,CAAC,UAAU,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,gBAAgB,CAAC;QAC/D,IAAI,CAAC,aAAa,GAAG,CAAC,IAAI,CAAC,UAAU,CAAC,aAAa,EAAE,CAAC;IACxD,CAAC;IAEM,KAAK,CAAC,KAAK,CAAC,QAAgB,EAAE,UAAU,GAAG,KAAK;QACrD,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,IAAI,CAAC,UAAU,GAAG,kBAAkB,CAAC,QAAQ,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC,CAAC,2BAA2B,CAAC,CAAC,CAAC,EAAE,CAAC;SACtG,CAAC,CAAC;QACH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC;SACjB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,IAAmB;QACrC,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,EAAE;YAC9B,IAAI,CAAC,IAAI,CAAC,eAAe,EAAE;gBACzB,IAAI,CAAC,eAAe,GAAG,EAAE,cAAc,EAAE,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS,EAAE,EAAE,CAAC;aAC3G;iBAAM,IAAI,CAAC,IAAI,CAAC,eAAe,CAAC,cAAc,EAAE;gBAC/C,IAAI,CAAC,eAAe,CAAC,cAAc,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS,EAAE,CAAC;aACtG;SACF;QACD,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,MAAM;YACd,GAAG,EAAE,IAAI,CAAC,UAAU;YACpB,IAAI,EAAE,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;SAC3B,CAAC,CAAC;QACH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC,EAAE,CAAC;SACpB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,KAAK,CAAC,MAAM,CAAC,QAAgB,EAAE,UAAkB;QACtD,IAAI,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,EAAE,gBAAgB,EAAE,UAAU,EAAE,eAAe,EAAE,EAAE,SAAS,EAAE,SAAS,EAAE,EAAE,CAAC,CAAC;QACvG,IAAI,IAAI,CAAC,aAAa,IAAI,IAAI,EAAE;YAC9B,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC;gBACpB,gBAAgB,EAAE,UAAU;gBAC5B,eAAe,EAAE;oBACf,SAAS,EAAE,SAAS;oBACpB,cAAc,EAAE,EAAE,cAAc,EAAE,SAAS,EAAE,oBAAoB,EAAE,SAAS,EAAE;iBAC/E;aACF,CAAC,CAAC;SACJ;QACD,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,GAAG,kBAAkB,CAAC,QAAQ,CAAC,CAAC;QAC7D,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,KAAK;YACV,IAAI;SACL,CAAC,CAAC;QAEH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC,EAAE,CAAC;SACpB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,KAAK,CAAC,QAAQ,CAAC,QAAgB,EAAE,UAAkB;QACxD,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC;YAC1B,gBAAgB,EAAE,UAAU;YAC5B,eAAe,EAAE,EAAE,SAAS,EAAE,aAAa,EAAE;SAC9C,CAAC,CAAC;QACH,MAAM,KAAK,GAAG,IAAI,CAAC,UAAU,GAAG,kBAAkB,CAAC,QAAQ,CAAC,CAAC;QAC7D,MAAM,QAAQ,GAAG,MAAM,IAAA,wBAAc,EAAY,IAAI,CAAC,UAAU,EAAE;YAChE,MAAM,EAAE,KAAK;YACb,GAAG,EAAE,KAAK;YACV,IAAI;SACL,CAAC,CAAC;QAEH,IAAI,QAAQ,EAAE;YACZ,OAAO,QAAQ,CAAC,EAAE,CAAC;SACpB;aAAM;YACL,IAAA,kBAAU,EAAC,QAAQ,CAAC,CAAC;SACtB;IACH,CAAC;IAEM,IAAI;QACT,OAAO,IAAA,uBAAa,EAAY,IAAI,CAAC,UAAU,EAAE,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC,CAAC;IAC/E,CAAC;IAEM,KAAK,CAAC,YAAY,CAAC,QAAgB;QACxC,MAAM,SAAS,GAAG,IAAI,CAAC,UAAU,GAAG,QAAQ,CAAC;QAC7C,MAAM,IAAA,wBAAc,EAAC,IAAI,CAAC,UAAU,EAAE;YACpC,MAAM,EAAE,QAAQ;YAChB,GAAG,EAAE,SAAS;SACf,CAAC,CAAC;IACL,CAAC;CACF;AAlGD,yBAkGC"}
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.0.4","commands":{"analytics":{"id":"analytics","usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[]},"analytics:enable":{"id":"analytics:enable","description":"enable Tableau CRM","usage":"<%= command.id %> [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:enable"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"async":{"name":"async","type":"boolean","char":"a","description":"enable asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:query":{"id":"analytics:query","description":"execute a Tableau CRM query","usage":"<%= command.id %> [-f <filepath> | -q <string>] [--nomapnames] [--sql] [-t <string>] [--connector <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["sfdx analytics:query -f query.saql","sfdx analytics:query -f query.sql -t America/Denver","sfdx analytics:query -q \"...\" --sql --limit 10 -r csv"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"queryfile":{"name":"queryfile","type":"option","char":"f","description":"path to the file containing the query to execute"},"query":{"name":"query","type":"option","char":"q","description":"query to execute"},"nomapnames":{"name":"nomapnames","type":"boolean","description":"skip mapping dataset names in the SAQL query to ids","allowNo":false},"sql":{"name":"sql","type":"boolean","description":"execute the query as SQL","allowNo":false},"timezone":{"name":"timezone","type":"option","char":"t","description":"timezone for the query"},"connector":{"name":"connector","type":"option","description":"execute the SQL query against this external data connector id or name"},"dryrun":{"name":"dryrun","type":"boolean","description":"Show the resulting query that would be executed, but don't run it","hidden":true,"allowNo":false},"limit":{"name":"limit","type":"option","description":"maximum number of rows to include"},"resultformat":{"name":"resultformat","type":"option","char":"r","description":"result format emitted to stdout","helpValue":"(human|csv|json)","options":["human","csv","json"],"default":"human"}},"args":[]},"analytics:app:create":{"id":"analytics:app:create","description":"create a Tableau CRM app","usage":"<%= command.id %> [-f <filepath> | -m <string> | -t <string>] [-n <string>] [-a] [-v] [-w <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:create -t templateid -n appname","$ sfdx analytics:app:create -m templatename","$ sfdx analytics:app:create -f path_to_json_file"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"definitionfile":{"name":"definitionfile","type":"option","char":"f","description":"Tableau CRM template definition file; required unless --templateid is specified"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID; required unless --definitionfile is specified"},"templatename":{"name":"templatename","type":"option","char":"m","description":"template name"},"appname":{"name":"appname","type":"option","char":"n","description":"app name"},"async":{"name":"async","type":"boolean","char":"a","description":"create app asynchronously","allowNo":false},"allevents":{"name":"allevents","type":"boolean","char":"v","description":"verbose display of all app create events","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for streaming app creation events","default":10}},"args":[]},"analytics:app:decouple":{"id":"analytics:app:decouple","description":"decouples a Tableau CRM app from a Tableau CRM template","usage":"<%= command.id %> -f <id> -t <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:decouple -f folderId -t templateId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true}},"args":[]},"analytics:app:delete":{"id":"analytics:app:delete","description":"delete Tableau CRM apps","usage":"<%= command.id %> -f <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:delete -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:app:display":{"id":"analytics:app:display","description":"displays a Tableau CRM app's details","usage":"<%= command.id %> -f <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:display -f folderId -a"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"applog":{"name":"applog","type":"boolean","char":"a","description":"specify to include app creation log details","required":false,"allowNo":false}},"args":[]},"analytics:app:list":{"id":"analytics:app:list","description":"list Tableau CRM apps","usage":"<%= command.id %> [-f <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID"}},"args":[]},"analytics:app:update":{"id":"analytics:app:update","description":"updates a Tableau CRM app from a template","usage":"<%= command.id %> -t <id> -f <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:update -f folderId -t templateId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true}},"args":[]},"analytics:autoinstall:display":{"id":"analytics:autoinstall:display","description":"displays a Tableau CRM auto-install request details","usage":"<%= command.id %> -i <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:display -i id"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"autoinstallid":{"name":"autoinstallid","type":"option","char":"i","description":"auto-install request ID","required":true},"applog":{"name":"applog","type":"boolean","char":"a","description":"specify to include app creation log details","required":false,"allowNo":false}},"args":[]},"analytics:autoinstall:list":{"id":"analytics:autoinstall:list","description":"list Tableau CRM auto-install requests","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dashboard:list":{"id":"analytics:dashboard:list","description":"list Tableau CRM dashboards","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dashboard:update":{"id":"analytics:dashboard:update","description":"updates a Tableau CRM dashboard","usage":"<%= command.id %> -i <id> [-y <id>] [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:update -i dashboardId -y currentHistoryId","$ sfdx analytics:dashboard:update -i dashboardId -r"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"Dashboard ID","required":true},"currenthistoryid":{"name":"currenthistoryid","type":"option","char":"y","description":"Current History ID to display"},"removecurrenthistory":{"name":"removecurrenthistory","type":"boolean","char":"r","description":"Remove Current History ID from dashboard","allowNo":false}},"args":[]},"analytics:dataflow:list":{"id":"analytics:dataflow:list","description":"list Tableau CRM dataflows","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dataset:display":{"id":"analytics:dataset:display","description":"displays a Tableau CRM dataset's details","usage":"<%= command.id %> [-i <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:display -i datasetId","$ sfdx analytics:dataset:display -n datasetApiName"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"datasetid":{"name":"datasetid","type":"option","char":"i","description":"dataset ID"},"datasetname":{"name":"datasetname","type":"option","char":"n","description":"dataset api name"}},"args":[]},"analytics:dataset:list":{"id":"analytics:dataset:list","description":"list Tableau CRM datasets","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:lens:list":{"id":"analytics:lens:list","description":"list Tableau CRM lenses","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:lens:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:template:create":{"id":"analytics:template:create","description":"create Tableau CRM templates","usage":"<%= command.id %> -f <id> [-l <string>] [--description <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:create -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"template label"},"description":{"name":"description","type":"option","description":"template description"}},"args":[]},"analytics:template:delete":{"id":"analytics:template:delete","description":"delete Tableau CRM templates","usage":"<%= command.id %> -t <id> [--forcedelete] [--decouple] [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:delete -t templateid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true},"forcedelete":{"name":"forcedelete","type":"boolean","description":"force delete the Tableau CRM template and all linked Tableau CRM apps","allowNo":false},"decouple":{"name":"decouple","type":"boolean","description":"decouple all linked Tableau CRM apps","allowNo":false},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:template:display":{"id":"analytics:template:display","description":"displays a Tableau CRM template's details","usage":"<%= command.id %> [-t <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:display -t templateid","$ sfdx analytics:template:display -n templatename"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template name"}},"args":[]},"analytics:template:list":{"id":"analytics:template:list","description":"list Tableau CRM templates","usage":"<%= command.id %> [-a] [-e] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:list","$ sfdx analytics:template:list --includembeddedtemplates","$ sfdx analytics:template:list --includesalesforcetemplates"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"includesalesforcetemplates":{"name":"includesalesforcetemplates","type":"boolean","char":"a","description":"include salesforce templates","allowNo":false},"includembeddedtemplates":{"name":"includembeddedtemplates","type":"boolean","char":"e","description":"include EmbeddedApp templates","allowNo":false}},"args":[]},"analytics:template:update":{"id":"analytics:template:update","description":"update Tableau CRM templates","usage":"<%= command.id %> [-t <id> | -n <string>] [-f <id>] [-v <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:update -t templateid -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template name"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID"},"assetversion":{"name":"assetversion","type":"option","char":"v","description":"version number for upgrading the template (available in api version 54.0)"}},"args":[]},"analytics:asset:publisher:create":{"id":"analytics:asset:publisher:create","description":"create a publisher record for the Tableau CRM asset","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:create -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true}},"args":[]},"analytics:asset:publisher:delete":{"id":"analytics:asset:publisher:delete","description":"delete a Tableau CRM asset publisher","usage":"<%= command.id %> -i <id> -a <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:delete -a assetId -i assetPublisherId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"id":{"name":"id","type":"option","char":"i","description":"Asset Publisher ID under development","required":true},"assetid":{"name":"assetid","type":"option","char":"a","description":"Asset ID under development","required":true}},"args":[]},"analytics:asset:publisher:deleteall":{"id":"analytics:asset:publisher:deleteall","description":"delete Tableau CRM asset publishers","usage":"<%= command.id %> -i <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:deleteall -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:asset:publisher:list":{"id":"analytics:asset:publisher:list","description":"list Tableau CRM asset publishers","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:list -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true}},"args":[]},"analytics:autoinstall:app:create":{"id":"analytics:autoinstall:app:create","description":"creates auto-install request to create Tableau CRM app","usage":"<%= command.id %> [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:create -t templateid","$ sfdx analytics:autoinstall:app:create -n templatename"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template api name"},"noenqueue":{"name":"noenqueue","type":"boolean","description":"do not enqueue the request","hidden":true,"allowNo":false},"async":{"name":"async","type":"boolean","char":"a","description":"create app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:autoinstall:app:delete":{"id":"analytics:autoinstall:app:delete","description":"creates auto-install request to delete Tableau CRM app","usage":"<%= command.id %> -f <id> [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:delete -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"async":{"name":"async","type":"boolean","char":"a","description":"delete app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:autoinstall:app:update":{"id":"analytics:autoinstall:app:update","description":"creates auto-install request to update Tableau CRM app","usage":"<%= command.id %> -f <id> [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:update -t templateid -f folderid","$ sfdx analytics:autoinstall:app:update -n templatename -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template api name"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"async":{"name":"async","type":"boolean","char":"a","description":"update app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:dashboard:history:list":{"id":"analytics:dashboard:history:list","description":"list history records for Tableau CRM dashboards","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:list --dashboardid <dashboardid>"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"dashboard ID","required":true}},"args":[]},"analytics:dashboard:history:revert":{"id":"analytics:dashboard:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"dashboard ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dashboard history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]},"analytics:dataflow:history:list":{"id":"analytics:dataflow:history:list","description":"list history records for Tableau CRM dataflows","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:history:list --dataflowid <dataflowid> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dataflowid":{"name":"dataflowid","type":"option","char":"i","description":"dataflow ID","required":true}},"args":[]},"analytics:dataflow:history:revert":{"id":"analytics:dataflow:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:history:revert -i <dataflowid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dataflowid":{"name":"dataflowid","type":"option","char":"i","description":"dataflow ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dataflow history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]},"analytics:dataset:rows:fetch":{"id":"analytics:dataset:rows:fetch","description":"fetch the rows of a Tableau CRM dataset","usage":"<%= command.id %> [-i <id> | -n <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:rows:fetch -i datasetId","$ sfdx analytics:dataset:rows:fetch -n datasetApiName -r csv"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"datasetid":{"name":"datasetid","type":"option","char":"i","description":"dataset ID"},"datasetname":{"name":"datasetname","type":"option","char":"n","description":"dataset api name"},"limit":{"name":"limit","type":"option","description":"maximum number of rows to include"},"resultformat":{"name":"resultformat","type":"option","char":"r","description":"result format emitted to stdout","helpValue":"(human|csv|json)","options":["human","csv","json"],"default":"human"},"dryrun":{"name":"dryrun","type":"boolean","description":"Show the resulting query that would be executed, but don't run it","hidden":true,"allowNo":false}},"args":[]},"analytics:lens:history:list":{"id":"analytics:lens:history:list","description":"list history records for Tableau CRM lenses","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:lens:history:list --lensid <lensid> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"lensid":{"name":"lensid","type":"option","char":"i","description":"lens ID","required":true}},"args":[]},"analytics:lens:history:revert":{"id":"analytics:lens:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"lensid":{"name":"lensid","type":"option","char":"i","description":"dashboard ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dashboard history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]}}}
|
|
1
|
+
{"version":"1.0.5","commands":{"analytics":{"id":"analytics","usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","hidden":true,"aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[]},"analytics:enable":{"id":"analytics:enable","description":"enable Tableau CRM","usage":"<%= command.id %> [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:enable"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"async":{"name":"async","type":"boolean","char":"a","description":"enable asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:query":{"id":"analytics:query","description":"execute a Tableau CRM query","usage":"<%= command.id %> [-f <filepath> | -q <string>] [--nomapnames] [--sql] [-t <string>] [--connector <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["sfdx analytics:query -f query.saql","sfdx analytics:query -f query.sql -t America/Denver","sfdx analytics:query -q \"...\" --sql --limit 10 -r csv"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"queryfile":{"name":"queryfile","type":"option","char":"f","description":"path to the file containing the query to execute"},"query":{"name":"query","type":"option","char":"q","description":"query to execute"},"nomapnames":{"name":"nomapnames","type":"boolean","description":"skip mapping dataset names in the SAQL query to ids","allowNo":false},"sql":{"name":"sql","type":"boolean","description":"execute the query as SQL","allowNo":false},"timezone":{"name":"timezone","type":"option","char":"t","description":"timezone for the query"},"connector":{"name":"connector","type":"option","description":"execute the SQL query against this external data connector id or name"},"dryrun":{"name":"dryrun","type":"boolean","description":"Show the resulting query that would be executed, but don't run it","hidden":true,"allowNo":false},"limit":{"name":"limit","type":"option","description":"maximum number of rows to include"},"resultformat":{"name":"resultformat","type":"option","char":"r","description":"result format emitted to stdout","helpValue":"(human|csv|json)","options":["human","csv","json"],"default":"human"}},"args":[]},"analytics:app:create":{"id":"analytics:app:create","description":"create a Tableau CRM app","usage":"<%= command.id %> [-f <filepath> | -m <string> | -t <string>] [-n <string>] [-a] [-v] [-w <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:create -t templateid -n appname","$ sfdx analytics:app:create -m templatename","$ sfdx analytics:app:create -f path_to_json_file"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"definitionfile":{"name":"definitionfile","type":"option","char":"f","description":"Tableau CRM template definition file; required unless --templateid is specified"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID; required unless --definitionfile is specified"},"templatename":{"name":"templatename","type":"option","char":"m","description":"template name"},"appname":{"name":"appname","type":"option","char":"n","description":"app name"},"async":{"name":"async","type":"boolean","char":"a","description":"create app asynchronously","allowNo":false},"allevents":{"name":"allevents","type":"boolean","char":"v","description":"verbose display of all app create events","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for streaming app creation events","default":10}},"args":[]},"analytics:app:decouple":{"id":"analytics:app:decouple","description":"decouples a Tableau CRM app from a Tableau CRM template","usage":"<%= command.id %> -f <id> -t <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:decouple -f folderId -t templateId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true}},"args":[]},"analytics:app:delete":{"id":"analytics:app:delete","description":"delete Tableau CRM apps","usage":"<%= command.id %> -f <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:delete -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:app:display":{"id":"analytics:app:display","description":"displays a Tableau CRM app's details","usage":"<%= command.id %> -f <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:display -f folderId -a"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"applog":{"name":"applog","type":"boolean","char":"a","description":"specify to include app creation log details","required":false,"allowNo":false}},"args":[]},"analytics:app:list":{"id":"analytics:app:list","description":"list Tableau CRM apps","usage":"<%= command.id %> [-f <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID"}},"args":[]},"analytics:app:update":{"id":"analytics:app:update","description":"updates a Tableau CRM app from a template","usage":"<%= command.id %> -t <id> -f <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:app:update -f folderId -t templateId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true}},"args":[]},"analytics:autoinstall:display":{"id":"analytics:autoinstall:display","description":"displays a Tableau CRM auto-install request details","usage":"<%= command.id %> -i <id> [-a] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:display -i id"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"autoinstallid":{"name":"autoinstallid","type":"option","char":"i","description":"auto-install request ID","required":true},"applog":{"name":"applog","type":"boolean","char":"a","description":"specify to include app creation log details","required":false,"allowNo":false}},"args":[]},"analytics:autoinstall:list":{"id":"analytics:autoinstall:list","description":"list Tableau CRM auto-install requests","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dashboard:list":{"id":"analytics:dashboard:list","description":"list Tableau CRM dashboards","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dashboard:update":{"id":"analytics:dashboard:update","description":"updates a Tableau CRM dashboard","usage":"<%= command.id %> -i <id> [-y <id>] [-r] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:update -i dashboardId -y currentHistoryId","$ sfdx analytics:dashboard:update -i dashboardId -r"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"Dashboard ID","required":true},"currenthistoryid":{"name":"currenthistoryid","type":"option","char":"y","description":"Current History ID to display"},"removecurrenthistory":{"name":"removecurrenthistory","type":"boolean","char":"r","description":"Remove Current History ID from dashboard","allowNo":false}},"args":[]},"analytics:dataflow:list":{"id":"analytics:dataflow:list","description":"list Tableau CRM dataflows","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:dataset:display":{"id":"analytics:dataset:display","description":"displays a Tableau CRM dataset's details","usage":"<%= command.id %> [-i <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:display -i datasetId","$ sfdx analytics:dataset:display -n datasetApiName"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"datasetid":{"name":"datasetid","type":"option","char":"i","description":"dataset ID"},"datasetname":{"name":"datasetname","type":"option","char":"n","description":"dataset api name"}},"args":[]},"analytics:dataset:list":{"id":"analytics:dataset:list","description":"list Tableau CRM datasets","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:lens:list":{"id":"analytics:lens:list","description":"list Tableau CRM lenses","usage":"<%= command.id %> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:lens:list"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"}},"args":[]},"analytics:template:create":{"id":"analytics:template:create","description":"create Tableau CRM templates","usage":"<%= command.id %> -f <id> [-l <string>] [--description <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:create -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"template label"},"description":{"name":"description","type":"option","description":"template description"}},"args":[]},"analytics:template:delete":{"id":"analytics:template:delete","description":"delete Tableau CRM templates","usage":"<%= command.id %> -t <id> [--forcedelete] [--decouple] [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:delete -t templateid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID","required":true},"forcedelete":{"name":"forcedelete","type":"boolean","description":"force delete the Tableau CRM template and all linked Tableau CRM apps","allowNo":false},"decouple":{"name":"decouple","type":"boolean","description":"decouple all linked Tableau CRM apps","allowNo":false},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:template:display":{"id":"analytics:template:display","description":"displays a Tableau CRM template's details","usage":"<%= command.id %> [-t <id> | -n <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:display -t templateid","$ sfdx analytics:template:display -n templatename"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template name"}},"args":[]},"analytics:template:list":{"id":"analytics:template:list","description":"list Tableau CRM templates","usage":"<%= command.id %> [-a] [-e] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:list","$ sfdx analytics:template:list --includembeddedtemplates","$ sfdx analytics:template:list --includesalesforcetemplates"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"includesalesforcetemplates":{"name":"includesalesforcetemplates","type":"boolean","char":"a","description":"include salesforce templates","allowNo":false},"includembeddedtemplates":{"name":"includembeddedtemplates","type":"boolean","char":"e","description":"include EmbeddedApp templates","allowNo":false}},"args":[]},"analytics:template:update":{"id":"analytics:template:update","description":"update Tableau CRM templates","usage":"<%= command.id %> [-t <id> | -n <string>] [-f <id>] [-v <integer>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:template:update -t templateid -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template name"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID"},"assetversion":{"name":"assetversion","type":"option","char":"v","description":"version number for upgrading the template (available in api version 54.0)"}},"args":[]},"analytics:asset:publisher:create":{"id":"analytics:asset:publisher:create","description":"create a publisher record for the Tableau CRM asset","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:create -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true}},"args":[]},"analytics:asset:publisher:delete":{"id":"analytics:asset:publisher:delete","description":"delete a Tableau CRM asset publisher","usage":"<%= command.id %> -i <id> -a <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:delete -a assetId -i assetPublisherId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"id":{"name":"id","type":"option","char":"i","description":"Asset Publisher ID under development","required":true},"assetid":{"name":"assetid","type":"option","char":"a","description":"Asset ID under development","required":true}},"args":[]},"analytics:asset:publisher:deleteall":{"id":"analytics:asset:publisher:deleteall","description":"delete Tableau CRM asset publishers","usage":"<%= command.id %> -i <id> [-p] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:deleteall -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true},"noprompt":{"name":"noprompt","type":"boolean","char":"p","description":"do not prompt to confirm force delete","allowNo":false}},"args":[]},"analytics:asset:publisher:list":{"id":"analytics:asset:publisher:list","description":"list Tableau CRM asset publishers","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:asset:publisher:list -i assetId"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"assetid":{"name":"assetid","type":"option","char":"i","description":"Asset ID under development","required":true}},"args":[]},"analytics:autoinstall:app:create":{"id":"analytics:autoinstall:app:create","description":"creates auto-install request to create Tableau CRM app","usage":"<%= command.id %> [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:create -t templateid","$ sfdx analytics:autoinstall:app:create -n templatename"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template api name"},"noenqueue":{"name":"noenqueue","type":"boolean","description":"do not enqueue the request","hidden":true,"allowNo":false},"async":{"name":"async","type":"boolean","char":"a","description":"create app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:autoinstall:app:delete":{"id":"analytics:autoinstall:app:delete","description":"creates auto-install request to delete Tableau CRM app","usage":"<%= command.id %> -f <id> [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:delete -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"async":{"name":"async","type":"boolean","char":"a","description":"delete app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:autoinstall:app:update":{"id":"analytics:autoinstall:app:update","description":"creates auto-install request to update Tableau CRM app","usage":"<%= command.id %> -f <id> [-t <id> | -n <string>] [-a] [-w <number>] [-p <number>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:autoinstall:app:update -t templateid -f folderid","$ sfdx analytics:autoinstall:app:update -n templatename -f folderid"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"templateid":{"name":"templateid","type":"option","char":"t","description":"template ID"},"templatename":{"name":"templatename","type":"option","char":"n","description":"template api name"},"folderid":{"name":"folderid","type":"option","char":"f","description":"folder ID","required":true},"async":{"name":"async","type":"boolean","char":"a","description":"update app asynchronously","allowNo":false},"wait":{"name":"wait","type":"option","char":"w","description":"wait time in minutes for auto-install request to finish","default":10},"pollinterval":{"name":"pollinterval","type":"option","char":"p","description":"polling interval in milliseconds for checking auto-install request status","default":5000}},"args":[]},"analytics:dashboard:history:list":{"id":"analytics:dashboard:history:list","description":"list history records for Tableau CRM dashboards","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:list --dashboardid <dashboardid>"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"dashboard ID","required":true}},"args":[]},"analytics:dashboard:history:revert":{"id":"analytics:dashboard:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dashboardid":{"name":"dashboardid","type":"option","char":"i","description":"dashboard ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dashboard history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]},"analytics:dataflow:history:list":{"id":"analytics:dataflow:history:list","description":"list history records for Tableau CRM dataflows","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:history:list --dataflowid <dataflowid> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dataflowid":{"name":"dataflowid","type":"option","char":"i","description":"dataflow ID","required":true}},"args":[]},"analytics:dataflow:history:revert":{"id":"analytics:dataflow:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataflow:history:revert -i <dataflowid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"dataflowid":{"name":"dataflowid","type":"option","char":"i","description":"dataflow ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dataflow history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]},"analytics:dataset:rows:fetch":{"id":"analytics:dataset:rows:fetch","description":"fetch the rows of a Tableau CRM dataset","usage":"<%= command.id %> [-i <id> | -n <string>] [--limit <number>] [-r human|csv|json] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dataset:rows:fetch -i datasetId","$ sfdx analytics:dataset:rows:fetch -n datasetApiName -r csv"],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"datasetid":{"name":"datasetid","type":"option","char":"i","description":"dataset ID"},"datasetname":{"name":"datasetname","type":"option","char":"n","description":"dataset api name"},"limit":{"name":"limit","type":"option","description":"maximum number of rows to include"},"resultformat":{"name":"resultformat","type":"option","char":"r","description":"result format emitted to stdout","helpValue":"(human|csv|json)","options":["human","csv","json"],"default":"human"},"dryrun":{"name":"dryrun","type":"boolean","description":"Show the resulting query that would be executed, but don't run it","hidden":true,"allowNo":false}},"args":[]},"analytics:lens:history:list":{"id":"analytics:lens:history:list","description":"list history records for Tableau CRM lenses","usage":"<%= command.id %> -i <id> [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:lens:history:list --lensid <lensid> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"lensid":{"name":"lensid","type":"option","char":"i","description":"lens ID","required":true}},"args":[]},"analytics:lens:history:revert":{"id":"analytics:lens:history:revert","description":"revert to specified history record","usage":"<%= command.id %> -i <id> -y <id> [-l <string>] [-u <string>] [--apiversion <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@salesforce/analytics","pluginType":"core","aliases":[],"examples":["$ sfdx analytics:dashboard:history:revert -i <dashboardid> -y <historyid> -l <historyLabel> "],"flags":{"json":{"name":"json","type":"boolean","description":"format output as json","allowNo":false},"loglevel":{"name":"loglevel","type":"option","description":"logging level for this command invocation","required":false,"helpValue":"(trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL)","options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"targetusername":{"name":"targetusername","type":"option","char":"u","description":"username or alias for the target org; overrides default target org"},"apiversion":{"name":"apiversion","type":"option","description":"override the api version used for api requests made by this command"},"lensid":{"name":"lensid","type":"option","char":"i","description":"dashboard ID","required":true},"historyid":{"name":"historyid","type":"option","char":"y","description":"dashboard history ID","required":true},"label":{"name":"label","type":"option","char":"l","description":"label for new reverted history record"}},"args":[]}}}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/analytics",
|
|
3
3
|
"description": "Commands for working with Tableau CRM applications, assets, and services",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bugs": "https://github.com/forcedotcom/analyticsdx-vscode/issues",
|
|
7
7
|
"dependencies": {
|
|
@@ -168,7 +168,7 @@
|
|
|
168
168
|
"access": "public"
|
|
169
169
|
},
|
|
170
170
|
"sfdx": {
|
|
171
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/analytics/1.0.
|
|
172
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/analytics/1.0.
|
|
171
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/analytics/1.0.5.crt",
|
|
172
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/analytics/1.0.5.sig"
|
|
173
173
|
}
|
|
174
174
|
}
|