Skip to content

Commit d91937a

Browse files
[Outlook] Requirement set 1.11 (OfficeDev#572)
1 parent f6d4081 commit d91937a

File tree

7 files changed

+34
-33
lines changed

7 files changed

+34
-33
lines changed

playlists-prod/outlook.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,15 @@
335335
group: Event Based Activation
336336
api_set:
337337
Mailbox: '1.10'
338+
- id: outlook-event-based-activation-session-data-apis
339+
name: Work with session data APIs (Compose)
340+
fileName: session-data-apis.yaml
341+
description: 'Set, get, get all, remove, and clear session data in Compose mode.'
342+
rawUrl: >-
343+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
344+
group: Event Based Activation
345+
api_set:
346+
Mailbox: '1.11'
338347
- id: outlook-delegates-and-shared-folders-get-shared-properties
339348
name: Perform an operation as delegate
340349
fileName: get-shared-properties.yaml
@@ -612,14 +621,5 @@
612621
rawUrl: >-
613622
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/calendar-properties-apis.yaml
614623
group: Preview APIs
615-
api_set:
616-
Mailbox: preview
617-
- id: outlook-session-data-apis
618-
name: Work with session data APIs (Compose)
619-
fileName: session-data-apis.yaml
620-
description: 'Set, get, get all, remove, and clear session data in Compose mode.'
621-
rawUrl: >-
622-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
623-
group: Preview APIs
624624
api_set:
625625
Mailbox: preview

playlists/outlook.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -335,6 +335,15 @@
335335
group: Event Based Activation
336336
api_set:
337337
Mailbox: '1.10'
338+
- id: outlook-event-based-activation-session-data-apis
339+
name: Work with session data APIs (Compose)
340+
fileName: session-data-apis.yaml
341+
description: 'Set, get, get all, remove, and clear session data in Compose mode.'
342+
rawUrl: >-
343+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/60-event-based-activation/session-data-apis.yaml
344+
group: Event Based Activation
345+
api_set:
346+
Mailbox: '1.11'
338347
- id: outlook-delegates-and-shared-folders-get-shared-properties
339348
name: Perform an operation as delegate
340349
fileName: get-shared-properties.yaml
@@ -614,12 +623,3 @@
614623
group: Preview APIs
615624
api_set:
616625
Mailbox: preview
617-
- id: outlook-session-data-apis
618-
name: Work with session data APIs (Compose)
619-
fileName: session-data-apis.yaml
620-
description: 'Set, get, get all, remove, and clear session data in Compose mode.'
621-
rawUrl: >-
622-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/99-preview-apis/session-data-apis.yaml
623-
group: Preview APIs
624-
api_set:
625-
Mailbox: preview

samples/outlook/99-preview-apis/session-data-apis.yaml renamed to samples/outlook/60-event-based-activation/session-data-apis.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
id: outlook-session-data-apis
1+
order: 2
2+
id: outlook-event-based-activation-session-data-apis
23
name: Work with session data APIs (Compose)
34
description: 'Set, get, get all, remove, and clear session data in Compose mode.'
45
host: OUTLOOK
56
api_set:
6-
Mailbox: preview
7+
Mailbox: '1.11'
78
script:
89
content: |
910
$("#setSessionData").click(setSessionData);
@@ -106,8 +107,8 @@ style:
106107
}
107108
language: css
108109
libraries: |
109-
https://appsforoffice.microsoft.com/lib/beta/hosted/office.js
110-
@types/office-js-preview
110+
https://appsforoffice.microsoft.com/lib/1/hosted/office.js
111+
@types/office-js
111112
office-ui-fabric-js@1.4.0/dist/css/fabric.min.css
112113
office-ui-fabric-js@1.4.0/dist/css/fabric.components.min.css
113114
core-js@2.4.1/client/core.min.js
-83 Bytes
Binary file not shown.

