@microsoft/app-manifest 1.0.4-beta.2025122503.0 → 1.0.4-beta.2026011501.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.
Files changed (56) hide show
  1. package/build/ManifestCommonProperties.d.ts +4 -0
  2. package/build/declarativeCopilotManifest.d.ts +43 -0
  3. package/build/declarativeCopilotManifest.js +3 -0
  4. package/build/declarativeCopilotManifest.js.map +1 -1
  5. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.d.ts +69 -6
  6. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.js +19 -1
  7. package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.js.map +1 -1
  8. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.d.ts +5 -5
  9. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.js +2 -2
  10. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.js.map +1 -1
  11. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.d.ts +1 -5
  12. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.js +1 -1
  13. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.js.map +1 -1
  14. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.d.ts +527 -0
  15. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.js +320 -0
  16. package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.js.map +1 -0
  17. package/build/generated-types/index.d.ts +7 -4
  18. package/build/generated-types/index.js +31 -7
  19. package/build/generated-types/index.js.map +1 -1
  20. package/build/generated-types/teams/TeamsManifestV1D17.d.ts +1 -1
  21. package/build/generated-types/teams/TeamsManifestV1D19.d.ts +1 -1
  22. package/build/generated-types/teams/TeamsManifestV1D20.d.ts +1 -1
  23. package/build/generated-types/teams/TeamsManifestV1D21.d.ts +1 -1
  24. package/build/generated-types/teams/TeamsManifestV1D22.d.ts +1 -1
  25. package/build/generated-types/teams/TeamsManifestV1D23.d.ts +1941 -0
  26. package/build/generated-types/teams/TeamsManifestV1D23.js +1108 -0
  27. package/build/generated-types/teams/TeamsManifestV1D23.js.map +1 -0
  28. package/build/generated-types/teams/TeamsManifestV1D24.d.ts +2027 -0
  29. package/build/generated-types/teams/TeamsManifestV1D24.js +1141 -0
  30. package/build/generated-types/teams/TeamsManifestV1D24.js.map +1 -0
  31. package/build/index.d.ts +1 -0
  32. package/build/index.js +1 -0
  33. package/build/index.js.map +1 -1
  34. package/build/manifest.d.ts +78 -2
  35. package/build/manifest.js +2 -2
  36. package/build/manifest.js.map +1 -1
  37. package/build/pluginManifest.d.ts +56 -0
  38. package/build/pluginManifest.js +2 -0
  39. package/build/pluginManifest.js.map +1 -1
  40. package/build/tsconfig.tsbuildinfo +1 -1
  41. package/build/wrappers/APIPluginManifestWrapper.d.ts +185 -0
  42. package/build/wrappers/APIPluginManifestWrapper.js +309 -0
  43. package/build/wrappers/APIPluginManifestWrapper.js.map +1 -0
  44. package/build/wrappers/BaseManifest.d.ts +57 -0
  45. package/build/wrappers/BaseManifest.js +84 -0
  46. package/build/wrappers/BaseManifest.js.map +1 -0
  47. package/build/wrappers/DeclarativeAgentManifestWrapper.d.ts +245 -0
  48. package/build/wrappers/DeclarativeAgentManifestWrapper.js +403 -0
  49. package/build/wrappers/DeclarativeAgentManifestWrapper.js.map +1 -0
  50. package/build/wrappers/TeamsManifestWrapper.d.ts +436 -0
  51. package/build/wrappers/TeamsManifestWrapper.js +709 -0
  52. package/build/wrappers/TeamsManifestWrapper.js.map +1 -0
  53. package/build/wrappers/index.d.ts +15 -0
  54. package/build/wrappers/index.js +28 -0
  55. package/build/wrappers/index.js.map +1 -0
  56. package/package.json +5 -3
