@salesforce/plugin-signups 2.3.5 → 2.3.6
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +9 -9
- package/messages/shape.create.md +1 -1
- package/messages/snapshot.create.md +1 -1
- package/npm-shrinkwrap.json +1443 -213
- package/oclif.lock +571 -102
- package/oclif.manifest.json +3 -3
- package/package.json +6 -6
package/oclif.manifest.json
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
],
|
7
7
|
"args": {},
|
8
8
|
"deprecateAliases": true,
|
9
|
-
"description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %>
|
9
|
+
"description": "Scratch org shapes mimic the baseline setup (features, limits, edition, and Metadata API settings) of a source org without the extraneous data and metadata.\n\nRun \"<%= config.bin %> org list shape\" to view the available org shapes and their IDs.\n\nTo create a scratch org from an org shape, include the \"sourceOrg\" property in the scratch org definition file and set it to the org ID of the source org. Then create a scratch org with the \"<%= config.bin %> org create scratch\" command.",
|
10
10
|
"examples": [
|
11
11
|
"Create an org shape for the source org with alias SourceOrg:\n<%= config.bin %> <%= command.id %> --target-org SourceOrg"
|
12
12
|
],
|
@@ -121,7 +121,7 @@
|
|
121
121
|
],
|
122
122
|
"args": {},
|
123
123
|
"deprecateAliases": true,
|
124
|
-
"description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %>
|
124
|
+
"description": "A snapshot is a point-in-time copy of a scratch org. The copy is referenced by its unique name in a scratch org definition file.\n\nUse \"<%= config.bin %> org get snapshot\" to get details, including status, about a snapshot creation request.\n\nTo create a scratch org from a snapshot, include the \"snapshot\" option (instead of \"edition\") in the scratch org definition file and set it to the name of the snapshot. Then use \"<%= config.bin %> org create scratch\" to create the scratch org.",
|
125
125
|
"examples": [
|
126
126
|
"Create a snapshot called \"Dependencies\" using the source scratch org ID and your default Dev Hub org:\n<%= config.bin %> <%= command.id %> --source-org 00Dxx0000000000 --name Dependencies --description 'Contains PackageA v1.1.0'",
|
127
127
|
"Create a snapshot called \"NightlyBranch\" using the source scratch org username and a Dev Hub org with alias NightlyDevHub:\n<%= config.bin %> <%= command.id %> --source-org myuser@myorg --name NightlyBranch --description 'Contains PkgA v2.1.0 and PkgB 3.3.0' --target-dev-hub NightlyDevHub"
|
@@ -866,5 +866,5 @@
|
|
866
866
|
]
|
867
867
|
}
|
868
868
|
},
|
869
|
-
"version": "2.3.
|
869
|
+
"version": "2.3.6"
|
870
870
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@salesforce/plugin-signups",
|
3
3
|
"description": "Commands to interact with org shapes",
|
4
|
-
"version": "2.3.
|
4
|
+
"version": "2.3.6",
|
5
5
|
"author": "Salesforce",
|
6
6
|
"bugs": "https://github.com/forcedotcom/cli/issues",
|
7
7
|
"dependencies": {
|
@@ -16,15 +16,15 @@
|
|
16
16
|
"@oclif/plugin-command-snapshot": "^5.1.9",
|
17
17
|
"@salesforce/cli-plugins-testkit": "^5.3.4",
|
18
18
|
"@salesforce/dev-scripts": "^9.1.2",
|
19
|
-
"@salesforce/plugin-command-reference": "^3.0.
|
19
|
+
"@salesforce/plugin-command-reference": "^3.0.86",
|
20
20
|
"@salesforce/ts-types": "^2.0.9",
|
21
21
|
"@types/chai-as-promised": "^7.1.8",
|
22
22
|
"@types/chai-string": "^1.4.5",
|
23
23
|
"chai-as-promised": "7.1.2",
|
24
24
|
"chai-string": "^1.5.0",
|
25
|
-
"eslint-plugin-sf-plugin": "^1.18.
|
25
|
+
"eslint-plugin-sf-plugin": "^1.18.4",
|
26
26
|
"jsforce": "^2.0.0-beta.28",
|
27
|
-
"oclif": "^4.
|
27
|
+
"oclif": "^4.11.1",
|
28
28
|
"ts-node": "^10.9.2",
|
29
29
|
"typescript": "^5.4.5"
|
30
30
|
},
|
@@ -256,7 +256,7 @@
|
|
256
256
|
"exports": "./lib/index.js",
|
257
257
|
"type": "module",
|
258
258
|
"sfdx": {
|
259
|
-
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.
|
260
|
-
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.
|
259
|
+
"publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.6.crt",
|
260
|
+
"signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-signups/2.3.6.sig"
|
261
261
|
}
|
262
262
|
}
|