@pnp/cli-microsoft365 7.2.0-beta.54705a9 → 7.2.0-beta.a021bb1
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 +4 -0
- package/dist/cli/Cli.js +3 -2
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-add.js +61 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-get.js +93 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-list.js +25 -0
- package/dist/m365/aad/commands/administrativeunit/administrativeunit-remove.js +108 -0
- package/dist/m365/aad/commands.js +4 -0
- package/dist/m365/base/AppCommand.js +3 -12
- package/dist/m365/spfx/commands/project/project-doctor/doctor-1.18.1-rc.0.js +21 -0
- package/dist/m365/spfx/commands/project/project-doctor.js +2 -1
- package/dist/m365/spfx/commands/project/project-upgrade/rules/FN014010_CODE_settings_filesexclude_jest.js +44 -0
- package/dist/m365/spfx/commands/project/project-upgrade/upgrade-1.18.1-rc.0.js +57 -0
- package/dist/m365/spfx/commands/project/project-upgrade.js +16 -13
- package/dist/m365/spfx/commands/spfx-doctor.js +15 -0
- package/dist/m365/teams/commands/app/app-update.js +9 -6
- package/dist/m365/tenant/commands/people/people-profilecardproperty-add.js +131 -0
- package/dist/m365/tenant/commands/people/people-profilecardproperty-get.js +75 -0
- package/dist/m365/tenant/commands/people/people-profilecardproperty-list.js +53 -0
- package/dist/m365/tenant/commands/people/people-profilecardproperty-remove.js +84 -0
- package/dist/m365/tenant/commands/people/people-profilecardproperty-set.js +118 -0
- package/dist/m365/tenant/commands/people/profileCardProperties.js +24 -0
- package/dist/m365/tenant/commands.js +5 -0
- package/dist/utils/aadGroup.js +3 -1
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-add.mdx +119 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-get.mdx +102 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-list.mdx +87 -0
- package/docs/docs/cmd/aad/administrativeunit/administrativeunit-remove.mdx +56 -0
- package/docs/docs/cmd/spfx/project/project-upgrade.mdx +1 -1
- package/docs/docs/cmd/tenant/people/people-profilecardproperty-add.mdx +126 -0
- package/docs/docs/cmd/tenant/people/people-profilecardproperty-get.mdx +101 -0
- package/docs/docs/cmd/tenant/people/people-profilecardproperty-list.mdx +98 -0
- package/docs/docs/cmd/tenant/people/people-profilecardproperty-remove.mdx +61 -0
- package/docs/docs/cmd/tenant/people/people-profilecardproperty-set.mdx +120 -0
- package/package.json +4 -1
|
@@ -0,0 +1,131 @@
|
|
|
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 _TenantPeopleProfileCardPropertyAddCommand_instances, _TenantPeopleProfileCardPropertyAddCommand_initTelemetry, _TenantPeopleProfileCardPropertyAddCommand_initOptions, _TenantPeopleProfileCardPropertyAddCommand_initValidators;
|
|
7
|
+
import request from '../../../../request.js';
|
|
8
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
9
|
+
import commands from '../../commands.js';
|
|
10
|
+
import { profileCardPropertyNames } from './profileCardProperties.js';
|
|
11
|
+
class TenantPeopleProfileCardPropertyAddCommand extends GraphCommand {
|
|
12
|
+
get name() {
|
|
13
|
+
return commands.PEOPLE_PROFILECARDPROPERTY_ADD;
|
|
14
|
+
}
|
|
15
|
+
get description() {
|
|
16
|
+
return 'Adds an additional attribute to the profile card properties';
|
|
17
|
+
}
|
|
18
|
+
constructor() {
|
|
19
|
+
super();
|
|
20
|
+
_TenantPeopleProfileCardPropertyAddCommand_instances.add(this);
|
|
21
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyAddCommand_instances, "m", _TenantPeopleProfileCardPropertyAddCommand_initTelemetry).call(this);
|
|
22
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyAddCommand_instances, "m", _TenantPeopleProfileCardPropertyAddCommand_initOptions).call(this);
|
|
23
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyAddCommand_instances, "m", _TenantPeopleProfileCardPropertyAddCommand_initValidators).call(this);
|
|
24
|
+
}
|
|
25
|
+
allowUnknownOptions() {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
async commandAction(logger, args) {
|
|
29
|
+
const directoryPropertyName = profileCardPropertyNames.find(n => n.toLowerCase() === args.options.name.toLowerCase());
|
|
30
|
+
if (this.verbose) {
|
|
31
|
+
await logger.logToStderr(`Adding '${directoryPropertyName}' as a profile card property...`);
|
|
32
|
+
}
|
|
33
|
+
const requestOptions = {
|
|
34
|
+
url: `${this.resource}/v1.0/admin/people/profileCardProperties`,
|
|
35
|
+
headers: {
|
|
36
|
+
'content-type': 'application/json',
|
|
37
|
+
accept: 'application/json;odata.metadata=none'
|
|
38
|
+
},
|
|
39
|
+
responseType: 'json',
|
|
40
|
+
data: {
|
|
41
|
+
directoryPropertyName,
|
|
42
|
+
annotations: this.getAnnotations(args.options)
|
|
43
|
+
}
|
|
44
|
+
};
|
|
45
|
+
try {
|
|
46
|
+
const response = await request.post(requestOptions);
|
|
47
|
+
// Transform the output to make it more readable
|
|
48
|
+
if (args.options.output && args.options.output !== 'json' && response.annotations.length > 0) {
|
|
49
|
+
const annotation = response.annotations[0];
|
|
50
|
+
response.displayName = annotation.displayName;
|
|
51
|
+
annotation.localizations.forEach((l) => {
|
|
52
|
+
response[`displayName ${l.languageTag}`] = l.displayName;
|
|
53
|
+
});
|
|
54
|
+
delete response.annotations;
|
|
55
|
+
}
|
|
56
|
+
await logger.log(response);
|
|
57
|
+
}
|
|
58
|
+
catch (err) {
|
|
59
|
+
this.handleRejectedODataJsonPromise(err);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
getAnnotations(options) {
|
|
63
|
+
if (!options.displayName) {
|
|
64
|
+
return [];
|
|
65
|
+
}
|
|
66
|
+
return [
|
|
67
|
+
{
|
|
68
|
+
displayName: options.displayName,
|
|
69
|
+
localizations: this.getLocalizations(options)
|
|
70
|
+
}
|
|
71
|
+
];
|
|
72
|
+
}
|
|
73
|
+
getLocalizations(options) {
|
|
74
|
+
const unknownOptions = Object.keys(this.getUnknownOptions(options));
|
|
75
|
+
if (unknownOptions.length === 0) {
|
|
76
|
+
return [];
|
|
77
|
+
}
|
|
78
|
+
const localizations = [];
|
|
79
|
+
unknownOptions.forEach(key => {
|
|
80
|
+
localizations.push({
|
|
81
|
+
languageTag: key.replace('displayName-', ''),
|
|
82
|
+
displayName: options[key]
|
|
83
|
+
});
|
|
84
|
+
});
|
|
85
|
+
return localizations;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
_TenantPeopleProfileCardPropertyAddCommand_instances = new WeakSet(), _TenantPeopleProfileCardPropertyAddCommand_initTelemetry = function _TenantPeopleProfileCardPropertyAddCommand_initTelemetry() {
|
|
89
|
+
this.telemetry.push((args) => {
|
|
90
|
+
// Add unknown options to telemetry
|
|
91
|
+
const unknownOptions = Object.keys(this.getUnknownOptions(args.options));
|
|
92
|
+
const unknownOptionsObj = unknownOptions.reduce((obj, key) => ({ ...obj, [key]: true }), {});
|
|
93
|
+
Object.assign(this.telemetryProperties, {
|
|
94
|
+
displayName: typeof args.options.displayName !== 'undefined',
|
|
95
|
+
...unknownOptionsObj
|
|
96
|
+
});
|
|
97
|
+
});
|
|
98
|
+
}, _TenantPeopleProfileCardPropertyAddCommand_initOptions = function _TenantPeopleProfileCardPropertyAddCommand_initOptions() {
|
|
99
|
+
this.options.unshift({
|
|
100
|
+
option: '-n, --name <name>',
|
|
101
|
+
autocomplete: profileCardPropertyNames
|
|
102
|
+
}, {
|
|
103
|
+
option: '-d, --displayName [displayName]'
|
|
104
|
+
});
|
|
105
|
+
}, _TenantPeopleProfileCardPropertyAddCommand_initValidators = function _TenantPeopleProfileCardPropertyAddCommand_initValidators() {
|
|
106
|
+
this.validators.push(async (args) => {
|
|
107
|
+
const propertyName = args.options.name.toLowerCase();
|
|
108
|
+
if (profileCardPropertyNames.every(n => n.toLowerCase() !== propertyName)) {
|
|
109
|
+
return `${args.options.name} is not a valid value for name. Allowed values are ${profileCardPropertyNames.join(', ')}`;
|
|
110
|
+
}
|
|
111
|
+
if (propertyName.startsWith('customattribute') && args.options.displayName === undefined) {
|
|
112
|
+
return `The option 'displayName' is required when adding customAttributes as profile card properties`;
|
|
113
|
+
}
|
|
114
|
+
if (!propertyName.startsWith('customattribute') && args.options.displayName !== undefined) {
|
|
115
|
+
return `The option 'displayName' can only be used when adding customAttributes as profile card properties`;
|
|
116
|
+
}
|
|
117
|
+
const unknownOptions = Object.keys(this.getUnknownOptions(args.options));
|
|
118
|
+
if (!propertyName.startsWith('customattribute') && unknownOptions.length > 0) {
|
|
119
|
+
return `Unknown options like ${unknownOptions.join(', ')} are only supported with customAttributes`;
|
|
120
|
+
}
|
|
121
|
+
if (propertyName.startsWith('customattribute')) {
|
|
122
|
+
const wronglyFormattedOptions = unknownOptions.filter(key => !key.toLowerCase().startsWith('displayname-'));
|
|
123
|
+
if (wronglyFormattedOptions.length > 0) {
|
|
124
|
+
return `Wrong option format detected for the following option(s): ${wronglyFormattedOptions.join(', ')}'. When adding localizations for customAttributes, use the format displayName-<languageTag>.`;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return true;
|
|
128
|
+
});
|
|
129
|
+
};
|
|
130
|
+
export default new TenantPeopleProfileCardPropertyAddCommand();
|
|
131
|
+
//# sourceMappingURL=people-profilecardproperty-add.js.map
|
|
@@ -0,0 +1,75 @@
|
|
|
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 _TenantPeopleProfileCardPropertyGetCommand_instances, _TenantPeopleProfileCardPropertyGetCommand_initOptions, _TenantPeopleProfileCardPropertyGetCommand_initValidators;
|
|
7
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
8
|
+
import request from '../../../../request.js';
|
|
9
|
+
import { profileCardPropertyNames } from './profileCardProperties.js';
|
|
10
|
+
import commands from '../../commands.js';
|
|
11
|
+
class TenantPeopleProfileCardPropertyGetCommand extends GraphCommand {
|
|
12
|
+
get name() {
|
|
13
|
+
return commands.PEOPLE_PROFILECARDPROPERTY_GET;
|
|
14
|
+
}
|
|
15
|
+
get description() {
|
|
16
|
+
return 'Retrieves information about a specific profile card property';
|
|
17
|
+
}
|
|
18
|
+
constructor() {
|
|
19
|
+
super();
|
|
20
|
+
_TenantPeopleProfileCardPropertyGetCommand_instances.add(this);
|
|
21
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyGetCommand_instances, "m", _TenantPeopleProfileCardPropertyGetCommand_initOptions).call(this);
|
|
22
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyGetCommand_instances, "m", _TenantPeopleProfileCardPropertyGetCommand_initValidators).call(this);
|
|
23
|
+
}
|
|
24
|
+
async commandAction(logger, args) {
|
|
25
|
+
try {
|
|
26
|
+
if (this.verbose) {
|
|
27
|
+
await logger.logToStderr(`Retrieving information about profile card property '${args.options.name}'...`);
|
|
28
|
+
}
|
|
29
|
+
// Get the right casing for the profile card property name
|
|
30
|
+
const profileCardProperty = profileCardPropertyNames.find(p => p.toLowerCase() === args.options.name.toLowerCase());
|
|
31
|
+
const requestOptions = {
|
|
32
|
+
url: `${this.resource}/v1.0/admin/people/profileCardProperties/${profileCardProperty}`,
|
|
33
|
+
headers: {
|
|
34
|
+
accept: 'application/json;odata.metadata=none'
|
|
35
|
+
},
|
|
36
|
+
responseType: 'json'
|
|
37
|
+
};
|
|
38
|
+
const result = await request.get(requestOptions);
|
|
39
|
+
let output = result;
|
|
40
|
+
// Transform the output to make it more readable
|
|
41
|
+
if (args.options.output && args.options.output !== 'json' && result.annotations.length > 0) {
|
|
42
|
+
output = result.annotations[0].localizations.reduce((acc, curr) => ({
|
|
43
|
+
...acc,
|
|
44
|
+
['displayName ' + curr.languageTag]: curr.displayName
|
|
45
|
+
}), {
|
|
46
|
+
...result,
|
|
47
|
+
displayName: result.annotations[0].displayName
|
|
48
|
+
});
|
|
49
|
+
delete output.annotations;
|
|
50
|
+
}
|
|
51
|
+
await logger.log(output);
|
|
52
|
+
}
|
|
53
|
+
catch (err) {
|
|
54
|
+
if (err.response?.status === 404) {
|
|
55
|
+
this.handleError(`Profile card property '${args.options.name}' does not exist.`);
|
|
56
|
+
}
|
|
57
|
+
this.handleRejectedODataJsonPromise(err);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
_TenantPeopleProfileCardPropertyGetCommand_instances = new WeakSet(), _TenantPeopleProfileCardPropertyGetCommand_initOptions = function _TenantPeopleProfileCardPropertyGetCommand_initOptions() {
|
|
62
|
+
this.options.unshift({
|
|
63
|
+
option: '-n, --name <name>',
|
|
64
|
+
autocomplete: profileCardPropertyNames
|
|
65
|
+
});
|
|
66
|
+
}, _TenantPeopleProfileCardPropertyGetCommand_initValidators = function _TenantPeopleProfileCardPropertyGetCommand_initValidators() {
|
|
67
|
+
this.validators.push(async (args) => {
|
|
68
|
+
if (!profileCardPropertyNames.some(p => p.toLowerCase() === args.options.name.toLowerCase())) {
|
|
69
|
+
return `'${args.options.name}' is not a valid value for option name. Allowed values are: ${profileCardPropertyNames.join(', ')}.`;
|
|
70
|
+
}
|
|
71
|
+
return true;
|
|
72
|
+
});
|
|
73
|
+
};
|
|
74
|
+
export default new TenantPeopleProfileCardPropertyGetCommand();
|
|
75
|
+
//# sourceMappingURL=people-profilecardproperty-get.js.map
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
2
|
+
import commands from '../../commands.js';
|
|
3
|
+
import { odata } from '../../../../utils/odata.js';
|
|
4
|
+
class TenantPeopleProfileCardPropertyListCommand extends GraphCommand {
|
|
5
|
+
get name() {
|
|
6
|
+
return commands.PEOPLE_PROFILECARDPROPERTY_LIST;
|
|
7
|
+
}
|
|
8
|
+
get description() {
|
|
9
|
+
return 'Lists all profile card properties';
|
|
10
|
+
}
|
|
11
|
+
async commandAction(logger, args) {
|
|
12
|
+
try {
|
|
13
|
+
if (this.verbose) {
|
|
14
|
+
await logger.logToStderr(`Listing all profile card properties...`);
|
|
15
|
+
}
|
|
16
|
+
const result = await odata.getAllItems(`${this.resource}/v1.0/admin/people/profileCardProperties`);
|
|
17
|
+
let output = result;
|
|
18
|
+
if (args.options.output && args.options.output !== 'json') {
|
|
19
|
+
output = output.sort((n1, n2) => {
|
|
20
|
+
const localizations1 = n1.annotations[0]?.localizations?.length ?? 0;
|
|
21
|
+
const localizations2 = n2.annotations[0]?.localizations?.length ?? 0;
|
|
22
|
+
if (localizations1 > localizations2) {
|
|
23
|
+
return -1;
|
|
24
|
+
}
|
|
25
|
+
if (localizations1 < localizations2) {
|
|
26
|
+
return 1;
|
|
27
|
+
}
|
|
28
|
+
return 0;
|
|
29
|
+
});
|
|
30
|
+
output = output.map((p) => {
|
|
31
|
+
const propertyAnnotations = p.annotations[0]?.localizations?.map((l) => {
|
|
32
|
+
return { ['displayName ' + l.languageTag]: l.displayName };
|
|
33
|
+
}) ?? [];
|
|
34
|
+
const propertyAnnotationsObject = Object.assign({}, ...propertyAnnotations);
|
|
35
|
+
const result = { directoryPropertyName: p.directoryPropertyName };
|
|
36
|
+
if (p.annotations[0]?.displayName) {
|
|
37
|
+
result.displayName = p.annotations[0]?.displayName;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
...result,
|
|
41
|
+
...propertyAnnotationsObject
|
|
42
|
+
};
|
|
43
|
+
});
|
|
44
|
+
}
|
|
45
|
+
await logger.log(output);
|
|
46
|
+
}
|
|
47
|
+
catch (err) {
|
|
48
|
+
this.handleRejectedODataJsonPromise(err);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
export default new TenantPeopleProfileCardPropertyListCommand();
|
|
53
|
+
//# sourceMappingURL=people-profilecardproperty-list.js.map
|
|
@@ -0,0 +1,84 @@
|
|
|
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 _TenantPeopleProfileCardPropertyRemoveCommand_instances, _TenantPeopleProfileCardPropertyRemoveCommand_initTelemetry, _TenantPeopleProfileCardPropertyRemoveCommand_initOptions, _TenantPeopleProfileCardPropertyRemoveCommand_initValidators;
|
|
7
|
+
import { Cli } from '../../../../cli/Cli.js';
|
|
8
|
+
import request from '../../../../request.js';
|
|
9
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
10
|
+
import commands from '../../commands.js';
|
|
11
|
+
import { profileCardPropertyNames } from './profileCardProperties.js';
|
|
12
|
+
class TenantPeopleProfileCardPropertyRemoveCommand extends GraphCommand {
|
|
13
|
+
get name() {
|
|
14
|
+
return commands.PEOPLE_PROFILECARDPROPERTY_REMOVE;
|
|
15
|
+
}
|
|
16
|
+
get description() {
|
|
17
|
+
return 'Removes an additional attribute from the profile card properties';
|
|
18
|
+
}
|
|
19
|
+
constructor() {
|
|
20
|
+
super();
|
|
21
|
+
_TenantPeopleProfileCardPropertyRemoveCommand_instances.add(this);
|
|
22
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyRemoveCommand_instances, "m", _TenantPeopleProfileCardPropertyRemoveCommand_initTelemetry).call(this);
|
|
23
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyRemoveCommand_instances, "m", _TenantPeopleProfileCardPropertyRemoveCommand_initOptions).call(this);
|
|
24
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertyRemoveCommand_instances, "m", _TenantPeopleProfileCardPropertyRemoveCommand_initValidators).call(this);
|
|
25
|
+
}
|
|
26
|
+
async commandAction(logger, args) {
|
|
27
|
+
const directoryPropertyName = profileCardPropertyNames.find(n => n.toLowerCase() === args.options.name.toLowerCase());
|
|
28
|
+
const removeProfileCardProperty = async () => {
|
|
29
|
+
if (this.verbose) {
|
|
30
|
+
await logger.logToStderr(`Removing '${directoryPropertyName}' as a profile card property...`);
|
|
31
|
+
}
|
|
32
|
+
const requestOptions = {
|
|
33
|
+
url: `${this.resource}/v1.0/admin/people/profileCardProperties/${directoryPropertyName}`,
|
|
34
|
+
headers: {
|
|
35
|
+
'content-type': 'application/json'
|
|
36
|
+
},
|
|
37
|
+
responseType: 'json'
|
|
38
|
+
};
|
|
39
|
+
try {
|
|
40
|
+
await request.delete(requestOptions);
|
|
41
|
+
}
|
|
42
|
+
catch (err) {
|
|
43
|
+
this.handleRejectedODataJsonPromise(err);
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
if (args.options.force) {
|
|
47
|
+
await removeProfileCardProperty();
|
|
48
|
+
}
|
|
49
|
+
else {
|
|
50
|
+
const result = await Cli.prompt({
|
|
51
|
+
type: 'confirm',
|
|
52
|
+
name: 'continue',
|
|
53
|
+
default: false,
|
|
54
|
+
message: `Are you sure you want to remove the profile card property '${directoryPropertyName}'?`
|
|
55
|
+
});
|
|
56
|
+
if (result.continue) {
|
|
57
|
+
await removeProfileCardProperty();
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
_TenantPeopleProfileCardPropertyRemoveCommand_instances = new WeakSet(), _TenantPeopleProfileCardPropertyRemoveCommand_initTelemetry = function _TenantPeopleProfileCardPropertyRemoveCommand_initTelemetry() {
|
|
63
|
+
this.telemetry.push((args) => {
|
|
64
|
+
Object.assign(this.telemetryProperties, {
|
|
65
|
+
force: !!args.options.force
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
}, _TenantPeopleProfileCardPropertyRemoveCommand_initOptions = function _TenantPeopleProfileCardPropertyRemoveCommand_initOptions() {
|
|
69
|
+
this.options.unshift({
|
|
70
|
+
option: '-n, --name <name>',
|
|
71
|
+
autocomplete: profileCardPropertyNames
|
|
72
|
+
}, {
|
|
73
|
+
option: '-f, --force'
|
|
74
|
+
});
|
|
75
|
+
}, _TenantPeopleProfileCardPropertyRemoveCommand_initValidators = function _TenantPeopleProfileCardPropertyRemoveCommand_initValidators() {
|
|
76
|
+
this.validators.push(async (args) => {
|
|
77
|
+
if (profileCardPropertyNames.every(n => n.toLowerCase() !== args.options.name.toLowerCase())) {
|
|
78
|
+
return `${args.options.name} is not a valid value for name. Allowed values are ${profileCardPropertyNames.join(', ')}`;
|
|
79
|
+
}
|
|
80
|
+
return true;
|
|
81
|
+
});
|
|
82
|
+
};
|
|
83
|
+
export default new TenantPeopleProfileCardPropertyRemoveCommand();
|
|
84
|
+
//# sourceMappingURL=people-profilecardproperty-remove.js.map
|
|
@@ -0,0 +1,118 @@
|
|
|
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 _TenantPeopleProfileCardPropertySetCommand_instances, _TenantPeopleProfileCardPropertySetCommand_initTelemetry, _TenantPeopleProfileCardPropertySetCommand_initOptions, _TenantPeopleProfileCardPropertySetCommand_initValidators, _TenantPeopleProfileCardPropertySetCommand_initTypes;
|
|
7
|
+
import GraphCommand from '../../../base/GraphCommand.js';
|
|
8
|
+
import request from '../../../../request.js';
|
|
9
|
+
import { profileCardPropertyNames as allProfileCardPropertyNames } from './profileCardProperties.js';
|
|
10
|
+
import commands from '../../commands.js';
|
|
11
|
+
class TenantPeopleProfileCardPropertySetCommand extends GraphCommand {
|
|
12
|
+
get name() {
|
|
13
|
+
return commands.PEOPLE_PROFILECARDPROPERTY_SET;
|
|
14
|
+
}
|
|
15
|
+
get description() {
|
|
16
|
+
return 'Updates a custom attribute to the profile card property';
|
|
17
|
+
}
|
|
18
|
+
constructor() {
|
|
19
|
+
super();
|
|
20
|
+
_TenantPeopleProfileCardPropertySetCommand_instances.add(this);
|
|
21
|
+
this.profileCardPropertyNames = allProfileCardPropertyNames.filter(p => p.toLowerCase().startsWith('customattribute'));
|
|
22
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertySetCommand_instances, "m", _TenantPeopleProfileCardPropertySetCommand_initTelemetry).call(this);
|
|
23
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertySetCommand_instances, "m", _TenantPeopleProfileCardPropertySetCommand_initOptions).call(this);
|
|
24
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertySetCommand_instances, "m", _TenantPeopleProfileCardPropertySetCommand_initValidators).call(this);
|
|
25
|
+
__classPrivateFieldGet(this, _TenantPeopleProfileCardPropertySetCommand_instances, "m", _TenantPeopleProfileCardPropertySetCommand_initTypes).call(this);
|
|
26
|
+
}
|
|
27
|
+
allowUnknownOptions() {
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
async commandAction(logger, args) {
|
|
31
|
+
try {
|
|
32
|
+
if (this.verbose) {
|
|
33
|
+
await logger.logToStderr(`Updating profile card property '${args.options.name}'...`);
|
|
34
|
+
}
|
|
35
|
+
// Get the right casing for the profile card property name
|
|
36
|
+
const profileCardProperty = this.profileCardPropertyNames.find(p => p.toLowerCase() === args.options.name.toLowerCase());
|
|
37
|
+
const requestOptions = {
|
|
38
|
+
url: `${this.resource}/v1.0/admin/people/profileCardProperties/${profileCardProperty}`,
|
|
39
|
+
headers: {
|
|
40
|
+
accept: 'application/json;odata.metadata=none'
|
|
41
|
+
},
|
|
42
|
+
responseType: 'json',
|
|
43
|
+
data: {
|
|
44
|
+
annotations: [
|
|
45
|
+
{
|
|
46
|
+
displayName: args.options.displayName,
|
|
47
|
+
localizations: this.getLocalizations(args.options)
|
|
48
|
+
}
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
};
|
|
52
|
+
const result = await request.patch(requestOptions);
|
|
53
|
+
let output = result;
|
|
54
|
+
// Transform the output to make it more readable
|
|
55
|
+
if (args.options.output && args.options.output !== 'json' && result.annotations.length > 0) {
|
|
56
|
+
output = result.annotations[0].localizations.reduce((acc, curr) => ({
|
|
57
|
+
...acc,
|
|
58
|
+
['displayName ' + curr.languageTag]: curr.displayName
|
|
59
|
+
}), {
|
|
60
|
+
...result,
|
|
61
|
+
displayName: result.annotations[0].displayName
|
|
62
|
+
});
|
|
63
|
+
delete output.annotations;
|
|
64
|
+
}
|
|
65
|
+
await logger.log(output);
|
|
66
|
+
}
|
|
67
|
+
catch (err) {
|
|
68
|
+
this.handleRejectedODataJsonPromise(err);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Transform option to localization object.
|
|
73
|
+
* @example Transform "--displayName-en-US 'Cost center'" to { languageTag: 'en-US', displayName: 'Cost center' }
|
|
74
|
+
*/
|
|
75
|
+
getLocalizations(options) {
|
|
76
|
+
const unknownOptions = this.getUnknownOptions(options);
|
|
77
|
+
const result = Object.keys(unknownOptions).map(o => ({
|
|
78
|
+
languageTag: o.substring(o.indexOf('-') + 1),
|
|
79
|
+
displayName: unknownOptions[o]
|
|
80
|
+
}));
|
|
81
|
+
return result;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
_TenantPeopleProfileCardPropertySetCommand_instances = new WeakSet(), _TenantPeopleProfileCardPropertySetCommand_initTelemetry = function _TenantPeopleProfileCardPropertySetCommand_initTelemetry() {
|
|
85
|
+
this.telemetry.push((args) => {
|
|
86
|
+
// Add unknown options to telemetry
|
|
87
|
+
const unknownOptions = Object.keys(this.getUnknownOptions(args.options));
|
|
88
|
+
const unknownOptionsObj = unknownOptions.reduce((obj, key) => ({ ...obj, [key]: true }), {});
|
|
89
|
+
Object.assign(this.telemetryProperties, {
|
|
90
|
+
displayName: typeof args.options.displayName !== 'undefined',
|
|
91
|
+
...unknownOptionsObj
|
|
92
|
+
});
|
|
93
|
+
});
|
|
94
|
+
}, _TenantPeopleProfileCardPropertySetCommand_initOptions = function _TenantPeopleProfileCardPropertySetCommand_initOptions() {
|
|
95
|
+
this.options.unshift({
|
|
96
|
+
option: '-n, --name <name>',
|
|
97
|
+
autocomplete: this.profileCardPropertyNames
|
|
98
|
+
}, {
|
|
99
|
+
option: '-d, --displayName <displayName>'
|
|
100
|
+
});
|
|
101
|
+
}, _TenantPeopleProfileCardPropertySetCommand_initValidators = function _TenantPeopleProfileCardPropertySetCommand_initValidators() {
|
|
102
|
+
this.validators.push(async (args) => {
|
|
103
|
+
if (!this.profileCardPropertyNames.some(p => p.toLowerCase() === args.options.name.toLowerCase())) {
|
|
104
|
+
return `'${args.options.name}' is not a valid value for option name. Allowed values are: ${this.profileCardPropertyNames.join(', ')}.`;
|
|
105
|
+
}
|
|
106
|
+
// Unknown options are allowed only if they start with 'displayName-'
|
|
107
|
+
const unknownOptionKeys = Object.keys(this.getUnknownOptions(args.options));
|
|
108
|
+
const invalidOptionKey = unknownOptionKeys.find(o => !o.startsWith('displayName-'));
|
|
109
|
+
if (invalidOptionKey) {
|
|
110
|
+
return `Invalid option: '${invalidOptionKey}'`;
|
|
111
|
+
}
|
|
112
|
+
return true;
|
|
113
|
+
});
|
|
114
|
+
}, _TenantPeopleProfileCardPropertySetCommand_initTypes = function _TenantPeopleProfileCardPropertySetCommand_initTypes() {
|
|
115
|
+
this.types.string.push('name', 'displayName');
|
|
116
|
+
};
|
|
117
|
+
export default new TenantPeopleProfileCardPropertySetCommand();
|
|
118
|
+
//# sourceMappingURL=people-profilecardproperty-set.js.map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const profileCardPropertyNames = [
|
|
2
|
+
'UserPrincipalName',
|
|
3
|
+
'Fax',
|
|
4
|
+
'StreetAddress',
|
|
5
|
+
'PostalCode',
|
|
6
|
+
'StateOrProvince',
|
|
7
|
+
'Alias',
|
|
8
|
+
'customAttribute1',
|
|
9
|
+
'customAttribute2',
|
|
10
|
+
'customAttribute3',
|
|
11
|
+
'customAttribute4',
|
|
12
|
+
'customAttribute5',
|
|
13
|
+
'customAttribute6',
|
|
14
|
+
'customAttribute7',
|
|
15
|
+
'customAttribute8',
|
|
16
|
+
'customAttribute9',
|
|
17
|
+
'customAttribute10',
|
|
18
|
+
'customAttribute11',
|
|
19
|
+
'customAttribute12',
|
|
20
|
+
'customAttribute13',
|
|
21
|
+
'customAttribute14',
|
|
22
|
+
'customAttribute15'
|
|
23
|
+
];
|
|
24
|
+
//# sourceMappingURL=profileCardProperties.js.map
|
|
@@ -2,6 +2,11 @@ const prefix = 'tenant';
|
|
|
2
2
|
export default {
|
|
3
3
|
ID_GET: `${prefix} id get`,
|
|
4
4
|
INFO_GET: `${prefix} info get`,
|
|
5
|
+
PEOPLE_PROFILECARDPROPERTY_ADD: `${prefix} people profilecardproperty add`,
|
|
6
|
+
PEOPLE_PROFILECARDPROPERTY_GET: `${prefix} people profilecardproperty get`,
|
|
7
|
+
PEOPLE_PROFILECARDPROPERTY_LIST: `${prefix} people profilecardproperty list`,
|
|
8
|
+
PEOPLE_PROFILECARDPROPERTY_REMOVE: `${prefix} people profilecardproperty remove`,
|
|
9
|
+
PEOPLE_PROFILECARDPROPERTY_SET: `${prefix} people profilecardproperty set`,
|
|
5
10
|
REPORT_ACTIVEUSERCOUNTS: `${prefix} report activeusercounts`,
|
|
6
11
|
REPORT_ACTIVEUSERDETAIL: `${prefix} report activeuserdetail`,
|
|
7
12
|
REPORT_OFFICE365ACTIVATIONCOUNTS: `${prefix} report office365activationcounts`,
|
package/dist/utils/aadGroup.js
CHANGED
|
@@ -54,7 +54,9 @@ export const aadGroup = {
|
|
|
54
54
|
throw Error(`The specified group '${displayName}' does not exist.`);
|
|
55
55
|
}
|
|
56
56
|
if (groups.length > 1) {
|
|
57
|
-
|
|
57
|
+
const resultAsKeyValuePair = formatting.convertArrayToHashTable('id', groups);
|
|
58
|
+
const result = await Cli.handleMultipleResultsFound(`Multiple groups with name '${displayName}' found.`, resultAsKeyValuePair);
|
|
59
|
+
return result.id;
|
|
58
60
|
}
|
|
59
61
|
return groups[0].id;
|
|
60
62
|
},
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import Global from '/docs/cmd/_global.mdx';
|
|
2
|
+
import Tabs from '@theme/Tabs';
|
|
3
|
+
import TabItem from '@theme/TabItem';
|
|
4
|
+
|
|
5
|
+
# aad administrativeunit add
|
|
6
|
+
|
|
7
|
+
Creates a new administrative unit
|
|
8
|
+
|
|
9
|
+
## Usage
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
m365 aad administrativeunit add [options]
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Options
|
|
16
|
+
|
|
17
|
+
```md definition-list
|
|
18
|
+
`-n, --displayname <displayName>`
|
|
19
|
+
: Display name for the administrative unit.
|
|
20
|
+
|
|
21
|
+
`-d, --description [description]`
|
|
22
|
+
: Description for the administrative unit.
|
|
23
|
+
|
|
24
|
+
`--hiddenMembership`
|
|
25
|
+
: Indicates whether the administrative unit and its members are hidden.
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
<Global />
|
|
29
|
+
|
|
30
|
+
## Remarks
|
|
31
|
+
|
|
32
|
+
:::info
|
|
33
|
+
|
|
34
|
+
To use this command you must be either **Global Administrator** or **Privileged Role Administrator**.
|
|
35
|
+
|
|
36
|
+
:::
|
|
37
|
+
|
|
38
|
+
## Examples
|
|
39
|
+
|
|
40
|
+
Create an administrative unit with a specific display name
|
|
41
|
+
|
|
42
|
+
```sh
|
|
43
|
+
m365 aad administrativeunit add --displayName 'Marketing Division'
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Create an administrative unit with a specific display name and description
|
|
47
|
+
|
|
48
|
+
```sh
|
|
49
|
+
m365 aad administrativeunit add --displayName 'Marketing Division' --description 'Marketing department administration'
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Create a hidden administrative unit with a specific display name
|
|
53
|
+
|
|
54
|
+
```sh
|
|
55
|
+
m365 aad administrativeunit add --displayName 'Marketing Division' --hiddenMembership
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
## Response
|
|
59
|
+
|
|
60
|
+
<Tabs>
|
|
61
|
+
<TabItem value="JSON">
|
|
62
|
+
|
|
63
|
+
```json
|
|
64
|
+
{
|
|
65
|
+
"id": "00b45a1b-7632-4e94-a3bd-f06aec976d31",
|
|
66
|
+
"deletedDateTime": null,
|
|
67
|
+
"displayName": "Marketing Division",
|
|
68
|
+
"description": "Marketing department administration",
|
|
69
|
+
"membershipRule": null,
|
|
70
|
+
"membershipType": null,
|
|
71
|
+
"membershipRuleProcessingState": null,
|
|
72
|
+
"visibility": null
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
</TabItem>
|
|
77
|
+
<TabItem value="Text">
|
|
78
|
+
|
|
79
|
+
```text
|
|
80
|
+
deletedDateTime : null
|
|
81
|
+
description : Marketing department administration
|
|
82
|
+
displayName : Marketing Division
|
|
83
|
+
id : 00b45a1b-7632-4e94-a3bd-f06aec976d31
|
|
84
|
+
membershipRule : null
|
|
85
|
+
membershipRuleProcessingState: null
|
|
86
|
+
membershipType : null
|
|
87
|
+
visibility : null
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
</TabItem>
|
|
91
|
+
<TabItem value="CSV">
|
|
92
|
+
|
|
93
|
+
```csv
|
|
94
|
+
id,displayName,description,visibility
|
|
95
|
+
00b45a1b-7632-4e94-a3bd-f06aec976d31,Marketing Division,Marketing department administration,HiddenMembership
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
</TabItem>
|
|
99
|
+
<TabItem value="Markdown">
|
|
100
|
+
|
|
101
|
+
```md
|
|
102
|
+
Date: 10/23/2023
|
|
103
|
+
|
|
104
|
+
## Marketing Division (00b45a1b-7632-4e94-a3bd-f06aec976d31)
|
|
105
|
+
|
|
106
|
+
Property | Value
|
|
107
|
+
---------|-------
|
|
108
|
+
id | 00b45a1b-7632-4e94-a3bd-f06aec976d31
|
|
109
|
+
displayName | Marketing Division
|
|
110
|
+
description | Marketing department administration
|
|
111
|
+
visibility | HiddenMembership
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
</TabItem>
|
|
115
|
+
</Tabs>
|
|
116
|
+
|
|
117
|
+
## More information
|
|
118
|
+
|
|
119
|
+
- Administrative units: https://learn.microsoft.com/entra/identity/role-based-access-control/administrative-units
|