@terafina/tffa-sfdx-plugin 15.0.0-rc.10 → 15.0.0-rc.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -41,7 +41,7 @@ $ npm install -g @terafina/tffa-sfdx-plugin
41
41
  $ sfdx COMMAND
42
42
  running command...
43
43
  $ sfdx (--version|-v)
44
- @terafina/tffa-sfdx-plugin/15.0.0-rc.10 darwin-arm64 node-v16.16.0
44
+ @terafina/tffa-sfdx-plugin/15.0.0-rc.13 linux-x64 node-v16.13.1
45
45
  $ sfdx --help [COMMAND]
46
46
  USAGE
47
47
  $ sfdx COMMAND
@@ -104,7 +104,7 @@ EXAMPLES
104
104
  Generate Apex API Documentation : $sfdx tffa:apexdoc
105
105
  ```
106
106
 
107
- _See code: [src/commands/tffa/apexdoc.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.10/src/commands/tffa/apexdoc.ts)_
107
+ _See code: [src/commands/tffa/apexdoc.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.13/src/commands/tffa/apexdoc.ts)_
108
108
 
109
109
  ## `sfdx tffa:lint [-s <directory>] [-m <integer>] [-r <filepath>] [-e] [-f] [-j] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
110
110
 
@@ -134,7 +134,7 @@ EXAMPLES
134
134
  $sfdx tffa:lint
135
135
  ```
136
136
 
137
- _See code: [src/commands/tffa/lint.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.10/src/commands/tffa/lint.ts)_
137
+ _See code: [src/commands/tffa/lint.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.13/src/commands/tffa/lint.ts)_
138
138
 
139
139
  ## `sfdx tffa:meta [-s <directory>] [-d <directory>] [-c <directory>] [-o json|csv|human] [-f] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
140
140
 
@@ -163,7 +163,7 @@ EXAMPLES
163
163
  scan a sfdx project for metadata : $sfdx tffa:meta
