@snokam/mcp-api 2.61.1 → 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 +2931 -2321
  19. package/specs/production/blog.json +747 -1497
  20. package/specs/production/broker.json +54 -25
  21. package/specs/production/chatgpt.json +570 -207
  22. package/specs/production/employees.json +2697 -1823
  23. package/specs/production/events.json +615 -974
  24. package/specs/production/notifications.json +329 -15
  25. package/specs/production/office.json +818 -836
  26. package/specs/production/recruitment.json +1883 -1207
  27. package/specs/production/sales.json +2909 -1172
  28. package/specs/production/sanity.json +47384 -16348
  29. package/specs/production/sync.json +116 -20
  30. package/specs/production/webshop.json +37 -17
  31. package/specs/test/accounting.json +2931 -2321
  32. package/specs/test/blog.json +747 -1497
  33. package/specs/test/broker.json +54 -25
  34. package/specs/test/chatgpt.json +570 -207
  35. package/specs/test/employees.json +2697 -1823
  36. package/specs/test/events.json +615 -974
  37. package/specs/test/notifications.json +329 -15
  38. package/specs/test/office.json +818 -836
  39. package/specs/test/recruitment.json +1883 -1207
  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
  ]
@@ -371,7 +357,7 @@
371
357
  "content": {
372
358
  "application/json": {
373
359
  "schema": {
374
- "$ref": "#/components/schemas/sanityAzureBlobStorageCredentials"
360
+ "$ref": "#/components/schemas/azureBlobStorageCredentials"
375
361
  }
376
362
  }
377
363
  },
@@ -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
  }
@@ -991,7 +1071,7 @@
991
1071
  "content": {
992
1072
  "application/json": {
993
1073
  "schema": {
994
- "$ref": "#/components/schemas/sanityPatchEventMemory"
1074
+ "$ref": "#/components/schemas/patchEventMemory"
995
1075
  }
996
1076
  }
997
1077
  },
@@ -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
  }
@@ -1313,15 +1403,22 @@
1313
1403
  "properties": {
1314
1404
  "token": {
1315
1405
  "minLength": 1,
1316
- "type": "string"
1406
+ "type": "string",
1407
+ "nullable": true
1317
1408
  },
1318
1409
  "sanityType": {
1319
1410
  "enum": [
1320
- 1
1411
+ "response"
1321
1412
  ],
1322
- "type": "integer",
1323
- "format": "int32",
1324
- "default": 1
1413
+ "type": "string",
1414
+ "default": "response"
1415
+ },
1416
+ "comment": {
1417
+ "type": "string"
1418
+ },
1419
+ "foodAndDrinkRating": {
1420
+ "type": "number",
1421
+ "format": "double"
1325
1422
  },
1326
1423
  "locationRating": {
1327
1424
  "type": "number",
@@ -1335,24 +1432,27 @@
1335
1432
  "type": "number",
1336
1433
  "format": "double"
1337
1434
  },
1338
- "commentOption": {
1339
- "$ref": "#/components/schemas/option_string"
1340
- },
1341
- "comment": {
1435
+ "additionalProperties": {
1436
+ "type": "object",
1437
+ "additionalProperties": {
1438
+ "type": "object"
1439
+ }
1440
+ }
1441
+ }
1442
+ },
1443
+ "azureBlobStorageCredentials": {
1444
+ "type": "object",
1445
+ "properties": {
1446
+ "blobUrl": {
1342
1447
  "type": "string"
1343
1448
  },
1344
- "foodAndDrinkRatingOption": {
1345
- "$ref": "#/components/schemas/option_nullable`1"
1346
- },
1347
- "foodAndDrinkRating": {
1348
- "type": "number",
1349
- "format": "double",
1350
- "nullable": true
1449
+ "sasToken": {
1450
+ "type": "string"
1351
1451
  },
1352
1452
  "additionalProperties": {
1353
1453
  "type": "object",
1354
1454
  "additionalProperties": {
1355
- "$ref": "#/components/schemas/jsonElement"
1455
+ "type": "object"
1356
1456
  }
1357
1457
  }
1358
1458
  }
@@ -1366,174 +1466,180 @@
1366
1466
  }
1367
1467
  }
1368
1468
  },
