@salesforce/plugin-agent 1.3.4 → 1.4.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.
Files changed (37) hide show
  1. package/README.md +100 -20
  2. package/lib/agentTestCache.d.ts +17 -0
  3. package/lib/agentTestCache.js +53 -0
  4. package/lib/agentTestCache.js.map +1 -0
  5. package/lib/commands/agent/test/cancel.d.ts +4 -3
  6. package/lib/commands/agent/test/cancel.js +15 -11
  7. package/lib/commands/agent/test/cancel.js.map +1 -1
  8. package/lib/commands/agent/test/results.d.ts +16 -0
  9. package/lib/commands/agent/test/results.js +38 -0
  10. package/lib/commands/agent/test/results.js.map +1 -0
  11. package/lib/commands/agent/test/resume.d.ts +20 -0
  12. package/lib/commands/agent/test/resume.js +66 -0
  13. package/lib/commands/agent/test/resume.js.map +1 -0
  14. package/lib/commands/agent/test/run.d.ts +6 -7
  15. package/lib/commands/agent/test/run.js +38 -23
  16. package/lib/commands/agent/test/run.js.map +1 -1
  17. package/lib/flags.d.ts +4 -0
  18. package/lib/flags.js +21 -0
  19. package/lib/flags.js.map +1 -0
  20. package/lib/testStages.d.ts +27 -0
  21. package/lib/testStages.js +96 -0
  22. package/lib/testStages.js.map +1 -0
  23. package/messages/agent.test.cancel.md +2 -2
  24. package/messages/agent.test.results.md +19 -0
  25. package/messages/agent.test.resume.md +29 -0
  26. package/messages/agent.test.run.md +5 -9
  27. package/messages/shared.md +3 -0
  28. package/npm-shrinkwrap.json +26 -8
  29. package/oclif.lock +18 -35
  30. package/oclif.manifest.json +226 -13
  31. package/package.json +17 -7
  32. package/schemas/agent-create.json +2 -4
  33. package/schemas/agent-generate-spec.json +2 -4
  34. package/schemas/agent-test-cancel.json +3 -6
  35. package/schemas/agent-test-results.json +145 -0
  36. package/schemas/agent-test-resume.json +19 -0
  37. package/schemas/agent-test-run.json +4 -13
