@salesforce/plugin-agent 1.11.0 → 1.12.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.
@@ -1,12 +1,14 @@
1
1
  # summary
2
2
 
3
- Create an agent in your org from a local agent spec file.
3
+ Create an agent in your org using a local agent spec file.
4
4
 
5
5
  # description
6
6
 
7
- To generate an agent spec file, run the "agent generate spec" CLI command, which outputs a JSON file with the list of jobs and descriptions that the new agent can perform. Then specify this generated spec file to the --spec flag of this command, along with the name of the new agent.
7
+ Before you run this command, you must first generate an agent spec file by running the "agent generate spec" CLI command, which outputs a YAML file with the agent properties and list of AI-generated topics. Topics define the range of jobs the agent can handle. Then specify the generated agent spec file to this command using the --spec flag, along with the name (label) of the new agent using the --agent-name flag.
8
8
 
9
- When this command finishes, your org contains the new agent, which you can then edit in the Agent Builder UI. The new agent already has a list of topics and actions that were automatically created from the list of jobs in the provided agent spec file. This command also retrieves all the metadata files associated with the new agent to your local DX project.
9
+ When this command finishes, your org contains the new agent, which you can then edit in the Agent Builder UI. The new agent's topics are the same as the ones listed in the agent spec file. The agent might also have some AI-generated actions. This command also retrieves all the metadata files associated with the new agent to your local Salesforce DX project.
10
+
11
+ Use the --preview flag to review what the agent looks like without actually saving it in your org. Rather, the command creates a JSON file with all the agent details in the current directory.
10
12
 
11
13
  To open the new agent in your org's Agent Builder UI, run this command: "sf org open agent --name <api-name-of-your-agent>".
12
14
 
@@ -14,12 +16,36 @@ To open the new agent in your org's Agent Builder UI, run this command: "sf org
14
16
 
15
17
  Path to an agent spec file.
16
18
 
17
- # flags.name.summary
19
+ # flags.preview.summary
20
+
21
+ Preview the agent without saving it in your org.
22
+
23
+ # flags.agent-name.summary
24
+
25
+ Name (label) of the new agent.
26
+
27
+ # flags.agent-api-name.summary
28
+
29
+ API name of the new agent; if not specified, the API name is derived from the agent name (label); the API name must not exist in the org.
30
+
31
+ # flags.planner-id.summary
18
32
 
19
- API name of the new agent.
33
+ An existing GenAiPlanner ID to associate with the agent.
34
+
35
+ # error.missingRequiredFlags
36
+
37
+ Missing required flags: %s
38
+
39
+ # error.missingRequiredSpecProperties
40
+
41
+ Missing required spec file properties: %s
20
42
 
21
43
  # examples
22
44
 
23
- - Create an agent called "CustomerSupportAgent" in an org with alias "my-org" using the specified agent spec file:
45
+ - Create an agent called "ResortManager" in an org with alias "my-org" using the specified agent spec file:
46
+
47
+ <%= config.bin %> <%= command.id %> --agent-name ResortManager --spec specs/resortManagerAgent.yaml --target-org my-org
48
+
49
+ - Preview the creation of an agent called "ResortManager" and use your default org:
24
50
 
25
- <%= config.bin %> <%= command.id %> --name CustomerSupportAgent --spec ./config/agentSpec.json --target-org my-org
51
+ <%= config.bin %> <%= command.id %> --agent-name ResortManager --spec specs/resortManagerAgent.yaml --preview
@@ -1,14 +1,18 @@
1
1
  # summary
2
2
 
3
- Generate an agent spec, which is the list of jobs that the agent performs.
3
+ Generate an agent spec, which is a YAML file that captures what an agent can do.
4
4
 
5
5
  # description
6
6
 
7
- When using Salesforce CLI to create an agent in your org, the first step is to generate the local JSON-formatted agent spec file with this command.
7
+ Before you use Salesforce CLI to create an agent in your org, you must first generate an agent spec with this command. An agent spec is a YAML-formatted file that contains information about the agent, such as its role and company description, and then an AI-generated list of topics based on this information. Topics define the range of jobs your agent can handle.
8
8
 