1469
+ "componentMedia": {
1470
+ "type": "object",
1471
+ "properties": {
1472
+ "sanityType": {
1473
+ "enum": [
1474
+ "component.media"
1475
+ ],
1476
+ "type": "string",
1477
+ "default": "component.media"
1478
+ },
1479
+ "type": {
1480
+ "enum": [
1481
+ "image",
1482
+ "video"
1483
+ ],
1484
+ "type": "string",
1485
+ "default": "image"
1486
+ },
1487
+ "image": {
1488
+ "$ref": "#/components/schemas/componentMediaImage"
1489
+ },
1490
+ "video": {
1491
+ "$ref": "#/components/schemas/muxVideo"
1492
+ }
1493
+ }
1494
+ },
1495
+ "componentMediaImage": {
1496
+ "type": "object",
1497
+ "properties": {
1498
+ "sanityType": {
1499
+ "enum": [
1500
+ "image"
1501
+ ],
1502
+ "type": "string",
1503
+ "default": "image"
1504
+ },
1505
+ "asset": {
1506
+ "$ref": "#/components/schemas/sanityImageAssetReference"
1507
+ },
1508
+ "crop": {
1509
+ "$ref": "#/components/schemas/sanityImageCrop"
1510
+ },
1511
+ "hotspot": {
1512
+ "$ref": "#/components/schemas/sanityImageHotspot"
1513
+ },
1514
+ "media": {
1515
+ "type": "object"
1516
+ }
1517
+ }
1518
+ },
1369
1519
  "createEvent": {
1370
1520
  "type": "object",
1371
1521
  "properties": {
1372
1522
  "status": {
1373
1523
  "enum": [
1374
- 1,
1375
- 2
1524
+ "active",
1525
+ "cancelled"
1376
1526
  ],
1377
- "type": "integer",
1378
- "format": "int32",
1379
- "default": 1
1527
+ "type": "string",
1528
+ "default": "active"
1380
1529
  },
1381
1530
  "dates": {
1382
1531
  "type": "array",
1383
1532
  "items": {
1384
1533
  "type": "string",
1385
1534
  "format": "date-time"
1386
- }
1535
+ },
1536
+ "nullable": true
1387
1537
  },
1388
1538
  "file": {
1389
1539
  "$ref": "#/components/schemas/createEventFile"
1390
1540
  },
1391
1541
  "sanityType": {
1392
1542
  "enum": [
1393
- 1
1543
+ "event"
1394
1544
  ],
1395
- "type": "integer",
1396
- "format": "int32",
1397
- "default": 1
1545
+ "type": "string",
1546
+ "default": "event"
1547
+ },
1548
+ "allowDigitalParticipation": {
1549
+ "type": "boolean"
1398
1550
  },
1399
1551
  "askForFeedback": {
1400
1552
  "type": "boolean"
1401
1553
  },
1554
+ "category": {
1555
+ "type": "array",
1556
+ "items": {
1557
+ "type": "string"
1558
+ }
1559
+ },
1402
1560
  "creator": {
1403
- "$ref": "#/components/schemas/sanityEmployeeReference"
1561
+ "$ref": "#/components/schemas/employeeReference"
1404
1562
  },
1405
1563
  "description": {
1406
1564
  "type": "string"
1407
1565
  },
1566
+ "endTime": {
1567
+ "type": "string"
1568
+ },
1408
1569
  "eventType": {
1409
1570
  "type": "array",
1410
1571
  "items": {
1411
1572
  "$ref": "#/components/schemas/sanityCreateEventEventTypeInner"
1412
1573
  }
1413
1574
  },
1414
- "linkOnly": {
1415
- "type": "boolean"
1575
+ "feedback": {
1576
+ "type": "array",
1577
+ "items": {
1578
+ "$ref": "#/components/schemas/sanityCreateEventFeedbackInner"
1579
+ }
1416
1580
  },
1417
- "manualMemoriesApproval": {
1581
+ "invitationSent": {
1418
1582
  "type": "boolean"
1419
1583
  },
1420
- "public": {
1584
+ "isServingFood": {
1421
1585
  "type": "boolean"
1422
1586
  },
1423
- "slug": {
1424
- "$ref": "#/components/schemas/sanitySlug"
1425
- },
1426
- "time": {
1427
- "type": "string"
1587
+ "linkOnly": {
1588
+ "type": "boolean"
1428
1589
  },
1429
- "title": {
1430
- "type": "string"
1590
+ "manualMemoriesApproval": {
1591
+ "type": "boolean"
1431
1592
  },
1432
- "allowDigitalParticipationOption": {
1433
- "$ref": "#/components/schemas/option_nullable`1"
1593
+ "maxParticipants": {
1594
+ "type": "number",
1595
+ "format": "double"
1434
1596
  },
1435
- "allowDigitalParticipation": {
1436
- "type": "boolean",
1437
- "nullable": true
1597
+ "media": {
1598
+ "$ref": "#/components/schemas/componentMedia"
1438
1599
  },
1439
- "categoryOption": {
1440
- "$ref": "#/components/schemas/option_list`1"
1600
+ "memories": {
1601
+ "type": "array",
1602
+ "items": {
1603
+ "$ref": "#/components/schemas/sanityCreateEventMemoriesInner"
1604
+ }
1441
1605
  },
1442
- "category": {
1606
+ "participants": {
1443
1607
  "type": "array",
1444
1608
  "items": {
1445
- "type": "string"
1609
+ "$ref": "#/components/schemas/sanityCreateEventParticipantsInner"
1446
1610
  }
1447
1611
  },
1448
- "endTimeOption": {
1449
- "$ref": "#/components/schemas/option_string"
1612
+ "participationStart": {
1613
+ "type": "string"
1450
1614
  },
1451
- "endTime": {
1615
+ "place": {
1452
1616
  "type": "string"
1453
1617
  },
1454
- "feedbackOption": {
1455
- "$ref": "#/components/schemas/option_list`1"
1456
- },
1457
- "feedback": {
1458
- "type": "array",
1459
- "items": {
1460
- "$ref": "#/components/schemas/sanityCreateEventFeedbackInner"
1461
- }
1462
- },
1463
- "invitationSentOption": {
1464
- "$ref": "#/components/schemas/option_nullable`1"
1465
- },
1466
- "invitationSent": {
1467
- "type": "boolean",
1468
- "nullable": true
1469
- },
1470
- "isServingFoodOption": {
1471
- "$ref": "#/components/schemas/option_nullable`1"
1472
- },
1473
- "isServingFood": {
1474
- "type": "boolean",
1475
- "nullable": true
1476
- },
1477
- "maxParticipantsOption": {
1478
- "$ref": "#/components/schemas/option_nullable`1"
1479
- },
1480
- "maxParticipants": {
1481
- "type": "number",
1482
- "format": "double",
1483
- "nullable": true
1484
- },
1485
- "mediaOption": {
1486
- "$ref": "#/components/schemas/option_sanityComponentMedia"
1487
- },
1488
- "media": {
1489
- "$ref": "#/components/schemas/sanityComponentMedia"
1490
- },
1491
- "memoriesOption": {
1492
- "$ref": "#/components/schemas/option_list`1"
1493
- },
1494
- "memories": {
1495
- "type": "array",
1496
- "items": {
1497
- "$ref": "#/components/schemas/sanityCreateEventMemoriesInner"
1498
- }
1499
- },
1500
- "participantsOption": {
1501
- "$ref": "#/components/schemas/option_list`1"
1502
- },
1503
- "participants": {
1504
- "type": "array",
1505
- "items": {
1506
- "$ref": "#/components/schemas/sanityCreateEventParticipantsInner"
1507
- }
1508
- },
1509
- "participationStartOption": {
1510
- "$ref": "#/components/schemas/option_string"
1618
+ "public": {
1619
+ "type": "boolean"
1511
1620
  },
1512
- "participationStart": {
1621
+ "recurringId": {
1513
1622
  "type": "string"
1514
1623
  },
1515
- "placeOption": {
1516
- "$ref": "#/components/schemas/option_string"
1517
- },
1518
- "place": {
1624
+ "slackTs": {
1519
1625
  "type": "string"
1520
1626
  },
1521
- "recurringIdOption": {
1522
- "$ref": "#/components/schemas/option_string"
1627
+ "slug": {
1628
+ "$ref": "#/components/schemas/slug"
1523
1629
  },
1524
- "recurringId": {
1630
+ "teamsLink": {
1525
1631
  "type": "string"
1526
1632
  },
1527
- "teamsLinkOption": {
1528
- "$ref": "#/components/schemas/option_string"
1633
+ "time": {
1634
+ "type": "string"
1529
1635
  },
1530
- "teamsLink": {
1636
+ "title": {
1531
1637
  "type": "string"
1532
1638
  },
1533
1639
  "additionalProperties": {
1534
1640
  "type": "object",
1535
1641
  "additionalProperties": {
1536
- "$ref": "#/components/schemas/jsonElement"
1642
+ "type": "object"
1537
1643
  }
1538
1644
  }
1539
1645
  }
@@ -1542,13 +1648,35 @@
1542
1648
  "type": "object",
1543
1649
  "properties": {
1544
1650
  "type": {
1545
- "type": "string"
1651
+ "type": "string",
1652
+ "nullable": true
1546
1653
  },
1547
1654
  "url": {
1548
- "type": "string"
1655
+ "type": "string",
1656
+ "nullable": true
1549
1657
  },
1550
1658
  "filename": {
1659
+ "type": "string",
1660
+ "nullable": true
1661
+ }
1662
+ },
1663
+ "nullable": true
1664
+ },
1665
+ "employeeReference": {
1666
+ "type": "object",
1667
+ "properties": {
1668
+ "sanityType": {
1669
+ "enum": [
1670
+ "reference"
1671
+ ],
1672
+ "type": "string",
1673
+ "default": "reference"
1674
+ },
1675
+ "sanityRef": {
1551
1676
  "type": "string"
1677
+ },
1678
+ "sanityWeak": {
1679
+ "type": "boolean"
1552
1680
  }
1553
1681
  }
1554
1682
  },
@@ -1604,7 +1732,7 @@
1604
1732
  }
1605
1733
  },
1606
1734
  "media": {
1607
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerMedia"
1735
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
1608
1736
  },
1609
1737
  "unapprovedMediaCount": {
1610
1738
  "type": "integer",
@@ -1781,44 +1909,24 @@
1781
1909
  }
1782
1910
  }
1783
1911
  },
1784
- "invitationPreviewResponse": {
1785
- "type": "object",
1786
- "properties": {
1787
- "emails": {
1788
- "type": "array",
1789
- "items": {
1790
- "type": "string"
1791
- }
1792
- }
1793
- }
1794
- },
1795
- "jsonElement": {
1912
+ "integrationHealthResult": {
1796
1913
  "type": "object",
1797
1914
  "properties": {
1798
- "valueKind": {
1799
- "enum": [
1800
- 0,
1801
- 1,
1802
- 2,
1803
- 3,
1804
- 4,
1805
- 5,
1806
- 6,
1807
- 7
1808
- ],
1809
- "type": "integer",
1810
- "format": "int32",
1811
- "default": 0
1915
+ "key": {
1916
+ "type": "string"
1917
+ },
1918
+ "status": {
1919
+ "type": "string"
1812
1920
  },
1813
- "item": {
1814
- "$ref": "#/components/schemas/jsonElement"
1921
+ "message": {
1922
+ "type": "string"
1815
1923
  }
1816
1924
  }
1817
1925
  },
1818
- "option_list`1": {
1926
+ "invitationPreviewResponse": {
1819
1927
  "type": "object",
1820
1928
  "properties": {
1821
- "value": {
1929
+ "emails": {
1822
1930
  "type": "array",
1823
1931
  "items": {
1824
1932
  "type": "string"
@@ -1826,117 +1934,36 @@
1826
1934
  }
1827
1935
  }
1828
1936
  },
1829
- "option_nullable`1": {
1830
- "type": "object",
1831
- "properties": {
1832
- "value": {
1833
- "type": "number",
1834
- "format": "double",
1835
- "nullable": true
1836
- }
1837
- }
1838
- },
1839
- "option_object": {
1840
- "type": "object",
1841
- "properties": {
1842
- "value": {
1843
- "type": "object"
1844
- }
1845
- }
1846
- },
1847
- "option_sanityComponentMedia": {
1848
- "type": "object",
1849
- "properties": {
1850
- "value": {
1851
- "$ref": "#/components/schemas/sanityComponentMedia"
1852
- }
1853
- }
1854
- },
1855
- "option_sanityComponentMediaImage": {
1856
- "type": "object",
1857
- "properties": {
1858
- "value": {
1859
- "$ref": "#/components/schemas/sanityComponentMediaImage"
1860
- }
1861
- }
1862
- },
1863
- "option_sanityEmployeeReference": {
1864
- "type": "object",
1865
- "properties": {
1866
- "value": {
1867
- "$ref": "#/components/schemas/sanityEmployeeReference"
1868
- }
1869
- }
1870
- },
1871
- "option_sanityImageAssetReference": {
1872
- "type": "object",
1873
- "properties": {
1874
- "value": {
1875
- "$ref": "#/components/schemas/sanityImageAssetReference"
1876
- }
1877
- }
1878
- },
1879
- "option_sanityImageCrop": {
1880
- "type": "object",
1881
- "properties": {
1882
- "value": {
1883
- "$ref": "#/components/schemas/sanityImageCrop"
1884
- }
1885
- }
1886
- },
1887
- "option_sanityImageHotspot": {
1888
- "type": "object",
1889
- "properties": {
1890
- "value": {
1891
- "$ref": "#/components/schemas/sanityImageHotspot"
1892
- }
1893
- }
1894
- },
1895
- "option_sanityMuxVideo": {
1896
- "type": "object",
1897
- "properties": {
1898
- "value": {
1899
- "$ref": "#/components/schemas/sanityMuxVideo"
1900
- }
1901
- }
1902
- },
1903
- "option_sanityMuxVideoAssetReference": {
1904
- "type": "object",
1905
- "properties": {
1906
- "value": {
1907
- "$ref": "#/components/schemas/sanityMuxVideoAssetReference"
1908
- }
1909
- }
1910
- },
1911
- "option_sanitySlug": {
1912
- "type": "object",
1913
- "properties": {
1914
- "value": {
1915
- "$ref": "#/components/schemas/sanitySlug"
1916
- }
1917
- }
1918
- },
1919
- "option_sanityTvCategoryDashboardsInnerBackgroundImageAsset": {
1920
- "type": "object",
1921
- "properties": {
1922
- "value": {
1923
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
1924
- }
1925
- }
1926
- },
1927
- "option_sanityVideoMemoryAsset": {
1937
+ "muxVideo": {
1928
1938
  "type": "object",
1929
1939
  "properties": {
1930
- "value": {
1931
- "$ref": "#/components/schemas/sanityVideoMemoryAsset"
1940
+ "sanityType": {
1941
+ "enum": [
1942
+ "mux.video"
1943
+ ],
1944
+ "type": "string",
1945
+ "default": "mux.video"
1946
+ },
1947
+ "asset": {
1948
+ "$ref": "#/components/schemas/muxVideoAssetReference"
1932
1949
  }
1933
1950
  }
1934
1951
  },
1935
- "option_string": {
1952
+ "muxVideoAssetReference": {
1936
1953
  "type": "object",
1937
1954
  "properties": {
1938
- "value": {
1955
+ "sanityType": {
1956
+ "enum": [
1957
+ "reference"
1958
+ ],
1959
+ "type": "string",
1960
+ "default": "reference"
1961
+ },
1962
+ "sanityRef": {
1939
1963
  "type": "string"
1964
+ },
1965
+ "sanityWeak": {
1966
+ "type": "boolean"
1940
1967
  }
1941
1968
  }
1942
1969
  },
@@ -2030,130 +2057,77 @@
2030
2057
  "type": "boolean",
2031
2058
  "nullable": true
2032
2059
  },
2033
- "sanityTypeOption": {
2034
- "$ref": "#/components/schemas/option_nullable`1"
2035
- },
2036
2060
  "sanityType": {
2037
2061
  "enum": [
2038
- 1
2062
+ "event"
2039
2063
  ],
2040
- "type": "integer",
2041
- "format": "int32",
2042
- "default": 1,
2064
+ "type": "string",
2065
+ "default": "event",
2043
2066
  "nullable": true
2044
2067
  },
2045
- "statusOption": {
2046
- "$ref": "#/components/schemas/option_nullable`1"
2047
- },
2048
2068
  "status": {
2049
2069
  "enum": [
2050
- 1,
2051
- 2
2070
+ "active",
2071
+ "cancelled"
2052
2072
  ],
2053
- "type": "integer",
2054
- "format": "int32",
2055
- "default": 1,
2073
+ "type": "string",
2074
+ "default": "active",
2056
2075
  "nullable": true
2057
2076
  },
2058
- "allowDigitalParticipationOption": {
2059
- "$ref": "#/components/schemas/option_nullable`1"
2060
- },
2061
2077
  "allowDigitalParticipation": {
2062
2078
  "type": "boolean",
2063
2079
  "nullable": true
2064
2080
  },
2065
- "askForFeedbackOption": {
2066
- "$ref": "#/components/schemas/option_nullable`1"
2067
- },
2068
2081
  "askForFeedback": {
2069
2082
  "type": "boolean",
2070
2083
  "nullable": true
2071
2084
  },
2072
- "categoryOption": {
2073
- "$ref": "#/components/schemas/option_list`1"
2074
- },
2075
2085
  "category": {
2076
2086
  "type": "array",
2077
2087
  "items": {
2078
2088
  "type": "string"
2079
2089
  }
2080
2090
  },
2081
- "creatorOption": {
2082
- "$ref": "#/components/schemas/option_sanityEmployeeReference"
2083
- },
2084
2091
  "creator": {
2085
- "$ref": "#/components/schemas/sanityEmployeeReference"
2086
- },
2087
- "descriptionOption": {
2088
- "$ref": "#/components/schemas/option_string"
2092
+ "$ref": "#/components/schemas/employeeReference"
2089
2093
  },
2090
2094
  "description": {
2091
2095
  "type": "string"
2092
2096
  },
2093
- "endTimeOption": {
2094
- "$ref": "#/components/schemas/option_string"
2095
- },
2096
2097
  "endTime": {
2097
2098
  "type": "string"
2098
2099
  },
2099
- "eventTypeOption": {
2100
- "$ref": "#/components/schemas/option_list`1"
2101
- },
2102
2100
  "eventType": {
2103
2101
  "type": "array",
2104
2102
  "items": {
2105
2103
  "$ref": "#/components/schemas/sanityCreateEventEventTypeInner"
2106
2104
  }
2107
2105
  },
2108
- "feedbackOption": {
2109
- "$ref": "#/components/schemas/option_list`1"
2110
- },
2111
2106
  "feedback": {
2112
2107
  "type": "array",
2113
2108
  "items": {
2114
2109
  "$ref": "#/components/schemas/sanityCreateEventFeedbackInner"
2115
2110
  }
2116
2111
  },
2117
- "invitationSentOption": {
2118
- "$ref": "#/components/schemas/option_nullable`1"
2119
- },
2120
- "isServingFoodOption": {
2121
- "$ref": "#/components/schemas/option_nullable`1"
2122
- },
2123
2112
  "isServingFood": {
2124
2113
  "type": "boolean",
2125
2114
  "nullable": true
2126
2115
  },
2127
- "linkOnlyOption": {
2128
- "$ref": "#/components/schemas/option_nullable`1"
2129
- },
2130
2116
  "linkOnly": {
2131
2117
  "type": "boolean",
2132
2118
  "nullable": true
2133
2119
  },
2134
- "manualMemoriesApprovalOption": {
2135
- "$ref": "#/components/schemas/option_nullable`1"
2136
- },
2137
2120
  "manualMemoriesApproval": {
2138
2121
  "type": "boolean",
2139
2122
  "nullable": true
2140
2123
  },
2141
- "maxParticipantsOption": {
2142
- "$ref": "#/components/schemas/option_nullable`1"
2143
- },
2144
2124
  "maxParticipants": {
2145
2125
  "type": "number",
2146
2126
  "format": "double",
2147
2127
  "nullable": true
2148
2128
  },
2149
- "mediaOption": {
2150
- "$ref": "#/components/schemas/option_sanityComponentMedia"
2151
- },
2152
2129
  "media": {
2153
- "$ref": "#/components/schemas/sanityComponentMedia"
2154
- },
2155
- "memoriesOption": {
2156
- "$ref": "#/components/schemas/option_list`1"
2130
+ "$ref": "#/components/schemas/componentMedia"
2157
2131
  },
2158
2132
  "memories": {
2159
2133
  "type": "array",
@@ -2161,68 +2135,58 @@
2161
2135
  "$ref": "#/components/schemas/sanityCreateEventMemoriesInner"
2162
2136
  }
2163
2137
  },
2164
- "participantsOption": {
2165
- "$ref": "#/components/schemas/option_list`1"
2166
- },
2167
2138
  "participants": {
2168
2139
  "type": "array",
2169
2140
  "items": {
2170
2141
  "$ref": "#/components/schemas/sanityCreateEventParticipantsInner"
2171
2142
  }
2172
2143
  },
2173
- "participationStartOption": {
2174
- "$ref": "#/components/schemas/option_string"
2175
- },
2176
2144
  "participationStart": {
2177
2145
  "type": "string"
2178
2146
  },
2179
- "placeOption": {
2180
- "$ref": "#/components/schemas/option_string"
2181
- },
2182
2147
  "place": {
2183
2148
  "type": "string"
2184
2149
  },
2185
- "publicOption": {
2186
- "$ref": "#/components/schemas/option_nullable`1"
2187
- },
2188
2150
  "public": {
2189
2151
  "type": "boolean",
2190
2152
  "nullable": true
2191
2153
  },
2192
- "recurringIdOption": {
2193
- "$ref": "#/components/schemas/option_string"
2194
- },
2195
2154
  "recurringId": {
2196
2155
  "type": "string"
2197
2156
  },
2198
- "slugOption": {
2199
- "$ref": "#/components/schemas/option_sanitySlug"
2157
+ "slackTs": {
2158
+ "type": "string"
2200
2159
  },
2201
2160
  "slug": {
2202
- "$ref": "#/components/schemas/sanitySlug"
2203
- },
2204
- "teamsLinkOption": {
2205
- "$ref": "#/components/schemas/option_string"
2161
+ "$ref": "#/components/schemas/slug"
2206
2162
  },
2207
2163
  "teamsLink": {
2208
2164
  "type": "string"
2209
2165
  },
2210
- "timeOption": {
2211
- "$ref": "#/components/schemas/option_string"
2212
- },
2213
2166
  "time": {
2214
2167
  "type": "string"
2215
2168
  },
2216
- "titleOption": {
2217
- "$ref": "#/components/schemas/option_string"
2218
- },
2219
2169
  "title": {
2220
2170
  "type": "string"
2221
2171
  },
2222
2172
  "additionalProperties": {
2223
2173
  "type": "object",
2224
2174
  "additionalProperties": {
2225
- "$ref": "#/components/schemas/jsonElement"
2175
+ "type": "object"
2176
+ }
2177
+ }
2178
+ }
2179
+ },
2180
+ "patchEventMemory": {
2181
+ "type": "object",
2182
+ "properties": {
2183
+ "approved": {
2184
+ "type": "boolean"
2185
+ },
2186
+ "additionalProperties": {
2187
+ "type": "object",
2188
+ "additionalProperties": {
2189
+ "type": "object"
2226
2190
  }
2227
2191
  }
2228
2192
  }
@@ -2260,310 +2224,258 @@
2260
2224
  }
2261
2225
  }
2262
2226
  },
2263
- "sanityAzureBlobStorageCredentials": {
2227
+ "sanityCreateEventEventTypeInner": {
2264
2228
  "type": "object",
2265
2229
  "properties": {
2266
- "blobUrl": {
2230
+ "sanityType": {
2231
+ "enum": [
2232
+ "reference"
2233
+ ],
2234
+ "type": "string",
2235
+ "default": "reference"
2236
+ },
2237
+ "sanityKey": {
2267
2238
  "type": "string"
2268
2239
  },
2269
- "sasToken": {
2240
+ "sanityRef": {
2270
2241
  "type": "string"
2271
2242
  },
2272
- "additionalProperties": {
2273
- "type": "object",
2274
- "additionalProperties": {
2275
- "$ref": "#/components/schemas/jsonElement"
2276
- }
2243
+ "sanityWeak": {
2244
+ "type": "boolean"
2277
2245
  }
2278
2246
  }
2279
2247
  },
2280
- "sanityComponentMedia": {
2248
+ "sanityCreateEventFeedbackInner": {
2281
2249
  "type": "object",
2282
2250
  "properties": {
2283
2251
  "sanityType": {
2284
2252
  "enum": [
2285
- 1
2253
+ "response"
2286
2254
  ],
2287
- "type": "integer",
2288
- "format": "int32",
2289
- "default": 1
2255
+ "type": "string",
2256
+ "default": "response"
2290
2257
  },
2291
- "type": {
2292
- "enum": [
2293
- 1,
2294
- 2
2295
- ],
2296
- "type": "integer",
2297
- "format": "int32",
2298
- "default": 1
2258
+ "comment": {
2259
+ "type": "string"
2299
2260
  },
2300
- "imageOption": {
2301
- "$ref": "#/components/schemas/option_sanityComponentMediaImage"
2261
+ "foodAndDrinkRating": {
2262
+ "type": "number",
2263
+ "format": "double"
2302
2264
  },
2303
- "image": {
2304
- "$ref": "#/components/schemas/sanityComponentMediaImage"
2265
+ "locationRating": {
2266
+ "type": "number",
2267
+ "format": "double"
2305
2268
  },
2306
- "videoOption": {
2307
- "$ref": "#/components/schemas/option_sanityMuxVideo"
2269
+ "organizationRating": {
2270
+ "type": "number",
2271
+ "format": "double"
2308
2272
  },
2309
- "video": {
2310
- "$ref": "#/components/schemas/sanityMuxVideo"
2311
- }
2312
- }
2313
- },
2314
- "sanityComponentMediaImage": {
2315
- "type": "object",
2316
- "properties": {
2317
- "sanityType": {
2318
- "enum": [
2319
- 1
2320
- ],
2321
- "type": "integer",
2322
- "format": "int32",
2323
- "default": 1
2324
- },
2325
- "assetOption": {
2326
- "$ref": "#/components/schemas/option_sanityImageAssetReference"
2327
- },
2328
- "asset": {
2329
- "$ref": "#/components/schemas/sanityImageAssetReference"
2330
- },
2331
- "cropOption": {
2332
- "$ref": "#/components/schemas/option_sanityImageCrop"
2273
+ "overallRating": {
2274
+ "type": "number",
2275
+ "format": "double"
2333
2276
  },
2334
- "crop": {
2335
- "$ref": "#/components/schemas/sanityImageCrop"
2277
+ "sanityKey": {
2278
+ "type": "string"
2279
+ }
2280
+ }
2281
+ },
2282
+ "sanityCreateEventMemoriesInner": {
2283
+ "type": "object",
2284
+ "properties": {
2285
+ "actualInstance": {
2286
+ "type": "object"
2336
2287
  },
2337
- "hotspotOption": {
2338
- "$ref": "#/components/schemas/option_sanityImageHotspot"
2288
+ "isNullable": {
2289
+ "type": "boolean"
2339
2290
  },
2340
- "hotspot": {
2341
- "$ref": "#/components/schemas/sanityImageHotspot"
2291
+ "schemaType": {
2292
+ "type": "string"
2293
+ }
2294
+ }
2295
+ },
2296
+ "sanityCreateEventParticipantsInner": {
2297
+ "type": "object",
2298
+ "properties": {
2299
+ "actualInstance": {
2300
+ "type": "object"
2342
2301
  },
2343
- "mediaOption": {
2344
- "$ref": "#/components/schemas/option_object"
2302
+ "isNullable": {
2303
+ "type": "boolean"
2345
2304
  },
2346
- "media": {
2347
- "type": "object"
2305
+ "schemaType": {
2306
+ "type": "string"
2348
2307
  }
2349
2308
  }
2350
2309
  },
2351
- "sanityCreateEventEventTypeInner": {
2310
+ "sanityCreateMemory": {
2352
2311
  "type": "object",
2353
2312
  "properties": {
2354
2313
  "sanityType": {
2355
2314
  "enum": [
2356
- 1
2315
+ "memory.image",
2316
+ "memory.video"
2357
2317
  ],
2358
- "type": "integer",
2359
- "format": "int32",
2360
- "default": 1
2318
+ "type": "string",
2319
+ "default": "memory.image"
2361
2320
  },
2362
- "sanityKey": {
2321
+ "filename": {
2363
2322
  "type": "string"
2364
2323
  },
2365
- "sanityRef": {
2324
+ "mediaUrl": {
2366
2325
  "type": "string"
2367
2326
  },
2368
- "sanityWeakOption": {
2369
- "$ref": "#/components/schemas/option_nullable`1"
2370
- },
2371
- "sanityWeak": {
2372
- "type": "boolean",
2373
- "nullable": true
2327
+ "additionalProperties": {
2328
+ "type": "object",
2329
+ "additionalProperties": {
2330
+ "type": "object"
2331
+ }
2374
2332
  }
2375
2333
  }
2376
2334
  },
2377
- "sanityCreateEventFeedbackInner": {
2335
+ "sanityEvent": {
2378
2336
  "type": "object",
2379
2337
  "properties": {
2380
2338
  "sanityType": {
2381
2339
  "enum": [
2382
- 1
2340
+ "event"
2383
2341
  ],
2384
- "type": "integer",
2385
- "format": "int32",
2386
- "default": 1
2342
+ "type": "string",
2343
+ "default": "event"
2387
2344
  },
2388
- "locationRating": {
2389
- "type": "number",
2390
- "format": "double"
2345
+ "status": {
2346
+ "enum": [
2347
+ "active",
2348
+ "cancelled"
2349
+ ],
2350
+ "type": "string",
2351
+ "default": "active"
2391
2352
  },
2392
- "organizationRating": {
2393
- "type": "number",
2394
- "format": "double"
2353
+ "allowDigitalParticipation": {
2354
+ "type": "boolean"
2395
2355
  },
2396
- "overallRating": {
2397
- "type": "number",
2398
- "format": "double"
2356
+ "askForFeedback": {
2357
+ "type": "boolean"
2399
2358
  },
2400
- "sanityKey": {
2401
- "type": "string"
2359
+ "category": {
2360
+ "type": "array",
2361
+ "items": {
2362
+ "type": "string"
2363
+ }
2402
2364
  },
2403
- "commentOption": {
2404
- "$ref": "#/components/schemas/option_string"
2365
+ "creator": {
2366
+ "$ref": "#/components/schemas/sanityOrderEmployee"
2405
2367
  },
2406
- "comment": {
2368
+ "description": {
2407
2369
  "type": "string"
2408
2370
  },
2409
- "foodAndDrinkRatingOption": {
2410
- "$ref": "#/components/schemas/option_nullable`1"
2371
+ "endTime": {
2372
+ "type": "string"
2411
2373
  },
2412
- "foodAndDrinkRating": {
2413
- "type": "number",
2414
- "format": "double",
2415
- "nullable": true
2416
- }
2417
- }
2418
- },
2419
- "sanityCreateEventMemoriesInner": {
2420
- "type": "object",
2421
- "properties": {
2422
- "sanityCreateEventMemoriesInnerSanityMemoryImage": {
2423
- "$ref": "#/components/schemas/sanityCreateEventMemoriesInnerSanityMemoryImage"
2374
+ "eventType": {
2375
+ "type": "array",
2376
+ "items": {
2377
+ "$ref": "#/components/schemas/sanityEventEventTypeInner"
2378
+ }
2424
2379
  },
2425
- "sanityCreateEventMemoriesInnerSanityMemoryVideo": {
2426
- "$ref": "#/components/schemas/sanityCreateEventMemoriesInnerSanityMemoryVideo"
2427
- }
2428
- }
2429
- },
2430
- "sanityCreateEventMemoriesInnerSanityMemoryImage": {
2431
- "type": "object",
2432
- "properties": {
2433
- "sanityType": {
2434
- "enum": [
2435
- 1
2436
- ],
2437
- "type": "integer",
2438
- "format": "int32",
2439
- "default": 1
2380
+ "feedback": {
2381
+ "type": "array",
2382
+ "items": {
2383
+ "$ref": "#/components/schemas/sanityEventFeedbackInner"
2384
+ }
2440
2385
  },
2441
- "image": {
2442
- "$ref": "#/components/schemas/sanityPageMetaImage"
2386
+ "invitationSent": {
2387
+ "type": "boolean"
2443
2388
  },
2444
- "sanityKey": {
2445
- "type": "string"
2389
+ "isServingFood": {
2390
+ "type": "boolean"
2446
2391
  },
2447
- "approvedOption": {
2448
- "$ref": "#/components/schemas/option_nullable`1"
2392
+ "linkOnly": {
2393
+ "type": "boolean"
2449
2394
  },
2450
- "approved": {
2451
- "type": "boolean",
2452
- "nullable": true
2453
- }
2454
- }
2455
- },
2456
- "sanityCreateEventMemoriesInnerSanityMemoryVideo": {
2457
- "type": "object",
2458
- "properties": {
2459
- "sanityType": {
2460
- "enum": [
2461
- 1
2462
- ],
2463
- "type": "integer",
2464
- "format": "int32",
2465
- "default": 1
2395
+ "manualMemoriesApproval": {
2396
+ "type": "boolean"
2466
2397
  },
2467
- "sanityKey": {
2468
- "type": "string"
2398
+ "maxParticipants": {
2399
+ "type": "number",
2400
+ "format": "double"
2469
2401
  },
2470
- "video": {
2471
- "$ref": "#/components/schemas/sanityMuxVideo"
2402
+ "media": {
2403
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsArticlesInnerMedia"
2472
2404
  },
2473
- "approvedOption": {
2474
- "$ref": "#/components/schemas/option_nullable`1"
2405
+ "memories": {
2406
+ "type": "array",
2407
+ "items": {
2408
+ "$ref": "#/components/schemas/sanityEventMemoriesInner"
2409
+ }
2475
2410
  },
2476
- "approved": {
2477
- "type": "boolean",
2478
- "nullable": true
2479
- }
2480
- }
2481
- },
2482
- "sanityCreateEventParticipantsInner": {
2483
- "type": "object",
2484
- "properties": {
2485
- "sanityCreateEventParticipantsInnerSanityInternal": {
2486
- "$ref": "#/components/schemas/sanityCreateEventParticipantsInnerSanityInternal"
2411
+ "participants": {
2412
+ "type": "array",
2413
+ "items": {
2414
+ "$ref": "#/components/schemas/sanityEventParticipantsInner"
2415
+ }
2487
2416
  },
2488
- "sanityEventParticipantsInnerSanityExternal": {
2489
- "$ref": "#/components/schemas/sanityEventParticipantsInnerSanityExternal"
2490
- }
2491
- }
2492
- },
2493
- "sanityCreateEventParticipantsInnerSanityInternal": {
2494
- "type": "object",
2495
- "properties": {
2496
- "sanityType": {
2497
- "enum": [
2498
- 1
2499
- ],
2500
- "type": "integer",
2501
- "format": "int32",
2502
- "default": 1
2417
+ "participationStart": {
2418
+ "type": "string"
2503
2419
  },
2504
- "employee": {
2505
- "$ref": "#/components/schemas/sanityEmployeeReference"
2420
+ "place": {
2421
+ "type": "string"
2506
2422
  },
2507
- "feedbackSubmitted": {
2423
+ "public": {
2508
2424
  "type": "boolean"
2509
2425
  },
2510
- "registered": {
2426
+ "recurringId": {
2511
2427
  "type": "string"
2512
2428
  },
2513
- "sanityKey": {
2429
+ "sanityCreatedAt": {
2514
2430
  "type": "string"
2515
2431
  },
2516
- "token": {
2432
+ "sanityId": {
2517
2433
  "type": "string"
2518
- }
2519
- }
2520
- },
2521
- "sanityCreateMemory": {
2522
- "type": "object",
2523
- "properties": {
2524
- "sanityType": {
2525
- "enum": [
2526
- 1,
2527
- 2
2528
- ],
2529
- "type": "integer",
2530
- "format": "int32",
2531
- "default": 1
2532
2434
  },
2533
- "filename": {
2435
+ "sanityRev": {
2534
2436
  "type": "string"
2535
2437
  },
2536
- "mediaUrl": {
2438
+ "sanityUpdatedAt": {
2537
2439
  "type": "string"
2538
2440
  },
2539
- "additionalProperties": {
2540
- "type": "object",
2541
- "additionalProperties": {
2542
- "$ref": "#/components/schemas/jsonElement"
2543
- }
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"
2544
2455
  }
2545
2456
  }
2546
2457
  },
2547
- "sanityEmployeeReference": {
2458
+ "sanityEventEventTypeInner": {
2548
2459
  "type": "object",
2549
2460
  "properties": {
2550
2461
  "sanityType": {
2551
2462
  "enum": [
2552
- 1
2463
+ "eventType"
2553
2464
  ],
2554
- "type": "integer",
2555
- "format": "int32",
2556
- "default": 1
2465
+ "type": "string",
2466
+ "default": "eventType"
2557
2467
  },
2558
- "sanityRef": {
2468
+ "canSubscribe": {
2469
+ "type": "boolean"
2470
+ },
2471
+ "name": {
2559
2472
  "type": "string"
2560
2473
  },
2561
- "sanityWeakOption": {
2562
- "$ref": "#/components/schemas/option_nullable`1"
2474
+ "sanityId": {
2475
+ "type": "string"
2563
2476
  },
2564
- "sanityWeak": {
2565
- "type": "boolean",
2566
- "nullable": true
2477
+ "slug": {
2478
+ "$ref": "#/components/schemas/slug"
2567
2479
  }
2568
2480
  }
2569
2481
  },
@@ -2572,11 +2484,17 @@
2572
2484
  "properties": {
2573
2485
  "sanityType": {
2574
2486
  "enum": [
2575
- 1
2487
+ "response"
2576
2488
  ],
2577
- "type": "integer",
2578
- "format": "int32",
2579
- "default": 1
2489
+ "type": "string",
2490
+ "default": "response"
2491
+ },
2492
+ "comment": {
2493
+ "type": "string"
2494
+ },
2495
+ "foodAndDrinkRating": {
2496
+ "type": "number",
2497
+ "format": "double"
2580
2498
  },
2581
2499
  "locationRating": {
2582
2500
  "type": "number",
@@ -2592,125 +2510,33 @@
2592
2510
  },
2593
2511
  "sanityKey": {
2594
2512
  "type": "string"
2595
- },
2596
- "commentOption": {
2597
- "$ref": "#/components/schemas/option_string"
2598
- },
2599
- "comment": {
2600
- "type": "string"
2601
- },
2602
- "foodAndDrinkRatingOption": {
2603
- "$ref": "#/components/schemas/option_nullable`1"
2604
- },
2605
- "foodAndDrinkRating": {
2606
- "type": "number",
2607
- "format": "double",
2608
- "nullable": true
2609
2513
  }
2610
2514
  }
2611
2515
  },
2612
2516
  "sanityEventMemoriesInner": {
2613
2517
  "type": "object",
2614
2518
  "properties": {
2615
- "sanityEventMemoriesInnerSanityImage": {
2616
- "$ref": "#/components/schemas/sanityEventMemoriesInnerSanityImage"
2617
- },
2618
- "sanityEventMemoriesInnerSanityVideo": {
2619
- "$ref": "#/components/schemas/sanityEventMemoriesInnerSanityVideo"
2620
- }
2621
- }
2622
- },
2623
- "sanityEventMemoriesInnerSanityImage": {
2624
- "type": "object",
2625
- "properties": {
2626
- "sanityType": {
2627
- "enum": [
2628
- 1
2629
- ],
2630
- "type": "integer",
2631
- "format": "int32",
2632
- "default": 1
2633
- },
2634
- "sanityKey": {
2635
- "type": "string"
2636
- },
2637
- "approvedOption": {
2638
- "$ref": "#/components/schemas/option_nullable`1"
2639
- },
2640
- "approved": {
2641
- "type": "boolean",
2642
- "nullable": true
2643
- },
2644
- "assetOption": {
2645
- "$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2519
+ "actualInstance": {
2520
+ "type": "object"
2646
2521
  },
2647
- "asset": {
2648
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2649
- }
2650
- }
2651
- },
2652
- "sanityEventMemoriesInnerSanityVideo": {
2653
- "type": "object",
2654
- "properties": {
2655
- "sanityType": {
2656
- "enum": [
2657
- 1
2658
- ],
2659
- "type": "integer",
2660
- "format": "int32",
2661
- "default": 1
2522
+ "isNullable": {
2523
+ "type": "boolean"
2662
2524
  },
2663
- "sanityKey": {
2525
+ "schemaType": {
2664
2526
  "type": "string"
2665
- },
2666
- "approvedOption": {
2667
- "$ref": "#/components/schemas/option_nullable`1"
2668
- },
2669
- "approved": {
2670
- "type": "boolean",
2671
- "nullable": true
2672
- },
2673
- "assetOption": {
2674
- "$ref": "#/components/schemas/option_sanityVideoMemoryAsset"
2675
- },
2676
- "asset": {
2677
- "$ref": "#/components/schemas/sanityVideoMemoryAsset"
2678
2527
  }
2679
2528
  }
2680
2529
  },
2681
- "sanityEventParticipantsInnerSanityExternal": {
2530
+ "sanityEventParticipantsInner": {
2682
2531
  "type": "object",
2683
2532
  "properties": {
2684
- "sanityType": {
2685
- "enum": [
2686
- 1
2687
- ],
2688
- "type": "integer",
2689
- "format": "int32",
2690
- "default": 1
2691
- },
2692
- "email": {
2693
- "type": "string"
2533
+ "actualInstance": {
2534
+ "type": "object"
2694
2535
  },
2695
- "feedbackSubmitted": {
2536
+ "isNullable": {
2696
2537
  "type": "boolean"
2697
2538
  },
2698
- "name": {
2699
- "type": "string"
2700
- },
2701
- "registered": {
2702
- "type": "string"
2703
- },
2704
- "sanityKey": {
2705
- "type": "string"
2706
- },
2707
- "token": {
2708
- "type": "string"
2709
- },
2710
- "detailsOption": {
2711
- "$ref": "#/components/schemas/option_string"
2712
- },
2713
- "details": {
2539
+ "schemaType": {
2714
2540
  "type": "string"
2715
2541
  }
2716
2542
  }
@@ -2720,21 +2546,16 @@
2720
2546
  "properties": {
2721
2547
  "sanityType": {
2722
2548
  "enum": [
2723
- 1
2549
+ "reference"
2724
2550
  ],
2725
- "type": "integer",
2726
- "format": "int32",
2727
- "default": 1
2551
+ "type": "string",
2552
+ "default": "reference"
2728
2553
  },
2729
2554
  "sanityRef": {
2730
2555
  "type": "string"
2731
2556
  },
2732
- "sanityWeakOption": {
2733
- "$ref": "#/components/schemas/option_nullable`1"
2734
- },
2735
2557
  "sanityWeak": {
2736
- "type": "boolean",
2737
- "nullable": true
2558
+ "type": "boolean"
2738
2559
  }
2739
2560
  }
2740
2561
  },
@@ -2743,11 +2564,10 @@
2743
2564
  "properties": {
2744
2565
  "sanityType": {
2745
2566
  "enum": [
2746
- 1
2567
+ "sanity.imageCrop"
2747
2568
  ],
2748
- "type": "integer",
2749
- "format": "int32",
2750
- "default": 1
2569
+ "type": "string",
2570
+ "default": "sanity.imageCrop"
2751
2571
  },
2752
2572
  "bottom": {
2753
2573
  "type": "number",
@@ -2772,11 +2592,10 @@
2772
2592
  "properties": {
2773
2593
  "sanityType": {
2774
2594
  "enum": [
2775
- 1
2595
+ "sanity.imageHotspot"
2776
2596
  ],
2777
- "type": "integer",
2778
- "format": "int32",
2779
- "default": 1
2597
+ "type": "string",
2598
+ "default": "sanity.imageHotspot"
2780
2599
  },
2781
2600
  "height": {
2782
2601
  "type": "number",
@@ -2796,64 +2615,29 @@
2796
2615
  }
2797
2616
  }
2798
2617
  },
2799
- "sanityMuxVideo": {
2800
- "type": "object",
2801
- "properties": {
2802
- "sanityType": {
2803
- "enum": [
2804
- 1
2805
- ],
2806
- "type": "integer",
2807
- "format": "int32",
2808
- "default": 1
2809
- },
2810
- "assetOption": {
2811
- "$ref": "#/components/schemas/option_sanityMuxVideoAssetReference"
2812
- },
2813
- "asset": {
2814
- "$ref": "#/components/schemas/sanityMuxVideoAssetReference"
2815
- }
2816
- }
2817
- },
2818
- "sanityMuxVideoAssetReference": {
2618
+ "sanityOrderEmployee": {
2819
2619
  "type": "object",
2820
2620
  "properties": {
2821
2621
  "sanityType": {
2822
2622
  "enum": [
2823
- 1
2623
+ "employee"
2824
2624
  ],
2825
- "type": "integer",
2826
- "format": "int32",
2827
- "default": 1
2625
+ "type": "string",
2626
+ "default": "employee"
2828
2627
  },
2829
- "sanityRef": {
2628
+ "email": {
2830
2629
  "type": "string"
2831
2630
  },
2832
- "sanityWeakOption": {
2833
- "$ref": "#/components/schemas/option_nullable`1"
2631
+ "image": {
2632
+ "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImage"
2834
2633
  },
2835
- "sanityWeak": {
2634
+ "isBot": {
2836
2635
  "type": "boolean",
2837
2636
  "nullable": true
2838
- }
2839
- }
2840
- },
2841
- "sanityOrderEmployee": {
2842
- "type": "object",
2843
- "properties": {
2844
- "sanityType": {
2845
- "enum": [
2846
- 1
2847
- ],
2848
- "type": "integer",
2849
- "format": "int32",
2850
- "default": 1
2851
2637
  },
2852
- "email": {
2853
- "type": "string"
2854
- },
2855
- "image": {
2856
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo"
2638
+ "isExternal": {
2639
+ "type": "boolean",
2640
+ "nullable": true
2857
2641
  },
2858
2642
  "name": {
2859
2643
  "type": "string"
@@ -2862,154 +2646,42 @@
2862
2646
  "type": "string"
2863
2647
  },
2864
2648
  "slug": {
2865
- "$ref": "#/components/schemas/sanitySlug"
2866
- },
2867
- "telephone": {
2868
- "type": "string"
2869
- },
2870
- "tagsOption": {
2871
- "$ref": "#/components/schemas/option_list`1"
2649
+ "$ref": "#/components/schemas/slug"
2872
2650
  },
2873
2651
  "tags": {
2874
2652
  "type": "array",
2875
2653
  "items": {
2876
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent"
2654
+ "$ref": "#/components/schemas/sanityTechnologyWithRelationsEmployeesInnerTagsInner"
2877
2655
  }
2878
- }
2879
- }
2880
- },
2881
- "sanityPageMetaImage": {
2882
- "type": "object",
2883
- "properties": {
2884
- "sanityType": {
2885
- "enum": [
2886
- 1
2887
- ],
2888
- "type": "integer",
2889
- "format": "int32",
2890
- "default": 1
2891
- },
2892
- "assetOption": {
2893
- "$ref": "#/components/schemas/option_sanityImageAssetReference"
2894
- },
2895
- "asset": {
2896
- "$ref": "#/components/schemas/sanityImageAssetReference"
2897
- },
2898
- "cropOption": {
2899
- "$ref": "#/components/schemas/option_sanityImageCrop"
2900
- },
2901
- "crop": {
2902
- "$ref": "#/components/schemas/sanityImageCrop"
2903
- },
2904
- "hotspotOption": {
2905
- "$ref": "#/components/schemas/option_sanityImageHotspot"
2906
- },
2907
- "hotspot": {
2908
- "$ref": "#/components/schemas/sanityImageHotspot"
2909
2656
  },
2910
- "mediaOption": {
2911
- "$ref": "#/components/schemas/option_object"
2912
- },
2913
- "media": {
2914
- "type": "object"
2915
- }
2916
- }
2917
- },
2918
- "sanityPatchEventMemory": {
2919
- "type": "object",
2920
- "properties": {
2921
- "approved": {
2922
- "type": "boolean"
2923
- },
2924
- "additionalProperties": {
2925
- "type": "object",
2926
- "additionalProperties": {
2927
- "$ref": "#/components/schemas/jsonElement"
2928
- }
2929
- }
2930
- }
2931
- },
2932
- "sanitySlug": {
2933
- "type": "object",
2934
- "properties": {
2935
- "sanityType": {
2936
- "enum": [
2937
- 1
2938
- ],
2939
- "type": "integer",
2940
- "format": "int32",
2941
- "default": 1
2942
- },
2943
- "current": {
2944
- "type": "string"
2945
- },
2946
- "sourceOption": {
2947
- "$ref": "#/components/schemas/option_string"
2948
- },
2949
- "source": {
2657
+ "telephone": {
2950
2658
  "type": "string"
2951
2659
  }
2952
2660
  }
2953
2661
  },
2954
- "sanityTechnologyWithRelationsProjectsInnerMedia": {
2662
+ "sanityTechnologyWithRelationsArticlesInnerMedia": {
2955
2663
  "type": "object",
2956
2664
  "properties": {
2957
- "sanityTechnologyWithRelationsProjectsInnerMediaSanityImage": {
2958
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerMediaSanityImage"
2959
- },
2960
- "sanityTechnologyWithRelationsProjectsInnerMediaSanityVideo": {
2961
- "$ref": "#/components/schemas/sanityTechnologyWithRelationsProjectsInnerMediaSanityVideo"
2962
- }
2963
- }
2964
- },
2965
- "sanityTechnologyWithRelationsProjectsInnerMediaSanityImage": {
2966
- "type": "object",
2967
- "properties": {
2968
- "sanityType": {
2969
- "enum": [
2970
- 1
2971
- ],
2972
- "type": "integer",
2973
- "format": "int32",
2974
- "default": 1
2975
- },
2976
- "assetOption": {
2977
- "$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2978
- },
2979
- "asset": {
2980
- "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2981
- }
2982
- }
2983
- },
2984
- "sanityTechnologyWithRelationsProjectsInnerMediaSanityVideo": {
2985
- "type": "object",
2986
- "properties": {
2987
- "sanityType": {
2988
- "enum": [
2989
- 1
2990
- ],
2991
- "type": "integer",
2992
- "format": "int32",
2993
- "default": 1
2665
+ "actualInstance": {
2666
+ "type": "object"
2994
2667
  },
2995
- "assetOption": {
2996
- "$ref": "#/components/schemas/option_sanityVideoMemoryAsset"
2668
+ "isNullable": {
2669
+ "type": "boolean"
2997
2670
  },
2998
- "asset": {
2999
- "$ref": "#/components/schemas/sanityVideoMemoryAsset"
2671
+ "schemaType": {
2672
+ "type": "string"
3000
2673
  }
3001
2674
  }
3002
2675
  },
3003
- "sanityTechnologyWithRelationsProjectsInnerTechnologiesInnerParent": {
2676
+ "sanityTechnologyWithRelationsEmployeesInnerTagsInner": {
3004
2677
  "type": "object",
3005
2678
  "properties": {
3006
2679
  "sanityType": {
3007
2680
  "enum": [
3008
- 1
2681
+ "tag"
3009
2682
  ],
3010
- "type": "integer",
3011
- "format": "int32",
3012
- "default": 1
2683
+ "type": "string",
2684
+ "default": "tag"
3013
2685
  },
3014
2686
  "name": {
3015
2687
  "type": "string"
@@ -3018,23 +2690,19 @@
3018
2690
  "type": "string"
3019
2691
  },
3020
2692
  "slug": {
3021
- "$ref": "#/components/schemas/sanitySlug"
2693
+ "$ref": "#/components/schemas/slug"
3022
2694
  }
3023
2695
  }
3024
2696
  },
3025
- "sanityTechnologyWithRelationsProjectsInnerTestimonialsInnerCustomerLogo": {
2697
+ "sanityTvCategoryDashboardsInnerBackgroundImage": {
3026
2698
  "type": "object",
3027
2699
  "properties": {
3028
2700
  "sanityType": {
3029
2701
  "enum": [
3030
- 1
2702
+ "image"
3031
2703
  ],
3032
- "type": "integer",
3033
- "format": "int32",
3034
- "default": 1
3035
- },
3036
- "assetOption": {
3037
- "$ref": "#/components/schemas/option_sanityTvCategoryDashboardsInnerBackgroundImageAsset"
2704
+ "type": "string",
2705
+ "default": "image"
3038
2706
  },
3039
2707
  "asset": {
3040
2708
  "$ref": "#/components/schemas/sanityTvCategoryDashboardsInnerBackgroundImageAsset"
@@ -3046,71 +2714,39 @@
3046
2714
  "properties": {
3047
2715
  "sanityType": {
3048
2716
  "enum": [
3049
- 1
2717
+ "sanity.imageAsset"
3050
2718
  ],
3051
- "type": "integer",
3052
- "format": "int32",
3053
- "default": 1
2719
+ "type": "string",
2720
+ "default": "sanity.imageAsset"
3054
2721
  },
3055
2722
  "mimeType": {
3056
2723
  "type": "string"
3057
2724
  },
3058
- "sanityId": {
3059
- "type": "string"
3060
- },
3061
- "url": {
3062
- "type": "string"
3063
- },
3064
- "originalFilenameOption": {
3065
- "$ref": "#/components/schemas/option_string"
3066
- },
3067
2725
  "originalFilename": {
3068
2726
  "type": "string"
3069
- }
3070
- }
3071
- },
3072
- "sanityVideoMemoryAsset": {
3073
- "type": "object",
3074
- "properties": {
3075
- "sanityType": {
3076
- "enum": [
3077
- 1
3078
- ],
3079
- "type": "integer",
3080
- "format": "int32",
3081
- "default": 1
3082
2727
  },
3083
2728
  "sanityId": {
3084
2729
  "type": "string"
3085
2730
  },
3086
- "filenameOption": {
3087
- "$ref": "#/components/schemas/option_string"
3088
- },
3089
- "filename": {
3090
- "type": "string"
3091
- },
3092
- "playbackIdOption": {
3093
- "$ref": "#/components/schemas/option_string"
3094
- },
3095
- "playbackId": {
2731
+ "url": {
3096
2732
  "type": "string"
3097
2733
  }
3098
2734
  }
3099
2735
  },
3100
2736
  "slug": {
3101
- "required": [
3102
- "sanityType"
3103
- ],
3104
2737
  "type": "object",
3105
2738
  "properties": {
3106
2739
  "sanityType": {
3107
- "minLength": 1,
3108
- "type": "string"
2740
+ "enum": [
2741
+ "slug"
2742
+ ],
2743
+ "type": "string",
2744
+ "default": "slug"
3109
2745
  },
3110
- "sanityKey": {
2746
+ "current": {
3111
2747
  "type": "string"
3112
2748
  },
3113
- "current": {
2749
+ "source": {
3114
2750
  "type": "string"
3115
2751
  }
3116
2752
  }
@@ -3137,14 +2773,19 @@
3137
2773
  "type": "oauth2",
3138
2774
  "flows": {
3139
2775
  "implicit": {
3140
- "authorizationUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/authorize",
3141
- "tokenUrl": "https://login.microsoftonline.com/81a4f38d-6712-4b65-868b-c3771f9ba91e/oauth2/v2.0/token",
3142
- "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",
3143
2779
  "scopes": {
3144
- "api://c9e068a9-4a60-4b00-9982-1e9c6cdcc0a8/.default": "Default function scope"
2780
+ "api://bb21a8d0-366b-4a95-aa59-dbbf708322d1/.default": "Default function scope"
3145
2781
  }
3146
2782
  }
3147
2783
  }
2784
+ },
2785
+ "ApiKey": {
2786
+ "type": "http",
2787
+ "scheme": "bearer",
2788
+ "bearerFormat": "JWT"
3148
2789
  }
3149
2790
  }
3150
2791
  }