@kodelyth/msteams 2026.5.39

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/api.js ADDED
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/api.js";
2
+ import * as module from "../../../dist/extensions/msteams/api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/channel-config-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/channel-config-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/channel-plugin-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/channel-plugin-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/contract-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/contract-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/index.js";
2
+ import defaultModule from "../../../dist/extensions/msteams/index.js";
3
+ let defaultExport = defaultModule;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,739 @@
1
+ {
2
+ "id": "msteams",
3
+ "activation": {
4
+ "onStartup": false
5
+ },
6
+ "channels": [
7
+ "msteams"
8
+ ],
9
+ "channelEnvVars": {
10
+ "msteams": [
11
+ "MSTEAMS_APP_ID",
12
+ "MSTEAMS_APP_PASSWORD",
13
+ "MSTEAMS_TENANT_ID"
14
+ ]
15
+ },
16
+ "configSchema": {
17
+ "type": "object",
18
+ "additionalProperties": false,
19
+ "properties": {}
20
+ },
21
+ "channelConfigs": {
22
+ "msteams": {
23
+ "schema": {
24
+ "$schema": "http://json-schema.org/draft-07/schema#",
25
+ "type": "object",
26
+ "properties": {
27
+ "enabled": {
28
+ "type": "boolean"
29
+ },
30
+ "capabilities": {
31
+ "type": "array",
32
+ "items": {
33
+ "type": "string"
34
+ }
35
+ },
36
+ "dangerouslyAllowNameMatching": {
37
+ "type": "boolean"
38
+ },
39
+ "markdown": {
40
+ "type": "object",
41
+ "properties": {
42
+ "tables": {
43
+ "type": "string",
44
+ "enum": [
45
+ "off",
46
+ "bullets",
47
+ "code",
48
+ "block"
49
+ ]
50
+ }
51
+ },
52
+ "additionalProperties": false
53
+ },
54
+ "configWrites": {
55
+ "type": "boolean"
56
+ },
57
+ "appId": {
58
+ "type": "string"
59
+ },
60
+ "appPassword": {
61
+ "anyOf": [
62
+ {
63
+ "type": "string"
64
+ },
65
+ {
66
+ "oneOf": [
67
+ {
68
+ "type": "object",
69
+ "properties": {
70
+ "source": {
71
+ "type": "string",
72
+ "const": "env"
73
+ },
74
+ "provider": {
75
+ "type": "string",
76
+ "pattern": "^[a-z][a-z0-9_-]{0,63}$"
77
+ },
78
+ "id": {
79
+ "type": "string",
80
+ "pattern": "^[A-Z][A-Z0-9_]{0,127}$"
81
+ }
82
+ },
83
+ "required": [
84
+ "source",
85
+ "provider",
86
+ "id"
87
+ ],
88
+ "additionalProperties": false
89
+ },
90
+ {
91
+ "type": "object",
92
+ "properties": {
93
+ "source": {
94
+ "type": "string",
95
+ "const": "file"
96
+ },
97
+ "provider": {
98
+ "type": "string",
99
+ "pattern": "^[a-z][a-z0-9_-]{0,63}$"
100
+ },
101
+ "id": {
102
+ "type": "string"
103
+ }
104
+ },
105
+ "required": [
106
+ "source",
107
+ "provider",
108
+ "id"
109
+ ],
110
+ "additionalProperties": false
111
+ },
112
+ {
113
+ "type": "object",
114
+ "properties": {
115
+ "source": {
116
+ "type": "string",
117
+ "const": "exec"
118
+ },
119
+ "provider": {
120
+ "type": "string",
121
+ "pattern": "^[a-z][a-z0-9_-]{0,63}$"
122
+ },
123
+ "id": {
124
+ "type": "string"
125
+ }
126
+ },
127
+ "required": [
128
+ "source",
129
+ "provider",
130
+ "id"
131
+ ],
132
+ "additionalProperties": false
133
+ }
134
+ ]
135
+ }
136
+ ]
137
+ },
138
+ "tenantId": {
139
+ "type": "string"
140
+ },
141
+ "authType": {
142
+ "type": "string",
143
+ "enum": [
144
+ "secret",
145
+ "federated"
146
+ ]
147
+ },
148
+ "certificatePath": {
149
+ "type": "string"
150
+ },
151
+ "certificateThumbprint": {
152
+ "type": "string"
153
+ },
154
+ "useManagedIdentity": {
155
+ "type": "boolean"
156
+ },
157
+ "managedIdentityClientId": {
158
+ "type": "string"
159
+ },
160
+ "webhook": {
161
+ "type": "object",
162
+ "properties": {
163
+ "port": {
164
+ "type": "integer",
165
+ "exclusiveMinimum": 0,
166
+ "maximum": 9007199254740991
167
+ },
168
+ "path": {
169
+ "type": "string"
170
+ }
171
+ },
172
+ "additionalProperties": false
173
+ },
174
+ "dmPolicy": {
175
+ "default": "pairing",
176
+ "type": "string",
177
+ "enum": [
178
+ "pairing",
179
+ "allowlist",
180
+ "open",
181
+ "disabled"
182
+ ]
183
+ },
184
+ "allowFrom": {
185
+ "type": "array",
186
+ "items": {
187
+ "type": "string"
188
+ }
189
+ },
190
+ "defaultTo": {
191
+ "type": "string"
192
+ },
193
+ "groupAllowFrom": {
194
+ "type": "array",
195
+ "items": {
196
+ "type": "string"
197
+ }
198
+ },
199
+ "groupPolicy": {
200
+ "default": "allowlist",
201
+ "type": "string",
202
+ "enum": [
203
+ "open",
204
+ "disabled",
205
+ "allowlist"
206
+ ]
207
+ },
208
+ "contextVisibility": {
209
+ "type": "string",
210
+ "enum": [
211
+ "all",
212
+ "allowlist",
213
+ "allowlist_quote"
214
+ ]
215
+ },
216
+ "textChunkLimit": {
217
+ "type": "integer",
218
+ "exclusiveMinimum": 0,
219
+ "maximum": 9007199254740991
220
+ },
221
+ "chunkMode": {
222
+ "type": "string",
223
+ "enum": [
224
+ "length",
225
+ "newline"
226
+ ]
227
+ },
228
+ "streaming": {
229
+ "type": "object",
230
+ "properties": {
231
+ "mode": {
232
+ "type": "string",
233
+ "enum": [
234
+ "off",
235
+ "partial",
236
+ "block",
237
+ "progress"
238
+ ]
239
+ },
240
+ "chunkMode": {
241
+ "type": "string",
242
+ "enum": [
243
+ "length",
244
+ "newline"
245
+ ]
246
+ },
247
+ "preview": {
248
+ "type": "object",
249
+ "properties": {
250
+ "chunk": {
251
+ "type": "object",
252
+ "properties": {
253
+ "minChars": {
254
+ "type": "integer",
255
+ "exclusiveMinimum": 0,
256
+ "maximum": 9007199254740991
257
+ },
258
+ "maxChars": {
259
+ "type": "integer",
260
+ "exclusiveMinimum": 0,
261
+ "maximum": 9007199254740991
262
+ },
263
+ "breakPreference": {
264
+ "anyOf": [
265
+ {
266
+ "type": "string",
267
+ "const": "paragraph"
268
+ },
269
+ {
270
+ "type": "string",
271
+ "const": "newline"
272
+ },
273
+ {
274
+ "type": "string",
275
+ "const": "sentence"
276
+ }
277
+ ]
278
+ }
279
+ },
280
+ "additionalProperties": false
281
+ },
282
+ "toolProgress": {
283
+ "type": "boolean"
284
+ },
285
+ "commandText": {
286
+ "type": "string",
287
+ "enum": [
288
+ "raw",
289
+ "status"
290
+ ]
291
+ }
292
+ },
293
+ "additionalProperties": false
294
+ },
295
+ "progress": {
296
+ "type": "object",
297
+ "properties": {
298
+ "label": {
299
+ "anyOf": [
300
+ {
301
+ "type": "string"
302
+ },
303
+ {
304
+ "type": "boolean",
305
+ "const": false
306
+ }
307
+ ]
308
+ },
309
+ "labels": {
310
+ "type": "array",
311
+ "items": {
312
+ "type": "string"
313
+ }
314
+ },
315
+ "maxLines": {
316
+ "type": "integer",
317
+ "exclusiveMinimum": 0,
318
+ "maximum": 9007199254740991
319
+ },
320
+ "maxLineChars": {
321
+ "type": "integer",
322
+ "exclusiveMinimum": 0,
323
+ "maximum": 9007199254740991
324
+ },
325
+ "render": {
326
+ "type": "string",
327
+ "enum": [
328
+ "text",
329
+ "rich"
330
+ ]
331
+ },
332
+ "toolProgress": {
333
+ "type": "boolean"
334
+ },
335
+ "commandText": {
336
+ "type": "string",
337
+ "enum": [
338
+ "raw",
339
+ "status"
340
+ ]
341
+ }
342
+ },
343
+ "additionalProperties": false
344
+ },
345
+ "block": {
346
+ "type": "object",
347
+ "properties": {
348
+ "enabled": {
349
+ "type": "boolean"
350
+ },
351
+ "coalesce": {
352
+ "type": "object",
353
+ "properties": {
354
+ "minChars": {
355
+ "type": "integer",
356
+ "exclusiveMinimum": 0,
357
+ "maximum": 9007199254740991
358
+ },
359
+ "maxChars": {
360
+ "type": "integer",
361
+ "exclusiveMinimum": 0,
362
+ "maximum": 9007199254740991
363
+ },
364
+ "idleMs": {
365
+ "type": "integer",
366
+ "minimum": 0,
367
+ "maximum": 9007199254740991
368
+ }
369
+ },
370
+ "additionalProperties": false
371
+ }
372
+ },
373
+ "additionalProperties": false
374
+ }
375
+ },
376
+ "additionalProperties": false
377
+ },
378
+ "typingIndicator": {
379
+ "type": "boolean"
380
+ },
381
+ "blockStreaming": {
382
+ "type": "boolean"
383
+ },
384
+ "blockStreamingCoalesce": {
385
+ "type": "object",
386
+ "properties": {
387
+ "minChars": {
388
+ "type": "integer",
389
+ "exclusiveMinimum": 0,
390
+ "maximum": 9007199254740991
391
+ },
392
+ "maxChars": {
393
+ "type": "integer",
394
+ "exclusiveMinimum": 0,
395
+ "maximum": 9007199254740991
396
+ },
397
+ "idleMs": {
398
+ "type": "integer",
399
+ "minimum": 0,
400
+ "maximum": 9007199254740991
401
+ }
402
+ },
403
+ "additionalProperties": false
404
+ },
405
+ "mediaAllowHosts": {
406
+ "type": "array",
407
+ "items": {
408
+ "type": "string"
409
+ }
410
+ },
411
+ "mediaAuthAllowHosts": {
412
+ "type": "array",
413
+ "items": {
414
+ "type": "string"
415
+ }
416
+ },
417
+ "requireMention": {
418
+ "type": "boolean"
419
+ },
420
+ "historyLimit": {
421
+ "type": "integer",
422
+ "minimum": 0,
423
+ "maximum": 9007199254740991
424
+ },
425
+ "dmHistoryLimit": {
426
+ "type": "integer",
427
+ "minimum": 0,
428
+ "maximum": 9007199254740991
429
+ },
430
+ "dms": {
431
+ "type": "object",
432
+ "propertyNames": {
433
+ "type": "string"
434
+ },
435
+ "additionalProperties": {
436
+ "type": "object",
437
+ "properties": {
438
+ "historyLimit": {
439
+ "type": "integer",
440
+ "minimum": 0,
441
+ "maximum": 9007199254740991
442
+ }
443
+ },
444
+ "additionalProperties": false
445
+ }
446
+ },
447
+ "replyStyle": {
448
+ "type": "string",
449
+ "enum": [
450
+ "thread",
451
+ "top-level"
452
+ ]
453
+ },
454
+ "teams": {
455
+ "type": "object",
456
+ "propertyNames": {
457
+ "type": "string"
458
+ },
459
+ "additionalProperties": {
460
+ "type": "object",
461
+ "properties": {
462
+ "requireMention": {
463
+ "type": "boolean"
464
+ },
465
+ "tools": {
466
+ "type": "object",
467
+ "properties": {
468
+ "allow": {
469
+ "type": "array",
470
+ "items": {
471
+ "type": "string"
472
+ }
473
+ },
474
+ "alsoAllow": {
475
+ "type": "array",
476
+ "items": {
477
+ "type": "string"
478
+ }
479
+ },
480
+ "deny": {
481
+ "type": "array",
482
+ "items": {
483
+ "type": "string"
484
+ }
485
+ }
486
+ },
487
+ "additionalProperties": false
488
+ },
489
+ "toolsBySender": {
490
+ "type": "object",
491
+ "propertyNames": {
492
+ "type": "string"
493
+ },
494
+ "additionalProperties": {
495
+ "type": "object",
496
+ "properties": {
497
+ "allow": {
498
+ "type": "array",
499
+ "items": {
500
+ "type": "string"
501
+ }
502
+ },
503
+ "alsoAllow": {
504
+ "type": "array",
505
+ "items": {
506
+ "type": "string"
507
+ }
508
+ },
509
+ "deny": {
510
+ "type": "array",
511
+ "items": {
512
+ "type": "string"
513
+ }
514
+ }
515
+ },
516
+ "additionalProperties": false
517
+ }
518
+ },
519
+ "replyStyle": {
520
+ "type": "string",
521
+ "enum": [
522
+ "thread",
523
+ "top-level"
524
+ ]
525
+ },
526
+ "channels": {
527
+ "type": "object",
528
+ "propertyNames": {
529
+ "type": "string"
530
+ },
531
+ "additionalProperties": {
532
+ "type": "object",
533
+ "properties": {
534
+ "requireMention": {
535
+ "type": "boolean"
536
+ },
537
+ "tools": {
538
+ "type": "object",
539
+ "properties": {
540
+ "allow": {
541
+ "type": "array",
542
+ "items": {
543
+ "type": "string"
544
+ }
545
+ },
546
+ "alsoAllow": {
547
+ "type": "array",
548
+ "items": {
549
+ "type": "string"
550
+ }
551
+ },
552
+ "deny": {
553
+ "type": "array",
554
+ "items": {
555
+ "type": "string"
556
+ }
557
+ }
558
+ },
559
+ "additionalProperties": false
560
+ },
561
+ "toolsBySender": {
562
+ "type": "object",
563
+ "propertyNames": {
564
+ "type": "string"
565
+ },
566
+ "additionalProperties": {
567
+ "type": "object",
568
+ "properties": {
569
+ "allow": {
570
+ "type": "array",
571
+ "items": {
572
+ "type": "string"
573
+ }
574
+ },
575
+ "alsoAllow": {
576
+ "type": "array",
577
+ "items": {
578
+ "type": "string"
579
+ }
580
+ },
581
+ "deny": {
582
+ "type": "array",
583
+ "items": {
584
+ "type": "string"
585
+ }
586
+ }
587
+ },
588
+ "additionalProperties": false
589
+ }
590
+ },
591
+ "replyStyle": {
592
+ "type": "string",
593
+ "enum": [
594
+ "thread",
595
+ "top-level"
596
+ ]
597
+ }
598
+ },
599
+ "additionalProperties": false
600
+ }
601
+ }
602
+ },
603
+ "additionalProperties": false
604
+ }
605
+ },
606
+ "mediaMaxMb": {
607
+ "type": "number",
608
+ "exclusiveMinimum": 0
609
+ },
610
+ "sharePointSiteId": {
611
+ "type": "string"
612
+ },
613
+ "heartbeat": {
614
+ "type": "object",
615
+ "properties": {
616
+ "showOk": {
617
+ "type": "boolean"
618
+ },
619
+ "showAlerts": {
620
+ "type": "boolean"
621
+ },
622
+ "useIndicator": {
623
+ "type": "boolean"
624
+ }
625
+ },
626
+ "additionalProperties": false
627
+ },
628
+ "healthMonitor": {
629
+ "type": "object",
630
+ "properties": {
631
+ "enabled": {
632
+ "type": "boolean"
633
+ }
634
+ },
635
+ "additionalProperties": false
636
+ },
637
+ "responsePrefix": {
638
+ "type": "string"
639
+ },
640
+ "welcomeCard": {
641
+ "type": "boolean"
642
+ },
643
+ "promptStarters": {
644
+ "type": "array",
645
+ "items": {
646
+ "type": "string"
647
+ }
648
+ },
649
+ "groupWelcomeCard": {
650
+ "type": "boolean"
651
+ },
652
+ "feedbackEnabled": {
653
+ "type": "boolean"
654
+ },
655
+ "feedbackReflection": {
656
+ "type": "boolean"
657
+ },
658
+ "feedbackReflectionCooldownMs": {
659
+ "type": "integer",
660
+ "minimum": 0,
661
+ "maximum": 9007199254740991
662
+ },
663
+ "delegatedAuth": {
664
+ "type": "object",
665
+ "properties": {
666
+ "enabled": {
667
+ "type": "boolean"
668
+ },
669
+ "scopes": {
670
+ "type": "array",
671
+ "items": {
672
+ "type": "string"
673
+ }
674
+ }
675
+ },
676
+ "additionalProperties": false
677
+ },
678
+ "sso": {
679
+ "type": "object",
680
+ "properties": {
681
+ "enabled": {
682
+ "type": "boolean"
683
+ },
684
+ "connectionName": {
685
+ "type": "string"
686
+ }
687
+ },
688
+ "additionalProperties": false
689
+ }
690
+ },
691
+ "required": [
692
+ "dmPolicy",
693
+ "groupPolicy"
694
+ ],
695
+ "additionalProperties": false
696
+ },
697
+ "label": "Microsoft Teams",
698
+ "description": "Teams SDK; enterprise support.",
699
+ "uiHints": {
700
+ "": {
701
+ "label": "MS Teams",
702
+ "help": "Microsoft Teams channel provider configuration and provider-specific policy toggles. Use this section to isolate Teams behavior from other enterprise chat providers."
703
+ },
704
+ "configWrites": {
705
+ "label": "MS Teams Config Writes",
706
+ "help": "Allow Microsoft Teams to write config in response to channel events/commands (default: true)."
707
+ },
708
+ "streaming": {
709
+ "label": "MS Teams Streaming",
710
+ "help": "Microsoft Teams preview/progress streaming mode: \"off\" | \"partial\" | \"block\" | \"progress\". Personal chats use Teams native streaminfo progress when available."
711
+ },
712
+ "streaming.progress.label": {
713
+ "label": "MS Teams Progress Label",
714
+ "help": "Initial progress title. Use \"auto\" for built-in single-word labels, a custom string, or false to hide the title."
715
+ },
716
+ "streaming.progress.labels": {
717
+ "label": "MS Teams Progress Label Pool",
718
+ "help": "Candidate labels for streaming.progress.label=\"auto\". Leave unset to use Klaw built-in progress labels."
719
+ },
720
+ "streaming.progress.maxLines": {
721
+ "label": "MS Teams Progress Max Lines",
722
+ "help": "Maximum number of compact progress lines to keep below the progress title (default: 8)."
723
+ },
724
+ "streaming.progress.maxLineChars": {
725
+ "label": "MS Teams Progress Max Line Chars",
726
+ "help": "Maximum characters per compact progress line before truncation (default: 120). Prose cuts at word boundaries; commands and paths keep useful suffixes."
727
+ },
728
+ "streaming.progress.toolProgress": {
729
+ "label": "MS Teams Progress Tool Lines",
730
+ "help": "Show compact tool/progress lines in progress mode (default: true). Set false to keep only the title until final delivery."
731
+ },
732
+ "streaming.progress.commandText": {
733
+ "label": "MS Teams Progress Command Text",
734
+ "help": "Command/exec detail in progress lines: \"raw\" preserves released behavior; \"status\" shows only the tool label."
735
+ }
736
+ }
737
+ }
738
+ }
739
+ }
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@kodelyth/msteams",
3
+ "version": "2026.5.39",
4
+ "description": "Klaw Microsoft Teams channel plugin",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/kodelyth/klaw"
8
+ },
9
+ "type": "module",
10
+ "dependencies": {
11
+ "@azure/identity": "4.13.1",
12
+ "@microsoft/teams.api": "2.0.11",
13
+ "@microsoft/teams.apps": "2.0.11",
14
+ "express": "5.2.1",
15
+ "jsonwebtoken": "9.0.3",
16
+ "jwks-rsa": "4.0.1",
17
+ "typebox": "1.1.38"
18
+ },
19
+ "devDependencies": {
20
+ "@kodelyth/plugin-sdk": "1.0.1",
21
+ "@types/jsonwebtoken": "9.0.10",
22
+ "@kodelyth/klaw": "2026.5.41"
23
+ },
24
+ "peerDependencies": {
25
+ "@kodelyth/klaw": ">=2026.5.19"
26
+ },
27
+ "peerDependenciesMeta": {
28
+ "@kodelyth/klaw": {
29
+ "optional": true
30
+ }
31
+ },
32
+ "klaw": {
33
+ "extensions": [
34
+ "./index.js"
35
+ ],
36
+ "setupEntry": "./setup-entry.js",
37
+ "channel": {
38
+ "id": "msteams",
39
+ "label": "Microsoft Teams",
40
+ "selectionLabel": "Microsoft Teams (Teams SDK)",
41
+ "docsPath": "/channels/msteams",
42
+ "docsLabel": "msteams",
43
+ "blurb": "Teams SDK; enterprise support.",
44
+ "aliases": [
45
+ "teams"
46
+ ],
47
+ "order": 60,
48
+ "doctorCapabilities": {
49
+ "dmAllowFromMode": "topOnly",
50
+ "groupModel": "hybrid",
51
+ "groupAllowFromFallbackToAllowFrom": true,
52
+ "warnOnEmptyGroupSenderAllowlist": true
53
+ }
54
+ },
55
+ "install": {
56
+ "npmSpec": "@kodelyth/msteams",
57
+ "defaultChoice": "npm",
58
+ "minHostVersion": ">=2026.4.10"
59
+ },
60
+ "compat": {
61
+ "pluginApi": ">=2026.5.39"
62
+ },
63
+ "build": {
64
+ "klawVersion": "2026.5.39"
65
+ },
66
+ "release": {
67
+ "publishToClawHub": true,
68
+ "publishToNpm": true
69
+ }
70
+ }
71
+ }
package/runtime-api.js ADDED
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/runtime-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/runtime-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/secret-contract-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/secret-contract-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
package/setup-entry.js ADDED
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/setup-entry.js";
2
+ import defaultModule from "../../../dist/extensions/msteams/setup-entry.js";
3
+ let defaultExport = defaultModule;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/setup-plugin-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/setup-plugin-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };
package/test-api.js ADDED
@@ -0,0 +1,7 @@
1
+ export * from "../../../dist/extensions/msteams/test-api.js";
2
+ import * as module from "../../../dist/extensions/msteams/test-api.js";
3
+ let defaultExport = "default" in module ? module.default : module;
4
+ for (let index = 0; index < 4 && defaultExport && typeof defaultExport === "object" && "default" in defaultExport; index += 1) {
5
+ defaultExport = defaultExport.default;
6
+ }
7
+ export { defaultExport as default };