@snokam/mcp-api 1.21.0 → 2.0.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 (41) hide show
  1. package/dist/auth.d.ts +0 -15
  2. package/dist/auth.js +15 -59
  3. package/dist/builtin-tools.d.ts +109 -0
  4. package/dist/builtin-tools.js +200 -0
  5. package/dist/execute-call.d.ts +5 -0
  6. package/dist/execute-call.js +45 -0
  7. package/dist/index.d.ts +0 -7
  8. package/dist/index.js +7 -312
  9. package/dist/openapi-loader.d.ts +1 -14
  10. package/dist/openapi-loader.js +8 -49
  11. package/dist/state.d.ts +13 -0
  12. package/dist/state.js +54 -0
  13. package/dist/tool-schema.d.ts +2 -0
  14. package/dist/tool-schema.js +42 -0
  15. package/package.json +3 -3
  16. package/specs/production/accounting.json +2629 -1754
  17. package/specs/production/blog.json +1608 -1
  18. package/specs/production/broker.json +52 -24
  19. package/specs/production/chatgpt.json +299 -17
  20. package/specs/production/employees.json +2979 -299
  21. package/specs/production/events.json +366 -52
  22. package/specs/production/notifications.json +390 -13
  23. package/specs/production/office.json +818 -836
  24. package/specs/production/recruitment.json +3635 -1
  25. package/specs/production/sales.json +5088 -393
  26. package/specs/production/sanity.json +29008 -15539
  27. package/specs/production/sync.json +116 -20
  28. package/specs/production/webshop.json +38 -18
  29. package/specs/test/accounting.json +2629 -1754
  30. package/specs/test/blog.json +1608 -1
  31. package/specs/test/broker.json +52 -24
  32. package/specs/test/chatgpt.json +299 -17
  33. package/specs/test/employees.json +2979 -299
  34. package/specs/test/events.json +366 -52
  35. package/specs/test/notifications.json +390 -13
  36. package/specs/test/office.json +818 -836
  37. package/specs/test/recruitment.json +3635 -1
  38. package/specs/test/sales.json +5088 -393
  39. package/specs/test/sanity.json +29008 -15539
  40. package/specs/test/sync.json +116 -20
  41. package/specs/test/webshop.json +38 -18
@@ -97,6 +97,15 @@
97
97
  "type": "string"
98
98
  },
99
99
  "x-ms-summary": "The slug or id of the event"
100
+ },
101
+ {
102
+ "name": "token",
103
+ "in": "query",
104
+ "description": "Guest participation token; grants read access to a non-public event",
105
+ "schema": {
106
+ "type": "string"
107
+ },
108
+ "x-ms-summary": "Participant token"
100
109
  }
101
110
  ],
102
111
  "responses": {
@@ -279,35 +288,12 @@
279
288
  "security": [
280
289
  {
281
290
  "Implicit": [
282
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
291
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
283
292
  ]
284
293
  }
285
294
  ]
286
295
  }
287
296
  },
288
- "/v1.0/public/instagram/feed": {
289
- "get": {
290
- "tags": [
291
- "Instagram"
292
- ],
293
- "summary": "Gets Instagram feed",
294
- "description": "Retrieves the public Instagram feed (media posts). Cached for 1 hour.",
295
- "operationId": "GetPublicInstagramFeed",
296
- "responses": {
297
- "200": {
298
- "description": "Instagram feed retrieved successfully",
299
- "content": {
300
- "application/json": {
301
- "schema": {
302
- "$ref": "#/components/schemas/instagramFeedResponse"
303
- }
304
- }
305
- },
306
- "x-ms-summary": "Success"
307
- }
308
- }
309
- }
310
- },
311
297
  "/v1.0/public/{eventId}/memories": {
312
298
  "post": {
313
299
  "tags": [
@@ -351,7 +337,7 @@
351
337
  "security": [
352
338
  {
353
339
  "Implicit": [
354
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
340
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
355
341
  ]
356
342
  }
357
343
  ]
@@ -475,6 +461,29 @@
475
461
  }
476
462
  }
477
463
  },
