forked from pnp/cli-microsoft365
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.ts
24 lines (23 loc) · 1.29 KB
/
commands.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const prefix: string = 'outlook';
export default {
MAIL_SEND: `${prefix} mail send`,
MAILBOX_SETTINGS_GET: `${prefix} mailbox settings get`,
MAILBOX_SETTINGS_SET: `${prefix} mailbox settings set`,
MESSAGE_GET: `${prefix} message get`,
MESSAGE_LIST: `${prefix} message list`,
MESSAGE_MOVE: `${prefix} message move`,
MESSAGE_REMOVE: `${prefix} message remove`,
REPORT_MAILACTIVITYCOUNTS: `${prefix} report mailactivitycounts`,
REPORT_MAILACTIVITYUSERCOUNTS: `${prefix} report mailactivityusercounts`,
REPORT_MAILACTIVITYUSERDETAIL: `${prefix} report mailactivityuserdetail`,
REPORT_MAILAPPUSAGEAPPSUSERCOUNTS: `${prefix} report mailappusageappsusercounts`,
REPORT_MAILAPPUSAGEUSERCOUNTS: `${prefix} report mailappusageusercounts`,
REPORT_MAILAPPUSAGEUSERDETAIL: `${prefix} report mailappusageuserdetail`,
REPORT_MAILAPPUSAGEVERSIONSUSERCOUNTS: `${prefix} report mailappusageversionsusercounts`,
REPORT_MAILBOXUSAGEDETAIL: `${prefix} report mailboxusagedetail`,
REPORT_MAILBOXUSAGEMAILBOXCOUNT: `${prefix} report mailboxusagemailboxcount`,
REPORT_MAILBOXUSAGEQUOTASTATUSMAILBOXCOUNTS: `${prefix} report mailboxusagequotastatusmailboxcounts`,
REPORT_MAILBOXUSAGESTORAGE: `${prefix} report mailboxusagestorage`,
ROOM_LIST: `${prefix} room list`,
ROOMLIST_LIST: `${prefix} roomlist list`
};