@salesforce/plugin-community 3.2.14 → 3.2.16
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/README.md +6 -4
- package/lib/commands/community/create.d.ts +7 -7
- package/lib/commands/community/list/template.d.ts +3 -3
- package/lib/commands/community/publish.d.ts +4 -4
- package/npm-shrinkwrap.json +1410 -2055
- package/oclif.lock +754 -1123
- package/oclif.manifest.json +1 -1
- package/package.json +11 -11
package/README.md
CHANGED
|
@@ -154,7 +154,9 @@ FLAG DESCRIPTIONS
|
|
|
154
154
|
|
|
155
155
|
The description displays in Digital Experiences - All Sites in Setup and helps with site identification.
|
|
156
156
|
|
|
157
|
-
-p, --url-path-prefix=<value>
|
|
157
|
+
-p, --url-path-prefix=<value>
|
|
158
|
+
|
|
159
|
+
URL to append to the domain created when Digital Experiences was enabled for this org.
|
|
158
160
|
|
|
159
161
|
For example, if your domain name is https://MyDomainName.my.site.com and you create a customer site, enter
|
|
160
162
|
'customers' to create the unique URL https://MyDomainName.my.site.com/customers.
|
|
@@ -165,7 +167,7 @@ FLAG DESCRIPTIONS
|
|
|
165
167
|
available in your org.
|
|
166
168
|
```
|
|
167
169
|
|
|
168
|
-
_See code: [src/commands/community/create.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.
|
|
170
|
+
_See code: [src/commands/community/create.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.16/src/commands/community/create.ts)_
|
|
169
171
|
|
|
170
172
|
## `sf community list template`
|
|
171
173
|
|
|
@@ -200,7 +202,7 @@ EXAMPLES
|
|
|
200
202
|
$ sf community list template --target-org my-scratch-org
|
|
201
203
|
```
|
|
202
204
|
|
|
203
|
-
_See code: [src/commands/community/list/template.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.
|
|
205
|
+
_See code: [src/commands/community/list/template.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.16/src/commands/community/list/template.ts)_
|
|
204
206
|
|
|
205
207
|
## `sf community publish`
|
|
206
208
|
|
|
@@ -249,6 +251,6 @@ EXAMPLES
|
|
|
249
251
|
$ sf community publish --name 'My Customer Site'
|
|
250
252
|
```
|
|
251
253
|
|
|
252
|
-
_See code: [src/commands/community/publish.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.
|
|
254
|
+
_See code: [src/commands/community/publish.ts](https://github.com/salesforcecli/plugin-community/blob/3.2.16/src/commands/community/publish.ts)_
|
|
253
255
|
|
|
254
256
|
<!-- commandsstop -->
|
|
@@ -13,13 +13,13 @@ export declare class CommunityCreateCommand extends SfCommand<CommunityCreateRes
|
|
|
13
13
|
static readonly examples: string[];
|
|
14
14
|
static readonly strict = false;
|
|
15
15
|
static readonly flags: {
|
|
16
|
-
name: import("@oclif/core/
|
|
17
|
-
'template-name': import("@oclif/core/
|
|
18
|
-
'url-path-prefix': import("@oclif/core/
|
|
19
|
-
description: import("@oclif/core/
|
|
20
|
-
'target-org': import("@oclif/core/
|
|
21
|
-
loglevel: import("@oclif/core/
|
|
22
|
-
'api-version': import("@oclif/core/
|
|
16
|
+
name: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
'template-name': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
|
+
'url-path-prefix': import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
19
|
+
description: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
20
|
+
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
21
|
+
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
22
|
+
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
23
23
|
};
|
|
24
24
|
run(): Promise<CommunityCreateResponse>;
|
|
25
25
|
private displayResults;
|
|
@@ -11,9 +11,9 @@ export declare class CommunityListTemplatesCommand extends SfCommand<CommunityTe
|
|
|
11
11
|
static readonly description: string;
|
|
12
12
|
static readonly examples: string[];
|
|
13
13
|
static readonly flags: {
|
|
14
|
-
'target-org': import("@oclif/core/
|
|
15
|
-
'api-version': import("@oclif/core/
|
|
16
|
-
loglevel: import("@oclif/core/
|
|
14
|
+
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
17
|
};
|
|
18
18
|
run(): Promise<CommunityTemplatesListResponse>;
|
|
19
19
|
private displayResults;
|
|
@@ -11,10 +11,10 @@ export declare class CommunityPublishCommand extends SfCommand<CommunityPublishR
|
|
|
11
11
|
static readonly description: string;
|
|
12
12
|
static readonly examples: string[];
|
|
13
13
|
static readonly flags: {
|
|
14
|
-
name: import("@oclif/core/
|
|
15
|
-
'target-org': import("@oclif/core/
|
|
16
|
-
'api-version': import("@oclif/core/
|
|
17
|
-
loglevel: import("@oclif/core/
|
|
14
|
+
name: import("@oclif/core/interfaces").OptionFlag<string, import("@oclif/core/interfaces").CustomOptions>;
|
|
15
|
+
'target-org': import("@oclif/core/interfaces").OptionFlag<import("@salesforce/core").Org, import("@oclif/core/interfaces").CustomOptions>;
|
|
16
|
+
'api-version': import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
17
|
+
loglevel: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>;
|
|
18
18
|
};
|
|
19
19
|
run(): Promise<CommunityPublishResponse>;
|
|
20
20
|
private displayResults;
|