464
+ "/v1.0/public/instagram/feed": {
465
+ "get": {
466
+ "tags": [
467
+ "Instagram"
468
+ ],
469
+ "summary": "Gets Instagram feed",
470
+ "description": "Retrieves the public Instagram feed (media posts). Cached for 1 hour.",
471
+ "operationId": "GetPublicInstagramFeed",
472
+ "responses": {
473
+ "200": {
474
+ "description": "Instagram feed retrieved successfully",
475
+ "content": {
476
+ "application/json": {
477
+ "schema": {
478
+ "$ref": "#/components/schemas/instagramFeedResponse"
479
+ }
480
+ }
481
+ },
482
+ "x-ms-summary": "Success"
483
+ }
484
+ }
485
+ }
486
+ },
478
487
  "/v1.0/protected": {
479
488
  "get": {
480
489
  "tags": [
@@ -535,8 +544,11 @@
535
544
  "security": [
536
545
  {
537
546
  "Implicit": [
538
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
547
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
539
548
  ]
549
+ },
550
+ {
551
+ "ApiKey": []
540
552
  }
541
553
  ]
542
554
  },
@@ -564,7 +576,7 @@
564
576
  "content": {
565
577
  "application/json": {
566
578
  "schema": {
567
- "$ref": "#/components/schemas/createEvent"
579
+ "$ref": "#/components/schemas/sanityEvent"
568
580
  }
569
581
  }
570
582
  },
@@ -578,8 +590,11 @@
578
590
  "security": [
579
591
  {
580
592
  "Implicit": [
581
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
593
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
582
594
  ]
595
+ },
596
+ {
597
+ "ApiKey": []
583
598
  }
584
599
  ]
585
600
  }
@@ -628,8 +643,11 @@
628
643
  "security": [
629
644
  {
630
645
  "Implicit": [
631
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
646
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
632
647
  ]
648
+ },
649
+ {
650
+ "ApiKey": []
633
651
  }
634
652
  ]
635
653
  },
@@ -683,8 +701,11 @@
683
701
  "security": [
684
702
  {
685
703
  "Implicit": [
686
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
704
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
687
705
  ]
706
+ },
707
+ {
708
+ "ApiKey": []
688
709
  }
689
710
  ]
690
711
  }
@@ -713,8 +734,11 @@
713
734
  "security": [
714
735
  {
715
736
  "Implicit": [
716
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
737
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
717
738
  ]
739
+ },
740
+ {
741
+ "ApiKey": []
718
742
  }
719
743
  ]
720
744
  }
@@ -747,8 +771,11 @@
747
771
  "security": [
748
772
  {
749
773
  "Implicit": [
750
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
774
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
751
775
  ]
776
+ },
777
+ {
778
+ "ApiKey": []
752
779
  }
753
780
  ]
754
781
  }
@@ -807,8 +834,11 @@
807
834
  "security": [
808
835
  {
809
836
  "Implicit": [
810
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
837
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
811
838
  ]
839
+ },
840
+ {
841
+ "ApiKey": []
812
842
  }
813
843
  ]
814
844
  }
@@ -871,8 +901,11 @@
871
901
  "security": [
872
902
  {
873
903
  "Implicit": [
874
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
904
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
875
905
  ]
906
+ },
907
+ {
908
+ "ApiKey": []
876
909
  }
877
910
  ]
878
911
  }
@@ -917,8 +950,11 @@
917
950
  "security": [
918
951
  {
919
952
  "Implicit": [
920
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
953
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
921
954
  ]
955
+ },
956
+ {
957
+ "ApiKey": []
922
958
  }
923
959
  ]
924
960
  }
@@ -950,8 +986,52 @@
950
986
  "security": [
951
987
  {
952
988
  "Implicit": [
953
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
989
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
954
990
  ]
991
+ },
992
+ {
993
+ "ApiKey": []
994
+ }
995
+ ]
996
+ }
997
+ },
998
+ "/v1.0/protected/health/{provider}": {
999
+ "get": {
1000
+ "tags": [
1001
+ "Health"
1002
+ ],
1003
+ "summary": "Checks an integration's connectivity",
1004
+ "operationId": "EventsIntegrationHealth",
1005
+ "parameters": [
1006
+ {
1007
+ "name": "provider",
1008
+ "in": "path",
1009
+ "required": true,
1010
+ "schema": {
1011
+ "type": "string"
1012
+ }
1013
+ }
1014
+ ],
1015
+ "responses": {
1016
+ "200": {
1017
+ "description": "Health result",
1018
+ "content": {
1019
+ "application/json": {
1020
+ "schema": {
1021
+ "$ref": "#/components/schemas/integrationHealthResult"
1022
+ }
1023
+ }
1024
+ }
1025
+ }
1026
+ },
1027
+ "security": [
1028
+ {
1029
+ "Implicit": [
1030
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1031
+ ]
1032
+ },
1033
+ {
1034
+ "ApiKey": []
955
1035
  }
956
1036
  ]
957
1037
  }
@@ -1017,8 +1097,11 @@
1017
1097
  "security": [
1018
1098
  {
1019
1099
  "Implicit": [
1020
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1100
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1021
1101
  ]
1102
+ },
1103
+ {
1104
+ "ApiKey": []
1022
1105
  }
1023
1106
  ]
1024
1107
  }