package/lib/flags.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ export declare const resultFormatFlag: import("@oclif/core/interfaces").FlagDefinition<"json" | "human", import("@oclif/core/interfaces").CustomOptions, {
2
+ multiple: false;
3
+ requiredOrDefaulted: true;
4
+ }>;
package/lib/flags.js ADDED
@@ -0,0 +1,21 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * Licensed under the BSD 3-Clause license.
5
+ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
+ */
7
+ import { Flags } from '@salesforce/sf-plugins-core';
8
+ import { Messages } from '@salesforce/core';
9
+ Messages.importMessagesDirectoryFromMetaUrl(import.meta.url);
10
+ const messages = Messages.loadMessages('@salesforce/plugin-agent', 'shared');
11
+ export const resultFormatFlag = Flags.option({
12
+ options: [
13
+ 'json',
14
+ 'human',
15
+ // 'tap',
16
+ // 'junit'
17
+ ],
18
+ default: 'human',
19
+ summary: messages.getMessage('flags.result-format.summary'),
20
+ });
21
+ //# sourceMappingURL=flags.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"flags.js","sourceRoot":"","sources":["../src/flags.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,OAAO,EAAE,KAAK,EAAE,MAAM,6BAA6B,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,QAAQ,CAAC,kCAAkC,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC7D,MAAM,QAAQ,GAAG,QAAQ,CAAC,YAAY,CAAC,0BAA0B,EAAE,QAAQ,CAAC,CAAC;AAE7E,MAAM,CAAC,MAAM,gBAAgB,GAAG,KAAK,CAAC,MAAM,CAAC;IAC3C,OAAO,EAAE;QACP,MAAM;QACN,OAAO;QACP,SAAS;QACT,UAAU;KACF;IACV,OAAO,EAAE,OAAO;IAChB,OAAO,EAAE,QAAQ,CAAC,UAAU,CAAC,6BAA6B,CAAC;CAC5D,CAAC,CAAC"}
@@ -0,0 +1,27 @@
1
+ import { AgentTestDetailsResponse, AgentTester } from '@salesforce/agents';
2
+ import { Duration } from '@salesforce/kit';
3
+ type Data = {
4
+ id: string;
5
+ status: string;
6
+ totalTestCases: number;
7
+ passingTestCases: number;
8
+ failingTestCases: number;
9
+ };
10
+ export declare class TestStages {
11
+ private mso;
12
+ private ux;
13
+ constructor({ title, jsonEnabled }: {
14
+ title: string;
15
+ jsonEnabled: boolean;
16
+ });
17
+ start(data?: Partial<Data>): void;
18
+ poll(agentTester: AgentTester, id: string, wait: Duration): Promise<{
19
+ completed: boolean;
20
+ response?: AgentTestDetailsResponse;
21
+ }>;
22
+ update(data: Partial<Data>): void;
23
+ stop(finalStatus?: 'async'): void;
24
+ error(): void;
25
+ done(data?: Partial<Data>): void;
26
+ }
27
+ export {};
@@ -0,0 +1,96 @@
1
+ /*
2
+ * Copyright (c) 2024, salesforce.com, inc.
3
+ * All rights reserved.
4
+ * Licensed under the BSD 3-Clause license.
5
+ * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
+ */
7
+ import { colorize } from '@oclif/core/ux';
8
+ import { MultiStageOutput } from '@oclif/multi-stage-output';
9
+ import { Lifecycle } from '@salesforce/core';
10
+ import { Ux } from '@salesforce/sf-plugins-core';
11
+ const isTimeoutError = (e) => e?.name === 'PollingClientTimeout';
12
+ export class TestStages {
13
+ mso;
14
+ ux;
15
+ constructor({ title, jsonEnabled }) {
16
+ this.ux = new Ux({ jsonEnabled });
17
+ this.mso = new MultiStageOutput({
18
+ title,
19
+ jsonEnabled,
20
+ stages: ['Starting Tests', 'Polling for Test Results'],
21
+ stageSpecificBlock: [
22
+ {
23
+ stage: 'Polling for Test Results',
24
+ type: 'dynamic-key-value',
25
+ label: 'Status',
26
+ get: (data) => data?.status,
27
+ },
28
+ {
29
+ stage: 'Polling for Test Results',
30
+ type: 'dynamic-key-value',
31
+ label: 'Completed Tests',
32
+ get: (data) => data?.totalTestCases && data?.passingTestCases && data?.failingTestCases
33
+ ? `${data?.passingTestCases + data?.failingTestCases}/${data?.totalTestCases}`
34
+ : undefined,
35
+ },
36
+ {
37
+ stage: 'Polling for Test Results',
38
+ type: 'dynamic-key-value',
39
+ label: 'Passing Tests',
40
+ get: (data) => data?.passingTestCases?.toString(),
41
+ },
42
+ {
43
+ stage: 'Polling for Test Results',
44
+ type: 'dynamic-key-value',
45
+ label: 'Failing Tests',
46
+ get: (data) => data?.failingTestCases?.toString(),
47
+ },
48
+ ],
49
+ postStagesBlock: [
50
+ {
51
+ type: 'dynamic-key-value',
52
+ label: 'Job ID',
53
+ get: (data) => data?.id,
54
+ },
55
+ ],
56
+ });
57
+ }
58
+ start(data) {
59
+ this.mso.skipTo('Starting Tests', data);
60
+ }
61
+ async poll(agentTester, id, wait) {
62
+ this.mso.skipTo('Polling for Test Results');
63
+ const lifecycle = Lifecycle.getInstance();
64
+ lifecycle.on('AGENT_TEST_POLLING_EVENT', async (event) => Promise.resolve(this.update(event)));
65
+ try {
66
+ const response = await agentTester.poll(id, { timeout: wait });
67
+ this.stop();
68
+ return { completed: true, response };
69
+ }
70
+ catch (e) {
71
+ if (isTimeoutError(e)) {
72
+ this.stop('async');
73
+ this.ux.log(`Client timed out after ${wait.minutes} minutes.`);
74
+ this.ux.log(`Run ${colorize('dim', `sf agent test resume --job-id ${id}`)} to resuming watching this test.`);
75
+ return { completed: true };
76
+ }
77
+ else {
78
+ this.error();
79
+ throw e;
80
+ }
81
+ }
82
+ }
83
+ update(data) {
84
+ this.mso.updateData(data);
85
+ }
86
+ stop(finalStatus) {
87
+ this.mso.stop(finalStatus);
88
+ }
89
+ error() {
90
+ this.mso.error();
91
+ }
92
+ done(data) {
93
+ this.mso.skipTo('Done', data);
94
+ }
95
+ }
96
+ //# sourceMappingURL=testStages.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"testStages.js","sourceRoot":"","sources":["../src/testStages.ts"],"names":[],"mappings":"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"}
@@ -6,7 +6,7 @@ Cancel a running test for an Agent.
6
6
 
