@salesforce/plugin-packaging 2.19.9 → 2.20.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 (58) hide show
  1. package/README.md +29 -29
  2. package/lib/commands/package/bundle/create.d.ts +20 -0
  3. package/lib/commands/package/bundle/create.js +56 -0
  4. package/lib/commands/package/bundle/create.js.map +1 -0
  5. package/lib/commands/package/bundle/delete.d.ts +19 -0
  6. package/lib/commands/package/bundle/delete.js +65 -0
  7. package/lib/commands/package/bundle/delete.js.map +1 -0
  8. package/lib/commands/package/bundle/install/list.d.ts +20 -0
  9. package/lib/commands/package/bundle/install/list.js +81 -0
  10. package/lib/commands/package/bundle/install/list.js.map +1 -0
  11. package/lib/commands/package/bundle/install/report.d.ts +19 -0
  12. package/lib/commands/package/bundle/install/report.js +93 -0
  13. package/lib/commands/package/bundle/install/report.js.map +1 -0
  14. package/lib/commands/package/bundle/install.d.ts +21 -0
  15. package/lib/commands/package/bundle/install.js +109 -0
  16. package/lib/commands/package/bundle/install.js.map +1 -0
  17. package/lib/commands/package/bundle/list.d.ts +18 -0
  18. package/lib/commands/package/bundle/list.js +64 -0
  19. package/lib/commands/package/bundle/list.js.map +1 -0
  20. package/lib/commands/package/bundle/version/create/list.d.ts +22 -0
  21. package/lib/commands/package/bundle/version/create/list.js +130 -0
  22. package/lib/commands/package/bundle/version/create/list.js.map +1 -0
  23. package/lib/commands/package/bundle/version/create/report.d.ts +18 -0
  24. package/lib/commands/package/bundle/version/create/report.js +82 -0
  25. package/lib/commands/package/bundle/version/create/report.js.map +1 -0
  26. package/lib/commands/package/bundle/version/create.d.ts +23 -0
  27. package/lib/commands/package/bundle/version/create.js +125 -0
  28. package/lib/commands/package/bundle/version/create.js.map +1 -0
  29. package/lib/commands/package/bundle/version/list.d.ts +18 -0
  30. package/lib/commands/package/bundle/version/list.js +75 -0
  31. package/lib/commands/package/bundle/version/list.js.map +1 -0
  32. package/lib/commands/package/bundle/version/report.d.ts +22 -0
  33. package/lib/commands/package/bundle/version/report.js +165 -0
  34. package/lib/commands/package/bundle/version/report.js.map +1 -0
  35. package/messages/bundle_create.md +42 -0
  36. package/messages/bundle_install.md +58 -0
  37. package/messages/bundle_install_list.md +69 -0
  38. package/messages/bundle_install_report.md +53 -0
  39. package/messages/bundle_list.md +45 -0
  40. package/messages/bundle_version_create.md +74 -0
  41. package/messages/bundle_version_create_list.md +73 -0
  42. package/messages/bundle_version_create_report.md +49 -0
  43. package/messages/bundle_version_list.md +45 -0
  44. package/messages/bundle_version_report.md +17 -0
  45. package/messages/package_bundle_delete.md +45 -0
  46. package/messages/package_delete.md +5 -5
  47. package/oclif.manifest.json +2927 -1376
  48. package/package.json +7 -6
  49. package/schemas/package-bundle-delete.json +72 -0
  50. package/schemas/package-bundle-install-list.json +58 -0
  51. package/schemas/package-bundle-install-report.json +58 -0
  52. package/schemas/package-bundle-install.json +52 -0
  53. package/schemas/package-bundle-list.json +58 -0
  54. package/schemas/package-bundle-version-create-list.json +73 -0
  55. package/schemas/package-bundle-version-create-report.json +73 -0
  56. package/schemas/package-bundle-version-create.json +67 -0
  57. package/schemas/package-bundle-version-list.json +113 -0
  58. package/schemas/package-bundle-version-report.json +446 -0