@@ -1066,8 +1149,11 @@
1066
1149
  "security": [
1067
1150
  {
1068
1151
  "Implicit": [
1069
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1152
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1070
1153
  ]
1154
+ },
1155
+ {
1156
+ "ApiKey": []
1071
1157
  }
1072
1158
  ]
1073
1159
  }
@@ -1112,8 +1198,11 @@
1112
1198
  "security": [
1113
1199
  {
1114
1200
  "Implicit": [
1115
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1201
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1116
1202
  ]
1203
+ },
1204
+ {
1205
+ "ApiKey": []
1117
1206
  }
1118
1207
  ]
1119
1208
  },
@@ -1149,8 +1238,11 @@
1149
1238
  "security": [
1150
1239
  {
1151
1240
  "Implicit": [
1152
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1241
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1153
1242
  ]
1243
+ },
1244
+ {
1245
+ "ApiKey": []
1154
1246
  }
1155
1247
  ]
1156
1248
  }
@@ -1206,8 +1298,11 @@
1206
1298
  "security": [
1207
1299
  {
1208
1300
  "Implicit": [
1209
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1301
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1210
1302
  ]
1303
+ },
1304
+ {
1305
+ "ApiKey": []
1211
1306
  }
1212
1307
  ]
1213
1308
  }
@@ -1251,8 +1346,11 @@
1251
1346
  "security": [
1252
1347
  {
1253
1348
  "Implicit": [
1254
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default"
1349
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
1255
1350
  ]
1351
+ },
1352
+ {
1353
+ "ApiKey": []
1256
1354
  }
1257
1355
  ]
1258
1356
  }
@@ -1434,7 +1532,8 @@
1434
1532
  "items": {
1435
1533
  "type": "string",
1436
1534
  "format": "date-time"
1437
- }
1535
+ },
1536
+ "nullable": true
1438
1537
  },
1439
1538
  "file": {
1440
1539
  "$ref": "#/components/schemas/createEventFile"
@@ -1446,6 +1545,9 @@
1446
1545
  "type": "string",
1447
1546
  "default": "event"
1448
1547
  },
1548
+ "allowDigitalParticipation": {
1549
+ "type": "boolean"
1550
+ },
1449
1551
  "askForFeedback": {
1450
1552
  "type": "boolean"
1451
1553
  },
@@ -1519,9 +1621,15 @@
1519
1621
  "recurringId": {
1520
1622
  "type": "string"
1521
1623
  },
1624
+ "slackTs": {
1625
+ "type": "string"
1626
+ },
1522
1627
  "slug": {
1523
1628
  "$ref": "#/components/schemas/slug"
1524
1629
  },
1630
+ "teamsLink": {
1631
+ "type": "string"
1632
+ },
1525
1633
  "time": {
1526
1634
  "type": "string"
1527
1635
  },
@@ -1551,7 +1659,8 @@
1551
1659
  "type": "string",
1552
1660
  "nullable": true
1553
1661
  }
1554
- }
1662
+ },
1663
+ "nullable": true
1555
1664
  },
1556
1665
  "employeeReference": {
1557
1666
  "type": "object",
@@ -1695,6 +1804,13 @@
1695
1804
  "invitationSent": {
1696
1805
  "type": "boolean",
1697
1806
  "nullable": true
1807
+ },
1808
+ "allowDigitalParticipation": {
1809
+ "type": "boolean",
1810
+ "nullable": true
1811
+ },
1812
+ "teamsLink": {
1813
+ "type": "string"
1698
1814
  }
1699
1815
  }
1700
1816
  },
@@ -1793,6 +1909,20 @@
1793
1909
  }
1794
1910
  }
