@snokam/mcp-api 1.3.1 → 1.4.1
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/dist/auth.d.ts +0 -15
- package/dist/auth.js +15 -59
- package/dist/builtin-tools.d.ts +109 -0
- package/dist/builtin-tools.js +200 -0
- package/dist/execute-call.d.ts +5 -0
- package/dist/execute-call.js +45 -0
- package/dist/index.d.ts +0 -7
- package/dist/index.js +7 -312
- package/dist/openapi-loader.d.ts +1 -14
- package/dist/openapi-loader.js +8 -49
- package/dist/state.d.ts +13 -0
- package/dist/state.js +54 -0
- package/dist/tool-schema.d.ts +2 -0
- package/dist/tool-schema.js +42 -0
- package/package.json +6 -6
- package/specs/production/accounting.json +2533 -1937
- package/specs/production/blog.json +1608 -1
- package/specs/production/broker.json +52 -24
- package/specs/production/chatgpt.json +299 -17
- package/specs/production/employees.json +3116 -278
- package/specs/production/events.json +437 -51
- package/specs/production/notifications.json +441 -11
- package/specs/production/office.json +818 -836
- package/specs/production/recruitment.json +3635 -1
- package/specs/production/sales.json +5241 -352
- package/specs/production/sanity.json +28588 -15500
- package/specs/production/sync.json +116 -20
- package/specs/production/webshop.json +38 -18
- package/specs/test/accounting.json +2533 -1937
- package/specs/test/blog.json +1608 -1
- package/specs/test/broker.json +52 -24
- package/specs/test/chatgpt.json +299 -17
- package/specs/test/employees.json +3116 -278
- package/specs/test/events.json +437 -51
- package/specs/test/notifications.json +441 -11
- package/specs/test/office.json +818 -836
- package/specs/test/recruitment.json +3635 -1
- package/specs/test/sales.json +5241 -352
- package/specs/test/sanity.json +28588 -15500
- package/specs/test/sync.json +116 -20
- 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://
|
|
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://
|
|
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://
|
|
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/
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
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://
|
|
989
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
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"
|
|
954
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://
|
|
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://
|
|
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://
|
|
1201
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
1116
1202
|
]
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
"ApiKey": []
|
|
1117
1206
|
}
|
|
1118
1207
|
]
|
|
1119
1208
|
},
|
|
@@ -1149,8 +1238,71 @@
|
|
|
1149
1238
|
"security": [
|
|
1150
1239
|
{
|
|
1151
1240
|
"Implicit": [
|
|
1152
|
-
"api://
|
|
1241
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
1153
1242
|
]
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"ApiKey": []
|
|
1246
|
+
}
|
|
1247
|
+
]
|
|
1248
|
+
}
|
|
1249
|
+
},
|
|
1250
|
+
"/v1.0/protected/{eventId}/participate/employee": {
|
|
1251
|
+
"post": {
|
|
1252
|
+
"tags": [
|
|
1253
|
+
"Events"
|
|
1254
|
+
],
|
|
1255
|
+
"summary": "Registers an employee as participant",
|
|
1256
|
+
"description": "Registers a specific employee as an internal participant in an event. Requires authentication.",
|
|
1257
|
+
"operationId": "AddParticipationForEmployee",
|
|
1258
|
+
"parameters": [
|
|
1259
|
+
{
|
|
1260
|
+
"name": "eventId",
|
|
1261
|
+
"in": "path",
|
|
1262
|
+
"description": "The ID of the event",
|
|
1263
|
+
"required": true,
|
|
1264
|
+
"schema": {
|
|
1265
|
+
"type": "string"
|
|
1266
|
+
},
|
|
1267
|
+
"x-ms-summary": "The ID of the event"
|
|
1268
|
+
}
|
|
1269
|
+
],
|
|
1270
|
+
"requestBody": {
|
|
1271
|
+
"description": "Employee participation data",
|
|
1272
|
+
"content": {
|
|
1273
|
+
"application/json": {
|
|
1274
|
+
"schema": {
|
|
1275
|
+
"$ref": "#/components/schemas/participateEmployee"
|
|
1276
|
+
}
|
|
1277
|
+
}
|
|
1278
|
+
},
|
|
1279
|
+
"required": true
|
|
1280
|
+
},
|
|
1281
|
+
"responses": {
|
|
1282
|
+
"200": {
|
|
1283
|
+
"description": "Participation registered successfully",
|
|
1284
|
+
"content": {
|
|
1285
|
+
"application/json": {
|
|
1286
|
+
"schema": {
|
|
1287
|
+
"$ref": "#/components/schemas/participant"
|
|
1288
|
+
}
|
|
1289
|
+
}
|
|
1290
|
+
},
|
|
1291
|
+
"x-ms-summary": "Success"
|
|
1292
|
+
},
|
|
1293
|
+
"401": {
|
|
1294
|
+
"description": "User is not authorized",
|
|
1295
|
+
"x-ms-summary": "Unauthorized"
|
|
1296
|
+
}
|
|
1297
|
+
},
|
|
1298
|
+
"security": [
|
|
1299
|
+
{
|
|
1300
|
+
"Implicit": [
|
|
1301
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
1302
|
+
]
|
|
1303
|
+
},
|
|
1304
|
+
{
|
|
1305
|
+
"ApiKey": []
|
|
1154
1306
|
}
|
|
1155
1307
|
]
|
|
1156
1308
|
}
|
|
@@ -1194,8 +1346,11 @@
|
|
|
1194
1346
|
"security": [
|
|
1195
1347
|
{
|
|
1196
1348
|
"Implicit": [
|
|
1197
|
-
"api://
|
|
1349
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default"
|
|
1198
1350
|
]
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"ApiKey": []
|
|
1199
1354
|
}
|
|
1200
1355
|
]
|
|
1201
1356
|
}
|
|
@@ -1377,7 +1532,8 @@
|
|
|
1377
1532
|
"items": {
|
|
1378
1533
|
"type": "string",
|
|
1379
1534
|
"format": "date-time"
|
|
1380
|
-
}
|
|
1535
|
+
},
|
|
1536
|
+
"nullable": true
|
|
1381
1537
|
},
|
|
1382
1538
|
"file": {
|
|
1383
1539
|
"$ref": "#/components/schemas/createEventFile"
|
|
@@ -1389,6 +1545,9 @@
|
|
|
1389
1545
|
"type": "string",
|
|
1390
1546
|
"default": "event"
|
|
1391
1547
|
},
|
|
1548
|
+
"allowDigitalParticipation": {
|
|
1549
|
+
"type": "boolean"
|
|
1550
|
+
},
|
|
1392
1551
|
"askForFeedback": {
|
|
1393
1552
|
"type": "boolean"
|
|
1394
1553
|
},
|
|
@@ -1462,9 +1621,15 @@
|
|
|
1462
1621
|
"recurringId": {
|
|
1463
1622
|
"type": "string"
|
|
1464
1623
|
},
|
|
1624
|
+
"slackTs": {
|
|
1625
|
+
"type": "string"
|
|
1626
|
+
},
|
|
1465
1627
|
"slug": {
|
|
1466
1628
|
"$ref": "#/components/schemas/slug"
|
|
1467
1629
|
},
|
|
1630
|
+
"teamsLink": {
|
|
1631
|
+
"type": "string"
|
|
1632
|
+
},
|
|
1468
1633
|
"time": {
|
|
1469
1634
|
"type": "string"
|
|
1470
1635
|
},
|
|
@@ -1494,7 +1659,8 @@
|
|
|
1494
1659
|
"type": "string",
|
|
1495
1660
|
"nullable": true
|
|
1496
1661
|
}
|
|
1497
|
-
}
|
|
1662
|
+
},
|
|
1663
|
+
"nullable": true
|
|
1498
1664
|
},
|
|
1499
1665
|
"employeeReference": {
|
|
1500
1666
|
"type": "object",
|
|
@@ -1638,6 +1804,13 @@
|
|
|
1638
1804
|
"invitationSent": {
|
|
1639
1805
|
"type": "boolean",
|
|
1640
1806
|
"nullable": true
|
|
1807
|
+
},
|
|
1808
|
+
"allowDigitalParticipation": {
|
|
1809
|
+
"type": "boolean",
|
|
1810
|
+
"nullable": true
|
|
1811
|
+
},
|
|
1812
|
+
"teamsLink": {
|
|
1813
|
+
"type": "string"
|
|
1641
1814
|
}
|
|
1642
1815
|
}
|
|
1643
1816
|
},
|
|
@@ -1736,6 +1909,20 @@
|
|
|
1736
1909
|
}
|
|
1737
1910
|
}
|
|
1738
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
|
+
},
|
|
1739
1926
|
"invitationPreviewResponse": {
|
|
1740
1927
|
"type": "object",
|
|
1741
1928
|
"properties": {
|
|
@@ -1845,6 +2032,21 @@
|
|
|
1845
2032
|
}
|
|
1846
2033
|
}
|
|
1847
2034
|
},
|
|
2035
|
+
"participateEmployee": {
|
|
2036
|
+
"required": [
|
|
2037
|
+
"email"
|
|
2038
|
+
],
|
|
2039
|
+
"type": "object",
|
|
2040
|
+
"properties": {
|
|
2041
|
+
"email": {
|
|
2042
|
+
"minLength": 1,
|
|
2043
|
+
"type": "string"
|
|
2044
|
+
},
|
|
2045
|
+
"details": {
|
|
2046
|
+
"type": "string"
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
},
|
|
1848
2050
|
"patchEvent": {
|
|
1849
2051
|
"type": "object",
|
|
1850
2052
|
"properties": {
|
|
@@ -1872,6 +2074,10 @@
|
|
|
1872
2074
|
"default": "active",
|
|
1873
2075
|
"nullable": true
|
|
1874
2076
|
},
|
|
2077
|
+
"allowDigitalParticipation": {
|
|
2078
|
+
"type": "boolean",
|
|
2079
|
+
"nullable": true
|
|
2080
|
+
},
|
|
1875
2081
|
"askForFeedback": {
|
|
1876
2082
|
"type": "boolean",
|
|
1877
2083
|
"nullable": true
|
|
@@ -1948,9 +2154,15 @@
|
|
|
1948
2154
|
"recurringId": {
|
|
1949
2155
|
"type": "string"
|
|
1950
2156
|
},
|
|
2157
|
+
"slackTs": {
|
|
2158
|
+
"type": "string"
|
|
2159
|
+
},
|
|
1951
2160
|
"slug": {
|
|
1952
2161
|
"$ref": "#/components/schemas/slug"
|
|
1953
2162
|
},
|
|
2163
|
+
"teamsLink": {
|
|
2164
|
+
"type": "string"
|
|
2165
|
+
},
|
|
1954
2166
|
"time": {
|
|
1955
2167
|
"type": "string"
|
|
1956
2168
|
},
|
|
@@ -2120,6 +2332,153 @@
|
|
|
2120
2332
|
}
|
|
2121
2333
|
}
|
|
2122
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
|
+
},
|
|
2123
2482
|
"sanityEventFeedbackInner": {
|
|
2124
2483
|
"type": "object",
|
|
2125
2484
|
"properties": {
|
|
@@ -2168,6 +2527,20 @@
|
|
|
2168
2527
|
}
|
|
2169
2528
|
}
|
|
2170
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
|
+
},
|
|
2171
2544
|
"sanityImageAssetReference": {
|
|
2172
2545
|
"type": "object",
|
|
2173
2546
|
"properties": {
|
|
@@ -2256,7 +2629,15 @@
|
|
|
2256
2629
|
"type": "string"
|
|
2257
2630
|
},
|
|
2258
2631
|
"image": {
|
|
2259
|
-
"$ref": "#/components/schemas/
|
|
2632
|
+
"$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
|
|
2633
|
+
},
|
|
2634
|
+
"isBot": {
|
|
2635
|
+
"type": "boolean",
|
|
2636
|
+
"nullable": true
|
|
2637
|
+
},
|
|
2638
|
+
"isExternal": {
|
|
2639
|
+
"type": "boolean",
|
|
2640
|
+
"nullable": true
|
|
2260
2641
|
},
|
|
2261
2642
|
"name": {
|
|
2262
2643
|
"type": "string"
|
|
@@ -2270,7 +2651,7 @@
|
|
|
2270
2651
|
"tags": {
|
|
2271
2652
|
"type": "array",
|
|
2272
2653
|
"items": {
|
|
2273
|
-
"$ref": "#/components/schemas/
|
|
2654
|
+
"$ref": "#/components/schemas/sanityTechnologyWithRelationsEmployeesInnerTagsInner"
|
|
2274
2655
|
}
|
|
2275
2656
|
},
|
|
2276
2657
|
"telephone": {
|
|
@@ -2292,7 +2673,7 @@
|
|
|
2292
2673
|
}
|
|
2293
2674
|
}
|
|
2294
2675
|
},
|
|
2295
|
-
"
|
|
2676
|
+
"sanityTechnologyWithRelationsEmployeesInnerTagsInner": {
|
|
2296
2677
|
"type": "object",
|
|
2297
2678
|
"properties": {
|
|
2298
2679
|
"sanityType": {
|
|
@@ -2313,7 +2694,7 @@
|
|
|
2313
2694
|
}
|
|
2314
2695
|
}
|
|
2315
2696
|
},
|
|
2316
|
-
"
|
|
2697
|
+
"sanityTvCategoryDashboardsInnerBackgroundImage": {
|
|
2317
2698
|
"type": "object",
|
|
2318
2699
|
"properties": {
|
|
2319
2700
|
"sanityType": {
|
|
@@ -2392,14 +2773,19 @@
|
|
|
2392
2773
|
"type": "oauth2",
|
|
2393
2774
|
"flows": {
|
|
2394
2775
|
"implicit": {
|
|
2395
|
-
"authorizationUrl": "https://login.microsoftonline.com/
|
|
2396
|
-
"tokenUrl": "https://login.microsoftonline.com/
|
|
2397
|
-
"refreshUrl": "https://login.microsoftonline.com/
|
|
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",
|
|
2398
2779
|
"scopes": {
|
|
2399
|
-
"api://
|
|
2780
|
+
"api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default": "Default function scope"
|
|
2400
2781
|
}
|
|
2401
2782
|
}
|
|
2402
2783
|
}
|
|
2784
|
+
},
|
|
2785
|
+
"ApiKey": {
|
|
2786
|
+
"type": "http",
|
|
2787
|
+
"scheme": "bearer",
|
|
2788
|
+
"bearerFormat": "JWT"
|
|
2403
2789
|
}
|
|
2404
2790
|
}
|
|
2405
2791
|
}
|