@pnp/cli-microsoft365 8.0.0-beta.e6f9331 → 8.1.0-beta.309a9b8
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/.eslintrc.cjs +1 -0
- package/allCommands.json +1 -1
- package/allCommandsFull.json +1 -1
- package/dist/Auth.js +10 -18
- package/dist/Command.js +50 -5
- package/dist/chili/chili.js +0 -23
- package/dist/cli/cli.js +100 -100
- package/dist/m365/commands/login.js +49 -96
- package/dist/m365/commands/setup.js +0 -4
- package/dist/m365/connection/commands/connection-remove.js +6 -2
- package/dist/m365/connection/commands/connection-set.js +4 -1
- package/dist/m365/connection/commands/connection-use.js +25 -4
- package/dist/m365/entra/commands/enterpriseapp/enterpriseapp-remove.js +123 -0
- package/dist/m365/entra/commands/group/group-set.js +256 -0
- package/dist/m365/entra/commands/m365group/m365group-set.js +66 -29
- package/dist/m365/entra/commands/m365group/m365group-user-add.js +109 -32
- package/dist/m365/entra/commands/m365group/m365group-user-set.js +159 -84
- package/dist/m365/entra/commands/multitenant/MultitenantOrganization.js +2 -0
- package/dist/m365/entra/commands/multitenant/multitenant-add.js +65 -0
- package/dist/m365/entra/commands/multitenant/multitenant-get.js +32 -0
- package/dist/m365/entra/commands/multitenant/multitenant-remove.js +118 -0
- package/dist/m365/entra/commands/multitenant/multitenant-set.js +72 -0
- package/dist/m365/entra/commands.js +7 -0
- package/dist/m365/external/commands/connection/connection-doctor.js +10 -24
- package/dist/m365/flow/commands/flow-get.js +1 -1
- package/dist/m365/flow/commands/flow-list.js +2 -1
- package/dist/m365/graph/commands/subscription/subscription-add.js +4 -2
- package/dist/m365/onenote/commands/notebook/notebook-add.js +132 -0
- package/dist/m365/onenote/commands.js +1 -0
- package/dist/m365/pa/commands/app/app-export.js +13 -7
- package/dist/m365/spe/ContainerTypeProperties.js +2 -0
- package/dist/m365/spe/commands/containertype/containertype-list.js +49 -0
- package/dist/m365/spe/commands.js +2 -1
- package/dist/m365/spfx/commands/project/base-project-command.js +36 -126
- package/dist/m365/spo/commands/applicationcustomizer/applicationcustomizer-get.js +16 -21
- package/dist/m365/spo/commands/commandset/commandset-get.js +31 -17
- package/dist/m365/spo/commands/contenttype/contenttype-field-list.js +124 -0
- package/dist/m365/spo/commands/field/field-list.js +1 -1
- package/dist/m365/spo/commands/file/file-roleassignment-add.js +1 -1
- package/dist/m365/spo/commands/file/file-roleinheritance-break.js +1 -1
- package/dist/m365/spo/commands/file/file-roleinheritance-reset.js +1 -1
- package/dist/m365/spo/commands/folder/folder-retentionlabel-ensure.js +1 -1
- package/dist/m365/spo/commands/folder/folder-sharinglink-get.js +86 -0
- package/dist/m365/spo/commands/folder/folder-sharinglink-list.js +110 -0
- package/dist/m365/spo/commands/list/ListInstance.js +6 -1
- package/dist/m365/spo/commands/list/list-get.js +9 -3
- package/dist/m365/spo/commands/list/list-roleassignment-add.js +46 -21
- package/dist/m365/spo/commands/list/list-roleassignment-remove.js +48 -46
- package/dist/m365/spo/commands/page/page-clientsidewebpart-add.js +2 -3
- package/dist/m365/spo/commands/page/page-text-add.js +2 -3
- package/dist/m365/spo/commands/site/site-get.js +12 -16
- package/dist/m365/spo/commands/spo-search.js +3 -4
- package/dist/m365/spo/commands/tenant/tenant-applicationcustomizer-get.js +19 -5
- package/dist/m365/spo/commands/tenant/tenant-commandset-get.js +20 -6
- package/dist/m365/spo/commands.js +3 -0
- package/dist/m365/teams/commands/meeting/meeting-attendancereport-get.js +119 -0
- package/dist/m365/teams/commands/message/message-remove.js +112 -0
- package/dist/m365/teams/commands/message/message-restore.js +106 -0
- package/dist/m365/teams/commands.js +3 -0
- package/dist/m365/viva/commands/engage/engage-community-add.js +166 -0
- package/dist/m365/viva/commands.js +1 -0
- package/dist/utils/drive.js +61 -0
- package/dist/utils/formatting.js +30 -1
- package/dist/utils/spo.js +69 -6
- package/dist/utils/teams.js +49 -0
- package/dist/utils/zod.js +124 -0
- package/docs/docs/cmd/connection/connection-use.mdx +8 -2
- package/docs/docs/cmd/entra/enterpriseapp/enterpriseapp-remove.mdx +65 -0
- package/docs/docs/cmd/entra/group/group-add.mdx +0 -4
- package/docs/docs/cmd/entra/group/group-set.mdx +89 -0
- package/docs/docs/cmd/entra/m365group/m365group-set.mdx +37 -7
- package/docs/docs/cmd/entra/m365group/m365group-user-add.mdx +28 -10
- package/docs/docs/cmd/entra/m365group/m365group-user-set.mdx +35 -11
- package/docs/docs/cmd/entra/multitenant/multitenant-add.mdx +107 -0
- package/docs/docs/cmd/entra/multitenant/multitenant-get.mdx +94 -0
- package/docs/docs/cmd/entra/multitenant/multitenant-remove.mdx +58 -0
- package/docs/docs/cmd/entra/multitenant/multitenant-set.mdx +53 -0
- package/docs/docs/cmd/external/connection/connection-doctor.mdx +9 -9
- package/docs/docs/cmd/flow/flow-get.mdx +149 -283
- package/docs/docs/cmd/graph/subscription/subscription-add.mdx +18 -0
- package/docs/docs/cmd/onenote/notebook/notebook-add.mdx +169 -0
- package/docs/docs/cmd/pa/app/app-export.mdx +15 -9
- package/docs/docs/cmd/planner/plan/plan-remove.mdx +1 -1
- package/docs/docs/cmd/spe/containertype/containertype-list.mdx +102 -0
- package/docs/docs/cmd/spo/app/app-uninstall.mdx +1 -1
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-get.mdx +87 -38
- package/docs/docs/cmd/spo/applicationcustomizer/applicationcustomizer-list.mdx +22 -28
- package/docs/docs/cmd/spo/commandset/commandset-get.mdx +75 -24
- package/docs/docs/cmd/spo/commandset/commandset-list.mdx +26 -32
- package/docs/docs/cmd/spo/contenttype/contenttype-field-list.mdx +172 -0
- package/docs/docs/cmd/spo/contenttype/contenttype-list.mdx +3 -3
- package/docs/docs/cmd/spo/field/field-list.mdx +3 -3
- package/docs/docs/cmd/spo/file/file-retentionlabel-ensure.mdx +1 -1
- package/docs/docs/cmd/spo/file/file-roleassignment-add.mdx +2 -2
- package/docs/docs/cmd/spo/file/file-roleassignment-remove.mdx +1 -1
- package/docs/docs/cmd/spo/file/file-roleinheritance-break.mdx +1 -1
- package/docs/docs/cmd/spo/file/file-roleinheritance-reset.mdx +1 -1
- package/docs/docs/cmd/spo/folder/folder-retentionlabel-ensure.mdx +2 -2
- package/docs/docs/cmd/spo/folder/folder-sharinglink-get.mdx +110 -0
- package/docs/docs/cmd/spo/folder/folder-sharinglink-list.mdx +114 -0
- package/docs/docs/cmd/spo/list/list-get.mdx +6 -0
- package/docs/docs/cmd/spo/list/list-roleassignment-add.mdx +15 -3
- package/docs/docs/cmd/spo/list/list-roleassignment-remove.mdx +15 -3
- package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-ensure.mdx +4 -4
- package/docs/docs/cmd/spo/listitem/listitem-retentionlabel-remove.mdx +1 -1
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-add.mdx +9 -9
- package/docs/docs/cmd/spo/listitem/listitem-roleassignment-remove.mdx +7 -7
- package/docs/docs/cmd/spo/site/site-recyclebinitem-list.mdx +1 -1
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-get.mdx +79 -30
- package/docs/docs/cmd/spo/tenant/tenant-applicationcustomizer-list.mdx +20 -19
- package/docs/docs/cmd/spo/tenant/tenant-commandset-get.mdx +84 -38
- package/docs/docs/cmd/spo/tenant/tenant-commandset-list.mdx +20 -19
- package/docs/docs/cmd/spo/web/web-roleassignment-add.mdx +1 -1
- package/docs/docs/cmd/spo/web/web-roleassignment-remove.mdx +1 -1
- package/docs/docs/cmd/teams/meeting/meeting-attendancereport-get.mdx +138 -0
- package/docs/docs/cmd/teams/meeting/meeting-list.mdx +7 -3
- package/docs/docs/cmd/teams/message/message-remove.mdx +64 -0
- package/docs/docs/cmd/teams/message/message-restore.mdx +62 -0
- package/docs/docs/cmd/viva/engage/engage-community-add.mdx +168 -0
- package/npm-shrinkwrap.json +987 -1327
- package/package.json +27 -24
|
@@ -5,11 +5,10 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
5
5
|
};
|
|
6
6
|
var _ExternalConnectionDoctorCommand_instances, _a, _ExternalConnectionDoctorCommand_initOptions, _ExternalConnectionDoctorCommand_initValidators;
|
|
7
7
|
import os from 'os';
|
|
8
|
-
import { cli } from '../../../../cli/cli.js';
|
|
9
8
|
import request from '../../../../request.js';
|
|
10
|
-
import { settingsNames } from '../../../../settingsNames.js';
|
|
11
9
|
import GraphCommand from '../../../base/GraphCommand.js';
|
|
12
10
|
import commands from '../../commands.js';
|
|
11
|
+
import { CheckStatus, formatting } from '../../../../utils/formatting.js';
|
|
13
12
|
class ExternalConnectionDoctorCommand extends GraphCommand {
|
|
14
13
|
get name() {
|
|
15
14
|
return commands.CONNECTION_DOCTOR;
|
|
@@ -28,9 +27,7 @@ class ExternalConnectionDoctorCommand extends GraphCommand {
|
|
|
28
27
|
const ux = args.options.ux ?? 'all';
|
|
29
28
|
const output = args.options.output;
|
|
30
29
|
this.checksStatus = [];
|
|
31
|
-
const
|
|
32
|
-
output === 'text' &&
|
|
33
|
-
typeof global.it === 'undefined';
|
|
30
|
+
const show = output === 'text';
|
|
34
31
|
let checks = [
|
|
35
32
|
{
|
|
36
33
|
id: 'loadExternalConnection',
|
|
@@ -114,17 +111,10 @@ class ExternalConnectionDoctorCommand extends GraphCommand {
|
|
|
114
111
|
if (this.debug) {
|
|
115
112
|
await logger.logToStderr(`Running check ${check.id}...`);
|
|
116
113
|
}
|
|
117
|
-
// don't show spinner if running tests
|
|
118
|
-
/* c8 ignore next 3 */
|
|
119
|
-
if (showSpinner) {
|
|
120
|
-
cli.spinner.start(check.text);
|
|
121
|
-
}
|
|
122
114
|
// only automated checks have functions
|
|
123
115
|
if (!check.fn) {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
if (showSpinner) {
|
|
127
|
-
cli.spinner.info(`${check.text} (manual)`);
|
|
116
|
+
if (show) {
|
|
117
|
+
await logger.log(formatting.getStatus(CheckStatus.Information, `${check.text} (manual)`));
|
|
128
118
|
}
|
|
129
119
|
this.checksStatus.push({
|
|
130
120
|
...check,
|
|
@@ -135,23 +125,19 @@ class ExternalConnectionDoctorCommand extends GraphCommand {
|
|
|
135
125
|
const result = await check.fn.bind(this)(check.id, args);
|
|
136
126
|
this.checksStatus.push({ ...check, ...result });
|
|
137
127
|
if (result.status === 'passed') {
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
if (showSpinner) {
|
|
141
|
-
cli.spinner.succeed();
|
|
128
|
+
if (show) {
|
|
129
|
+
await logger.log(formatting.getStatus(CheckStatus.Success, check.text));
|
|
142
130
|
}
|
|
143
131
|
continue;
|
|
144
132
|
}
|
|
145
133
|
if (result.status === 'failed') {
|
|
146
|
-
|
|
147
|
-
/* c8 ignore next 9 */
|
|
148
|
-
if (showSpinner) {
|
|
134
|
+
if (show) {
|
|
149
135
|
const message = `${check.text}: ${result.errorMessage}`;
|
|
150
136
|
if (check.type === 'required') {
|
|
151
|
-
|
|
137
|
+
await logger.log(formatting.getStatus(CheckStatus.Failure, message));
|
|
152
138
|
}
|
|
153
139
|
else {
|
|
154
|
-
|
|
140
|
+
await logger.log(formatting.getStatus(CheckStatus.Warning, check.text));
|
|
155
141
|
}
|
|
156
142
|
}
|
|
157
143
|
if (result.shouldStop) {
|
|
@@ -159,7 +145,7 @@ class ExternalConnectionDoctorCommand extends GraphCommand {
|
|
|
159
145
|
}
|
|
160
146
|
}
|
|
161
147
|
}
|
|
162
|
-
if (
|
|
148
|
+
if (show || output === 'none') {
|
|
163
149
|
return;
|
|
164
150
|
}
|
|
165
151
|
this.checksStatus.forEach(s => {
|
|
@@ -29,7 +29,7 @@ class FlowGetCommand extends PowerAutomateCommand {
|
|
|
29
29
|
await logger.logToStderr(`Retrieving information about Microsoft Flow ${args.options.name}...`);
|
|
30
30
|
}
|
|
31
31
|
const requestOptions = {
|
|
32
|
-
url: `${this.resource}/providers/Microsoft.ProcessSimple/${args.options.asAdmin ? 'scopes/admin/' : ''}environments/${formatting.encodeQueryParameter(args.options.environmentName)}/flows/${formatting.encodeQueryParameter(args.options.name)}?api-version=2016-11-01`,
|
|
32
|
+
url: `${this.resource}/providers/Microsoft.ProcessSimple/${args.options.asAdmin ? 'scopes/admin/' : ''}environments/${formatting.encodeQueryParameter(args.options.environmentName)}/flows/${formatting.encodeQueryParameter(args.options.name)}?api-version=2016-11-01&$expand=swagger,properties.connectionreferences.apidefinition,properties.definitionsummary.operations.apioperation,operationDefinition,plan,properties.throttleData,properties.estimatedsuspensiondata,properties.licenseData`,
|
|
33
33
|
headers: {
|
|
34
34
|
accept: 'application/json'
|
|
35
35
|
},
|
|
@@ -46,7 +46,8 @@ class FlowListCommand extends PowerAutomateCommand {
|
|
|
46
46
|
let url = this.getApiUrl(environmentName, asAdmin, includeSolutions, 'personal');
|
|
47
47
|
items = await odata.getAllItems(url);
|
|
48
48
|
url = this.getApiUrl(environmentName, asAdmin, includeSolutions, 'team');
|
|
49
|
-
|
|
49
|
+
const teamFlows = await odata.getAllItems(url);
|
|
50
|
+
items = items.concat(teamFlows);
|
|
50
51
|
}
|
|
51
52
|
else {
|
|
52
53
|
const url = this.getApiUrl(environmentName, asAdmin, includeSolutions);
|
|
@@ -141,8 +141,10 @@ _GraphSubscriptionAddCommand_instances = new WeakSet(), _GraphSubscriptionAddCom
|
|
|
141
141
|
});
|
|
142
142
|
}, _GraphSubscriptionAddCommand_initValidators = function _GraphSubscriptionAddCommand_initValidators() {
|
|
143
143
|
this.validators.push(async (args) => {
|
|
144
|
-
if (args.options.notificationUrl.
|
|
145
|
-
|
|
144
|
+
if (!args.options.notificationUrl.toLowerCase().startsWith('https://')
|
|
145
|
+
&& !args.options.notificationUrl.toLowerCase().startsWith('eventhub:https://')
|
|
146
|
+
&& !args.options.notificationUrl.toLowerCase().startsWith('eventgrid:?azuresubscriptionid=')) {
|
|
147
|
+
return `The specified notification URL '${args.options.notificationUrl}' does not start with either 'https://' or 'EventHub:https://' or 'EventGrid:?azuresubscriptionid='`;
|
|
146
148
|
}
|
|
147
149
|
if (!this.isValidChangeTypes(args.options.changeTypes)) {
|
|
148
150
|
return `The specified changeTypes are invalid. Valid options are 'created', 'updated' and 'deleted'`;
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
2
|
+
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
3
|
+
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
|
+
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
|
+
};
|
|
6
|
+
var _OneNoteNotebookAddCommand_instances, _OneNoteNotebookAddCommand_initTelemetry, _OneNoteNotebookAddCommand_initOptions, _OneNoteNotebookAddCommand_initValidators, _OneNoteNotebookAddCommand_initOptionSets;
|
|
7
|
+
import request from '../../../../request.js';
|
|
8
|
+
import { entraGroup } from '../../../../utils/entraGroup.js';
|
|
9
|
+
import { validation } from '../../../../utils/validation.js';
|
|
10
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
11
|
+
import commands from '../../commands.js';
|
|
12
|
+
import { spo } from '../../../../utils/spo.js';
|
|
13
|
+
class OneNoteNotebookAddCommand extends GraphCommand {
|
|
14
|
+
get name() {
|
|
15
|
+
return commands.NOTEBOOK_ADD;
|
|
16
|
+
}
|
|
17
|
+
get description() {
|
|
18
|
+
return 'Create a new OneNote notebook';
|
|
19
|
+
}
|
|
20
|
+
constructor() {
|
|
21
|
+
super();
|
|
22
|
+
_OneNoteNotebookAddCommand_instances.add(this);
|
|
23
|
+
__classPrivateFieldGet(this, _OneNoteNotebookAddCommand_instances, "m", _OneNoteNotebookAddCommand_initTelemetry).call(this);
|
|
24
|
+
__classPrivateFieldGet(this, _OneNoteNotebookAddCommand_instances, "m", _OneNoteNotebookAddCommand_initOptions).call(this);
|
|
25
|
+
__classPrivateFieldGet(this, _OneNoteNotebookAddCommand_instances, "m", _OneNoteNotebookAddCommand_initValidators).call(this);
|
|
26
|
+
__classPrivateFieldGet(this, _OneNoteNotebookAddCommand_instances, "m", _OneNoteNotebookAddCommand_initOptionSets).call(this);
|
|
27
|
+
}
|
|
28
|
+
async commandAction(logger, args) {
|
|
29
|
+
try {
|
|
30
|
+
if (this.verbose) {
|
|
31
|
+
await logger.logToStderr(`Creating OneNote notebook ${args.options.name}`);
|
|
32
|
+
}
|
|
33
|
+
const requestUrl = await this.getRequestUrl(args);
|
|
34
|
+
const requestOptions = {
|
|
35
|
+
url: requestUrl,
|
|
36
|
+
headers: {
|
|
37
|
+
accept: 'application/json;odata.metadata=none',
|
|
38
|
+
'content-type': "application/json"
|
|
39
|
+
},
|
|
40
|
+
responseType: 'json',
|
|
41
|
+
data: {
|
|
42
|
+
displayName: args.options.name
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
const response = await request.post(requestOptions);
|
|
46
|
+
await logger.log(response);
|
|
47
|
+
}
|
|
48
|
+
catch (err) {
|
|
49
|
+
this.handleRejectedODataJsonPromise(err);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
async getRequestUrl(args) {
|
|
53
|
+
let endpoint = `${this.resource}/v1.0/`;
|
|
54
|
+
if (args.options.userId) {
|
|
55
|
+
endpoint += `users/${args.options.userId}`;
|
|
56
|
+
}
|
|
57
|
+
else if (args.options.userName) {
|
|
58
|
+
endpoint += `users/${args.options.userName}`;
|
|
59
|
+
}
|
|
60
|
+
else if (args.options.groupId) {
|
|
61
|
+
endpoint += `groups/${args.options.groupId}`;
|
|
62
|
+
}
|
|
63
|
+
else if (args.options.groupName) {
|
|
64
|
+
const groupId = await entraGroup.getGroupIdByDisplayName(args.options.groupName);
|
|
65
|
+
endpoint += `groups/${groupId}`;
|
|
66
|
+
}
|
|
67
|
+
else if (args.options.webUrl) {
|
|
68
|
+
const siteId = await spo.getSpoGraphSiteId(args.options.webUrl);
|
|
69
|
+
endpoint += `sites/${siteId}`;
|
|
70
|
+
}
|
|
71
|
+
else {
|
|
72
|
+
endpoint += 'me';
|
|
73
|
+
}
|
|
74
|
+
endpoint += '/onenote/notebooks';
|
|
75
|
+
return endpoint;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
_OneNoteNotebookAddCommand_instances = new WeakSet(), _OneNoteNotebookAddCommand_initTelemetry = function _OneNoteNotebookAddCommand_initTelemetry() {
|
|
79
|
+
this.telemetry.push((args) => {
|
|
80
|
+
Object.assign(this.telemetryProperties, {
|
|
81
|
+
userId: typeof args.options.userId !== 'undefined',
|
|
82
|
+
userName: typeof args.options.userName !== 'undefined',
|
|
83
|
+
groupId: typeof args.options.groupId !== 'undefined',
|
|
84
|
+
groupName: typeof args.options.groupName !== 'undefined',
|
|
85
|
+
webUrl: typeof args.options.webUrl !== 'undefined'
|
|
86
|
+
});
|
|
87
|
+
});
|
|
88
|
+
}, _OneNoteNotebookAddCommand_initOptions = function _OneNoteNotebookAddCommand_initOptions() {
|
|
89
|
+
this.options.unshift({
|
|
90
|
+
option: '-n, --name <name>'
|
|
91
|
+
}, {
|
|
92
|
+
option: '--userId [userId]'
|
|
93
|
+
}, {
|
|
94
|
+
option: '--userName [userName]'
|
|
95
|
+
}, {
|
|
96
|
+
option: '--groupId [groupId]'
|
|
97
|
+
}, {
|
|
98
|
+
option: '--groupName [groupName]'
|
|
99
|
+
}, {
|
|
100
|
+
option: '-u, --webUrl [webUrl]'
|
|
101
|
+
});
|
|
102
|
+
}, _OneNoteNotebookAddCommand_initValidators = function _OneNoteNotebookAddCommand_initValidators() {
|
|
103
|
+
this.validators.push(async (args) => {
|
|
104
|
+
// check name for invalid characters
|
|
105
|
+
if (args.options.name.length > 128) {
|
|
106
|
+
return 'The specified name is too long. It should be less than 128 characters';
|
|
107
|
+
}
|
|
108
|
+
if (/[?*/:<>|'"]/.test(args.options.name)) {
|
|
109
|
+
return `The specified name contains invalid characters. It cannot contain ?*/:<>|'". Please remove them and try again.`;
|
|
110
|
+
}
|
|
111
|
+
if (args.options.userId && !validation.isValidGuid(args.options.userId)) {
|
|
112
|
+
return `${args.options.userId} is not a valid GUID`;
|
|
113
|
+
}
|
|
114
|
+
if (args.options.groupId && !validation.isValidGuid(args.options.groupId)) {
|
|
115
|
+
return `${args.options.groupId} is not a valid GUID`;
|
|
116
|
+
}
|
|
117
|
+
if (args.options.webUrl) {
|
|
118
|
+
return validation.isValidSharePointUrl(args.options.webUrl);
|
|
119
|
+
}
|
|
120
|
+
return true;
|
|
121
|
+
});
|
|
122
|
+
}, _OneNoteNotebookAddCommand_initOptionSets = function _OneNoteNotebookAddCommand_initOptionSets() {
|
|
123
|
+
this.optionSets.push({
|
|
124
|
+
options: ['userId', 'userName', 'groupId', 'groupName', 'webUrl'],
|
|
125
|
+
runsWhen: (args) => {
|
|
126
|
+
const options = [args.options.userId, args.options.userName, args.options.groupId, args.options.groupName, args.options.webUrl];
|
|
127
|
+
return options.some(item => item !== undefined);
|
|
128
|
+
}
|
|
129
|
+
});
|
|
130
|
+
};
|
|
131
|
+
export default new OneNoteNotebookAddCommand();
|
|
132
|
+
//# sourceMappingURL=notebook-add.js.map
|
|
@@ -3,7 +3,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
3
3
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
4
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
5
|
};
|
|
6
|
-
var _PaAppExportCommand_instances, _PaAppExportCommand_initTelemetry, _PaAppExportCommand_initOptions, _PaAppExportCommand_initValidators;
|
|
6
|
+
var _PaAppExportCommand_instances, _PaAppExportCommand_initTelemetry, _PaAppExportCommand_initOptions, _PaAppExportCommand_initValidators, _PaAppExportCommand_initTypes;
|
|
7
7
|
import fs from 'fs';
|
|
8
8
|
import path from 'path';
|
|
9
9
|
import { setTimeout } from 'timers/promises';
|
|
@@ -26,14 +26,18 @@ class PaAppExportCommand extends PowerPlatformCommand {
|
|
|
26
26
|
__classPrivateFieldGet(this, _PaAppExportCommand_instances, "m", _PaAppExportCommand_initTelemetry).call(this);
|
|
27
27
|
__classPrivateFieldGet(this, _PaAppExportCommand_instances, "m", _PaAppExportCommand_initOptions).call(this);
|
|
28
28
|
__classPrivateFieldGet(this, _PaAppExportCommand_instances, "m", _PaAppExportCommand_initValidators).call(this);
|
|
29
|
+
__classPrivateFieldGet(this, _PaAppExportCommand_instances, "m", _PaAppExportCommand_initTypes).call(this);
|
|
29
30
|
}
|
|
30
31
|
async commandAction(logger, args) {
|
|
31
32
|
try {
|
|
32
33
|
const location = await this.exportPackage(args, logger);
|
|
33
|
-
const packageLink = await this.getPackageLink(
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
const packageLink = await this.getPackageLink(logger, location);
|
|
35
|
+
let filename = args.options.name;
|
|
36
|
+
if (args.options.packageDisplayName) {
|
|
37
|
+
//Replace all illegal characters from the file name
|
|
38
|
+
const illegalCharsRegEx = /[\\\/:*?"<>|]/g;
|
|
39
|
+
filename = args.options.packageDisplayName.replace(illegalCharsRegEx, '_');
|
|
40
|
+
}
|
|
37
41
|
const requestOptions = {
|
|
38
42
|
url: packageLink,
|
|
39
43
|
// Set responseType to arraybuffer, otherwise binary data will be encoded
|
|
@@ -98,7 +102,7 @@ class PaAppExportCommand extends PowerPlatformCommand {
|
|
|
98
102
|
details: {
|
|
99
103
|
creator: args.options.packageCreatedBy,
|
|
100
104
|
description: args.options.packageDescription,
|
|
101
|
-
displayName: args.options.packageDisplayName,
|
|
105
|
+
displayName: args.options.packageDisplayName || args.options.name,
|
|
102
106
|
sourceEnvironment: args.options.packageSourceEnvironment
|
|
103
107
|
},
|
|
104
108
|
resources: resources
|
|
@@ -108,7 +112,7 @@ class PaAppExportCommand extends PowerPlatformCommand {
|
|
|
108
112
|
const response = await request.post(requestOptions);
|
|
109
113
|
return response.headers.location;
|
|
110
114
|
}
|
|
111
|
-
async getPackageLink(
|
|
115
|
+
async getPackageLink(logger, location) {
|
|
112
116
|
if (this.verbose) {
|
|
113
117
|
await logger.logToStderr('Retrieving the package link and waiting on the exported package.');
|
|
114
118
|
}
|
|
@@ -172,6 +176,8 @@ _PaAppExportCommand_instances = new WeakSet(), _PaAppExportCommand_initTelemetry
|
|
|
172
176
|
}
|
|
173
177
|
return true;
|
|
174
178
|
});
|
|
179
|
+
}, _PaAppExportCommand_initTypes = function _PaAppExportCommand_initTypes() {
|
|
180
|
+
this.types.string.push('name', 'environmentName', 'packageDisplayName', 'packageDescription', 'packageCreatedBy', 'packageSourceEnvironment', 'path');
|
|
175
181
|
};
|
|
176
182
|
export default new PaAppExportCommand();
|
|
177
183
|
//# sourceMappingURL=app-export.js.map
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import config from '../../../../config.js';
|
|
2
|
+
import request from '../../../../request.js';
|
|
3
|
+
import { spo } from '../../../../utils/spo.js';
|
|
4
|
+
import SpoCommand from '../../../base/SpoCommand.js';
|
|
5
|
+
import commands from '../../commands.js';
|
|
6
|
+
class SpeContainertypeListCommand extends SpoCommand {
|
|
7
|
+
get name() {
|
|
8
|
+
return commands.CONTAINERTYPE_LIST;
|
|
9
|
+
}
|
|
10
|
+
get description() {
|
|
11
|
+
return 'Lists all Container Types';
|
|
12
|
+
}
|
|
13
|
+
defaultProperties() {
|
|
14
|
+
return ['ContainerTypeId', 'DisplayName', 'OwningAppId'];
|
|
15
|
+
}
|
|
16
|
+
async commandAction(logger) {
|
|
17
|
+
try {
|
|
18
|
+
const spoAdminUrl = await spo.getSpoAdminUrl(logger, this.debug);
|
|
19
|
+
if (this.verbose) {
|
|
20
|
+
await logger.logToStderr(`Retrieving list of Container types...`);
|
|
21
|
+
}
|
|
22
|
+
const allContainerTypes = await this.getAllContainerTypes(spoAdminUrl, logger);
|
|
23
|
+
await logger.log(allContainerTypes);
|
|
24
|
+
}
|
|
25
|
+
catch (err) {
|
|
26
|
+
this.handleRejectedPromise(err);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
async getAllContainerTypes(spoAdminUrl, logger) {
|
|
30
|
+
const formDigestInfo = await spo.ensureFormDigest(spoAdminUrl, logger, undefined, this.debug);
|
|
31
|
+
const requestOptions = {
|
|
32
|
+
url: `${spoAdminUrl}/_vti_bin/client.svc/ProcessQuery`,
|
|
33
|
+
headers: {
|
|
34
|
+
'X-RequestDigest': formDigestInfo.FormDigestValue
|
|
35
|
+
},
|
|
36
|
+
data: `<Request AddExpandoFieldTypeSuffix="true" SchemaVersion="15.0.0.0" LibraryVersion="16.0.0.0" ApplicationName="${config.applicationName}" xmlns="http://schemas.microsoft.com/sharepoint/clientquery/2009"><Actions><ObjectPath Id="46" ObjectPathId="45" /><Method Name="GetSPOContainerTypes" Id="47" ObjectPathId="45"><Parameters><Parameter Type="Enum">1</Parameter></Parameters></Method></Actions><ObjectPaths><Constructor Id="45" TypeId="{268004ae-ef6b-4e9b-8425-127220d84719}" /></ObjectPaths></Request>`
|
|
37
|
+
};
|
|
38
|
+
const res = await request.post(requestOptions);
|
|
39
|
+
const json = JSON.parse(res);
|
|
40
|
+
const response = json[0];
|
|
41
|
+
if (response.ErrorInfo) {
|
|
42
|
+
throw response.ErrorInfo.ErrorMessage;
|
|
43
|
+
}
|
|
44
|
+
const containerTypes = json[json.length - 1];
|
|
45
|
+
return containerTypes;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
export default new SpeContainertypeListCommand();
|
|
49
|
+
//# sourceMappingURL=containertype-list.js.map
|
|
@@ -4,6 +4,7 @@ import { formatting } from '../../../../utils/formatting.js';
|
|
|
4
4
|
import { fsUtil } from '../../../../utils/fsUtil.js';
|
|
5
5
|
import AnonymousCommand from "../../../base/AnonymousCommand.js";
|
|
6
6
|
import { ScssFile, TsFile } from "./project-model/index.js";
|
|
7
|
+
import { CommandError } from '../../../../Command.js';
|
|
7
8
|
export class BaseProjectCommand extends AnonymousCommand {
|
|
8
9
|
constructor() {
|
|
9
10
|
super(...arguments);
|
|
@@ -31,105 +32,17 @@ export class BaseProjectCommand extends AnonymousCommand {
|
|
|
31
32
|
}
|
|
32
33
|
catch { }
|
|
33
34
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
try {
|
|
46
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(copyAssetsJsonPath, 'utf-8'));
|
|
47
|
-
project.copyAssetsJson = JSON.parse(source);
|
|
48
|
-
project.copyAssetsJson.source = source;
|
|
49
|
-
}
|
|
50
|
-
catch { }
|
|
51
|
-
}
|
|
52
|
-
const deployAzureStorageJsonPath = path.join(projectRootPath, 'config/deploy-azure-storage.json');
|
|
53
|
-
if (fs.existsSync(deployAzureStorageJsonPath)) {
|
|
54
|
-
try {
|
|
55
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(deployAzureStorageJsonPath, 'utf-8'));
|
|
56
|
-
project.deployAzureStorageJson = JSON.parse(source);
|
|
57
|
-
project.deployAzureStorageJson.source = source;
|
|
58
|
-
}
|
|
59
|
-
catch { }
|
|
60
|
-
}
|
|
61
|
-
const packageJsonPath = path.join(projectRootPath, 'package.json');
|
|
62
|
-
if (fs.existsSync(packageJsonPath)) {
|
|
63
|
-
try {
|
|
64
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(packageJsonPath, 'utf-8'));
|
|
65
|
-
project.packageJson = JSON.parse(source);
|
|
66
|
-
project.packageJson.source = source;
|
|
67
|
-
}
|
|
68
|
-
catch { }
|
|
69
|
-
}
|
|
70
|
-
const packageSolutionJsonPath = path.join(projectRootPath, 'config/package-solution.json');
|
|
71
|
-
if (fs.existsSync(packageSolutionJsonPath)) {
|
|
72
|
-
try {
|
|
73
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(packageSolutionJsonPath, 'utf-8'));
|
|
74
|
-
project.packageSolutionJson = JSON.parse(source);
|
|
75
|
-
project.packageSolutionJson.source = source;
|
|
76
|
-
}
|
|
77
|
-
catch { }
|
|
78
|
-
}
|
|
79
|
-
const serveJsonPath = path.join(projectRootPath, 'config/serve.json');
|
|
80
|
-
if (fs.existsSync(serveJsonPath)) {
|
|
81
|
-
try {
|
|
82
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(serveJsonPath, 'utf-8'));
|
|
83
|
-
project.serveJson = JSON.parse(source);
|
|
84
|
-
project.serveJson.source = source;
|
|
85
|
-
}
|
|
86
|
-
catch { }
|
|
87
|
-
}
|
|
88
|
-
const tsConfigJsonPath = path.join(projectRootPath, 'tsconfig.json');
|
|
89
|
-
if (fs.existsSync(tsConfigJsonPath)) {
|
|
90
|
-
try {
|
|
91
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(tsConfigJsonPath, 'utf-8'));
|
|
92
|
-
project.tsConfigJson = JSON.parse(source);
|
|
93
|
-
project.tsConfigJson.source = source;
|
|
94
|
-
}
|
|
95
|
-
catch { }
|
|
96
|
-
}
|
|
97
|
-
const tsLintJsonPath = path.join(projectRootPath, 'config/tslint.json');
|
|
98
|
-
if (fs.existsSync(tsLintJsonPath)) {
|
|
99
|
-
try {
|
|
100
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(tsLintJsonPath, 'utf-8'));
|
|
101
|
-
project.tsLintJson = JSON.parse(source);
|
|
102
|
-
project.tsLintJson.source = source;
|
|
103
|
-
}
|
|
104
|
-
catch { }
|
|
105
|
-
}
|
|
106
|
-
const tsLintJsonRootPath = path.join(projectRootPath, 'tslint.json');
|
|
107
|
-
if (fs.existsSync(tsLintJsonRootPath)) {
|
|
108
|
-
try {
|
|
109
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(tsLintJsonRootPath, 'utf-8'));
|
|
110
|
-
project.tsLintJsonRoot = JSON.parse(source);
|
|
111
|
-
project.tsLintJsonRoot.source = source;
|
|
112
|
-
}
|
|
113
|
-
catch { }
|
|
114
|
-
}
|
|
115
|
-
const writeManifestJsonPath = path.join(projectRootPath, 'config/write-manifests.json');
|
|
116
|
-
if (fs.existsSync(writeManifestJsonPath)) {
|
|
117
|
-
try {
|
|
118
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(writeManifestJsonPath, 'utf-8'));
|
|
119
|
-
project.writeManifestsJson = JSON.parse(source);
|
|
120
|
-
project.writeManifestsJson.source = source;
|
|
121
|
-
}
|
|
122
|
-
catch { }
|
|
123
|
-
}
|
|
124
|
-
const yoRcJsonPath = path.join(projectRootPath, '.yo-rc.json');
|
|
125
|
-
if (fs.existsSync(yoRcJsonPath)) {
|
|
126
|
-
try {
|
|
127
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(yoRcJsonPath, 'utf-8'));
|
|
128
|
-
project.yoRcJson = JSON.parse(source);
|
|
129
|
-
project.yoRcJson.source = source;
|
|
130
|
-
}
|
|
131
|
-
catch { }
|
|
132
|
-
}
|
|
35
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'config.json'), project, 'configJson');
|
|
36
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'copy-assets.json'), project, 'copyAssetsJson');
|
|
37
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'deploy-azure-storage.json'), project, 'deployAzureStorageJson');
|
|
38
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'package.json'), project, 'packageJson');
|
|
39
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'package-solution.json'), project, 'packageSolutionJson');
|
|
40
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'serve.json'), project, 'serveJson');
|
|
41
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'tsconfig.json'), project, 'tsConfigJson');
|
|
42
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'tslint.json'), project, 'tsLintJson');
|
|
43
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'tslint.json'), project, 'tsLintJsonRoot');
|
|
44
|
+
this.readAndParseJsonFile(path.join(projectRootPath, 'config', 'write-manifests.json'), project, 'writeManifestsJson');
|
|
45
|
+
this.readAndParseJsonFile(path.join(projectRootPath, '.yo-rc.json'), project, 'yoRcJson');
|
|
133
46
|
const gulpfileJsPath = path.join(projectRootPath, 'gulpfile.js');
|
|
134
47
|
if (fs.existsSync(gulpfileJsPath)) {
|
|
135
48
|
project.gulpfileJs = {
|
|
@@ -141,33 +54,9 @@ export class BaseProjectCommand extends AnonymousCommand {
|
|
|
141
54
|
project.esLintRcJs = new TsFile(esLintRcJsPath);
|
|
142
55
|
}
|
|
143
56
|
project.vsCode = {};
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(vsCodeSettingsPath, 'utf-8'));
|
|
148
|
-
project.vsCode.settingsJson = JSON.parse(source);
|
|
149
|
-
project.vsCode.settingsJson.source = source;
|
|
150
|
-
}
|
|
151
|
-
catch { }
|
|
152
|
-
}
|
|
153
|
-
const vsCodeExtensionsPath = path.join(projectRootPath, '.vscode', 'extensions.json');
|
|
154
|
-
if (fs.existsSync(vsCodeExtensionsPath)) {
|
|
155
|
-
try {
|
|
156
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(vsCodeExtensionsPath, 'utf-8'));
|
|
157
|
-
project.vsCode.extensionsJson = JSON.parse(source);
|
|
158
|
-
project.vsCode.extensionsJson.source = source;
|
|
159
|
-
}
|
|
160
|
-
catch { }
|
|
161
|
-
}
|
|
162
|
-
const vsCodeLaunchPath = path.join(projectRootPath, '.vscode', 'launch.json');
|
|
163
|
-
if (fs.existsSync(vsCodeLaunchPath)) {
|
|
164
|
-
try {
|
|
165
|
-
const source = formatting.removeSingleLineComments(fs.readFileSync(vsCodeLaunchPath, 'utf-8'));
|
|
166
|
-
project.vsCode.launchJson = JSON.parse(source);
|
|
167
|
-
project.vsCode.launchJson.source = source;
|
|
168
|
-
}
|
|
169
|
-
catch { }
|
|
170
|
-
}
|
|
57
|
+
this.readAndParseJsonFile(path.join(projectRootPath, '.vscode', 'settings.json'), project, 'vsCode.settingsJson');
|
|
58
|
+
this.readAndParseJsonFile(path.join(projectRootPath, '.vscode', 'extensions.json'), project, 'vsCode.extensionsJson');
|
|
59
|
+
this.readAndParseJsonFile(path.join(projectRootPath, '.vscode', 'launch.json'), project, 'vsCode.launchJson');
|
|
171
60
|
const srcFiles = fsUtil.readdirR(path.join(projectRootPath, 'src'));
|
|
172
61
|
const manifestFiles = srcFiles.filter(f => f.endsWith('.manifest.json'));
|
|
173
62
|
const manifests = manifestFiles.map((f) => {
|
|
@@ -233,5 +122,26 @@ export class BaseProjectCommand extends AnonymousCommand {
|
|
|
233
122
|
catch { }
|
|
234
123
|
return undefined;
|
|
235
124
|
}
|
|
125
|
+
readAndParseJsonFile(filePath, project, keyPath) {
|
|
126
|
+
if (fs.existsSync(filePath)) {
|
|
127
|
+
try {
|
|
128
|
+
const source = formatting.removeSingleLineComments(fs.readFileSync(filePath, 'utf-8'));
|
|
129
|
+
const keys = keyPath.split('.');
|
|
130
|
+
let current = project;
|
|
131
|
+
for (let i = 0; i < keys.length - 1; i++) {
|
|
132
|
+
current = current[keys[i]];
|
|
133
|
+
}
|
|
134
|
+
const finalKey = keys[keys.length - 1];
|
|
135
|
+
current[finalKey] = JSON.parse(source);
|
|
136
|
+
if (typeof current[finalKey] === 'object' && current[finalKey] !== null) {
|
|
137
|
+
current[finalKey].source = source;
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
catch (error) {
|
|
141
|
+
throw new CommandError(`The file ${filePath} is not a valid JSON file or is not utf-8 encoded. Error: ${error}`);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
return project;
|
|
145
|
+
}
|
|
236
146
|
}
|
|
237
147
|
//# sourceMappingURL=base-project-command.js.map
|
|
@@ -3,7 +3,7 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
|
|
|
3
3
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
4
4
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
5
5
|
};
|
|
6
|
-
var _SpoApplicationCustomizerGetCommand_instances, _SpoApplicationCustomizerGetCommand_initTelemetry, _SpoApplicationCustomizerGetCommand_initOptions, _SpoApplicationCustomizerGetCommand_initValidators, _SpoApplicationCustomizerGetCommand_initOptionSets;
|
|
6
|
+
var _SpoApplicationCustomizerGetCommand_instances, _SpoApplicationCustomizerGetCommand_initTelemetry, _SpoApplicationCustomizerGetCommand_initOptions, _SpoApplicationCustomizerGetCommand_initValidators, _SpoApplicationCustomizerGetCommand_initOptionSets, _SpoApplicationCustomizerGetCommand_initTypes;
|
|
7
7
|
import { formatting } from '../../../../utils/formatting.js';
|
|
8
8
|
import { spo } from '../../../../utils/spo.js';
|
|
9
9
|
import { validation } from '../../../../utils/validation.js';
|
|
@@ -25,33 +25,22 @@ class SpoApplicationCustomizerGetCommand extends SpoCommand {
|
|
|
25
25
|
__classPrivateFieldGet(this, _SpoApplicationCustomizerGetCommand_instances, "m", _SpoApplicationCustomizerGetCommand_initOptions).call(this);
|
|
26
26
|
__classPrivateFieldGet(this, _SpoApplicationCustomizerGetCommand_instances, "m", _SpoApplicationCustomizerGetCommand_initValidators).call(this);
|
|
27
27
|
__classPrivateFieldGet(this, _SpoApplicationCustomizerGetCommand_instances, "m", _SpoApplicationCustomizerGetCommand_initOptionSets).call(this);
|
|
28
|
+
__classPrivateFieldGet(this, _SpoApplicationCustomizerGetCommand_instances, "m", _SpoApplicationCustomizerGetCommand_initTypes).call(this);
|
|
28
29
|
}
|
|
29
30
|
async commandAction(logger, args) {
|
|
30
31
|
try {
|
|
31
32
|
const customAction = await this.getCustomAction(args.options);
|
|
32
|
-
if (
|
|
33
|
+
if (!args.options.clientSideComponentProperties) {
|
|
33
34
|
await logger.log({
|
|
34
|
-
|
|
35
|
-
ClientSideComponentProperties: customAction.ClientSideComponentProperties,
|
|
36
|
-
CommandUIExtension: customAction.CommandUIExtension,
|
|
37
|
-
Description: customAction.Description,
|
|
38
|
-
Group: customAction.Group,
|
|
39
|
-
Id: customAction.Id,
|
|
40
|
-
ImageUrl: customAction.ImageUrl,
|
|
41
|
-
Location: customAction.Location,
|
|
42
|
-
Name: customAction.Name,
|
|
43
|
-
RegistrationId: customAction.RegistrationId,
|
|
44
|
-
RegistrationType: customAction.RegistrationType,
|
|
35
|
+
...customAction,
|
|
45
36
|
Rights: JSON.stringify(customAction.Rights),
|
|
46
|
-
Scope: this.humanizeScope(customAction.Scope)
|
|
47
|
-
ScriptBlock: customAction.ScriptBlock,
|
|
48
|
-
ScriptSrc: customAction.ScriptSrc,
|
|
49
|
-
Sequence: customAction.Sequence,
|
|
50
|
-
Title: customAction.Title,
|
|
51
|
-
Url: customAction.Url,
|
|
52
|
-
VersionOfUserCustomAction: customAction.VersionOfUserCustomAction
|
|
37
|
+
Scope: this.humanizeScope(customAction.Scope)
|
|
53
38
|
});
|
|
54
39
|
}
|
|
40
|
+
else {
|
|
41
|
+
const properties = formatting.tryParseJson(customAction.ClientSideComponentProperties);
|
|
42
|
+
await logger.log(properties);
|
|
43
|
+
}
|
|
55
44
|
}
|
|
56
45
|
catch (err) {
|
|
57
46
|
this.handleRejectedPromise(err);
|
|
@@ -95,7 +84,8 @@ _SpoApplicationCustomizerGetCommand_instances = new WeakSet(), _SpoApplicationCu
|
|
|
95
84
|
title: typeof args.options.title !== 'undefined',
|
|
96
85
|
id: typeof args.options.id !== 'undefined',
|
|
97
86
|
clientSideComponentId: typeof args.options.clientSideComponentId !== 'undefined',
|
|
98
|
-
scope: typeof args.options.scope !== 'undefined'
|
|
87
|
+
scope: typeof args.options.scope !== 'undefined',
|
|
88
|
+
clientSideComponentProperties: !!args.options.clientSideComponentProperties
|
|
99
89
|
});
|
|
100
90
|
});
|
|
101
91
|
}, _SpoApplicationCustomizerGetCommand_initOptions = function _SpoApplicationCustomizerGetCommand_initOptions() {
|
|
@@ -110,6 +100,8 @@ _SpoApplicationCustomizerGetCommand_instances = new WeakSet(), _SpoApplicationCu
|
|
|
110
100
|
}, {
|
|
111
101
|
option: '-s, --scope [scope]',
|
|
112
102
|
autocomplete: this.allowedScopes
|
|
103
|
+
}, {
|
|
104
|
+
option: '-p, --clientSideComponentProperties'
|
|
113
105
|
});
|
|
114
106
|
}, _SpoApplicationCustomizerGetCommand_initValidators = function _SpoApplicationCustomizerGetCommand_initValidators() {
|
|
115
107
|
this.validators.push(async (args) => {
|
|
@@ -126,6 +118,9 @@ _SpoApplicationCustomizerGetCommand_instances = new WeakSet(), _SpoApplicationCu
|
|
|
126
118
|
});
|
|
127
119
|
}, _SpoApplicationCustomizerGetCommand_initOptionSets = function _SpoApplicationCustomizerGetCommand_initOptionSets() {
|
|
128
120
|
this.optionSets.push({ options: ['title', 'id', 'clientSideComponentId'] });
|
|
121
|
+
}, _SpoApplicationCustomizerGetCommand_initTypes = function _SpoApplicationCustomizerGetCommand_initTypes() {
|
|
122
|
+
this.types.string.push('webUrl', 'title', 'id', 'clientSideComponentId', 'scope');
|
|
123
|
+
this.types.boolean.push('clientSideComponentProperties');
|
|
129
124
|
};
|
|
130
125
|
export default new SpoApplicationCustomizerGetCommand();
|
|
131
126
|
//# sourceMappingURL=applicationcustomizer-get.js.map
|