1795
1911
  },
1912
+ "integrationHealthResult": {
1913
+ "type": "object",
1914
+ "properties": {
1915
+ "key": {
1916
+ "type": "string"
1917
+ },
1918
+ "status": {
1919
+ "type": "string"
1920
+ },
1921
+ "message": {
1922
+ "type": "string"
1923
+ }
1924
+ }
1925
+ },
1796
1926
  "invitationPreviewResponse": {
1797
1927
  "type": "object",
1798
1928
  "properties": {
@@ -1944,6 +2074,10 @@
1944
2074
  "default": "active",
1945
2075
  "nullable": true
1946
2076
  },
2077
+ "allowDigitalParticipation": {
2078
+ "type": "boolean",
2079
+ "nullable": true
2080
+ },
1947
2081
  "askForFeedback": {
1948
2082
  "type": "boolean",
1949
2083
  "nullable": true
@@ -2020,9 +2154,15 @@
2020
2154
  "recurringId": {
2021
2155
  "type": "string"
2022
2156
  },
2157
+ "slackTs": {
2158
+ "type": "string"
2159
+ },
2023
2160
  "slug": {
2024
2161
  "$ref": "#/components/schemas/slug"
2025
2162
  },
2163
+ "teamsLink": {
2164
+ "type": "string"
2165
+ },
2026
2166
  "time": {
2027
2167
  "type": "string"
2028
2168
  },
@@ -2192,6 +2332,153 @@
2192
2332
  }
2193
2333
  }
2194
2334
  },
2335
+ "sanityEvent": {
2336
+ "type": "object",
2337
+ "properties": {
2338
+ "sanityType": {
2339
+ "enum": [
2340
+ "event"
2341
+ ],
2342
+ "type": "string",
2343
+ "default": "event"
2344
+ },
2345
+ "status": {
2346
+ "enum": [
2347
+ "active",
2348
+ "cancelled"
2349
+ ],
2350
+ "type": "string",
2351
+ "default": "active"
2352
+ },
2353
+ "allowDigitalParticipation": {
2354
+ "type": "boolean"
2355
+ },
2356
+ "askForFeedback": {
2357
+ "type": "boolean"
2358
+ },
2359
+ "category": {
2360
+ "type": "array",
2361
+ "items": {
2362
+ "type": "string"
2363
+ }
2364
+ },
2365
+ "creator": {
2366
+ "$ref": "#/components/schemas/sanityOrderEmployee"
2367
+ },
2368
+ "description": {
2369
+ "type": "string"
2370
+ },
2371
+ "endTime": {
2372
+ "type": "string"
2373
+ },
2374
+ "eventType": {
2375
+ "type": "array",
2376
+ "items": {
2377
+ "$ref": "#/components/schemas/sanityEventEventTypeInner"
2378
+ }
2379
+ },
2380
+ "feedback": {
2381
+ "type": "array",
2382
+ "items": {
2383
+ "$ref": "#/components/schemas/sanityEventFeedbackInner"
2384
+ }
2385
+ },
2386
+ "invitationSent": {
2387
+ "type": "boolean"
2388
+ },
2389
+ "isServingFood": {
2390
+ "type": "boolean"
2391
+ },
2392
+ "linkOnly": {
2393
+ "type": "boolean"
2394
+ },
2395
+ "manualMemoriesApproval": {
2396
+ "type": "boolean"
2397
+ },
2398
+ "maxParticipants": {
2399
+ "type": "number",
2400
+ "format": "double"
2401
+ },
2402
+ "media": {
2403
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
2404
+ },
2405
+ "memories": {
2406
+ "type": "array",
2407
+ "items": {
2408
+ "$ref": "#/components/schemas/sanityEventMemoriesInner"
2409
+ }
2410
+ },
2411
+ "participants": {
2412
+ "type": "array",
2413
+ "items": {
2414
+ "$ref": "#/components/schemas/sanityEventParticipantsInner"
2415
+ }
2416
+ },
2417
+ "participationStart": {
2418
+ "type": "string"
2419
+ },
2420
+ "place": {
2421
+ "type": "string"
2422
+ },
2423
+ "public": {
2424
+ "type": "boolean"
2425
+ },
2426
+ "recurringId": {
2427
+ "type": "string"
2428
+ },
2429
+ "sanityCreatedAt": {
2430
+ "type": "string"
2431
+ },
2432
+ "sanityId": {
2433
+ "type": "string"
2434
+ },
2435
+ "sanityRev": {
2436
+ "type": "string"
2437
+ },
2438
+ "sanityUpdatedAt": {
2439
+ "type": "string"
2440
+ },
2441
+ "slackTs": {
2442
+ "type": "string"
2443
+ },
2444
+ "slug": {
2445
+ "$ref": "#/components/schemas/slug"
2446
+ },
2447
+ "teamsLink": {
2448
+ "type": "string"
2449
+ },
2450
+ "time": {
2451
+ "type": "string"
2452
+ },
2453
+ "title": {
2454
+ "type": "string"
2455
+ }
2456
+ }
2457
+ },
2458
+ "sanityEventEventTypeInner": {
2459
+ "type": "object",
2460
+ "properties": {
2461
+ "sanityType": {
2462
+ "enum": [
2463
+ "eventType"
2464
+ ],
2465
+ "type": "string",
2466
+ "default": "eventType"
2467
+ },
2468
+ "canSubscribe": {
2469
+ "type": "boolean"
2470
+ },
2471
+ "name": {
2472
+ "type": "string"
2473
+ },
2474
+ "sanityId": {
2475
+ "type": "string"
2476
+ },
2477
+ "slug": {
2478
+ "$ref": "#/components/schemas/slug"
2479
+ }
2480
+ }
2481
+ },
2195
2482
  "sanityEventFeedbackInner": {
2196
2483
  "type": "object",
2197
2484
  "properties": {
@@ -2240,6 +2527,20 @@
2240
2527
  }
2241
2528
  }
