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