@salesforce/cli 1.41.0 → 1.44.0

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 CHANGED
@@ -2,6 +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.44.0](https://github.com/salesforcecli/cli/compare/v1.43.0...v1.44.0) (2022-08-31)
6
+
7
+ ## [1.43.0](https://github.com/salesforcecli/cli/compare/v1.42.0...v1.43.0) (2022-08-24)
8
+
9
+ ## [1.42.0](https://github.com/salesforcecli/cli/compare/v1.41.0...v1.42.0) (2022-08-17)
10
+
5
11
  ## [1.41.0](https://github.com/salesforcecli/cli/compare/v1.40.0...v1.41.0) (2022-08-10)
6
12
 
7
13
  ## [1.40.0](https://github.com/salesforcecli/cli/compare/v1.39.0...v1.40.0) (2022-08-03)
package/README.md CHANGED
@@ -32,7 +32,7 @@ $ npm install -g @salesforce/cli
32
32
  $ sf COMMAND
33
33
  running command...
34
34
  $ sf (--version|-v)
35
- @salesforce/cli/1.41.0 linux-x64 node-v14.20.0
35
+ @salesforce/cli/1.44.0 linux-x64 node-v14.20.0
36
36
  $ sf --help [COMMAND]
37
37
  USAGE
38
38
  $ sf COMMAND
@@ -58,6 +58,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
58
58
  - [`sf deploy functions`](#sf-deploy-functions)
59
59
  - [`sf deploy metadata`](#sf-deploy-metadata)
60
60
  - [`sf deploy metadata cancel`](#sf-deploy-metadata-cancel)
61
+ - [`sf deploy metadata preview`](#sf-deploy-metadata-preview)
61
62
  - [`sf deploy metadata quick`](#sf-deploy-metadata-quick)
62
63
  - [`sf deploy metadata report`](#sf-deploy-metadata-report)
63
64
  - [`sf deploy metadata resume`](#sf-deploy-metadata-resume)
@@ -84,6 +85,10 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
84
85
  - [`sf env var set`](#sf-env-var-set)
85
86
  - [`sf env var unset`](#sf-env-var-unset)
86
87
  - [`sf generate function`](#sf-generate-function)
88
+ - [`sf generate metadata field`](#sf-generate-metadata-field)
89
+ - [`sf generate metadata platformevent`](#sf-generate-metadata-platformevent)
90
+ - [`sf generate metadata sobject`](#sf-generate-metadata-sobject)
91
+ - [`sf generate metadata tab`](#sf-generate-metadata-tab)
87
92
  - [`sf generate project`](#sf-generate-project)
88
93
  - [`sf help [COMMAND]`](#sf-help-command)
89
94
  - [`sf info:releasenotes:display [-v <string>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`](#sf-inforeleasenotesdisplay--v-string---json---loglevel-tracedebuginfowarnerrorfataltracedebuginfowarnerrorfatal)
@@ -106,6 +111,7 @@ See [architecture page](ARCHITECTURE.md) for diagrams of the Salesforce CLI.
106
111
  - [`sf plugins:uninstall PLUGIN...`](#sf-pluginsuninstall-plugin-2)
107
112
  - [`sf plugins update`](#sf-plugins-update)
108
113
  - [`sf retrieve metadata`](#sf-retrieve-metadata)
114
+ - [`sf retrieve metadata preview`](#sf-retrieve-metadata-preview)
109
115
  - [`sf run function`](#sf-run-function)
110
116
  - [`sf run function start`](#sf-run-function-start)
111
117
  - [`sf run function start container`](#sf-run-function-start-container)
@@ -346,7 +352,7 @@ EXAMPLES
346
352
  $ sf deploy --interactive
347
353
  ```
348
354
 
349
- _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.5.2/src/commands/deploy.ts)_
355
+ _See code: [@salesforce/plugin-deploy-retrieve](https://github.com/salesforcecli/plugin-deploy-retrieve/blob/v1.5.5/src/commands/deploy.ts)_
350
356
 
351
357
  ## `sf deploy functions`
352
358
 
@@ -407,8 +413,7 @@ FLAGS
407
413
  -o, --target-org=<value> Login username or alias for the target org.
408
414
  -r, --ignore-errors Ignore any errors and don’t roll back deployment.
409
415
  -t, --tests=<value>... Apex tests to run when --test-level is RunSpecifiedTests.
410
- -w, --wait=<minutes> [default: [object Object]] Number of minutes to wait for command to complete and display
411
- results.
416
+ -w, --wait=<minutes> Number of minutes to wait for command to complete and display results.
412
417
  -x, --manifest=<value> Full file path for manifest (package.xml) of components to deploy.
413
418
  --async Run the command asynchronously.
414
419
  --concise Show concise output of the deploy result.
@@ -476,8 +481,8 @@ EXAMPLES
476
481
  FLAG DESCRIPTIONS
477
482
  -a, --api-version=<value> Target API version for the deploy.
478
483
 
479
- Use this flag to override the default API version, which is the latest version supported the CLI, with the API
480
- version of your package.xml file.
484
+ Use this flag to override the default API version with the API version of your package.xml file. The default API
485
+ version is the latest version supported by the CLI.
481
486
 
482
487
  -c, --ignore-conflicts Ignore conflicts and deploy local files, even if they overwrite changes in the org.
483
488
 
@@ -632,6 +637,83 @@ FLAG DESCRIPTIONS
632
637
  deploy metadata report".
633
638
  ```
634
639
 
640
+ ## `sf deploy metadata preview`
641
+
642
+ Preview a deployment to see what will deploy to the org, the potential conflicts, and the ignored files.
643
+
644
+ ```
645
+ USAGE
646
+ $ sf deploy metadata preview [--json] [-c] [-x <value> | -d <value> | -m <value>] [-o <value>]
647
+
648
+ FLAGS
649
+ -c, --ignore-conflicts Ignore conflicts and deploy local files, even if they overwrite changes in the org.
650
+ -d, --source-dir=<value>... Path to the local source files to preview.
651
+ -m, --metadata=<value>... Metadata component names to preview.
652
+ -o, --target-org=<value> Login username or alias for the target org.
653
+ -x, --manifest=<value> Full file path for manifest (package.xml) of components to preview.
654
+
655
+ GLOBAL FLAGS
656
+ --json Format output as json.
657
+
658
+ DESCRIPTION
659
+ Preview a deployment to see what will deploy to the org, the potential conflicts, and the ignored files.
660
+
661
+ You must run this command from within a project.
662
+
663
+ The command outputs a table that describes what will happen if you run the "sf deploy metadata" command. The table
664
+ lists the metadata components that will be deployed and deleted. The table also lists the current conflicts between
665
+ files in your local project and components in the org. Finally, the table lists the files that won't be deployed
666
+ because they're included in your .forceignore file.
667
+
668
+ If your org allows source tracking, then this command considers conflicts between the org and local. Some orgs, such
669
+ as production orgs, never allow source tracking. Use the "--no-track-source" flag when you create a scratch or sandbox
670
+ org to disable source tracking.
671
+
672
+ To preview the deployment of multiple metadata components, either set multiple --metadata <name> flags or a single
673
+ --metadata flag with multiple names separated by spaces. Enclose names that contain spaces in one set of double
674
+ quotes. The same syntax applies to --manifest and --source-dir.
675
+
676
+ EXAMPLES
677
+ NOTE: The commands to preview a deployment and actually deploy it use similar flags. We provide a few preview examples here, but see the help for "sf deploy metadata" for more examples that you can adapt for previewing.
678
+
679
+ Preview the deployment of source files in a directory, such as force-app:
680
+
681
+ $ sf deploy metadata preview --source-dir force-app
682
+
683
+ Preview the deployment of all Apex classes:
684
+
685
+ $ sf deploy metadata preview --metadata ApexClass
686
+
687
+ Preview deployment of a specific Apex class:
688
+
689
+ $ sf deploy metadata preview --metadata ApexClass:MyApexClass
690
+
691
+ Preview deployment of all components listed in a manifest:
692
+
693
+ $ sf deploy metadata preview --manifest path/to/package.xml
694
+
695
+ FLAG DESCRIPTIONS
696
+ -c, --ignore-conflicts Ignore conflicts and deploy local files, even if they overwrite changes in the org.
697
+
698
+ This flag applies only to orgs that allow source tracking. It has no effect on orgs that don't allow it, such as
699
+ production orgs.
700
+
701
+ -d, --source-dir=<value>... Path to the local source files to preview.
702
+
703
+ The supplied path can be to a single file (in which case the operation is applied to only one file) or to a folder
704
+ (in which case the operation is applied to all metadata types in the directory and its subdirectories).
705
+
706
+ If you specify this flag, don’t specify --metadata or --manifest.
707
+
708
+ -o, --target-org=<value> Login username or alias for the target org.
709
+
710
+ Overrides your default org.
711
+
712
+ -x, --manifest=<value> Full file path for manifest (package.xml) of components to preview.
713
+
714
+ All child components are included. If you specify this flag, don’t specify --metadata or --source-dir.
715
+ ```
716
+
635
717
  ## `sf deploy metadata quick`
636
718
 
637
719
  Quickly deploy a validated deployment to an org.
@@ -644,8 +726,7 @@ FLAGS
644
726
  -i, --job-id=<value> Job ID of the deployment you want to quick deploy.
645
727
  -o, --target-org=<value> Login username or alias for the target org.
646
728
  -r, --use-most-recent Use the job ID of the most recently validated deployment.
647
- -w, --wait=<minutes> [default: [object Object]] Number of minutes to wait for the command to complete and display
648
- results.
729
+ -w, --wait=<minutes> Number of minutes to wait for the command to complete and display results.
649
730
  --async Run the command asynchronously.
650
731
  --concise Show concise output of the deploy result.
651
732
  --verbose Show verbose output of the deploy result.
@@ -855,8 +936,7 @@ FLAGS
855
936
  -m, --metadata=<value>... Metadata component names to validate for deployment.
856
937
  -o, --target-org=<value> Login username or alias for the target org.
857
938
  -t, --tests=<value>... Apex tests to run when --test-level is RunSpecifiedTests.
858
- -w, --wait=<minutes> [default: [object Object]] Number of minutes to wait for the command to complete and
859
- display results.
939
+ -w, --wait=<minutes> Number of minutes to wait for the command to complete and display results.
860
940
  -x, --manifest=<value> Full file path for manifest (package.xml) of components to validate for deployment.
861
941
  --async Run the command asynchronously.
862
942
  --concise Show concise output of the validation result.
@@ -907,8 +987,8 @@ EXAMPLES
907
987
  FLAG DESCRIPTIONS
908
988
  -a, --api-version=<value> Target API version for the validation.
909
989
 
910
- Use this flag to override the default API version, which is the latest version supported the CLI, with the API
911
- version in your package.xml file.
990
+ Use this flag to override the default API version with the API version of your package.xml file. The default API
991
+ version is the latest version supported by the CLI.
912
992
 
913
993
  -d, --source-dir=<value>... Path to the local source files to validate for deployment.
914
994
 
@@ -1835,6 +1915,167 @@ EXAMPLES
1835
1915
  $ sf generate function --function-name myfunction --language javascript
1836
1916
  ```
1837
1917
 
1918
+ ## `sf generate metadata field`
1919
+
1920
+ Generate metadata source files for a new custom field on a specified object.
1921
+
1922
+ ```
1923
+ USAGE
1924
+ $ sf generate metadata field -l <value> [-o <value>]
1925
+
1926
+ FLAGS
1927
+ -l, --label=<value> (required) The field's label.
1928
+ -o, --object=<value> The directory that contains the object's source files.
1929
+
1930
+ DESCRIPTION
1931
+ Generate metadata source files for a new custom field on a specified object.
1932
+
1933
+ This command is interactive and must be run in a Salesforce DX project directory. You're required to specify the
1934
+ field's label with the "--label" flag. The command uses this label to provide intelligent suggestions for other field
1935
+ properties, such as its API name.
1936
+
1937
+ You can generate a custom field on either a standard object, such as Account, or a custom object. In both cases, the
1938
+ source files for the object must already exist in your local project before you run this command. If you create a
1939
+ relationship field, the source files for the parent object must also exist in your local directory. Use the command
1940
+ "sf metadata retrieve -m CustomObject:<object>" to retrieve source files for both standard and custom objects from
1941
+ your org. To create a custom object, run the "sf generate metadata sobject" command or use the Object Manager UI in
1942
+ your Salesforce org.
1943
+
1944
+ EXAMPLES
1945
+ Create a field with the specified label; the command prompts you for the object:
1946
+
1947
+ $ sf generate metadata field --label "My Field"
1948
+
1949
+ Specify the local path to the object's folder:
1950
+
1951
+ $ sf generate metadata field --label "My Field" --object force-app/main/default/objects/MyObject__c
1952
+
1953
+ FLAG DESCRIPTIONS
1954
+ -o, --object=<value> The directory that contains the object's source files.
1955
+
1956
+ The object source files in your local project are grouped in a directoy with the same name as the object. Custom
1957
+ object names always end in "__c". An example of the object directory for the Account standard object is
1958
+ "force-app/main/default/objects/Account" An example custom object directory is
1959
+ "force-app/main/default/objects/MyObject__c"
1960
+
1961
+ If you don't specify this flag, the command prompts you to choose from your local objects.
1962
+ ```
1963
+
1964
+ ## `sf generate metadata platformevent`
1965
+
1966
+ Generate metadata source files for a new platform event.
1967
+
1968
+ ```
1969
+ USAGE
1970
+ $ sf generate metadata platformevent -l <value>
1971
+
1972
+ FLAGS
1973
+ -l, --label=<value> (required) The platform event's label.
1974
+
1975
+ DESCRIPTION
1976
+ Generate metadata source files for a new platform event.
1977
+
1978
+ This command is interactive and must be run in a Salesforce DX project directory. You're required to specify the
1979
+ event's label with the "--label" flag. The command uses this label to provide intelligent suggestions for other event
1980
+ properties, such as its API name.
1981
+
1982
+ EXAMPLES
1983
+ Create a platform event with the specified label:
1984
+
1985
+ $ sf generate metadata platformevent --label "My Platform Event"
1986
+ ```
1987
+
1988
+ ## `sf generate metadata sobject`
1989
+
1990
+ Generate metadata source files for a new custom object.
1991
+
1992
+ ```
1993
+ USAGE
1994
+ $ sf generate metadata sobject -l <value> [-f]
1995
+
1996
+ FLAGS
1997
+ -f, --use-default-features Enable all optional features without prompting.
1998
+ -l, --label=<value> (required) The custom object's label.
1999
+
2000
+ DESCRIPTION
2001
+ Generate metadata source files for a new custom object.
2002
+
2003
+ This command is interactive and must be run in a Salesforce DX project directory. You're required to specify the
2004
+ object's label with the "--label" flag. The command uses this label to provide intelligent suggestions for other
2005
+ object properties, such as its API name and plural label.
2006
+
2007
+ All Salesforce objects are required to have a Name field, so this command also prompts you for the label and type of
2008
+ the Name field. Run the "sf metadata generate field" command to create additional fields for the object.
2009
+
2010
+ To reduce the number of prompts, use the "--use-default-features" flag to automatically enable some features, such as
2011
+ reporting and search on the object.
2012
+
2013
+ EXAMPLES
2014
+ Create a custom object with the specified label and be prompted for additional information:
2015
+
2016
+ $ sf generate metadata sobject --label "My Object"
2017
+
2018
+ Create a custom object and enable optional features without prompting:
2019
+
2020
+ $ sf generate metadata sobject --label "My Object" --use-default-features
2021
+
2022
+ FLAG DESCRIPTIONS
2023
+ -f, --use-default-features Enable all optional features without prompting.
2024
+
2025
+ Enables these features:
2026
+
2027
+ * Search: Allows users to find the custom object's records when they search, including SOSL.
2028
+ * Feeds: Enables feed tracking.
2029
+ * Reports: Allows reporting of the data in the custom object records.
2030
+ * History: Enables object history tracking.
2031
+ * Activities: Allows users to associate tasks and scheduled calendar events related to the custom object records.
2032
+ * Bulk API: With Sharing and Streaming API, classifies the custom object as an Enterprise Application object.
2033
+ * Sharing: With Bulk API and Streaming API, classifies the custom object as an Enterprise Application object.
2034
+ * Streaming API: With Bulk API and Sharing, classifies the custom object as an Enterprise Application object.
2035
+ ```
2036
+
2037
+ ## `sf generate metadata tab`
2038
+
2039
+ Generate the metadata source files for a new custom tab on a custom object.
2040
+
2041
+ ```
2042
+ USAGE
2043
+ $ sf generate metadata tab -o <value> -d <value> -i <value> [--json]
2044
+
2045
+ FLAGS
2046
+ -d, --directory=<value> (required) Path to a "tabs" directory that will contain the source files for your new tab.
2047
+ -i, --icon=<value> (required) [default: 1] Number from 1 to 100 that specifies the color scheme and icon for the
2048
+ custom tab.
2049
+ -o, --object=<value> (required) API name of the custom object you're generating a tab for.
2050
+
2051
+ GLOBAL FLAGS
2052
+ --json Format output as json.
2053
+
2054
+ DESCRIPTION
2055
+ Generate the metadata source files for a new custom tab on a custom object.
2056
+
2057
+ Custom tabs let you display custom object data or other web content in Salesforce. Custom tabs appear in Salesforce as
2058
+ an item in the app’s navigation bar and in the App Launcher.
2059
+
2060
+ This command must be run in a Salesforce DX project directory. You must pass all required information to it with the
2061
+ required flags. The source files for the custom object for which you're generating a tab don't need to exist in your
2062
+ local project.
2063
+
2064
+ EXAMPLES
2065
+ Create a tab on the MyObject__c custom object:
2066
+
2067
+ $ sf generate metadata tab --object MyObject__c --icon 54 --directory force-app/main/default/tabs
2068
+
2069
+ FLAG DESCRIPTIONS
2070
+ -i, --icon=<value> Number from 1 to 100 that specifies the color scheme and icon for the custom tab.
2071
+
2072
+ See https://lightningdesignsystem.com/icons/\#custom for the available icons.
2073
+
2074
+ -o, --object=<value> API name of the custom object you're generating a tab for.
2075
+
2076
+ The API name for a custom object always ends in "__c", such as "MyObject__c".
2077
+ ```
2078
+
1838
2079
  ## `sf generate project`
1839
2080
 
1840
2081
  Generate a Salesforce DX project.
@@ -2617,8 +2858,8 @@ FLAGS
2617
2858
  -m, --metadata=<value>... Metadata component names to retrieve.
2618
2859
  -n, --package-name=<value>... Package names to retrieve.
2619
2860
  -o, --target-org=<value> Login username or alias for the target org.
2620
- -w, --wait=<value> [default: [object Object]] Number of minutes to wait for the command to complete and
2621
- display results to the terminal window.
2861
+ -w, --wait=<value> Number of minutes to wait for the command to complete and display results to the
2862
+ terminal window.
2622
2863
  -x, --manifest=<value> File path for the manifest (package.xml) that specifies the components to retrieve.
2623
2864
 
2624
2865
  GLOBAL FLAGS
@@ -2716,6 +2957,58 @@ ENVIRONMENT VARIABLES
2716
2957
  SF_USE_PROGRESS_BAR Set to false to disable the progress bar when running the metadata deploy command.
2717
2958
  ```
2718
2959
 
2960
+ ## `sf retrieve metadata preview`
2961
+
2962
+ Preview a retrieval to see what will be retrieved from the org, the potential conflicts, and the ignored files.
2963
+
2964
+ ```
2965
+ USAGE
2966
+ $ sf retrieve metadata preview [--json] [-c] [-o <value>]
2967
+
2968
+ FLAGS
2969
+ -c, --ignore-conflicts Ignore conflicts and preview the retrieve of remote components, even if they will overwrite
2970
+ local changes.
2971
+ -o, --target-org=<value> Login username or alias for the target org.
2972
+
2973
+ GLOBAL FLAGS
2974
+ --json Format output as json.
2975
+
2976
+ DESCRIPTION
2977
+ Preview a retrieval to see what will be retrieved from the org, the potential conflicts, and the ignored files.
2978
+
2979
+ You must run this command from within a project.
2980
+
2981
+ The command outputs a table that describes what will happen if you run the "sf retrieve metadata" command. The table
2982
+ lists the metadata components that will be retrieved and deleted. The table also lists the current conflicts between
2983
+ files in your local project and components in the org. Finally, the table lists the files that won't be retrieved
2984
+ because they're included in your .forceignore file.
2985
+
2986
+ If your org allows source tracking, then this command considers conflicts between the org and local. Some orgs, such
2987
+ as production orgs, never allow source tracking. Use the "--no-track-source" flag when you create a scratch or sandbox
2988
+ org to disable source tracking.
2989
+
2990
+ EXAMPLES
2991
+ Preview the retrieve of all changes from the org:
2992
+
2993
+ $ sf retrieve metadata preview
2994
+
2995
+ Preview the retrieve when ignoring any conflicts:
2996
+
2997
+ $ sf retrieve metadata preview --ignore-conflicts
2998
+
2999
+ FLAG DESCRIPTIONS
3000
+ -c, --ignore-conflicts
3001
+
3002
+ Ignore conflicts and preview the retrieve of remote components, even if they will overwrite local changes.
3003
+
3004
+ This flag applies only to orgs that allow source tracking. It has no effect on orgs that don't allow it, such as
3005
+ production orgs.
3006
+
3007
+ -o, --target-org=<value> Login username or alias for the target org.
3008
+
3009
+ Overrides your default org.
3010
+ ```
3011
+
2719
3012
  ## `sf run function`
2720
3013
 
2721
3014
  Send a cloudevent to a function.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
- "version": "1.41.0",
3
+ "version": "1.44.0",
4
4
  "lockfileVersion": 2,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/cli",
9
- "version": "1.41.0",
9
+ "version": "1.44.0",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
12
  "@oclif/core": "^1.13.1",
@@ -17,15 +17,16 @@
17
17
  "@oclif/plugin-search": "0.0.1",
18
18
  "@oclif/plugin-update": "3.0.0",
19
19
  "@oclif/plugin-version": "1.1.1",
20
- "@salesforce/core": "^3.26.1",
21
- "@salesforce/sf-plugins-core": "^1.13.1",
20
+ "@salesforce/core": "^3.26.2",
21
+ "@salesforce/sf-plugins-core": "^1.13.2",
22
22
  "@sf/config": "npm:@salesforce/plugin-config@2.3.2",
23
- "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@1.5.2",
23
+ "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@1.5.5",
24
24
  "@sf/env": "npm:@salesforce/plugin-env@1.5.0",
25
25
  "@sf/functions": "npm:@salesforce/plugin-functions@1.13.5",
26
26
  "@sf/gen": "npm:@salesforce/plugin-generate@1.0.14",
27
27
  "@sf/info": "npm:@salesforce/plugin-info@2.0.1",
28
28
  "@sf/login": "npm:@salesforce/plugin-login@1.1.1",
29
+ "@sf/sobject": "npm:@salesforce/plugin-sobject@0.0.8",
29
30
  "@sf/telemetry": "npm:@salesforce/plugin-telemetry@2.0.0",
30
31
  "@sf/trust": "npm:@salesforce/plugin-trust@2.0.2",
31
32
  "semver": "^7.3.7",
@@ -42,7 +43,7 @@
42
43
  "@salesforce/prettier-config": "^0.0.2",
43
44
  "@typescript-eslint/eslint-plugin": "^4.33.0",
44
45
  "@typescript-eslint/parser": "^4.33.0",
45
- "aws-sdk": "^2.1147.0",
46
+ "aws-sdk": "^2.1204.0",
46
47
  "chai": "^4.3.6",
47
48
  "eslint": "^7.32.0",
48
49
  "eslint-config-oclif": "^3.1",
@@ -2820,41 +2821,6 @@
2820
2821
  "node": ">=14.0.0"
2821
2822
  }
2822
2823
  },
2823
- "node_modules/@oclif/plugin-search/node_modules/inquirer": {
2824
- "version": "8.2.4",
2825
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
2826
- "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
2827
- "license": "MIT",
2828
- "dependencies": {
2829
- "ansi-escapes": "^4.2.1",
2830
- "chalk": "^4.1.1",
2831
- "cli-cursor": "^3.1.0",
2832
- "cli-width": "^3.0.0",
2833
- "external-editor": "^3.0.3",
2834
- "figures": "^3.0.0",
2835
- "lodash": "^4.17.21",
2836
- "mute-stream": "0.0.8",
2837
- "ora": "^5.4.1",
2838
- "run-async": "^2.4.0",
2839
- "rxjs": "^7.5.5",
2840
- "string-width": "^4.1.0",
2841
- "strip-ansi": "^6.0.0",
2842
- "through": "^2.3.6",
2843
- "wrap-ansi": "^7.0.0"
2844
- },
2845
- "engines": {
2846
- "node": ">=12.0.0"
2847
- }
2848
- },
2849
- "node_modules/@oclif/plugin-search/node_modules/inquirer/node_modules/rxjs": {
2850
- "version": "7.5.5",
2851
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
2852
- "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
2853
- "license": "Apache-2.0",
2854
- "dependencies": {
2855
- "tslib": "^2.1.0"
2856
- }
2857
- },
2858
2824
  "node_modules/@oclif/plugin-search/node_modules/rxjs": {
2859
2825
  "version": "7.5.6",
2860
2826
  "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
@@ -3711,9 +3677,9 @@
3711
3677
  }
3712
3678
  },
3713
3679
  "node_modules/@salesforce/core": {
3714
- "version": "3.26.1",
3715
- "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-3.26.1.tgz",
3716
- "integrity": "sha512-B2mhsiiAu9hkLAwkDu+Y5ArAtRJIx2oeqP8ofupLlSH4tohzcUmfKgCDZEk9iLC1sc5kmD1S/4DlS1QZhnNs8A==",
3680
+ "version": "3.26.2",
3681
+ "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-3.26.2.tgz",
3682
+ "integrity": "sha512-GDrho8jbh1UDjcsYRRUzhNv4KUsMcBtux/yEqB2ycvHXhjVnrNkJcl99KESiU1eZMl2DGZEE1IO8yxnb2rSvgg==",
3717
3683
  "license": "BSD-3-Clause",
3718
3684
  "dependencies": {
3719
3685
  "@salesforce/bunyan": "^2.0.0",
@@ -4013,9 +3979,9 @@
4013
3979
  }
4014
3980
  },
4015
3981
  "node_modules/@salesforce/kit": {
4016
- "version": "1.5.45",
4017
- "resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-1.5.45.tgz",
4018
- "integrity": "sha512-e7iER8s/f8N52rSRZ7uJXSKnOTDTH9NHfGnmkFXPuz/1Waaeqso+CxqmqCh8aVe//frj11NGkazR0rJPuF/bfA==",
3982
+ "version": "1.6.0",
3983
+ "resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-1.6.0.tgz",
3984
+ "integrity": "sha512-8VZvWYl61jBaUIqo+pNoDvVqaZKPmqauvkhJHvcr/+D7+EXsjne9PDMggy5mNQJvonD6iegR/h3BqcWrppSaeQ==",
4019
3985
  "license": "BSD-3-Clause",
4020
3986
  "dependencies": {
4021
3987
  "@salesforce/ts-types": "^1.5.20",
@@ -8224,12 +8190,12 @@
8224
8190
  "license": "ISC"
8225
8191
  },
8226
8192
  "node_modules/@salesforce/sf-plugins-core": {
8227
- "version": "1.13.1",
8228
- "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-1.13.1.tgz",
8229
- "integrity": "sha512-K8pugaXSG+m3ofcUFuPZK66Rxwt13m0CmzO714+9KCyWqYEu99SxD7RX8cbplRwhsF9AoYmlncGGdqrZBRsPPg==",
8193
+ "version": "1.13.2",
8194
+ "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-1.13.2.tgz",
8195
+ "integrity": "sha512-7uCLtHeWOwzbVTG6fuO/luEKC5wgZpBb/1OZ5nMWwMNb8hUAUfHOaBcJmYu5f8T0/Dbnre/NVG6QcReVYaar/w==",
8230
8196
  "license": "BSD-3-Clause",
8231
8197
  "dependencies": {
8232
- "@oclif/core": "^1.13.0",
8198
+ "@oclif/core": "^1.13.9",
8233
8199
  "@salesforce/core": "^3.25.0",
8234
8200
  "@salesforce/kit": "^1.5.44",
8235
8201
  "@salesforce/ts-types": "^1.5.20",
@@ -8238,36 +8204,54 @@
8238
8204
  }
8239
8205
  },
8240
8206
  "node_modules/@salesforce/source-deploy-retrieve": {
8241
- "version": "6.2.0",
8242
- "resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-6.2.0.tgz",
8243
- "integrity": "sha512-KtklCoPBW0hrIFxfXrB7MI8wVffQu0lE69HRmUPJW7RtLK5hdk8YEyvP0yzvDVuiYrJN3+RS7uKkM2zDc9VbPA==",
8207
+ "version": "6.3.1",
8208
+ "resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-6.3.1.tgz",
8209
+ "integrity": "sha512-f0oBqBJ/R57cf5CqO7/LclGL3+fEfk2zlWbzhh3wDdgTP6M24rE0Nwc5TQKXZZr150l6ScjcnhYdLbTrkYxJvA==",
8244
8210
  "license": "BSD-3-Clause",
8245
8211
  "dependencies": {
8246
- "@salesforce/core": "^3.21.1",
8247
- "@salesforce/kit": "^1.5.41",
8212
+ "@salesforce/core": "^3.26.1",
8213
+ "@salesforce/kit": "^1.5.45",
8248
8214
  "@salesforce/ts-types": "^1.5.20",
8249
- "archiver": "^5.3.0",
8250
- "fast-xml-parser": "^3.17.4",
8215
+ "@xmldom/xmldom": "^0.8.2",
8216
+ "archiver": "^5.3.1",
8217
+ "fast-xml-parser": "^3.21.1",
8251
8218
  "got": "^11.8.5",
8252
- "graceful-fs": "^4.2.8",
8253
- "ignore": "^5.1.8",
8219
+ "graceful-fs": "^4.2.10",
8220
+ "ignore": "^5.2.0",
8254
8221
  "mime": "2.6.0",
8255
- "unzipper": "0.10.11",
8256
- "xmldom-sfdx-encoding": "^0.1.29"
8222
+ "proxy-agent": "^5.0.0",
8223
+ "proxy-from-env": "^1.1.0",
8224
+ "unzipper": "0.10.11"
8257
8225
  },
8258
8226
  "engines": {
8259
8227
  "node": ">=14.0.0"
8260
8228
  }
8261
8229
  },
8230
+ "node_modules/@salesforce/source-deploy-retrieve/node_modules/fast-xml-parser": {
8231
+ "version": "3.21.1",
8232
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
8233
+ "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
8234
+ "license": "MIT",
8235
+ "dependencies": {
8236
+ "strnum": "^1.0.4"
8237
+ },
8238
+ "bin": {
8239
+ "xml2js": "cli.js"
8240
+ },
8241
+ "funding": {
8242
+ "type": "paypal",
8243
+ "url": "https://paypal.me/naturalintelligence"
8244
+ }
8245
+ },
8262
8246
  "node_modules/@salesforce/source-tracking": {
8263
- "version": "2.2.0",
8264
- "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-2.2.0.tgz",
8265
- "integrity": "sha512-hoQgKSY3/tdjAxlgOVevTAEKAzlAgNZhYcllpsjbfrIBMhStLAeMnkUAWCgasP/4cj1IKLxLRb/5bLPA9C6e2Q==",
8247
+ "version": "2.2.2",
8248
+ "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-2.2.2.tgz",
8249
+ "integrity": "sha512-1Znfjh8MPqfll/zRKD3kQxPzSWklDg1dIPkOqyOBwdh5X4LZvgvMY9oyF7m86u9taeASVG965swUM2TJiYMVsQ==",
8266
8250
  "license": "BSD-3-Clause",
8267
8251
  "dependencies": {
8268
- "@salesforce/core": "^3.22.1",
8269
- "@salesforce/kit": "^1.5.42",
8270
- "@salesforce/source-deploy-retrieve": "^6.1.0",
8252
+ "@salesforce/core": "^3.26.1",
8253
+ "@salesforce/kit": "^1.5.45",
8254
+ "@salesforce/source-deploy-retrieve": "^6.2.7",
8271
8255
  "graceful-fs": "^4.2.9",
8272
8256
  "isomorphic-git": "1.17.0",
8273
8257
  "ts-retry-promise": "^0.6.0"
@@ -8509,17 +8493,17 @@
8509
8493
  },
8510
8494
  "node_modules/@sf/deploy-retrieve": {
8511
8495
  "name": "@salesforce/plugin-deploy-retrieve",
8512
- "version": "1.5.2",
8513
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.5.2.tgz",
8514
- "integrity": "sha512-P2rAfDo8jxbBvAavJVR1P4BZnW8P53C415TEXfu+CV5W6WAkiWlFYrJovLQWW5PT02crLO0FG/KrrTpvG26PyQ==",
8496
+ "version": "1.5.5",
8497
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.5.5.tgz",
8498
+ "integrity": "sha512-OyzQgRK2dd4iXvanE8acbhg3L2D4ZtH85JV8O9gkSlTtnstxRcR7EYdHBfiYKqrKmjtBS/bJItgIXL1ZvVQW+Q==",
8515
8499
  "license": "BSD-3-Clause",
8516
8500
  "dependencies": {
8517
- "@oclif/core": "^1.9.0",
8518
- "@salesforce/core": "^3.22.1",
8519
- "@salesforce/kit": "^1.5.41",
8520
- "@salesforce/sf-plugins-core": "^1.13.0",
8521
- "@salesforce/source-deploy-retrieve": "^6.1.0",
8522
- "@salesforce/source-tracking": "^2.2.0",
8501
+ "@oclif/core": "^1.15.0",
8502
+ "@salesforce/core": "^3.26.1",
8503
+ "@salesforce/kit": "^1.5.45",
8504
+ "@salesforce/sf-plugins-core": "1.14.0",
8505
+ "@salesforce/source-deploy-retrieve": "^6.2.9",
8506
+ "@salesforce/source-tracking": "^2.2.2",
8523
8507
  "chalk": "^4.1.2",
8524
8508
  "fs-extra": "^10.0.1",
8525
8509
  "shelljs": "^0.8.5",
@@ -8869,6 +8853,28 @@
8869
8853
  "node": ">=12.0.0"
8870
8854
  }
8871
8855
  },
8856
+ "node_modules/@sf/sobject": {
8857
+ "name": "@salesforce/plugin-sobject",
8858
+ "version": "0.0.8",
8859
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-0.0.8.tgz",
8860
+ "integrity": "sha512-mR/5qiOJDP+oM+xppZ/Sc2LH6OOtTuySNgqH8vU5QUCf552ex/W3nTPHau69QG66HvZ4XpN/NbWT4DW+6H7omg==",
8861
+ "license": "BSD-3-Clause",
8862
+ "dependencies": {
8863
+ "@oclif/core": "^1.14.1",
8864
+ "@salesforce/core": "^3.26.2",
8865
+ "@salesforce/kit": "^1.6.0",
8866
+ "@salesforce/sf-plugins-core": "^1.13.2",
8867
+ "change-case": "^4.1.2",
8868
+ "fast-glob": "^3.2.11",
8869
+ "fast-xml-parser": "^4.0.9",
8870
+ "inquirer": "^8.2.4",
8871
+ "js2xmlparser": "^4.0.2",
8872
+ "tslib": "^2"
8873
+ },
8874
+ "engines": {
8875
+ "node": ">=14.0.0"
8876
+ }
8877
+ },
8872
8878
  "node_modules/@sf/telemetry": {
8873
8879
  "name": "@salesforce/plugin-telemetry",
8874
8880
  "version": "2.0.0",
@@ -9626,6 +9632,15 @@
9626
9632
  "dev": true,
9627
9633
  "license": "ISC"
9628
9634
  },
9635
+ "node_modules/@xmldom/xmldom": {
9636
+ "version": "0.8.2",
9637
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
9638
+ "integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ==",
9639
+ "license": "MIT",
9640
+ "engines": {
9641
+ "node": ">=10.0.0"
9642
+ }
9643
+ },
9629
9644
  "node_modules/@yarnpkg/lockfile": {
9630
9645
  "version": "1.1.0",
9631
9646
  "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
@@ -9874,13 +9889,13 @@
9874
9889
  "license": "ISC"
9875
9890
  },
9876
9891
  "node_modules/archiver": {
9877
- "version": "5.3.0",
9878
- "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.0.tgz",
9879
- "integrity": "sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg==",
9892
+ "version": "5.3.1",
9893
+ "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz",
9894
+ "integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==",
9880
9895
  "license": "MIT",
9881
9896
  "dependencies": {
9882
9897
  "archiver-utils": "^2.1.0",
9883
- "async": "^3.2.0",
9898
+ "async": "^3.2.3",
9884
9899
  "buffer-crc32": "^0.2.1",
9885
9900
  "readable-stream": "^3.6.0",
9886
9901
  "readdir-glob": "^1.0.0",
@@ -10164,9 +10179,9 @@
10164
10179
  }
10165
10180
  },
10166
10181
  "node_modules/async": {
10167
- "version": "3.2.3",
10168
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
10169
- "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g==",
10182
+ "version": "3.2.4",
10183
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
10184
+ "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==",
10170
10185
  "license": "MIT"
10171
10186
  },
10172
10187
  "node_modules/async-hook-jl": {
@@ -10238,9 +10253,9 @@
10238
10253
  }
10239
10254
  },
10240
10255
  "node_modules/aws-sdk": {
10241
- "version": "2.1185.0",
10242
- "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1185.0.tgz",
10243
- "integrity": "sha512-viFlYC6RAKOqBRM4gIB4rE80KMFNVvEkQpNmpd3PqCOemGPETDxCVHS0oqZ26qM278sZVHt+oAjPy5HmZasskg==",
10256
+ "version": "2.1204.0",
10257
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1204.0.tgz",
10258
+ "integrity": "sha512-H3dRQBdgzAfZ/e/dfiW44fhQrgAuCfIzWhI5y5J9122caI4uZY6TEUd003UXP4nXq2eMfuPWg0bA/mPwbj8RkA==",
10244
10259
  "dev": true,
10245
10260
  "license": "Apache-2.0",
10246
10261
  "dependencies": {
@@ -14183,15 +14198,15 @@
14183
14198
  "license": "MIT"
14184
14199
  },
14185
14200
  "node_modules/fast-xml-parser": {
14186
- "version": "3.21.1",
14187
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
14188
- "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
14201
+ "version": "4.0.9",
14202
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.0.9.tgz",
14203
+ "integrity": "sha512-4G8EzDg2Nb1Qurs3f7BpFV4+jpMVsdgLVuG1Uv8O2OHJfVCg7gcA53obuKbmVqzd4Y7YXVBK05oJG7hzGIdyzg==",
14189
14204
  "license": "MIT",
14190
14205
  "dependencies": {
14191
- "strnum": "^1.0.4"
14206
+ "strnum": "^1.0.5"
14192
14207
  },
14193
14208
  "bin": {
14194
- "xml2js": "cli.js"
14209
+ "fxparser": "src/cli/cli.js"
14195
14210
  },
14196
14211
  "funding": {
14197
14212
  "type": "paypal",
@@ -15834,9 +15849,9 @@
15834
15849
  }
15835
15850
  },
15836
15851
  "node_modules/inquirer": {
15837
- "version": "8.2.2",
15838
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz",
15839
- "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==",
15852
+ "version": "8.2.4",
15853
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
15854
+ "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
15840
15855
  "license": "MIT",
15841
15856
  "dependencies": {
15842
15857
  "ansi-escapes": "^4.2.1",
@@ -15852,16 +15867,17 @@
15852
15867
  "rxjs": "^7.5.5",
15853
15868
  "string-width": "^4.1.0",
15854
15869
  "strip-ansi": "^6.0.0",
15855
- "through": "^2.3.6"
15870
+ "through": "^2.3.6",
15871
+ "wrap-ansi": "^7.0.0"
15856
15872
  },
15857
15873
  "engines": {
15858
15874
  "node": ">=12.0.0"
15859
15875
  }
15860
15876
  },
15861
15877
  "node_modules/inquirer/node_modules/rxjs": {
15862
- "version": "7.5.5",
15863
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
15864
- "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
15878
+ "version": "7.5.6",
15879
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
15880
+ "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
15865
15881
  "license": "Apache-2.0",
15866
15882
  "dependencies": {
15867
15883
  "tslib": "^2.1.0"
@@ -29426,15 +29442,6 @@
29426
29442
  "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg==",
29427
29443
  "license": "Apache-2.0"
29428
29444
  },
29429
- "node_modules/xmldom-sfdx-encoding": {
29430
- "version": "0.1.30",
29431
- "resolved": "https://registry.npmjs.org/xmldom-sfdx-encoding/-/xmldom-sfdx-encoding-0.1.30.tgz",
29432
- "integrity": "sha512-NOZCfMfwvCMBlSMBr971cnjmToNswV68A1CA3pnM0WGauo1BhWpTgSsj6Lbq8HNAI2OOdWktCSMLtaZU5wVBHA==",
29433
- "license": "(LGPL-2.0 or MIT)",
29434
- "engines": {
29435
- "node": ">=0.1"
29436
- }
29437
- },
29438
29445
  "node_modules/xregexp": {
29439
29446
  "version": "2.0.0",
29440
29447
  "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz",
@@ -32349,38 +32356,6 @@
32349
32356
  "rxjs": "^7.5.6"
32350
32357
  },
32351
32358
  "dependencies": {
32352
- "inquirer": {
32353
- "version": "8.2.4",
32354
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
32355
- "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
32356
- "requires": {
32357
- "ansi-escapes": "^4.2.1",
32358
- "chalk": "^4.1.1",
32359
- "cli-cursor": "^3.1.0",
32360
- "cli-width": "^3.0.0",
32361
- "external-editor": "^3.0.3",
32362
- "figures": "^3.0.0",
32363
- "lodash": "^4.17.21",
32364
- "mute-stream": "0.0.8",
32365
- "ora": "^5.4.1",
32366
- "run-async": "^2.4.0",
32367
- "rxjs": "^7.5.5",
32368
- "string-width": "^4.1.0",
32369
- "strip-ansi": "^6.0.0",
32370
- "through": "^2.3.6",
32371
- "wrap-ansi": "^7.0.0"
32372
- },
32373
- "dependencies": {
32374
- "rxjs": {
32375
- "version": "7.5.5",
32376
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
32377
- "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
32378
- "requires": {
32379
- "tslib": "^2.1.0"
32380
- }
32381
- }
32382
- }
32383
- },
32384
32359
  "rxjs": {
32385
32360
  "version": "7.5.6",
32386
32361
  "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
@@ -33022,9 +32997,9 @@
33022
32997
  }
33023
32998
  },
33024
32999
  "@salesforce/core": {
33025
- "version": "3.26.1",
33026
- "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-3.26.1.tgz",
33027
- "integrity": "sha512-B2mhsiiAu9hkLAwkDu+Y5ArAtRJIx2oeqP8ofupLlSH4tohzcUmfKgCDZEk9iLC1sc5kmD1S/4DlS1QZhnNs8A==",
33000
+ "version": "3.26.2",
33001
+ "resolved": "https://registry.npmjs.org/@salesforce/core/-/core-3.26.2.tgz",
33002
+ "integrity": "sha512-GDrho8jbh1UDjcsYRRUzhNv4KUsMcBtux/yEqB2ycvHXhjVnrNkJcl99KESiU1eZMl2DGZEE1IO8yxnb2rSvgg==",
33028
33003
  "requires": {
33029
33004
  "@salesforce/bunyan": "^2.0.0",
33030
33005
  "@salesforce/kit": "^1.5.41",
@@ -33259,9 +33234,9 @@
33259
33234
  }
33260
33235
  },
33261
33236
  "@salesforce/kit": {
33262
- "version": "1.5.45",
33263
- "resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-1.5.45.tgz",
33264
- "integrity": "sha512-e7iER8s/f8N52rSRZ7uJXSKnOTDTH9NHfGnmkFXPuz/1Waaeqso+CxqmqCh8aVe//frj11NGkazR0rJPuF/bfA==",
33237
+ "version": "1.6.0",
33238
+ "resolved": "https://registry.npmjs.org/@salesforce/kit/-/kit-1.6.0.tgz",
33239
+ "integrity": "sha512-8VZvWYl61jBaUIqo+pNoDvVqaZKPmqauvkhJHvcr/+D7+EXsjne9PDMggy5mNQJvonD6iegR/h3BqcWrppSaeQ==",
33265
33240
  "requires": {
33266
33241
  "@salesforce/ts-types": "^1.5.20",
33267
33242
  "shx": "^0.3.3",
@@ -36451,11 +36426,11 @@
36451
36426
  "integrity": "sha512-6D7DvE6nFxpLyyTnrOIbbAeCJw2r/EpinFAcMh6gU0gA/CGfSbwV/8uR3uHLYL2zCyCZLH8jJ4dZ3BzCMqc+Eg=="
36452
36427
  },
36453
36428
  "@salesforce/sf-plugins-core": {
36454
- "version": "1.13.1",
36455
- "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-1.13.1.tgz",
36456
- "integrity": "sha512-K8pugaXSG+m3ofcUFuPZK66Rxwt13m0CmzO714+9KCyWqYEu99SxD7RX8cbplRwhsF9AoYmlncGGdqrZBRsPPg==",
36429
+ "version": "1.13.2",
36430
+ "resolved": "https://registry.npmjs.org/@salesforce/sf-plugins-core/-/sf-plugins-core-1.13.2.tgz",
36431
+ "integrity": "sha512-7uCLtHeWOwzbVTG6fuO/luEKC5wgZpBb/1OZ5nMWwMNb8hUAUfHOaBcJmYu5f8T0/Dbnre/NVG6QcReVYaar/w==",
36457
36432
  "requires": {
36458
- "@oclif/core": "^1.13.0",
36433
+ "@oclif/core": "^1.13.9",
36459
36434
  "@salesforce/core": "^3.25.0",
36460
36435
  "@salesforce/kit": "^1.5.44",
36461
36436
  "@salesforce/ts-types": "^1.5.20",
@@ -36464,31 +36439,43 @@
36464
36439
  }
36465
36440
  },
36466
36441
  "@salesforce/source-deploy-retrieve": {
36467
- "version": "6.2.0",
36468
- "resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-6.2.0.tgz",
36469
- "integrity": "sha512-KtklCoPBW0hrIFxfXrB7MI8wVffQu0lE69HRmUPJW7RtLK5hdk8YEyvP0yzvDVuiYrJN3+RS7uKkM2zDc9VbPA==",
36442
+ "version": "6.3.1",
36443
+ "resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-6.3.1.tgz",
36444
+ "integrity": "sha512-f0oBqBJ/R57cf5CqO7/LclGL3+fEfk2zlWbzhh3wDdgTP6M24rE0Nwc5TQKXZZr150l6ScjcnhYdLbTrkYxJvA==",
36470
36445
  "requires": {
36471
- "@salesforce/core": "^3.21.1",
36472
- "@salesforce/kit": "^1.5.41",
36446
+ "@salesforce/core": "^3.26.1",
36447
+ "@salesforce/kit": "^1.5.45",
36473
36448
  "@salesforce/ts-types": "^1.5.20",
36474
- "archiver": "^5.3.0",
36475
- "fast-xml-parser": "^3.17.4",
36449
+ "@xmldom/xmldom": "^0.8.2",
36450
+ "archiver": "^5.3.1",
36451
+ "fast-xml-parser": "^3.21.1",
36476
36452
  "got": "^11.8.5",
36477
- "graceful-fs": "^4.2.8",
36478
- "ignore": "^5.1.8",
36453
+ "graceful-fs": "^4.2.10",
36454
+ "ignore": "^5.2.0",
36479
36455
  "mime": "2.6.0",
36480
- "unzipper": "0.10.11",
36481
- "xmldom-sfdx-encoding": "^0.1.29"
36456
+ "proxy-agent": "^5.0.0",
36457
+ "proxy-from-env": "^1.1.0",
36458
+ "unzipper": "0.10.11"
36459
+ },
36460
+ "dependencies": {
36461
+ "fast-xml-parser": {
36462
+ "version": "3.21.1",
36463
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
36464
+ "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
36465
+ "requires": {
36466
+ "strnum": "^1.0.4"
36467
+ }
36468
+ }
36482
36469
  }
36483
36470
  },
36484
36471
  "@salesforce/source-tracking": {
36485
- "version": "2.2.0",
36486
- "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-2.2.0.tgz",
36487
- "integrity": "sha512-hoQgKSY3/tdjAxlgOVevTAEKAzlAgNZhYcllpsjbfrIBMhStLAeMnkUAWCgasP/4cj1IKLxLRb/5bLPA9C6e2Q==",
36472
+ "version": "2.2.2",
36473
+ "resolved": "https://registry.npmjs.org/@salesforce/source-tracking/-/source-tracking-2.2.2.tgz",
36474
+ "integrity": "sha512-1Znfjh8MPqfll/zRKD3kQxPzSWklDg1dIPkOqyOBwdh5X4LZvgvMY9oyF7m86u9taeASVG965swUM2TJiYMVsQ==",
36488
36475
  "requires": {
36489
- "@salesforce/core": "^3.22.1",
36490
- "@salesforce/kit": "^1.5.42",
36491
- "@salesforce/source-deploy-retrieve": "^6.1.0",
36476
+ "@salesforce/core": "^3.26.1",
36477
+ "@salesforce/kit": "^1.5.45",
36478
+ "@salesforce/source-deploy-retrieve": "^6.2.7",
36492
36479
  "graceful-fs": "^4.2.9",
36493
36480
  "isomorphic-git": "1.17.0",
36494
36481
  "ts-retry-promise": "^0.6.0"
@@ -36700,16 +36687,16 @@
36700
36687
  }
36701
36688
  },
36702
36689
  "@sf/deploy-retrieve": {
36703
- "version": "npm:@salesforce/plugin-deploy-retrieve@1.5.2",
36704
- "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.5.2.tgz",
36705
- "integrity": "sha512-P2rAfDo8jxbBvAavJVR1P4BZnW8P53C415TEXfu+CV5W6WAkiWlFYrJovLQWW5PT02crLO0FG/KrrTpvG26PyQ==",
36690
+ "version": "npm:@salesforce/plugin-deploy-retrieve@1.5.5",
36691
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-deploy-retrieve/-/plugin-deploy-retrieve-1.5.5.tgz",
36692
+ "integrity": "sha512-OyzQgRK2dd4iXvanE8acbhg3L2D4ZtH85JV8O9gkSlTtnstxRcR7EYdHBfiYKqrKmjtBS/bJItgIXL1ZvVQW+Q==",
36706
36693
  "requires": {
36707
- "@oclif/core": "^1.9.0",
36708
- "@salesforce/core": "^3.22.1",
36709
- "@salesforce/kit": "^1.5.41",
36710
- "@salesforce/sf-plugins-core": "^1.13.0",
36711
- "@salesforce/source-deploy-retrieve": "^6.1.0",
36712
- "@salesforce/source-tracking": "^2.2.0",
36694
+ "@oclif/core": "^1.15.0",
36695
+ "@salesforce/core": "^3.26.1",
36696
+ "@salesforce/kit": "^1.5.45",
36697
+ "@salesforce/sf-plugins-core": "1.14.0",
36698
+ "@salesforce/source-deploy-retrieve": "^6.2.9",
36699
+ "@salesforce/source-tracking": "^2.2.2",
36713
36700
  "chalk": "^4.1.2",
36714
36701
  "fs-extra": "^10.0.1",
36715
36702
  "shelljs": "^0.8.5",
@@ -36969,6 +36956,23 @@
36969
36956
  "tslib": "^2"
36970
36957
  }
36971
36958
  },
36959
+ "@sf/sobject": {
36960
+ "version": "npm:@salesforce/plugin-sobject@0.0.8",
36961
+ "resolved": "https://registry.npmjs.org/@salesforce/plugin-sobject/-/plugin-sobject-0.0.8.tgz",
36962
+ "integrity": "sha512-mR/5qiOJDP+oM+xppZ/Sc2LH6OOtTuySNgqH8vU5QUCf552ex/W3nTPHau69QG66HvZ4XpN/NbWT4DW+6H7omg==",
36963
+ "requires": {
36964
+ "@oclif/core": "^1.14.1",
36965
+ "@salesforce/core": "^3.26.2",
36966
+ "@salesforce/kit": "^1.6.0",
36967
+ "@salesforce/sf-plugins-core": "^1.13.2",
36968
+ "change-case": "^4.1.2",
36969
+ "fast-glob": "^3.2.11",
36970
+ "fast-xml-parser": "^4.0.9",
36971
+ "inquirer": "^8.2.4",
36972
+ "js2xmlparser": "^4.0.2",
36973
+ "tslib": "^2"
36974
+ }
36975
+ },
36972
36976
  "@sf/telemetry": {
36973
36977
  "version": "npm:@salesforce/plugin-telemetry@2.0.0",
36974
36978
  "resolved": "https://registry.npmjs.org/@salesforce/plugin-telemetry/-/plugin-telemetry-2.0.0.tgz",
@@ -37502,6 +37506,11 @@
37502
37506
  "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==",
37503
37507
  "dev": true
37504
37508
  },
37509
+ "@xmldom/xmldom": {
37510
+ "version": "0.8.2",
37511
+ "resolved": "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.8.2.tgz",
37512
+ "integrity": "sha512-+R0juSseERyoPvnBQ/cZih6bpF7IpCXlWbHRoCRzYzqpz6gWHOgf8o4MOEf6KBVuOyqU+gCNLkCWVIJAro8XyQ=="
37513
+ },
37505
37514
  "@yarnpkg/lockfile": {
37506
37515
  "version": "1.1.0",
37507
37516
  "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz",
@@ -37670,12 +37679,12 @@
37670
37679
  "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ=="
37671
37680
  },
37672
37681
  "archiver": {
37673
- "version": "5.3.0",
37674
- "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.0.tgz",
37675
- "integrity": "sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg==",
37682
+ "version": "5.3.1",
37683
+ "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.1.tgz",
37684
+ "integrity": "sha512-8KyabkmbYrH+9ibcTScQ1xCJC/CGcugdVIwB+53f5sZziXgwUh3iXlAlANMxcZyDEfTHMe6+Z5FofV8nopXP7w==",
37676
37685
  "requires": {
37677
37686
  "archiver-utils": "^2.1.0",
37678
- "async": "^3.2.0",
37687
+ "async": "^3.2.3",
37679
37688
  "buffer-crc32": "^0.2.1",
37680
37689
  "readable-stream": "^3.6.0",
37681
37690
  "readdir-glob": "^1.0.0",
@@ -37897,9 +37906,9 @@
37897
37906
  "dev": true
37898
37907
  },
37899
37908
  "async": {
37900
- "version": "3.2.3",
37901
- "resolved": "https://registry.npmjs.org/async/-/async-3.2.3.tgz",
37902
- "integrity": "sha512-spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="
37909
+ "version": "3.2.4",
37910
+ "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz",
37911
+ "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ=="
37903
37912
  },
37904
37913
  "async-hook-jl": {
37905
37914
  "version": "1.7.6",
@@ -37947,9 +37956,9 @@
37947
37956
  "dev": true
37948
37957
  },
37949
37958
  "aws-sdk": {
37950
- "version": "2.1185.0",
37951
- "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1185.0.tgz",
37952
- "integrity": "sha512-viFlYC6RAKOqBRM4gIB4rE80KMFNVvEkQpNmpd3PqCOemGPETDxCVHS0oqZ26qM278sZVHt+oAjPy5HmZasskg==",
37959
+ "version": "2.1204.0",
37960
+ "resolved": "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1204.0.tgz",
37961
+ "integrity": "sha512-H3dRQBdgzAfZ/e/dfiW44fhQrgAuCfIzWhI5y5J9122caI4uZY6TEUd003UXP4nXq2eMfuPWg0bA/mPwbj8RkA==",
37953
37962
  "dev": true,
37954
37963
  "requires": {
37955
37964
  "buffer": "4.9.2",
@@ -40725,11 +40734,11 @@
40725
40734
  "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc="
40726
40735
  },
40727
40736
  "fast-xml-parser": {
40728
- "version": "3.21.1",
40729
- "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz",
40730
- "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==",
40737
+ "version": "4.0.9",
40738
+ "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-4.0.9.tgz",
40739
+ "integrity": "sha512-4G8EzDg2Nb1Qurs3f7BpFV4+jpMVsdgLVuG1Uv8O2OHJfVCg7gcA53obuKbmVqzd4Y7YXVBK05oJG7hzGIdyzg==",
40731
40740
  "requires": {
40732
- "strnum": "^1.0.4"
40741
+ "strnum": "^1.0.5"
40733
40742
  }
40734
40743
  },
40735
40744
  "fastest-levenshtein": {
@@ -41856,9 +41865,9 @@
41856
41865
  }
41857
41866
  },
41858
41867
  "inquirer": {
41859
- "version": "8.2.2",
41860
- "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.2.tgz",
41861
- "integrity": "sha512-pG7I/si6K/0X7p1qU+rfWnpTE1UIkTONN1wxtzh0d+dHXtT/JG6qBgLxoyHVsQa8cFABxAPh0pD6uUUHiAoaow==",
41868
+ "version": "8.2.4",
41869
+ "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.4.tgz",
41870
+ "integrity": "sha512-nn4F01dxU8VeKfq192IjLsxu0/OmMZ4Lg3xKAns148rCaXP6ntAoEkVYZThWjwON8AlzdZZi6oqnhNbxUG9hVg==",
41862
41871
  "requires": {
41863
41872
  "ansi-escapes": "^4.2.1",
41864
41873
  "chalk": "^4.1.1",
@@ -41873,13 +41882,14 @@
41873
41882
  "rxjs": "^7.5.5",
41874
41883
  "string-width": "^4.1.0",
41875
41884
  "strip-ansi": "^6.0.0",
41876
- "through": "^2.3.6"
41885
+ "through": "^2.3.6",
41886
+ "wrap-ansi": "^7.0.0"
41877
41887
  },
41878
41888
  "dependencies": {
41879
41889
  "rxjs": {
41880
- "version": "7.5.5",
41881
- "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.5.tgz",
41882
- "integrity": "sha512-sy+H0pQofO95VDmFLzyaw9xNJU4KTRSwQIGM6+iG3SypAtCiLDzpeG8sJrNCWn2Up9km+KhkvTdbkrdy+yzZdw==",
41890
+ "version": "7.5.6",
41891
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.5.6.tgz",
41892
+ "integrity": "sha512-dnyv2/YsXhnm461G+R/Pe5bWP41Nm6LBXEYWI6eiFP4fiwx6WRI/CD0zbdVAudd9xwLEF2IDcKXLHit0FYjUzw==",
41883
41893
  "requires": {
41884
41894
  "tslib": "^2.1.0"
41885
41895
  }
@@ -51615,11 +51625,6 @@
51615
51625
  "resolved": "https://registry.npmjs.org/xmlcreate/-/xmlcreate-2.0.4.tgz",
51616
51626
  "integrity": "sha512-nquOebG4sngPmGPICTS5EnxqhKbCmz5Ox5hsszI2T6U5qdrJizBc+0ilYSEjTSzU0yZcmvppztXe/5Al5fUwdg=="
51617
51627
  },
51618
- "xmldom-sfdx-encoding": {
51619
- "version": "0.1.30",
51620
- "resolved": "https://registry.npmjs.org/xmldom-sfdx-encoding/-/xmldom-sfdx-encoding-0.1.30.tgz",
51621
- "integrity": "sha512-NOZCfMfwvCMBlSMBr971cnjmToNswV68A1CA3pnM0WGauo1BhWpTgSsj6Lbq8HNAI2OOdWktCSMLtaZU5wVBHA=="
51622
- },
51623
51628
  "xregexp": {
51624
51629
  "version": "2.0.0",
51625
51630
  "resolved": "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz",
@@ -1 +1 @@
1
- {"version":"1.41.0","commands":{}}
1
+ {"version":"1.44.0","commands":{}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@salesforce/cli",
3
3
  "description": "The Salesforce CLI",
4
- "version": "1.41.0",
4
+ "version": "1.44.0",
5
5
  "author": "Salesforce",
6
6
  "bin": {
7
7
  "sf": "./bin/run"
@@ -47,6 +47,7 @@
47
47
  "@sf/gen",
48
48
  "@sf/info",
49
49
  "@sf/login",
50
+ "@sf/sobject",
50
51
  "@sf/telemetry",
51
52
  "@sf/trust"
52
53
  ],
@@ -97,10 +98,10 @@
97
98
  "@oclif/plugin-search": "0.0.1",
98
99
  "@oclif/plugin-update": "3.0.0",
99
100
  "@oclif/plugin-version": "1.1.1",
100
- "@salesforce/core": "^3.26.1",
101
- "@salesforce/sf-plugins-core": "^1.13.1",
101
+ "@salesforce/core": "^3.26.2",
102
+ "@salesforce/sf-plugins-core": "^1.13.2",
102
103
  "@sf/config": "npm:@salesforce/plugin-config@2.3.2",
103
- "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@1.5.2",
104
+ "@sf/deploy-retrieve": "npm:@salesforce/plugin-deploy-retrieve@1.5.5",
104
105
  "@sf/env": "npm:@salesforce/plugin-env@1.5.0",
105
106
  "@sf/functions": "npm:@salesforce/plugin-functions@1.13.5",
106
107
  "@sf/gen": "npm:@salesforce/plugin-generate@1.0.14",
@@ -108,6 +109,7 @@
108
109
  "@sf/login": "npm:@salesforce/plugin-login@1.1.1",
109
110
  "@sf/telemetry": "npm:@salesforce/plugin-telemetry@2.0.0",
110
111
  "@sf/trust": "npm:@salesforce/plugin-trust@2.0.2",
112
+ "@sf/sobject": "npm:@salesforce/plugin-sobject@0.0.8",
111
113
  "semver": "^7.3.7",
112
114
  "tslib": "^2.4.0"
113
115
  },
@@ -162,7 +164,7 @@
162
164
  "@salesforce/prettier-config": "^0.0.2",
163
165
  "@typescript-eslint/eslint-plugin": "^4.33.0",
164
166
  "@typescript-eslint/parser": "^4.33.0",
165
- "aws-sdk": "^2.1147.0",
167
+ "aws-sdk": "^2.1204.0",
166
168
  "chai": "^4.3.6",
167
169
  "eslint": "^7.32.0",
168
170
  "eslint-config-oclif": "^3.1",