2242
2529
  },
2530
+ "sanityEventParticipantsInner": {
2531
+ "type": "object",
2532
+ "properties": {
2533
+ "actualInstance": {
2534
+ "type": "object"
2535
+ },
2536
+ "isNullable": {
2537
+ "type": "boolean"
2538
+ },
2539
+ "schemaType": {
2540
+ "type": "string"
2541
+ }
2542
+ }
2543
+ },
2243
2544
  "sanityImageAssetReference": {
2244
2545
  "type": "object",
2245
2546
  "properties": {
@@ -2328,7 +2629,15 @@
2328
2629
  "type": "string"
2329
2630
  },
2330
2631
  "image": {
2331
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2632
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2633
+ },
2634
+ "isBot": {
2635
+ "type": "boolean",
2636
+ "nullable": true
2637
+ },
2638
+ "isExternal": {
2639
+ "type": "boolean",
2640
+ "nullable": true
2332
2641
  },
2333
2642
  "name": {
2334
2643
  "type": "string"
@@ -2342,7 +2651,7 @@
2342
2651
  "tags": {
2343
2652
  "type": "array",
2344
2653
  "items": {
2345
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2654
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsEmployeesInnerTagsInner"
2346
2655
  }
2347
2656
  },
2348
2657
  "telephone": {
@@ -2364,7 +2673,7 @@
2364
2673
  }
2365
2674
  }
2366
2675
  },
2367
- "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
2676
+ "sanityTechnologyWithRelationsEmployeesInnerTagsInner": {
2368
2677
  "type": "object",
2369
2678
  "properties": {
2370
2679
  "sanityType": {
@@ -2385,7 +2694,7 @@
2385
2694
  }
2386
2695
  }
2387
2696
  },
2388
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2697
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
2389
2698
  "type": "object",
2390
2699
  "properties": {
2391
2700
  "sanityType": {
@@ -2464,14 +2773,19 @@
2464
2773
  "type": "oauth2",
2465
2774
  "flows": {
2466
2775
  "implicit": {
2467
- "authorizationUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/authorize",
2468
- "tokenUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
2469
- "refreshUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
2776
+ "authorizationUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/authorize",
2777
+ "tokenUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token",
2778
+ "refreshUrl": "https://login.microsoftonline.com/organizations/oauth2/v2.0/token",
2470
2779
  "scopes": {
2471
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default": "Default function scope"
2780
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default": "Default function scope"
2472
2781
  }
2473
2782
  }
2474
2783
  }
2784
+ },
2785
+ "ApiKey": {
2786
+ "type": "http",
2787
+ "scheme": "bearer",
2788
+ "bearerFormat": "JWT"
2475
2789
  }
2476
2790
  }
2477
2791
  }