@microsoft/app-manifest 1.0.4-alpha.a07b01479.0 → 1.0.4-alpha.b1a8c77d7.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.
- package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.d.ts +69 -6
- package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.js +19 -1
- package/build/generated-types/copilot/declarative-agent/DeclarativeAgentManifestV1D6.js.map +1 -1
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.d.ts +5 -5
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.js +2 -2
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D2.js.map +1 -1
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.d.ts +1 -5
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.js +1 -1
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D3.js.map +1 -1
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.d.ts +527 -0
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.js +320 -0
- package/build/generated-types/copilot/plugin/ApiPluginManifestV2D4.js.map +1 -0
- package/build/generated-types/index.d.ts +7 -4
- package/build/generated-types/index.js +23 -2
- package/build/generated-types/index.js.map +1 -1
- package/build/generated-types/teams/TeamsManifestV1D17.d.ts +1 -1
- package/build/generated-types/teams/TeamsManifestV1D19.d.ts +1 -1
- package/build/generated-types/teams/TeamsManifestV1D20.d.ts +1 -1
- package/build/generated-types/teams/TeamsManifestV1D21.d.ts +1 -1
- package/build/generated-types/teams/TeamsManifestV1D22.d.ts +1 -1
- package/build/generated-types/teams/TeamsManifestV1D23.d.ts +1941 -0
- package/build/generated-types/teams/TeamsManifestV1D23.js +983 -0
- package/build/generated-types/teams/TeamsManifestV1D23.js.map +1 -0
- package/build/generated-types/teams/TeamsManifestV1D24.d.ts +2027 -0
- package/build/generated-types/teams/TeamsManifestV1D24.js +1010 -0
- package/build/generated-types/teams/TeamsManifestV1D24.js.map +1 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,1010 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// To parse this data:
|
|
3
|
+
//
|
|
4
|
+
// import { Convert, TeamsManifestV1D24 } from "./file";
|
|
5
|
+
//
|
|
6
|
+
// const teamsManifestV1D24 = Convert.toTeamsManifestV1D24(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 toTeamsManifestV1D24(json) {
|
|
16
|
+
return cast(JSON.parse(json), r("TeamsManifestV1D24"));
|
|
17
|
+
}
|
|
18
|
+
static teamsManifestV1D24ToJson(value) {
|
|
19
|
+
return JSON.stringify(uncast(value, r("TeamsManifestV1D24")), 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
|
+
"TeamsManifestV1D24": 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("TeamsManifestV1D24Authorization")) },
|
|
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
|
+
"TeamsManifestV1D24Authorization": o([
|
|
224
|
+
{ json: "permissions", js: "permissions", typ: u(undefined, r("Permissions")) },
|
|
225
|
+
], false),
|
|
226
|
+
"Permissions": o([
|
|
227
|
+
{ json: "resourceSpecific", js: "resourceSpecific", typ: u(undefined, a(r("ResourceSpecific"))) },
|
|
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
|
+
{ json: "windowsExtensions", js: "windowsExtensions", typ: u(undefined, r("WindowsExtensions")) },
|
|
457
|
+
], "any"),
|
|
458
|
+
"CustomOfficeAddin": o([
|
|
459
|
+
{ json: "officeAddinId", js: "officeAddinId", typ: "" },
|
|
460
|
+
], false),
|
|
461
|
+
"StoreOfficeAddin": o([
|
|
462
|
+
{ json: "officeAddinId", js: "officeAddinId", typ: "" },
|
|
463
|
+
{ json: "assetId", js: "assetId", typ: "" },
|
|
464
|
+
], false),
|
|
465
|
+
"WindowsExtensions": o([
|
|
466
|
+
{ json: "effect", js: "effect", typ: r("Effect") },
|
|
467
|
+
{ json: "comAddin", js: "comAddin", typ: u(undefined, r("WindowsExtensionsCOMAddin")) },
|
|
468
|
+
{ json: "automationAddin", js: "automationAddin", typ: u(undefined, r("AutomationAddin")) },
|
|
469
|
+
{ json: "xllCustomFunctions", js: "xllCustomFunctions", typ: u(undefined, r("XllCustomFunctions")) },
|
|
470
|
+
], false),
|
|
471
|
+
"AutomationAddin": o([
|
|
472
|
+
{ json: "progIds", js: "progIds", typ: a("") },
|
|
473
|
+
], false),
|
|
474
|
+
"WindowsExtensionsCOMAddin": o([
|
|
475
|
+
{ json: "progIds", js: "progIds", typ: a("") },
|
|
476
|
+
], false),
|
|
477
|
+
"XllCustomFunctions": o([
|
|
478
|
+
{ json: "fileNames", js: "fileNames", typ: a("") },
|
|
479
|
+
], false),
|
|
480
|
+
"Prefer": o([
|
|
481
|
+
{ json: "comAddin", js: "comAddin", typ: u(undefined, r("PreferCOMAddin")) },
|
|
482
|
+
{ json: "xllCustomFunctions", js: "xllCustomFunctions", typ: u(undefined, r("ExtensionXllCustomFunctions")) },
|
|
483
|
+
], "any"),
|
|
484
|
+
"PreferCOMAddin": o([
|
|
485
|
+
{ json: "progId", js: "progId", typ: "" },
|
|
486
|
+
], false),
|
|
487
|
+
"ExtensionXllCustomFunctions": o([
|
|
488
|
+
{ json: "fileName", js: "fileName", typ: u(undefined, "") },
|
|
489
|
+
], "any"),
|
|
490
|
+
"RequirementsExtensionElement": o([
|
|
491
|
+
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
492
|
+
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
493
|
+
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
494
|
+
], false),
|
|
495
|
+
"Capability": o([
|
|
496
|
+
{ json: "name", js: "name", typ: "" },
|
|
497
|
+
{ json: "minVersion", js: "minVersion", typ: u(undefined, "") },
|
|
498
|
+
{ json: "maxVersion", js: "maxVersion", typ: u(undefined, "") },
|
|
499
|
+
], false),
|
|
500
|
+
"ExtensionAutoRunEventsArray": o([
|
|
501
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
|
|
502
|
+
{ json: "events", js: "events", typ: a(r("Event")) },
|
|
503
|
+
], false),
|
|
504
|
+
"Event": o([
|
|
505
|
+
{ json: "type", js: "type", typ: "" },
|
|
506
|
+
{ json: "actionId", js: "actionId", typ: "" },
|
|
507
|
+
{ json: "options", js: "options", typ: u(undefined, r("Options")) },
|
|
508
|
+
], false),
|
|
509
|
+
"Options": o([
|
|
510
|
+
{ json: "sendMode", js: "sendMode", typ: r("SendMode") },
|
|
511
|
+
], false),
|
|
512
|
+
"ExtensionContentRuntimeArray": o([
|
|
513
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("ContentRuntimeRequirements")) },
|
|
514
|
+
{ json: "id", js: "id", typ: "" },
|
|
515
|
+
{ json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
|
|
516
|
+
{ json: "requestedHeight", js: "requestedHeight", typ: u(undefined, 3.14) },
|
|
517
|
+
{ json: "requestedWidth", js: "requestedWidth", typ: u(undefined, 3.14) },
|
|
518
|
+
{ json: "disableSnapshot", js: "disableSnapshot", typ: u(undefined, true) },
|
|
519
|
+
], false),
|
|
520
|
+
"ExtensionRuntimeCode": o([
|
|
521
|
+
{ json: "page", js: "page", typ: "" },
|
|
522
|
+
{ json: "script", js: "script", typ: u(undefined, "") },
|
|
523
|
+
], false),
|
|
524
|
+
"ContentRuntimeRequirements": o([
|
|
525
|
+
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
526
|
+
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
527
|
+
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
528
|
+
], false),
|
|
529
|
+
"ExtensionContextMenuArray": o([
|
|
530
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("ContextMenuRequirements")) },
|
|
531
|
+
{ json: "menus", js: "menus", typ: a(r("ExtensionMenuItem")) },
|
|
532
|
+
], false),
|
|
533
|
+
"ExtensionMenuItem": o([
|
|
534
|
+
{ json: "entryPoint", js: "entryPoint", typ: r("EntryPoint") },
|
|
535
|
+
{ json: "controls", js: "controls", typ: a(r("ExtensionCommonCustomGroupControlsItem")) },
|
|
536
|
+
], false),
|
|
537
|
+
"ExtensionCommonCustomGroupControlsItem": o([
|
|
538
|
+
{ json: "id", js: "id", typ: "" },
|
|
539
|
+
{ json: "type", js: "type", typ: r("PurpleType") },
|
|
540
|
+
{ json: "builtInControlId", js: "builtInControlId", typ: u(undefined, "") },
|
|
541
|
+
{ json: "label", js: "label", typ: "" },
|
|
542
|
+
{ json: "icons", js: "icons", typ: a(r("ExtensionCommonIcon")) },
|
|
543
|
+
{ json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
|
|
544
|
+
{ json: "actionId", js: "actionId", typ: u(undefined, "") },
|
|
545
|
+
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
546
|
+
{ json: "enabled", js: "enabled", typ: u(undefined, true) },
|
|
547
|
+
{ json: "items", js: "items", typ: u(undefined, a(r("ExtensionCommonCustomControlMenuItem"))) },
|
|
548
|
+
], false),
|
|
549
|
+
"ExtensionCommonCustomControlMenuItem": o([
|
|
550
|
+
{ json: "id", js: "id", typ: "" },
|
|
551
|
+
{ json: "type", js: "type", typ: r("ItemType") },
|
|
552
|
+
{ json: "label", js: "label", typ: "" },
|
|
553
|
+
{ json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
|
|
554
|
+
{ json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
|
|
555
|
+
{ json: "actionId", js: "actionId", typ: "" },
|
|
556
|
+
{ json: "enabled", js: "enabled", typ: u(undefined, true) },
|
|
557
|
+
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
558
|
+
], false),
|
|
559
|
+
"ExtensionCommonSuperToolTip": o([
|
|
560
|
+
{ json: "title", js: "title", typ: "" },
|
|
561
|
+
{ json: "description", js: "description", typ: "" },
|
|
562
|
+
], false),
|
|
563
|
+
"ContextMenuRequirements": 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
|
+
"ExtensionGetStartedMessageArray": o([
|
|
569
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("GetStartedMessageRequirements")) },
|
|
570
|
+
{ json: "title", js: "title", typ: "" },
|
|
571
|
+
{ json: "description", js: "description", typ: "" },
|
|
572
|
+
{ json: "learnMoreUrl", js: "learnMoreUrl", typ: "" },
|
|
573
|
+
], false),
|
|
574
|
+
"GetStartedMessageRequirements": o([
|
|
575
|
+
{ json: "capabilities", js: "capabilities", typ: u(undefined, a(r("Capability"))) },
|
|
576
|
+
{ json: "scopes", js: "scopes", typ: u(undefined, a(r("RequirementsScope"))) },
|
|
577
|
+
{ json: "formFactors", js: "formFactors", typ: u(undefined, a(r("FormFactor"))) },
|
|
578
|
+
], false),
|
|
579
|
+
"ExtensionKeyboardShortcut": o([
|
|
580
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
|
|
581
|
+
{ json: "shortcuts", js: "shortcuts", typ: u(undefined, a(r("ExtensionShortcut"))) },
|
|
582
|
+
{ json: "keyMappingFiles", js: "keyMappingFiles", typ: u(undefined, r("KeyboardShortcutsMappingFiles")) },
|
|
583
|
+
], "any"),
|
|
584
|
+
"KeyboardShortcutsMappingFiles": o([
|
|
585
|
+
{ json: "shortcutsUrl", js: "shortcutsUrl", typ: "" },
|
|
586
|
+
{ json: "localizationResourceUrl", js: "localizationResourceUrl", typ: u(undefined, "") },
|
|
587
|
+
], false),
|
|
588
|
+
"ExtensionShortcut": o([
|
|
589
|
+
{ json: "key", js: "key", typ: r("Key") },
|
|
590
|
+
{ json: "actionId", js: "actionId", typ: "" },
|
|
591
|
+
], "any"),
|
|
592
|
+
"Key": o([
|
|
593
|
+
{ json: "default", js: "default", typ: "" },
|
|
594
|
+
{ json: "mac", js: "mac", typ: u(undefined, "") },
|
|
595
|
+
{ json: "web", js: "web", typ: u(undefined, "") },
|
|
596
|
+
{ json: "windows", js: "windows", typ: u(undefined, "") },
|
|
597
|
+
], "any"),
|
|
598
|
+
"ExtensionRibbonsArray": o([
|
|
599
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
|
|
600
|
+
{ json: "contexts", js: "contexts", typ: u(undefined, a(r("ExtensionContext"))) },
|
|
601
|
+
{ json: "tabs", js: "tabs", typ: a(r("ExtensionRibbonsArrayTabsItem")) },
|
|
602
|
+
{ json: "fixedControls", js: "fixedControls", typ: u(undefined, a(r("ExtensionRibbonsArrayFixedControlItem"))) },
|
|
603
|
+
{ json: "spamPreProcessingDialog", js: "spamPreProcessingDialog", typ: u(undefined, r("ExtensionRibbonsSpamPreProcessingDialog")) },
|
|
604
|
+
], false),
|
|
605
|
+
"ExtensionRibbonsArrayFixedControlItem": o([
|
|
606
|
+
{ json: "id", js: "id", typ: "" },
|
|
607
|
+
{ json: "type", js: "type", typ: r("FixedControlType") },
|
|
608
|
+
{ json: "label", js: "label", typ: "" },
|
|
609
|
+
{ json: "icons", js: "icons", typ: a(r("ExtensionCommonIcon")) },
|
|
610
|
+
{ json: "supertip", js: "supertip", typ: r("ExtensionCommonSuperToolTip") },
|
|
611
|
+
{ json: "actionId", js: "actionId", typ: "" },
|
|
612
|
+
{ json: "enabled", js: "enabled", typ: true },
|
|
613
|
+
], false),
|
|
614
|
+
"ExtensionRibbonsSpamPreProcessingDialog": o([
|
|
615
|
+
{ json: "title", js: "title", typ: "" },
|
|
616
|
+
{ json: "description", js: "description", typ: "" },
|
|
617
|
+
{ json: "spamNeverShowAgainOption", js: "spamNeverShowAgainOption", typ: u(undefined, true) },
|
|
618
|
+
{ json: "spamReportingOptions", js: "spamReportingOptions", typ: u(undefined, r("SpamReportingOptions")) },
|
|
619
|
+
{ json: "spamFreeTextSectionTitle", js: "spamFreeTextSectionTitle", typ: u(undefined, "") },
|
|
620
|
+
{ json: "spamMoreInfo", js: "spamMoreInfo", typ: u(undefined, r("SpamMoreInfo")) },
|
|
621
|
+
], false),
|
|
622
|
+
"SpamMoreInfo": o([
|
|
623
|
+
{ json: "text", js: "text", typ: "" },
|
|
624
|
+
{ json: "url", js: "url", typ: "" },
|
|
625
|
+
], "any"),
|
|
626
|
+
"SpamReportingOptions": o([
|
|
627
|
+
{ json: "title", js: "title", typ: "" },
|
|
628
|
+
{ json: "options", js: "options", typ: a("") },
|
|
629
|
+
{ json: "type", js: "type", typ: u(undefined, r("SpamReportingOptionsType")) },
|
|
630
|
+
], "any"),
|
|
631
|
+
"ExtensionRibbonsArrayTabsItem": o([
|
|
632
|
+
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
633
|
+
{ json: "label", js: "label", typ: u(undefined, "") },
|
|
634
|
+
{ json: "position", js: "position", typ: u(undefined, r("Position")) },
|
|
635
|
+
{ json: "builtInTabId", js: "builtInTabId", typ: u(undefined, "") },
|
|
636
|
+
{ json: "groups", js: "groups", typ: u(undefined, a(r("ExtensionRibbonsCustomTabGroupsItem"))) },
|
|
637
|
+
{ json: "customMobileRibbonGroups", js: "customMobileRibbonGroups", typ: u(undefined, a(r("ExtensionRibbonsCustomMobileGroupItem"))) },
|
|
638
|
+
], false),
|
|
639
|
+
"ExtensionRibbonsCustomMobileGroupItem": o([
|
|
640
|
+
{ json: "id", js: "id", typ: "" },
|
|
641
|
+
{ json: "label", js: "label", typ: "" },
|
|
642
|
+
{ json: "controls", js: "controls", typ: a(r("ExtensionRibbonsCustomMobileControlButtonItem")) },
|
|
643
|
+
], "any"),
|
|
644
|
+
"ExtensionRibbonsCustomMobileControlButtonItem": o([
|
|
645
|
+
{ json: "id", js: "id", typ: "" },
|
|
646
|
+
{ json: "type", js: "type", typ: r("FluffyType") },
|
|
647
|
+
{ json: "label", js: "label", typ: "" },
|
|
648
|
+
{ json: "icons", js: "icons", typ: a(r("ExtensionCustomMobileIcon")) },
|
|
649
|
+
{ json: "actionId", js: "actionId", typ: "" },
|
|
650
|
+
], "any"),
|
|
651
|
+
"ExtensionCustomMobileIcon": o([
|
|
652
|
+
{ json: "size", js: "size", typ: 3.14 },
|
|
653
|
+
{ json: "url", js: "url", typ: "" },
|
|
654
|
+
{ json: "scale", js: "scale", typ: 3.14 },
|
|
655
|
+
], false),
|
|
656
|
+
"ExtensionRibbonsCustomTabGroupsItem": o([
|
|
657
|
+
{ json: "id", js: "id", typ: u(undefined, "") },
|
|
658
|
+
{ json: "label", js: "label", typ: u(undefined, "") },
|
|
659
|
+
{ json: "icons", js: "icons", typ: u(undefined, a(r("ExtensionCommonIcon"))) },
|
|
660
|
+
{ json: "controls", js: "controls", typ: u(undefined, a(r("ExtensionCommonCustomGroupControlsItem"))) },
|
|
661
|
+
{ json: "builtInGroupId", js: "builtInGroupId", typ: u(undefined, "") },
|
|
662
|
+
{ json: "overriddenByRibbonApi", js: "overriddenByRibbonApi", typ: u(undefined, true) },
|
|
663
|
+
], false),
|
|
664
|
+
"Position": o([
|
|
665
|
+
{ json: "builtInTabId", js: "builtInTabId", typ: "" },
|
|
666
|
+
{ json: "align", js: "align", typ: r("Align") },
|
|
667
|
+
], false),
|
|
668
|
+
"ExtensionRuntimesArray": o([
|
|
669
|
+
{ json: "requirements", js: "requirements", typ: u(undefined, r("RequirementsExtensionElement")) },
|
|
670
|
+
{ json: "id", js: "id", typ: "" },
|
|
671
|
+
{ json: "type", js: "type", typ: u(undefined, r("RuntimeType")) },
|
|
672
|
+
{ json: "code", js: "code", typ: r("ExtensionRuntimeCode") },
|
|
673
|
+
{ json: "lifetime", js: "lifetime", typ: u(undefined, r("Lifetime")) },
|
|
674
|
+
{ json: "actions", js: "actions", typ: u(undefined, a(r("ExtensionRuntimesActionsItem"))) },
|
|
675
|
+
{ json: "customFunctions", js: "customFunctions", typ: u(undefined, r("ExtensionCustomFunctions")) },
|
|
676
|
+
], false),
|
|
677
|
+
"ExtensionRuntimesActionsItem": o([
|
|
678
|
+
{ json: "id", js: "id", typ: "" },
|
|
679
|
+
{ json: "type", js: "type", typ: r("ActionType") },
|
|
680
|
+
{ json: "displayName", js: "displayName", typ: u(undefined, "") },
|
|
681
|
+
{ json: "pinnable", js: "pinnable", typ: u(undefined, true) },
|
|
682
|
+
{ json: "view", js: "view", typ: u(undefined, "") },
|
|
683
|
+
{ json: "multiselect", js: "multiselect", typ: u(undefined, true) },
|
|
684
|
+
{ json: "supportsNoItemContext", js: "supportsNoItemContext", typ: u(undefined, true) },
|
|
685
|
+
], false),
|
|
686
|
+
"ExtensionCustomFunctions": o([
|
|
687
|
+
{ json: "functions", js: "functions", typ: u(undefined, a(r("ExtensionFunction"))) },
|
|
688
|
+
{ json: "namespace", js: "namespace", typ: u(undefined, r("ExtensionCustomFunctionsNamespace")) },
|
|
689
|
+
{ json: "allowCustomDataForDataTypeAny", js: "allowCustomDataForDataTypeAny", typ: u(undefined, true) },
|
|
690
|
+
{ json: "metadataUrl", js: "metadataUrl", typ: u(undefined, "") },
|
|
691
|
+
], false),
|
|
692
|
+
"ExtensionFunction": o([
|
|
693
|
+
{ json: "id", js: "id", typ: "" },
|
|
694
|
+
{ json: "name", js: "name", typ: "" },
|
|
695
|
+
{ json: "description", js: "description", typ: u(undefined, "") },
|
|
696
|
+
{ json: "helpUrl", js: "helpUrl", typ: u(undefined, "") },
|
|
697
|
+
{ json: "parameters", js: "parameters", typ: a(r("ExtensionFunctionParameter")) },
|
|
698
|
+
{ json: "result", js: "result", typ: r("ExtensionResult") },
|
|
699
|
+
{ json: "stream", js: "stream", typ: u(undefined, true) },
|
|
700
|
+
{ json: "volatile", js: "volatile", typ: u(undefined, true) },
|
|
701
|
+
{ json: "cancelable", js: "cancelable", typ: u(undefined, true) },
|
|
702
|
+
{ json: "requiresAddress", js: "requiresAddress", typ: u(undefined, true) },
|
|
703
|
+
{ json: "requiresParameterAddress", js: "requiresParameterAddress", typ: u(undefined, true) },
|
|
704
|
+
], "any"),
|
|
705
|
+
"ExtensionFunctionParameter": o([
|
|
706
|
+
{ json: "name", js: "name", typ: "" },
|
|
707
|
+
{ json: "description", js: "description", typ: u(undefined, "") },
|
|
708
|
+
{ json: "type", js: "type", typ: u(undefined, "") },
|
|
709
|
+
{ json: "cellValueType", js: "cellValueType", typ: u(undefined, r("CellValueType")) },
|
|
710
|
+
{ json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) },
|
|
711
|
+
{ json: "optional", js: "optional", typ: u(undefined, u(true, null)) },
|
|
712
|
+
{ json: "repeating", js: "repeating", typ: u(undefined, true) },
|
|
713
|
+
], "any"),
|
|
714
|
+
"ExtensionResult": o([
|
|
715
|
+
{ json: "dimensionality", js: "dimensionality", typ: u(undefined, r("Dimensionality")) },
|
|
716
|
+
], "any"),
|
|
717
|
+
"ExtensionCustomFunctionsNamespace": o([
|
|
718
|
+
{ json: "id", js: "id", typ: "" },
|
|
719
|
+
{ json: "name", js: "name", typ: "" },
|
|
720
|
+
], "any"),
|
|
721
|
+
"GraphConnector": o([
|
|
722
|
+
{ json: "notificationUrl", js: "notificationUrl", typ: "" },
|
|
723
|
+
], false),
|
|
724
|
+
"Icons": o([
|
|
725
|
+
{ json: "outline", js: "outline", typ: "" },
|
|
726
|
+
{ json: "color", js: "color", typ: "" },
|
|
727
|
+
{ json: "color32x32", js: "color32x32", typ: u(undefined, "") },
|
|
728
|
+
], false),
|
|
729
|
+
"IntuneInfo": o([
|
|
730
|
+
{ json: "supportedMobileAppManagementVersion", js: "supportedMobileAppManagementVersion", typ: u(undefined, "") },
|
|
731
|
+
], false),
|
|
732
|
+
"LocalizationInfo": o([
|
|
733
|
+
{ json: "defaultLanguageTag", js: "defaultLanguageTag", typ: "" },
|
|
734
|
+
{ json: "defaultLanguageFile", js: "defaultLanguageFile", typ: u(undefined, "") },
|
|
735
|
+
{ json: "additionalLanguages", js: "additionalLanguages", typ: u(undefined, a(r("AdditionalLanguage"))) },
|
|
736
|
+
], false),
|
|
737
|
+
"AdditionalLanguage": o([
|
|
738
|
+
{ json: "languageTag", js: "languageTag", typ: "" },
|
|
739
|
+
{ json: "file", js: "file", typ: "" },
|
|
740
|
+
], false),
|
|
741
|
+
"MeetingExtensionDefinition": o([
|
|
742
|
+
{ json: "scenes", js: "scenes", typ: u(undefined, a(r("Scene"))) },
|
|
743
|
+
{ json: "supportsCustomShareToStage", js: "supportsCustomShareToStage", typ: u(undefined, true) },
|
|
744
|
+
{ json: "supportsStreaming", js: "supportsStreaming", typ: u(undefined, true) },
|
|
745
|
+
{ json: "supportsAnonymousGuestUsers", js: "supportsAnonymousGuestUsers", typ: u(undefined, true) },
|
|
746
|
+
], false),
|
|
747
|
+
"Scene": o([
|
|
748
|
+
{ json: "id", js: "id", typ: "" },
|
|
749
|
+
{ json: "name", js: "name", typ: "" },
|
|
750
|
+
{ json: "file", js: "file", typ: "" },
|
|
751
|
+
{ json: "preview", js: "preview", typ: "" },
|
|
752
|
+
{ json: "maxAudience", js: "maxAudience", typ: 0 },
|
|
753
|
+
{ json: "seatsReservedForOrganizersOrPresenters", js: "seatsReservedForOrganizersOrPresenters", typ: 0 },
|
|
754
|
+
], false),
|
|
755
|
+
"NameClass": o([
|
|
756
|
+
{ json: "short", js: "short", typ: "" },
|
|
757
|
+
{ json: "full", js: "full", typ: u(undefined, "") },
|
|
758
|
+
], false),
|
|
759
|
+
"StaticTab": o([
|
|
760
|
+
{ json: "entityId", js: "entityId", typ: "" },
|
|
761
|
+
{ json: "name", js: "name", typ: u(undefined, "") },
|
|
762
|
+
{ json: "contentUrl", js: "contentUrl", typ: u(undefined, "") },
|
|
763
|
+
{ json: "contentBotId", js: "contentBotId", typ: u(undefined, "") },
|
|
764
|
+
{ json: "websiteUrl", js: "websiteUrl", typ: u(undefined, "") },
|
|
765
|
+
{ json: "searchUrl", js: "searchUrl", typ: u(undefined, "") },
|
|
766
|
+
{ json: "scopes", js: "scopes", typ: a(r("StaticTabScope")) },
|
|
767
|
+
{ json: "context", js: "context", typ: u(undefined, a(r("StaticTabContext"))) },
|
|
768
|
+
{ json: "requirementSet", js: "requirementSet", typ: u(undefined, r("ElementRequirementSet")) },
|
|
769
|
+
], false),
|
|
770
|
+
"SubscriptionOffer": o([
|
|
771
|
+
{ json: "offerId", js: "offerId", typ: "" },
|
|
772
|
+
], false),
|
|
773
|
+
"WebApplicationInfo": o([
|
|
774
|
+
{ json: "id", js: "id", typ: "" },
|
|
775
|
+
{ json: "resource", js: "resource", typ: u(undefined, "") },
|
|
776
|
+
{ json: "nestedAppAuthInfo", js: "nestedAppAuthInfo", typ: u(undefined, a(r("NestedAppAuthInfo"))) },
|
|
777
|
+
], false),
|
|
778
|
+
"NestedAppAuthInfo": o([
|
|
779
|
+
{ json: "redirectUri", js: "redirectUri", typ: "" },
|
|
780
|
+
{ json: "scopes", js: "scopes", typ: a("") },
|
|
781
|
+
{ json: "claims", js: "claims", typ: u(undefined, "") },
|
|
782
|
+
], false),
|
|
783
|
+
"ResourceSpecificType": [
|
|
784
|
+
"Application",
|
|
785
|
+
"Delegated",
|
|
786
|
+
],
|
|
787
|
+
"CommandListScope": [
|
|
788
|
+
"copilot",
|
|
789
|
+
"groupChat",
|
|
790
|
+
"personal",
|
|
791
|
+
"team",
|
|
792
|
+
],
|
|
793
|
+
"Source": [
|
|
794
|
+
"microsoftCopilotStudio",
|
|
795
|
+
"onedriveSharepoint",
|
|
796
|
+
"standard",
|
|
797
|
+
],
|
|
798
|
+
"HostMustSupportFunctionalityName": [
|
|
799
|
+
"dialogAdaptiveCard",
|
|
800
|
+
"dialogAdaptiveCardBot",
|
|
801
|
+
"dialogUrl",
|
|
802
|
+
"dialogUrlBot",
|
|
803
|
+
],
|
|
804
|
+
"AuthType": [
|
|
805
|
+
"apiSecretServiceAuth",
|
|
806
|
+
"microsoftEntra",
|
|
807
|
+
"none",
|
|
808
|
+
],
|
|
809
|
+
"CommandContext": [
|
|
810
|
+
"commandBox",
|
|
811
|
+
"compose",
|
|
812
|
+
"message",
|
|
813
|
+
],
|
|
814
|
+
"InputType": [
|
|
815
|
+
"choiceset",
|
|
816
|
+
"date",
|
|
817
|
+
"number",
|
|
818
|
+
"text",
|
|
819
|
+
"textarea",
|
|
820
|
+
"time",
|
|
821
|
+
"toggle",
|
|
822
|
+
],
|
|
823
|
+
"CommandType": [
|
|
824
|
+
"action",
|
|
825
|
+
"query",
|
|
826
|
+
],
|
|
827
|
+
"ComposeExtensionType": [
|
|
828
|
+
"apiBased",
|
|
829
|
+
"botBased",
|
|
830
|
+
],
|
|
831
|
+
"MessageHandlerType": [
|
|
832
|
+
"link",
|
|
833
|
+
],
|
|
834
|
+
"ConfigurableProperty": [
|
|
835
|
+
"accentColor",
|
|
836
|
+
"developerUrl",
|
|
837
|
+
"largeImageUrl",
|
|
838
|
+
"longDescription",
|
|
839
|
+
"name",
|
|
840
|
+
"privacyUrl",
|
|
841
|
+
"shortDescription",
|
|
842
|
+
"smallImageUrl",
|
|
843
|
+
"termsOfUseUrl",
|
|
844
|
+
],
|
|
845
|
+
"ConfigurableTabContext": [
|
|
846
|
+
"channelTab",
|
|
847
|
+
"meetingChatTab",
|
|
848
|
+
"meetingDetailsTab",
|
|
849
|
+
"meetingSidePanel",
|
|
850
|
+
"meetingStage",
|
|
851
|
+
"personalTab",
|
|
852
|
+
"privateChatTab",
|
|
853
|
+
],
|
|
854
|
+
"MeetingSurface": [
|
|
855
|
+
"sidePanel",
|
|
856
|
+
"stage",
|
|
857
|
+
],
|
|
858
|
+
"ConfigurableTabScope": [
|
|
859
|
+
"groupChat",
|
|
860
|
+
"team",
|
|
861
|
+
],
|
|
862
|
+
"SupportedSharePointHost": [
|
|
863
|
+
"sharePointFullPage",
|
|
864
|
+
"sharePointWebPart",
|
|
865
|
+
],
|
|
866
|
+
"ConnectorScope": [
|
|
867
|
+
"team",
|
|
868
|
+
],
|
|
869
|
+
"SourceTypeEnum": [
|
|
870
|
+
"bot",
|
|
871
|
+
],
|
|
872
|
+
"DefaultSize": [
|
|
873
|
+
"large",
|
|
874
|
+
"medium",
|
|
875
|
+
],
|
|
876
|
+
"Groupchat": [
|
|
877
|
+
"bot",
|
|
878
|
+
"connector",
|
|
879
|
+
"tab",
|
|
880
|
+
],
|
|
881
|
+
"DefaultInstallScope": [
|
|
882
|
+
"copilot",
|
|
883
|
+
"groupChat",
|
|
884
|
+
"meetings",
|
|
885
|
+
"personal",
|
|
886
|
+
"team",
|
|
887
|
+
],
|
|
888
|
+
"DevicePermission": [
|
|
889
|
+
"geolocation",
|
|
890
|
+
"midi",
|
|
891
|
+
"media",
|
|
892
|
+
"notifications",
|
|
893
|
+
"openExternal",
|
|
894
|
+
],
|
|
895
|
+
"MutualDependencyName": [
|
|
896
|
+
"bots",
|
|
897
|
+
"composeExtensions",
|
|
898
|
+
"configurableTabs",
|
|
899
|
+
"staticTabs",
|
|
900
|
+
],
|
|
901
|
+
"Effect": [
|
|
902
|
+
"disableWithNotification",
|
|
903
|
+
"userOptionToDisable",
|
|
904
|
+
],
|
|
905
|
+
"FormFactor": [
|
|
906
|
+
"desktop",
|
|
907
|
+
"mobile",
|
|
908
|
+
],
|
|
909
|
+
"RequirementsScope": [
|
|
910
|
+
"document",
|
|
911
|
+
"mail",
|
|
912
|
+
"presentation",
|
|
913
|
+
"workbook",
|
|
914
|
+
],
|
|
915
|
+
"SendMode": [
|
|
916
|
+
"block",
|
|
917
|
+
"promptUser",
|
|
918
|
+
"softBlock",
|
|
919
|
+
],
|
|
920
|
+
"ItemType": [
|
|
921
|
+
"menuItem",
|
|
922
|
+
],
|
|
923
|
+
"PurpleType": [
|
|
924
|
+
"button",
|
|
925
|
+
"menu",
|
|
926
|
+
],
|
|
927
|
+
"EntryPoint": [
|
|
928
|
+
"cell",
|
|
929
|
+
"text",
|
|
930
|
+
],
|
|
931
|
+
"ExtensionContext": [
|
|
932
|
+
"default",
|
|
933
|
+
"logEventMeetingDetailsAttendee",
|
|
934
|
+
"mailCompose",
|
|
935
|
+
"mailRead",
|
|
936
|
+
"meetingDetailsAttendee",
|
|
937
|
+
"meetingDetailsOrganizer",
|
|
938
|
+
"onlineMeetingDetailsOrganizer",
|
|
939
|
+
"spamReportingOverride",
|
|
940
|
+
],
|
|
941
|
+
"FixedControlType": [
|
|
942
|
+
"button",
|
|
943
|
+
],
|
|
944
|
+
"SpamReportingOptionsType": [
|
|
945
|
+
"checkbox",
|
|
946
|
+
"radio",
|
|
947
|
+
],
|
|
948
|
+
"FluffyType": [
|
|
949
|
+
"mobileButton",
|
|
950
|
+
],
|
|
951
|
+
"Align": [
|
|
952
|
+
"after",
|
|
953
|
+
"before",
|
|
954
|
+
],
|
|
955
|
+
"ActionType": [
|
|
956
|
+
"executeDataFunction",
|
|
957
|
+
"executeFunction",
|
|
958
|
+
"openPage",
|
|
959
|
+
],
|
|
960
|
+
"CellValueType": [
|
|
961
|
+
"booleancellvalue",
|
|
962
|
+
"cellvalue",
|
|
963
|
+
"doublecellvalue",
|
|
964
|
+
"entitycellvalue",
|
|
965
|
+
"errorcellvalue",
|
|
966
|
+
"formattednumbercellvalue",
|
|
967
|
+
"linkedentitycellvalue",
|
|
968
|
+
"localimagecellvalue",
|
|
969
|
+
"stringcellvalue",
|
|
970
|
+
"webimagecellvalue",
|
|
971
|
+
],
|
|
972
|
+
"Dimensionality": [
|
|
973
|
+
"matrix",
|
|
974
|
+
"scalar",
|
|
975
|
+
],
|
|
976
|
+
"Lifetime": [
|
|
977
|
+
"long",
|
|
978
|
+
"short",
|
|
979
|
+
],
|
|
980
|
+
"RuntimeType": [
|
|
981
|
+
"general",
|
|
982
|
+
],
|
|
983
|
+
"ManifestVersion": [
|
|
984
|
+
"1.24",
|
|
985
|
+
],
|
|
986
|
+
"Permission": [
|
|
987
|
+
"identity",
|
|
988
|
+
"messageTeamMembers",
|
|
989
|
+
],
|
|
990
|
+
"StaticTabContext": [
|
|
991
|
+
"channelTab",
|
|
992
|
+
"meetingChatTab",
|
|
993
|
+
"meetingDetailsTab",
|
|
994
|
+
"meetingSidePanel",
|
|
995
|
+
"meetingStage",
|
|
996
|
+
"personalTab",
|
|
997
|
+
"privateChatTab",
|
|
998
|
+
"teamLevelApp",
|
|
999
|
+
],
|
|
1000
|
+
"StaticTabScope": [
|
|
1001
|
+
"groupChat",
|
|
1002
|
+
"personal",
|
|
1003
|
+
"team",
|
|
1004
|
+
],
|
|
1005
|
+
"SupportedChannelType": [
|
|
1006
|
+
"privateChannels",
|
|
1007
|
+
"sharedChannels",
|
|
1008
|
+
],
|
|
1009
|
+
};
|
|
1010
|
+
//# sourceMappingURL=TeamsManifestV1D24.js.map
|