7
7
  Cancel a running test for an Agent, providing the AiEvaluation ID.
8
8
 
9
- # flags.id.summary
9
+ # flags.job-id.summary
10
10
 
11
11
  The AiEvaluation ID.
12
12
 
@@ -18,4 +18,4 @@ Use the job ID of the most recent test evaluation.
18
18
 
19
19
  - Cancel a test for an Agent:
20
20
 
21
- <%= config.bin %> <%= command.id %> --id AiEvalId
21
+ <%= config.bin %> <%= command.id %> --job-id AiEvalId
@@ -0,0 +1,19 @@
1
+ # summary
2
+
3
+ Get the results of a test evaluation.
4
+
5
+ # description
6
+
7
+ Provide the AiEvaluation ID to get the results of a test evaluation.
8
+
9
+ # flags.job-id.summary
10
+
11
+ The AiEvaluation ID.
12
+
13
+ # flags.use-most-recent.summary
14
+
15
+ Use the job ID of the most recent test evaluation.
16
+
17
+ # examples
18
+
19
+ - <%= config.bin %> <%= command.id %> --job-id AiEvalId
@@ -0,0 +1,29 @@
1
+ # summary
2
+
3
+ Resume a running test for an Agent.
4
+
5
+ # description
6
+
7
+ Resume a running test for an Agent, providing the AiEvaluation ID.
8
+
9
+ # flags.job-id.summary
10
+
11
+ The AiEvaluation ID.
12
+
13
+ # flags.use-most-recent.summary
14
+
15
+ Use the job ID of the most recent test evaluation.
16
+
17
+ # flags.wait.summary
18
+
19
+ Number of minutes to wait for the command to complete and display results to the terminal window.
20
+
21
+ # flags.wait.description
22
+
23
+ If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
24
+
25
+ # examples
26
+
27
+ - Resume a test for an Agent:
28
+
29
+ <%= config.bin %> <%= command.id %> --job-id AiEvalId
@@ -6,13 +6,13 @@ Start a test for an Agent.
6
6
 
7
7
  Start a test for an Agent, providing the AiEvalDefinitionVersion ID. Returns the job ID.
8
8
 
9
- # flags.id.summary
9
+ # flags.name.summary
10
10
 
11
- The AiEvalDefinitionVersion ID.
11
+ The name of the AiEvaluationDefinition to start.
12
12
 
13
- # flags.id.description
13
+ # flags.name.description
14
14
 
15
- The AiEvalDefinitionVersion ID.
15
+ The name of the AiEvaluationDefinition to start.
16
16
 
17
17
  # flags.wait.summary
18
18
 
@@ -22,12 +22,8 @@ Number of minutes to wait for the command to complete and display results to the
22
22
 
23
23
  If the command continues to run after the wait period, the CLI returns control of the terminal window to you.
24
24
 
25
- # flags.output-dir.summary
26
-
27
- Directory in which to store test run files.
28
-
29
25
  # examples
30
26
 
31
27
  - Start a test for an Agent:
32
28
 
33
- <%= config.bin %> <%= command.id %> --id AiEvalDefVerId
29
+ <%= config.bin %> <%= command.id %> --name AiEvalDefVerId
@@ -0,0 +1,3 @@
1
+ # flags.result-format.summary
2
+
3
+ Format of the test run results.
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-agent",
3
- "version": "1.3.4",
3
+ "version": "1.4.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/plugin-agent",
9
- "version": "1.3.4",
9
+ "version": "1.4.0",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
12
  "@inquirer/figures": "^1.0.7",
@@ -14,14 +14,15 @@
14
14
  "@inquirer/select": "^4.0.1",
15
15
  "@oclif/core": "^4",
16
16
  "@oclif/multi-stage-output": "^0.7.12",
17
- "@salesforce/agents": "^0.2.4",
18
- "@salesforce/core": "^8.5.2",
17
+ "@salesforce/agents": "^0.3.0",
18
+ "@salesforce/core": "^8.8.0",
19
19
  "@salesforce/kit": "^3.2.1",
20
- "@salesforce/sf-plugins-core": "^12",
20
+ "@salesforce/sf-plugins-core": "^12.1.0",
21
21
  "ansis": "^3.3.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@oclif/plugin-command-snapshot": "^5.2.19",
25
+ "@oclif/test": "^4.1.0",
25
26
  "@salesforce/cli-plugins-testkit": "^5.3.35",
26
27
  "@salesforce/dev-scripts": "^10.2.10",