@@ -0,0 +1,1108 @@
1
+ "use strict";
2
+ // To parse this data:
3
+ //
4
+ // import { Convert, TeamsManifestV1D23 } from "./file";
5
+ //
6
+ // const teamsManifestV1D23 = Convert.toTeamsManifestV1D23(json);
7
+ //
8
+ // These functions will throw an error if the JSON doesn't
9
+ // match the expected interface, even if the JSON is valid.
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ exports.Convert = void 0;
12
+ // Converts JSON strings to/from your types
13
+ // and asserts the results of JSON.parse at runtime
14
+ class Convert {
15
+ static toTeamsManifestV1D23(json) {
16
+ return cast(JSON.parse(json), r("TeamsManifestV1D23"));
17
+ }
18
+ static teamsManifestV1D23ToJson(value) {
19
+ return JSON.stringify(uncast(value, r("TeamsManifestV1D23")), null, 4);
20
+ }
21
+ }
22
+ exports.Convert = Convert;
23
+ function invalidValue(typ, val, key, parent = "") {
24
+ const prettyTyp = prettyTypeName(typ);
25
+ const parentText = parent ? ` on ${parent}` : "";
26
+ const keyText = key ? ` for key "${key}"` : "";
27
+ throw Error(`Invalid value${keyText}${parentText}. Expected ${prettyTyp} but got ${JSON.stringify(val)}`);
28
+ }
29
+ function prettyTypeName(typ) {
30
+ if (Array.isArray(typ)) {
31
+ if (typ.length === 2 && typ[0] === undefined) {
32
+ return `an optional ${prettyTypeName(typ[1])}`;
33
+ }
34
+ else {
35
+ return `one of [${typ
36
+ .map((a) => {
37
+ return prettyTypeName(a);
38
+ })
39
+ .join(", ")}]`;
40
+ }
41
+ }
42
+ else if (typeof typ === "object" && typ.literal !== undefined) {
43
+ return typ.literal;
44
+ }
45
+ else {
46
+ return typeof typ;
47
+ }
48
+ }
49
+ function jsonToJSProps(typ) {
50
+ if (typ.jsonToJS === undefined) {
51
+ const map = {};
52
+ typ.props.forEach((p) => (map[p.json] = { key: p.js, typ: p.typ }));
53
+ typ.jsonToJS = map;
54
+ }
55
+ return typ.jsonToJS;
56
+ }
57
+ function jsToJSONProps(typ) {
58
+ if (typ.jsToJSON === undefined) {
59
+ const map = {};
60
+ typ.props.forEach((p) => (map[p.js] = { key: p.json, typ: p.typ }));
61
+ typ.jsToJSON = map;
62
+ }
63
+ return typ.jsToJSON;
64
+ }
65
+ function transform(val, typ, getProps, key = "", parent = "") {
66
+ function transformPrimitive(typ, val) {
67
+ if (typeof typ === typeof val)
68
+ return val;
69
+ return invalidValue(typ, val, key, parent);
70
+ }
71
+ function transformUnion(typs, val) {
72
+ // val must validate against one typ in typs
73
+ const l = typs.length;
74
+ for (let i = 0; i < l; i++) {
75
+ const typ = typs[i];
76
+ try {
77
+ return transform(val, typ, getProps);
78
+ }
79
+ catch (_) { }
80
+ }
81
+ return invalidValue(typs, val, key, parent);
82
+ }
83
+ function transformEnum(cases, val) {
84
+ if (cases.indexOf(val) !== -1)
85
+ return val;
86
+ return invalidValue(cases.map((a) => {
87
+ return l(a);
88
+ }), val, key, parent);
89
+ }
90
+ function transformArray(typ, val) {
91
+ // val must be an array with no invalid elements
92
+ if (!Array.isArray(val))
93
+ return invalidValue(l("array"), val, key, parent);
94
+ return val.map((el) => transform(el, typ, getProps));
95
+ }
96
+ function transformDate(val) {
97
+ if (val === null) {
98
+ return null;
99
+ }
100
+ const d = new Date(val);
101
+ if (isNaN(d.valueOf())) {
102
+ return invalidValue(l("Date"), val, key, parent);
103
+ }
104
+ return d;
105
+ }
106
+ function transformObject(props, additional, val) {
107
+ if (val === null || typeof val !== "object" || Array.isArray(val)) {
108
+ return invalidValue(l(ref || "object"), val, key, parent);
109
+ }
110
+ const result = {};
111
+ Object.getOwnPropertyNames(props).forEach((key) => {
112
+ const prop = props[key];
113
+ const v = Object.prototype.hasOwnProperty.call(val, key) ? val[key] : undefined;
114
+ result[prop.key] = transform(v, prop.typ, getProps, key, ref);
115
+ });
116
+ Object.getOwnPropertyNames(val).forEach((key) => {
117
+ if (!Object.prototype.hasOwnProperty.call(props, key)) {
118
+ result[key] = transform(val[key], additional, getProps, key, ref);
119
+ }
120
+ });
121
+ return result;
122
+ }
123
+ if (typ === "any")
124
+ return val;
125
+ if (typ === null) {
126
+ if (val === null)
127
+ return val;
128
+ return invalidValue(typ, val, key, parent);
129
+ }
130
+ if (typ === false)
131
+ return invalidValue(typ, val, key, parent);
132
+ let ref = undefined;
133
+ while (typeof typ === "object" && typ.ref !== undefined) {
134
+ ref = typ.ref;
135
+ typ = typeMap[typ.ref];
136
+ }
137
+ if (Array.isArray(typ))
138
+ return transformEnum(typ, val);
139
+ if (typeof typ === "object") {
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)
146
+ : invalidValue(typ, val, key, parent);
147
+ }
148
+ // Numbers can be parsed by Date but shouldn't be.
149
+ if (typ === Date && typeof val !== "number")
150
+ return transformDate(val);
151
+ return transformPrimitive(typ, val);
152
+ }
153
+ function cast(val, typ) {
154
+ return transform(val, typ, jsonToJSProps);
155
+ }
156
+ function uncast(val, typ) {
157
+ return transform(val, typ, jsToJSONProps);
158
+ }
159
+ function l(typ) {
160
+ return { literal: typ };
161
+ }
162
+ function a(typ) {
163
+ return { arrayItems: typ };
164
+ }
165
+ function u(...typs) {
166
+ return { unionMembers: typs };
167
+ }
168
+ function o(props, additional) {
169
+ return { props, additional };
170
+ }
171
+ function m(additional) {
172
+ return { props: [], additional };
173
+ }
174
+ function r(name) {
175
+ return { ref: name };
176
+ }
177
+ const typeMap = {
178
+ TeamsManifestV1D23: o([
179
+ { json: "$schema", js: "$schema", typ: u(undefined, "") },
180
+ { json: "manifestVersion", js: "manifestVersion", typ: r("ManifestVersion") },
181
+ { json: "version", js: "version", typ: "" },
182
+ { json: "id", js: "id", typ: "" },
183
+ {
184
+ json: "localizationInfo",
185
+ js: "localizationInfo",
186
+ typ: u(undefined, r("LocalizationInfo")),
187
+ },
188
+ { json: "developer", js: "developer", typ: r("Developer") },
189
+ { json: "name", js: "name", typ: r("NameClass") },
190
+ { json: "description", js: "description", typ: r("Description") },
191
+ { json: "icons", js: "icons", typ: r("Icons") },
192
+ { json: "accentColor", js: "accentColor", typ: "" },
193
+ {
194
+ json: "configurableTabs",
195
+ js: "configurableTabs",
196
+ typ: u(undefined, a(r("ConfigurableTab"))),
197
+ },
198
+ { json: "staticTabs", js: "staticTabs", typ: u(undefined, a(r("StaticTab"))) },
199
+ { json: "bots", js: "bots", typ: u(undefined, a(r("Bot"))) },
200
+ { json: "connectors", js: "connectors", typ: u(undefined, a(r("Connector"))) },
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
+ },
211
+ { json: "permissions", js: "permissions", typ: u(undefined, a(r("Permission"))) },
212
+ {
213
+ json: "devicePermissions",
214
+ js: "devicePermissions",
215
+ typ: u(undefined, a(r("DevicePermission"))),
216
+ },
217
+ { json: "validDomains", js: "validDomains", typ: u(undefined, a("")) },
218
+ {
219
+ json: "webApplicationInfo",
220
+ js: "webApplicationInfo",
221
+ typ: u(undefined, r("WebApplicationInfo")),
222
+ },
223
+ { json: "graphConnector", js: "graphConnector", typ: u(undefined, r("GraphConnector")) },
224
+ { json: "showLoadingIndicator", js: "showLoadingIndicator", typ: u(undefined, true) },
225
+ { json: "isFullScreen", js: "isFullScreen", typ: u(undefined, true) },
226
+ { json: "activities", js: "activities", typ: u(undefined, r("Activities")) },
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
+ },
242
+ { json: "publisherDocsUrl", js: "publisherDocsUrl", typ: u(undefined, "") },
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
+ },
263
+ { json: "extensions", js: "extensions", typ: u(undefined, a(r("ElementExtension"))) },
264
+ { json: "dashboardCards", js: "dashboardCards", typ: u(undefined, a(r("DashboardCard"))) },
265
+ { json: "copilotAgents", js: "copilotAgents", typ: u(undefined, r("CopilotAgents")) },
266
+ { json: "intuneInfo", js: "intuneInfo", typ: u(undefined, r("IntuneInfo")) },
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([
279
+ { json: "activityTypes", js: "activityTypes", typ: u(undefined, a(r("ActivityType"))) },
280
+ { json: "activityIcons", js: "activityIcons", typ: u(undefined, a(r("ActivityIcon"))) },
281
+ ], false),
282
+ ActivityIcon: o([
283
+ { json: "id", js: "id", typ: "" },
284
+ { json: "iconFile", js: "iconFile", typ: "" },
285
+ ], false),
286
+ ActivityType: o([
287
+ { json: "type", js: "type", typ: "" },
288
+ { json: "description", js: "description", typ: "" },
289
+ { json: "templateText", js: "templateText", typ: "" },
290
+ { json: "allowedIconIds", js: "allowedIconIds", typ: u(undefined, a("")) },
291
+ ], false),
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
+ },
299
+ ], false),
300
+ ResourceSpecific: o([
301
+ { json: "name", js: "name", typ: "" },
302
+ { json: "type", js: "type", typ: r("ResourceSpecificType") },
303
+ ], false),
304
+ BackgroundLoadConfiguration: o([
305
+ {
306
+ json: "tabConfiguration",
307
+ js: "tabConfiguration",
308
+ typ: u(undefined, r("TabConfiguration")),
309
+ },
310
+ ], false),
311
+ TabConfiguration: o([{ json: "contentUrl", js: "contentUrl", typ: "" }], false),
312
+ Bot: o([
313
+ { json: "botId", js: "botId", typ: "" },
314
+ { json: "configuration", js: "configuration", typ: u(undefined, r("Configuration")) },
315
+ { json: "needsChannelSelector", js: "needsChannelSelector", typ: u(undefined, true) },
316
+ { json: "isNotificationOnly", js: "isNotificationOnly", typ: u(undefined, true) },
317
+ { json: "supportsFiles", js: "supportsFiles", typ: u(undefined, true) },
318
+ { json: "supportsCalling", js: "supportsCalling", typ: u(undefined, true) },
319
+ { json: "supportsVideo", js: "supportsVideo", typ: u(undefined, true) },
320
+ { json: "scopes", js: "scopes", typ: a(r("CommandListScope")) },
321
+ { json: "commandLists", js: "commandLists", typ: u(undefined, a(r("CommandList"))) },
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([
334
+ { json: "scopes", js: "scopes", typ: a(r("CommandListScope")) },
335
+ { json: "commands", js: "commands", typ: a(r("CommandListCommand")) },
336
+ ], false),
337
+ CommandListCommand: o([
338
+ { json: "title", js: "title", typ: "" },
339
+ { json: "description", js: "description", typ: "" },
340
+ ], false),
341
+ Configuration: o([
342
+ { json: "team", js: "team", typ: u(undefined, r("Team")) },
343
+ { json: "groupChat", js: "groupChat", typ: u(undefined, r("Team")) },
344
+ ], false),
345
+ Team: o([
346
+ { json: "fetchTask", js: "fetchTask", typ: u(undefined, true) },
347
+ { json: "taskInfo", js: "taskInfo", typ: u(undefined, r("TaskInfo")) },
348
+ ], false),
349
+ TaskInfo: o([
350
+ { json: "title", js: "title", typ: u(undefined, "") },
351
+ { json: "width", js: "width", typ: u(undefined, "") },
352
+ { json: "height", js: "height", typ: u(undefined, "") },
353
+ { json: "url", js: "url", typ: u(undefined, "") },
354
+ ], false),
355
+ RegistrationInfo: o([
356
+ { json: "source", js: "source", typ: r("Source") },
357
+ { json: "environment", js: "environment", typ: u(undefined, "") },
358
+ { json: "schemaName", js: "schemaName", typ: u(undefined, "") },
359
+ { json: "clusterCategory", js: "clusterCategory", typ: u(undefined, "") },
360
+ ], false),
361
+ ElementRequirementSet: o([
362
+ {
363
+ json: "hostMustSupportFunctionalities",
364
+ js: "hostMustSupportFunctionalities",
365
+ typ: a(r("HostFunctionality")),
366
+ },
367
+ ], false),
368
+ HostFunctionality: o([{ json: "name", js: "name", typ: r("HostMustSupportFunctionalityName") }], false),
369
+ ComposeExtension: o([
370
+ { json: "id", js: "id", typ: u(undefined, "") },
371
+ { json: "botId", js: "botId", typ: u(undefined, "") },
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
+ },
382
+ { json: "apiSpecificationFile", js: "apiSpecificationFile", typ: u(undefined, "") },
383
+ {
384
+ json: "canUpdateConfiguration",
385
+ js: "canUpdateConfiguration",
386
+ typ: u(undefined, u(true, null)),
387
+ },
388
+ { json: "commands", js: "commands", typ: u(undefined, a(r("ComposeExtensionCommand"))) },
389
+ { json: "messageHandlers", js: "messageHandlers", typ: u(undefined, a(r("MessageHandler"))) },
390
+ {
391
+ json: "requirementSet",
392
+ js: "requirementSet",
393
+ typ: u(undefined, r("ElementRequirementSet")),
394
+ },
395
+ ], false),
396
+ ComposeExtensionAuthorization: o([
397
+ { json: "authType", js: "authType", typ: u(undefined, r("AuthType")) },
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([
412
+ { json: "id", js: "id", typ: "" },
413
+ { json: "type", js: "type", typ: u(undefined, r("CommandType")) },
414
+ { json: "samplePrompts", js: "samplePrompts", typ: u(undefined, a(r("SamplePrompt"))) },
415
+ {
416
+ json: "apiResponseRenderingTemplateFile",
417
+ js: "apiResponseRenderingTemplateFile",
418
+ typ: u(undefined, ""),
419
+ },
420
+ { json: "context", js: "context", typ: u(undefined, a(r("CommandContext"))) },
421
+ { json: "title", js: "title", typ: "" },
422
+ { json: "description", js: "description", typ: u(undefined, "") },
423
+ { json: "initialRun", js: "initialRun", typ: u(undefined, true) },
424
+ { json: "fetchTask", js: "fetchTask", typ: u(undefined, true) },
425
+ { json: "semanticDescription", js: "semanticDescription", typ: u(undefined, "") },
426
+ { json: "parameters", js: "parameters", typ: u(undefined, a(r("Parameter"))) },
427
+ { json: "taskInfo", js: "taskInfo", typ: u(undefined, r("TaskInfo")) },
428
+ ], false),
429
+ Parameter: o([
430
+ { json: "name", js: "name", typ: "" },
431
+ { json: "inputType", js: "inputType", typ: u(undefined, r("InputType")) },
432
+ { json: "title", js: "title", typ: "" },
433
+ { json: "description", js: "description", typ: u(undefined, "") },
434
+ { json: "value", js: "value", typ: u(undefined, "") },
435
+ { json: "isRequired", js: "isRequired", typ: u(undefined, true) },
436
+ { json: "semanticDescription", js: "semanticDescription", typ: u(undefined, "") },
437
+ { json: "choices", js: "choices", typ: u(undefined, a(r("Choice"))) },
438
+ ], false),
439
+ Choice: o([
440
+ { json: "title", js: "title", typ: "" },
441
+ { json: "value", js: "value", typ: "" },
442
+ ], false),
443
+ SamplePrompt: o([{ json: "text", js: "text", typ: "" }], false),
444
+ MessageHandler: o([
445
+ { json: "type", js: "type", typ: r("MessageHandlerType") },
446
+ { json: "value", js: "value", typ: r("Value") },
447
+ ], false),
448
+ Value: o([
449
+ { json: "domains", js: "domains", typ: u(undefined, a("")) },
450
+ {
451
+ json: "supportsAnonymizedPayloads",
452
+ js: "supportsAnonymizedPayloads",
453
+ typ: u(undefined, true),
454
+ },
455
+ ], false),
456
+ ConfigurableTab: o([
457
+ { json: "id", js: "id", typ: u(undefined, "") },
458
+ { json: "configurationUrl", js: "configurationUrl", typ: "" },
459
+ { json: "canUpdateConfiguration", js: "canUpdateConfiguration", typ: u(undefined, true) },
460
+ { json: "scopes", js: "scopes", typ: a(r("ConfigurableTabScope")) },
461
+ { json: "meetingSurfaces", js: "meetingSurfaces", typ: u(undefined, a(r("MeetingSurface"))) },
462
+ { json: "context", js: "context", typ: u(undefined, a(r("ConfigurableTabContext"))) },
463
+ { json: "sharePointPreviewImage", js: "sharePointPreviewImage", typ: u(undefined, "") },
464
+ {
465
+ json: "supportedSharePointHosts",
466
+ js: "supportedSharePointHosts",
467
+ typ: u(undefined, a(r("SupportedSharePointHost"))),
468
+ },
469
+ ], false),
470
+ Connector: o([
471
+ { json: "connectorId", js: "connectorId", typ: "" },
472
+ { json: "configurationUrl", js: "configurationUrl", typ: u(undefined, "") },
473
+ { json: "scopes", js: "scopes", typ: a(r("ConnectorScope")) },
474
+ ], false),
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([
488
+ { json: "id", js: "id", typ: "" },
489
+ { json: "type", js: "type", typ: r("SourceTypeEnum") },
490
+ { json: "disclaimer", js: "disclaimer", typ: u(undefined, r("Disclaimer")) },
491
+ ], false),
492
+ Disclaimer: o([{ json: "text", js: "text", typ: "" }], "any"),
493
+ DeclarativeAgentRef: o([
494
+ { json: "id", js: "id", typ: "" },
495
+ { json: "file", js: "file", typ: "" },
496
+ ], false),
497
+ DashboardCard: o([
498
+ { json: "id", js: "id", typ: "" },
499
+ { json: "displayName", js: "displayName", typ: "" },
500
+ { json: "description", js: "description", typ: "" },
501
+ { json: "pickerGroupId", js: "pickerGroupId", typ: "" },
502
+ { json: "icon", js: "icon", typ: u(undefined, r("DashboardCardIcon")) },
503
+ { json: "contentSource", js: "contentSource", typ: r("DashboardCardContentSource") },
504
+ { json: "defaultSize", js: "defaultSize", typ: r("DefaultSize") },
505
+ ], false),
506
+ DashboardCardContentSource: o([
507
+ { json: "sourceType", js: "sourceType", typ: u(undefined, r("SourceTypeEnum")) },
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([
516
+ { json: "iconUrl", js: "iconUrl", typ: u(undefined, "") },
517
+ { json: "officeUIFabricIconName", js: "officeUIFabricIconName", typ: u(undefined, "") },
518
+ ], false),
519
+ DefaultGroupCapability: o([
520
+ { json: "team", js: "team", typ: u(undefined, r("Groupchat")) },
521
+ { json: "groupchat", js: "groupchat", typ: u(undefined, r("Groupchat")) },
522
+ { json: "meetings", js: "meetings", typ: u(undefined, r("Groupchat")) },
523
+ ], false),
524
+ Description: o([
525
+ { json: "short", js: "short", typ: "" },
526
+ { json: "full", js: "full", typ: "" },
527
+ ], false),
528
+ Developer: o([
529
+ { json: "name", js: "name", typ: "" },
530
+ { json: "mpnId", js: "mpnId", typ: u(undefined, "") },
531
+ { json: "websiteUrl", js: "websiteUrl", typ: "" },
532
+ { json: "privacyUrl", js: "privacyUrl", typ: "" },
533
+ { json: "termsOfUseUrl", js: "termsOfUseUrl", typ: "" },
534
+ ], false),
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([
548
+ { json: "name", js: "name", typ: r("MutualDependencyName") },
549
+ { json: "id", js: "id", typ: "" },
550
+ { json: "commandIds", js: "commandIds", typ: u(undefined, a("")) },
551
+ ], false),
552
+ OneWayDependency: o([
553
+ { json: "element", js: "element", typ: r("ElementReference") },
554
+ { json: "dependsOn", js: "dependsOn", typ: a(r("ElementReference")) },
555
+ ], false),
556
+ ElementExtension: o([
557
+ {
558
+ json: "requirements",
559
+ js: "requirements",
560
+ typ: u(undefined, r("RequirementsExtensionElement")),
561
+ },
562
+ { json: "runtimes", js: "runtimes", typ: u(undefined, a(r("ExtensionRuntimesArray"))) },
563
+ { json: "ribbons", js: "ribbons", typ: u(undefined, a(r("ExtensionRibbonsArray"))) },
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
+ },
594
+ { json: "audienceClaimUrl", js: "audienceClaimUrl", typ: u(undefined, "") },
595
+ ], false),
596
+ ExtensionAlternateVersionsArray: o([
597
+ {
598
+ json: "requirements",
599
+ js: "requirements",
600
+ typ: u(undefined, r("RequirementsExtensionElement")),
601
+ },
602
+ { json: "prefer", js: "prefer", typ: u(undefined, r("Prefer")) },
603
+ { json: "hide", js: "hide", typ: u(undefined, r("Hide")) },
604
+ { json: "alternateIcons", js: "alternateIcons", typ: u(undefined, r("AlternateIcons")) },
605
+ ], false),
606
+ AlternateIcons: o([
607
+ { json: "icon", js: "icon", typ: r("ExtensionCommonIcon") },
608
+ { json: "highResolutionIcon", js: "highResolutionIcon", typ: r("ExtensionCommonIcon") },
609
+ ], false),
610
+ ExtensionCommonIcon: o([
611
+ { json: "size", js: "size", typ: 3.14 },
612
+ { json: "url", js: "url", typ: "" },
613
+ ], false),
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
+ ], "any"),
626
+ CustomOfficeAddin: o([{ json: "officeAddinId", js: "officeAddinId", typ: "" }], false),
627
+ StoreOfficeAddin: o([
628
+ { json: "officeAddinId", js: "officeAddinId", typ: "" },
629
+ { json: "assetId", js: "assetId", typ: "" },
630
+ ], false),
631
+ Prefer: o([
632
+ { json: "comAddin", js: "comAddin", typ: u(undefined, r("COMAddin")) },
633
+ {
634
+ json: "xllCustomFunctions",
635
+ js: "xllCustomFunctions",
636
+ typ: u(undefined, r("ExtensionXllCustomFunctions")),
637
+ },
638
+ ], "any"),
639
+ COMAddin: o([{ json: "progId", js: "progId", typ: "" }], false),
640
+ ExtensionXllCustomFunctions: o([{ json: "fileName", js: "fileName", typ: u(undefined, "") }], "any"),
641
+ RequirementsExtensionElement: o([
642
+ { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
643
+ { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
644
+ { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
645
+ ], false),
646
+ Capability: o([
647
+ { json: "name", js: "name", typ: "" },
648
+ { json: "minVersion", js: "minVersion", typ: u(undefined, "") },
649
+ { json: "maxVersion", js: "maxVersion", typ: u(undefined, "") },
650
+ ], false),
651
+ ExtensionAutoRunEventsArray: o([
652
+ {
653
+ json: "requirements",
654
+ js: "requirements",
655
+ typ: u(undefined, r("RequirementsExtensionElement")),
656
+ },
657
+ { json: "events", js: "events", typ: a(r("Event")) },
658
+ ], false),
659
+ Event: o([
660
+ { json: "type", js: "type", typ: "" },
661
+ { json: "actionId", js: "actionId", typ: "" },
662
+ { json: "options", js: "options", typ: u(undefined, r("Options")) },
663
+ ], false),
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
+ },
671
+ { json: "id", js: "id", typ: "" },
672
+ { json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
673
+ { json: "requestedHeight", js: "requestedHeight", typ: u(undefined, 3.14) },
674
+ { json: "requestedWidth", js: "requestedWidth", typ: u(undefined, 3.14) },
675
+ { json: "disableSnapshot", js: "disableSnapshot", typ: u(undefined, true) },
676
+ ], false),
677
+ ExtensionRuntimeCode: o([
678
+ { json: "page", js: "page", typ: "" },
679
+ { json: "script", js: "script", typ: u(undefined, "") },
680
+ ], false),
681
+ ContentRuntimeRequirements: o([
682
+ { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
683
+ { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
684
+ { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
685
+ ], false),
686
+ ExtensionContextMenuArray: o([
687
+ { json: "requirements", js: "requirements", typ: u(undefined, r("ContextMenuRequirements")) },
688
+ { json: "menus", js: "menus", typ: a(r("ExtensionMenuItem")) },
689
+ ], false),
690
+ ExtensionMenuItem: o([
691
+ { json: "entryPoint", js: "entryPoint", typ: r("EntryPoint") },
692
+ { json: "controls", js: "controls", typ: a(r("ExtensionCommonCustomGroupControlsItem")) },
693
+ ], false),
694
+ ExtensionCommonCustomGroupControlsItem: o([
695
+ { json: "id", js: "id", typ: "" },
696
+ { json: "type", js: "type", typ: r("PurpleType") },
697
+ { json: "builtInControlId", js: "builtInControlId", typ: u(undefined, "") },
698
+ { json: "label", js: "label", typ: "" },
699
+ { json: "icons", js: "icons", typ: a(r("ExtensionCommonIcon")) },
700
+ { json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
701
+ { json: "actionId", js: "actionId", typ: u(undefined, "") },
702
+ { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
703
+ { json: "enabled", js: "enabled", typ: u(undefined, true) },
704
+ {
705
+ json: "items",
706
+ js: "items",
707
+ typ: u(undefined, a(r("ExtensionCommonCustomControlMenuItem"))),
708
+ },
709
+ ], false),
710
+ ExtensionCommonCustomControlMenuItem: o([
711
+ { json: "id", js: "id", typ: "" },
712
+ { json: "type", js: "type", typ: r("ItemType") },
713
+ { json: "label", js: "label", typ: "" },
714
+ { json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
715
+ { json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
716
+ { json: "actionId", js: "actionId", typ: "" },
717
+ { json: "enabled", js: "enabled", typ: u(undefined, true) },
718
+ { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
719
+ ], false),
720
+ ExtensionCommonSuperToolTip: o([
721
+ { json: "title", js: "title", typ: "" },
722
+ { json: "description", js: "description", typ: "" },
723
+ ], false),
724
+ ContextMenuRequirements: o([
725
+ { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
726
+ { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
727
+ { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
728
+ ], false),
729
+ ExtensionGetStartedMessageArray: o([
730
+ {
731
+ json: "requirements",
732
+ js: "requirements",
733
+ typ: u(undefined, r("GetStartedMessageRequirements")),
734
+ },
735
+ { json: "title", js: "title", typ: "" },
736
+ { json: "description", js: "description", typ: "" },
737
+ { json: "learnMoreUrl", js: "learnMoreUrl", typ: "" },
738
+ ], false),
739
+ GetStartedMessageRequirements: o([
740
+ { json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
741
+ { json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
742
+ { json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
743
+ ], false),
744
+ ExtensionKeyboardShortcut: o([
745
+ {
746
+ json: "requirements",
747
+ js: "requirements",
748
+ typ: u(undefined, r("RequirementsExtensionElement")),
749
+ },
750
+ { json: "shortcuts", js: "shortcuts", typ: a(r("ExtensionShortcut")) },
751
+ ], "any"),
752
+ ExtensionShortcut: o([
753
+ { json: "key", js: "key", typ: r("Key") },
754
+ { json: "actionId", js: "actionId", typ: "" },
755
+ ], "any"),
756
+ Key: o([
757
+ { json: "default", js: "default", typ: "" },
758
+ { json: "mac", js: "mac", typ: u(undefined, "") },
759
+ { json: "web", js: "web", typ: u(undefined, "") },
760
+ { json: "windows", js: "windows", typ: u(undefined, "") },
761
+ ], "any"),
762
+ ExtensionRibbonsArray: o([
763
+ {
764
+ json: "requirements",
765
+ js: "requirements",
766
+ typ: u(undefined, r("RequirementsExtensionElement")),
767
+ },
768
+ { json: "contexts", js: "contexts", typ: u(undefined, a(r("ExtensionContext"))) },
769
+ { json: "tabs", js: "tabs", typ: a(r("ExtensionRibbonsArrayTabsItem")) },
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([
782
+ { json: "id", js: "id", typ: "" },
783
+ { json: "type", js: "type", typ: r("FixedControlType") },
784
+ { json: "label", js: "label", typ: "" },
785
+ { json: "icons", js: "icons", typ: a(r("ExtensionCommonIcon")) },
786
+ { json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
787
+ { json: "actionId", js: "actionId", typ: "" },
788
+ { json: "enabled", js: "enabled", typ: true },
789
+ ], false),
790
+ ExtensionRibbonsSpamPreProcessingDialog: o([
791
+ { json: "title", js: "title", typ: "" },
792
+ { json: "description", js: "description", typ: "" },
793
+ { json: "spamNeverShowAgainOption", js: "spamNeverShowAgainOption", typ: u(undefined, true) },
794
+ {
795
+ json: "spamReportingOptions",
796
+ js: "spamReportingOptions",
797
+ typ: u(undefined, r("SpamReportingOptions")),
798
+ },
799
+ { json: "spamFreeTextSectionTitle", js: "spamFreeTextSectionTitle", typ: u(undefined, "") },
800
+ { json: "spamMoreInfo", js: "spamMoreInfo", typ: u(undefined, r("SpamMoreInfo")) },
801
+ ], false),
802
+ SpamMoreInfo: o([
803
+ { json: "text", js: "text", typ: "" },
804
+ { json: "url", js: "url", typ: "" },
805
+ ], "any"),
806
+ SpamReportingOptions: o([
807
+ { json: "title", js: "title", typ: "" },
808
+ { json: "options", js: "options", typ: a("") },
809
+ { json: "type", js: "type", typ: u(undefined, r("SpamReportingOptionsType")) },
810
+ ], "any"),
811
+ ExtensionRibbonsArrayTabsItem: o([
812
+ { json: "id", js: "id", typ: u(undefined, "") },
813
+ { json: "label", js: "label", typ: u(undefined, "") },
814
+ { json: "position", js: "position", typ: u(undefined, r("Position")) },
815
+ { json: "builtInTabId", js: "builtInTabId", typ: u(undefined, "") },
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([
828
+ { json: "id", js: "id", typ: "" },
829
+ { json: "label", js: "label", typ: "" },
830
+ {
831
+ json: "controls",
832
+ js: "controls",
833
+ typ: a(r("ExtensionRibbonsCustomMobileControlButtonItem")),
834
+ },
835
+ ], "any"),
836
+ ExtensionRibbonsCustomMobileControlButtonItem: o([
837
+ { json: "id", js: "id", typ: "" },
838
+ { json: "type", js: "type", typ: r("FluffyType") },
839
+ { json: "label", js: "label", typ: "" },
840
+ { json: "icons", js: "icons", typ: a(r("ExtensionCustomMobileIcon")) },
841
+ { json: "actionId", js: "actionId", typ: "" },
842
+ ], "any"),
843
+ ExtensionCustomMobileIcon: o([
844
+ { json: "size", js: "size", typ: 3.14 },
845
+ { json: "url", js: "url", typ: "" },
846
+ { json: "scale", js: "scale", typ: 3.14 },
847
+ ], false),
848
+ ExtensionRibbonsCustomTabGroupsItem: o([
849
+ { json: "id", js: "id", typ: u(undefined, "") },
850
+ { json: "label", js: "label", typ: u(undefined, "") },
851
+ { json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
852
+ {
853
+ json: "controls",
854
+ js: "controls",
855
+ typ: u(undefined, a(r("ExtensionCommonCustomGroupControlsItem"))),
856
+ },
857
+ { json: "builtInGroupId", js: "builtInGroupId", typ: u(undefined, "") },
858
+ { json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
859
+ ], false),
860
+ Position: o([
861
+ { json: "builtInTabId", js: "builtInTabId", typ: "" },
862
+ { json: "align", js: "align", typ: r("Align") },
863
+ ], false),
864
+ ExtensionRuntimesArray: o([
865
+ {
866
+ json: "requirements",
867
+ js: "requirements",
868
+ typ: u(undefined, r("RequirementsExtensionElement")),
869
+ },
870
+ { json: "id", js: "id", typ: "" },
871
+ { json: "type", js: "type", typ: u(undefined, r("RuntimeType")) },
872
+ { json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
873
+ { json: "lifetime", js: "lifetime", typ: u(undefined, r("Lifetime")) },
874
+ { json: "actions", js: "actions", typ: u(undefined, a(r("ExtensionRuntimesActionsItem"))) },
875
+ {
876
+ json: "customFunctions",
877
+ js: "customFunctions",
878
+ typ: u(undefined, r("ExtensionCustomFunctions")),
879
+ },
880
+ ], false),
881
+ ExtensionRuntimesActionsItem: o([
882
+ { json: "id", js: "id", typ: "" },
883
+ { json: "type", js: "type", typ: r("ActionType") },
884
+ { json: "displayName", js: "displayName", typ: u(undefined, "") },
885
+ { json: "pinnable", js: "pinnable", typ: u(undefined, true) },
886
+ { json: "view", js: "view", typ: u(undefined, "") },
887
+ { json: "multiselect", js: "multiselect", typ: u(undefined, true) },
888
+ { json: "supportsNoItemContext", js: "supportsNoItemContext", typ: u(undefined, true) },
889
+ ], false),
890
+ ExtensionCustomFunctions: o([
891
+ { json: "functions", js: "functions", typ: a(r("ExtensionFunction")) },
892
+ { json: "namespace", js: "namespace", typ: r("ExtensionCustomFunctionsNamespace") },
893
+ {
894
+ json: "allowCustomDataForDataTypeAny",
895
+ js: "allowCustomDataForDataTypeAny",
896
+ typ: u(undefined, true),
897
+ },
898
+ ], "any"),
899
+ ExtensionFunction: o([
900
+ { json: "id", js: "id", typ: "" },
901
+ { json: "name", js: "name", typ: "" },
902
+ { json: "description", js: "description", typ: u(undefined, "") },
903
+ { json: "helpUrl", js: "helpUrl", typ: u(undefined, "") },
904
+ { json: "parameters", js: "parameters", typ: a(r("ExtensionFunctionParameter")) },
905
+ { json: "result", js: "result", typ: r("ExtensionResult") },
906
+ { json: "stream", js: "stream", typ: u(undefined, true) },
907
+ { json: "volatile", js: "volatile", typ: u(undefined, true) },
908
+ { json: "cancelable", js: "cancelable", typ: u(undefined, true) },
909
+ { json: "requiresAddress", js: "requiresAddress", typ: u(undefined, true) },
910
+ { json: "requiresParameterAddress", js: "requiresParameterAddress", typ: u(undefined, true) },
911
+ ], "any"),
912
+ ExtensionFunctionParameter: o([
913
+ { json: "name", js: "name", typ: "" },
914
+ { json: "description", js: "description", typ: u(undefined, "") },
915
+ { json: "type", js: "type", typ: u(undefined, "") },
916
+ { json: "cellValueType", js: "cellValueType", typ: u(undefined, r("CellValueType")) },
917
+ { json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) },
918
+ { json: "optional", js: "optional", typ: u(undefined, u(true, null)) },
919
+ { json: "repeating", js: "repeating", typ: u(undefined, true) },
920
+ ], "any"),
921
+ ExtensionResult: o([{ json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) }], "any"),
922
+ ExtensionCustomFunctionsNamespace: o([
923
+ { json: "id", js: "id", typ: "" },
924
+ { json: "name", js: "name", typ: "" },
925
+ ], "any"),
926
+ GraphConnector: o([{ json: "notificationUrl", js: "notificationUrl", typ: "" }], false),
927
+ Icons: o([
928
+ { json: "outline", js: "outline", typ: "" },
929
+ { json: "color", js: "color", typ: "" },
930
+ { json: "color32x32", js: "color32x32", typ: u(undefined, "") },
931
+ ], false),
932
+ IntuneInfo: o([
933
+ {
934
+ json: "supportedMobileAppManagementVersion",
935
+ js: "supportedMobileAppManagementVersion",
936
+ typ: u(undefined, ""),
937
+ },
938
+ ], false),
939
+ LocalizationInfo: o([
940
+ { json: "defaultLanguageTag", js: "defaultLanguageTag", typ: "" },
941
+ { json: "defaultLanguageFile", js: "defaultLanguageFile", typ: u(undefined, "") },
942
+ {
943
+ json: "additionalLanguages",
944
+ js: "additionalLanguages",
945
+ typ: u(undefined, a(r("AdditionalLanguage"))),
946
+ },
947
+ ], false),
948
+ AdditionalLanguage: o([
949
+ { json: "languageTag", js: "languageTag", typ: "" },
950
+ { json: "file", js: "file", typ: "" },
951
+ ], false),
952
+ MeetingExtensionDefinition: o([
953
+ { json: "scenes", js: "scenes", typ: u(undefined, a(r("Scene"))) },
954
+ {
955
+ json: "supportsCustomShareToStage",
956
+ js: "supportsCustomShareToStage",
957
+ typ: u(undefined, true),
958
+ },
959
+ { json: "supportsStreaming", js: "supportsStreaming", typ: u(undefined, true) },
960
+ {
961
+ json: "supportsAnonymousGuestUsers",
962
+ js: "supportsAnonymousGuestUsers",
963
+ typ: u(undefined, true),
964
+ },
965
+ ], false),
966
+ Scene: o([
967
+ { json: "id", js: "id", typ: "" },
968
+ { json: "name", js: "name", typ: "" },
969
+ { json: "file", js: "file", typ: "" },
970
+ { json: "preview", js: "preview", typ: "" },
971
+ { json: "maxAudience", js: "maxAudience", typ: 0 },
972
+ {
973
+ json: "seatsReservedForOrganizersOrPresenters",
974
+ js: "seatsReservedForOrganizersOrPresenters",
975
+ typ: 0,
976
+ },
977
+ ], false),
978
+ NameClass: o([
979
+ { json: "short", js: "short", typ: "" },
980
+ { json: "full", js: "full", typ: u(undefined, "") },
981
+ ], false),
982
+ StaticTab: o([
983
+ { json: "entityId", js: "entityId", typ: "" },
984
+ { json: "name", js: "name", typ: u(undefined, "") },
985
+ { json: "contentUrl", js: "contentUrl", typ: u(undefined, "") },
986
+ { json: "contentBotId", js: "contentBotId", typ: u(undefined, "") },
987
+ { json: "websiteUrl", js: "websiteUrl", typ: u(undefined, "") },
988
+ { json: "searchUrl", js: "searchUrl", typ: u(undefined, "") },
989
+ { json: "scopes", js: "scopes", typ: a(r("StaticTabScope")) },
990
+ { json: "context", js: "context", typ: u(undefined, a(r("StaticTabContext"))) },
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([
999
+ { json: "id", js: "id", typ: "" },
1000
+ { json: "resource", js: "resource", typ: u(undefined, "") },
1001
+ {
1002
+ json: "nestedAppAuthInfo",
1003
+ js: "nestedAppAuthInfo",
1004
+ typ: u(undefined, a(r("NestedAppAuthInfo"))),
1005
+ },
1006
+ ], false),
1007
+ NestedAppAuthInfo: o([
1008
+ { json: "redirectUri", js: "redirectUri", typ: "" },
1009
+ { json: "scopes", js: "scopes", typ: a("") },
1010
+ { json: "claims", js: "claims", typ: u(undefined, "") },
1011
+ ], false),
1012
+ ResourceSpecificType: ["Application", "Delegated"],
1013
+ CommandListScope: ["copilot", "groupChat", "personal", "team"],
1014
+ Source: ["microsoftCopilotStudio", "onedriveSharepoint", "standard"],
1015
+ HostMustSupportFunctionalityName: [
1016
+ "dialogAdaptiveCard",
1017
+ "dialogAdaptiveCardBot",
1018
+ "dialogUrl",
1019
+ "dialogUrlBot",
1020
+ ],
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: [
1028
+ "accentColor",
1029
+ "developerUrl",
1030
+ "largeImageUrl",
1031
+ "longDescription",
1032
+ "name",
1033
+ "privacyUrl",
1034
+ "shortDescription",
1035
+ "smallImageUrl",
1036
+ "termsOfUseUrl",
1037
+ ],
1038
+ ConfigurableTabContext: [
1039
+ "channelTab",
1040
+ "meetingChatTab",
1041
+ "meetingDetailsTab",
1042
+ "meetingSidePanel",
1043
+ "meetingStage",
1044
+ "personalTab",
1045
+ "privateChatTab",
1046
+ ],
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: [
1064
+ "default",
1065
+ "logEventMeetingDetailsAttendee",
1066
+ "mailCompose",
1067
+ "mailRead",
1068
+ "meetingDetailsAttendee",
1069
+ "meetingDetailsOrganizer",
1070
+ "onlineMeetingDetailsOrganizer",
1071
+ "spamReportingOverride",
1072
+ ],
1073
+ FixedControlType: ["button"],
1074
+ SpamReportingOptionsType: ["checkbox", "radio"],
1075
+ FluffyType: ["mobileButton"],
1076
+ Align: ["after", "before"],
1077
+ ActionType: ["executeFunction", "openPage"],
1078
+ CellValueType: [
1079
+ "booleancellvalue",
1080
+ "cellvalue",
1081
+ "doublecellvalue",
1082
+ "entitycellvalue",
1083
+ "errorcellvalue",
1084
+ "formattednumbercellvalue",
1085
+ "linkedentitycellvalue",
1086
+ "localimagecellvalue",
1087
+ "stringcellvalue",
1088
+ "webimagecellvalue",
1089
+ ],
1090
+ Dimensionality: ["matrix", "scalar"],
1091
+ Lifetime: ["long", "short"],
1092
+ RuntimeType: ["general"],
1093
+ ManifestVersion: ["1.23"],
1094
+ Permission: ["identity", "messageTeamMembers"],
1095
+ StaticTabContext: [
1096
+ "channelTab",
1097
+ "meetingChatTab",
1098
+ "meetingDetailsTab",
1099
+ "meetingSidePanel",
1100
+ "meetingStage",
1101
+ "personalTab",
1102
+ "privateChatTab",
1103
+ "teamLevelApp",
1104
+ ],
1105
+ StaticTabScope: ["groupChat", "personal", "team"],
1106
+ SupportedChannelType: ["privateChannels", "sharedChannels"],
1107
+ };
1108
+ //# sourceMappingURL=TeamsManifestV1D23.js.map