@salesforce/plugin-data 3.2.1 → 3.2.2
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/npm-shrinkwrap.json +1944 -6441
- package/oclif.lock +531 -2629
- package/oclif.manifest.json +162 -162
- package/package.json +5 -5
package/oclif.manifest.json
CHANGED
|
@@ -331,167 +331,6 @@
|
|
|
331
331
|
"resume:data"
|
|
332
332
|
]
|
|
333
333
|
},
|
|
334
|
-
"data:create:record": {
|
|
335
|
-
"aliases": [
|
|
336
|
-
"force:data:record:create"
|
|
337
|
-
],
|
|
338
|
-
"args": {},
|
|
339
|
-
"deprecateAliases": true,
|
|
340
|
-
"description": "You must specify a value for all required fields of the object.\n\nWhen specifying fields, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThis command inserts a record into Salesforce objects by default. Use the --use-tooling-api flag to insert into a Tooling API object.",
|
|
341
|
-
"examples": [
|
|
342
|
-
"Insert a record into the Account object of your default org; only the required Name field has a value:\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name=Acme\"",
|
|
343
|
-
"Insert an Account record with values for two fields, one value contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name='Universal Containers' Website=www.example.com\" --target-org my-scratch",
|
|
344
|
-
"Insert a record into the Tooling API object TraceFlag:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --values \"DebugLevelId=7dl170000008U36AAE StartDate=2022-12-15T00:26:04.000+0000 ExpirationDate=2022-12-15T00:56:04.000+0000 LogType=CLASS_TRACING TracedEntityId=01p17000000R6bLAAS\""
|
|
345
|
-
],
|
|
346
|
-
"flags": {
|
|
347
|
-
"json": {
|
|
348
|
-
"description": "Format output as json.",
|
|
349
|
-
"helpGroup": "GLOBAL",
|
|
350
|
-
"name": "json",
|
|
351
|
-
"allowNo": false,
|
|
352
|
-
"type": "boolean"
|
|
353
|
-
},
|
|
354
|
-
"flags-dir": {
|
|
355
|
-
"helpGroup": "GLOBAL",
|
|
356
|
-
"name": "flags-dir",
|
|
357
|
-
"summary": "Import flag values from a directory.",
|
|
358
|
-
"hasDynamicHelp": false,
|
|
359
|
-
"multiple": false,
|
|
360
|
-
"type": "option"
|
|
361
|
-
},
|
|
362
|
-
"target-org": {
|
|
363
|
-
"aliases": [
|
|
364
|
-
"targetusername",
|
|
365
|
-
"u"
|
|
366
|
-
],
|
|
367
|
-
"char": "o",
|
|
368
|
-
"deprecateAliases": true,
|
|
369
|
-
"name": "target-org",
|
|
370
|
-
"noCacheDefault": true,
|
|
371
|
-
"required": true,
|
|
372
|
-
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
373
|
-
"hasDynamicHelp": true,
|
|
374
|
-
"multiple": false,
|
|
375
|
-
"type": "option"
|
|
376
|
-
},
|
|
377
|
-
"api-version": {
|
|
378
|
-
"aliases": [
|
|
379
|
-
"apiversion"
|
|
380
|
-
],
|
|
381
|
-
"deprecateAliases": true,
|
|
382
|
-
"description": "Override the api version used for api requests made by this command",
|
|
383
|
-
"name": "api-version",
|
|
384
|
-
"hasDynamicHelp": false,
|
|
385
|
-
"multiple": false,
|
|
386
|
-
"type": "option"
|
|
387
|
-
},
|
|
388
|
-
"loglevel": {
|
|
389
|
-
"deprecated": {
|
|
390
|
-
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
391
|
-
},
|
|
392
|
-
"hidden": true,
|
|
393
|
-
"name": "loglevel",
|
|
394
|
-
"hasDynamicHelp": false,
|
|
395
|
-
"multiple": false,
|
|
396
|
-
"type": "option"
|
|
397
|
-
},
|
|
398
|
-
"sobject": {
|
|
399
|
-
"aliases": [
|
|
400
|
-
"sobjecttype"
|
|
401
|
-
],
|
|
402
|
-
"char": "s",
|
|
403
|
-
"deprecateAliases": true,
|
|
404
|
-
"name": "sobject",
|
|
405
|
-
"required": true,
|
|
406
|
-
"summary": "API name of the Salesforce or Tooling API object that you're inserting a record into.",
|
|
407
|
-
"hasDynamicHelp": false,
|
|
408
|
-
"multiple": false,
|
|
409
|
-
"type": "option"
|
|
410
|
-
},
|
|
411
|
-
"values": {
|
|
412
|
-
"char": "v",
|
|
413
|
-
"name": "values",
|
|
414
|
-
"required": true,
|
|
415
|
-
"summary": "Values for the flags in the form <fieldName>=<value>, separate multiple pairs with spaces.",
|
|
416
|
-
"hasDynamicHelp": false,
|
|
417
|
-
"multiple": false,
|
|
418
|
-
"type": "option"
|
|
419
|
-
},
|
|
420
|
-
"use-tooling-api": {
|
|
421
|
-
"aliases": [
|
|
422
|
-
"usetoolingapi"
|
|
423
|
-
],
|
|
424
|
-
"char": "t",
|
|
425
|
-
"deprecateAliases": true,
|
|
426
|
-
"name": "use-tooling-api",
|
|
427
|
-
"summary": "Use Tooling API so you can insert a record in a Tooling API object.",
|
|
428
|
-
"allowNo": false,
|
|
429
|
-
"type": "boolean"
|
|
430
|
-
},
|
|
431
|
-
"perflog": {
|
|
432
|
-
"deprecated": {
|
|
433
|
-
"version": "57"
|
|
434
|
-
},
|
|
435
|
-
"description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
|
|
436
|
-
"hidden": true,
|
|
437
|
-
"name": "perflog",
|
|
438
|
-
"summary": "Get API performance data.",
|
|
439
|
-
"allowNo": false,
|
|
440
|
-
"type": "boolean"
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
"hasDynamicHelp": true,
|
|
444
|
-
"hiddenAliases": [],
|
|
445
|
-
"id": "data:create:record",
|
|
446
|
-
"pluginAlias": "@salesforce/plugin-data",
|
|
447
|
-
"pluginName": "@salesforce/plugin-data",
|
|
448
|
-
"pluginType": "core",
|
|
449
|
-
"strict": true,
|
|
450
|
-
"summary": "Create and insert a record into a Salesforce or Tooling API object.",
|
|
451
|
-
"enableJsonFlag": true,
|
|
452
|
-
"isESM": true,
|
|
453
|
-
"relativePath": [
|
|
454
|
-
"lib",
|
|
455
|
-
"commands",
|
|
456
|
-
"data",
|
|
457
|
-
"create",
|
|
458
|
-
"record.js"
|
|
459
|
-
],
|
|
460
|
-
"aliasPermutations": [
|
|
461
|
-
"force:data:record:create",
|
|
462
|
-
"data:force:record:create",
|
|
463
|
-
"data:record:force:create",
|
|
464
|
-
"data:record:create:force",
|
|
465
|
-
"force:record:data:create",
|
|
466
|
-
"record:force:data:create",
|
|
467
|
-
"record:data:force:create",
|
|
468
|
-
"record:data:create:force",
|
|
469
|
-
"force:record:create:data",
|
|
470
|
-
"record:force:create:data",
|
|
471
|
-
"record:create:force:data",
|
|
472
|
-
"record:create:data:force",
|
|
473
|
-
"force:data:create:record",
|
|
474
|
-
"data:force:create:record",
|
|
475
|
-
"data:create:force:record",
|
|
476
|
-
"data:create:record:force",
|
|
477
|
-
"force:create:data:record",
|
|
478
|
-
"create:force:data:record",
|
|
479
|
-
"create:data:force:record",
|
|
480
|
-
"create:data:record:force",
|
|
481
|
-
"force:create:record:data",
|
|
482
|
-
"create:force:record:data",
|
|
483
|
-
"create:record:force:data",
|
|
484
|
-
"create:record:data:force"
|
|
485
|
-
],
|
|
486
|
-
"permutations": [
|
|
487
|
-
"data:create:record",
|
|
488
|
-
"create:data:record",
|
|
489
|
-
"create:record:data",
|
|
490
|
-
"data:record:create",
|
|
491
|
-
"record:data:create",
|
|
492
|
-
"record:create:data"
|
|
493
|
-
]
|
|
494
|
-
},
|
|
495
334
|
"data:delete:bulk": {
|
|
496
335
|
"aliases": [],
|
|
497
336
|
"args": {},
|
|
@@ -919,6 +758,167 @@
|
|
|
919
758
|
"resume:delete:data"
|
|
920
759
|
]
|
|
921
760
|
},
|
|
761
|
+
"data:create:record": {
|
|
762
|
+
"aliases": [
|
|
763
|
+
"force:data:record:create"
|
|
764
|
+
],
|
|
765
|
+
"args": {},
|
|
766
|
+
"deprecateAliases": true,
|
|
767
|
+
"description": "You must specify a value for all required fields of the object.\n\nWhen specifying fields, use the format <fieldName>=<value>. Enclose all field-value pairs in one set of double quotation marks, delimited by spaces. Enclose values that contain spaces in single quotes.\n\nThis command inserts a record into Salesforce objects by default. Use the --use-tooling-api flag to insert into a Tooling API object.",
|
|
768
|
+
"examples": [
|
|
769
|
+
"Insert a record into the Account object of your default org; only the required Name field has a value:\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name=Acme\"",
|
|
770
|
+
"Insert an Account record with values for two fields, one value contains a space; the command uses the org with alias \"my-scratch\":\n<%= config.bin %> <%= command.id %> --sobject Account --values \"Name='Universal Containers' Website=www.example.com\" --target-org my-scratch",
|
|
771
|
+
"Insert a record into the Tooling API object TraceFlag:\n<%= config.bin %> <%= command.id %> --use-tooling-api --sobject TraceFlag --values \"DebugLevelId=7dl170000008U36AAE StartDate=2022-12-15T00:26:04.000+0000 ExpirationDate=2022-12-15T00:56:04.000+0000 LogType=CLASS_TRACING TracedEntityId=01p17000000R6bLAAS\""
|
|
772
|
+
],
|
|
773
|
+
"flags": {
|
|
774
|
+
"json": {
|
|
775
|
+
"description": "Format output as json.",
|
|
776
|
+
"helpGroup": "GLOBAL",
|
|
777
|
+
"name": "json",
|
|
778
|
+
"allowNo": false,
|
|
779
|
+
"type": "boolean"
|
|
780
|
+
},
|
|
781
|
+
"flags-dir": {
|
|
782
|
+
"helpGroup": "GLOBAL",
|
|
783
|
+
"name": "flags-dir",
|
|
784
|
+
"summary": "Import flag values from a directory.",
|
|
785
|
+
"hasDynamicHelp": false,
|
|
786
|
+
"multiple": false,
|
|
787
|
+
"type": "option"
|
|
788
|
+
},
|
|
789
|
+
"target-org": {
|
|
790
|
+
"aliases": [
|
|
791
|
+
"targetusername",
|
|
792
|
+
"u"
|
|
793
|
+
],
|
|
794
|
+
"char": "o",
|
|
795
|
+
"deprecateAliases": true,
|
|
796
|
+
"name": "target-org",
|
|
797
|
+
"noCacheDefault": true,
|
|
798
|
+
"required": true,
|
|
799
|
+
"summary": "Username or alias of the target org. Not required if the `target-org` configuration variable is already set.",
|
|
800
|
+
"hasDynamicHelp": true,
|
|
801
|
+
"multiple": false,
|
|
802
|
+
"type": "option"
|
|
803
|
+
},
|
|
804
|
+
"api-version": {
|
|
805
|
+
"aliases": [
|
|
806
|
+
"apiversion"
|
|
807
|
+
],
|
|
808
|
+
"deprecateAliases": true,
|
|
809
|
+
"description": "Override the api version used for api requests made by this command",
|
|
810
|
+
"name": "api-version",
|
|
811
|
+
"hasDynamicHelp": false,
|
|
812
|
+
"multiple": false,
|
|
813
|
+
"type": "option"
|
|
814
|
+
},
|
|
815
|
+
"loglevel": {
|
|
816
|
+
"deprecated": {
|
|
817
|
+
"message": "The loglevel flag is no longer in use on this command. You may use it without error, but it will be ignored.\nSet the log level using the `SFDX_LOG_LEVEL` environment variable."
|
|
818
|
+
},
|
|
819
|
+
"hidden": true,
|
|
820
|
+
"name": "loglevel",
|
|
821
|
+
"hasDynamicHelp": false,
|
|
822
|
+
"multiple": false,
|
|
823
|
+
"type": "option"
|
|
824
|
+
},
|
|
825
|
+
"sobject": {
|
|
826
|
+
"aliases": [
|
|
827
|
+
"sobjecttype"
|
|
828
|
+
],
|
|
829
|
+
"char": "s",
|
|
830
|
+
"deprecateAliases": true,
|
|
831
|
+
"name": "sobject",
|
|
832
|
+
"required": true,
|
|
833
|
+
"summary": "API name of the Salesforce or Tooling API object that you're inserting a record into.",
|
|
834
|
+
"hasDynamicHelp": false,
|
|
835
|
+
"multiple": false,
|
|
836
|
+
"type": "option"
|
|
837
|
+
},
|
|
838
|
+
"values": {
|
|
839
|
+
"char": "v",
|
|
840
|
+
"name": "values",
|
|
841
|
+
"required": true,
|
|
842
|
+
"summary": "Values for the flags in the form <fieldName>=<value>, separate multiple pairs with spaces.",
|
|
843
|
+
"hasDynamicHelp": false,
|
|
844
|
+
"multiple": false,
|
|
845
|
+
"type": "option"
|
|
846
|
+
},
|
|
847
|
+
"use-tooling-api": {
|
|
848
|
+
"aliases": [
|
|
849
|
+
"usetoolingapi"
|
|
850
|
+
],
|
|
851
|
+
"char": "t",
|
|
852
|
+
"deprecateAliases": true,
|
|
853
|
+
"name": "use-tooling-api",
|
|
854
|
+
"summary": "Use Tooling API so you can insert a record in a Tooling API object.",
|
|
855
|
+
"allowNo": false,
|
|
856
|
+
"type": "boolean"
|
|
857
|
+
},
|
|
858
|
+
"perflog": {
|
|
859
|
+
"deprecated": {
|
|
860
|
+
"version": "57"
|
|
861
|
+
},
|
|
862
|
+
"description": "Gets data on API performance metrics from the server. The data is stored in $HOME/.sfdx/apiPerformanceLog.json.",
|
|
863
|
+
"hidden": true,
|
|
864
|
+
"name": "perflog",
|
|
865
|
+
"summary": "Get API performance data.",
|
|
866
|
+
"allowNo": false,
|
|
867
|
+
"type": "boolean"
|
|
868
|
+
}
|
|
869
|
+
},
|
|
870
|
+
"hasDynamicHelp": true,
|
|
871
|
+
"hiddenAliases": [],
|
|
872
|
+
"id": "data:create:record",
|
|
873
|
+
"pluginAlias": "@salesforce/plugin-data",
|
|
874
|
+
"pluginName": "@salesforce/plugin-data",
|
|
875
|
+
"pluginType": "core",
|
|
876
|
+
"strict": true,
|
|
877
|
+
"summary": "Create and insert a record into a Salesforce or Tooling API object.",
|
|
878
|
+
"enableJsonFlag": true,
|
|
879
|
+
"isESM": true,
|
|
880
|
+
"relativePath": [
|
|
881
|
+
"lib",
|
|
882
|
+
"commands",
|
|
883
|
+
"data",
|
|
884
|
+
"create",
|
|
885
|
+
"record.js"
|
|
886
|
+
],
|
|
887
|
+
"aliasPermutations": [
|
|
888
|
+
"force:data:record:create",
|
|
889
|
+
"data:force:record:create",
|
|
890
|
+
"data:record:force:create",
|
|
891
|
+
"data:record:create:force",
|
|
892
|
+
"force:record:data:create",
|
|
893
|
+
"record:force:data:create",
|
|
894
|
+
"record:data:force:create",
|
|
895
|
+
"record:data:create:force",
|
|
896
|
+
"force:record:create:data",
|
|
897
|
+
"record:force:create:data",
|
|
898
|
+
"record:create:force:data",
|
|
899
|
+
"record:create:data:force",
|
|
900
|
+
"force:data:create:record",
|
|
901
|
+
"data:force:create:record",
|
|
902
|
+
"data:create:force:record",
|
|
903
|
+
"data:create:record:force",
|
|
904
|
+
"force:create:data:record",
|
|
905
|
+
"create:force:data:record",
|
|
906
|
+
"create:data:force:record",
|
|
907
|
+
"create:data:record:force",
|
|
908
|
+
"force:create:record:data",
|
|
909
|
+
"create:force:record:data",
|
|
910
|
+
"create:record:force:data",
|
|
911
|
+
"create:record:data:force"
|
|
912
|
+
],
|
|
913
|
+
"permutations": [
|
|
914
|
+
"data:create:record",
|
|
915
|
+
"create:data:record",
|
|
916
|
+
"create:record:data",
|
|
917
|
+
"data:record:create",
|
|
918
|
+
"record:data:create",
|
|
919
|
+
"record:create:data"
|
|
920
|
+
]
|
|
921
|
+
},
|
|
922
922
|
"data:export:tree": {
|
|
923
923
|
"aliases": [
|
|
924
924
|
"force:data:tree:export"
|
|
@@ -2818,5 +2818,5 @@
|
|
|
2818
2818
|
]
|
|
2819
2819
|
}
|
|
2820
2820
|
},
|
|
2821
|
-
"version": "3.2.
|
|
2821
|
+
"version": "3.2.2"
|
|
2822
2822
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/plugin-data",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.2",
|
|
4
4
|
"description": "Plugin for salesforce data commands",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"homepage": "https://github.com/salesforcecli/plugin-data",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"@jsforce/jsforce-node": "^3.0.0-next.2",
|
|
112
112
|
"@oclif/core": "^3.26.0",
|
|
113
|
-
"@salesforce/core": "^6.7.
|
|
113
|
+
"@salesforce/core": "^6.7.3",
|
|
114
114
|
"@salesforce/kit": "^3.0.15",
|
|
115
115
|
"@salesforce/sf-plugins-core": "^8.0.0",
|
|
116
116
|
"@salesforce/ts-types": "^2.0.9",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"@salesforce/dev-scripts": "^8.4.2",
|
|
126
126
|
"@salesforce/plugin-command-reference": "^3.0.70",
|
|
127
127
|
"eslint-plugin-sf-plugin": "^1.17.4",
|
|
128
|
-
"oclif": "^4.
|
|
128
|
+
"oclif": "^4.6.1",
|
|
129
129
|
"ts-node": "^10.9.2",
|
|
130
130
|
"typescript": "^5.4.2"
|
|
131
131
|
},
|
|
@@ -247,7 +247,7 @@
|
|
|
247
247
|
"exports": "./lib/index.js",
|
|
248
248
|
"type": "module",
|
|
249
249
|
"sfdx": {
|
|
250
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.
|
|
251
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.
|
|
250
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.2.crt",
|
|
251
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-data/3.2.2.sig"
|
|
252
252
|
}
|
|
253
253
|
}
|