@snokam/mcp-api 2.61.0 → 3.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 (43) hide show
  1. package/dist/auth.d.ts +0 -15
  2. package/dist/auth.js +17 -61
  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 +16 -311
  9. package/dist/openapi-loader.d.ts +1 -14
  10. package/dist/openapi-loader.js +27 -50
  11. package/dist/requirements.d.ts +10 -0
  12. package/dist/requirements.js +92 -0
  13. package/dist/state.d.ts +14 -0
  14. package/dist/state.js +66 -0
  15. package/dist/tool-schema.d.ts +2 -0
  16. package/dist/tool-schema.js +42 -0
  17. package/package.json +8 -3
  18. package/specs/production/accounting.json +2759 -2107
  19. package/specs/production/blog.json +783 -1504
  20. package/specs/production/broker.json +52 -24
  21. package/specs/production/chatgpt.json +285 -35
  22. package/specs/production/employees.json +2225 -1267
  23. package/specs/production/events.json +475 -755
  24. package/specs/production/notifications.json +329 -15
  25. package/specs/production/office.json +818 -836
  26. package/specs/production/recruitment.json +1889 -1116
  27. package/specs/production/sales.json +2392 -853
  28. package/specs/production/sanity.json +26027 -15014
  29. package/specs/production/sync.json +116 -20
  30. package/specs/production/webshop.json +37 -17
  31. package/specs/test/accounting.json +2869 -2159
  32. package/specs/test/blog.json +774 -1511
  33. package/specs/test/broker.json +54 -25
  34. package/specs/test/chatgpt.json +561 -198
  35. package/specs/test/employees.json +2490 -1479
  36. package/specs/test/events.json +481 -773
  37. package/specs/test/notifications.json +329 -15
  38. package/specs/test/office.json +818 -836
  39. package/specs/test/recruitment.json +1894 -1121
  40. package/specs/test/sales.json +2909 -1172
  41. package/specs/test/sanity.json +47384 -16348
  42. package/specs/test/sync.json +116 -20
  43. package/specs/test/webshop.json +37 -17
@@ -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"
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://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
  }
@@ -1265,11 +1363,17 @@
1265
1363
  "properties": {
1266
1364
  "sanityType": {
1267
1365
  "enum": [
1268
- 1
1366
+ "response"
1269
1367
  ],
1270
- "type": "integer",
1271
- "format": "int32",
1272
- "default": 1
1368
+ "type": "string",
1369
+ "default": "response"
1370
+ },
1371
+ "comment": {
1372
+ "type": "string"
1373
+ },
1374
+ "foodAndDrinkRating": {
1375
+ "type": "number",
1376
+ "format": "double"
1273
1377
  },
1274
1378
  "locationRating": {
1275
1379
  "type": "number",
@@ -1283,24 +1387,10 @@
1283
1387
  "type": "number",
1284
1388
  "format": "double"
1285
1389
  },
1286
- "commentOption": {
1287
- "$ref": "#/components/schemas/option_string"
1288
- },
1289
- "comment": {
1290
- "type": "string"
1291
- },
1292
- "foodAndDrinkRatingOption": {
1293
- "$ref": "#/components/schemas/option_nullable`1"
1294
- },
1295
- "foodAndDrinkRating": {
1296
- "type": "number",
1297
- "format": "double",
1298
- "nullable": true
1299
- },
1300
1390
  "additionalProperties": {
1301
1391
  "type": "object",
1302
1392
  "additionalProperties": {
1303
- "$ref": "#/components/schemas/jsonElement"
1393
+ "type": "object"
1304
1394
  }
1305
1395
  }
1306
1396
  }
@@ -1318,11 +1408,17 @@
1318
1408
  },
1319
1409
  "sanityType": {
1320
1410
  "enum": [
1321
- 1
1411
+ "response"
1322
1412
  ],
1323
- "type": "integer",
1324
- "format": "int32",
1325
- "default": 1
1413
+ "type": "string",
1414
+ "default": "response"
1415
+ },
1416
+ "comment": {
1417
+ "type": "string"
1418
+ },
1419
+ "foodAndDrinkRating": {
1420
+ "type": "number",
1421
+ "format": "double"
1326
1422
  },
1327
1423
  "locationRating": {
1328
1424
  "type": "number",
@@ -1336,24 +1432,10 @@
1336
1432
  "type": "number",
1337
1433
  "format": "double"
1338
1434
  },
1339
- "commentOption": {
1340
- "$ref": "#/components/schemas/option_string"
1341
- },
1342
- "comment": {
1343
- "type": "string"
1344
- },
1345
- "foodAndDrinkRatingOption": {
1346
- "$ref": "#/components/schemas/option_nullable`1"
1347
- },
1348
- "foodAndDrinkRating": {
1349
- "type": "number",
1350
- "format": "double",
1351
- "nullable": true
1352
- },
1353
1435
  "additionalProperties": {
1354
1436
  "type": "object",
1355
1437
  "additionalProperties": {
1356
- "$ref": "#/components/schemas/jsonElement"
1438
+ "type": "object"
1357
1439
  }
1358
1440
  }
1359
1441
  }
@@ -1370,7 +1452,7 @@
1370
1452
  "additionalProperties": {
1371
1453
  "type": "object",
1372
1454
  "additionalProperties": {
1373
- "$ref": "#/components/schemas/jsonElement"
1455
+ "type": "object"
1374
1456
  }
1375
1457
  }
1376
1458
  }
