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