@@ -0,0 +1,45 @@
1
+ # summary
2
+
3
+ List all package bundles in the Dev Hub org.
4
+
5
+ # examples
6
+
7
+ List all package bundles in the specified Dev Hub org; uses the Dev Hub org with the username devhub@example.com:
8
+
9
+ sf package bundle list --target-dev-hub <dev_hub_alias>
10
+
11
+ # namespace
12
+
13
+ Namespace Prefix
14
+
15
+ # name
16
+
17
+ Name
18
+
19
+ # id
20
+
21
+ Id
22
+
23
+ # bundle-id
24
+
25
+ Package Bundle Id
26
+
27
+ # alias
28
+
29
+ Alias
30
+
31
+ # description
32
+
33
+ Description
34
+
35
+ # flags.verbose.summary
36
+
37
+ Display extended bundle detail.
38
+
39
+ # error-notification-username
40
+
41
+ Error Notification Username
42
+
43
+ # createdBy
44
+
45
+ Created By
@@ -0,0 +1,74 @@
1
+ # summary
2
+
3
+ Create a new package bundle version.
4
+
5
+ # description
6
+
7
+ Create a new version of a package bundle with the specified components.
8
+
9
+ # examples
10
+
11
+ Create a new version of a package bundle:
12
+
13
+ sf package bundle version create -b MyBundle -p path/to/definition.json
14
+
15
+ # flags.bundle.summary
16
+
17
+ The name or ID of the package bundle to create a version for.
18
+
19
+ # flags.definition-file.summary
20
+
21
+ Path to the JSON file containing the list of components to include in the bundle version.
22
+
23
+ # flags.wait.summary
24
+
25
+ Number of minutes to wait for the command to complete before timing out.
26
+
27
+ # flags.verbose.summary
28
+
29
+ Show verbose output of the command execution.
30
+
31
+ # flags.verbose.description
32
+
33
+ Show detailed information about the bundle version creation process.
34
+
35
+ # flags.version-number.summary
36
+
37
+ Version number of the package bundle version to be created; overrides the sfdx-project.json value.
38
+
39
+ # flags.description.summary
40
+
41
+ Description of the package bundle version.
42
+
43
+ # bundleVersionCreateWaitingStatus
44
+
45
+ Waiting for bundle version creation to complete. %s minutes remaining. Current status: %s
46
+
47
+ # bundleVersionCreateFinalStatus
48
+
49
+ Package Bundle version creation completed with status: %s
50
+
51
+ # multipleErrors
52
+
53
+ The following errors occurred during bundle version creation:
54
+ %s
55
+
56
+ # InProgress
57
+
58
+ Bundle version creation is %s. Use 'sf package bundle version create report -i %s' to check the status later.
59
+
60
+ # requestInProgress
61
+
62
+ Creating bundle version...
63
+
64
+ # packageVersionCreateFinalStatus
65
+
66
+ Package Bundle version creation completed with status: %s
67
+
68
+ # packageVersionCreatePerformingValidations
69
+
70
+ Performing validations on the package bundle version...
71
+
72
+ # bundleVersionCreateSuccess
73
+
74
+ Successfully created bundle version for bundle %s
@@ -0,0 +1,73 @@
1
+ # summary
2
+
3
+ List package version creation requests.
4
+
5
+ # description
6
+
7
+ Shows the details of each request to create a package bundle version in the Dev Hub org.
8
+
9
+ All filter parameters are applied using the AND logical operator (not OR).
10
+
11
+ To get information about a specific request, run "<%= config.bin %> package bundle version create report" and supply the request ID.
12
+
13
+ # flags.status.summary
14
+
15
+ Status of the version creation request, used to filter the list.
16
+
17
+ # flags.show-conversions-only.summary
18
+
19
+ Filter the list output to display only converted package bundle version.
20
+
21
+ # flags.verbose.summary
22
+
23
+ Displays additional information at a slight performance cost, such as the version name and number for each package version create request.
24
+
25
+ # flags.created-last-days.summary
26
+
27
+ Number of days since the request was created, starting at 00:00:00 of first day to now. Use 0 for today.
28
+
29
+ # examples
30
+
31
+ - List all package bundle version creation requests in your default Dev Hub org:
32
+
33
+ <%= config.bin %> <%= command.id %>
34
+
35
+ - List package bundle version creation requests from the last 3 days in the Dev Hub org with username devhub@example.com:
36
+
37
+ <%= config.bin %> <%= command.id %> --created-last-days 3 --target-dev-hub
38
+
39
+ - List package bundle version creation requests with status Error:
40
+
41
+ <%= config.bin %> <%= command.id %> --status Error
42
+
43
+ - List package bundle version creation requests with status Queued:
44
+
45
+ <%= config.bin %> <%= command.id %> --status Queued
46
+
47
+ - List package bundle version creation requests with status Success that were created today:
48
+
49
+ <%= config.bin %> <%= command.id %> --created-last-days 0 --status Success
50
+
51
+ # id
52
+
53
+ ID
54
+
55
+ # status
56
+
57
+ Status
58
+
59
+ # package-id
60
+
61
+ Package Bundle Id
62
+
63
+ # packageVersionId
64
+
65
+ Package Bundle Version Id
66
+
67
+ # createdBy
68
+
69
+ Created By
70
+
71
+ # convertedFromVersionId
72
+
73
+ Converted From Version Id
@@ -0,0 +1,49 @@
1
+ # summary
2
+
3
+ Report on the status of a package bundle version creation request.
4
+
5
+ # description
6
+
7
+ Use this command to check the status of a package bundle version creation request. The command returns information about the request, including its current status and details about the package bundle version being created.
8
+
9
+ # examples
10
+
11
+ - Report on a package bundle version creation request:
12
+
13
+ <%= config.bin %> <%= command.id %> --package-create-request-id 0Ho0x0000000000000
14
+
15
+ - Report on a package bundle version creation request using an alias:
16
+
17
+ <%= config.bin %> force:package:bundle:version:create:report -i 0Ho0x0000000000000
18
+
19
+ # flags.bundle-version-create-request-id.summary
20
+
21
+ The ID of the package bundle version creation request to report on.
22
+
23
+ # id
24
+
25
+ ID
26
+
27
+ # status
28
+
29
+ Status
30
+
31
+ # bundle-id
32
+
33
+ Package Bundle ID
34
+
35
+ # bundle-version-id
36
+
37
+ Package Bundle Version ID
38
+
39
+ # version-name
40
+
41
+ Version Name
42
+
43
+ # created-date
44
+
45
+ Created Date
46
+
47
+ # created-by
48
+
49
+ Created By
@@ -0,0 +1,45 @@
1
+ # summary
2
+
3
+ List all package bundle versions in the Dev Hub org.
4
+
5
+ # examples
6
+
7
+ List package bundle versions in the Dev Hub org with the username devhub@example.com:
8
+
9
+ sf package bundle version list --bundle “Your bundle name or ID” --target-dev-hub devhub@example.com
10
+
11
+ # namespace
12
+
13
+ Namespace Prefix
14
+
15
+ # name
16
+
17
+ Name
18
+
19
+ # id
20
+
21
+ Id
22
+
23
+ # bundle-id
24
+
25
+ Package Bundle Id
26
+
27
+ # alias
28
+
29
+ Alias
30
+
31
+ # description
32
+
33
+ Description
34
+
35
+ # flags.verbose.summary
36
+
37
+ Display extended bundle detail.
38
+
39
+ # error-notification-username
40
+
41
+ Error Notification Username
42
+
43
+ # createdBy
44
+
45
+ Created By
@@ -0,0 +1,17 @@
1
+ # summary
2
+
3
+ Retrieve details about a package bundle version in the Dev Hub org.
4
+
5
+ # examples
6
+
7
+ Retrieve details about the package bundle version; uses the Dev Hub org with the username devhub@example.com:
8
+
9
+ sf package bundle version report --bundle-version "Your bundle version name or ID" --target-dev-hub devhub@example.com
10
+
11
+ # flags.bundle-version.summary
12
+
13
+ ID of the package bundle version to retrieve details for.
14
+
15
+ # flags.verbose.summary
16
+
17
+ Display extended package bundle version details.
@@ -0,0 +1,45 @@
1
+ # summary
2
+
3
+ Delete a package bundle.
4
+
5
+ # description
6
+
7
+ Specify the ID or alias of the package bundle you want to delete.
8
+
9
+ Delete package bundles. Before you delete a package bundle, first delete all associated package bundle versions.
10
+
11
+ # examples
12
+
13
+ - Delete a package bundle using its alias from your default Dev Hub org:
14
+
15
+ <%= config.bin %> <%= command.id %> --bundle "Your Bundle Alias"
16
+
17
+ - Delete a package bundle using its ID from the specified Dev Hub org:
18
+
19
+ <%= config.bin %> <%= command.id %> --bundle 1Fl... --target-dev-hub devhub@example.com
20
+
21
+ # flags.bundle.summary
22
+
23
+ ID (starts with 1Fl) or alias of the package bundle to delete.
24
+
25
+ # flags.no-prompt.summary
26
+
27
+ Don't prompt before deleting the package bundle.
28
+
29
+ # prompt-delete
30
+
31
+ Deleted package bundles can't be recovered.
32
+
33
+ Do you want to continue? (y/n)
34
+
35
+ # prompt-delete-deny
36
+
37
+ The request to delete this package bundle was canceled
38
+
39
+ # humanSuccess
40
+
41
+ Successfully deleted the package bundle %s.
42
+
43
+ # humanError
44
+
45
+ Failed to delete the package bundle.
@@ -22,17 +22,17 @@ Delete unlocked and second-generation managed packages. Before you delete a pack
22
22
 
23
23
  ID (starts with 0Ho) or alias of the package to delete.
24
24
 
25
- # flags.undelete.summary
25
+ # flags.no-prompt.summary
26
26
 
27
- Undelete a deleted package.
27
+ Don't prompt before deleting the package.
28
28
 
29
- # flags.no-prompt.summary
29
+ # flags.undelete.summary
30
30
 
31
- Don’t prompt before deleting the package.
31
+ Undelete a deleted package.
32
32
 
33
33
  # prompt-delete
34
34
 
35
- Deleted packages cant be recovered.
35
+ Deleted packages can't be recovered.
36
36
 
37
37
  Do you want to continue? (y/n)
38
38