9
- An agent spec is a list of jobs and descriptions that capture what the agent can do. Use flags such as --role and --company-description to provide details about your company and the role that the agent plays in your company; you can also enter the information interactively if you prefer. When you then execute this command, the large language model (LLM) associated with your org uses the information to generate the list of jobs that the agent most likely performs. We recommend that you provide good details for --role, --company-description, etc, so that the LLM can generate the best and most relevant list of jobs and descriptions. Once generated, you can edit the spec file; for example, you can remove jobs that don't apply to your agent.
9
+ Use flags, such as --role and --company-description, to provide details about your company and the role that the agent plays in your company. If you prefer, you can also be prompted for the information. Upon command execution, the large language model (LLM) associated with your org uses the information you provided to generate a list of topics for the agent. Because the LLM uses the company and role information to generate the topics, we recommend that you provide accurate and specific details so the LLM generates the best and most relevant topics. Once generated, you can edit the spec file; for example, you can remove topics that don't apply to your agent or change the description of a particular topic.
10
10
 
11
- When your agent spec is ready, you then create the agent in your org by specifying the agent spec file to the --job-spec flag of the "agent create" CLI command.
11
+ You can iterate the spec generation process by using the --spec flag to pass an existing agent spec file to this command, and then using the --role, --company-description, etc, flags to refine your agent properties. Iteratively improving the description of your agent allows the LLM to generate progressively better topics.
12
+
13
+ You can also specify a custom prompt template that the agent uses, and ground the prompt template to add context and personalization to the agent's prompts.
14
+
15
+ When your agent spec is ready, you then create the agent in your org by running the "agent create" CLI command and specifying the spec with the --spec flag.
12
16
 
13
17
  # flags.type.summary
14
18
 
@@ -30,20 +34,88 @@ Description of your company.
30
34
 
31
35
  Website URL of your company.
32
36
 
33
- # flags.output-dir.summary
37
+ # flags.output-file.summary
38
+
39
+ Path for the generated YAML agent spec file; can be an absolute or relative path.
40
+
41
+ # flags.max-topics.summary
42
+
43
+ Maximum number of topics to generate in the agent spec; default is 10.
44
+
45
+ # flags.max-topics.prompt
46
+
47
+ Max number of topics to generate (1-30)
48
+
49
+ # flags.prompt-template.summary
50
+
51
+ API name of a customized prompt template to use instead of the default prompt template.
52
+
53
+ # flags.grounding-context.summary
54
+
55
+ Context information and personalization that's added to your prompts when using a custom prompt template.
56
+
57
+ # flags.spec.summary
58
+
59
+ Agent spec file, in YAML format, to use as input to the command.
60
+
61
+ # flags.full-interview.summary
62
+
63
+ Prompt for both required and optional flags.
64
+
65
+ # flags.agent-user.summary
66
+
67
+ Username of a user in your org to assign to your agent; determines what your agent can access and do.
68
+
69
+ # flags.agent-user.prompt
34
70
 
35
- Directory where the agent spec file is written; can be an absolute or relative path.
71
+ Username for agent
36
72
 
37
- # flags.file-name.summary
73
+ # flags.enrich-logs.summary
38
74
 
39
- Name of the generated agent spec file.
75
+ Adds agent conversation data to event logs so you can view all agent session activity in one place.
76
+
77
+ # flags.enrich-logs.prompt
78
+
79
+ Enrich event logs
80
+
81
+ # flags.tone.summary
82
+
83
+ Conversational style of the agent, such as how it expresses your brand personality in its messages through word choice, punctuation, and sentence structure.
84
+
85
+ # flags.tone.prompt
86
+
87
+ Agent conversation tone
88
+
89
+ # flags.primary-language.summary
90
+
91
+ Language the agent uses in conversations.
92
+
93
+ # flags.no-prompt.summary
94
+
95
+ Don't prompt the user to confirm spec file overwrite.
40
96
 
41
97
  # examples
42
98
 
43
- - Create an agent spec for your default org in the default location and use flags to specify the agent's role and your company details:
99
+ - Generate an agent spec in the default location and use flags to specify the agent properties, such as its role and your company details; use your default org:
100
+
101
+ <%= config.bin %> <%= command.id %> --type customer --role "Field customer complaints and manage employee schedules." --company-name "Coral Cloud Resorts" --company-description "Provide customers with exceptional destination activities, unforgettable experiences, and reservation services."
102
+
103
+ - Generate an agent spec by being prompted for the required agent properties and generate a maxiumum of 5 topics; write the generated file to the "specs/resortManagerSpec.yaml" file and use the org with alias "my-org":
104
+
105
+ <%= config.bin %> <%= command.id %> --max-topics 5 --output-file specs/resortManagerAgent.yaml --target-org my-org
106
+
107
+ - Specify an existing agent spec file called "specs/resortManagerAgent.yaml", and then overwrite it with a new version that contains newly AI-generated topics based on the updated role information passed in with the --role flag:
108
+
109
+ <%= config.bin %> <%= command.id %> --spec specs/resortManagerAgent.yaml --output-file specs/resortManagerAgent.yaml --role "Field customer complaints, manage employee schedules, and ensure all resort operations are running smoothly" --target-org my-org
110
+
111
+ # error.missingRequiredFlags
112
+
113
+ Missing required flags: %s
114
+
115
+ # confirmSpecOverwrite
44
116
 
