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