164
164
  ```
165
165
 
166
- _See code: [src/commands/tffa/meta.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.10/src/commands/tffa/meta.ts)_
166
+ _See code: [src/commands/tffa/meta.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.13/src/commands/tffa/meta.ts)_
167
167
 
168
168
  ## `sfdx tffa:ping [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
169
169
 
@@ -185,7 +185,7 @@ EXAMPLES
185
185
  $ sfdx tffa:ping
186
186
  ```
187
187
 
188
- _See code: [src/commands/tffa/ping.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.10/src/commands/tffa/ping.ts)_
188
+ _See code: [src/commands/tffa/ping.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.13/src/commands/tffa/ping.ts)_
189
189
 
190
190
  ## `sfdx tffa:source:apiset [-h <help>] [-s <directory>] [-a <integer>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]`
191
191
 
@@ -213,7 +213,7 @@ EXAMPLES
213
213
  $ sfdx tffa:source:apiset
214
214
  ```
215
215
 
216
- _See code: [src/commands/tffa/source/apiset.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.10/src/commands/tffa/source/apiset.ts)_
216
+ _See code: [src/commands/tffa/source/apiset.ts](https://github.com/terafina/tffa-sfdx-plugin/blob/v15.0.0-rc.13/src/commands/tffa/source/apiset.ts)_
217
217
 
218
218
  ## `sfdx version`
219
219
 
@@ -168,14 +168,14 @@
168
168
  </property>
169
169
  </properties>
170
170
  </rule>
171
- <rule
171
+ <rule
172
172
  name="InteractionInControllerRemoteMethods"
173
173
  language="apex"
174
- message="All Custom controllers should have tffa.Interaction.begin and tffa.Interaction.close"
174
+ message="All Custom controllers should have tffa.Interaction.begin(ctx and tffa.Interaction.close"
175
175
  class="net.sourceforge.pmd.lang.apex.rule.ApexXPathRule"
176
176
  externalInfoUrl="https://developer.terafinainc.net/development-guidelines/security-guidelines#terafina-application-security"
177
177
  >
178
- <description>All Custom controllers should have tffa.Interaction.begin and tffa.Interaction.close</description>
178
+ <description>All Custom controllers should have tffa.Interaction.begin(ctx and tffa.Interaction.close</description>
179
179
  <priority>1</priority>
180
180
  <properties>
181
181
  <property name="xpath">
@@ -186,7 +186,7 @@
186
186
  ./ModifierNode/Annotation[@Image = 'RemoteAction']
187
187
  and
188
188
  (
189
- not(.//MethodCallExpression[@FullMethodName='tffa.Interaction.begin'])
189
+ not(.//MethodCallExpression[@FullMethodName='tffa.Interaction.begin' and .//VariableExpression[@Image = 'ctx']])
190
190
  or
191
191
  not(.//MethodCallExpression[@FullMethodName='tffa.Interaction.close'])
192
192
  )
@@ -214,7 +214,7 @@
214
214
  ./ModifierNode/Annotation[@Image = 'RemoteAction']
215
215
  and
216
216
  (
217
- not(.//Parameter[1][@Type='tffa.Context'])
217
+ not(.//Parameter[1][@Type='tffa.Context' and @Image ='ctx'])
218
218
  )
219
219
  ]
220
220
  ]]>
@@ -1 +1 @@
1
- {"version":"15.0.0-rc.10","commands":{"tffa:apexdoc":{"id":"tffa:apexdoc","description":"Generate Apex API Documentation","strict":true,"usage":"<%= command.id %> [-s <directory>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["Generate Apex API Documentation :\t$sfdx tffa:apexdoc "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"destfolder":{"name":"destfolder","type":"option","char":"d","description":"directory to generate the api docs","multiple":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"destfolder":{"kind":"directory","char":"d","description":"directory to generate the api docs","input":[],"multiple":false,"type":"option"}}},"tffa:lint":{"id":"tffa:lint","description":"scan a sfdx project and provide a violations report based on defined standards","strict":true,"usage":"<%= command.id %> [-s <directory>] [-m <integer>] [-r <filepath>] [-e] [-f] [-j] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$sfdx tffa:lint"],"flags":{"json":{"name":"json","type":"boolean","char":"j","description":"generate json output","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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"minapi":{"name":"minapi","type":"option","char":"m","description":"minimum api version to use during quality checks","multiple":false,"default":55},"rulesetpath":{"name":"rulesetpath","type":"option","char":"r","description":"path to pmd ruleset","multiple":false},"eject":{"name":"eject","type":"boolean","char":"e","description":"update local pmd ruleset","allowNo":false},"level":{"name":"level","type":"boolean","char":"f","description":"emit fatal violations only","allowNo":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"minapi":{"kind":"integer","char":"m","description":"minimum api version to use during quality checks","default":55,"input":[],"multiple":false,"type":"option"},"json":{"kind":"boolean","char":"j","description":"generate json output","allowNo":false,"type":"boolean"},"rulesetpath":{"kind":"filepath","char":"r","description":"path to pmd ruleset","input":[],"multiple":false,"type":"option"},"eject":{"kind":"boolean","char":"e","description":"update local pmd ruleset","allowNo":false,"type":"boolean"},"level":{"kind":"boolean","char":"f","description":"emit fatal violations only","allowNo":false,"type":"boolean"}}},"tffa:meta":{"id":"tffa:meta","description":"scan a sfdx project for metadata","strict":true,"usage":"<%= command.id %> [-s <directory>] [-d <directory>] [-c <directory>] [-o json|csv|human] [-f] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["scan a sfdx project for metadata :\t$sfdx tffa:meta"],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"destpath":{"name":"destpath","type":"option","char":"d","description":"full path output file","multiple":false,"default":"."},"clientname":{"name":"clientname","type":"option","char":"c","description":"name of the client","multiple":false,"default":"."},"output":{"name":"output","type":"option","char":"o","description":"output format json csv human","helpValue":"(json|csv|human)","multiple":false,"options":["json","csv","human"]},"fields":{"name":"fields","type":"boolean","char":"f","description":"generate field output","allowNo":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"destpath":{"kind":"directory","char":"d","description":"full path output file","default":".","input":[],"multiple":false,"type":"option"},"clientname":{"kind":"directory","char":"c","description":"name of the client","default":".","input":[],"multiple":false,"type":"option"},"output":{"kind":"enum","helpValue":"(json|csv|human)","char":"o","options":["json","csv","human"],"description":"output format json csv human","input":[],"multiple":false,"type":"option"},"fields":{"kind":"boolean","char":"f","description":"generate field output","allowNo":false,"type":"boolean"}}},"tffa:ping":{"id":"tffa:ping","description":"ping and test the plugin","strict":true,"usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$ sfdx tffa:ping "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[{"name":"file"}],"flagsConfig":{}},"tffa:source:apiset":{"id":"tffa:source:apiset","description":"Upgrades the current project and all metadata to the latest API version","strict":true,"usage":"<%= command.id %> [-h <help>] [-s <directory>] [-a <integer>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$ sfdx tffa:source:apiset "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"api":{"name":"api","type":"option","char":"a","description":"specify the API version ","multiple":false,"default":55}},"args":[],"flagsConfig":{"help":{"kind":"help","description":"Show CLI help.","char":"h","allowNo":false,"type":"boolean"},"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"api":{"kind":"integer","char":"a","description":"specify the API version ","default":55,"input":[],"multiple":false,"type":"option"}}}}}
1
+ {"version":"15.0.0-rc.13","commands":{"tffa:apexdoc":{"id":"tffa:apexdoc","description":"Generate Apex API Documentation","strict":true,"usage":"<%= command.id %> [-s <directory>] [-d <directory>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["Generate Apex API Documentation :\t$sfdx tffa:apexdoc "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"destfolder":{"name":"destfolder","type":"option","char":"d","description":"directory to generate the api docs","multiple":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"destfolder":{"kind":"directory","char":"d","description":"directory to generate the api docs","input":[],"multiple":false,"type":"option"}}},"tffa:lint":{"id":"tffa:lint","description":"scan a sfdx project and provide a violations report based on defined standards","strict":true,"usage":"<%= command.id %> [-s <directory>] [-m <integer>] [-r <filepath>] [-e] [-f] [-j] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$sfdx tffa:lint"],"flags":{"json":{"name":"json","type":"boolean","char":"j","description":"generate json output","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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"minapi":{"name":"minapi","type":"option","char":"m","description":"minimum api version to use during quality checks","multiple":false,"default":55},"rulesetpath":{"name":"rulesetpath","type":"option","char":"r","description":"path to pmd ruleset","multiple":false},"eject":{"name":"eject","type":"boolean","char":"e","description":"update local pmd ruleset","allowNo":false},"level":{"name":"level","type":"boolean","char":"f","description":"emit fatal violations only","allowNo":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"minapi":{"kind":"integer","char":"m","description":"minimum api version to use during quality checks","default":55,"input":[],"multiple":false,"type":"option"},"json":{"kind":"boolean","char":"j","description":"generate json output","allowNo":false,"type":"boolean"},"rulesetpath":{"kind":"filepath","char":"r","description":"path to pmd ruleset","input":[],"multiple":false,"type":"option"},"eject":{"kind":"boolean","char":"e","description":"update local pmd ruleset","allowNo":false,"type":"boolean"},"level":{"kind":"boolean","char":"f","description":"emit fatal violations only","allowNo":false,"type":"boolean"}}},"tffa:meta":{"id":"tffa:meta","description":"scan a sfdx project for metadata","strict":true,"usage":"<%= command.id %> [-s <directory>] [-d <directory>] [-c <directory>] [-o json|csv|human] [-f] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["scan a sfdx project for metadata :\t$sfdx tffa:meta"],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"destpath":{"name":"destpath","type":"option","char":"d","description":"full path output file","multiple":false,"default":"."},"clientname":{"name":"clientname","type":"option","char":"c","description":"name of the client","multiple":false,"default":"."},"output":{"name":"output","type":"option","char":"o","description":"output format json csv human","helpValue":"(json|csv|human)","multiple":false,"options":["json","csv","human"]},"fields":{"name":"fields","type":"boolean","char":"f","description":"generate field output","allowNo":false}},"args":[],"flagsConfig":{"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"destpath":{"kind":"directory","char":"d","description":"full path output file","default":".","input":[],"multiple":false,"type":"option"},"clientname":{"kind":"directory","char":"c","description":"name of the client","default":".","input":[],"multiple":false,"type":"option"},"output":{"kind":"enum","helpValue":"(json|csv|human)","char":"o","options":["json","csv","human"],"description":"output format json csv human","input":[],"multiple":false,"type":"option"},"fields":{"kind":"boolean","char":"f","description":"generate field output","allowNo":false,"type":"boolean"}}},"tffa:ping":{"id":"tffa:ping","description":"ping and test the plugin","strict":true,"usage":"<%= command.id %> [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$ sfdx tffa:ping "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"}},"args":[{"name":"file"}],"flagsConfig":{}},"tffa:source:apiset":{"id":"tffa:source:apiset","description":"Upgrades the current project and all metadata to the latest API version","strict":true,"usage":"<%= command.id %> [-h <help>] [-s <directory>] [-a <integer>] [--json] [--loglevel trace|debug|info|warn|error|fatal|TRACE|DEBUG|INFO|WARN|ERROR|FATAL]","pluginName":"@terafina/tffa-sfdx-plugin","pluginAlias":"@terafina/tffa-sfdx-plugin","pluginType":"core","aliases":[],"examples":["$ sfdx tffa:source:apiset "],"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)","multiple":false,"options":["trace","debug","info","warn","error","fatal","TRACE","DEBUG","INFO","WARN","ERROR","FATAL"],"default":"warn"},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"sourcefolder":{"name":"sourcefolder","type":"option","char":"s","description":"directory containing sfdx project","multiple":false,"default":"."},"api":{"name":"api","type":"option","char":"a","description":"specify the API version ","multiple":false,"default":55}},"args":[],"flagsConfig":{"help":{"kind":"help","description":"Show CLI help.","char":"h","allowNo":false,"type":"boolean"},"sourcefolder":{"kind":"directory","char":"s","description":"directory containing sfdx project","default":".","input":[],"multiple":false,"type":"option"},"api":{"kind":"integer","char":"a","description":"specify the API version ","default":55,"input":[],"multiple":false,"type":"option"}}}}}
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@terafina/tffa-sfdx-plugin",
3
3
  "description": "sfdx plugin from Terafina containing tools for scanning and extending digital applications for the financial services industry.",
4
- "version": "15.0.0-rc.10",
4
+ "version": "15.0.0-rc.13",
5
5
  "author": "Terafina Inc",
6
6
  "bugs": "https://github.com/terafinainc/tffa-sfdx-plugin/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "1.14.2",
8
+ "@oclif/core": "1.16.0",
9
9
  "@oclif/plugin-help": "5.1.12",
10
10
  "@oclif/plugin-plugins": "2.1.0",
11
11
  "@oclif/plugin-version": "1.1.2",
12
12
  "@oclif/plugin-warn-if-update-available": "2.0.4",
13
- "@salesforce/command": "5.2.5",
13
+ "@salesforce/command": "5.2.6",
14
14
  "@salesforce/core": "2.37.1",
15
15
  "find-java-home": "1.2.2",
16
16
  "cheerio": "1.0.0-rc.12",
@@ -35,11 +35,11 @@
35
35
  "@types/fs-extra": "9.0.13",
36
36
  "@types/js-yaml": "4.0.5",
37
37
  "@types/mocha": "9.1.1",
38
- "@types/node": "18.7.11",
38
+ "@types/node": "18.7.13",
39
39
  "@types/recursive-readdir": "2.2.1",
40
40
  "@types/xml2js": "0.4.11",
41
- "@typescript-eslint/eslint-plugin": "5.34.0",
42
- "@typescript-eslint/parser": "5.34.0",
41
+ "@typescript-eslint/eslint-plugin": "5.35.1",
42
+ "@typescript-eslint/parser": "5.35.1",
43
43
  "chai": "4",
44
44
  "eslint": "8.22.0",
45
45
  "eslint-config-prettier": "8.5.0",
@@ -64,11 +64,11 @@
64
64
  "properties-reader": "2.2.0",
65
65
  "standard-version": "9.5.0",
66
66
  "ts-node": "10",
67
- "typescript": "4.7.4",
67
+ "typescript": "4.8.2",
68
68
  "yargs": "17.5.1"
69
69
  },
70
70
  "engines": {
71
- "node": ">=12.0.0"
71
+ "node": ">=16.0.0"
72
72
  },
73
73
  "files": [
74
74
  "/lib",
@@ -77,6 +77,7 @@
77
77
  "/messages",
78
78
  "/npm-shrinkwrap.json",
79
79
  "/yarn.lock",
80
+ "/package-lock.json",
80
81
  "/oclif.manifest.json"
81
82
  ],
82
83
  "homepage": "https://bitbucket.org/terafina/tffa-sfdx-plugin",
@@ -114,7 +115,7 @@
114
115
  "version": "oclif readme && git add README.md",
115
116
  "publish": "git push --follow-tags origin develop && npm run package && npm publish terafina-tffa-sfdx-plugin-$npm_package_version.tgz && npm dist-tag add @terafina/tffa-sfdx-plugin@$npm_package_version r$npm_config_tffa_version",
116
117
  "publish_rc": "git push --follow-tags origin develop && npm run package && npm publish --tag next terafina-tffa-sfdx-plugin-$npm_package_version.tgz && npm dist-tag add @terafina/tffa-sfdx-plugin@$npm_package_version r$npm_config_tffa_version",
117
- "package": "npm pack ",
118
+ "package": "npm pack",
118
119
  "release": "standard-version --commit-all",
119
120
  "release_rc": "npm run release -- --prerelease rc",
120
121
  "release_patch": "npm run release -- --release-as patch",
package/yarn.lock CHANGED
@@ -681,10 +681,10 @@
681
681
  supports-color "^8.1.1"
682
682
  tslib "^2"
683
683
 
684
- "@oclif/core@1.14.2", "@oclif/core@^1.0.8", "@oclif/core@^1.14.1", "@oclif/core@^1.2.0", "@oclif/core@^1.2.1", "@oclif/core@^1.3.6", "@oclif/core@^1.6.4", "@oclif/core@^1.9.9":
685
- version "1.14.2"
686
- resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.14.2.tgz#c6e4873f3ffde81a771d06e86c8e5bdfb189dbf2"
687
- integrity sha512-Q16f/1FUPrtEYDyGYtuzNDZ3Q3RxYCHOnm9YJRg2VwSVqPOOo2Geoxh6Clo8cgin5NlFgs1wZEH+m+ABPr+RqA==
684
+ "@oclif/core@1.16.0", "@oclif/core@^1.0.8", "@oclif/core@^1.14.1", "@oclif/core@^1.2.0", "@oclif/core@^1.2.1", "@oclif/core@^1.3.6", "@oclif/core@^1.6.4", "@oclif/core@^1.9.9":
685
+ version "1.16.0"
686
+ resolved "https://registry.yarnpkg.com/@oclif/core/-/core-1.16.0.tgz#4b53261eeb0c0244700bfc9eb41159d483436f21"
687
+ integrity sha512-xtqhAbjQHBcz+xQpEHJ3eJEVfRQ4zl41Yw5gw/N+D1jgaIUrHTxCY/sfTvhw93LAQo7B++ozHzSb7DISFXsQFQ==
688
688
  dependencies:
689
689
  "@oclif/linewrap" "^1.0.0"
690
690
  "@oclif/screen" "^3.0.2"
@@ -900,10 +900,10 @@
900
900
  mv "~2"
901
901
  safe-json-stringify "~1"
902
902
 
903
- "@salesforce/command@5.2.5":
904
- version "5.2.5"
905
- resolved "https://registry.yarnpkg.com/@salesforce/command/-/command-5.2.5.tgz#163abdaa28f41c96b7018e3f64d445d961769221"
906
- integrity sha512-9boDl70hdxemcU8A9TPgMczk5VSI15NafDt9/wxLQs0anSO8YSfXkJO6HSRZ2Dza/op3ktGzDmWqFVLEUq6QAg==
903
+ "@salesforce/command@5.2.6":
904
+ version "5.2.6"
905
+ resolved "https://registry.yarnpkg.com/@salesforce/command/-/command-5.2.6.tgz#649e3c1ab2c4f5a71b1c908f95a644c1b398d7da"
906
+ integrity sha512-Rsvk8k4ZKwZiMD6STSTHMNPigqkr+hycuRwjm1pk57vDDSllVVa3R8yv0em1OoJsiyIH7l/zhRQ6IcZ7ObM7Jg==
907
907
  dependencies:
908
908
  "@oclif/core" "^1.14.1"
909
909
  "@oclif/plugin-help" "^5.1.11"
@@ -1144,7 +1144,12 @@
1144
1144
  resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.184.tgz#23f96cd2a21a28e106dc24d825d4aa966de7a9fe"
1145
1145
  integrity sha512-RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q==
1146
1146
 
1147
- "@types/minimatch@*", "@types/minimatch@^3.0.3":
1147
+ "@types/minimatch@*":
1148
+ version "5.1.0"
1149
+ resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-5.1.0.tgz#c3018161691376002f8a22ebb87f341e0dba3219"
1150
+ integrity sha512-0RJHq5FqDWo17kdHe+SMDJLfxmLaqHbWnqZ6gNKzDvStUlrmx/eKIY17+ifLS1yybo7X86aUshQMlittDOVNnw==
1151
+
1152
+ "@types/minimatch@^3.0.3":
1148
1153
  version "3.0.5"
1149
1154
  resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.5.tgz#1001cc5e6a3704b83c236027e77f2f58ea010f40"
1150
1155
  integrity sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==
@@ -1166,10 +1171,10 @@
1166
1171
  resolved "https://registry.yarnpkg.com/@types/mocha/-/mocha-9.1.1.tgz#e7c4f1001eefa4b8afbd1eee27a237fee3bf29c4"
1167
1172
  integrity sha512-Z61JK7DKDtdKTWwLeElSEBcWGRLY8g95ic5FoQqI9CMx0ns/Ghep3B4DfcEimiKMvtamNVULVNKEsiwV3aQmXw==
1168
1173
 
1169
- "@types/node@*", "@types/node@18.7.11", "@types/node@>=12":
1170
- version "18.7.11"
1171
- resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.11.tgz#486e72cfccde88da24e1f23ff1b7d8bfb64e6250"
1172
- integrity sha512-KZhFpSLlmK/sdocfSAjqPETTMd0ug6HIMIAwkwUpU79olnZdQtMxpQP+G1wDzCH7na+FltSIhbaZuKdwZ8RDrw==
1174
+ "@types/node@*", "@types/node@18.7.13", "@types/node@>=12":
1175
+ version "18.7.13"
1176
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-18.7.13.tgz#23e6c5168333480d454243378b69e861ab5c011a"
1177
+ integrity sha512-46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==
1173
1178
 
1174
1179
  "@types/node@^12.19.9":
1175
1180
  version "12.20.55"
@@ -1230,14 +1235,14 @@
1230
1235
  dependencies:
1231
1236
  "@types/node" "*"
1232
1237
 
1233
- "@typescript-eslint/eslint-plugin@5.34.0":
1234
- version "5.34.0"
1235
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.34.0.tgz#d690f60e335596f38b01792e8f4b361d9bd0cb35"
1236
- integrity sha512-eRfPPcasO39iwjlUAMtjeueRGuIrW3TQ9WseIDl7i5UWuFbf83yYaU7YPs4j8+4CxUMIsj1k+4kV+E+G+6ypDQ==
1238
+ "@typescript-eslint/eslint-plugin@5.35.1":
1239
+ version "5.35.1"
1240
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.35.1.tgz#0d822bfea7469904dfc1bb8f13cabd362b967c93"
1241
+ integrity sha512-RBZZXZlI4XCY4Wzgy64vB+0slT9+yAPQRjj/HSaRwUot33xbDjF1oN9BLwOLTewoOI0jothIltZRe9uJCHf8gg==
1237
1242
  dependencies:
1238
- "@typescript-eslint/scope-manager" "5.34.0"
1239
- "@typescript-eslint/type-utils" "5.34.0"
1240
- "@typescript-eslint/utils" "5.34.0"
1243
+ "@typescript-eslint/scope-manager" "5.35.1"
1244
+ "@typescript-eslint/type-utils" "5.35.1"
1245
+ "@typescript-eslint/utils" "5.35.1"
1241
1246
  debug "^4.3.4"
1242
1247
  functional-red-black-tree "^1.0.1"
1243
1248
  ignore "^5.2.0"
@@ -1246,75 +1251,75 @@
1246
1251
  tsutils "^3.21.0"
1247
1252
 
1248
1253
  "@typescript-eslint/experimental-utils@^5.0.0":
1249
- version "5.34.0"
1250
- resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.34.0.tgz#f24200ee4d55ecf30a24e335d551fc6819f0c84b"
1251
- integrity sha512-bXDmphFgoQI4eY7r8Vp0mwrvU9Pic+KxuQPG8uoC33FlZLgsFhv8brhUUyniHEeDhApdg4/5a3qYEZbNGnRQYQ==
1254
+ version "5.35.1"
1255
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.35.1.tgz#4ec46ad8cd04001e44536f427c553f120a262c9b"
1256
+ integrity sha512-nF7JD9alMkhEx50QYDUdP8koeHtldnm7EfZkr68ikkc87ffFBIPkH3dqoWyOeQeIiJicB0uHzpMXKR6PP+1Jbg==
1252
1257
  dependencies:
1253
- "@typescript-eslint/utils" "5.34.0"
1258
+ "@typescript-eslint/utils" "5.35.1"
1254
1259
 
1255
- "@typescript-eslint/parser@5.34.0":
1256
- version "5.34.0"
1257
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.34.0.tgz#ca710858ea85dbfd30c9b416a335dc49e82dbc07"
1258
- integrity sha512-SZ3NEnK4usd2CXkoV3jPa/vo1mWX1fqRyIVUQZR4As1vyp4fneknBNJj+OFtV8WAVgGf+rOHMSqQbs2Qn3nFZQ==
1260
+ "@typescript-eslint/parser@5.35.1":
1261
+ version "5.35.1"
1262
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.35.1.tgz#bf2ee2ebeaa0a0567213748243fb4eec2857f04f"
1263
+ integrity sha512-XL2TBTSrh3yWAsMYpKseBYTVpvudNf69rPOWXWVBI08My2JVT5jR66eTt4IgQFHA/giiKJW5dUD4x/ZviCKyGg==
1259
1264
  dependencies:
1260
- "@typescript-eslint/scope-manager" "5.34.0"
1261
- "@typescript-eslint/types" "5.34.0"
1262
- "@typescript-eslint/typescript-estree" "5.34.0"
1265
+ "@typescript-eslint/scope-manager" "5.35.1"
1266
+ "@typescript-eslint/types" "5.35.1"
1267
+ "@typescript-eslint/typescript-estree" "5.35.1"
1263
1268
  debug "^4.3.4"
1264
1269
 
1265
- "@typescript-eslint/scope-manager@5.34.0":
1266
- version "5.34.0"
1267
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.34.0.tgz#14efd13dc57602937e25f188fd911f118781e527"
1268
- integrity sha512-HNvASMQlah5RsBW6L6c7IJ0vsm+8Sope/wu5sEAf7joJYWNb1LDbJipzmdhdUOnfrDFE6LR1j57x1EYVxrY4ow==
1270
+ "@typescript-eslint/scope-manager@5.35.1":
1271
+ version "5.35.1"
1272
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.35.1.tgz#ccb69d54b7fd0f2d0226a11a75a8f311f525ff9e"
1273
+ integrity sha512-kCYRSAzIW9ByEIzmzGHE50NGAvAP3wFTaZevgWva7GpquDyFPFcmvVkFJGWJJktg/hLwmys/FZwqM9EKr2u24Q==
1269
1274
  dependencies:
1270
- "@typescript-eslint/types" "5.34.0"
1271
- "@typescript-eslint/visitor-keys" "5.34.0"
1275
+ "@typescript-eslint/types" "5.35.1"
1276
+ "@typescript-eslint/visitor-keys" "5.35.1"
1272
1277
 
1273
- "@typescript-eslint/type-utils@5.34.0":
1274
- version "5.34.0"
1275
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.34.0.tgz#7a324ab9ddd102cd5e1beefc94eea6f3eb32d32d"
1276
- integrity sha512-Pxlno9bjsQ7hs1pdWRUv9aJijGYPYsHpwMeCQ/Inavhym3/XaKt1ZKAA8FIw4odTBfowBdZJDMxf2aavyMDkLg==
1278
+ "@typescript-eslint/type-utils@5.35.1":
1279
+ version "5.35.1"
1280
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.35.1.tgz#d50903b56758c5c8fc3be52b3be40569f27f9c4a"
1281
+ integrity sha512-8xT8ljvo43Mp7BiTn1vxLXkjpw8wS4oAc00hMSB4L1/jIiYbjjnc3Qp2GAUOG/v8zsNCd1qwcqfCQ0BuishHkw==
1277
1282
  dependencies:
1278
- "@typescript-eslint/utils" "5.34.0"
1283
+ "@typescript-eslint/utils" "5.35.1"
1279
1284
  debug "^4.3.4"
1280
1285
  tsutils "^3.21.0"
1281
1286
 
1282
- "@typescript-eslint/types@5.34.0":
1283
- version "5.34.0"
1284
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.34.0.tgz#217bf08049e9e7b86694d982e88a2c1566330c78"
1285
- integrity sha512-49fm3xbbUPuzBIOcy2CDpYWqy/X7VBkxVN+DC21e0zIm3+61Z0NZi6J9mqPmSW1BDVk9FIOvuCFyUPjXz93sjA==
1287
+ "@typescript-eslint/types@5.35.1":
1288
+ version "5.35.1"
1289
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.35.1.tgz#af355fe52a0cc88301e889bc4ada72f279b63d61"
1290
+ integrity sha512-FDaujtsH07VHzG0gQ6NDkVVhi1+rhq0qEvzHdJAQjysN+LHDCKDKCBRlZFFE0ec0jKxiv0hN63SNfExy0KrbQQ==
1286
1291
 
1287
- "@typescript-eslint/typescript-estree@5.34.0":
1288
- version "5.34.0"
1289
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.34.0.tgz#ba7b83f4bf8ccbabf074bbf1baca7a58de3ccb9a"
1290
- integrity sha512-mXHAqapJJDVzxauEkfJI96j3D10sd567LlqroyCeJaHnu42sDbjxotGb3XFtGPYKPD9IyLjhsoULML1oI3M86A==
1292
+ "@typescript-eslint/typescript-estree@5.35.1":
1293
+ version "5.35.1"
1294
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.35.1.tgz#db878a39a0dbdc9bb133f11cdad451770bfba211"
1295
+ integrity sha512-JUqE1+VRTGyoXlDWWjm6MdfpBYVq+hixytrv1oyjYIBEOZhBCwtpp5ZSvBt4wIA1MKWlnaC2UXl2XmYGC3BoQA==
1291
1296
  dependencies:
1292
- "@typescript-eslint/types" "5.34.0"
1293
- "@typescript-eslint/visitor-keys" "5.34.0"
1297
+ "@typescript-eslint/types" "5.35.1"
1298
+ "@typescript-eslint/visitor-keys" "5.35.1"
1294
1299
  debug "^4.3.4"
1295
1300
  globby "^11.1.0"
1296
1301
  is-glob "^4.0.3"
1297
1302
  semver "^7.3.7"
1298
1303
  tsutils "^3.21.0"
1299
1304
 
1300
- "@typescript-eslint/utils@5.34.0", "@typescript-eslint/utils@^5.10.0":
1301
- version "5.34.0"
1302
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.34.0.tgz#0cae98f48d8f9e292e5caa9343611b6faf49e743"
1303
- integrity sha512-kWRYybU4Rn++7lm9yu8pbuydRyQsHRoBDIo11k7eqBWTldN4xUdVUMCsHBiE7aoEkFzrUEaZy3iH477vr4xHAQ==
1305
+ "@typescript-eslint/utils@5.35.1", "@typescript-eslint/utils@^5.10.0":
1306
+ version "5.35.1"
1307
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.35.1.tgz#ae1399afbfd6aa7d0ed1b7d941e9758d950250eb"
1308
+ integrity sha512-v6F8JNXgeBWI4pzZn36hT2HXXzoBBBJuOYvoQiaQaEEjdi5STzux3Yj8v7ODIpx36i/5s8TdzuQ54TPc5AITQQ==
1304
1309
  dependencies:
1305
1310
  "@types/json-schema" "^7.0.9"
1306
- "@typescript-eslint/scope-manager" "5.34.0"
1307
- "@typescript-eslint/types" "5.34.0"
1308
- "@typescript-eslint/typescript-estree" "5.34.0"
1311
+ "@typescript-eslint/scope-manager" "5.35.1"
1312
+ "@typescript-eslint/types" "5.35.1"
1313
+ "@typescript-eslint/typescript-estree" "5.35.1"
1309
1314
  eslint-scope "^5.1.1"
1310
1315
  eslint-utils "^3.0.0"
1311
1316
 
1312
- "@typescript-eslint/visitor-keys@5.34.0":
1313
- version "5.34.0"
1314
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.34.0.tgz#d0fb3e31033e82ddd5de048371ad39eb342b2d40"
1315
- integrity sha512-O1moYjOSrab0a2fUvFpsJe0QHtvTC+cR+ovYpgKrAVXzqQyc74mv76TgY6z+aEtjQE2vgZux3CQVtGryqdcOAw==
1317
+ "@typescript-eslint/visitor-keys@5.35.1":
1318
+ version "5.35.1"
1319
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.35.1.tgz#285e9e34aed7c876f16ff646a3984010035898e6"
1320
+ integrity sha512-cEB1DvBVo1bxbW/S5axbGPE6b7FIMAbo3w+AGq6zNDA7+NYJOIkKj/sInfTv4edxd4PxJSgdN4t6/pbvgA+n5g==
1316
1321
  dependencies:
1317
- "@typescript-eslint/types" "5.34.0"
1322
+ "@typescript-eslint/types" "5.35.1"
1318
1323
  eslint-visitor-keys "^3.3.0"
1319
1324
 
1320
1325
  "@ungap/promise-all-settled@1.1.2":
@@ -1643,9 +1648,9 @@ available-typed-arrays@^1.0.5:
1643
1648
  integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==
1644
1649
 
1645
1650
  aws-sdk@^2.1116.0:
1646
- version "2.1200.0"
1647
- resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1200.0.tgz#79d14b342bed68ea07629bbc06f05f5959e4d491"
1648
- integrity sha512-rS16H3j40ba2ZDFNxEdC5qzJ09gpQM0f71rYw47IAOlAycvOkCCAIL/6FqCPRWevmL5X/bkULvM+OG7s31oPrg==
1651
+ version "2.1203.0"
1652
+ resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1203.0.tgz#03289662a1d05084b7f8db602136cbac963ff061"
1653
+ integrity sha512-6HeVddh4HfsH6uXkadergui6cQW5BN2gxVFoxhGytD6lv15xrYgWALQ3iOfcmPg0OLafgnC5RAdFmyPnb7McVw==
1649
1654
  dependencies:
1650
1655
  buffer "4.9.2"
1651
1656
  events "1.1.1"
@@ -1708,13 +1713,13 @@ before-after-hook@^2.2.0:
1708
1713
  integrity sha512-3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==
1709
1714
 
1710
1715
  bin-links@^3.0.0:
1711
- version "3.0.2"
1712
- resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-3.0.2.tgz#5c40f14b0742faa2ae952caa76b4a29090befcbb"
1713
- integrity sha512-+oSWBdbCUK6X4LOCSrU36fWRzZNaK7/evX7GozR9xwl2dyiVi3UOUwTyyOVYI1FstgugfsM9QESRrWo7gjCYbg==
1716
+ version "3.0.3"
1717
+ resolved "https://registry.yarnpkg.com/bin-links/-/bin-links-3.0.3.tgz#3842711ef3db2cd9f16a5f404a996a12db355a6e"
1718
+ integrity sha512-zKdnMPWEdh4F5INR07/eBrodC7QrF5JKvqskjz/ZZRXg5YSAZIbn8zGhbhUrElzHBZ2fvEQdOU59RHcTG3GiwA==
1714
1719
  dependencies:
1715
1720
  cmd-shim "^5.0.0"
1716
1721
  mkdirp-infer-owner "^2.0.0"
1717
- npm-normalize-package-bin "^1.0.0"
1722
+ npm-normalize-package-bin "^2.0.0"
1718
1723
  read-cmd-shim "^3.0.0"
1719
1724
  rimraf "^3.0.0"
1720
1725
  write-file-atomic "^4.0.0"
@@ -1842,9 +1847,9 @@ cacache@^15.0.3, cacache@^15.0.5, cacache@^15.2.0:
1842
1847
  unique-filename "^1.1.1"
1843
1848
 
1844
1849
  cacache@^16.1.0:
1845
- version "16.1.2"
1846
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.2.tgz#a519519e9fc9e5e904575dcd3b77660cbf03f749"
1847
- integrity sha512-Xx+xPlfCZIUHagysjjOAje9nRo8pRDczQCcXb4J2O0BLtH+xeVue6ba4y1kfJfQMAnM2mkcoMIAyOctlaRGWYA==
1850
+ version "16.1.3"
1851
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-16.1.3.tgz#a02b9f34ecfaf9a78c9f4bc16fceb94d5d67a38e"
1852
+ integrity sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==
1848
1853
  dependencies:
1849
1854
  "@npmcli/fs" "^2.1.0"
1850
1855
  "@npmcli/move-file" "^2.0.0"
@@ -1863,7 +1868,7 @@ cacache@^16.1.0:
1863
1868
  rimraf "^3.0.2"
1864
1869
  ssri "^9.0.0"
1865
1870
  tar "^6.1.11"
1866
- unique-filename "^1.1.1"
1871
+ unique-filename "^2.0.0"
1867
1872
 
1868
1873
  caching-transform@^4.0.0:
1869
1874
  version "4.0.0"
@@ -1916,9 +1921,9 @@ camelcase@^6.0.0:
1916
1921
  integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
1917
1922
 
1918
1923
  caniuse-lite@^1.0.30001370:
1919
- version "1.0.30001382"
1920
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001382.tgz#4d37f0d0b6fffb826c8e5e1c0f4bf8ce592db949"
1921
- integrity sha512-2rtJwDmSZ716Pxm1wCtbPvHtbDWAreTPxXbkc5RkKglow3Ig/4GNGazDI9/BVnXbG/wnv6r3B5FEbkfg9OcTGg==
1924
+ version "1.0.30001383"
1925
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001383.tgz#aecf317ccd940690725ae3ae4f28293c5fb8050e"
1926
+ integrity sha512-swMpEoTp5vDoGBZsYZX7L7nXHe6dsHxi9o6/LKf/f0LukVtnrxly5GVb/fWdCDTqi/yw6Km6tiJ0pmBacm0gbg==
1922
1927
 
1923
1928
  capital-case@^1.0.4:
1924
1929
  version "1.0.4"
@@ -2506,14 +2511,14 @@ convert-source-map@^1.7.0:
2506
2511
  safe-buffer "~5.1.1"
2507
2512
 
2508
2513
  core-js-pure@^3.20.2:
2509
- version "3.24.1"
2510
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.24.1.tgz#8839dde5da545521bf282feb7dc6d0b425f39fd3"
2511
- integrity sha512-r1nJk41QLLPyozHUUPmILCEMtMw24NG4oWK6RbsDdjzQgg9ZvrUsPBj1MnG0wXXp1DCDU6j+wUvEmBSrtRbLXg==
2514
+ version "3.25.0"
2515
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.25.0.tgz#f8d1f176ff29abbfeb610110de891d5ae5a361d4"
2516
+ integrity sha512-IeHpLwk3uoci37yoI2Laty59+YqH9x5uR65/yiA0ARAJrTrN4YU0rmauLWfvqOuk77SlNJXj2rM6oT/dBD87+A==
2512
2517
 
2513
2518
  core-js@^3.6.4:
2514
- version "3.24.1"
2515
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.24.1.tgz#cf7724d41724154010a6576b7b57d94c5d66e64f"
2516
- integrity sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==
2519
+ version "3.25.0"
2520
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.25.0.tgz#be71d9e0dd648ffd70c44a7ec2319d039357eceb"
2521
+ integrity sha512-CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==
2517
2522
 
2518
2523
  core-util-is@1.0.2:
2519
2524
  version "1.0.2"
@@ -2919,9 +2924,9 @@ ejs@^3.1.6, ejs@^3.1.8:
2919
2924
  jake "^10.8.5"
2920
2925
 
2921
2926
  electron-to-chromium@^1.4.202:
2922
- version "1.4.226"
2923
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.226.tgz#837ea1d19b8305a913cd5f31d135681c4b6d63b1"
2924
- integrity sha512-CvevLaSiUp0u12K0e+QhMX1hn724nSUNO9ToBek+FMHk/5RofrQs5MChjrD0re0IwqxDFxFMSZD+uic05i2Z5w==
2927
+ version "1.4.231"
2928
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.231.tgz#ae6de219c20aa690bc3d217ff151b208a9bd8ed6"
2929
+ integrity sha512-E8WsUC60chToZUfxvVUXBb1U/mR/Df3GFX+mO3edtQnRTUt6L2XgpqBVWcGD/xrzQdINL1g/CEBPPn0YJ86Y6Q==
2925
2930
 
2926
2931
  emoji-regex@^8.0.0:
2927
2932
  version "8.0.0"
@@ -5683,11 +5688,16 @@ npm-install-checks@^4.0.0:
5683
5688
  dependencies:
5684
5689
  semver "^7.1.1"
5685
5690
 
5686
- npm-normalize-package-bin@^1.0.0, npm-normalize-package-bin@^1.0.1:
5691
+ npm-normalize-package-bin@^1.0.1:
5687
5692
  version "1.0.1"
5688
5693
  resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-1.0.1.tgz#6e79a41f23fd235c0623218228da7d9c23b8f6e2"
5689
5694
  integrity sha512-EPfafl6JL5/rU+ot6P3gRSCpPDW5VmIzX959Ob1+ySFUuuYHWHekXpwdUZcKP5C+DS4GEtdJluwBjnsNDl+fSA==
5690
5695
 
5696
+ npm-normalize-package-bin@^2.0.0:
5697
+ version "2.0.0"
5698
+ resolved "https://registry.yarnpkg.com/npm-normalize-package-bin/-/npm-normalize-package-bin-2.0.0.tgz#9447a1adaaf89d8ad0abe24c6c84ad614a675fff"
5699
+ integrity sha512-awzfKUO7v0FscrSpRoogyNm0sajikhBWpU0QMrW09AMi9n1PoKU6WaIqUzuJSQnpciZZmJ/jMZ2Egfmb/9LiWQ==
5700
+
5691
5701
  npm-package-arg@^8.0.1, npm-package-arg@^8.1.2, npm-package-arg@^8.1.5:
5692
5702
  version "8.1.5"
5693
5703
  resolved "https://registry.yarnpkg.com/npm-package-arg/-/npm-package-arg-8.1.5.tgz#3369b2d5fe8fdc674baa7f1786514ddc15466e44"
@@ -7385,9 +7395,9 @@ to-regex-range@^5.0.1:
7385
7395
  is-number "^7.0.0"
7386
7396
 
7387
7397
  tough-cookie@*:
7388
- version "4.1.0"
7389
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.0.tgz#039b203b2ad95cd9d2a2aae07b238cb83adc46c7"
7390
- integrity sha512-IVX6AagLelGwl6F0E+hoRpXzuD192cZhAcmT7/eoLr0PnsB1wv2E5c+A2O+V8xth9FlL2p0OstFsWn0bZpVn4w==
7398
+ version "4.1.2"
7399
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.2.tgz#e53e84b85f24e0b65dd526f46628db6c85f6b874"
7400
+ integrity sha512-G9fqXWoYFZgTc2z8Q5zaHy/vJMjm+WV0AkAeHxVCQiEB1b+dGvWzFW6QV07cY5jQ5gRkeid2qIkzkxUnmoQZUQ==
7391
7401
  dependencies:
7392
7402
  psl "^1.1.33"
7393
7403
  punycode "^2.1.1"
@@ -7539,10 +7549,10 @@ typedarray@^0.0.6:
7539
7549
  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
7540
7550
  integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==
7541
7551
 
7542
- typescript@4.7.4, typescript@^4.6.4:
7543
- version "4.7.4"
7544
- resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
7545
- integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
7552
+ typescript@4.8.2, typescript@^4.6.4:
7553
+ version "4.8.2"
7554
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.8.2.tgz#e3b33d5ccfb5914e4eeab6699cf208adee3fd790"
7555
+ integrity sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==
7546
7556
 
7547
7557
  uglify-js@^3.1.4:
7548
7558
  version "3.17.0"
@@ -7566,6 +7576,13 @@ unique-filename@^1.1.1:
7566
7576
  dependencies:
7567
7577
  unique-slug "^2.0.0"
7568
7578
 
7579
+ unique-filename@^2.0.0:
7580
+ version "2.0.1"
7581
+ resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-2.0.1.tgz#e785f8675a9a7589e0ac77e0b5c34d2eaeac6da2"
7582
+ integrity sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==
7583
+ dependencies:
7584
+ unique-slug "^3.0.0"
7585
+
7569
7586
  unique-slug@^2.0.0:
7570
7587
  version "2.0.2"
7571
7588
  resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
@@ -7573,6 +7590,13 @@ unique-slug@^2.0.0:
7573
7590
  dependencies:
7574
7591
  imurmurhash "^0.1.4"
7575
7592
 
7593
+ unique-slug@^3.0.0:
7594
+ version "3.0.0"
7595
+ resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-3.0.0.tgz#6d347cf57c8a7a7a6044aabd0e2d74e4d76dc7c9"
7596
+ integrity sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==
7597
+ dependencies:
7598
+ imurmurhash "^0.1.4"
7599
+
7576
7600
  universal-user-agent@^6.0.0:
7577
7601
  version "6.0.0"
7578
7602
  resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"