45
- <%= config.bin %> <%= command.id %> --type customer --role "Assist users in navigating and managing bookings" --company-name "Coral Cloud" --company-description "Resort that manages guests and their reservations and experiences"
117
+ Confirm overwrite of spec file %s?
46
118
 
47
- - Create an agent spec by being prompted for role and company details interactively; write the generated file to the "specs" directory and use the org with alias "my-org":
119
+ # commandCanceled
48
120
 
49
- <%= config.bin %> <%= command.id %> --output-dir specs --target-org my-org
121
+ Command canceled by user confirmation.
@@ -10,26 +10,6 @@ Directory to write the agent test results into.
10
10
 
11
11
  If the agent test run completes, write the results to the specified directory. If the test is still running, the test results aren't written.
12
12
 
13
- # flags.type.summary
14
-
15
- Type of agent to create.
16
-
17
- # flags.role.summary
18
-
19
- Role of the agent.
20
-
21
- # flags.company-name.summary
22
-
23
- Name of your company.
24
-
25
- # flags.company-description.summary
26
-
27
- Description of your company.
28
-
29
- # flags.company-website.summary
30
-
31
- Website URL of your company.
32
-
33
13
  # error.invalidAgentType
34
14
 
35
15
  agentType must be either "customer" or "internal". Found: [%s]
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-agent",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@salesforce/plugin-agent",
9
- "version": "1.11.0",
9
+ "version": "1.12.0",
10
10
  "license": "BSD-3-Clause",
11
11
  "dependencies": {
12
12
  "@inquirer/figures": "^1.0.7",
13
13
  "@inquirer/prompts": "^7.2.0",
14
14
  "@oclif/core": "^4",
15
15
  "@oclif/multi-stage-output": "^0.7.12",
16
- "@salesforce/agents": "^0.9.0",
16
+ "@salesforce/agents": "^0.9.2",
17
17
  "@salesforce/core": "^8.8.0",
18
18
  "@salesforce/kit": "^3.2.1",
19
19
  "@salesforce/sf-plugins-core": "^12.1.0",
@@ -3350,15 +3350,15 @@
3350
3350
  }
3351
3351
  },
3352
3352
  "node_modules/@salesforce/agents": {
3353
- "version": "0.9.0",
3354
- "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.9.0.tgz",
3355
- "integrity": "sha512-VOoJejtY+tFTUUZhx958IcuZ936hwpoua1G/1wHsJTWHg+gcpsYigSF6oF2T0SD8ZuTxzHiG6l/fopMJZiyutg==",
3353
+ "version": "0.9.2",
3354
+ "resolved": "https://registry.npmjs.org/@salesforce/agents/-/agents-0.9.2.tgz",
3355
+ "integrity": "sha512-z/+mMa1GgiEwFpg+FD40ahzJhtf7Am5G8H+qHXjrUBijk7CdFm5lGZGvX0+LzhxD/Atn44qOo05V3Z3RuN7qYw==",
3356
3356
  "license": "BSD-3-Clause",
3357
3357
  "dependencies": {
3358
3358
  "@salesforce/core": "^8.8.2",
3359
3359
  "@salesforce/kit": "^3.2.3",
3360
3360
  "@salesforce/sf-plugins-core": "^12.1.2",
3361
- "@salesforce/source-deploy-retrieve": "^12.14.0",
3361
+ "@salesforce/source-deploy-retrieve": "^12.14.1",
3362
3362
  "ansis": "^3.9.0",
3363
3363
  "fast-xml-parser": "^4.5.1",
3364
3364
  "nock": "^13.5.6",
@@ -3368,6 +3368,46 @@
3368
3368
  "node": ">=18.0.0"
3369
3369
  }
3370
3370
  },
