@microsoft/app-manifest 1.0.4-alpha.3446e1b60.0 → 1.0.4-alpha.3c606d131.0
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/build/generated-types/teams/TeamsManifestV1D23.js +518 -393
- package/build/generated-types/teams/TeamsManifestV1D23.js.map +1 -1
- package/build/generated-types/teams/TeamsManifestV1D24.js +545 -414
- package/build/generated-types/teams/TeamsManifestV1D24.js.map +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -20,10 +20,10 @@ class Convert {
|
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
exports.Convert = Convert;
|
|
23
|
-
function invalidValue(typ, val, key, parent =
|
|
23
|
+
function invalidValue(typ, val, key, parent = "") {
|
|
24
24
|
const prettyTyp = prettyTypeName(typ);
|
|
25
|
-
const parentText = parent ? ` on ${parent}` :
|
|
26
|
-
const keyText = key ? ` for key "${key}"` :
|
|
25
|
+
const parentText = parent ? ` on ${parent}` : "";
|
|
26
|
+
const keyText = key ? ` for key "${key}"` : "";
|
|
27
27
|
throw Error(`Invalid value${keyText}${parentText}. Expected ${prettyTyp} but got ${JSON.stringify(val)}`);
|
|
28
28
|
}
|
|
29
29
|
function prettyTypeName(typ) {
|
|
@@ -32,7 +32,11 @@ function prettyTypeName(typ) {
|
|
|
32
32
|
return `an optional ${prettyTypeName(typ[1])}`;
|
|
33
33
|
}
|
|
34
34
|
else {
|
|
35
|
-
return `one of [${typ
|
|
35
|
+
return `one of [${typ
|
|
36
|
+
.map((a) => {
|
|
37
|
+
return prettyTypeName(a);
|
|
38
|
+
})
|
|
39
|
+
.join(", ")}]`;
|
|
36
40
|
}
|
|
37
41
|
}
|
|
38
42
|
else if (typeof typ === "object" && typ.literal !== undefined) {
|
|
@@ -45,7 +49,7 @@ function prettyTypeName(typ) {
|
|
|
45
49
|
function jsonToJSProps(typ) {
|
|
46
50
|
if (typ.jsonToJS === undefined) {
|
|
47
51
|
const map = {};
|
|
48
|
-
typ.props.forEach((p) => map[p.json] = { key: p.js, typ: p.typ });
|
|
52
|
+
typ.props.forEach((p) => (map[p.json] = { key: p.js, typ: p.typ }));
|
|
49
53
|
typ.jsonToJS = map;
|
|
50
54
|
}
|
|
51
55
|
return typ.jsonToJS;
|
|
@@ -53,12 +57,12 @@ function jsonToJSProps(typ) {
|
|
|
53
57
|
function jsToJSONProps(typ) {
|
|
54
58
|
if (typ.jsToJSON === undefined) {
|
|
55
59
|
const map = {};
|
|
56
|
-
typ.props.forEach((p) => map[p.js] = { key: p.json, typ: p.typ });
|
|
60
|
+
typ.props.forEach((p) => (map[p.js] = { key: p.json, typ: p.typ }));
|
|
57
61
|
typ.jsToJSON = map;
|
|
58
62
|
}
|
|
59
63
|
return typ.jsToJSON;
|
|
60
64
|
}
|
|
61
|
-
function transform(val, typ, getProps, key =
|
|
65
|
+
function transform(val, typ, getProps, key = "", parent = "") {
|
|
62
66
|
function transformPrimitive(typ, val) {
|
|
63
67
|
if (typeof typ === typeof val)
|
|
64
68
|
return val;
|
|
@@ -79,13 +83,15 @@ function transform(val, typ, getProps, key = '', parent = '') {
|
|
|
79
83
|
function transformEnum(cases, val) {
|
|
80
84
|
if (cases.indexOf(val) !== -1)
|
|
81
85
|
return val;
|
|
82
|
-
return invalidValue(cases.map(a => {
|
|
86
|
+
return invalidValue(cases.map((a) => {
|
|
87
|
+
return l(a);
|
|
88
|
+
}), val, key, parent);
|
|
83
89
|
}
|
|
84
90
|
function transformArray(typ, val) {
|
|
85
91
|
// val must be an array with no invalid elements
|
|
86
92
|
if (!Array.isArray(val))
|
|
87
93
|
return invalidValue(l("array"), val, key, parent);
|
|
88
|
-
return val.map(el => transform(el, typ, getProps));
|
|
94
|
+
return val.map((el) => transform(el, typ, getProps));
|
|
89
95
|
}
|
|
90
96
|
function transformDate(val) {
|
|
91
97
|
if (val === null) {
|
|
@@ -102,12 +108,12 @@ function transform(val, typ, getProps, key = '', parent = '') {
|
|
|
102
108
|
return invalidValue(l(ref || "object"), val, key, parent);
|
|
103
109
|
}
|
|
104
110
|
const result = {};
|
|
105
|
-
Object.getOwnPropertyNames(props).forEach(key => {
|
|
111
|
+
Object.getOwnPropertyNames(props).forEach((key) => {
|
|
106
112
|
const prop = props[key];
|
|
107
113
|
const v = Object.prototype.hasOwnProperty.call(val, key) ? val[key] : undefined;
|
|
108
114
|
result[prop.key] = transform(v, prop.typ, getProps, key, ref);
|
|
109
115
|
});
|
|
110
|
-
Object.getOwnPropertyNames(val).forEach(key => {
|
|
116
|
+
Object.getOwnPropertyNames(val).forEach((key) => {
|
|
111
117
|
if (!Object.prototype.hasOwnProperty.call(props, key)) {
|
|
112
118
|
result[key] = transform(val[key], additional, getProps, key, ref);
|
|
113
119
|
}
|
|
@@ -131,9 +137,12 @@ function transform(val, typ, getProps, key = '', parent = '') {
|
|
|
131
137
|
if (Array.isArray(typ))
|
|
132
138
|
return transformEnum(typ, val);
|
|
133
139
|
if (typeof typ === "object") {
|
|
134
|
-
return typ.hasOwnProperty("unionMembers")
|
|
135
|
-
|
|
136
|
-
|
|
140
|
+
return typ.hasOwnProperty("unionMembers")
|
|
141
|
+
? transformUnion(typ.unionMembers, val)
|
|
142
|
+
: typ.hasOwnProperty("arrayItems")
|
|
143
|
+
? transformArray(typ.arrayItems, val)
|
|
144
|
+
: typ.hasOwnProperty("props")
|
|
145
|
+
? transformObject(getProps(typ), typ.additional, val)
|
|
137
146
|
: invalidValue(typ, val, key, parent);
|
|
138
147
|
}
|
|
139
148
|
// Numbers can be parsed by Date but shouldn't be.
|
|
@@ -166,77 +175,141 @@ function r(name) {
|
|
|
166
175
|
return { ref: name };
|
|
167
176
|
}
|
|
168
177
|
const typeMap = {
|
|
169
|
-
|
|
178
|
+
TeamsManifestV1D23: o([
|
|
170
179
|
{ json: "$schema", js: "$schema", typ: u(undefined, "") },
|
|
171
180
|
{ json: "manifestVersion", js: "manifestVersion", typ: r("ManifestVersion") },
|
|
172
181
|
{ json: "version", js: "version", typ: "" },
|
|
173
182
|
{ json: "id", js: "id", typ: "" },
|
|
174
|
-
{
|
|
183
|
+
{
|
|
184
|
+
json: "localizationInfo",
|
|
185
|
+
js: "localizationInfo",
|
|
186
|
+
typ: u(undefined, r("LocalizationInfo")),
|
|
187
|
+
},
|
|
175
188
|
{ json: "developer", js: "developer", typ: r("Developer") },
|
|
176
189
|
{ json: "name", js: "name", typ: r("NameClass") },
|
|
177
190
|
{ json: "description", js: "description", typ: r("Description") },
|
|
178
191
|
{ json: "icons", js: "icons", typ: r("Icons") },
|
|
179
192
|
{ json: "accentColor", js: "accentColor", typ: "" },
|
|
180
|
-
{
|
|
193
|
+
{
|
|
194
|
+
json: "configurableTabs",
|
|
195
|
+
js: "configurableTabs",
|
|
196
|
+
typ: u(undefined, a(r("ConfigurableTab"))),
|
|
197
|
+
},
|
|
181
198
|
{ json: "staticTabs", js: "staticTabs", typ: u(undefined, a(r("StaticTab"))) },
|
|
182
199
|
{ json: "bots", js: "bots", typ: u(undefined, a(r("Bot"))) },
|
|
183
200
|
{ json: "connectors", js: "connectors", typ: u(undefined, a(r("Connector"))) },
|
|
184
|
-
{
|
|
185
|
-
|
|
201
|
+
{
|
|
202
|
+
json: "subscriptionOffer",
|
|
203
|
+
js: "subscriptionOffer",
|
|
204
|
+
typ: u(undefined, r("SubscriptionOffer")),
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
json: "composeExtensions",
|
|
208
|
+
js: "composeExtensions",
|
|
209
|
+
typ: u(undefined, a(r("ComposeExtension"))),
|
|
210
|
+
},
|
|
186
211
|
{ json: "permissions", js: "permissions", typ: u(undefined, a(r("Permission"))) },
|
|
187
|
-
{
|
|
212
|
+
{
|
|
213
|
+
json: "devicePermissions",
|
|
214
|
+
js: "devicePermissions",
|
|
215
|
+
typ: u(undefined, a(r("DevicePermission"))),
|
|
216
|
+
},
|
|
188
217
|
{ json: "validDomains", js: "validDomains", typ: u(undefined, a("")) },
|
|
189
|
-
{
|
|
218
|
+
{
|
|
219
|
+
json: "webApplicationInfo",
|
|
220
|
+
js: "webApplicationInfo",
|
|
221
|
+
typ: u(undefined, r("WebApplicationInfo")),
|
|
222
|
+
},
|
|
190
223
|
{ json: "graphConnector", js: "graphConnector", typ: u(undefined, r("GraphConnector")) },
|
|
191
224
|
{ json: "showLoadingIndicator", js: "showLoadingIndicator", typ: u(undefined, true) },
|
|
192
225
|
{ json: "isFullScreen", js: "isFullScreen", typ: u(undefined, true) },
|
|
193
226
|
{ json: "activities", js: "activities", typ: u(undefined, r("Activities")) },
|
|
194
|
-
{
|
|
195
|
-
|
|
196
|
-
|
|
227
|
+
{
|
|
228
|
+
json: "configurableProperties",
|
|
229
|
+
js: "configurableProperties",
|
|
230
|
+
typ: u(undefined, a(r("ConfigurableProperty"))),
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
json: "supportedChannelTypes",
|
|
234
|
+
js: "supportedChannelTypes",
|
|
235
|
+
typ: u(undefined, a(r("SupportedChannelType"))),
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
json: "defaultBlockUntilAdminAction",
|
|
239
|
+
js: "defaultBlockUntilAdminAction",
|
|
240
|
+
typ: u(undefined, true),
|
|
241
|
+
},
|
|
197
242
|
{ json: "publisherDocsUrl", js: "publisherDocsUrl", typ: u(undefined, "") },
|
|
198
|
-
{
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
243
|
+
{
|
|
244
|
+
json: "defaultInstallScope",
|
|
245
|
+
js: "defaultInstallScope",
|
|
246
|
+
typ: u(undefined, r("DefaultInstallScope")),
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
json: "defaultGroupCapability",
|
|
250
|
+
js: "defaultGroupCapability",
|
|
251
|
+
typ: u(undefined, r("DefaultGroupCapability")),
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
json: "meetingExtensionDefinition",
|
|
255
|
+
js: "meetingExtensionDefinition",
|
|
256
|
+
typ: u(undefined, r("MeetingExtensionDefinition")),
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
json: "authorization",
|
|
260
|
+
js: "authorization",
|
|
261
|
+
typ: u(undefined, r("TeamsManifestV1D23Authorization")),
|
|
262
|
+
},
|
|
202
263
|
{ json: "extensions", js: "extensions", typ: u(undefined, a(r("ElementExtension"))) },
|
|
203
264
|
{ json: "dashboardCards", js: "dashboardCards", typ: u(undefined, a(r("DashboardCard"))) },
|
|
204
265
|
{ json: "copilotAgents", js: "copilotAgents", typ: u(undefined, r("CopilotAgents")) },
|
|
205
266
|
{ json: "intuneInfo", js: "intuneInfo", typ: u(undefined, r("IntuneInfo")) },
|
|
206
|
-
{
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
267
|
+
{
|
|
268
|
+
json: "elementRelationshipSet",
|
|
269
|
+
js: "elementRelationshipSet",
|
|
270
|
+
typ: u(undefined, r("ElementRelationshipSet")),
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
json: "backgroundLoadConfiguration",
|
|
274
|
+
js: "backgroundLoadConfiguration",
|
|
275
|
+
typ: u(undefined, r("BackgroundLoadConfiguration")),
|
|
276
|
+
},
|
|
277
|
+
], false),
|
|
278
|
+
Activities: o([
|
|
210
279
|
{ json: "activityTypes", js: "activityTypes", typ: u(undefined, a(r("ActivityType"))) },
|
|
211
280
|
{ json: "activityIcons", js: "activityIcons", typ: u(undefined, a(r("ActivityIcon"))) },
|
|
212
281
|
], false),
|
|
213
|
-
|
|
282
|
+
ActivityIcon: o([
|
|
214
283
|
{ json: "id", js: "id", typ: "" },
|
|
215
284
|
{ json: "iconFile", js: "iconFile", typ: "" },
|
|
216
285
|
], false),
|
|
217
|
-
|
|
286
|
+
ActivityType: o([
|
|
218
287
|
{ json: "type", js: "type", typ: "" },
|
|
219
288
|
{ json: "description", js: "description", typ: "" },
|
|
220
289
|
{ json: "templateText", js: "templateText", typ: "" },
|
|
221
290
|
{ json: "allowedIconIds", js: "allowedIconIds", typ: u(undefined, a("")) },
|
|
222
291
|
], false),
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
292
|
+
TeamsManifestV1D23Authorization: o([{ json: "permissions", js: "permissions", typ: u(undefined, r("Permissions")) }], false),
|
|
293
|
+
Permissions: o([
|
|
294
|
+
{
|
|
295
|
+
json: "resourceSpecific",
|
|
296
|
+
js: "resourceSpecific",
|
|
297
|
+
typ: u(undefined, a(r("ResourceSpecific"))),
|
|
298
|
+
},
|
|
228
299
|
], false),
|
|
229
|
-
|
|
300
|
+
ResourceSpecific: o([
|
|
230
301
|
{ json: "name", js: "name", typ: "" },
|
|
231
302
|
{ json: "type", js: "type", typ: r("ResourceSpecificType") },
|
|
232
303
|
], false),
|
|
233
|
-
|
|
234
|
-
{
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
304
|
+
BackgroundLoadConfiguration: o([
|
|
305
|
+
{
|
|
306
|
+
json: "tabConfiguration",
|
|
307
|
+
js: "tabConfiguration",
|
|
308
|
+
typ: u(undefined, r("TabConfiguration")),
|
|
309
|
+
},
|
|
238
310
|
], false),
|
|
239
|
-
|
|
311
|
+
TabConfiguration: o([{ json: "contentUrl", js: "contentUrl", typ: "" }], false),
|
|
312
|
+
Bot: o([
|
|
240
313
|
{ json: "botId", js: "botId", typ: "" },
|
|
241
314
|
{ json: "configuration", js: "configuration", typ: u(undefined, r("Configuration")) },
|
|
242
315
|
{ json: "needsChannelSelector", js: "needsChannelSelector", typ: u(undefined, true) },
|
|
@@ -246,70 +319,104 @@ const typeMap = {
|
|
|
246
319
|
{ json: "supportsVideo", js: "supportsVideo", typ: u(undefined, true) },
|
|
247
320
|
{ json: "scopes", js: "scopes", typ: a(r("CommandListScope")) },
|
|
248
321
|
{ json: "commandLists", js: "commandLists", typ: u(undefined, a(r("CommandList"))) },
|
|
249
|
-
{
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
322
|
+
{
|
|
323
|
+
json: "requirementSet",
|
|
324
|
+
js: "requirementSet",
|
|
325
|
+
typ: u(undefined, r("ElementRequirementSet")),
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
json: "registrationInfo",
|
|
329
|
+
js: "registrationInfo",
|
|
330
|
+
typ: u(undefined, r("RegistrationInfo")),
|
|
331
|
+
},
|
|
332
|
+
], false),
|
|
333
|
+
CommandList: o([
|
|
253
334
|
{ json: "scopes", js: "scopes", typ: a(r("CommandListScope")) },
|
|
254
335
|
{ json: "commands", js: "commands", typ: a(r("CommandListCommand")) },
|
|
255
336
|
], false),
|
|
256
|
-
|
|
337
|
+
CommandListCommand: o([
|
|
257
338
|
{ json: "title", js: "title", typ: "" },
|
|
258
339
|
{ json: "description", js: "description", typ: "" },
|
|
259
340
|
], false),
|
|
260
|
-
|
|
341
|
+
Configuration: o([
|
|
261
342
|
{ json: "team", js: "team", typ: u(undefined, r("Team")) },
|
|
262
343
|
{ json: "groupChat", js: "groupChat", typ: u(undefined, r("Team")) },
|
|
263
344
|
], false),
|
|
264
|
-
|
|
345
|
+
Team: o([
|
|
265
346
|
{ json: "fetchTask", js: "fetchTask", typ: u(undefined, true) },
|
|
266
347
|
{ json: "taskInfo", js: "taskInfo", typ: u(undefined, r("TaskInfo")) },
|
|
267
348
|
], false),
|
|
268
|
-
|
|
349
|
+
TaskInfo: o([
|
|
269
350
|
{ json: "title", js: "title", typ: u(undefined, "") },
|
|
270
351
|
{ json: "width", js: "width", typ: u(undefined, "") },
|
|
271
352
|
{ json: "height", js: "height", typ: u(undefined, "") },
|
|
272
353
|
{ json: "url", js: "url", typ: u(undefined, "") },
|
|
273
354
|
], false),
|
|
274
|
-
|
|
355
|
+
RegistrationInfo: o([
|
|
275
356
|
{ json: "source", js: "source", typ: r("Source") },
|
|
276
357
|
{ json: "environment", js: "environment", typ: u(undefined, "") },
|
|
277
358
|
{ json: "schemaName", js: "schemaName", typ: u(undefined, "") },
|
|
278
359
|
{ json: "clusterCategory", js: "clusterCategory", typ: u(undefined, "") },
|
|
279
360
|
], false),
|
|
280
|
-
|
|
281
|
-
{
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
361
|
+
ElementRequirementSet: o([
|
|
362
|
+
{
|
|
363
|
+
json: "hostMustSupportFunctionalities",
|
|
364
|
+
js: "hostMustSupportFunctionalities",
|
|
365
|
+
typ: a(r("HostFunctionality")),
|
|
366
|
+
},
|
|
285
367
|
], false),
|
|
286
|
-
"
|
|
368
|
+
HostFunctionality: o([{ json: "name", js: "name", typ: r("HostMustSupportFunctionalityName") }], false),
|
|
369
|
+
ComposeExtension: o([
|
|
287
370
|
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
288
371
|
{ json: "botId", js: "botId", typ: u(undefined, "") },
|
|
289
|
-
{
|
|
290
|
-
|
|
372
|
+
{
|
|
373
|
+
json: "composeExtensionType",
|
|
374
|
+
js: "composeExtensionType",
|
|
375
|
+
typ: u(undefined, r("ComposeExtensionType")),
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
json: "authorization",
|
|
379
|
+
js: "authorization",
|
|
380
|
+
typ: u(undefined, r("ComposeExtensionAuthorization")),
|
|
381
|
+
},
|
|
291
382
|
{ json: "apiSpecificationFile", js: "apiSpecificationFile", typ: u(undefined, "") },
|
|
292
|
-
{
|
|
383
|
+
{
|
|
384
|
+
json: "canUpdateConfiguration",
|
|
385
|
+
js: "canUpdateConfiguration",
|
|
386
|
+
typ: u(undefined, u(true, null)),
|
|
387
|
+
},
|
|
293
388
|
{ json: "commands", js: "commands", typ: u(undefined, a(r("ComposeExtensionCommand"))) },
|
|
294
389
|
{ json: "messageHandlers", js: "messageHandlers", typ: u(undefined, a(r("MessageHandler"))) },
|
|
295
|
-
{
|
|
390
|
+
{
|
|
391
|
+
json: "requirementSet",
|
|
392
|
+
js: "requirementSet",
|
|
393
|
+
typ: u(undefined, r("ElementRequirementSet")),
|
|
394
|
+
},
|
|
296
395
|
], false),
|
|
297
|
-
|
|
396
|
+
ComposeExtensionAuthorization: o([
|
|
298
397
|
{ json: "authType", js: "authType", typ: u(undefined, r("AuthType")) },
|
|
299
|
-
{
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
398
|
+
{
|
|
399
|
+
json: "microsoftEntraConfiguration",
|
|
400
|
+
js: "microsoftEntraConfiguration",
|
|
401
|
+
typ: u(undefined, r("MicrosoftEntraConfiguration")),
|
|
402
|
+
},
|
|
403
|
+
{
|
|
404
|
+
json: "apiSecretServiceAuthConfiguration",
|
|
405
|
+
js: "apiSecretServiceAuthConfiguration",
|
|
406
|
+
typ: u(undefined, r("APISecretServiceAuthConfiguration")),
|
|
407
|
+
},
|
|
408
|
+
], false),
|
|
409
|
+
APISecretServiceAuthConfiguration: o([{ json: "apiSecretRegistrationId", js: "apiSecretRegistrationId", typ: u(undefined, "") }], false),
|
|
410
|
+
MicrosoftEntraConfiguration: o([{ json: "supportsSingleSignOn", js: "supportsSingleSignOn", typ: u(undefined, true) }], false),
|
|
411
|
+
ComposeExtensionCommand: o([
|
|
309
412
|
{ json: "id", js: "id", typ: "" },
|
|
310
413
|
{ json: "type", js: "type", typ: u(undefined, r("CommandType")) },
|
|
311
414
|
{ json: "samplePrompts", js: "samplePrompts", typ: u(undefined, a(r("SamplePrompt"))) },
|
|
312
|
-
{
|
|
415
|
+
{
|
|
416
|
+
json: "apiResponseRenderingTemplateFile",
|
|
417
|
+
js: "apiResponseRenderingTemplateFile",
|
|
418
|
+
typ: u(undefined, ""),
|
|
419
|
+
},
|
|
313
420
|
{ json: "context", js: "context", typ: u(undefined, a(r("CommandContext"))) },
|
|
314
421
|
{ json: "title", js: "title", typ: "" },
|
|
315
422
|
{ json: "description", js: "description", typ: u(undefined, "") },
|
|
@@ -319,7 +426,7 @@ const typeMap = {
|
|
|
319
426
|
{ json: "parameters", js: "parameters", typ: u(undefined, a(r("Parameter"))) },
|
|
320
427
|
{ json: "taskInfo", js: "taskInfo", typ: u(undefined, r("TaskInfo")) },
|
|
321
428
|
], false),
|
|
322
|
-
|
|
429
|
+
Parameter: o([
|
|
323
430
|
{ json: "name", js: "name", typ: "" },
|
|
324
431
|
{ json: "inputType", js: "inputType", typ: u(undefined, r("InputType")) },
|
|
325
432
|
{ json: "title", js: "title", typ: "" },
|
|
@@ -329,22 +436,24 @@ const typeMap = {
|
|
|
329
436
|
{ json: "semanticDescription", js: "semanticDescription", typ: u(undefined, "") },
|
|
330
437
|
{ json: "choices", js: "choices", typ: u(undefined, a(r("Choice"))) },
|
|
331
438
|
], false),
|
|
332
|
-
|
|
439
|
+
Choice: o([
|
|
333
440
|
{ json: "title", js: "title", typ: "" },
|
|
334
441
|
{ json: "value", js: "value", typ: "" },
|
|
335
442
|
], false),
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
], false),
|
|
339
|
-
"MessageHandler": o([
|
|
443
|
+
SamplePrompt: o([{ json: "text", js: "text", typ: "" }], false),
|
|
444
|
+
MessageHandler: o([
|
|
340
445
|
{ json: "type", js: "type", typ: r("MessageHandlerType") },
|
|
341
446
|
{ json: "value", js: "value", typ: r("Value") },
|
|
342
447
|
], false),
|
|
343
|
-
|
|
448
|
+
Value: o([
|
|
344
449
|
{ json: "domains", js: "domains", typ: u(undefined, a("")) },
|
|
345
|
-
{
|
|
450
|
+
{
|
|
451
|
+
json: "supportsAnonymizedPayloads",
|
|
452
|
+
js: "supportsAnonymizedPayloads",
|
|
453
|
+
typ: u(undefined, true),
|
|
454
|
+
},
|
|
346
455
|
], false),
|
|
347
|
-
|
|
456
|
+
ConfigurableTab: o([
|
|
348
457
|
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
349
458
|
{ json: "configurationUrl", js: "configurationUrl", typ: "" },
|
|
350
459
|
{ json: "canUpdateConfiguration", js: "canUpdateConfiguration", typ: u(undefined, true) },
|
|
@@ -352,30 +461,40 @@ const typeMap = {
|
|
|
352
461
|
{ json: "meetingSurfaces", js: "meetingSurfaces", typ: u(undefined, a(r("MeetingSurface"))) },
|
|
353
462
|
{ json: "context", js: "context", typ: u(undefined, a(r("ConfigurableTabContext"))) },
|
|
354
463
|
{ json: "sharePointPreviewImage", js: "sharePointPreviewImage", typ: u(undefined, "") },
|
|
355
|
-
{
|
|
464
|
+
{
|
|
465
|
+
json: "supportedSharePointHosts",
|
|
466
|
+
js: "supportedSharePointHosts",
|
|
467
|
+
typ: u(undefined, a(r("SupportedSharePointHost"))),
|
|
468
|
+
},
|
|
356
469
|
], false),
|
|
357
|
-
|
|
470
|
+
Connector: o([
|
|
358
471
|
{ json: "connectorId", js: "connectorId", typ: "" },
|
|
359
472
|
{ json: "configurationUrl", js: "configurationUrl", typ: u(undefined, "") },
|
|
360
473
|
{ json: "scopes", js: "scopes", typ: a(r("ConnectorScope")) },
|
|
361
474
|
], false),
|
|
362
|
-
|
|
363
|
-
{
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
475
|
+
CopilotAgents: o([
|
|
476
|
+
{
|
|
477
|
+
json: "declarativeAgents",
|
|
478
|
+
js: "declarativeAgents",
|
|
479
|
+
typ: u(undefined, a(r("DeclarativeAgentRef"))),
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
json: "customEngineAgents",
|
|
483
|
+
js: "customEngineAgents",
|
|
484
|
+
typ: u(undefined, a(r("CustomEngineAgent"))),
|
|
485
|
+
},
|
|
486
|
+
], false),
|
|
487
|
+
CustomEngineAgent: o([
|
|
367
488
|
{ json: "id", js: "id", typ: "" },
|
|
368
489
|
{ json: "type", js: "type", typ: r("SourceTypeEnum") },
|
|
369
490
|
{ json: "disclaimer", js: "disclaimer", typ: u(undefined, r("Disclaimer")) },
|
|
370
491
|
], false),
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
], "any"),
|
|
374
|
-
"DeclarativeAgentRef": o([
|
|
492
|
+
Disclaimer: o([{ json: "text", js: "text", typ: "" }], "any"),
|
|
493
|
+
DeclarativeAgentRef: o([
|
|
375
494
|
{ json: "id", js: "id", typ: "" },
|
|
376
495
|
{ json: "file", js: "file", typ: "" },
|
|
377
496
|
], false),
|
|
378
|
-
|
|
497
|
+
DashboardCard: o([
|
|
379
498
|
{ json: "id", js: "id", typ: "" },
|
|
380
499
|
{ json: "displayName", js: "displayName", typ: "" },
|
|
381
500
|
{ json: "description", js: "description", typ: "" },
|
|
@@ -384,141 +503,195 @@ const typeMap = {
|
|
|
384
503
|
{ json: "contentSource", js: "contentSource", typ: r("DashboardCardContentSource") },
|
|
385
504
|
{ json: "defaultSize", js: "defaultSize", typ: r("DefaultSize") },
|
|
386
505
|
], false),
|
|
387
|
-
|
|
506
|
+
DashboardCardContentSource: o([
|
|
388
507
|
{ json: "sourceType", js: "sourceType", typ: u(undefined, r("SourceTypeEnum")) },
|
|
389
|
-
{
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
508
|
+
{
|
|
509
|
+
json: "botConfiguration",
|
|
510
|
+
js: "botConfiguration",
|
|
511
|
+
typ: u(undefined, r("BotConfiguration")),
|
|
512
|
+
},
|
|
513
|
+
], false),
|
|
514
|
+
BotConfiguration: o([{ json: "botId", js: "botId", typ: u(undefined, "") }], false),
|
|
515
|
+
DashboardCardIcon: o([
|
|
395
516
|
{ json: "iconUrl", js: "iconUrl", typ: u(undefined, "") },
|
|
396
517
|
{ json: "officeUIFabricIconName", js: "officeUIFabricIconName", typ: u(undefined, "") },
|
|
397
518
|
], false),
|
|
398
|
-
|
|
519
|
+
DefaultGroupCapability: o([
|
|
399
520
|
{ json: "team", js: "team", typ: u(undefined, r("Groupchat")) },
|
|
400
521
|
{ json: "groupchat", js: "groupchat", typ: u(undefined, r("Groupchat")) },
|
|
401
522
|
{ json: "meetings", js: "meetings", typ: u(undefined, r("Groupchat")) },
|
|
402
523
|
], false),
|
|
403
|
-
|
|
524
|
+
Description: o([
|
|
404
525
|
{ json: "short", js: "short", typ: "" },
|
|
405
526
|
{ json: "full", js: "full", typ: "" },
|
|
406
527
|
], false),
|
|
407
|
-
|
|
528
|
+
Developer: o([
|
|
408
529
|
{ json: "name", js: "name", typ: "" },
|
|
409
530
|
{ json: "mpnId", js: "mpnId", typ: u(undefined, "") },
|
|
410
531
|
{ json: "websiteUrl", js: "websiteUrl", typ: "" },
|
|
411
532
|
{ json: "privacyUrl", js: "privacyUrl", typ: "" },
|
|
412
533
|
{ json: "termsOfUseUrl", js: "termsOfUseUrl", typ: "" },
|
|
413
534
|
], false),
|
|
414
|
-
|
|
415
|
-
{
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
535
|
+
ElementRelationshipSet: o([
|
|
536
|
+
{
|
|
537
|
+
json: "oneWayDependencies",
|
|
538
|
+
js: "oneWayDependencies",
|
|
539
|
+
typ: u(undefined, a(r("OneWayDependency"))),
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
json: "mutualDependencies",
|
|
543
|
+
js: "mutualDependencies",
|
|
544
|
+
typ: u(undefined, a(a(r("ElementReference")))),
|
|
545
|
+
},
|
|
546
|
+
], false),
|
|
547
|
+
ElementReference: o([
|
|
419
548
|
{ json: "name", js: "name", typ: r("MutualDependencyName") },
|
|
420
549
|
{ json: "id", js: "id", typ: "" },
|
|
421
550
|
{ json: "commandIds", js: "commandIds", typ: u(undefined, a("")) },
|
|
422
551
|
], false),
|
|
423
|
-
|
|
552
|
+
OneWayDependency: o([
|
|
424
553
|
{ json: "element", js: "element", typ: r("ElementReference") },
|
|
425
554
|
{ json: "dependsOn", js: "dependsOn", typ: a(r("ElementReference")) },
|
|
426
555
|
], false),
|
|
427
|
-
|
|
428
|
-
{
|
|
556
|
+
ElementExtension: o([
|
|
557
|
+
{
|
|
558
|
+
json: "requirements",
|
|
559
|
+
js: "requirements",
|
|
560
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
561
|
+
},
|
|
429
562
|
{ json: "runtimes", js: "runtimes", typ: u(undefined, a(r("ExtensionRuntimesArray"))) },
|
|
430
563
|
{ json: "ribbons", js: "ribbons", typ: u(undefined, a(r("ExtensionRibbonsArray"))) },
|
|
431
|
-
{
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
{
|
|
564
|
+
{
|
|
565
|
+
json: "autoRunEvents",
|
|
566
|
+
js: "autoRunEvents",
|
|
567
|
+
typ: u(undefined, a(r("ExtensionAutoRunEventsArray"))),
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
json: "alternates",
|
|
571
|
+
js: "alternates",
|
|
572
|
+
typ: u(undefined, a(r("ExtensionAlternateVersionsArray"))),
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
json: "contentRuntimes",
|
|
576
|
+
js: "contentRuntimes",
|
|
577
|
+
typ: u(undefined, a(r("ExtensionContentRuntimeArray"))),
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
json: "getStartedMessages",
|
|
581
|
+
js: "getStartedMessages",
|
|
582
|
+
typ: u(undefined, a(r("ExtensionGetStartedMessageArray"))),
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
json: "contextMenus",
|
|
586
|
+
js: "contextMenus",
|
|
587
|
+
typ: u(undefined, a(r("ExtensionContextMenuArray"))),
|
|
588
|
+
},
|
|
589
|
+
{
|
|
590
|
+
json: "keyboardShortcuts",
|
|
591
|
+
js: "keyboardShortcuts",
|
|
592
|
+
typ: u(undefined, a(r("ExtensionKeyboardShortcut"))),
|
|
593
|
+
},
|
|
437
594
|
{ json: "audienceClaimUrl", js: "audienceClaimUrl", typ: u(undefined, "") },
|
|
438
595
|
], false),
|
|
439
|
-
|
|
440
|
-
{
|
|
596
|
+
ExtensionAlternateVersionsArray: o([
|
|
597
|
+
{
|
|
598
|
+
json: "requirements",
|
|
599
|
+
js: "requirements",
|
|
600
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
601
|
+
},
|
|
441
602
|
{ json: "prefer", js: "prefer", typ: u(undefined, r("Prefer")) },
|
|
442
603
|
{ json: "hide", js: "hide", typ: u(undefined, r("Hide")) },
|
|
443
604
|
{ json: "alternateIcons", js: "alternateIcons", typ: u(undefined, r("AlternateIcons")) },
|
|
444
605
|
], false),
|
|
445
|
-
|
|
606
|
+
AlternateIcons: o([
|
|
446
607
|
{ json: "icon", js: "icon", typ: r("ExtensionCommonIcon") },
|
|
447
608
|
{ json: "highResolutionIcon", js: "highResolutionIcon", typ: r("ExtensionCommonIcon") },
|
|
448
609
|
], false),
|
|
449
|
-
|
|
610
|
+
ExtensionCommonIcon: o([
|
|
450
611
|
{ json: "size", js: "size", typ: 3.14 },
|
|
451
612
|
{ json: "url", js: "url", typ: "" },
|
|
452
613
|
], false),
|
|
453
|
-
|
|
454
|
-
{
|
|
455
|
-
|
|
614
|
+
Hide: o([
|
|
615
|
+
{
|
|
616
|
+
json: "storeOfficeAddin",
|
|
617
|
+
js: "storeOfficeAddin",
|
|
618
|
+
typ: u(undefined, r("StoreOfficeAddin")),
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
json: "customOfficeAddin",
|
|
622
|
+
js: "customOfficeAddin",
|
|
623
|
+
typ: u(undefined, r("CustomOfficeAddin")),
|
|
624
|
+
},
|
|
456
625
|
], "any"),
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
], false),
|
|
460
|
-
"StoreOfficeAddin": o([
|
|
626
|
+
CustomOfficeAddin: o([{ json: "officeAddinId", js: "officeAddinId", typ: "" }], false),
|
|
627
|
+
StoreOfficeAddin: o([
|
|
461
628
|
{ json: "officeAddinId", js: "officeAddinId", typ: "" },
|
|
462
629
|
{ json: "assetId", js: "assetId", typ: "" },
|
|
463
630
|
], false),
|
|
464
|
-
|
|
631
|
+
Prefer: o([
|
|
465
632
|
{ json: "comAddin", js: "comAddin", typ: u(undefined, r("COMAddin")) },
|
|
466
|
-
{
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
"ExtensionXllCustomFunctions": o([
|
|
472
|
-
{ json: "fileName", js: "fileName", typ: u(undefined, "") },
|
|
633
|
+
{
|
|
634
|
+
json: "xllCustomFunctions",
|
|
635
|
+
js: "xllCustomFunctions",
|
|
636
|
+
typ: u(undefined, r("ExtensionXllCustomFunctions")),
|
|
637
|
+
},
|
|
473
638
|
], "any"),
|
|
474
|
-
|
|
639
|
+
COMAddin: o([{ json: "progId", js: "progId", typ: "" }], false),
|
|
640
|
+
ExtensionXllCustomFunctions: o([{ json: "fileName", js: "fileName", typ: u(undefined, "") }], "any"),
|
|
641
|
+
RequirementsExtensionElement: o([
|
|
475
642
|
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
476
643
|
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
477
644
|
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
478
645
|
], false),
|
|
479
|
-
|
|
646
|
+
Capability: o([
|
|
480
647
|
{ json: "name", js: "name", typ: "" },
|
|
481
648
|
{ json: "minVersion", js: "minVersion", typ: u(undefined, "") },
|
|
482
649
|
{ json: "maxVersion", js: "maxVersion", typ: u(undefined, "") },
|
|
483
650
|
], false),
|
|
484
|
-
|
|
485
|
-
{
|
|
651
|
+
ExtensionAutoRunEventsArray: o([
|
|
652
|
+
{
|
|
653
|
+
json: "requirements",
|
|
654
|
+
js: "requirements",
|
|
655
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
656
|
+
},
|
|
486
657
|
{ json: "events", js: "events", typ: a(r("Event")) },
|
|
487
658
|
], false),
|
|
488
|
-
|
|
659
|
+
Event: o([
|
|
489
660
|
{ json: "type", js: "type", typ: "" },
|
|
490
661
|
{ json: "actionId", js: "actionId", typ: "" },
|
|
491
662
|
{ json: "options", js: "options", typ: u(undefined, r("Options")) },
|
|
492
663
|
], false),
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
664
|
+
Options: o([{ json: "sendMode", js: "sendMode", typ: r("SendMode") }], false),
|
|
665
|
+
ExtensionContentRuntimeArray: o([
|
|
666
|
+
{
|
|
667
|
+
json: "requirements",
|
|
668
|
+
js: "requirements",
|
|
669
|
+
typ: u(undefined, r("ContentRuntimeRequirements")),
|
|
670
|
+
},
|
|
498
671
|
{ json: "id", js: "id", typ: "" },
|
|
499
672
|
{ json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
|
|
500
673
|
{ json: "requestedHeight", js: "requestedHeight", typ: u(undefined, 3.14) },
|
|
501
674
|
{ json: "requestedWidth", js: "requestedWidth", typ: u(undefined, 3.14) },
|
|
502
675
|
{ json: "disableSnapshot", js: "disableSnapshot", typ: u(undefined, true) },
|
|
503
676
|
], false),
|
|
504
|
-
|
|
677
|
+
ExtensionRuntimeCode: o([
|
|
505
678
|
{ json: "page", js: "page", typ: "" },
|
|
506
679
|
{ json: "script", js: "script", typ: u(undefined, "") },
|
|
507
680
|
], false),
|
|
508
|
-
|
|
681
|
+
ContentRuntimeRequirements: o([
|
|
509
682
|
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
510
683
|
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
511
684
|
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
512
685
|
], false),
|
|
513
|
-
|
|
686
|
+
ExtensionContextMenuArray: o([
|
|
514
687
|
{ json: "requirements", js: "requirements", typ: u(undefined, r("ContextMenuRequirements")) },
|
|
515
688
|
{ json: "menus", js: "menus", typ: a(r("ExtensionMenuItem")) },
|
|
516
689
|
], false),
|
|
517
|
-
|
|
690
|
+
ExtensionMenuItem: o([
|
|
518
691
|
{ json: "entryPoint", js: "entryPoint", typ: r("EntryPoint") },
|
|
519
692
|
{ json: "controls", js: "controls", typ: a(r("ExtensionCommonCustomGroupControlsItem")) },
|
|
520
693
|
], false),
|
|
521
|
-
|
|
694
|
+
ExtensionCommonCustomGroupControlsItem: o([
|
|
522
695
|
{ json: "id", js: "id", typ: "" },
|
|
523
696
|
{ json: "type", js: "type", typ: r("PurpleType") },
|
|
524
697
|
{ json: "builtInControlId", js: "builtInControlId", typ: u(undefined, "") },
|
|
@@ -528,9 +701,13 @@ const typeMap = {
|
|
|
528
701
|
{ json: "actionId", js: "actionId", typ: u(undefined, "") },
|
|
529
702
|
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
530
703
|
{ json: "enabled", js: "enabled", typ: u(undefined, true) },
|
|
531
|
-
{
|
|
704
|
+
{
|
|
705
|
+
json: "items",
|
|
706
|
+
js: "items",
|
|
707
|
+
typ: u(undefined, a(r("ExtensionCommonCustomControlMenuItem"))),
|
|
708
|
+
},
|
|
532
709
|
], false),
|
|
533
|
-
|
|
710
|
+
ExtensionCommonCustomControlMenuItem: o([
|
|
534
711
|
{ json: "id", js: "id", typ: "" },
|
|
535
712
|
{ json: "type", js: "type", typ: r("ItemType") },
|
|
536
713
|
{ json: "label", js: "label", typ: "" },
|
|
@@ -540,48 +717,68 @@ const typeMap = {
|
|
|
540
717
|
{ json: "enabled", js: "enabled", typ: u(undefined, true) },
|
|
541
718
|
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
542
719
|
], false),
|
|
543
|
-
|
|
720
|
+
ExtensionCommonSuperToolTip: o([
|
|
544
721
|
{ json: "title", js: "title", typ: "" },
|
|
545
722
|
{ json: "description", js: "description", typ: "" },
|
|
546
723
|
], false),
|
|
547
|
-
|
|
724
|
+
ContextMenuRequirements: o([
|
|
548
725
|
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
549
726
|
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
550
727
|
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
551
728
|
], false),
|
|
552
|
-
|
|
553
|
-
{
|
|
729
|
+
ExtensionGetStartedMessageArray: o([
|
|
730
|
+
{
|
|
731
|
+
json: "requirements",
|
|
732
|
+
js: "requirements",
|
|
733
|
+
typ: u(undefined, r("GetStartedMessageRequirements")),
|
|
734
|
+
},
|
|
554
735
|
{ json: "title", js: "title", typ: "" },
|
|
555
736
|
{ json: "description", js: "description", typ: "" },
|
|
556
737
|
{ json: "learnMoreUrl", js: "learnMoreUrl", typ: "" },
|
|
557
738
|
], false),
|
|
558
|
-
|
|
739
|
+
GetStartedMessageRequirements: o([
|
|
559
740
|
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
560
741
|
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
561
742
|
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
562
743
|
], false),
|
|
563
|
-
|
|
564
|
-
{
|
|
744
|
+
ExtensionKeyboardShortcut: o([
|
|
745
|
+
{
|
|
746
|
+
json: "requirements",
|
|
747
|
+
js: "requirements",
|
|
748
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
749
|
+
},
|
|
565
750
|
{ json: "shortcuts", js: "shortcuts", typ: a(r("ExtensionShortcut")) },
|
|
566
751
|
], "any"),
|
|
567
|
-
|
|
752
|
+
ExtensionShortcut: o([
|
|
568
753
|
{ json: "key", js: "key", typ: r("Key") },
|
|
569
754
|
{ json: "actionId", js: "actionId", typ: "" },
|
|
570
755
|
], "any"),
|
|
571
|
-
|
|
756
|
+
Key: o([
|
|
572
757
|
{ json: "default", js: "default", typ: "" },
|
|
573
758
|
{ json: "mac", js: "mac", typ: u(undefined, "") },
|
|
574
759
|
{ json: "web", js: "web", typ: u(undefined, "") },
|
|
575
760
|
{ json: "windows", js: "windows", typ: u(undefined, "") },
|
|
576
761
|
], "any"),
|
|
577
|
-
|
|
578
|
-
{
|
|
762
|
+
ExtensionRibbonsArray: o([
|
|
763
|
+
{
|
|
764
|
+
json: "requirements",
|
|
765
|
+
js: "requirements",
|
|
766
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
767
|
+
},
|
|
579
768
|
{ json: "contexts", js: "contexts", typ: u(undefined, a(r("ExtensionContext"))) },
|
|
580
769
|
{ json: "tabs", js: "tabs", typ: a(r("ExtensionRibbonsArrayTabsItem")) },
|
|
581
|
-
{
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
770
|
+
{
|
|
771
|
+
json: "fixedControls",
|
|
772
|
+
js: "fixedControls",
|
|
773
|
+
typ: u(undefined, a(r("ExtensionRibbonsArrayFixedControlItem"))),
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
json: "spamPreProcessingDialog",
|
|
777
|
+
js: "spamPreProcessingDialog",
|
|
778
|
+
typ: u(undefined, r("ExtensionRibbonsSpamPreProcessingDialog")),
|
|
779
|
+
},
|
|
780
|
+
], false),
|
|
781
|
+
ExtensionRibbonsArrayFixedControlItem: o([
|
|
585
782
|
{ json: "id", js: "id", typ: "" },
|
|
586
783
|
{ json: "type", js: "type", typ: r("FixedControlType") },
|
|
587
784
|
{ json: "label", js: "label", typ: "" },
|
|
@@ -590,70 +787,98 @@ const typeMap = {
|
|
|
590
787
|
{ json: "actionId", js: "actionId", typ: "" },
|
|
591
788
|
{ json: "enabled", js: "enabled", typ: true },
|
|
592
789
|
], false),
|
|
593
|
-
|
|
790
|
+
ExtensionRibbonsSpamPreProcessingDialog: o([
|
|
594
791
|
{ json: "title", js: "title", typ: "" },
|
|
595
792
|
{ json: "description", js: "description", typ: "" },
|
|
596
793
|
{ json: "spamNeverShowAgainOption", js: "spamNeverShowAgainOption", typ: u(undefined, true) },
|
|
597
|
-
{
|
|
794
|
+
{
|
|
795
|
+
json: "spamReportingOptions",
|
|
796
|
+
js: "spamReportingOptions",
|
|
797
|
+
typ: u(undefined, r("SpamReportingOptions")),
|
|
798
|
+
},
|
|
598
799
|
{ json: "spamFreeTextSectionTitle", js: "spamFreeTextSectionTitle", typ: u(undefined, "") },
|
|
599
800
|
{ json: "spamMoreInfo", js: "spamMoreInfo", typ: u(undefined, r("SpamMoreInfo")) },
|
|
600
801
|
], false),
|
|
601
|
-
|
|
802
|
+
SpamMoreInfo: o([
|
|
602
803
|
{ json: "text", js: "text", typ: "" },
|
|
603
804
|
{ json: "url", js: "url", typ: "" },
|
|
604
805
|
], "any"),
|
|
605
|
-
|
|
806
|
+
SpamReportingOptions: o([
|
|
606
807
|
{ json: "title", js: "title", typ: "" },
|
|
607
808
|
{ json: "options", js: "options", typ: a("") },
|
|
608
809
|
{ json: "type", js: "type", typ: u(undefined, r("SpamReportingOptionsType")) },
|
|
609
810
|
], "any"),
|
|
610
|
-
|
|
811
|
+
ExtensionRibbonsArrayTabsItem: o([
|
|
611
812
|
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
612
813
|
{ json: "label", js: "label", typ: u(undefined, "") },
|
|
613
814
|
{ json: "position", js: "position", typ: u(undefined, r("Position")) },
|
|
614
815
|
{ json: "builtInTabId", js: "builtInTabId", typ: u(undefined, "") },
|
|
615
|
-
{
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
816
|
+
{
|
|
817
|
+
json: "groups",
|
|
818
|
+
js: "groups",
|
|
819
|
+
typ: u(undefined, a(r("ExtensionRibbonsCustomTabGroupsItem"))),
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
json: "customMobileRibbonGroups",
|
|
823
|
+
js: "customMobileRibbonGroups",
|
|
824
|
+
typ: u(undefined, a(r("ExtensionRibbonsCustomMobileGroupItem"))),
|
|
825
|
+
},
|
|
826
|
+
], false),
|
|
827
|
+
ExtensionRibbonsCustomMobileGroupItem: o([
|
|
619
828
|
{ json: "id", js: "id", typ: "" },
|
|
620
829
|
{ json: "label", js: "label", typ: "" },
|
|
621
|
-
{
|
|
830
|
+
{
|
|
831
|
+
json: "controls",
|
|
832
|
+
js: "controls",
|
|
833
|
+
typ: a(r("ExtensionRibbonsCustomMobileControlButtonItem")),
|
|
834
|
+
},
|
|
622
835
|
], "any"),
|
|
623
|
-
|
|
836
|
+
ExtensionRibbonsCustomMobileControlButtonItem: o([
|
|
624
837
|
{ json: "id", js: "id", typ: "" },
|
|
625
838
|
{ json: "type", js: "type", typ: r("FluffyType") },
|
|
626
839
|
{ json: "label", js: "label", typ: "" },
|
|
627
840
|
{ json: "icons", js: "icons", typ: a(r("ExtensionCustomMobileIcon")) },
|
|
628
841
|
{ json: "actionId", js: "actionId", typ: "" },
|
|
629
842
|
], "any"),
|
|
630
|
-
|
|
843
|
+
ExtensionCustomMobileIcon: o([
|
|
631
844
|
{ json: "size", js: "size", typ: 3.14 },
|
|
632
845
|
{ json: "url", js: "url", typ: "" },
|
|
633
846
|
{ json: "scale", js: "scale", typ: 3.14 },
|
|
634
847
|
], false),
|
|
635
|
-
|
|
848
|
+
ExtensionRibbonsCustomTabGroupsItem: o([
|
|
636
849
|
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
637
850
|
{ json: "label", js: "label", typ: u(undefined, "") },
|
|
638
851
|
{ json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
|
|
639
|
-
{
|
|
852
|
+
{
|
|
853
|
+
json: "controls",
|
|
854
|
+
js: "controls",
|
|
855
|
+
typ: u(undefined, a(r("ExtensionCommonCustomGroupControlsItem"))),
|
|
856
|
+
},
|
|
640
857
|
{ json: "builtInGroupId", js: "builtInGroupId", typ: u(undefined, "") },
|
|
641
858
|
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
642
859
|
], false),
|
|
643
|
-
|
|
860
|
+
Position: o([
|
|
644
861
|
{ json: "builtInTabId", js: "builtInTabId", typ: "" },
|
|
645
862
|
{ json: "align", js: "align", typ: r("Align") },
|
|
646
863
|
], false),
|
|
647
|
-
|
|
648
|
-
{
|
|
864
|
+
ExtensionRuntimesArray: o([
|
|
865
|
+
{
|
|
866
|
+
json: "requirements",
|
|
867
|
+
js: "requirements",
|
|
868
|
+
typ: u(undefined, r("RequirementsExtensionElement")),
|
|
869
|
+
},
|
|
649
870
|
{ json: "id", js: "id", typ: "" },
|
|
650
871
|
{ json: "type", js: "type", typ: u(undefined, r("RuntimeType")) },
|
|
651
872
|
{ json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
|
|
652
873
|
{ json: "lifetime", js: "lifetime", typ: u(undefined, r("Lifetime")) },
|
|
653
874
|
{ json: "actions", js: "actions", typ: u(undefined, a(r("ExtensionRuntimesActionsItem"))) },
|
|
654
|
-
{
|
|
875
|
+
{
|
|
876
|
+
json: "customFunctions",
|
|
877
|
+
js: "customFunctions",
|
|
878
|
+
typ: u(undefined, r("ExtensionCustomFunctions")),
|
|
879
|
+
},
|
|
655
880
|
], false),
|
|
656
|
-
|
|
881
|
+
ExtensionRuntimesActionsItem: o([
|
|
657
882
|
{ json: "id", js: "id", typ: "" },
|
|
658
883
|
{ json: "type", js: "type", typ: r("ActionType") },
|
|
659
884
|
{ json: "displayName", js: "displayName", typ: u(undefined, "") },
|
|
@@ -662,12 +887,16 @@ const typeMap = {
|
|
|
662
887
|
{ json: "multiselect", js: "multiselect", typ: u(undefined, true) },
|
|
663
888
|
{ json: "supportsNoItemContext", js: "supportsNoItemContext", typ: u(undefined, true) },
|
|
664
889
|
], false),
|
|
665
|
-
|
|
890
|
+
ExtensionCustomFunctions: o([
|
|
666
891
|
{ json: "functions", js: "functions", typ: a(r("ExtensionFunction")) },
|
|
667
892
|
{ json: "namespace", js: "namespace", typ: r("ExtensionCustomFunctionsNamespace") },
|
|
668
|
-
{
|
|
893
|
+
{
|
|
894
|
+
json: "allowCustomDataForDataTypeAny",
|
|
895
|
+
js: "allowCustomDataForDataTypeAny",
|
|
896
|
+
typ: u(undefined, true),
|
|
897
|
+
},
|
|
669
898
|
], "any"),
|
|
670
|
-
|
|
899
|
+
ExtensionFunction: o([
|
|
671
900
|
{ json: "id", js: "id", typ: "" },
|
|
672
901
|
{ json: "name", js: "name", typ: "" },
|
|
673
902
|
{ json: "description", js: "description", typ: u(undefined, "") },
|
|
@@ -680,7 +909,7 @@ const typeMap = {
|
|
|
680
909
|
{ json: "requiresAddress", js: "requiresAddress", typ: u(undefined, true) },
|
|
681
910
|
{ json: "requiresParameterAddress", js: "requiresParameterAddress", typ: u(undefined, true) },
|
|
682
911
|
], "any"),
|
|
683
|
-
|
|
912
|
+
ExtensionFunctionParameter: o([
|
|
684
913
|
{ json: "name", js: "name", typ: "" },
|
|
685
914
|
{ json: "description", js: "description", typ: u(undefined, "") },
|
|
686
915
|
{ json: "type", js: "type", typ: u(undefined, "") },
|
|
@@ -689,52 +918,68 @@ const typeMap = {
|
|
|
689
918
|
{ json: "optional", js: "optional", typ: u(undefined, u(true, null)) },
|
|
690
919
|
{ json: "repeating", js: "repeating", typ: u(undefined, true) },
|
|
691
920
|
], "any"),
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
], "any"),
|
|
695
|
-
"ExtensionCustomFunctionsNamespace": o([
|
|
921
|
+
ExtensionResult: o([{ json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) }], "any"),
|
|
922
|
+
ExtensionCustomFunctionsNamespace: o([
|
|
696
923
|
{ json: "id", js: "id", typ: "" },
|
|
697
924
|
{ json: "name", js: "name", typ: "" },
|
|
698
925
|
], "any"),
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
], false),
|
|
702
|
-
"Icons": o([
|
|
926
|
+
GraphConnector: o([{ json: "notificationUrl", js: "notificationUrl", typ: "" }], false),
|
|
927
|
+
Icons: o([
|
|
703
928
|
{ json: "outline", js: "outline", typ: "" },
|
|
704
929
|
{ json: "color", js: "color", typ: "" },
|
|
705
930
|
{ json: "color32x32", js: "color32x32", typ: u(undefined, "") },
|
|
706
931
|
], false),
|
|
707
|
-
|
|
708
|
-
{
|
|
932
|
+
IntuneInfo: o([
|
|
933
|
+
{
|
|
934
|
+
json: "supportedMobileAppManagementVersion",
|
|
935
|
+
js: "supportedMobileAppManagementVersion",
|
|
936
|
+
typ: u(undefined, ""),
|
|
937
|
+
},
|
|
709
938
|
], false),
|
|
710
|
-
|
|
939
|
+
LocalizationInfo: o([
|
|
711
940
|
{ json: "defaultLanguageTag", js: "defaultLanguageTag", typ: "" },
|
|
712
941
|
{ json: "defaultLanguageFile", js: "defaultLanguageFile", typ: u(undefined, "") },
|
|
713
|
-
{
|
|
942
|
+
{
|
|
943
|
+
json: "additionalLanguages",
|
|
944
|
+
js: "additionalLanguages",
|
|
945
|
+
typ: u(undefined, a(r("AdditionalLanguage"))),
|
|
946
|
+
},
|
|
714
947
|
], false),
|
|
715
|
-
|
|
948
|
+
AdditionalLanguage: o([
|
|
716
949
|
{ json: "languageTag", js: "languageTag", typ: "" },
|
|
717
950
|
{ json: "file", js: "file", typ: "" },
|
|
718
951
|
], false),
|
|
719
|
-
|
|
952
|
+
MeetingExtensionDefinition: o([
|
|
720
953
|
{ json: "scenes", js: "scenes", typ: u(undefined, a(r("Scene"))) },
|
|
721
|
-
{
|
|
954
|
+
{
|
|
955
|
+
json: "supportsCustomShareToStage",
|
|
956
|
+
js: "supportsCustomShareToStage",
|
|
957
|
+
typ: u(undefined, true),
|
|
958
|
+
},
|
|
722
959
|
{ json: "supportsStreaming", js: "supportsStreaming", typ: u(undefined, true) },
|
|
723
|
-
{
|
|
960
|
+
{
|
|
961
|
+
json: "supportsAnonymousGuestUsers",
|
|
962
|
+
js: "supportsAnonymousGuestUsers",
|
|
963
|
+
typ: u(undefined, true),
|
|
964
|
+
},
|
|
724
965
|
], false),
|
|
725
|
-
|
|
966
|
+
Scene: o([
|
|
726
967
|
{ json: "id", js: "id", typ: "" },
|
|
727
968
|
{ json: "name", js: "name", typ: "" },
|
|
728
969
|
{ json: "file", js: "file", typ: "" },
|
|
729
970
|
{ json: "preview", js: "preview", typ: "" },
|
|
730
971
|
{ json: "maxAudience", js: "maxAudience", typ: 0 },
|
|
731
|
-
{
|
|
972
|
+
{
|
|
973
|
+
json: "seatsReservedForOrganizersOrPresenters",
|
|
974
|
+
js: "seatsReservedForOrganizersOrPresenters",
|
|
975
|
+
typ: 0,
|
|
976
|
+
},
|
|
732
977
|
], false),
|
|
733
|
-
|
|
978
|
+
NameClass: o([
|
|
734
979
|
{ json: "short", js: "short", typ: "" },
|
|
735
980
|
{ json: "full", js: "full", typ: u(undefined, "") },
|
|
736
981
|
], false),
|
|
737
|
-
|
|
982
|
+
StaticTab: o([
|
|
738
983
|
{ json: "entityId", js: "entityId", typ: "" },
|
|
739
984
|
{ json: "name", js: "name", typ: u(undefined, "") },
|
|
740
985
|
{ json: "contentUrl", js: "contentUrl", typ: u(undefined, "") },
|
|
@@ -743,73 +988,43 @@ const typeMap = {
|
|
|
743
988
|
{ json: "searchUrl", js: "searchUrl", typ: u(undefined, "") },
|
|
744
989
|
{ json: "scopes", js: "scopes", typ: a(r("StaticTabScope")) },
|
|
745
990
|
{ json: "context", js: "context", typ: u(undefined, a(r("StaticTabContext"))) },
|
|
746
|
-
{
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
991
|
+
{
|
|
992
|
+
json: "requirementSet",
|
|
993
|
+
js: "requirementSet",
|
|
994
|
+
typ: u(undefined, r("ElementRequirementSet")),
|
|
995
|
+
},
|
|
996
|
+
], false),
|
|
997
|
+
SubscriptionOffer: o([{ json: "offerId", js: "offerId", typ: "" }], false),
|
|
998
|
+
WebApplicationInfo: o([
|
|
752
999
|
{ json: "id", js: "id", typ: "" },
|
|
753
1000
|
{ json: "resource", js: "resource", typ: u(undefined, "") },
|
|
754
|
-
{
|
|
1001
|
+
{
|
|
1002
|
+
json: "nestedAppAuthInfo",
|
|
1003
|
+
js: "nestedAppAuthInfo",
|
|
1004
|
+
typ: u(undefined, a(r("NestedAppAuthInfo"))),
|
|
1005
|
+
},
|
|
755
1006
|
], false),
|
|
756
|
-
|
|
1007
|
+
NestedAppAuthInfo: o([
|
|
757
1008
|
{ json: "redirectUri", js: "redirectUri", typ: "" },
|
|
758
1009
|
{ json: "scopes", js: "scopes", typ: a("") },
|
|
759
1010
|
{ json: "claims", js: "claims", typ: u(undefined, "") },
|
|
760
1011
|
], false),
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
"CommandListScope": [
|
|
766
|
-
"copilot",
|
|
767
|
-
"groupChat",
|
|
768
|
-
"personal",
|
|
769
|
-
"team",
|
|
770
|
-
],
|
|
771
|
-
"Source": [
|
|
772
|
-
"microsoftCopilotStudio",
|
|
773
|
-
"onedriveSharepoint",
|
|
774
|
-
"standard",
|
|
775
|
-
],
|
|
776
|
-
"HostMustSupportFunctionalityName": [
|
|
1012
|
+
ResourceSpecificType: ["Application", "Delegated"],
|
|
1013
|
+
CommandListScope: ["copilot", "groupChat", "personal", "team"],
|
|
1014
|
+
Source: ["microsoftCopilotStudio", "onedriveSharepoint", "standard"],
|
|
1015
|
+
HostMustSupportFunctionalityName: [
|
|
777
1016
|
"dialogAdaptiveCard",
|
|
778
1017
|
"dialogAdaptiveCardBot",
|
|
779
1018
|
"dialogUrl",
|
|
780
1019
|
"dialogUrlBot",
|
|
781
1020
|
],
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
],
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
"compose",
|
|
790
|
-
"message",
|
|
791
|
-
],
|
|
792
|
-
"InputType": [
|
|
793
|
-
"choiceset",
|
|
794
|
-
"date",
|
|
795
|
-
"number",
|
|
796
|
-
"text",
|
|
797
|
-
"textarea",
|
|
798
|
-
"time",
|
|
799
|
-
"toggle",
|
|
800
|
-
],
|
|
801
|
-
"CommandType": [
|
|
802
|
-
"action",
|
|
803
|
-
"query",
|
|
804
|
-
],
|
|
805
|
-
"ComposeExtensionType": [
|
|
806
|
-
"apiBased",
|
|
807
|
-
"botBased",
|
|
808
|
-
],
|
|
809
|
-
"MessageHandlerType": [
|
|
810
|
-
"link",
|
|
811
|
-
],
|
|
812
|
-
"ConfigurableProperty": [
|
|
1021
|
+
AuthType: ["apiSecretServiceAuth", "microsoftEntra", "none"],
|
|
1022
|
+
CommandContext: ["commandBox", "compose", "message"],
|
|
1023
|
+
InputType: ["choiceset", "date", "number", "text", "textarea", "time", "toggle"],
|
|
1024
|
+
CommandType: ["action", "query"],
|
|
1025
|
+
ComposeExtensionType: ["apiBased", "botBased"],
|
|
1026
|
+
MessageHandlerType: ["link"],
|
|
1027
|
+
ConfigurableProperty: [
|
|
813
1028
|
"accentColor",
|
|
814
1029
|
"developerUrl",
|
|
815
1030
|
"largeImageUrl",
|
|
@@ -820,7 +1035,7 @@ const typeMap = {
|
|
|
820
1035
|
"smallImageUrl",
|
|
821
1036
|
"termsOfUseUrl",
|
|
822
1037
|
],
|
|
823
|
-
|
|
1038
|
+
ConfigurableTabContext: [
|
|
824
1039
|
"channelTab",
|
|
825
1040
|
"meetingChatTab",
|
|
826
1041
|
"meetingDetailsTab",
|
|
@@ -829,80 +1044,23 @@ const typeMap = {
|
|
|
829
1044
|
"personalTab",
|
|
830
1045
|
"privateChatTab",
|
|
831
1046
|
],
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
],
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
],
|
|
840
|
-
"
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
],
|
|
844
|
-
"
|
|
845
|
-
|
|
846
|
-
],
|
|
847
|
-
"
|
|
848
|
-
|
|
849
|
-
],
|
|
850
|
-
"DefaultSize": [
|
|
851
|
-
"large",
|
|
852
|
-
"medium",
|
|
853
|
-
],
|
|
854
|
-
"Groupchat": [
|
|
855
|
-
"bot",
|
|
856
|
-
"connector",
|
|
857
|
-
"tab",
|
|
858
|
-
],
|
|
859
|
-
"DefaultInstallScope": [
|
|
860
|
-
"copilot",
|
|
861
|
-
"groupChat",
|
|
862
|
-
"meetings",
|
|
863
|
-
"personal",
|
|
864
|
-
"team",
|
|
865
|
-
],
|
|
866
|
-
"DevicePermission": [
|
|
867
|
-
"geolocation",
|
|
868
|
-
"midi",
|
|
869
|
-
"media",
|
|
870
|
-
"notifications",
|
|
871
|
-
"openExternal",
|
|
872
|
-
],
|
|
873
|
-
"MutualDependencyName": [
|
|
874
|
-
"bots",
|
|
875
|
-
"composeExtensions",
|
|
876
|
-
"configurableTabs",
|
|
877
|
-
"staticTabs",
|
|
878
|
-
],
|
|
879
|
-
"FormFactor": [
|
|
880
|
-
"desktop",
|
|
881
|
-
"mobile",
|
|
882
|
-
],
|
|
883
|
-
"RequirementsScope": [
|
|
884
|
-
"document",
|
|
885
|
-
"mail",
|
|
886
|
-
"presentation",
|
|
887
|
-
"workbook",
|
|
888
|
-
],
|
|
889
|
-
"SendMode": [
|
|
890
|
-
"block",
|
|
891
|
-
"promptUser",
|
|
892
|
-
"softBlock",
|
|
893
|
-
],
|
|
894
|
-
"ItemType": [
|
|
895
|
-
"menuItem",
|
|
896
|
-
],
|
|
897
|
-
"PurpleType": [
|
|
898
|
-
"button",
|
|
899
|
-
"menu",
|
|
900
|
-
],
|
|
901
|
-
"EntryPoint": [
|
|
902
|
-
"cell",
|
|
903
|
-
"text",
|
|
904
|
-
],
|
|
905
|
-
"ExtensionContext": [
|
|
1047
|
+
MeetingSurface: ["sidePanel", "stage"],
|
|
1048
|
+
ConfigurableTabScope: ["groupChat", "team"],
|
|
1049
|
+
SupportedSharePointHost: ["sharePointFullPage", "sharePointWebPart"],
|
|
1050
|
+
ConnectorScope: ["team"],
|
|
1051
|
+
SourceTypeEnum: ["bot"],
|
|
1052
|
+
DefaultSize: ["large", "medium"],
|
|
1053
|
+
Groupchat: ["bot", "connector", "tab"],
|
|
1054
|
+
DefaultInstallScope: ["copilot", "groupChat", "meetings", "personal", "team"],
|
|
1055
|
+
DevicePermission: ["geolocation", "midi", "media", "notifications", "openExternal"],
|
|
1056
|
+
MutualDependencyName: ["bots", "composeExtensions", "configurableTabs", "staticTabs"],
|
|
1057
|
+
FormFactor: ["desktop", "mobile"],
|
|
1058
|
+
RequirementsScope: ["document", "mail", "presentation", "workbook"],
|
|
1059
|
+
SendMode: ["block", "promptUser", "softBlock"],
|
|
1060
|
+
ItemType: ["menuItem"],
|
|
1061
|
+
PurpleType: ["button", "menu"],
|
|
1062
|
+
EntryPoint: ["cell", "text"],
|
|
1063
|
+
ExtensionContext: [
|
|
906
1064
|
"default",
|
|
907
1065
|
"logEventMeetingDetailsAttendee",
|
|
908
1066
|
"mailCompose",
|
|
@@ -912,25 +1070,12 @@ const typeMap = {
|
|
|
912
1070
|
"onlineMeetingDetailsOrganizer",
|
|
913
1071
|
"spamReportingOverride",
|
|
914
1072
|
],
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
],
|
|
918
|
-
"
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
],
|
|
922
|
-
"FluffyType": [
|
|
923
|
-
"mobileButton",
|
|
924
|
-
],
|
|
925
|
-
"Align": [
|
|
926
|
-
"after",
|
|
927
|
-
"before",
|
|
928
|
-
],
|
|
929
|
-
"ActionType": [
|
|
930
|
-
"executeFunction",
|
|
931
|
-
"openPage",
|
|
932
|
-
],
|
|
933
|
-
"CellValueType": [
|
|
1073
|
+
FixedControlType: ["button"],
|
|
1074
|
+
SpamReportingOptionsType: ["checkbox", "radio"],
|
|
1075
|
+
FluffyType: ["mobileButton"],
|
|
1076
|
+
Align: ["after", "before"],
|
|
1077
|
+
ActionType: ["executeFunction", "openPage"],
|
|
1078
|
+
CellValueType: [
|
|
934
1079
|
"booleancellvalue",
|
|
935
1080
|
"cellvalue",
|
|
936
1081
|
"doublecellvalue",
|
|
@@ -942,25 +1087,12 @@ const typeMap = {
|
|
|
942
1087
|
"stringcellvalue",
|
|
943
1088
|
"webimagecellvalue",
|
|
944
1089
|
],
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
],
|
|
949
|
-
"
|
|
950
|
-
|
|
951
|
-
"short",
|
|
952
|
-
],
|
|
953
|
-
"RuntimeType": [
|
|
954
|
-
"general",
|
|
955
|
-
],
|
|
956
|
-
"ManifestVersion": [
|
|
957
|
-
"1.23",
|
|
958
|
-
],
|
|
959
|
-
"Permission": [
|
|
960
|
-
"identity",
|
|
961
|
-
"messageTeamMembers",
|
|
962
|
-
],
|
|
963
|
-
"StaticTabContext": [
|
|
1090
|
+
Dimensionality: ["matrix", "scalar"],
|
|
1091
|
+
Lifetime: ["long", "short"],
|
|
1092
|
+
RuntimeType: ["general"],
|
|
1093
|
+
ManifestVersion: ["1.23"],
|
|
1094
|
+
Permission: ["identity", "messageTeamMembers"],
|
|
1095
|
+
StaticTabContext: [
|
|
964
1096
|
"channelTab",
|
|
965
1097
|
"meetingChatTab",
|
|
966
1098
|
"meetingDetailsTab",
|
|
@@ -970,14 +1102,7 @@ const typeMap = {
|
|
|
970
1102
|
"privateChatTab",
|
|
971
1103
|
"teamLevelApp",
|
|
972
1104
|
],
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
"personal",
|
|
976
|
-
"team",
|
|
977
|
-
],
|
|
978
|
-
"SupportedChannelType": [
|
|
979
|
-
"privateChannels",
|
|
980
|
-
"sharedChannels",
|
|
981
|
-
],
|
|
1105
|
+
StaticTabScope: ["groupChat", "personal", "team"],
|
|
1106
|
+
SupportedChannelType: ["privateChannels", "sharedChannels"],
|
|
982
1107
|
};
|
|
983
1108
|
//# sourceMappingURL=TeamsManifestV1D23.js.map
|