@salesforce/plugin-orchestrator 1.0.16 → 1.0.18

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/package.json CHANGED
@@ -1,25 +1,25 @@
1
1
  {
2
2
  "name": "@salesforce/plugin-orchestrator",
3
3
  "description": "Plugin for working with SalesForce analytic apps, templates, assets and services.",
4
- "version": "1.0.16",
4
+ "version": "1.0.18",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/forcedotcom/cli/issues",
7
7
  "dependencies": {
8
8
  "@oclif/core": "^4",
9
- "@salesforce/core": "^8.22.0",
9
+ "@salesforce/core": "^8.23.0",
10
10
  "@salesforce/kit": "^3.2.1",
11
11
  "@salesforce/sf-plugins-core": "^12",
12
12
  "ansis": "^3.17.0",
13
13
  "eslint": "^8.56.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@oclif/plugin-command-snapshot": "^5.3.5",
17
- "@salesforce/cli-plugins-testkit": "^5.3.39",
16
+ "@oclif/plugin-command-snapshot": "^5.3.6",
17
+ "@salesforce/cli-plugins-testkit": "^5.3.41",
18
18
  "@salesforce/dev-scripts": "^11.0.2",
19
- "@salesforce/plugin-command-reference": "^3.1.66",
19
+ "@salesforce/plugin-command-reference": "^3.1.72",
20
20
  "eslint-config-salesforce-license": "^1.0.1",
21
21
  "eslint-plugin-sf-plugin": "^1.20.31",
22
- "oclif": "^4.22.14",
22
+ "oclif": "^4.22.24",
23
23
  "ts-node": "^10.9.2",
24
24
  "typescript": "^5.5.4"
25
25
  },
@@ -56,13 +56,13 @@
56
56
  ],
57
57
  "topics": {
58
58
  "orchestrator": {
59
- "description": "Commands to work with AppFramework apps and templates"
59
+ "description": "Commands to work with apps and templates"
60
60
  },
61
61
  "orchestrator:app": {
62
- "description": "Work with AppFramework apps"
62
+ "description": "Work with apps"
63
63
  },
64
64
  "orchestrator:template": {
65
- "description": "Work with AppFramework templates"
65
+ "description": "Work with templates"
66
66
  }
67
67
  },
68
68
  "flexibleTaxonomy": true
@@ -207,7 +207,7 @@
207
207
  "exports": "./lib/index.js",
208
208
  "type": "module",
209
209
  "sfdx": {
210
- "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.16.crt",
211
- "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.16.sig"
210
+ "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.18.crt",
211
+ "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-orchestrator/1.0.18.sig"
212
212
  }
213
213
  }
@@ -1,82 +0,0 @@
1
- # summary
2
-
3
- Decouple an AppFramework app from its template.
4
-
5
- # description
6
-
7
- Decouples an AppFramework app from its template. This allows the app to be modified independently without being affected by template updates. You must specify either the app-id or app-name flag to identify the app to decouple.
8
-
9
- # flags.target-org.summary
10
-
11
- Login username or alias for the target org.
12
-
13
- # flags.target-org.description
14
-
15
- Overrides your default org.
16
-
17
- # flags.api-version.summary
18
-
19
- Override the api version used for api requests made by this command.
20
-
21
- # flags.api-version.description
22
-
23
- Override the api version used for api requests made by this command.
24
-
25
- # flags.app-id.summary
26
-
27
- ID of the app to decouple.
28
-
29
- # flags.app-id.description
30
-
31
- Specify the ID of the app to decouple. Either this or app-name is required.
32
-
33
- # flags.app-name.summary
34
-
35
- Name of the app to decouple.
36
-
37
- # flags.app-name.description
38
-
39
- Specify the name of the app to decouple. Either this or app-id is required.
40
-
41
- # noAppSpecified
42
-
43
- No app specified for decoupling. You must specify either an app ID with --app-id or an app name with --app-name.
44
-
45
- # fetchingApp
46
-
47
- Fetching app details...
48
-
49
- # decouplingApp
50
-
51
- Decoupling app from template...
52
-
53
- # noAppFound
54
-
55
- No app found with the specified ID or name.
56
-
57
- # noTemplateFound
58
-
59
- The specified app does not have an associated template to decouple from.
60
-
61
- # decoupleSuccess
62
-
63
- Successfully decoupled app: %s
64
-
65
- # error.DecoupleError
66
-
67
- Failed to decouple app: %s
68
-
69
- # error.DecoupleError.Actions
70
-
71
- - Check that the app ID or name is correct
72
- - Verify the app is associated with a template
73
- - Ensure you have permissions to decouple apps in this org
74
- - Try running with --debug for more details
75
-
76
- # examples
77
-
78
- - Decouple an app by ID:
79
- <%= config.bin %> <%= command.id %> --app-id 00Dxx0000000001
80
-
81
- - Decouple an app by name:
82
- <%= config.bin %> <%= command.id %> --app-name "My App"