3371
+ "node_modules/@salesforce/agents/node_modules/@salesforce/source-deploy-retrieve": {
3372
+ "version": "12.14.1",
3373
+ "resolved": "https://registry.npmjs.org/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.14.1.tgz",
3374
+ "integrity": "sha512-8POp6tqoeciDFAv7a40LG21aHZ2XGHvX0/ySqcjcAVhTVhVhcP0EpC+qO+SSKjB6Ocf0/6iXMo5ciU2Eq32ydw==",
3375
+ "license": "BSD-3-Clause",
3376
+ "dependencies": {
3377
+ "@salesforce/core": "^8.8.2",
3378
+ "@salesforce/kit": "^3.2.3",
3379
+ "@salesforce/ts-types": "^2.0.12",
3380
+ "fast-levenshtein": "^3.0.0",
3381
+ "fast-xml-parser": "^4.5.1",
3382
+ "got": "^11.8.6",
3383
+ "graceful-fs": "^4.2.11",
3384
+ "ignore": "^5.3.2",
3385
+ "isbinaryfile": "^5.0.2",
3386
+ "jszip": "^3.10.1",
3387
+ "mime": "2.6.0",
3388
+ "minimatch": "^9.0.5",
3389
+ "proxy-agent": "^6.4.0",
3390
+ "yaml": "^2.6.1"
3391
+ },
3392
+ "engines": {
3393
+ "node": ">=18.0.0"
3394
+ }
3395
+ },
3396
+ "node_modules/@salesforce/agents/node_modules/minimatch": {
3397
+ "version": "9.0.5",
3398
+ "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
3399
+ "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
3400
+ "license": "ISC",
3401
+ "dependencies": {
3402
+ "brace-expansion": "^2.0.1"
3403
+ },
3404
+ "engines": {
3405
+ "node": ">=16 || 14 >=14.17"
3406
+ },
3407
+ "funding": {
3408
+ "url": "https://github.com/sponsors/isaacs"
3409
+ }
3410
+ },
3371
3411
  "node_modules/@salesforce/cli-plugins-testkit": {
3372
3412
  "version": "5.3.35",
3373
3413
  "resolved": "https://registry.npmjs.org/@salesforce/cli-plugins-testkit/-/cli-plugins-testkit-5.3.35.tgz",
@@ -5763,74 +5803,33 @@
5763
5803
  }
5764
5804
  },
5765
5805
  "node_modules/cacheable-request": {
5766
- "version": "10.2.14",
5767
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
5768
- "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
5769
- "dev": true,
5806
+ "version": "7.0.4",
5807
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz",
5808
+ "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==",
5770
5809
  "license": "MIT",
5771
5810
  "dependencies": {
5772
- "@types/http-cache-semantics": "^4.0.2",
5773
- "get-stream": "^6.0.1",
5774
- "http-cache-semantics": "^4.1.1",
5775
- "keyv": "^4.5.3",
5776
- "mimic-response": "^4.0.0",
5777
- "normalize-url": "^8.0.0",
5778
- "responselike": "^3.0.0"
5779
- },
5780
- "engines": {
5781
- "node": ">=14.16"
5782
- }
5783
- },
5784
- "node_modules/cacheable-request/node_modules/lowercase-keys": {
5785
- "version": "3.0.0",
5786
- "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz",
5787
- "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==",
5788
- "dev": true,
5789
- "license": "MIT",
5790
- "engines": {
5791
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
5792
- },
5793
- "funding": {
5794
- "url": "https://github.com/sponsors/sindresorhus"
5795
- }
5796
- },
5797
- "node_modules/cacheable-request/node_modules/mimic-response": {
5798
- "version": "4.0.0",
5799
- "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
5800
- "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
5801
- "dev": true,
5802
- "license": "MIT",
5803
- "engines": {
5804
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
5811
+ "clone-response": "^1.0.2",
5812
+ "get-stream": "^5.1.0",
5813
+ "http-cache-semantics": "^4.0.0",
5814
+ "keyv": "^4.0.0",
5815
+ "lowercase-keys": "^2.0.0",
5816
+ "normalize-url": "^6.0.1",
5817
+ "responselike": "^2.0.0"
5805
5818
  },
5806
- "funding": {
5807
- "url": "https://github.com/sponsors/sindresorhus"
5808
- }
5809
- },
5810
- "node_modules/cacheable-request/node_modules/normalize-url": {
5811
- "version": "8.0.1",
5812
- "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz",
5813
- "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==",
5814
- "dev": true,
5815
- "license": "MIT",
5816
5819
  "engines": {
5817
- "node": ">=14.16"
5818
- },
5819
- "funding": {
5820
- "url": "https://github.com/sponsors/sindresorhus"
5820
+ "node": ">=8"
5821
5821
  }
5822
5822
  },