27
28
  "@salesforce/plugin-command-reference": "^3.1.29",
@@ -2966,6 +2967,23 @@
2966
2967
  "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
2967
2968
  }
2968
2969
  },
2970
+ "node_modules/@oclif/test": {
2971
+ "version": "4.1.0",
2972
+ "resolved": "https://registry.npmjs.org/@oclif/test/-/test-4.1.0.tgz",
2973
+ "integrity": "sha512-2ugir6NhRsWJqHM9d2lMEWNiOTD678Jlx5chF/fg6TCAlc7E6E/6+zt+polrCTnTIpih5P/HxOtDekgtjgARwQ==",
2974
+ "dev": true,
2975
+ "license": "MIT",
2976
+ "dependencies": {
2977
+ "ansis": "^3.3.2",
2978
+ "debug": "^4.3.6"
2979
+ },
2980
+ "engines": {
2981
+ "node": ">=18.0.0"
2982
+ },
2983
+ "peerDependencies": {
2984
+ "@oclif/core": ">= 3.0.0"
2985
+ }
2986
+ },
2969
2987
  "node_modules/@pkgjs/parseargs": {
2970
2988
  "version": "0.11.0",
2971
2989
  "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz",
@@ -2978,9 +2996,9 @@
2978
2996
  }
2979
2997
  },