snippet-extractor-output/snippets.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10107,7 +10107,7 @@
1010710107
'Office.AppointmentCompose#sessionData:member':
1010810108
- >-
1010910109
// Link to full sample:
10110-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10110+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1011110111
1011210112
Office.context.mailbox.item.sessionData.getAllAsync(function(asyncResult) {
1011310113
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
@@ -10119,7 +10119,7 @@
1011910119
'Office.MessageCompose#sessionData:member':
1012010120
- >-
1012110121
// Link to full sample:
10122-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10122+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1012310123
1012410124
Office.context.mailbox.item.sessionData.getAllAsync(function(asyncResult) {
1012510125
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
@@ -10131,7 +10131,7 @@
1013110131
'Office.SessionData#setAsync:member(1)':
1013210132
- >-
1013310133
// Link to full sample:
10134-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10134+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1013510135
1013610136
Office.context.mailbox.item.sessionData.setAsync(
1013710137
"Date",
@@ -10146,7 +10146,7 @@
1014610146
'Office.SessionData#getAsync:member(1)':
1014710147
- >-
1014810148
// Link to full sample:
10149-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10149+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1015010150
1015110151
Office.context.mailbox.item.sessionData.getAsync(
1015210152
"Date",
@@ -10160,7 +10160,7 @@
1016010160
'Office.SessionData#getAllAsync:member(1)':
1016110161
- >-
1016210162
// Link to full sample:
10163-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10163+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1016410164
1016510165
Office.context.mailbox.item.sessionData.getAllAsync(function(asyncResult) {
1016610166
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {
@@ -10172,7 +10172,7 @@
1017210172
'Office.SessionData#removeAsync:member(1)':
1017310173
- >-
1017410174
// Link to full sample:
10175-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10175+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1017610176
1017710177
Office.context.mailbox.item.sessionData.removeAsync(
1017810178
"Date",
@@ -10187,7 +10187,7 @@
1018710187
'Office.SessionData#clearAsync:member(1)':
1018810188
- >-
1018910189
// Link to full sample:
10190-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml
10190+
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml
1019110191
1019210192
Office.context.mailbox.item.sessionData.clearAsync(function(asyncResult) {
1019310193
if (asyncResult.status === Office.AsyncResultStatus.Succeeded) {

view-prod/outlook.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"outlook-display-items-display-reply-forms": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/55-display-items/display-reply-forms.yaml",
3636
"outlook-display-items-display-reply-with-attachments": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/55-display-items/display-reply-with-attachments.yaml",
3737
"outlook-work-with-client-signatures": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/work-with-client-signatures.yaml",
38+
"outlook-event-based-activation-session-data-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/60-event-based-activation/session-data-apis.yaml",
3839
"outlook-delegates-and-shared-folders-get-shared-properties": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/65-delegates-and-shared-folders/get-shared-properties.yaml",
3940
"outlook-mime-headers-get-internet-headers-message-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/70-mime-headers/get-internet-headers-message-read.yaml",
4041
"outlook-mime-headers-manage-custom-internet-headers-message-compose": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/70-mime-headers/manage-custom-internet-headers-message-compose.yaml",
@@ -64,6 +65,5 @@
6465
"outlook-other-item-apis-get-conversation-id-message": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-conversation-id-message.yaml",
6566
"outlook-other-item-apis-get-date-time-created-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-date-time-created-read.yaml",
6667
"outlook-other-item-apis-get-date-time-modified-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/90-other-item-apis/get-date-time-modified-read.yaml",
67-
"outlook-calendar-properties-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/calendar-properties-apis.yaml",
68-
"outlook-session-data-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/session-data-apis.yaml"
68+
"outlook-calendar-properties-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/outlook/99-preview-apis/calendar-properties-apis.yaml"
6969
}

view/outlook.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
"outlook-display-items-display-reply-forms": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/55-display-items/display-reply-forms.yaml",
3636
"outlook-display-items-display-reply-with-attachments": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/55-display-items/display-reply-with-attachments.yaml",
3737
"outlook-work-with-client-signatures": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/60-event-based-activation/work-with-client-signatures.yaml",
38+
"outlook-event-based-activation-session-data-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/60-event-based-activation/session-data-apis.yaml",
3839
"outlook-delegates-and-shared-folders-get-shared-properties": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/65-delegates-and-shared-folders/get-shared-properties.yaml",
3940
"outlook-mime-headers-get-internet-headers-message-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/70-mime-headers/get-internet-headers-message-read.yaml",
4041
"outlook-mime-headers-manage-custom-internet-headers-message-compose": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/70-mime-headers/manage-custom-internet-headers-message-compose.yaml",
@@ -64,6 +65,5 @@
6465
"outlook-other-item-apis-get-conversation-id-message": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/90-other-item-apis/get-conversation-id-message.yaml",
6566
"outlook-other-item-apis-get-date-time-created-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/90-other-item-apis/get-date-time-created-read.yaml",
6667
"outlook-other-item-apis-get-date-time-modified-read": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/90-other-item-apis/get-date-time-modified-read.yaml",
67-
"outlook-calendar-properties-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/99-preview-apis/calendar-properties-apis.yaml",
68-
"outlook-session-data-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/99-preview-apis/session-data-apis.yaml"
68+
"outlook-calendar-properties-apis": "https://raw.githubusercontent.com/OfficeDev/office-js-snippets/main/samples/outlook/99-preview-apis/calendar-properties-apis.yaml"
6969
}

0 commit comments

Comments
 (0)