5823
- "node_modules/cacheable-request/node_modules/responselike": {
5824
- "version": "3.0.0",
5825
- "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
5826
- "integrity": "sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==",
5827
- "dev": true,
5823
+ "node_modules/cacheable-request/node_modules/get-stream": {
5824
+ "version": "5.2.0",
5825
+ "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
5826
+ "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
5828
5827
  "license": "MIT",
5829
5828
  "dependencies": {
5830
- "lowercase-keys": "^3.0.0"
5829
+ "pump": "^3.0.0"
5831
5830
  },
5832
5831
  "engines": {
5833
- "node": ">=14.16"
5832
+ "node": ">=8"
5834
5833
  },
5835
5834
  "funding": {
5836
5835
  "url": "https://github.com/sponsors/sindresorhus"
@@ -8886,39 +8885,6 @@
8886
8885
  "url": "https://github.com/sindresorhus/got?sponsor=1"
8887
8886
  }
8888
8887
  },
8889
- "node_modules/got/node_modules/cacheable-request": {
8890
- "version": "7.0.4",
8891
- "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-7.0.4.tgz",
8892
- "integrity": "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==",
8893
- "license": "MIT",
8894
- "dependencies": {
8895
- "clone-response": "^1.0.2",
8896
- "get-stream": "^5.1.0",
8897
- "http-cache-semantics": "^4.0.0",
8898
- "keyv": "^4.0.0",
8899
- "lowercase-keys": "^2.0.0",
8900
- "normalize-url": "^6.0.1",
8901
- "responselike": "^2.0.0"
8902
- },
8903
- "engines": {
8904
- "node": ">=8"
8905
- }
8906
- },
8907
- "node_modules/got/node_modules/get-stream": {
8908
- "version": "5.2.0",
8909
- "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz",
8910
- "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==",
8911
- "license": "MIT",
8912
- "dependencies": {
8913
- "pump": "^3.0.0"
8914
- },
8915
- "engines": {
8916
- "node": ">=8"
8917
- },
8918
- "funding": {
8919
- "url": "https://github.com/sponsors/sindresorhus"
8920
- }
8921
- },
8922
8888
  "node_modules/graceful-fs": {
8923
8889
  "version": "4.2.11",
8924
8890
  "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
@@ -11989,6 +11955,25 @@
11989
11955
  "node": ">=14.16"
11990
11956
  }
11991
11957
  },
11958
+ "node_modules/oclif/node_modules/cacheable-request": {
11959
+ "version": "10.2.14",
11960
+ "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz",
11961
+ "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==",
11962
+ "dev": true,
11963
+ "license": "MIT",
11964
+ "dependencies": {
11965
+ "@types/http-cache-semantics": "^4.0.2",
11966
+ "get-stream": "^6.0.1",
11967
+ "http-cache-semantics": "^4.1.1",
11968
+ "keyv": "^4.5.3",
11969
+ "mimic-response": "^4.0.0",
11970
+ "normalize-url": "^8.0.0",
11971
+ "responselike": "^3.0.0"
11972
+ },
11973
+ "engines": {
11974
+ "node": ">=14.16"
11975
+ }
11976
+ },
11992
11977
  "node_modules/oclif/node_modules/got": {
11993
11978
  "version": "13.0.0",
11994
11979
  "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz",
@@ -12055,6 +12040,19 @@
12055
12040
  "url": "https://github.com/sponsors/sindresorhus"
12056
12041
  }
12057
12042
  },
12043
+ "node_modules/oclif/node_modules/mimic-response": {
12044
+ "version": "4.0.0",
12045
+ "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz",
12046
+ "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==",
12047
+ "dev": true,
12048
+ "license": "MIT",
12049
+ "engines": {
12050
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
12051
+ },
12052
+ "funding": {
12053
+ "url": "https://github.com/sponsors/sindresorhus"
12054
+ }
12055
+ },
12058
12056
  "node_modules/oclif/node_modules/normalize-package-data": {
12059
12057
  "version": "6.0.1",
12060
12058
  "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.1.tgz",
@@ -12071,6 +12069,19 @@
12071
12069
  "node": "^16.14.0 || >=18.0.0"
12072
12070
  }
