@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.
@@ -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.map(a => { return prettyTypeName(a); }).join(", ")}]`;
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 = '', parent = '') {
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 => { return l(a); }), val, key, parent);
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") ? transformUnion(typ.unionMembers, val)
135
- : typ.hasOwnProperty("arrayItems") ? transformArray(typ.arrayItems, val)
136
- : typ.hasOwnProperty("props") ? transformObject(getProps(typ), typ.additional, val)
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
- "TeamsManifestV1D24": o([
178
+ TeamsManifestV1D24: 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
- { json: "localizationInfo", js: "localizationInfo", typ: u(undefined, r("LocalizationInfo")) },
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
- { json: "configurableTabs", js: "configurableTabs", typ: u(undefined, a(r("ConfigurableTab"))) },
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
- { json: "subscriptionOffer", js: "subscriptionOffer", typ: u(undefined, r("SubscriptionOffer")) },
185
- { json: "composeExtensions", js: "composeExtensions", typ: u(undefined, a(r("ComposeExtension"))) },
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
- { json: "devicePermissions", js: "devicePermissions", typ: u(undefined, a(r("DevicePermission"))) },
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
- { json: "webApplicationInfo", js: "webApplicationInfo", typ: u(undefined, r("WebApplicationInfo")) },
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
- { json: "configurableProperties", js: "configurableProperties", typ: u(undefined, a(r("ConfigurableProperty"))) },
195
- { json: "supportedChannelTypes", js: "supportedChannelTypes", typ: u(undefined, a(r("SupportedChannelType"))) },
196
- { json: "defaultBlockUntilAdminAction", js: "defaultBlockUntilAdminAction", typ: u(undefined, true) },
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
- { json: "defaultInstallScope", js: "defaultInstallScope", typ: u(undefined, r("DefaultInstallScope")) },
199
- { json: "defaultGroupCapability", js: "defaultGroupCapability", typ: u(undefined, r("DefaultGroupCapability")) },
200
- { json: "meetingExtensionDefinition", js: "meetingExtensionDefinition", typ: u(undefined, r("MeetingExtensionDefinition")) },
201
- { json: "authorization", js: "authorization", typ: u(undefined, r("TeamsManifestV1D24Authorization")) },
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("TeamsManifestV1D24Authorization")),
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
- { json: "elementRelationshipSet", js: "elementRelationshipSet", typ: u(undefined, r("ElementRelationshipSet")) },
207
- { json: "backgroundLoadConfiguration", js: "backgroundLoadConfiguration", typ: u(undefined, r("BackgroundLoadConfiguration")) },
208
- ], false),
209
- "Activities": o([
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
- "ActivityIcon": o([
282
+ ActivityIcon: o([
214
283
  { json: "id", js: "id", typ: "" },
215
284
  { json: "iconFile", js: "iconFile", typ: "" },
216
285
  ], false),
217
- "ActivityType": o([
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
- "TeamsManifestV1D24Authorization": o([
224
- { json: "permissions", js: "permissions", typ: u(undefined, r("Permissions")) },
225
- ], false),
226
- "Permissions": o([
227
- { json: "resourceSpecific", js: "resourceSpecific", typ: u(undefined, a(r("ResourceSpecific"))) },
292
+ TeamsManifestV1D24Authorization: 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
- "ResourceSpecific": o([
300
+ ResourceSpecific: o([
230
301
  { json: "name", js: "name", typ: "" },
231
302
  { json: "type", js: "type", typ: r("ResourceSpecificType") },
232
303
  ], false),
233
- "BackgroundLoadConfiguration": o([
234
- { json: "tabConfiguration", js: "tabConfiguration", typ: u(undefined, r("TabConfiguration")) },
235
- ], false),
236
- "TabConfiguration": o([
237
- { json: "contentUrl", js: "contentUrl", typ: "" },
304
+ BackgroundLoadConfiguration: o([
305
+ {
306
+ json: "tabConfiguration",
307
+ js: "tabConfiguration",
308
+ typ: u(undefined, r("TabConfiguration")),
309
+ },
238
310
  ], false),
239
- "Bot": o([
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
- { json: "requirementSet", js: "requirementSet", typ: u(undefined, r("ElementRequirementSet")) },
250
- { json: "registrationInfo", js: "registrationInfo", typ: u(undefined, r("RegistrationInfo")) },
251
- ], false),
252
- "CommandList": o([
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
- "CommandListCommand": o([
337
+ CommandListCommand: o([
257
338
  { json: "title", js: "title", typ: "" },
258
339
  { json: "description", js: "description", typ: "" },
259
340
  ], false),
260
- "Configuration": o([
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
- "Team": o([
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
- "TaskInfo": o([
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
- "RegistrationInfo": o([
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
- "ElementRequirementSet": o([
281
- { json: "hostMustSupportFunctionalities", js: "hostMustSupportFunctionalities", typ: a(r("HostFunctionality")) },
282
- ], false),
283
- "HostFunctionality": o([
284
- { json: "name", js: "name", typ: r("HostMustSupportFunctionalityName") },
361
+ ElementRequirementSet: o([
362
+ {
363
+ json: "hostMustSupportFunctionalities",
364
+ js: "hostMustSupportFunctionalities",
365
+ typ: a(r("HostFunctionality")),
366
+ },
285
367
  ], false),
286
- "ComposeExtension": o([
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
- { json: "composeExtensionType", js: "composeExtensionType", typ: u(undefined, r("ComposeExtensionType")) },
290
- { json: "authorization", js: "authorization", typ: u(undefined, r("ComposeExtensionAuthorization")) },
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
- { json: "canUpdateConfiguration", js: "canUpdateConfiguration", typ: u(undefined, u(true, null)) },
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
- { json: "requirementSet", js: "requirementSet", typ: u(undefined, r("ElementRequirementSet")) },
390
+ {
391
+ json: "requirementSet",
392
+ js: "requirementSet",
393
+ typ: u(undefined, r("ElementRequirementSet")),
394
+ },
296
395
  ], false),
297
- "ComposeExtensionAuthorization": o([
396
+ ComposeExtensionAuthorization: o([
298
397
  { json: "authType", js: "authType", typ: u(undefined, r("AuthType")) },
299
- { json: "microsoftEntraConfiguration", js: "microsoftEntraConfiguration", typ: u(undefined, r("MicrosoftEntraConfiguration")) },
300
- { json: "apiSecretServiceAuthConfiguration", js: "apiSecretServiceAuthConfiguration", typ: u(undefined, r("APISecretServiceAuthConfiguration")) },
301
- ], false),
302
- "APISecretServiceAuthConfiguration": o([
303
- { json: "apiSecretRegistrationId", js: "apiSecretRegistrationId", typ: u(undefined, "") },
304
- ], false),
305
- "MicrosoftEntraConfiguration": o([
306
- { json: "supportsSingleSignOn", js: "supportsSingleSignOn", typ: u(undefined, true) },
307
- ], false),
308
- "ComposeExtensionCommand": o([
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
- { json: "apiResponseRenderingTemplateFile", js: "apiResponseRenderingTemplateFile", typ: u(undefined, "") },
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
- "Parameter": o([
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
- "Choice": o([
439
+ Choice: o([
333
440
  { json: "title", js: "title", typ: "" },
334
441
  { json: "value", js: "value", typ: "" },
335
442
  ], false),
336
- "SamplePrompt": o([
337
- { json: "text", js: "text", typ: "" },
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
- "Value": o([
448
+ Value: o([
344
449
  { json: "domains", js: "domains", typ: u(undefined, a("")) },
345
- { json: "supportsAnonymizedPayloads", js: "supportsAnonymizedPayloads", typ: u(undefined, true) },
450
+ {
451
+ json: "supportsAnonymizedPayloads",
452
+ js: "supportsAnonymizedPayloads",
453
+ typ: u(undefined, true),
454
+ },
346
455
  ], false),
347
- "ConfigurableTab": o([
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
- { json: "supportedSharePointHosts", js: "supportedSharePointHosts", typ: u(undefined, a(r("SupportedSharePointHost"))) },
464
+ {
465
+ json: "supportedSharePointHosts",
466
+ js: "supportedSharePointHosts",
467
+ typ: u(undefined, a(r("SupportedSharePointHost"))),
468
+ },
356
469
  ], false),
357
- "Connector": o([
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
- "CopilotAgents": o([
363
- { json: "declarativeAgents", js: "declarativeAgents", typ: u(undefined, a(r("DeclarativeAgentRef"))) },
364
- { json: "customEngineAgents", js: "customEngineAgents", typ: u(undefined, a(r("CustomEngineAgent"))) },
365
- ], false),
366
- "CustomEngineAgent": o([
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
- "Disclaimer": o([
372
- { json: "text", js: "text", typ: "" },
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
- "DashboardCard": o([
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,157 +503,213 @@ const typeMap = {
384
503
  { json: "contentSource", js: "contentSource", typ: r("DashboardCardContentSource") },
385
504
  { json: "defaultSize", js: "defaultSize", typ: r("DefaultSize") },
386
505
  ], false),
387
- "DashboardCardContentSource": o([
506
+ DashboardCardContentSource: o([
388
507
  { json: "sourceType", js: "sourceType", typ: u(undefined, r("SourceTypeEnum")) },
389
- { json: "botConfiguration", js: "botConfiguration", typ: u(undefined, r("BotConfiguration")) },
390
- ], false),
391
- "BotConfiguration": o([
392
- { json: "botId", js: "botId", typ: u(undefined, "") },
393
- ], false),
394
- "DashboardCardIcon": o([
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
- "DefaultGroupCapability": o([
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
- "Description": o([
524
+ Description: o([
404
525
  { json: "short", js: "short", typ: "" },
405
526
  { json: "full", js: "full", typ: "" },
406
527
  ], false),
407
- "Developer": o([
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
- "ElementRelationshipSet": o([
415
- { json: "oneWayDependencies", js: "oneWayDependencies", typ: u(undefined, a(r("OneWayDependency"))) },
416
- { json: "mutualDependencies", js: "mutualDependencies", typ: u(undefined, a(a(r("ElementReference")))) },
417
- ], false),
418
- "ElementReference": o([
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
- "OneWayDependency": o([
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
- "ElementExtension": o([
428
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
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
- { json: "autoRunEvents", js: "autoRunEvents", typ: u(undefined, a(r("ExtensionAutoRunEventsArray"))) },
432
- { json: "alternates", js: "alternates", typ: u(undefined, a(r("ExtensionAlternateVersionsArray"))) },
433
- { json: "contentRuntimes", js: "contentRuntimes", typ: u(undefined, a(r("ExtensionContentRuntimeArray"))) },
434
- { json: "getStartedMessages", js: "getStartedMessages", typ: u(undefined, a(r("ExtensionGetStartedMessageArray"))) },
435
- { json: "contextMenus", js: "contextMenus", typ: u(undefined, a(r("ExtensionContextMenuArray"))) },
436
- { json: "keyboardShortcuts", js: "keyboardShortcuts", typ: u(undefined, a(r("ExtensionKeyboardShortcut"))) },
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
- "ExtensionAlternateVersionsArray": o([
440
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
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
- "AlternateIcons": o([
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
- "ExtensionCommonIcon": o([
610
+ ExtensionCommonIcon: o([
450
611
  { json: "size", js: "size", typ: 3.14 },
451
612
  { json: "url", js: "url", typ: "" },
452
613
  ], false),
453
- "Hide": o([
454
- { json: "storeOfficeAddin", js: "storeOfficeAddin", typ: u(undefined, r("StoreOfficeAddin")) },
455
- { json: "customOfficeAddin", js: "customOfficeAddin", typ: u(undefined, r("CustomOfficeAddin")) },
456
- { json: "windowsExtensions", js: "windowsExtensions", typ: u(undefined, r("WindowsExtensions")) },
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
+ },
625
+ {
626
+ json: "windowsExtensions",
627
+ js: "windowsExtensions",
628
+ typ: u(undefined, r("WindowsExtensions")),
629
+ },
457
630
  ], "any"),
458
- "CustomOfficeAddin": o([
459
- { json: "officeAddinId", js: "officeAddinId", typ: "" },
460
- ], false),
461
- "StoreOfficeAddin": o([
631
+ CustomOfficeAddin: o([{ json: "officeAddinId", js: "officeAddinId", typ: "" }], false),
632
+ StoreOfficeAddin: o([
462
633
  { json: "officeAddinId", js: "officeAddinId", typ: "" },
463
634
  { json: "assetId", js: "assetId", typ: "" },
464
635
  ], false),
465
- "WindowsExtensions": o([
636
+ WindowsExtensions: o([
466
637
  { json: "effect", js: "effect", typ: r("Effect") },
467
638
  { json: "comAddin", js: "comAddin", typ: u(undefined, r("WindowsExtensionsCOMAddin")) },
468
639
  { json: "automationAddin", js: "automationAddin", typ: u(undefined, r("AutomationAddin")) },
469
- { json: "xllCustomFunctions", js: "xllCustomFunctions", typ: u(undefined, r("XllCustomFunctions")) },
470
- ], false),
471
- "AutomationAddin": o([
472
- { json: "progIds", js: "progIds", typ: a("") },
473
- ], false),
474
- "WindowsExtensionsCOMAddin": o([
475
- { json: "progIds", js: "progIds", typ: a("") },
476
- ], false),
477
- "XllCustomFunctions": o([
478
- { json: "fileNames", js: "fileNames", typ: a("") },
479
- ], false),
480
- "Prefer": o([
640
+ {
641
+ json: "xllCustomFunctions",
642
+ js: "xllCustomFunctions",
643
+ typ: u(undefined, r("XllCustomFunctions")),
644
+ },
645
+ ], false),
646
+ AutomationAddin: o([{ json: "progIds", js: "progIds", typ: a("") }], false),
647
+ WindowsExtensionsCOMAddin: o([{ json: "progIds", js: "progIds", typ: a("") }], false),
648
+ XllCustomFunctions: o([{ json: "fileNames", js: "fileNames", typ: a("") }], false),
649
+ Prefer: o([
481
650
  { json: "comAddin", js: "comAddin", typ: u(undefined, r("PreferCOMAddin")) },
482
- { json: "xllCustomFunctions", js: "xllCustomFunctions", typ: u(undefined, r("ExtensionXllCustomFunctions")) },
651
+ {
652
+ json: "xllCustomFunctions",
653
+ js: "xllCustomFunctions",
654
+ typ: u(undefined, r("ExtensionXllCustomFunctions")),
655
+ },
483
656
  ], "any"),
484
- "PreferCOMAddin": o([
485
- { json: "progId", js: "progId", typ: "" },
486
- ], false),
487
- "ExtensionXllCustomFunctions": o([
488
- { json: "fileName", js: "fileName", typ: u(undefined, "") },
489
- ], "any"),
490
- "RequirementsExtensionElement": o([
657
+ PreferCOMAddin: o([{ json: "progId", js: "progId", typ: "" }], false),
658
+ ExtensionXllCustomFunctions: o([{ json: "fileName", js: "fileName", typ: u(undefined, "") }], "any"),
659
+ RequirementsExtensionElement: o([
491
660
  { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
492
661
  { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
493
662
  { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
494
663
  ], false),
495
- "Capability": o([
664
+ Capability: o([
496
665
  { json: "name", js: "name", typ: "" },
497
666
  { json: "minVersion", js: "minVersion", typ: u(undefined, "") },
498
667
  { json: "maxVersion", js: "maxVersion", typ: u(undefined, "") },
499
668
  ], false),
500
- "ExtensionAutoRunEventsArray": o([
501
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
669
+ ExtensionAutoRunEventsArray: o([
670
+ {
671
+ json: "requirements",
672
+ js: "requirements",
673
+ typ: u(undefined, r("RequirementsExtensionElement")),
674
+ },
502
675
  { json: "events", js: "events", typ: a(r("Event")) },
503
676
  ], false),
504
- "Event": o([
677
+ Event: o([
505
678
  { json: "type", js: "type", typ: "" },
506
679
  { json: "actionId", js: "actionId", typ: "" },
507
680
  { json: "options", js: "options", typ: u(undefined, r("Options")) },
508
681
  ], false),
509
- "Options": o([
510
- { json: "sendMode", js: "sendMode", typ: r("SendMode") },
511
- ], false),
512
- "ExtensionContentRuntimeArray": o([
513
- { json: "requirements", js: "requirements", typ: u(undefined, r("ContentRuntimeRequirements")) },
682
+ Options: o([{ json: "sendMode", js: "sendMode", typ: r("SendMode") }], false),
683
+ ExtensionContentRuntimeArray: o([
684
+ {
685
+ json: "requirements",
686
+ js: "requirements",
687
+ typ: u(undefined, r("ContentRuntimeRequirements")),
688
+ },
514
689
  { json: "id", js: "id", typ: "" },
515
690
  { json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
516
691
  { json: "requestedHeight", js: "requestedHeight", typ: u(undefined, 3.14) },
517
692
  { json: "requestedWidth", js: "requestedWidth", typ: u(undefined, 3.14) },
518
693
  { json: "disableSnapshot", js: "disableSnapshot", typ: u(undefined, true) },
519
694
  ], false),
520
- "ExtensionRuntimeCode": o([
695
+ ExtensionRuntimeCode: o([
521
696
  { json: "page", js: "page", typ: "" },
522
697
  { json: "script", js: "script", typ: u(undefined, "") },
523
698
  ], false),
524
- "ContentRuntimeRequirements": o([
699
+ ContentRuntimeRequirements: o([
525
700
  { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
526
701
  { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
527
702
  { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
528
703
  ], false),
529
- "ExtensionContextMenuArray": o([
704
+ ExtensionContextMenuArray: o([
530
705
  { json: "requirements", js: "requirements", typ: u(undefined, r("ContextMenuRequirements")) },
531
706
  { json: "menus", js: "menus", typ: a(r("ExtensionMenuItem")) },
532
707
  ], false),
533
- "ExtensionMenuItem": o([
708
+ ExtensionMenuItem: o([
534
709
  { json: "entryPoint", js: "entryPoint", typ: r("EntryPoint") },
535
710
  { json: "controls", js: "controls", typ: a(r("ExtensionCommonCustomGroupControlsItem")) },
536
711
  ], false),
537
- "ExtensionCommonCustomGroupControlsItem": o([
712
+ ExtensionCommonCustomGroupControlsItem: o([
538
713
  { json: "id", js: "id", typ: "" },
539
714
  { json: "type", js: "type", typ: r("PurpleType") },
540
715
  { json: "builtInControlId", js: "builtInControlId", typ: u(undefined, "") },
@@ -544,9 +719,13 @@ const typeMap = {
544
719
  { json: "actionId", js: "actionId", typ: u(undefined, "") },
545
720
  { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
546
721
  { json: "enabled", js: "enabled", typ: u(undefined, true) },
547
- { json: "items", js: "items", typ: u(undefined, a(r("ExtensionCommonCustomControlMenuItem"))) },
722
+ {
723
+ json: "items",
724
+ js: "items",
725
+ typ: u(undefined, a(r("ExtensionCommonCustomControlMenuItem"))),
726
+ },
548
727
  ], false),
549
- "ExtensionCommonCustomControlMenuItem": o([
728
+ ExtensionCommonCustomControlMenuItem: o([
550
729
  { json: "id", js: "id", typ: "" },
551
730
  { json: "type", js: "type", typ: r("ItemType") },
552
731
  { json: "label", js: "label", typ: "" },
@@ -556,53 +735,77 @@ const typeMap = {
556
735
  { json: "enabled", js: "enabled", typ: u(undefined, true) },
557
736
  { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
558
737
  ], false),
559
- "ExtensionCommonSuperToolTip": o([
738
+ ExtensionCommonSuperToolTip: o([
560
739
  { json: "title", js: "title", typ: "" },
561
740
  { json: "description", js: "description", typ: "" },
562
741
  ], false),
563
- "ContextMenuRequirements": o([
742
+ ContextMenuRequirements: o([
564
743
  { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
565
744
  { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
566
745
  { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
567
746
  ], false),
568
- "ExtensionGetStartedMessageArray": o([
569
- { json: "requirements", js: "requirements", typ: u(undefined, r("GetStartedMessageRequirements")) },
747
+ ExtensionGetStartedMessageArray: o([
748
+ {
749
+ json: "requirements",
750
+ js: "requirements",
751
+ typ: u(undefined, r("GetStartedMessageRequirements")),
752
+ },
570
753
  { json: "title", js: "title", typ: "" },
571
754
  { json: "description", js: "description", typ: "" },
572
755
  { json: "learnMoreUrl", js: "learnMoreUrl", typ: "" },
573
756
  ], false),
574
- "GetStartedMessageRequirements": o([
757
+ GetStartedMessageRequirements: o([
575
758
  { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
576
759
  { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
577
760
  { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
578
761
  ], false),
579
- "ExtensionKeyboardShortcut": o([
580
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
762
+ ExtensionKeyboardShortcut: o([
763
+ {
764
+ json: "requirements",
765
+ js: "requirements",
766
+ typ: u(undefined, r("RequirementsExtensionElement")),
767
+ },
581
768
  { json: "shortcuts", js: "shortcuts", typ: u(undefined, a(r("ExtensionShortcut"))) },
582
- { json: "keyMappingFiles", js: "keyMappingFiles", typ: u(undefined, r("KeyboardShortcutsMappingFiles")) },
769
+ {
770
+ json: "keyMappingFiles",
771
+ js: "keyMappingFiles",
772
+ typ: u(undefined, r("KeyboardShortcutsMappingFiles")),
773
+ },
583
774
  ], "any"),
584
- "KeyboardShortcutsMappingFiles": o([
775
+ KeyboardShortcutsMappingFiles: o([
585
776
  { json: "shortcutsUrl", js: "shortcutsUrl", typ: "" },
586
777
  { json: "localizationResourceUrl", js: "localizationResourceUrl", typ: u(undefined, "") },
587
778
  ], false),
588
- "ExtensionShortcut": o([
779
+ ExtensionShortcut: o([
589
780
  { json: "key", js: "key", typ: r("Key") },
590
781
  { json: "actionId", js: "actionId", typ: "" },
591
782
  ], "any"),
592
- "Key": o([
783
+ Key: o([
593
784
  { json: "default", js: "default", typ: "" },
594
785
  { json: "mac", js: "mac", typ: u(undefined, "") },
595
786
  { json: "web", js: "web", typ: u(undefined, "") },
596
787
  { json: "windows", js: "windows", typ: u(undefined, "") },
597
788
  ], "any"),
598
- "ExtensionRibbonsArray": o([
599
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
789
+ ExtensionRibbonsArray: o([
790
+ {
791
+ json: "requirements",
792
+ js: "requirements",
793
+ typ: u(undefined, r("RequirementsExtensionElement")),
794
+ },
600
795
  { json: "contexts", js: "contexts", typ: u(undefined, a(r("ExtensionContext"))) },
601
796
  { json: "tabs", js: "tabs", typ: a(r("ExtensionRibbonsArrayTabsItem")) },
602
- { json: "fixedControls", js: "fixedControls", typ: u(undefined, a(r("ExtensionRibbonsArrayFixedControlItem"))) },
603
- { json: "spamPreProcessingDialog", js: "spamPreProcessingDialog", typ: u(undefined, r("ExtensionRibbonsSpamPreProcessingDialog")) },
604
- ], false),
605
- "ExtensionRibbonsArrayFixedControlItem": o([
797
+ {
798
+ json: "fixedControls",
799
+ js: "fixedControls",
800
+ typ: u(undefined, a(r("ExtensionRibbonsArrayFixedControlItem"))),
801
+ },
802
+ {
803
+ json: "spamPreProcessingDialog",
804
+ js: "spamPreProcessingDialog",
805
+ typ: u(undefined, r("ExtensionRibbonsSpamPreProcessingDialog")),
806
+ },
807
+ ], false),
808
+ ExtensionRibbonsArrayFixedControlItem: o([
606
809
  { json: "id", js: "id", typ: "" },
607
810
  { json: "type", js: "type", typ: r("FixedControlType") },
608
811
  { json: "label", js: "label", typ: "" },
@@ -611,70 +814,98 @@ const typeMap = {
611
814
  { json: "actionId", js: "actionId", typ: "" },
612
815
  { json: "enabled", js: "enabled", typ: true },
613
816
  ], false),
614
- "ExtensionRibbonsSpamPreProcessingDialog": o([
817
+ ExtensionRibbonsSpamPreProcessingDialog: o([
615
818
  { json: "title", js: "title", typ: "" },
616
819
  { json: "description", js: "description", typ: "" },
617
820
  { json: "spamNeverShowAgainOption", js: "spamNeverShowAgainOption", typ: u(undefined, true) },
618
- { json: "spamReportingOptions", js: "spamReportingOptions", typ: u(undefined, r("SpamReportingOptions")) },
821
+ {
822
+ json: "spamReportingOptions",
823
+ js: "spamReportingOptions",
824
+ typ: u(undefined, r("SpamReportingOptions")),
825
+ },
619
826
  { json: "spamFreeTextSectionTitle", js: "spamFreeTextSectionTitle", typ: u(undefined, "") },
620
827
  { json: "spamMoreInfo", js: "spamMoreInfo", typ: u(undefined, r("SpamMoreInfo")) },
621
828
  ], false),
622
- "SpamMoreInfo": o([
829
+ SpamMoreInfo: o([
623
830
  { json: "text", js: "text", typ: "" },
624
831
  { json: "url", js: "url", typ: "" },
625
832
  ], "any"),
626
- "SpamReportingOptions": o([
833
+ SpamReportingOptions: o([
627
834
  { json: "title", js: "title", typ: "" },
628
835
  { json: "options", js: "options", typ: a("") },
629
836
  { json: "type", js: "type", typ: u(undefined, r("SpamReportingOptionsType")) },
630
837
  ], "any"),
631
- "ExtensionRibbonsArrayTabsItem": o([
838
+ ExtensionRibbonsArrayTabsItem: o([
632
839
  { json: "id", js: "id", typ: u(undefined, "") },
633
840
  { json: "label", js: "label", typ: u(undefined, "") },
634
841
  { json: "position", js: "position", typ: u(undefined, r("Position")) },
635
842
  { json: "builtInTabId", js: "builtInTabId", typ: u(undefined, "") },
636
- { json: "groups", js: "groups", typ: u(undefined, a(r("ExtensionRibbonsCustomTabGroupsItem"))) },
637
- { json: "customMobileRibbonGroups", js: "customMobileRibbonGroups", typ: u(undefined, a(r("ExtensionRibbonsCustomMobileGroupItem"))) },
638
- ], false),
639
- "ExtensionRibbonsCustomMobileGroupItem": o([
843
+ {
844
+ json: "groups",
845
+ js: "groups",
846
+ typ: u(undefined, a(r("ExtensionRibbonsCustomTabGroupsItem"))),
847
+ },
848
+ {
849
+ json: "customMobileRibbonGroups",
850
+ js: "customMobileRibbonGroups",
851
+ typ: u(undefined, a(r("ExtensionRibbonsCustomMobileGroupItem"))),
852
+ },
853
+ ], false),
854
+ ExtensionRibbonsCustomMobileGroupItem: o([
640
855
  { json: "id", js: "id", typ: "" },
641
856
  { json: "label", js: "label", typ: "" },
642
- { json: "controls", js: "controls", typ: a(r("ExtensionRibbonsCustomMobileControlButtonItem")) },
857
+ {
858
+ json: "controls",
859
+ js: "controls",
860
+ typ: a(r("ExtensionRibbonsCustomMobileControlButtonItem")),
861
+ },
643
862
  ], "any"),
644
- "ExtensionRibbonsCustomMobileControlButtonItem": o([
863
+ ExtensionRibbonsCustomMobileControlButtonItem: o([
645
864
  { json: "id", js: "id", typ: "" },
646
865
  { json: "type", js: "type", typ: r("FluffyType") },
647
866
  { json: "label", js: "label", typ: "" },
648
867
  { json: "icons", js: "icons", typ: a(r("ExtensionCustomMobileIcon")) },
649
868
  { json: "actionId", js: "actionId", typ: "" },
650
869
  ], "any"),
651
- "ExtensionCustomMobileIcon": o([
870
+ ExtensionCustomMobileIcon: o([
652
871
  { json: "size", js: "size", typ: 3.14 },
653
872
  { json: "url", js: "url", typ: "" },
654
873
  { json: "scale", js: "scale", typ: 3.14 },
655
874
  ], false),
656
- "ExtensionRibbonsCustomTabGroupsItem": o([
875
+ ExtensionRibbonsCustomTabGroupsItem: o([
657
876
  { json: "id", js: "id", typ: u(undefined, "") },
658
877
  { json: "label", js: "label", typ: u(undefined, "") },
659
878
  { json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
660
- { json: "controls", js: "controls", typ: u(undefined, a(r("ExtensionCommonCustomGroupControlsItem"))) },
879
+ {
880
+ json: "controls",
881
+ js: "controls",
882
+ typ: u(undefined, a(r("ExtensionCommonCustomGroupControlsItem"))),
883
+ },
661
884
  { json: "builtInGroupId", js: "builtInGroupId", typ: u(undefined, "") },
662
885
  { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
663
886
  ], false),
664
- "Position": o([
887
+ Position: o([
665
888
  { json: "builtInTabId", js: "builtInTabId", typ: "" },
666
889
  { json: "align", js: "align", typ: r("Align") },
667
890
  ], false),
668
- "ExtensionRuntimesArray": o([
669
- { json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
891
+ ExtensionRuntimesArray: o([
892
+ {
893
+ json: "requirements",
894
+ js: "requirements",
895
+ typ: u(undefined, r("RequirementsExtensionElement")),
896
+ },
670
897
  { json: "id", js: "id", typ: "" },
671
898
  { json: "type", js: "type", typ: u(undefined, r("RuntimeType")) },
672
899
  { json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
673
900
  { json: "lifetime", js: "lifetime", typ: u(undefined, r("Lifetime")) },
674
901
  { json: "actions", js: "actions", typ: u(undefined, a(r("ExtensionRuntimesActionsItem"))) },
675
- { json: "customFunctions", js: "customFunctions", typ: u(undefined, r("ExtensionCustomFunctions")) },
902
+ {
903
+ json: "customFunctions",
904
+ js: "customFunctions",
905
+ typ: u(undefined, r("ExtensionCustomFunctions")),
906
+ },
676
907
  ], false),
677
- "ExtensionRuntimesActionsItem": o([
908
+ ExtensionRuntimesActionsItem: o([
678
909
  { json: "id", js: "id", typ: "" },
679
910
  { json: "type", js: "type", typ: r("ActionType") },
680
911
  { json: "displayName", js: "displayName", typ: u(undefined, "") },
@@ -683,13 +914,21 @@ const typeMap = {
683
914
  { json: "multiselect", js: "multiselect", typ: u(undefined, true) },
684
915
  { json: "supportsNoItemContext", js: "supportsNoItemContext", typ: u(undefined, true) },
685
916
  ], false),
686
- "ExtensionCustomFunctions": o([
917
+ ExtensionCustomFunctions: o([
687
918
  { json: "functions", js: "functions", typ: u(undefined, a(r("ExtensionFunction"))) },
688
- { json: "namespace", js: "namespace", typ: u(undefined, r("ExtensionCustomFunctionsNamespace")) },
689
- { json: "allowCustomDataForDataTypeAny", js: "allowCustomDataForDataTypeAny", typ: u(undefined, true) },
919
+ {
920
+ json: "namespace",
921
+ js: "namespace",
922
+ typ: u(undefined, r("ExtensionCustomFunctionsNamespace")),
923
+ },
924
+ {
925
+ json: "allowCustomDataForDataTypeAny",
926
+ js: "allowCustomDataForDataTypeAny",
927
+ typ: u(undefined, true),
928
+ },
690
929
  { json: "metadataUrl", js: "metadataUrl", typ: u(undefined, "") },
691
930
  ], false),
692
- "ExtensionFunction": o([
931
+ ExtensionFunction: o([
693
932
  { json: "id", js: "id", typ: "" },
694
933
  { json: "name", js: "name", typ: "" },
695
934
  { json: "description", js: "description", typ: u(undefined, "") },
@@ -702,7 +941,7 @@ const typeMap = {
702
941
  { json: "requiresAddress", js: "requiresAddress", typ: u(undefined, true) },
703
942
  { json: "requiresParameterAddress", js: "requiresParameterAddress", typ: u(undefined, true) },
704
943
  ], "any"),
705
- "ExtensionFunctionParameter": o([
944
+ ExtensionFunctionParameter: o([
706
945
  { json: "name", js: "name", typ: "" },
707
946
  { json: "description", js: "description", typ: u(undefined, "") },
708
947
  { json: "type", js: "type", typ: u(undefined, "") },
@@ -711,52 +950,68 @@ const typeMap = {
711
950
  { json: "optional", js: "optional", typ: u(undefined, u(true, null)) },
712
951
  { json: "repeating", js: "repeating", typ: u(undefined, true) },
713
952
  ], "any"),
714
- "ExtensionResult": o([
715
- { json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) },
716
- ], "any"),
717
- "ExtensionCustomFunctionsNamespace": o([
953
+ ExtensionResult: o([{ json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) }], "any"),
954
+ ExtensionCustomFunctionsNamespace: o([
718
955
  { json: "id", js: "id", typ: "" },
719
956
  { json: "name", js: "name", typ: "" },
720
957
  ], "any"),
721
- "GraphConnector": o([
722
- { json: "notificationUrl", js: "notificationUrl", typ: "" },
723
- ], false),
724
- "Icons": o([
958
+ GraphConnector: o([{ json: "notificationUrl", js: "notificationUrl", typ: "" }], false),
959
+ Icons: o([
725
960
  { json: "outline", js: "outline", typ: "" },
726
961
  { json: "color", js: "color", typ: "" },
727
962
  { json: "color32x32", js: "color32x32", typ: u(undefined, "") },
728
963
  ], false),
729
- "IntuneInfo": o([
730
- { json: "supportedMobileAppManagementVersion", js: "supportedMobileAppManagementVersion", typ: u(undefined, "") },
964
+ IntuneInfo: o([
965
+ {
966
+ json: "supportedMobileAppManagementVersion",
967
+ js: "supportedMobileAppManagementVersion",
968
+ typ: u(undefined, ""),
969
+ },
731
970
  ], false),
732
- "LocalizationInfo": o([
971
+ LocalizationInfo: o([
733
972
  { json: "defaultLanguageTag", js: "defaultLanguageTag", typ: "" },
734
973
  { json: "defaultLanguageFile", js: "defaultLanguageFile", typ: u(undefined, "") },
735
- { json: "additionalLanguages", js: "additionalLanguages", typ: u(undefined, a(r("AdditionalLanguage"))) },
974
+ {
975
+ json: "additionalLanguages",
976
+ js: "additionalLanguages",
977
+ typ: u(undefined, a(r("AdditionalLanguage"))),
978
+ },
736
979
  ], false),
737
- "AdditionalLanguage": o([
980
+ AdditionalLanguage: o([
738
981
  { json: "languageTag", js: "languageTag", typ: "" },
739
982
  { json: "file", js: "file", typ: "" },
740
983
  ], false),
741
- "MeetingExtensionDefinition": o([
984
+ MeetingExtensionDefinition: o([
742
985
  { json: "scenes", js: "scenes", typ: u(undefined, a(r("Scene"))) },
743
- { json: "supportsCustomShareToStage", js: "supportsCustomShareToStage", typ: u(undefined, true) },
986
+ {
987
+ json: "supportsCustomShareToStage",
988
+ js: "supportsCustomShareToStage",
989
+ typ: u(undefined, true),
990
+ },
744
991
  { json: "supportsStreaming", js: "supportsStreaming", typ: u(undefined, true) },
745
- { json: "supportsAnonymousGuestUsers", js: "supportsAnonymousGuestUsers", typ: u(undefined, true) },
992
+ {
993
+ json: "supportsAnonymousGuestUsers",
994
+ js: "supportsAnonymousGuestUsers",
995
+ typ: u(undefined, true),
996
+ },
746
997
  ], false),
747
- "Scene": o([
998
+ Scene: o([
748
999
  { json: "id", js: "id", typ: "" },
749
1000
  { json: "name", js: "name", typ: "" },
750
1001
  { json: "file", js: "file", typ: "" },
751
1002
  { json: "preview", js: "preview", typ: "" },
752
1003
  { json: "maxAudience", js: "maxAudience", typ: 0 },
753
- { json: "seatsReservedForOrganizersOrPresenters", js: "seatsReservedForOrganizersOrPresenters", typ: 0 },
1004
+ {
1005
+ json: "seatsReservedForOrganizersOrPresenters",
1006
+ js: "seatsReservedForOrganizersOrPresenters",
1007
+ typ: 0,
1008
+ },
754
1009
  ], false),
755
- "NameClass": o([
1010
+ NameClass: o([
756
1011
  { json: "short", js: "short", typ: "" },
757
1012
  { json: "full", js: "full", typ: u(undefined, "") },
758
1013
  ], false),
759
- "StaticTab": o([
1014
+ StaticTab: o([
760
1015
  { json: "entityId", js: "entityId", typ: "" },
761
1016
  { json: "name", js: "name", typ: u(undefined, "") },
762
1017
  { json: "contentUrl", js: "contentUrl", typ: u(undefined, "") },
@@ -765,73 +1020,43 @@ const typeMap = {
765
1020
  { json: "searchUrl", js: "searchUrl", typ: u(undefined, "") },
766
1021
  { json: "scopes", js: "scopes", typ: a(r("StaticTabScope")) },
767
1022
  { json: "context", js: "context", typ: u(undefined, a(r("StaticTabContext"))) },
768
- { json: "requirementSet", js: "requirementSet", typ: u(undefined, r("ElementRequirementSet")) },
769
- ], false),
770
- "SubscriptionOffer": o([
771
- { json: "offerId", js: "offerId", typ: "" },
772
- ], false),
773
- "WebApplicationInfo": o([
1023
+ {
1024
+ json: "requirementSet",
1025
+ js: "requirementSet",
1026
+ typ: u(undefined, r("ElementRequirementSet")),
1027
+ },
1028
+ ], false),
1029
+ SubscriptionOffer: o([{ json: "offerId", js: "offerId", typ: "" }], false),
1030
+ WebApplicationInfo: o([
774
1031
  { json: "id", js: "id", typ: "" },
775
1032
  { json: "resource", js: "resource", typ: u(undefined, "") },
776
- { json: "nestedAppAuthInfo", js: "nestedAppAuthInfo", typ: u(undefined, a(r("NestedAppAuthInfo"))) },
1033
+ {
1034
+ json: "nestedAppAuthInfo",
1035
+ js: "nestedAppAuthInfo",
1036
+ typ: u(undefined, a(r("NestedAppAuthInfo"))),
1037
+ },
777
1038
  ], false),
778
- "NestedAppAuthInfo": o([
1039
+ NestedAppAuthInfo: o([
779
1040
  { json: "redirectUri", js: "redirectUri", typ: "" },
780
1041
  { json: "scopes", js: "scopes", typ: a("") },
781
1042
  { json: "claims", js: "claims", typ: u(undefined, "") },
782
1043
  ], false),
783
- "ResourceSpecificType": [
784
- "Application",
785
- "Delegated",
786
- ],
787
- "CommandListScope": [
788
- "copilot",
789
- "groupChat",
790
- "personal",
791
- "team",
792
- ],
793
- "Source": [
794
- "microsoftCopilotStudio",
795
- "onedriveSharepoint",
796
- "standard",
797
- ],
798
- "HostMustSupportFunctionalityName": [
1044
+ ResourceSpecificType: ["Application", "Delegated"],
1045
+ CommandListScope: ["copilot", "groupChat", "personal", "team"],
1046
+ Source: ["microsoftCopilotStudio", "onedriveSharepoint", "standard"],
1047
+ HostMustSupportFunctionalityName: [
799
1048
  "dialogAdaptiveCard",
800
1049
  "dialogAdaptiveCardBot",
801
1050
  "dialogUrl",
802
1051
  "dialogUrlBot",
803
1052
  ],
804
- "AuthType": [
805
- "apiSecretServiceAuth",
806
- "microsoftEntra",
807
- "none",
808
- ],
809
- "CommandContext": [
810
- "commandBox",
811
- "compose",
812
- "message",
813
- ],
814
- "InputType": [
815
- "choiceset",
816
- "date",
817
- "number",
818
- "text",
819
- "textarea",
820
- "time",
821
- "toggle",
822
- ],
823
- "CommandType": [
824
- "action",
825
- "query",
826
- ],
827
- "ComposeExtensionType": [
828
- "apiBased",
829
- "botBased",
830
- ],
831
- "MessageHandlerType": [
832
- "link",
833
- ],
834
- "ConfigurableProperty": [
1053
+ AuthType: ["apiSecretServiceAuth", "microsoftEntra", "none"],
1054
+ CommandContext: ["commandBox", "compose", "message"],
1055
+ InputType: ["choiceset", "date", "number", "text", "textarea", "time", "toggle"],
1056
+ CommandType: ["action", "query"],
1057
+ ComposeExtensionType: ["apiBased", "botBased"],
1058
+ MessageHandlerType: ["link"],
1059
+ ConfigurableProperty: [
835
1060
  "accentColor",
836
1061
  "developerUrl",
837
1062
  "largeImageUrl",
@@ -842,7 +1067,7 @@ const typeMap = {
842
1067
  "smallImageUrl",
843
1068
  "termsOfUseUrl",
844
1069
  ],
845
- "ConfigurableTabContext": [
1070
+ ConfigurableTabContext: [
846
1071
  "channelTab",
847
1072
  "meetingChatTab",
848
1073
  "meetingDetailsTab",
@@ -851,84 +1076,24 @@ const typeMap = {
851
1076
  "personalTab",
852
1077
  "privateChatTab",
853
1078
  ],
854
- "MeetingSurface": [
855
- "sidePanel",
856
- "stage",
857
- ],
858
- "ConfigurableTabScope": [
859
- "groupChat",
860
- "team",
861
- ],
862
- "SupportedSharePointHost": [
863
- "sharePointFullPage",
864
- "sharePointWebPart",
865
- ],
866
- "ConnectorScope": [
867
- "team",
868
- ],
869
- "SourceTypeEnum": [
870
- "bot",
871
- ],
872
- "DefaultSize": [
873
- "large",
874
- "medium",
875
- ],
876
- "Groupchat": [
877
- "bot",
878
- "connector",
879
- "tab",
880
- ],
881
- "DefaultInstallScope": [
882
- "copilot",
883
- "groupChat",
884
- "meetings",
885
- "personal",
886
- "team",
887
- ],
888
- "DevicePermission": [
889
- "geolocation",
890
- "midi",
891
- "media",
892
- "notifications",
893
- "openExternal",
894
- ],
895
- "MutualDependencyName": [
896
- "bots",
897
- "composeExtensions",
898
- "configurableTabs",
899
- "staticTabs",
900
- ],
901
- "Effect": [
902
- "disableWithNotification",
903
- "userOptionToDisable",
904
- ],
905
- "FormFactor": [
906
- "desktop",
907
- "mobile",
908
- ],
909
- "RequirementsScope": [
910
- "document",
911
- "mail",
912
- "presentation",
913
- "workbook",
914
- ],
915
- "SendMode": [
916
- "block",
917
- "promptUser",
918
- "softBlock",
919
- ],
920
- "ItemType": [
921
- "menuItem",
922
- ],
923
- "PurpleType": [
924
- "button",
925
- "menu",
926
- ],
927
- "EntryPoint": [
928
- "cell",
929
- "text",
930
- ],
931
- "ExtensionContext": [
1079
+ MeetingSurface: ["sidePanel", "stage"],
1080
+ ConfigurableTabScope: ["groupChat", "team"],
1081
+ SupportedSharePointHost: ["sharePointFullPage", "sharePointWebPart"],
1082
+ ConnectorScope: ["team"],
1083
+ SourceTypeEnum: ["bot"],
1084
+ DefaultSize: ["large", "medium"],
1085
+ Groupchat: ["bot", "connector", "tab"],
1086
+ DefaultInstallScope: ["copilot", "groupChat", "meetings", "personal", "team"],
1087
+ DevicePermission: ["geolocation", "midi", "media", "notifications", "openExternal"],
1088
+ MutualDependencyName: ["bots", "composeExtensions", "configurableTabs", "staticTabs"],
1089
+ Effect: ["disableWithNotification", "userOptionToDisable"],
1090
+ FormFactor: ["desktop", "mobile"],
1091
+ RequirementsScope: ["document", "mail", "presentation", "workbook"],
1092
+ SendMode: ["block", "promptUser", "softBlock"],
1093
+ ItemType: ["menuItem"],
1094
+ PurpleType: ["button", "menu"],
1095
+ EntryPoint: ["cell", "text"],
1096
+ ExtensionContext: [
932
1097
  "default",
933
1098
  "logEventMeetingDetailsAttendee",
934
1099
  "mailCompose",
@@ -938,26 +1103,12 @@ const typeMap = {
938
1103
  "onlineMeetingDetailsOrganizer",
939
1104
  "spamReportingOverride",
940
1105
  ],
941
- "FixedControlType": [
942
- "button",
943
- ],
944
- "SpamReportingOptionsType": [
945
- "checkbox",
946
- "radio",
947
- ],
948
- "FluffyType": [
949
- "mobileButton",
950
- ],
951
- "Align": [
952
- "after",
953
- "before",
954
- ],
955
- "ActionType": [
956
- "executeDataFunction",
957
- "executeFunction",
958
- "openPage",
959
- ],
960
- "CellValueType": [
1106
+ FixedControlType: ["button"],
1107
+ SpamReportingOptionsType: ["checkbox", "radio"],
1108
+ FluffyType: ["mobileButton"],
1109
+ Align: ["after", "before"],
1110
+ ActionType: ["executeDataFunction", "executeFunction", "openPage"],
1111
+ CellValueType: [
961
1112
  "booleancellvalue",
962
1113
  "cellvalue",
963
1114
  "doublecellvalue",
@@ -969,25 +1120,12 @@ const typeMap = {
969
1120
  "stringcellvalue",
970
1121
  "webimagecellvalue",
971
1122
  ],
972
- "Dimensionality": [
973
- "matrix",
974
- "scalar",
975
- ],
976
- "Lifetime": [
977
- "long",
978
- "short",
979
- ],
980
- "RuntimeType": [
981
- "general",
982
- ],
983
- "ManifestVersion": [
984
- "1.24",
985
- ],
986
- "Permission": [
987
- "identity",
988
- "messageTeamMembers",
989
- ],
990
- "StaticTabContext": [
1123
+ Dimensionality: ["matrix", "scalar"],
1124
+ Lifetime: ["long", "short"],
1125
+ RuntimeType: ["general"],
1126
+ ManifestVersion: ["1.24"],
1127
+ Permission: ["identity", "messageTeamMembers"],
1128
+ StaticTabContext: [
991
1129
  "channelTab",
992
1130
  "meetingChatTab",
993
1131
  "meetingDetailsTab",
@@ -997,14 +1135,7 @@ const typeMap = {
997
1135
  "privateChatTab",
998
1136
  "teamLevelApp",
999
1137
  ],
1000
- "StaticTabScope": [
1001
- "groupChat",
1002
- "personal",
1003
- "team",
1004
- ],
1005
- "SupportedChannelType": [
1006
- "privateChannels",
1007
- "sharedChannels",
1008
- ],
1138
+ StaticTabScope: ["groupChat", "personal", "team"],
1139
+ SupportedChannelType: ["privateChannels", "sharedChannels"],
1009
1140
  };
1010
1141
  //# sourceMappingURL=TeamsManifestV1D24.js.map