2980
2998
  "node_modules/@salesforce/agents": {
2981
- "version": "0.2.4",
2982
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.2.4.tgz",
2983
- "integrity": "sha512-ntJqXhIDG1YsS8qfjEnd4m7CIuZF9VAqkv44FL5Fdslh1vNRwiCA21JJtk1+hZk3EN+JHI/NyZEBYtqckv1fHg==",
2999
+ "version": "0.3.0",
3000
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.3.0.tgz",
3001
+ "integrity": "sha512-BV/Fa+WN8IT5n+bsdDI8wga5dxjY9Rhu6eAvU3OCyRQ7F0nFd5uqLe2Ybo+0gLbGCvGCrV9gt8eJ5z4fsgLoDQ==",
2984
3002
  "license": "BSD-3-Clause",
2985
3003
  "dependencies": {
2986
3004
  "@oclif/table": "^0.3.3",
package/oclif.lock CHANGED
@@ -1360,15 +1360,23 @@
1360
1360
  strip-ansi "^7.1.0"
1361
1361
  wrap-ansi "^9.0.0"
1362
1362
 
1363
+ "@oclif/test@^4.1.0":
1364
+ version "4.1.0"
1365
+ resolved "https://registry.yarnpkg.com/@oclif/test/-/test-4.1.0.tgz#7935e3707cf07480790139e02973196d18d16822"
1366
+ integrity sha512-2ugir6NhRsWJqHM9d2lMEWNiOTD678Jlx5chF/fg6TCAlc7E6E/6+zt+polrCTnTIpih5P/HxOtDekgtjgARwQ==
1367
+ dependencies:
1368
+ ansis "^3.3.2"
1369
+ debug "^4.3.6"
1370
+
1363
1371
  "@pkgjs/parseargs@^0.11.0":
1364
1372
  version "0.11.0"
1365
1373
  resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
1366
1374
  integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
1367
1375
 
1368
- "@salesforce/agents@^0.2.4":
1369
- version "0.2.4"
1370
- resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.2.4.tgz#df599a7fd69535f30afa1012d0b89fa90edd42af"
1371
- integrity sha512-ntJqXhIDG1YsS8qfjEnd4m7CIuZF9VAqkv44FL5Fdslh1vNRwiCA21JJtk1+hZk3EN+JHI/NyZEBYtqckv1fHg==
1376
+ "@salesforce/agents@^0.3.0":
1377
+ version "0.3.0"
1378
+ resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.3.0.tgz#5f58d69eca1dde07daaf88bc2226b1a09e579666"
1379
+ integrity sha512-BV/Fa+WN8IT5n+bsdDI8wga5dxjY9Rhu6eAvU3OCyRQ7F0nFd5uqLe2Ybo+0gLbGCvGCrV9gt8eJ5z4fsgLoDQ==
1372
1380
  dependencies:
1373
1381
  "@oclif/table" "^0.3.3"
1374
1382
  "@salesforce/core" "^8.8.0"
@@ -1392,7 +1400,7 @@
1392
1400
  strip-ansi "6.0.1"
1393
1401
  ts-retry-promise "^0.8.1"
1394
1402
 
1395
- "@salesforce/core@^8.5.1", "@salesforce/core@^8.5.2", "@salesforce/core@^8.5.7", "@salesforce/core@^8.6.2", "@salesforce/core@^8.6.3", "@salesforce/core@^8.8.0":
1403
+ "@salesforce/core@^8.5.1", "@salesforce/core@^8.5.7", "@salesforce/core@^8.6.2", "@salesforce/core@^8.6.3", "@salesforce/core@^8.8.0":
1396
1404
  version "8.8.0"
1397
1405
  resolved "https://registry.yarnpkg.com/@salesforce/core/-/core-8.8.0.tgz#849c07ea3a2548ca201fc0fe8baef9b36a462194"
1398
1406
  integrity sha512-HWGdRiy/MPCJ2KHz+W+cnqx0O9xhx9+QYvwP8bn9PE27wj0A/NjTi4xrqIWk1M+fE4dXHycE+8qPf4b540euvg==
@@ -1502,7 +1510,7 @@
1502
1510
  string-width "^7.2.0"
1503
1511
  terminal-link "^3.0.0"
1504
1512
 
1505
- "@salesforce/sf-plugins-core@^12", "@salesforce/sf-plugins-core@^12.1.0":
1513
+ "@salesforce/sf-plugins-core@^12.1.0":
1506
1514
  version "12.1.0"
1507
1515
  resolved "https://registry.yarnpkg.com/@salesforce/sf-plugins-core/-/sf-plugins-core-12.1.0.tgz#874531acb39755a634ceda5de6462c3b6256baf6"
1508
1516
  integrity sha512-xJXF0WE+4lq2kb/w24wcZc+76EUCIKv7dj1oATugk9JFzYKySdC1smzCY/BhPGzMQGvXcbkWo5PG5iXDBrtwYQ==
@@ -3215,7 +3223,7 @@ dateformat@^4.6.3:
3215
3223
  resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-4.6.3.tgz#556fa6497e5217fedb78821424f8a1c22fa3f4b5"
3216
3224
  integrity sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==
3217
3225
 
3218
- debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.7:
3226
+ debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.3.5, debug@^4.3.6, debug@^4.3.7:
3219
3227
  version "4.3.7"
3220
3228
  resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.7.tgz#87945b4151a011d76d95a198d7111c865c360a52"
3221
3229
  integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
@@ -6767,16 +6775,7 @@ stack-utils@^2.0.6:
6767
6775
  dependencies:
6768
6776
  escape-string-regexp "^2.0.0"
6769
6777
 
6770
- "string-width-cjs@npm:string-width@^4.2.0":
6771
- version "4.2.3"
6772
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
6773
- integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
6774
- dependencies:
6775
- emoji-regex "^8.0.0"
6776
- is-fullwidth-code-point "^3.0.0"
6777
- strip-ansi "^6.0.1"
6778
-
6779
- string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
6778
+ "string-width-cjs@npm:string-width@^4.2.0", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
6780
6779
  version "4.2.3"
6781
6780
  resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
6782
6781
  integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
@@ -6844,14 +6843,7 @@ string_decoder@~1.1.1:
6844
6843
  dependencies:
6845
6844
  safe-buffer "~5.1.0"
6846
6845
 
6847
- "strip-ansi-cjs@npm:strip-ansi@^6.0.1":
6848
- version "6.0.1"
6849
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
6850
- integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
6851
- dependencies:
6852
- ansi-regex "^5.0.1"
6853
-
6854
- strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
6846
+ "strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@6.0.1, strip-ansi@^6.0.0, strip-ansi@^6.0.1:
6855
6847
  version "6.0.1"
6856
6848
  resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
6857
6849
  integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
@@ -7418,7 +7410,7 @@ workerpool@^6.5.1:
7418
7410
  resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.5.1.tgz#060f73b39d0caf97c6db64da004cd01b4c099544"
7419
7411
  integrity sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==
7420
7412
 
7421
- "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
7413
+ "wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0:
7422
7414
  version "7.0.0"
7423
7415
  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
7424
7416
  integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
@@ -7436,15 +7428,6 @@ wrap-ansi@^6.2.0:
7436
7428
  string-width "^4.1.0"
7437
7429
  strip-ansi "^6.0.0"
7438
7430
 
7439
- wrap-ansi@^7.0.0:
7440
- version "7.0.0"
7441
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
7442
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
7443
- dependencies:
7444
- ansi-styles "^4.0.0"
7445
- string-width "^4.1.0"
7446
- strip-ansi "^6.0.0"
7447
-
7448
7431
  wrap-ansi@^8.1.0:
7449
7432
  version "8.1.0"
7450
7433
  resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"