12073
12071
  },
12072
+ "node_modules/oclif/node_modules/normalize-url": {
12073
+ "version": "8.0.1",
12074
+ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz",
12075
+ "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==",
12076
+ "dev": true,
12077
+ "license": "MIT",
12078
+ "engines": {
12079
+ "node": ">=14.16"
12080
+ },
12081
+ "funding": {
12082
+ "url": "https://github.com/sponsors/sindresorhus"
12083
+ }
12084
+ },
12074
12085
  "node_modules/oclif/node_modules/p-cancelable": {
12075
12086
  "version": "3.0.0",
12076
12087
  "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz",
package/oclif.lock CHANGED
@@ -1462,15 +1462,15 @@
1462
1462
  resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
1463
1463
  integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
1464
1464
 
1465
- "@salesforce/agents@^0.9.0":
1466
- version "0.9.0"
1467
- resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.9.0.tgz#a1292c7b678451d40c71c0b9e2fd657083616ad8"
1468
- integrity sha512-VOoJejtY+tFTUUZhx958IcuZ936hwpoua1G/1wHsJTWHg+gcpsYigSF6oF2T0SD8ZuTxzHiG6l/fopMJZiyutg==
1465
+ "@salesforce/agents@^0.9.2":
1466
+ version "0.9.2"
1467
+ resolved "https://registry.yarnpkg.com/@salesforce/agents/-/agents-0.9.2.tgz#eacad6fab97cd156484b78a974f47389efaefb27"
1468
+ integrity sha512-z/+mMa1GgiEwFpg+FD40ahzJhtf7Am5G8H+qHXjrUBijk7CdFm5lGZGvX0+LzhxD/Atn44qOo05V3Z3RuN7qYw==
1469
1469
  dependencies:
1470
1470
  "@salesforce/core" "^8.8.2"
1471
1471
  "@salesforce/kit" "^3.2.3"
1472
1472
  "@salesforce/sf-plugins-core" "^12.1.2"
1473
- "@salesforce/source-deploy-retrieve" "^12.14.0"
1473
+ "@salesforce/source-deploy-retrieve" "^12.14.1"
1474
1474
  ansis "^3.9.0"
1475
1475
  fast-xml-parser "^4.5.1"
1476
1476
  nock "^13.5.6"
@@ -1638,6 +1638,26 @@
1638
1638
  proxy-agent "^6.4.0"
1639
1639
  yaml "^2.6.1"
1640
1640
 
1641
+ "@salesforce/source-deploy-retrieve@^12.14.1":
1642
+ version "12.14.1"
1643
+ resolved "https://registry.yarnpkg.com/@salesforce/source-deploy-retrieve/-/source-deploy-retrieve-12.14.1.tgz#9067388b1eb9fadda7e6ccd894e9d1bb0e8407d5"
1644
+ integrity sha512-8POp6tqoeciDFAv7a40LG21aHZ2XGHvX0/ySqcjcAVhTVhVhcP0EpC+qO+SSKjB6Ocf0/6iXMo5ciU2Eq32ydw==
1645
+ dependencies:
1646
+ "@salesforce/core" "^8.8.2"
1647
+ "@salesforce/kit" "^3.2.3"
1648
+ "@salesforce/ts-types" "^2.0.12"
1649
+ fast-levenshtein "^3.0.0"
1650
+ fast-xml-parser "^4.5.1"
1651
+ got "^11.8.6"
1652
+ graceful-fs "^4.2.11"
1653
+ ignore "^5.3.2"
1654
+ isbinaryfile "^5.0.2"
1655
+ jszip "^3.10.1"
1656
+ mime "2.6.0"
1657
+ minimatch "^9.0.5"
1658
+ proxy-agent "^6.4.0"
1659
+ yaml "^2.6.1"
1660
+
1641
1661
  "@salesforce/ts-types@^2.0.10", "@salesforce/ts-types@^2.0.11", "@salesforce/ts-types@^2.0.12":
1642
1662
  version "2.0.12"
1643
1663
  resolved "https://registry.yarnpkg.com/@salesforce/ts-types/-/ts-types-2.0.12.tgz#60420622812a7ec7e46d220667bc29b42dc247ff"