@@ -1389,30 +1471,22 @@
1389
1471
  "properties": {
1390
1472
  "sanityType": {
1391
1473
  "enum": [
1392
- 1
1474
+ "component.media"
1393
1475
  ],
1394
- "type": "integer",
1395
- "format": "int32",
1396
- "default": 1
1476
+ "type": "string",
1477
+ "default": "component.media"
1397
1478
  },
1398
1479
  "type": {
1399
1480
  "enum": [
1400
- 1,
1401
- 2
1481
+ "image",
1482
+ "video"
1402
1483
  ],
1403
- "type": "integer",
1404
- "format": "int32",
1405
- "default": 1
1406
- },
1407
- "imageOption": {
1408
- "$ref": "#/components/schemas/option_componentMediaImage"
1484
+ "type": "string",
1485
+ "default": "image"
1409
1486
  },
1410
1487
  "image": {
1411
1488
  "$ref": "#/components/schemas/componentMediaImage"
1412
1489
  },
1413
- "videoOption": {
1414
- "$ref": "#/components/schemas/option_muxVideo"
1415
- },
1416
1490
  "video": {
1417
1491
  "$ref": "#/components/schemas/muxVideo"
1418
1492
  }
@@ -1423,33 +1497,20 @@
1423
1497
  "properties": {
1424
1498
  "sanityType": {
1425
1499
  "enum": [
1426
- 1
1500
+ "image"
1427
1501
  ],
1428
- "type": "integer",
1429
- "format": "int32",
1430
- "default": 1
1431
- },
1432
- "assetOption": {
1433
- "$ref": "#/components/schemas/option_sanityImageAssetReference"
1502
+ "type": "string",
1503
+ "default": "image"
1434
1504
  },
1435
1505
  "asset": {
1436
1506
  "$ref": "#/components/schemas/sanityImageAssetReference"
1437
1507
  },
1438
- "cropOption": {
1439
- "$ref": "#/components/schemas/option_sanityImageCrop"
1440
- },
1441
1508
  "crop": {
1442
1509
  "$ref": "#/components/schemas/sanityImageCrop"
1443
1510
  },
1444
- "hotspotOption": {
1445
- "$ref": "#/components/schemas/option_sanityImageHotspot"
1446
- },
1447
1511
  "hotspot": {
1448
1512
  "$ref": "#/components/schemas/sanityImageHotspot"
1449
1513
  },
1450
- "mediaOption": {
1451
- "$ref": "#/components/schemas/option_object"
1452
- },
1453
1514
  "media": {
1454
1515
  "type": "object"
1455
1516
  }
@@ -1460,169 +1521,125 @@
1460
1521
  "properties": {
1461
1522
  "status": {
1462
1523
  "enum": [
1463
- 1,
1464
- 2
1524
+ "active",
1525
+ "cancelled"
1465
1526
  ],
1466
- "type": "integer",
1467
- "format": "int32",
1468
- "default": 1
1527
+ "type": "string",
1528
+ "default": "active"
1469
1529
  },
1470
1530
  "dates": {
1471
1531
  "type": "array",
1472
1532
  "items": {
1473
1533
  "type": "string",
1474
1534
  "format": "date-time"
1475
- }
1535
+ },
1536
+ "nullable": true
1476
1537
  },
1477
1538
  "file": {
1478
1539
  "$ref": "#/components/schemas/createEventFile"
1479
1540
  },
1480
1541
  "sanityType": {
1481
1542
  "enum": [
1482
- 1
1543
+ "event"
1483
1544
  ],
1484
- "type": "integer",
1485
- "format": "int32",
1486
- "default": 1
1545
+ "type": "string",
1546
+ "default": "event"
1487
1547
  },
1488
- "askForFeedback": {
1548
+ "allowDigitalParticipation": {
1489
1549
  "type": "boolean"
1490
1550
  },
1491
- "creator": {
1492
- "$ref": "#/components/schemas/employeeReference"
1493
- },
1494
- "description": {
1495
- "type": "string"
1551
+ "askForFeedback": {
1552
+ "type": "boolean"
1496
1553
  },
1497
- "eventType": {
1554
+ "category": {
1498
1555
  "type": "array",
1499
1556
  "items": {
1500
- "$ref": "#/components/schemas/sanityCreateEventEventTypeInner"
1557
+ "type": "string"
1501
1558
  }
1502
1559
  },
1503
- "linkOnly": {
1504
- "type": "boolean"
1505
- },
1506
- "manualMemoriesApproval": {
1507
- "type": "boolean"
1508
- },
1509
- "public": {
1510
- "type": "boolean"
1511
- },
1512
- "slug": {
1513
- "$ref": "#/components/schemas/slug"
1560
+ "creator": {
1561
+ "$ref": "#/components/schemas/employeeReference"
1514
1562
  },
1515
- "time": {
1563
+ "description": {
1516
1564
  "type": "string"
1517
1565
  },
1518
- "title": {
1566
+ "endTime": {
1519
1567
  "type": "string"
1520
1568
  },
1521
- "allowDigitalParticipationOption": {
1522
- "$ref": "#/components/schemas/option_nullable`1"
1523
- },
1524
- "allowDigitalParticipation": {
1525
- "type": "boolean",
1526
- "nullable": true
1527
- },
1528
- "categoryOption": {
1529
- "$ref": "#/components/schemas/option_list`1"
1530
- },
1531
- "category": {
1569
+ "eventType": {
1532
1570
  "type": "array",
1533
1571
  "items": {
1534
- "type": "string"
1572
+ "$ref": "#/components/schemas/sanityCreateEventEventTypeInner"
1535
1573
  }
1536
1574
  },
1537
- "endTimeOption": {
1538
- "$ref": "#/components/schemas/option_string"
1539
- },
1540
- "endTime": {
1541
- "type": "string"
1542
- },
1543
- "feedbackOption": {
1544
- "$ref": "#/components/schemas/option_list`1"
1545
- },
1546
1575
  "feedback": {
1547
1576
  "type": "array",
1548
1577
  "items": {
1549
1578
  "$ref": "#/components/schemas/sanityCreateEventFeedbackInner"
1550
1579
  }
1551
1580
  },
1552
- "invitationSentOption": {
1553
- "$ref": "#/components/schemas/option_nullable`1"
1554
- },
1555
1581
  "invitationSent": {
1556
- "type": "boolean",
1557
- "nullable": true
1558
- },
1559
- "isServingFoodOption": {
1560
- "$ref": "#/components/schemas/option_nullable`1"
1582
+ "type": "boolean"
1561
1583
  },
1562
1584
  "isServingFood": {
1563
- "type": "boolean",
1564
- "nullable": true
1585
+ "type": "boolean"
1586
+ },
1587
+ "linkOnly": {
1588
+ "type": "boolean"
1565
1589
  },
1566
- "maxParticipantsOption": {
1567
- "$ref": "#/components/schemas/option_nullable`1"
1590
+ "manualMemoriesApproval": {
1591
+ "type": "boolean"
1568
1592
  },
1569
1593
  "maxParticipants": {
1570
1594
  "type": "number",
1571
- "format": "double",
1572
- "nullable": true
1573
- },
1574
- "mediaOption": {
1575
- "$ref": "#/components/schemas/option_componentMedia"
1595
+ "format": "double"
1576
1596
  },
1577
1597
  "media": {
1578
1598
  "$ref": "#/components/schemas/componentMedia"
1579
1599
  },
1580
- "memoriesOption": {
1581
- "$ref": "#/components/schemas/option_list`1"
1582
- },
1583
1600
  "memories": {
1584
1601
  "type": "array",
1585
1602
  "items": {
1586
1603
  "$ref": "#/components/schemas/sanityCreateEventMemoriesInner"
1587
1604
  }
1588
1605
  },
1589
- "participantsOption": {
1590
- "$ref": "#/components/schemas/option_list`1"
1591
- },
1592
1606
  "participants": {
1593
1607
  "type": "array",
1594
1608
  "items": {
1595
1609
  "$ref": "#/components/schemas/sanityCreateEventParticipantsInner"
1596
1610
  }
1597
1611
  },
1598
- "participationStartOption": {
1599
- "$ref": "#/components/schemas/option_string"
1600
- },
1601
1612
  "participationStart": {
1602
1613
  "type": "string"
1603
1614
  },
1604
- "placeOption": {
1605
- "$ref": "#/components/schemas/option_string"
1606
- },
1607
1615
  "place": {
1608
1616
  "type": "string"
1609
1617
  },
1610
- "recurringIdOption": {
1611
- "$ref": "#/components/schemas/option_string"
1618
+ "public": {
1619
+ "type": "boolean"
1612
1620
  },
1613
1621
  "recurringId": {
1614
1622
  "type": "string"
1615
1623
  },
1616
- "teamsLinkOption": {
1617
- "$ref": "#/components/schemas/option_string"
1624
+ "slackTs": {
1625
+ "type": "string"
1626
+ },
1627
+ "slug": {
1628
+ "$ref": "#/components/schemas/slug"
1618
1629
  },
1619
1630
  "teamsLink": {
1620
1631
  "type": "string"
1621
1632
  },
1633
+ "time": {
1634
+ "type": "string"
1635
+ },
1636
+ "title": {
1637
+ "type": "string"
1638
+ },
1622
1639
  "additionalProperties": {
1623
1640
  "type": "object",
1624
1641
  "additionalProperties": {
1625
- "$ref": "#/components/schemas/jsonElement"
1642
+ "type": "object"
1626
1643
  }
1627
1644
  }
1628
1645
  }
@@ -1642,28 +1659,24 @@
1642
1659
  "type": "string",
1643
1660
  "nullable": true
1644
1661
  }
1645
- }
1662
+ },
1663
+ "nullable": true
1646
1664
  },
1647
1665
  "employeeReference": {
1648
1666
  "type": "object",
1649
1667
  "properties": {
1650
1668
  "sanityType": {
1651
1669
  "enum": [
1652
- 1
1670
+ "reference"
1653
1671
  ],
1654
- "type": "integer",
1655
- "format": "int32",
1656
- "default": 1
1672
+ "type": "string",
1673
+ "default": "reference"
1657
1674
  },
1658
1675
  "sanityRef": {
1659
1676
  "type": "string"
1660
1677
  },
1661
- "sanityWeakOption": {
1662
- "$ref": "#/components/schemas/option_nullable`1"
1663
- },
1664
1678
  "sanityWeak": {
1665
- "type": "boolean",
1666
- "nullable": true
1679
+ "type": "boolean"
1667
1680
  }
1668
1681
  }
1669
1682
  },
@@ -1896,6 +1909,20 @@
1896
1909
  }
1897
1910
  }
1898
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
+ },
1899
1926
  "invitationPreviewResponse": {
1900
1927
  "type": "object",
1901
1928
  "properties": {
@@ -1907,42 +1934,15 @@
1907
1934
  }
1908
1935
  }
1909
1936
  },
1910
- "jsonElement": {
1911
- "type": "object",
1912
- "properties": {
1913
- "valueKind": {
1914
- "enum": [
1915
- 0,
1916
- 1,
1917
- 2,
1918
- 3,
1919
- 4,
1920
- 5,
1921
- 6,
1922
- 7
1923
- ],
1924
- "type": "integer",
1925
- "format": "int32",
1926
- "default": 0
1927
- },
1928
- "item": {
1929
- "$ref": "#/components/schemas/jsonElement"
1930
- }
1931
- }
1932
- },
1933
1937
  "muxVideo": {
1934
1938
  "type": "object",
1935
1939
  "properties": {
1936
1940
  "sanityType": {
1937
1941
  "enum": [
1938
- 1
1942
+ "mux.video"
1939
1943
  ],
1940
- "type": "integer",
1941
- "format": "int32",
1942
- "default": 1
1943
- },
1944
- "assetOption": {
1945
- "$ref": "#/components/schemas/option_muxVideoAssetReference"
1944
+ "type": "string",
1945
+ "default": "mux.video"
1946
1946
  },
1947
1947
  "asset": {
1948
1948
  "$ref": "#/components/schemas/muxVideoAssetReference"
@@ -1954,167 +1954,16 @@
1954
1954
  "properties": {
1955
1955
  "sanityType": {
1956
1956
  "enum": [
1957
- 1
1957
+ "reference"
1958
1958
  ],
1959
- "type": "integer",
1960
- "format": "int32",
1961
- "default": 1
1959
+ "type": "string",
1960
+ "default": "reference"
1962
1961
  },
1963
1962
  "sanityRef": {
1964
1963
  "type": "string"
1965
1964
  },
1966
- "sanityWeakOption": {
1967
- "$ref": "#/components/schemas/option_nullable`1"
1968
- },
1969
1965
  "sanityWeak": {
1970
- "type": "boolean",
1971
- "nullable": true
1972
- }
1973
- }
1974
- },
1975
- "option_componentMedia": {
1976
- "type": "object",
1977
- "properties": {
1978
- "value": {
1979
- "$ref": "#/components/schemas/componentMedia"
1980
- }
1981
- }
1982
- },
1983
- "option_componentMediaImage": {
1984
- "type": "object",
1985
- "properties": {
1986
- "value": {
1987
- "$ref": "#/components/schemas/componentMediaImage"
1988
- }
1989
- }
1990
- },
1991
- "option_employeeReference": {
1992
- "type": "object",
1993
- "properties": {
1994
- "value": {
1995
- "$ref": "#/components/schemas/employeeReference"
1996
- }
1997
- }
1998
- },
1999
- "option_list`1": {
2000
- "type": "object",
2001
- "properties": {
2002
- "value": {
2003
- "type": "array",
2004
- "items": {
2005
- "type": "string"
2006
- }
2007
- }
2008
- }
2009
- },
2010
- "option_muxVideo": {
2011
- "type": "object",
2012
- "properties": {
2013
- "value": {
2014
- "$ref": "#/components/schemas/muxVideo"
2015
- }
2016
- }
2017
- },
2018
- "option_muxVideoAssetReference": {
2019
- "type": "object",
2020
- "properties": {
2021
- "value": {
2022
- "$ref": "#/components/schemas/muxVideoAssetReference"
2023
- }
2024
- }
2025
- },
2026
- "option_nullable`1": {
2027
- "type": "object",
2028
- "properties": {
2029
- "value": {
2030
- "type": "number",
2031
- "format": "double",
2032
- "nullable": true
2033
- }
2034
- }
2035
- },
2036
- "option_object": {
2037
- "type": "object",
2038
- "properties": {
2039
- "value": {
2040
- "type": "object"
2041
- }
2042
- }
2043
- },
2044
- "option_sanityImageAssetReference": {
2045
- "type": "object",
2046
- "properties": {
2047
- "value": {
2048
- "$ref": "#/components/schemas/sanityImageAssetReference"
2049
- }
2050
- }
2051
- },
2052
- "option_sanityImageCrop": {
2053
- "type": "object",
2054
- "properties": {
2055
- "value": {
2056
- "$ref": "#/components/schemas/sanityImageCrop"
2057
- }
2058
- }
2059
- },
2060
- "option_sanityImageHotspot": {
2061
- "type": "object",
2062
- "properties": {
2063
- "value": {
2064
- "$ref": "#/components/schemas/sanityImageHotspot"
2065
- }
2066
- }
2067
- },
2068
- "option_slug": {
2069
- "type": "object",
2070
- "properties": {
2071
- "value": {
2072
- "$ref": "#/components/schemas/slug"
2073
- }
2074
- }
2075
- },
2076
- "option_string": {
2077
- "type": "object",
2078
- "properties": {
2079
- "value": {
2080
- "type": "string"
2081
- }
2082
- }
2083
- },
2084
- "pageMetaImage": {
2085
- "type": "object",
2086
- "properties": {
2087
- "sanityType": {
2088
- "enum": [
2089
- 1
2090
- ],
2091
- "type": "integer",
2092
- "format": "int32",
2093
- "default": 1
2094
- },
2095
- "assetOption": {
2096
- "$ref": "#/components/schemas/option_sanityImageAssetReference"
2097
- },
2098
- "asset": {
2099
- "$ref": "#/components/schemas/sanityImageAssetReference"
2100
- },
2101
- "cropOption": {
2102
- "$ref": "#/components/schemas/option_sanityImageCrop"
2103
- },
2104
- "crop": {
2105
- "$ref": "#/components/schemas/sanityImageCrop"
2106
- },
2107
- "hotspotOption": {
2108
- "$ref": "#/components/schemas/option_sanityImageHotspot"
2109
- },
2110
- "hotspot": {
2111
- "$ref": "#/components/schemas/sanityImageHotspot"
2112
- },
2113
- "mediaOption": {
2114
- "$ref": "#/components/schemas/option_object"
2115
- },
2116
- "media": {
2117
- "type": "object"
1966
+ "type": "boolean"
2118
1967
  }
2119
1968
  }
2120
1969
  },
@@ -2208,199 +2057,122 @@
2208
2057
  "type": "boolean",
2209
2058
  "nullable": true
2210
2059
  },
2211
- "sanityTypeOption": {
2212
- "$ref": "#/components/schemas/option_nullable`1"
2213
- },
2214
2060
  "sanityType": {
2215
2061
  "enum": [
2216
- 1
2062
+ "event"
2217
2063
  ],
2218
- "type": "integer",
2219
- "format": "int32",
2220
- "default": 1,
2064
+ "type": "string",
2065
+ "default": "event",
2221
2066
  "nullable": true
2222
2067
  },
2223
- "statusOption": {
2224
- "$ref": "#/components/schemas/option_nullable`1"
2225
- },
2226
2068
  "status": {
2227
2069
  "enum": [
2228
- 1,
2229
- 2
2070
+ "active",
2071
+ "cancelled"
2230
2072
  ],
2231
- "type": "integer",
2232
- "format": "int32",
2233
- "default": 1,
2073
+ "type": "string",
2074
+ "default": "active",
2234
2075
  "nullable": true
2235
2076
  },
2236
- "allowDigitalParticipationOption": {
2237
- "$ref": "#/components/schemas/option_nullable`1"
2238
- },
2239
2077
  "allowDigitalParticipation": {
2240
2078
  "type": "boolean",
2241
2079
  "nullable": true
2242
2080
  },
2243
- "askForFeedbackOption": {
2244
- "$ref": "#/components/schemas/option_nullable`1"
2245
- },
2246
2081
  "askForFeedback": {
2247
2082
  "type": "boolean",
2248
2083
  "nullable": true
2249
2084
  },
2250
- "categoryOption": {
2251
- "$ref": "#/components/schemas/option_list`1"
2252
- },
2253
2085
  "category": {
2254
2086
  "type": "array",
2255
2087
  "items": {
2256
2088
  "type": "string"
2257
2089
  }
2258
2090
  },
2259
- "creatorOption": {
2260
- "$ref": "#/components/schemas/option_employeeReference"
2261
- },
2262
2091
  "creator": {
2263
2092
  "$ref": "#/components/schemas/employeeReference"
2264
2093
  },
2265
- "descriptionOption": {
2266
- "$ref": "#/components/schemas/option_string"
2267
- },
2268
2094
  "description": {
2269
2095
  "type": "string"
2270
2096
  },
2271
- "endTimeOption": {
2272
- "$ref": "#/components/schemas/option_string"
2273
- },
2274
2097
  "endTime": {
2275
2098
  "type": "string"
2276
2099
  },
2277
- "eventTypeOption": {
2278
- "$ref": "#/components/schemas/option_list`1"
2279
- },
2280
2100
  "eventType": {
2281
2101
  "type": "array",
2282
2102
  "items": {
2283
2103
  "$ref": "#/components/schemas/sanityCreateEventEventTypeInner"
2284
2104
  }
2285
2105
  },
2286
- "feedbackOption": {
2287
- "$ref": "#/components/schemas/option_list`1"
2288
- },
2289
2106
  "feedback": {
2290
2107
  "type": "array",
2291
2108
  "items": {
2292
2109
  "$ref": "#/components/schemas/sanityCreateEventFeedbackInner"
2293
2110
  }
2294
2111
  },
2295
- "invitationSentOption": {
2296
- "$ref": "#/components/schemas/option_nullable`1"
2297
- },
2298
- "isServingFoodOption": {
2299
- "$ref": "#/components/schemas/option_nullable`1"
2300
- },
2301
2112
  "isServingFood": {
2302
2113
  "type": "boolean",
2303
2114
  "nullable": true
2304
2115
  },
2305
- "linkOnlyOption": {
2306
- "$ref": "#/components/schemas/option_nullable`1"
2307
- },
2308
2116
  "linkOnly": {
2309
2117
  "type": "boolean",
2310
2118
  "nullable": true
2311
2119
  },
2312
- "manualMemoriesApprovalOption": {
2313
- "$ref": "#/components/schemas/option_nullable`1"
2314
- },
2315
2120
  "manualMemoriesApproval": {
2316
2121
  "type": "boolean",
2317
2122
  "nullable": true
2318
2123
  },
2319
- "maxParticipantsOption": {
2320
- "$ref": "#/components/schemas/option_nullable`1"
2321
- },
2322
2124
  "maxParticipants": {
2323
2125
  "type": "number",
2324
2126
  "format": "double",
2325
2127
  "nullable": true
2326
2128
  },
2327
- "mediaOption": {
2328
- "$ref": "#/components/schemas/option_componentMedia"
2329
- },
2330
2129
  "media": {
2331
2130
  "$ref": "#/components/schemas/componentMedia"
2332
2131
  },
2333
- "memoriesOption": {
2334
- "$ref": "#/components/schemas/option_list`1"
2335
- },
2336
2132
  "memories": {
2337
2133
  "type": "array",
2338
2134
  "items": {
2339
2135
  "$ref": "#/components/schemas/sanityCreateEventMemoriesInner"
2340
2136
  }
2341
2137
  },
2342
- "participantsOption": {
2343
- "$ref": "#/components/schemas/option_list`1"
2344
- },
2345
2138
  "participants": {
2346
2139
  "type": "array",
2347
2140
  "items": {
2348
2141
  "$ref": "#/components/schemas/sanityCreateEventParticipantsInner"
2349
2142
  }
2350
2143
  },
2351
- "participationStartOption": {
2352
- "$ref": "#/components/schemas/option_string"
2353
- },
2354
2144
  "participationStart": {
2355
2145
  "type": "string"
2356
2146
  },
2357
- "placeOption": {
2358
- "$ref": "#/components/schemas/option_string"
2359
- },
2360
2147
  "place": {
2361
2148
  "type": "string"
2362
2149
  },
2363
- "publicOption": {
2364
- "$ref": "#/components/schemas/option_nullable`1"
2365
- },
2366
2150
  "public": {
2367
2151
  "type": "boolean",
2368
2152
  "nullable": true
2369
2153
  },
2370
- "recurringIdOption": {
2371
- "$ref": "#/components/schemas/option_string"
2372
- },
2373
2154
  "recurringId": {
2374
2155
  "type": "string"
2375
2156
  },
2376
- "slugOption": {
2377
- "$ref": "#/components/schemas/option_slug"
2157
+ "slackTs": {
2158
+ "type": "string"
2378
2159
  },
2379
2160
  "slug": {
2380
2161
  "$ref": "#/components/schemas/slug"
2381
2162
  },
2382
- "teamsLinkOption": {
2383
- "$ref": "#/components/schemas/option_string"
2384
- },
2385
2163
  "teamsLink": {
2386
2164
  "type": "string"
2387
2165
  },
2388
- "timeOption": {
2389
- "$ref": "#/components/schemas/option_string"
2390
- },
2391
2166
  "time": {
2392
2167
  "type": "string"
2393
2168
  },
2394
- "titleOption": {
2395
- "$ref": "#/components/schemas/option_string"
2396
- },
2397
2169
  "title": {
2398
2170
  "type": "string"
2399
2171
  },
2400
2172
  "additionalProperties": {
2401
2173
  "type": "object",
2402
2174
  "additionalProperties": {
2403
- "$ref": "#/components/schemas/jsonElement"
2175
+ "type": "object"
2404
2176
  }
2405
2177
  }
2406
2178
  }
@@ -2414,7 +2186,7 @@
2414
2186
  "additionalProperties": {
2415
2187
  "type": "object",
2416
2188
  "additionalProperties": {
2417
- "$ref": "#/components/schemas/jsonElement"
2189
+ "type": "object"
2418
2190
  }
2419
2191
  }
2420
2192
  }
@@ -2457,11 +2229,10 @@
2457
2229
  "properties": {
2458
2230
  "sanityType": {
2459
2231
  "enum": [
2460
- 1
2232
+ "reference"
2461
2233
  ],
2462
- "type": "integer",
2463
- "format": "int32",
2464
- "default": 1
2234
+ "type": "string",
2235
+ "default": "reference"
2465
2236
  },
2466
2237
  "sanityKey": {
2467
2238
  "type": "string"
@@ -2469,12 +2240,8 @@
2469
2240
  "sanityRef": {
2470
2241
  "type": "string"
2471
2242
  },
2472
- "sanityWeakOption": {
2473
- "$ref": "#/components/schemas/option_nullable`1"
2474
- },
2475
2243
  "sanityWeak": {
2476
- "type": "boolean",
2477
- "nullable": true
2244
+ "type": "boolean"
2478
2245
  }
2479
2246
  }
2480
2247
  },
@@ -2483,11 +2250,17 @@
2483
2250
  "properties": {
2484
2251
  "sanityType": {
2485
2252
  "enum": [
2486
- 1
2253
+ "response"
2487
2254
  ],
2488
- "type": "integer",
2489
- "format": "int32",
2490
- "default": 1
2255
+ "type": "string",
2256
+ "default": "response"
2257
+ },
2258
+ "comment": {
2259
+ "type": "string"
2260
+ },
2261
+ "foodAndDrinkRating": {
2262
+ "type": "number",
2263
+ "format": "double"
2491
2264
  },
2492
2265
  "locationRating": {
2493
2266
  "type": "number",
@@ -2503,185 +2276,206 @@
2503
2276
  },
2504
2277
  "sanityKey": {
2505
2278
  "type": "string"
2506
- },
2507
- "commentOption": {
2508
- "$ref": "#/components/schemas/option_string"
2509
- },
2510
- "comment": {
2511
- "type": "string"
2512
- },
2513
- "foodAndDrinkRatingOption": {
2514
- "$ref": "#/components/schemas/option_nullable`1"
2515
- },
2516
- "foodAndDrinkRating": {
2517
- "type": "number",
2518
- "format": "double",
2519
- "nullable": true
2520
2279
  }
2521
2280
  }
2522
2281
  },
2523
2282
  "sanityCreateEventMemoriesInner": {
2524
2283
  "type": "object",
2525
2284
  "properties": {
2526
- "sanityCreateEventMemoriesInnerOneOf": {
2527
- "$ref": "#/components/schemas/sanityCreateEventMemoriesInnerOneOf"
2285
+ "actualInstance": {
2286
+ "type": "object"
2287
+ },
2288
+ "isNullable": {
2289
+ "type": "boolean"
2528
2290
  },
2529
- "sanityCreateEventMemoriesInnerOneOf1": {
2530
- "$ref": "#/components/schemas/sanityCreateEventMemoriesInnerOneOf1"
2291
+ "schemaType": {
2292
+ "type": "string"
2531
2293
  }
2532
2294
  }
2533
2295
  },
2534
- "sanityCreateEventMemoriesInnerOneOf": {
2296
+ "sanityCreateEventParticipantsInner": {
2535
2297
  "type": "object",
2536
2298
  "properties": {
2537
- "sanityType": {
2538
- "enum": [
2539
- 1
2540
- ],
2541
- "type": "integer",
2542
- "format": "int32",
2543
- "default": 1
2299
+ "actualInstance": {
2300
+ "type": "object"
2544
2301
  },
2545
- "image": {
2546
- "$ref": "#/components/schemas/pageMetaImage"
2302
+ "isNullable": {
2303
+ "type": "boolean"
2547
2304
  },
2548
- "sanityKey": {
2305
+ "schemaType": {
2549
2306
  "type": "string"
2550
- },
2551
- "approvedOption": {
2552
- "$ref": "#/components/schemas/option_nullable`1"
2553
- },
2554
- "approved": {
2555
- "type": "boolean",
2556
- "nullable": true
2557
2307
  }
2558
2308
  }
2559
2309
  },
2560
- "sanityCreateEventMemoriesInnerOneOf1": {
2310
+ "sanityCreateMemory": {
2561
2311
  "type": "object",
2562
2312
  "properties": {
2563
2313
  "sanityType": {
2564
2314
  "enum": [
2565
- 1
2315
+ "memory.image",
2316
+ "memory.video"
2566
2317
  ],
2567
- "type": "integer",
2568
- "format": "int32",
2569
- "default": 1
2318
+ "type": "string",
2319
+ "default": "memory.image"
2570
2320
  },
2571
- "sanityKey": {
2321
+ "filename": {
2572
2322
  "type": "string"
2573
2323
  },
2574
- "video": {
2575
- "$ref": "#/components/schemas/muxVideo"
2576
- },
2577
- "approvedOption": {
2578
- "$ref": "#/components/schemas/option_nullable`1"
2579
- },
2580
- "approved": {
2581
- "type": "boolean",
2582
- "nullable": true
2583
- }
2584
- }
2585
- },
2586
- "sanityCreateEventParticipantsInner": {
2587
- "type": "object",
2588
- "properties": {
2589
- "sanityCreateEventParticipantsInnerOneOf": {
2590
- "$ref": "#/components/schemas/sanityCreateEventParticipantsInnerOneOf"
2324
+ "mediaUrl": {
2325
+ "type": "string"
2591
2326
  },
2592
- "sanityCreateEventParticipantsInnerOneOf1": {
2593
- "$ref": "#/components/schemas/sanityCreateEventParticipantsInnerOneOf1"
2327
+ "additionalProperties": {
2328
+ "type": "object",
2329
+ "additionalProperties": {
2330
+ "type": "object"
2331
+ }
2594
2332
  }
2595
2333
  }
2596
2334
  },
2597
- "sanityCreateEventParticipantsInnerOneOf": {
2335
+ "sanityEvent": {
2598
2336
  "type": "object",
2599
2337
  "properties": {
2600
2338
  "sanityType": {
2601
2339
  "enum": [
2602
- 1
2340
+ "event"
2603
2341
  ],
2604
- "type": "integer",
2605
- "format": "int32",
2606
- "default": 1
2342
+ "type": "string",
2343
+ "default": "event"
2607
2344
  },
2608
- "employee": {
2609
- "$ref": "#/components/schemas/employeeReference"
2345
+ "status": {
2346
+ "enum": [
2347
+ "active",
2348
+ "cancelled"
2349
+ ],
2350
+ "type": "string",
2351
+ "default": "active"
2610
2352
  },
2611
- "feedbackSubmitted": {
2353
+ "allowDigitalParticipation": {
2612
2354
  "type": "boolean"
2613
2355
  },
2614
- "registered": {
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": {
2615
2369
  "type": "string"
2616
2370
  },
2617
- "sanityKey": {
2371
+ "endTime": {
2618
2372
  "type": "string"
2619
2373
  },
2620
- "token": {
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": {
2621
2418
  "type": "string"
2622
- }
2623
- }
2624
- },
2625
- "sanityCreateEventParticipantsInnerOneOf1": {
2626
- "type": "object",
2627
- "properties": {
2628
- "sanityType": {
2629
- "enum": [
2630
- 1
2631
- ],
2632
- "type": "integer",
2633
- "format": "int32",
2634
- "default": 1
2635
2419
  },
2636
- "email": {
2420
+ "place": {
2637
2421
  "type": "string"
2638
2422
  },
2639
- "feedbackSubmitted": {
2423
+ "public": {
2640
2424
  "type": "boolean"
2641
2425
  },
2642
- "name": {
2426
+ "recurringId": {
2643
2427
  "type": "string"
2644
2428
  },
2645
- "registered": {
2429
+ "sanityCreatedAt": {
2646
2430
  "type": "string"
2647
2431
  },
2648
- "sanityKey": {
2432
+ "sanityId": {
2649
2433
  "type": "string"
2650
2434
  },
2651
- "token": {
2435
+ "sanityRev": {
2652
2436
  "type": "string"
2653
2437
  },
2654
- "detailsOption": {
2655
- "$ref": "#/components/schemas/option_string"
2438
+ "sanityUpdatedAt": {
2439
+ "type": "string"
2656
2440
  },
2657
- "details": {
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": {
2658
2454
  "type": "string"
2659
2455
  }
2660
2456
  }
2661
2457
  },
2662
- "sanityCreateMemory": {
2458
+ "sanityEventEventTypeInner": {
2663
2459
  "type": "object",
2664
2460
  "properties": {
2665
2461
  "sanityType": {
2666
2462
  "enum": [
2667
- 1,
2668
- 2
2463
+ "eventType"
2669
2464
  ],
2670
- "type": "integer",
2671
- "format": "int32",
2672
- "default": 1
2465
+ "type": "string",
2466
+ "default": "eventType"
2673
2467
  },
2674
- "filename": {
2468
+ "canSubscribe": {
2469
+ "type": "boolean"
2470
+ },
2471
+ "name": {
2675
2472
  "type": "string"
2676
2473
  },
2677
- "mediaUrl": {
2474
+ "sanityId": {
2678
2475
  "type": "string"
2679
2476
  },
2680
- "additionalProperties": {
2681
- "type": "object",
2682
- "additionalProperties": {
2683
- "$ref": "#/components/schemas/jsonElement"
2684
- }
2477
+ "slug": {
2478
+ "$ref": "#/components/schemas/slug"
2685
2479
  }
2686
2480
  }
2687
2481
  },
@@ -2690,11 +2484,17 @@
2690
2484
  "properties": {
2691
2485
  "sanityType": {
2692
2486
  "enum": [
2693
- 1
2487
+ "response"
2694
2488
  ],
2695
- "type": "integer",
2696
- "format": "int32",
2697
- "default": 1
2489
+ "type": "string",
2490
+ "default": "response"
2491
+ },
2492
+ "comment": {
2493
+ "type": "string"
2494
+ },
2495
+ "foodAndDrinkRating": {
2496
+ "type": "number",
2497
+ "format": "double"
2698
2498
  },
2699
2499
  "locationRating": {
2700
2500
  "type": "number",
@@ -2710,77 +2510,34 @@
2710
2510
  },
2711
2511
  "sanityKey": {
2712
2512
  "type": "string"
2713
- },
2714
- "commentOption": {
2715
- "$ref": "#/components/schemas/option_string"
2716
- },
2717
- "comment": {
2718
- "type": "string"
2719
- },
2720
- "foodAndDrinkRatingOption": {
2721
- "$ref": "#/components/schemas/option_nullable`1"
2722
- },
2723
- "foodAndDrinkRating": {
2724
- "type": "number",
2725
- "format": "double",
2726
- "nullable": true
2727
2513
  }
2728
2514
  }
2729
2515
  },
2730
2516
  "sanityEventMemoriesInner": {
2731
2517
  "type": "object",
2732
2518
  "properties": {
2733
- "sanityEventMemoriesInnerOneOf": {
2734
- "$ref": "#/components/schemas/sanityEventMemoriesInnerOneOf"
2519
+ "actualInstance": {
2520
+ "type": "object"
2735
2521
  },
2736
- "sanityEventMemoriesInnerOneOf1": {
2737
- "$ref": "#/components/schemas/sanityEventMemoriesInnerOneOf1"
2738
- }
2739
- }
2740
- },
2741
- "sanityEventMemoriesInnerOneOf": {
2742
- "type": "object",
2743
- "properties": {
2744
- "sanityType": {
2745
- "enum": [
2746
- 1
2747
- ],
2748
- "type": "integer",
2749
- "format": "int32",
2750
- "default": 1
2522
+ "isNullable": {
2523
+ "type": "boolean"
2751
2524
  },
2752
- "sanityKey": {
2525
+ "schemaType": {
2753
2526
  "type": "string"
2754
- },
2755
- "approved": {
2756
- "type": "boolean",
2757
- "nullable": true
2758
- },
2759
- "asset": {
2760
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2761
2527
  }
2762
2528
  }
2763
2529
  },
2764
- "sanityEventMemoriesInnerOneOf1": {
2530
+ "sanityEventParticipantsInner": {
2765
2531
  "type": "object",
2766
2532
  "properties": {
2767
- "sanityType": {
2768
- "enum": [
2769
- 1
2770
- ],
2771
- "type": "integer",
2772
- "format": "int32",
2773
- "default": 1
2774
- },
2775
- "sanityKey": {
2776
- "type": "string"
2533
+ "actualInstance": {
2534
+ "type": "object"
2777
2535
  },
2778
- "approved": {
2779
- "type": "boolean",
2780
- "nullable": true
2536
+ "isNullable": {
2537
+ "type": "boolean"
2781
2538
  },
2782
- "asset": {
2783
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset"
2539
+ "schemaType": {
2540
+ "type": "string"
2784
2541
  }
2785
2542
  }
2786
2543
  },
@@ -2789,21 +2546,16 @@
2789
2546
  "properties": {
2790
2547
  "sanityType": {
2791
2548
  "enum": [
2792
- 1
2549
+ "reference"
2793
2550
  ],
2794
- "type": "integer",
2795
- "format": "int32",
2796
- "default": 1
2551
+ "type": "string",
2552
+ "default": "reference"
2797
2553
  },
2798
2554
  "sanityRef": {
2799
2555
  "type": "string"
2800
2556
  },
2801
- "sanityWeakOption": {
2802
- "$ref": "#/components/schemas/option_nullable`1"
2803
- },
2804
2557
  "sanityWeak": {
2805
- "type": "boolean",
2806
- "nullable": true
2558
+ "type": "boolean"
2807
2559
  }
2808
2560
  }
2809
2561
  },
@@ -2812,11 +2564,10 @@
2812
2564
  "properties": {
2813
2565
  "sanityType": {
2814
2566
  "enum": [
2815
- 1
2567
+ "sanity.imageCrop"
2816
2568
  ],
2817
- "type": "integer",
2818
- "format": "int32",
2819
- "default": 1
2569
+ "type": "string",
2570
+ "default": "sanity.imageCrop"
2820
2571
  },
2821
2572
  "bottom": {
2822
2573
  "type": "number",
@@ -2841,11 +2592,10 @@
2841
2592
  "properties": {
2842
2593
  "sanityType": {
2843
2594
  "enum": [
2844
- 1
2595
+ "sanity.imageHotspot"
2845
2596
  ],
2846
- "type": "integer",
2847
- "format": "int32",
2848
- "default": 1
2597
+ "type": "string",
2598
+ "default": "sanity.imageHotspot"
2849
2599
  },
2850
2600
  "height": {
2851
2601
  "type": "number",
@@ -2870,17 +2620,24 @@
2870
2620
  "properties": {
2871
2621
  "sanityType": {
2872
2622
  "enum": [
2873
- 1
2623
+ "employee"
2874
2624
  ],
2875
- "type": "integer",
2876
- "format": "int32",
2877
- "default": 1
2625
+ "type": "string",
2626
+ "default": "employee"
2878
2627
  },
2879
2628
  "email": {
2880
2629
  "type": "string"
2881
2630
  },
2882
2631
  "image": {
2883
- "$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
2884
2641
  },
2885
2642
  "name": {
2886
2643
  "type": "string"
@@ -2891,54 +2648,40 @@
2891
2648
  "slug": {
2892
2649
  "$ref": "#/components/schemas/slug"
2893
2650
  },
2894
- "telephone": {
2895
- "type": "string"
2896
- },
2897
2651
  "tags": {
2898
2652
  "type": "array",
2899
2653
  "items": {
2900
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2654
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsEmployeesInnerTagsInner"
2901
2655
  }
2656
+ },
2657
+ "telephone": {
2658
+ "type": "string"
2902
2659
  }
2903
2660
  }
2904
2661
  },
2905
2662
  "sanityTechnologyWithRelationsArticlesInnerMedia": {
2906
2663
  "type": "object",
2907
2664
  "properties": {
2908
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2909
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2665
+ "actualInstance": {
2666
+ "type": "object"
2910
2667
  },
2911
- "sanityTechnologyWithRelationsProjectsInnerMediaOneOf": {
2912
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerMediaOneOf"
2913
- }
2914
- }
2915
- },
2916
- "sanityTechnologyWithRelationsProjectsInnerMediaOneOf": {
2917
- "type": "object",
2918
- "properties": {
2919
- "sanityType": {
2920
- "enum": [
2921
- 1
2922
- ],
2923
- "type": "integer",
2924
- "format": "int32",
2925
- "default": 1
2668
+ "isNullable": {
2669
+ "type": "boolean"
2926
2670
  },
2927
- "asset": {
2928
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset"
2671
+ "schemaType": {
2672
+ "type": "string"
2929
2673
  }
2930
2674
  }
2931
2675
  },
2932
- "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
2676
+ "sanityTechnologyWithRelationsEmployeesInnerTagsInner": {
2933
2677
  "type": "object",
2934
2678
  "properties": {
2935
2679
  "sanityType": {
2936
2680
  "enum": [
2937
- 1
2681
+ "tag"
2938
2682
  ],
2939
- "type": "integer",
2940
- "format": "int32",
2941
- "default": 1
2683
+ "type": "string",
2684
+ "default": "tag"
2942
2685
  },
2943
2686
  "name": {
2944
2687
  "type": "string"
@@ -2951,38 +2694,15 @@
2951
2694
  }
2952
2695
  }
2953
2696
  },
2954
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerContentInnerOneOf4MediaInnerOneOf1Asset": {
2955
- "type": "object",
2956
- "properties": {
2957
- "sanityType": {
2958
- "enum": [
2959
- 1
2960
- ],
2961
- "type": "integer",
2962
- "format": "int32",
2963
- "default": 1
2964
- },
2965
- "sanityId": {
2966
- "type": "string"
2967
- },
2968
- "filename": {
2969
- "type": "string"
2970
- },
2971
- "playbackId": {
2972
- "type": "string"
2973
- }
2974
- }
2975
- },
2976
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2697
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
2977
2698
  "type": "object",
2978
2699
  "properties": {
2979
2700
  "sanityType": {
2980
2701
  "enum": [
2981
- 1
2702
+ "image"
2982
2703
  ],
2983
- "type": "integer",
2984
- "format": "int32",
2985
- "default": 1
2704
+ "type": "string",
2705
+ "default": "image"
2986
2706
  },
2987
2707
  "asset": {
2988
2708
  "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
@@ -2994,22 +2714,21 @@
2994
2714
  "properties": {
2995
2715
  "sanityType": {
2996
2716
  "enum": [
2997
- 1
2717
+ "sanity.imageAsset"
2998
2718
  ],
2999
- "type": "integer",
3000
- "format": "int32",
3001
- "default": 1
2719
+ "type": "string",
2720
+ "default": "sanity.imageAsset"
3002
2721
  },
3003
2722
  "mimeType": {
3004
2723
  "type": "string"
3005
2724
  },
3006
- "sanityId": {
2725
+ "originalFilename": {
3007
2726
  "type": "string"
3008
2727
  },
3009
- "url": {
2728
+ "sanityId": {
3010
2729
  "type": "string"
3011
2730
  },
3012
- "originalFilename": {
2731
+ "url": {
3013
2732
  "type": "string"
3014
2733
  }
3015
2734
  }
@@ -3019,18 +2738,14 @@
3019
2738
  "properties": {
3020
2739
  "sanityType": {
3021
2740
  "enum": [
3022
- 1
2741
+ "slug"
3023
2742
  ],
3024
- "type": "integer",
3025
- "format": "int32",
3026
- "default": 1
2743
+ "type": "string",
2744
+ "default": "slug"
3027
2745
  },
3028
2746
  "current": {
3029
2747
  "type": "string"
3030
2748
  },
3031
- "sourceOption": {
3032
- "$ref": "#/components/schemas/option_string"
3033
- },
3034
2749
  "source": {
3035
2750
  "type": "string"
3036
2751
  }
@@ -3058,14 +2773,19 @@
3058
2773
  "type": "oauth2",
3059
2774
  "flows": {
3060
2775
  "implicit": {
3061
- "authorizationUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/authorize",
3062
- "tokenUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
3063
- "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",
3064
2779
  "scopes": {
3065
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default": "Default function scope"
2780
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default": "Default function scope"
3066
2781
  }
3067
2782
  }
3068
2783
  }
2784
+ },
2785
+ "ApiKey": {
2786
+ "type": "http",
2787
+ "scheme": "bearer",
2788
+ "bearerFormat": "JWT"
3069
2789
  }
3070
2790
  }
3071
2791
  }