@snokam/mcp-api 0.187.4 → 0.189.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.
- package/package.json +1 -1
- package/specs/production/sanity.json +1051 -174
- package/specs/test/sanity.json +1051 -174
|
@@ -23523,6 +23523,457 @@
|
|
|
23523
23523
|
"type": "object",
|
|
23524
23524
|
"additionalProperties": true
|
|
23525
23525
|
},
|
|
23526
|
+
"Record_string.unknown_": {
|
|
23527
|
+
"properties": {},
|
|
23528
|
+
"additionalProperties": {},
|
|
23529
|
+
"type": "object",
|
|
23530
|
+
"description": "Construct a type with a set of properties K of type T"
|
|
23531
|
+
},
|
|
23532
|
+
"HandbookSubsectionResult": {
|
|
23533
|
+
"properties": {
|
|
23534
|
+
"sanityKey": {
|
|
23535
|
+
"type": "string"
|
|
23536
|
+
},
|
|
23537
|
+
"sanityType": {
|
|
23538
|
+
"type": "string",
|
|
23539
|
+
"enum": [
|
|
23540
|
+
"handbook.subsection"
|
|
23541
|
+
],
|
|
23542
|
+
"nullable": false
|
|
23543
|
+
},
|
|
23544
|
+
"title": {
|
|
23545
|
+
"type": "string"
|
|
23546
|
+
},
|
|
23547
|
+
"internal": {
|
|
23548
|
+
"type": "boolean"
|
|
23549
|
+
},
|
|
23550
|
+
"content": {
|
|
23551
|
+
"items": {
|
|
23552
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
23553
|
+
},
|
|
23554
|
+
"type": "array"
|
|
23555
|
+
}
|
|
23556
|
+
},
|
|
23557
|
+
"required": [
|
|
23558
|
+
"sanityKey",
|
|
23559
|
+
"sanityType",
|
|
23560
|
+
"title",
|
|
23561
|
+
"internal"
|
|
23562
|
+
],
|
|
23563
|
+
"type": "object",
|
|
23564
|
+
"additionalProperties": true
|
|
23565
|
+
},
|
|
23566
|
+
"HandbookSectionContent": {
|
|
23567
|
+
"oneOf": [
|
|
23568
|
+
{
|
|
23569
|
+
"$ref": "#/components/schemas/HandbookSubsectionResult"
|
|
23570
|
+
},
|
|
23571
|
+
{
|
|
23572
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
23573
|
+
}
|
|
23574
|
+
]
|
|
23575
|
+
},
|
|
23576
|
+
"HandbookSection": {
|
|
23577
|
+
"properties": {
|
|
23578
|
+
"sanityKey": {
|
|
23579
|
+
"type": "string"
|
|
23580
|
+
},
|
|
23581
|
+
"title": {
|
|
23582
|
+
"type": "string"
|
|
23583
|
+
},
|
|
23584
|
+
"internal": {
|
|
23585
|
+
"type": "boolean"
|
|
23586
|
+
},
|
|
23587
|
+
"slug": {
|
|
23588
|
+
"properties": {
|
|
23589
|
+
"current": {
|
|
23590
|
+
"type": "string"
|
|
23591
|
+
},
|
|
23592
|
+
"sanityType": {
|
|
23593
|
+
"type": "string"
|
|
23594
|
+
}
|
|
23595
|
+
},
|
|
23596
|
+
"type": "object"
|
|
23597
|
+
},
|
|
23598
|
+
"content": {
|
|
23599
|
+
"items": {
|
|
23600
|
+
"$ref": "#/components/schemas/HandbookSectionContent"
|
|
23601
|
+
},
|
|
23602
|
+
"type": "array"
|
|
23603
|
+
}
|
|
23604
|
+
},
|
|
23605
|
+
"required": [
|
|
23606
|
+
"sanityKey",
|
|
23607
|
+
"title",
|
|
23608
|
+
"internal"
|
|
23609
|
+
],
|
|
23610
|
+
"type": "object",
|
|
23611
|
+
"additionalProperties": true
|
|
23612
|
+
},
|
|
23613
|
+
"GetHandbookResult": {
|
|
23614
|
+
"properties": {
|
|
23615
|
+
"sanityId": {
|
|
23616
|
+
"type": "string"
|
|
23617
|
+
},
|
|
23618
|
+
"sanityType": {
|
|
23619
|
+
"type": "string"
|
|
23620
|
+
},
|
|
23621
|
+
"sanityCreatedAt": {
|
|
23622
|
+
"type": "string"
|
|
23623
|
+
},
|
|
23624
|
+
"sanityUpdatedAt": {
|
|
23625
|
+
"type": "string"
|
|
23626
|
+
},
|
|
23627
|
+
"pageKey": {
|
|
23628
|
+
"type": "string"
|
|
23629
|
+
},
|
|
23630
|
+
"sections": {
|
|
23631
|
+
"items": {
|
|
23632
|
+
"$ref": "#/components/schemas/HandbookSection"
|
|
23633
|
+
},
|
|
23634
|
+
"type": "array"
|
|
23635
|
+
}
|
|
23636
|
+
},
|
|
23637
|
+
"required": [
|
|
23638
|
+
"sanityId",
|
|
23639
|
+
"sanityType",
|
|
23640
|
+
"sanityCreatedAt",
|
|
23641
|
+
"sanityUpdatedAt",
|
|
23642
|
+
"pageKey"
|
|
23643
|
+
],
|
|
23644
|
+
"type": "object",
|
|
23645
|
+
"additionalProperties": true
|
|
23646
|
+
},
|
|
23647
|
+
"SanityAppendHandbookSection": {
|
|
23648
|
+
"properties": {
|
|
23649
|
+
"title": {
|
|
23650
|
+
"type": "string"
|
|
23651
|
+
},
|
|
23652
|
+
"internal": {
|
|
23653
|
+
"type": "boolean"
|
|
23654
|
+
},
|
|
23655
|
+
"slug": {
|
|
23656
|
+
"properties": {
|
|
23657
|
+
"current": {
|
|
23658
|
+
"type": "string"
|
|
23659
|
+
},
|
|
23660
|
+
"sanityType": {
|
|
23661
|
+
"type": "string",
|
|
23662
|
+
"enum": [
|
|
23663
|
+
"slug"
|
|
23664
|
+
],
|
|
23665
|
+
"nullable": false
|
|
23666
|
+
}
|
|
23667
|
+
},
|
|
23668
|
+
"required": [
|
|
23669
|
+
"current",
|
|
23670
|
+
"sanityType"
|
|
23671
|
+
],
|
|
23672
|
+
"type": "object"
|
|
23673
|
+
},
|
|
23674
|
+
"content": {
|
|
23675
|
+
"items": {
|
|
23676
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
23677
|
+
},
|
|
23678
|
+
"type": "array"
|
|
23679
|
+
}
|
|
23680
|
+
},
|
|
23681
|
+
"required": [
|
|
23682
|
+
"title",
|
|
23683
|
+
"internal",
|
|
23684
|
+
"slug"
|
|
23685
|
+
],
|
|
23686
|
+
"type": "object",
|
|
23687
|
+
"additionalProperties": true
|
|
23688
|
+
},
|
|
23689
|
+
"SanityPatchHandbookSection": {
|
|
23690
|
+
"properties": {
|
|
23691
|
+
"title": {
|
|
23692
|
+
"type": "string"
|
|
23693
|
+
},
|
|
23694
|
+
"internal": {
|
|
23695
|
+
"type": "boolean"
|
|
23696
|
+
},
|
|
23697
|
+
"slug": {
|
|
23698
|
+
"properties": {
|
|
23699
|
+
"current": {
|
|
23700
|
+
"type": "string"
|
|
23701
|
+
},
|
|
23702
|
+
"sanityType": {
|
|
23703
|
+
"type": "string",
|
|
23704
|
+
"enum": [
|
|
23705
|
+
"slug"
|
|
23706
|
+
],
|
|
23707
|
+
"nullable": false
|
|
23708
|
+
}
|
|
23709
|
+
},
|
|
23710
|
+
"required": [
|
|
23711
|
+
"current",
|
|
23712
|
+
"sanityType"
|
|
23713
|
+
],
|
|
23714
|
+
"type": "object"
|
|
23715
|
+
},
|
|
23716
|
+
"content": {
|
|
23717
|
+
"items": {
|
|
23718
|
+
"$ref": "#/components/schemas/Record_string.unknown_"
|
|
23719
|
+
},
|
|
23720
|
+
"type": "array"
|
|
23721
|
+
}
|
|
23722
|
+
},
|
|
23723
|
+
"type": "object",
|
|
23724
|
+
"additionalProperties": true
|
|
23725
|
+
},
|
|
23726
|
+
"SanityAppendHandbookSubsection": {
|
|
23727
|
+
"properties": {
|
|
23728
|
+
"internal": {
|
|
23729
|
+
"type": "boolean"
|
|
23730
|
+
},
|
|
23731
|
+
"content": {
|
|
23732
|
+
"items": {
|
|
23733
|
+
"properties": {
|
|
23734
|
+
"sanityKey": {
|
|
23735
|
+
"type": "string"
|
|
23736
|
+
},
|
|
23737
|
+
"sanityType": {
|
|
23738
|
+
"type": "string",
|
|
23739
|
+
"enum": [
|
|
23740
|
+
"block"
|
|
23741
|
+
],
|
|
23742
|
+
"nullable": false
|
|
23743
|
+
},
|
|
23744
|
+
"level": {
|
|
23745
|
+
"type": "number",
|
|
23746
|
+
"format": "double"
|
|
23747
|
+
},
|
|
23748
|
+
"markDefs": {
|
|
23749
|
+
"items": {
|
|
23750
|
+
"properties": {
|
|
23751
|
+
"sanityKey": {
|
|
23752
|
+
"type": "string"
|
|
23753
|
+
},
|
|
23754
|
+
"sanityType": {
|
|
23755
|
+
"type": "string",
|
|
23756
|
+
"enum": [
|
|
23757
|
+
"link"
|
|
23758
|
+
],
|
|
23759
|
+
"nullable": false
|
|
23760
|
+
},
|
|
23761
|
+
"href": {
|
|
23762
|
+
"type": "string"
|
|
23763
|
+
}
|
|
23764
|
+
},
|
|
23765
|
+
"required": [
|
|
23766
|
+
"sanityKey",
|
|
23767
|
+
"sanityType"
|
|
23768
|
+
],
|
|
23769
|
+
"type": "object"
|
|
23770
|
+
},
|
|
23771
|
+
"type": "array"
|
|
23772
|
+
},
|
|
23773
|
+
"listItem": {
|
|
23774
|
+
"type": "string",
|
|
23775
|
+
"enum": [
|
|
23776
|
+
"number",
|
|
23777
|
+
"bullet"
|
|
23778
|
+
]
|
|
23779
|
+
},
|
|
23780
|
+
"style": {
|
|
23781
|
+
"type": "string",
|
|
23782
|
+
"enum": [
|
|
23783
|
+
"normal",
|
|
23784
|
+
"h1",
|
|
23785
|
+
"h2",
|
|
23786
|
+
"h3",
|
|
23787
|
+
"h4",
|
|
23788
|
+
"h5",
|
|
23789
|
+
"h6",
|
|
23790
|
+
"blockquote"
|
|
23791
|
+
]
|
|
23792
|
+
},
|
|
23793
|
+
"children": {
|
|
23794
|
+
"items": {
|
|
23795
|
+
"properties": {
|
|
23796
|
+
"sanityKey": {
|
|
23797
|
+
"type": "string"
|
|
23798
|
+
},
|
|
23799
|
+
"sanityType": {
|
|
23800
|
+
"type": "string",
|
|
23801
|
+
"enum": [
|
|
23802
|
+
"span"
|
|
23803
|
+
],
|
|
23804
|
+
"nullable": false
|
|
23805
|
+
},
|
|
23806
|
+
"text": {
|
|
23807
|
+
"type": "string"
|
|
23808
|
+
},
|
|
23809
|
+
"marks": {
|
|
23810
|
+
"items": {
|
|
23811
|
+
"type": "string"
|
|
23812
|
+
},
|
|
23813
|
+
"type": "array"
|
|
23814
|
+
}
|
|
23815
|
+
},
|
|
23816
|
+
"required": [
|
|
23817
|
+
"sanityKey",
|
|
23818
|
+
"sanityType"
|
|
23819
|
+
],
|
|
23820
|
+
"type": "object"
|
|
23821
|
+
},
|
|
23822
|
+
"type": "array"
|
|
23823
|
+
}
|
|
23824
|
+
},
|
|
23825
|
+
"required": [
|
|
23826
|
+
"sanityKey",
|
|
23827
|
+
"sanityType"
|
|
23828
|
+
],
|
|
23829
|
+
"type": "object"
|
|
23830
|
+
},
|
|
23831
|
+
"type": "array"
|
|
23832
|
+
},
|
|
23833
|
+
"title": {
|
|
23834
|
+
"type": "string"
|
|
23835
|
+
},
|
|
23836
|
+
"sanityType": {
|
|
23837
|
+
"type": "string",
|
|
23838
|
+
"enum": [
|
|
23839
|
+
"handbook.subsection"
|
|
23840
|
+
],
|
|
23841
|
+
"nullable": false
|
|
23842
|
+
}
|
|
23843
|
+
},
|
|
23844
|
+
"required": [
|
|
23845
|
+
"internal",
|
|
23846
|
+
"title",
|
|
23847
|
+
"sanityType"
|
|
23848
|
+
],
|
|
23849
|
+
"type": "object",
|
|
23850
|
+
"additionalProperties": true
|
|
23851
|
+
},
|
|
23852
|
+
"SanityPatchHandbookSubsection": {
|
|
23853
|
+
"properties": {
|
|
23854
|
+
"sanityType": {
|
|
23855
|
+
"type": "string",
|
|
23856
|
+
"enum": [
|
|
23857
|
+
"handbook.subsection",
|
|
23858
|
+
null
|
|
23859
|
+
],
|
|
23860
|
+
"nullable": true
|
|
23861
|
+
},
|
|
23862
|
+
"title": {
|
|
23863
|
+
"type": "string",
|
|
23864
|
+
"nullable": true
|
|
23865
|
+
},
|
|
23866
|
+
"content": {
|
|
23867
|
+
"items": {
|
|
23868
|
+
"properties": {
|
|
23869
|
+
"sanityKey": {
|
|
23870
|
+
"type": "string"
|
|
23871
|
+
},
|
|
23872
|
+
"sanityType": {
|
|
23873
|
+
"type": "string",
|
|
23874
|
+
"enum": [
|
|
23875
|
+
"block"
|
|
23876
|
+
],
|
|
23877
|
+
"nullable": false
|
|
23878
|
+
},
|
|
23879
|
+
"level": {
|
|
23880
|
+
"type": "number",
|
|
23881
|
+
"format": "double"
|
|
23882
|
+
},
|
|
23883
|
+
"markDefs": {
|
|
23884
|
+
"items": {
|
|
23885
|
+
"properties": {
|
|
23886
|
+
"sanityKey": {
|
|
23887
|
+
"type": "string"
|
|
23888
|
+
},
|
|
23889
|
+
"sanityType": {
|
|
23890
|
+
"type": "string",
|
|
23891
|
+
"enum": [
|
|
23892
|
+
"link"
|
|
23893
|
+
],
|
|
23894
|
+
"nullable": false
|
|
23895
|
+
},
|
|
23896
|
+
"href": {
|
|
23897
|
+
"type": "string"
|
|
23898
|
+
}
|
|
23899
|
+
},
|
|
23900
|
+
"required": [
|
|
23901
|
+
"sanityKey",
|
|
23902
|
+
"sanityType"
|
|
23903
|
+
],
|
|
23904
|
+
"type": "object"
|
|
23905
|
+
},
|
|
23906
|
+
"type": "array"
|
|
23907
|
+
},
|
|
23908
|
+
"listItem": {
|
|
23909
|
+
"type": "string",
|
|
23910
|
+
"enum": [
|
|
23911
|
+
"number",
|
|
23912
|
+
"bullet"
|
|
23913
|
+
]
|
|
23914
|
+
},
|
|
23915
|
+
"style": {
|
|
23916
|
+
"type": "string",
|
|
23917
|
+
"enum": [
|
|
23918
|
+
"normal",
|
|
23919
|
+
"h1",
|
|
23920
|
+
"h2",
|
|
23921
|
+
"h3",
|
|
23922
|
+
"h4",
|
|
23923
|
+
"h5",
|
|
23924
|
+
"h6",
|
|
23925
|
+
"blockquote"
|
|
23926
|
+
]
|
|
23927
|
+
},
|
|
23928
|
+
"children": {
|
|
23929
|
+
"items": {
|
|
23930
|
+
"properties": {
|
|
23931
|
+
"sanityKey": {
|
|
23932
|
+
"type": "string"
|
|
23933
|
+
},
|
|
23934
|
+
"sanityType": {
|
|
23935
|
+
"type": "string",
|
|
23936
|
+
"enum": [
|
|
23937
|
+
"span"
|
|
23938
|
+
],
|
|
23939
|
+
"nullable": false
|
|
23940
|
+
},
|
|
23941
|
+
"text": {
|
|
23942
|
+
"type": "string"
|
|
23943
|
+
},
|
|
23944
|
+
"marks": {
|
|
23945
|
+
"items": {
|
|
23946
|
+
"type": "string"
|
|
23947
|
+
},
|
|
23948
|
+
"type": "array"
|
|
23949
|
+
}
|
|
23950
|
+
},
|
|
23951
|
+
"required": [
|
|
23952
|
+
"sanityKey",
|
|
23953
|
+
"sanityType"
|
|
23954
|
+
],
|
|
23955
|
+
"type": "object"
|
|
23956
|
+
},
|
|
23957
|
+
"type": "array"
|
|
23958
|
+
}
|
|
23959
|
+
},
|
|
23960
|
+
"required": [
|
|
23961
|
+
"sanityKey",
|
|
23962
|
+
"sanityType"
|
|
23963
|
+
],
|
|
23964
|
+
"type": "object"
|
|
23965
|
+
},
|
|
23966
|
+
"type": "array",
|
|
23967
|
+
"nullable": true
|
|
23968
|
+
},
|
|
23969
|
+
"internal": {
|
|
23970
|
+
"type": "boolean",
|
|
23971
|
+
"nullable": true
|
|
23972
|
+
}
|
|
23973
|
+
},
|
|
23974
|
+
"type": "object",
|
|
23975
|
+
"additionalProperties": true
|
|
23976
|
+
},
|
|
23526
23977
|
"SanityGroup": {
|
|
23527
23978
|
"properties": {
|
|
23528
23979
|
"image": {
|
|
@@ -55260,28 +55711,496 @@
|
|
|
55260
55711
|
"name": "useCdn",
|
|
55261
55712
|
"required": false,
|
|
55262
55713
|
"schema": {
|
|
55263
|
-
"default": false,
|
|
55714
|
+
"default": false,
|
|
55715
|
+
"type": "boolean"
|
|
55716
|
+
}
|
|
55717
|
+
}
|
|
55718
|
+
]
|
|
55719
|
+
},
|
|
55720
|
+
"put": {
|
|
55721
|
+
"operationId": "UpsertNotificationRouting",
|
|
55722
|
+
"responses": {
|
|
55723
|
+
"200": {
|
|
55724
|
+
"description": "Ok",
|
|
55725
|
+
"content": {
|
|
55726
|
+
"application/json": {
|
|
55727
|
+
"schema": {
|
|
55728
|
+
"$ref": "#/components/schemas/SanityNotificationRouting"
|
|
55729
|
+
}
|
|
55730
|
+
}
|
|
55731
|
+
}
|
|
55732
|
+
}
|
|
55733
|
+
},
|
|
55734
|
+
"tags": [
|
|
55735
|
+
"Notification routing"
|
|
55736
|
+
],
|
|
55737
|
+
"security": [
|
|
55738
|
+
{
|
|
55739
|
+
"Implicit": [
|
|
55740
|
+
"WILL BE REPLACED"
|
|
55741
|
+
]
|
|
55742
|
+
}
|
|
55743
|
+
],
|
|
55744
|
+
"parameters": [],
|
|
55745
|
+
"requestBody": {
|
|
55746
|
+
"required": true,
|
|
55747
|
+
"content": {
|
|
55748
|
+
"application/json": {
|
|
55749
|
+
"schema": {
|
|
55750
|
+
"$ref": "#/components/schemas/SanityNotificationRouting"
|
|
55751
|
+
}
|
|
55752
|
+
}
|
|
55753
|
+
}
|
|
55754
|
+
}
|
|
55755
|
+
}
|
|
55756
|
+
},
|
|
55757
|
+
"/v1.0/newsletters": {
|
|
55758
|
+
"get": {
|
|
55759
|
+
"operationId": "GetNewsletters",
|
|
55760
|
+
"responses": {
|
|
55761
|
+
"200": {
|
|
55762
|
+
"description": "Ok",
|
|
55763
|
+
"content": {
|
|
55764
|
+
"application/json": {
|
|
55765
|
+
"schema": {
|
|
55766
|
+
"$ref": "#/components/schemas/GetNewslettersBySeriesSinceQueryResult"
|
|
55767
|
+
}
|
|
55768
|
+
}
|
|
55769
|
+
}
|
|
55770
|
+
}
|
|
55771
|
+
},
|
|
55772
|
+
"tags": [
|
|
55773
|
+
"Newsletters"
|
|
55774
|
+
],
|
|
55775
|
+
"security": [
|
|
55776
|
+
{
|
|
55777
|
+
"Implicit": [
|
|
55778
|
+
"WILL BE REPLACED"
|
|
55779
|
+
]
|
|
55780
|
+
}
|
|
55781
|
+
],
|
|
55782
|
+
"parameters": [
|
|
55783
|
+
{
|
|
55784
|
+
"in": "query",
|
|
55785
|
+
"name": "seriesId",
|
|
55786
|
+
"required": true,
|
|
55787
|
+
"schema": {
|
|
55788
|
+
"type": "string"
|
|
55789
|
+
}
|
|
55790
|
+
},
|
|
55791
|
+
{
|
|
55792
|
+
"in": "query",
|
|
55793
|
+
"name": "sentSince",
|
|
55794
|
+
"required": false,
|
|
55795
|
+
"schema": {
|
|
55796
|
+
"type": "string"
|
|
55797
|
+
}
|
|
55798
|
+
},
|
|
55799
|
+
{
|
|
55800
|
+
"in": "query",
|
|
55801
|
+
"name": "useCache",
|
|
55802
|
+
"required": false,
|
|
55803
|
+
"schema": {
|
|
55804
|
+
"default": false,
|
|
55805
|
+
"type": "boolean"
|
|
55806
|
+
}
|
|
55807
|
+
},
|
|
55808
|
+
{
|
|
55809
|
+
"in": "query",
|
|
55810
|
+
"name": "useCdn",
|
|
55811
|
+
"required": false,
|
|
55812
|
+
"schema": {
|
|
55813
|
+
"default": false,
|
|
55814
|
+
"type": "boolean"
|
|
55815
|
+
}
|
|
55816
|
+
}
|
|
55817
|
+
]
|
|
55818
|
+
},
|
|
55819
|
+
"post": {
|
|
55820
|
+
"operationId": "CreateNewsletter",
|
|
55821
|
+
"responses": {
|
|
55822
|
+
"200": {
|
|
55823
|
+
"description": "Ok",
|
|
55824
|
+
"content": {
|
|
55825
|
+
"application/json": {
|
|
55826
|
+
"schema": {
|
|
55827
|
+
"$ref": "#/components/schemas/GetNewsletterByIdQueryResult"
|
|
55828
|
+
}
|
|
55829
|
+
}
|
|
55830
|
+
}
|
|
55831
|
+
}
|
|
55832
|
+
},
|
|
55833
|
+
"tags": [
|
|
55834
|
+
"Newsletters"
|
|
55835
|
+
],
|
|
55836
|
+
"security": [
|
|
55837
|
+
{
|
|
55838
|
+
"Implicit": [
|
|
55839
|
+
"WILL BE REPLACED"
|
|
55840
|
+
]
|
|
55841
|
+
}
|
|
55842
|
+
],
|
|
55843
|
+
"parameters": [],
|
|
55844
|
+
"requestBody": {
|
|
55845
|
+
"required": true,
|
|
55846
|
+
"content": {
|
|
55847
|
+
"application/json": {
|
|
55848
|
+
"schema": {
|
|
55849
|
+
"$ref": "#/components/schemas/SanityCreateNewsletter"
|
|
55850
|
+
}
|
|
55851
|
+
}
|
|
55852
|
+
}
|
|
55853
|
+
}
|
|
55854
|
+
}
|
|
55855
|
+
},
|
|
55856
|
+
"/v1.0/newsletters/{id}": {
|
|
55857
|
+
"get": {
|
|
55858
|
+
"operationId": "GetNewsletterById",
|
|
55859
|
+
"responses": {
|
|
55860
|
+
"200": {
|
|
55861
|
+
"description": "Ok",
|
|
55862
|
+
"content": {
|
|
55863
|
+
"application/json": {
|
|
55864
|
+
"schema": {
|
|
55865
|
+
"$ref": "#/components/schemas/GetNewsletterByIdQueryResult"
|
|
55866
|
+
}
|
|
55867
|
+
}
|
|
55868
|
+
}
|
|
55869
|
+
}
|
|
55870
|
+
},
|
|
55871
|
+
"tags": [
|
|
55872
|
+
"Newsletters"
|
|
55873
|
+
],
|
|
55874
|
+
"security": [
|
|
55875
|
+
{
|
|
55876
|
+
"Implicit": [
|
|
55877
|
+
"WILL BE REPLACED"
|
|
55878
|
+
]
|
|
55879
|
+
}
|
|
55880
|
+
],
|
|
55881
|
+
"parameters": [
|
|
55882
|
+
{
|
|
55883
|
+
"in": "path",
|
|
55884
|
+
"name": "id",
|
|
55885
|
+
"required": true,
|
|
55886
|
+
"schema": {
|
|
55887
|
+
"type": "string"
|
|
55888
|
+
}
|
|
55889
|
+
},
|
|
55890
|
+
{
|
|
55891
|
+
"in": "query",
|
|
55892
|
+
"name": "useCache",
|
|
55893
|
+
"required": false,
|
|
55894
|
+
"schema": {
|
|
55895
|
+
"default": false,
|
|
55896
|
+
"type": "boolean"
|
|
55897
|
+
}
|
|
55898
|
+
},
|
|
55899
|
+
{
|
|
55900
|
+
"in": "query",
|
|
55901
|
+
"name": "useCdn",
|
|
55902
|
+
"required": false,
|
|
55903
|
+
"schema": {
|
|
55904
|
+
"default": false,
|
|
55905
|
+
"type": "boolean"
|
|
55906
|
+
}
|
|
55907
|
+
}
|
|
55908
|
+
]
|
|
55909
|
+
},
|
|
55910
|
+
"patch": {
|
|
55911
|
+
"operationId": "PatchNewsletter",
|
|
55912
|
+
"responses": {
|
|
55913
|
+
"200": {
|
|
55914
|
+
"description": "Ok",
|
|
55915
|
+
"content": {
|
|
55916
|
+
"application/json": {
|
|
55917
|
+
"schema": {
|
|
55918
|
+
"$ref": "#/components/schemas/GetNewsletterByIdQueryResult"
|
|
55919
|
+
}
|
|
55920
|
+
}
|
|
55921
|
+
}
|
|
55922
|
+
}
|
|
55923
|
+
},
|
|
55924
|
+
"tags": [
|
|
55925
|
+
"Newsletters"
|
|
55926
|
+
],
|
|
55927
|
+
"security": [
|
|
55928
|
+
{
|
|
55929
|
+
"Implicit": [
|
|
55930
|
+
"WILL BE REPLACED"
|
|
55931
|
+
]
|
|
55932
|
+
}
|
|
55933
|
+
],
|
|
55934
|
+
"parameters": [
|
|
55935
|
+
{
|
|
55936
|
+
"in": "path",
|
|
55937
|
+
"name": "id",
|
|
55938
|
+
"required": true,
|
|
55939
|
+
"schema": {
|
|
55940
|
+
"type": "string"
|
|
55941
|
+
}
|
|
55942
|
+
}
|
|
55943
|
+
],
|
|
55944
|
+
"requestBody": {
|
|
55945
|
+
"required": true,
|
|
55946
|
+
"content": {
|
|
55947
|
+
"application/json": {
|
|
55948
|
+
"schema": {
|
|
55949
|
+
"$ref": "#/components/schemas/SanityPatchNewsletter"
|
|
55950
|
+
}
|
|
55951
|
+
}
|
|
55952
|
+
}
|
|
55953
|
+
}
|
|
55954
|
+
}
|
|
55955
|
+
},
|
|
55956
|
+
"/v1.0/newsletter-series": {
|
|
55957
|
+
"get": {
|
|
55958
|
+
"operationId": "GetActiveNewsletterSeries",
|
|
55959
|
+
"responses": {
|
|
55960
|
+
"200": {
|
|
55961
|
+
"description": "Ok",
|
|
55962
|
+
"content": {
|
|
55963
|
+
"application/json": {
|
|
55964
|
+
"schema": {
|
|
55965
|
+
"$ref": "#/components/schemas/GetActiveNewsletterSeriesQueryResult"
|
|
55966
|
+
}
|
|
55967
|
+
}
|
|
55968
|
+
}
|
|
55969
|
+
}
|
|
55970
|
+
},
|
|
55971
|
+
"tags": [
|
|
55972
|
+
"Newsletter Series"
|
|
55973
|
+
],
|
|
55974
|
+
"security": [
|
|
55975
|
+
{
|
|
55976
|
+
"Implicit": [
|
|
55977
|
+
"WILL BE REPLACED"
|
|
55978
|
+
]
|
|
55979
|
+
}
|
|
55980
|
+
],
|
|
55981
|
+
"parameters": [
|
|
55982
|
+
{
|
|
55983
|
+
"in": "query",
|
|
55984
|
+
"name": "useCache",
|
|
55985
|
+
"required": false,
|
|
55986
|
+
"schema": {
|
|
55987
|
+
"default": false,
|
|
55988
|
+
"type": "boolean"
|
|
55989
|
+
}
|
|
55990
|
+
},
|
|
55991
|
+
{
|
|
55992
|
+
"in": "query",
|
|
55993
|
+
"name": "useCdn",
|
|
55994
|
+
"required": false,
|
|
55995
|
+
"schema": {
|
|
55996
|
+
"default": false,
|
|
55997
|
+
"type": "boolean"
|
|
55998
|
+
}
|
|
55999
|
+
}
|
|
56000
|
+
]
|
|
56001
|
+
},
|
|
56002
|
+
"post": {
|
|
56003
|
+
"operationId": "CreateNewsletterSeries",
|
|
56004
|
+
"responses": {
|
|
56005
|
+
"200": {
|
|
56006
|
+
"description": "Ok",
|
|
56007
|
+
"content": {
|
|
56008
|
+
"application/json": {
|
|
56009
|
+
"schema": {
|
|
56010
|
+
"$ref": "#/components/schemas/GetNewsletterSeriesByIdQueryResult"
|
|
56011
|
+
}
|
|
56012
|
+
}
|
|
56013
|
+
}
|
|
56014
|
+
}
|
|
56015
|
+
},
|
|
56016
|
+
"tags": [
|
|
56017
|
+
"Newsletter Series"
|
|
56018
|
+
],
|
|
56019
|
+
"security": [
|
|
56020
|
+
{
|
|
56021
|
+
"Implicit": [
|
|
56022
|
+
"WILL BE REPLACED"
|
|
56023
|
+
]
|
|
56024
|
+
}
|
|
56025
|
+
],
|
|
56026
|
+
"parameters": [],
|
|
56027
|
+
"requestBody": {
|
|
56028
|
+
"required": true,
|
|
56029
|
+
"content": {
|
|
56030
|
+
"application/json": {
|
|
56031
|
+
"schema": {
|
|
56032
|
+
"$ref": "#/components/schemas/SanityCreateNewsletterSeries"
|
|
56033
|
+
}
|
|
56034
|
+
}
|
|
56035
|
+
}
|
|
56036
|
+
}
|
|
56037
|
+
}
|
|
56038
|
+
},
|
|
56039
|
+
"/v1.0/newsletter-series/{id}": {
|
|
56040
|
+
"get": {
|
|
56041
|
+
"operationId": "GetNewsletterSeriesById",
|
|
56042
|
+
"responses": {
|
|
56043
|
+
"200": {
|
|
56044
|
+
"description": "Ok",
|
|
56045
|
+
"content": {
|
|
56046
|
+
"application/json": {
|
|
56047
|
+
"schema": {
|
|
56048
|
+
"$ref": "#/components/schemas/GetNewsletterSeriesByIdQueryResult"
|
|
56049
|
+
}
|
|
56050
|
+
}
|
|
56051
|
+
}
|
|
56052
|
+
}
|
|
56053
|
+
},
|
|
56054
|
+
"tags": [
|
|
56055
|
+
"Newsletter Series"
|
|
56056
|
+
],
|
|
56057
|
+
"security": [
|
|
56058
|
+
{
|
|
56059
|
+
"Implicit": [
|
|
56060
|
+
"WILL BE REPLACED"
|
|
56061
|
+
]
|
|
56062
|
+
}
|
|
56063
|
+
],
|
|
56064
|
+
"parameters": [
|
|
56065
|
+
{
|
|
56066
|
+
"in": "path",
|
|
56067
|
+
"name": "id",
|
|
56068
|
+
"required": true,
|
|
56069
|
+
"schema": {
|
|
56070
|
+
"type": "string"
|
|
56071
|
+
}
|
|
56072
|
+
},
|
|
56073
|
+
{
|
|
56074
|
+
"in": "query",
|
|
56075
|
+
"name": "useCache",
|
|
56076
|
+
"required": false,
|
|
56077
|
+
"schema": {
|
|
56078
|
+
"default": false,
|
|
56079
|
+
"type": "boolean"
|
|
56080
|
+
}
|
|
56081
|
+
},
|
|
56082
|
+
{
|
|
56083
|
+
"in": "query",
|
|
56084
|
+
"name": "useCdn",
|
|
56085
|
+
"required": false,
|
|
56086
|
+
"schema": {
|
|
56087
|
+
"default": false,
|
|
56088
|
+
"type": "boolean"
|
|
56089
|
+
}
|
|
56090
|
+
}
|
|
56091
|
+
]
|
|
56092
|
+
},
|
|
56093
|
+
"patch": {
|
|
56094
|
+
"operationId": "PatchNewsletterSeries",
|
|
56095
|
+
"responses": {
|
|
56096
|
+
"200": {
|
|
56097
|
+
"description": "Ok",
|
|
56098
|
+
"content": {
|
|
56099
|
+
"application/json": {
|
|
56100
|
+
"schema": {
|
|
56101
|
+
"$ref": "#/components/schemas/GetNewsletterSeriesByIdQueryResult"
|
|
56102
|
+
}
|
|
56103
|
+
}
|
|
56104
|
+
}
|
|
56105
|
+
}
|
|
56106
|
+
},
|
|
56107
|
+
"tags": [
|
|
56108
|
+
"Newsletter Series"
|
|
56109
|
+
],
|
|
56110
|
+
"security": [
|
|
56111
|
+
{
|
|
56112
|
+
"Implicit": [
|
|
56113
|
+
"WILL BE REPLACED"
|
|
56114
|
+
]
|
|
56115
|
+
}
|
|
56116
|
+
],
|
|
56117
|
+
"parameters": [
|
|
56118
|
+
{
|
|
56119
|
+
"in": "path",
|
|
56120
|
+
"name": "id",
|
|
56121
|
+
"required": true,
|
|
56122
|
+
"schema": {
|
|
56123
|
+
"type": "string"
|
|
56124
|
+
}
|
|
56125
|
+
}
|
|
56126
|
+
],
|
|
56127
|
+
"requestBody": {
|
|
56128
|
+
"required": true,
|
|
56129
|
+
"content": {
|
|
56130
|
+
"application/json": {
|
|
56131
|
+
"schema": {
|
|
56132
|
+
"$ref": "#/components/schemas/SanityPatchNewsletterSeries"
|
|
56133
|
+
}
|
|
56134
|
+
}
|
|
56135
|
+
}
|
|
56136
|
+
}
|
|
56137
|
+
}
|
|
56138
|
+
},
|
|
56139
|
+
"/v1.0/job-positions": {
|
|
56140
|
+
"get": {
|
|
56141
|
+
"operationId": "GetJobPositions",
|
|
56142
|
+
"responses": {
|
|
56143
|
+
"200": {
|
|
56144
|
+
"description": "Ok",
|
|
56145
|
+
"content": {
|
|
56146
|
+
"application/json": {
|
|
56147
|
+
"schema": {
|
|
56148
|
+
"items": {
|
|
56149
|
+
"$ref": "#/components/schemas/SanityJobPosition"
|
|
56150
|
+
},
|
|
56151
|
+
"type": "array"
|
|
56152
|
+
}
|
|
56153
|
+
}
|
|
56154
|
+
}
|
|
56155
|
+
}
|
|
56156
|
+
},
|
|
56157
|
+
"tags": [
|
|
56158
|
+
"Job positions"
|
|
56159
|
+
],
|
|
56160
|
+
"security": [
|
|
56161
|
+
{
|
|
56162
|
+
"Implicit": [
|
|
56163
|
+
"WILL BE REPLACED"
|
|
56164
|
+
]
|
|
56165
|
+
}
|
|
56166
|
+
],
|
|
56167
|
+
"parameters": [
|
|
56168
|
+
{
|
|
56169
|
+
"in": "query",
|
|
56170
|
+
"name": "useCache",
|
|
56171
|
+
"required": false,
|
|
56172
|
+
"schema": {
|
|
56173
|
+
"default": true,
|
|
56174
|
+
"type": "boolean"
|
|
56175
|
+
}
|
|
56176
|
+
},
|
|
56177
|
+
{
|
|
56178
|
+
"in": "query",
|
|
56179
|
+
"name": "useCdn",
|
|
56180
|
+
"required": false,
|
|
56181
|
+
"schema": {
|
|
56182
|
+
"default": true,
|
|
55264
56183
|
"type": "boolean"
|
|
55265
56184
|
}
|
|
55266
56185
|
}
|
|
55267
56186
|
]
|
|
55268
56187
|
},
|
|
55269
|
-
"
|
|
55270
|
-
"operationId": "
|
|
56188
|
+
"post": {
|
|
56189
|
+
"operationId": "CreateJobPosition",
|
|
55271
56190
|
"responses": {
|
|
55272
56191
|
"200": {
|
|
55273
56192
|
"description": "Ok",
|
|
55274
56193
|
"content": {
|
|
55275
56194
|
"application/json": {
|
|
55276
56195
|
"schema": {
|
|
55277
|
-
"$ref": "#/components/schemas/
|
|
56196
|
+
"$ref": "#/components/schemas/SanityJobPosition"
|
|
55278
56197
|
}
|
|
55279
56198
|
}
|
|
55280
56199
|
}
|
|
55281
56200
|
}
|
|
55282
56201
|
},
|
|
55283
56202
|
"tags": [
|
|
55284
|
-
"
|
|
56203
|
+
"Job positions"
|
|
55285
56204
|
],
|
|
55286
56205
|
"security": [
|
|
55287
56206
|
{
|
|
@@ -55296,30 +56215,30 @@
|
|
|
55296
56215
|
"content": {
|
|
55297
56216
|
"application/json": {
|
|
55298
56217
|
"schema": {
|
|
55299
|
-
"$ref": "#/components/schemas/
|
|
56218
|
+
"$ref": "#/components/schemas/SanityCreateJobPosition"
|
|
55300
56219
|
}
|
|
55301
56220
|
}
|
|
55302
56221
|
}
|
|
55303
56222
|
}
|
|
55304
56223
|
}
|
|
55305
56224
|
},
|
|
55306
|
-
"/v1.0/
|
|
56225
|
+
"/v1.0/job-positions/{slugOrId}": {
|
|
55307
56226
|
"get": {
|
|
55308
|
-
"operationId": "
|
|
56227
|
+
"operationId": "GetJobPositionBySlugOrId",
|
|
55309
56228
|
"responses": {
|
|
55310
56229
|
"200": {
|
|
55311
56230
|
"description": "Ok",
|
|
55312
56231
|
"content": {
|
|
55313
56232
|
"application/json": {
|
|
55314
56233
|
"schema": {
|
|
55315
|
-
"$ref": "#/components/schemas/
|
|
56234
|
+
"$ref": "#/components/schemas/SanityJobPosition"
|
|
55316
56235
|
}
|
|
55317
56236
|
}
|
|
55318
56237
|
}
|
|
55319
56238
|
}
|
|
55320
56239
|
},
|
|
55321
56240
|
"tags": [
|
|
55322
|
-
"
|
|
56241
|
+
"Job positions"
|
|
55323
56242
|
],
|
|
55324
56243
|
"security": [
|
|
55325
56244
|
{
|
|
@@ -55330,27 +56249,19 @@
|
|
|
55330
56249
|
],
|
|
55331
56250
|
"parameters": [
|
|
55332
56251
|
{
|
|
55333
|
-
"in": "
|
|
55334
|
-
"name": "
|
|
56252
|
+
"in": "path",
|
|
56253
|
+
"name": "slugOrId",
|
|
55335
56254
|
"required": true,
|
|
55336
56255
|
"schema": {
|
|
55337
56256
|
"type": "string"
|
|
55338
56257
|
}
|
|
55339
56258
|
},
|
|
55340
|
-
{
|
|
55341
|
-
"in": "query",
|
|
55342
|
-
"name": "sentSince",
|
|
55343
|
-
"required": false,
|
|
55344
|
-
"schema": {
|
|
55345
|
-
"type": "string"
|
|
55346
|
-
}
|
|
55347
|
-
},
|
|
55348
56259
|
{
|
|
55349
56260
|
"in": "query",
|
|
55350
56261
|
"name": "useCache",
|
|
55351
56262
|
"required": false,
|
|
55352
56263
|
"schema": {
|
|
55353
|
-
"default":
|
|
56264
|
+
"default": true,
|
|
55354
56265
|
"type": "boolean"
|
|
55355
56266
|
}
|
|
55356
56267
|
},
|
|
@@ -55359,28 +56270,28 @@
|
|
|
55359
56270
|
"name": "useCdn",
|
|
55360
56271
|
"required": false,
|
|
55361
56272
|
"schema": {
|
|
55362
|
-
"default":
|
|
56273
|
+
"default": true,
|
|
55363
56274
|
"type": "boolean"
|
|
55364
56275
|
}
|
|
55365
56276
|
}
|
|
55366
56277
|
]
|
|
55367
56278
|
},
|
|
55368
|
-
"
|
|
55369
|
-
"operationId": "
|
|
56279
|
+
"patch": {
|
|
56280
|
+
"operationId": "PatchJobPosition",
|
|
55370
56281
|
"responses": {
|
|
55371
56282
|
"200": {
|
|
55372
56283
|
"description": "Ok",
|
|
55373
56284
|
"content": {
|
|
55374
56285
|
"application/json": {
|
|
55375
56286
|
"schema": {
|
|
55376
|
-
"$ref": "#/components/schemas/
|
|
56287
|
+
"$ref": "#/components/schemas/SanityJobPosition"
|
|
55377
56288
|
}
|
|
55378
56289
|
}
|
|
55379
56290
|
}
|
|
55380
56291
|
}
|
|
55381
56292
|
},
|
|
55382
56293
|
"tags": [
|
|
55383
|
-
"
|
|
56294
|
+
"Job positions"
|
|
55384
56295
|
],
|
|
55385
56296
|
"security": [
|
|
55386
56297
|
{
|
|
@@ -55389,36 +56300,43 @@
|
|
|
55389
56300
|
]
|
|
55390
56301
|
}
|
|
55391
56302
|
],
|
|
55392
|
-
"parameters": [
|
|
56303
|
+
"parameters": [
|
|
56304
|
+
{
|
|
56305
|
+
"in": "path",
|
|
56306
|
+
"name": "slugOrId",
|
|
56307
|
+
"required": true,
|
|
56308
|
+
"schema": {
|
|
56309
|
+
"type": "string"
|
|
56310
|
+
}
|
|
56311
|
+
}
|
|
56312
|
+
],
|
|
55393
56313
|
"requestBody": {
|
|
55394
56314
|
"required": true,
|
|
55395
56315
|
"content": {
|
|
55396
56316
|
"application/json": {
|
|
55397
56317
|
"schema": {
|
|
55398
|
-
"$ref": "#/components/schemas/
|
|
56318
|
+
"$ref": "#/components/schemas/SanityPatchJobPosition"
|
|
55399
56319
|
}
|
|
55400
56320
|
}
|
|
55401
56321
|
}
|
|
55402
56322
|
}
|
|
55403
|
-
}
|
|
55404
|
-
|
|
55405
|
-
|
|
55406
|
-
"get": {
|
|
55407
|
-
"operationId": "GetNewsletterById",
|
|
56323
|
+
},
|
|
56324
|
+
"delete": {
|
|
56325
|
+
"operationId": "DeleteJobPosition",
|
|
55408
56326
|
"responses": {
|
|
55409
56327
|
"200": {
|
|
55410
56328
|
"description": "Ok",
|
|
55411
56329
|
"content": {
|
|
55412
56330
|
"application/json": {
|
|
55413
56331
|
"schema": {
|
|
55414
|
-
"$ref": "#/components/schemas/
|
|
56332
|
+
"$ref": "#/components/schemas/SanityJobPosition"
|
|
55415
56333
|
}
|
|
55416
56334
|
}
|
|
55417
56335
|
}
|
|
55418
56336
|
}
|
|
55419
56337
|
},
|
|
55420
56338
|
"tags": [
|
|
55421
|
-
"
|
|
56339
|
+
"Job positions"
|
|
55422
56340
|
],
|
|
55423
56341
|
"security": [
|
|
55424
56342
|
{
|
|
@@ -55430,48 +56348,32 @@
|
|
|
55430
56348
|
"parameters": [
|
|
55431
56349
|
{
|
|
55432
56350
|
"in": "path",
|
|
55433
|
-
"name": "
|
|
56351
|
+
"name": "slugOrId",
|
|
55434
56352
|
"required": true,
|
|
55435
56353
|
"schema": {
|
|
55436
56354
|
"type": "string"
|
|
55437
56355
|
}
|
|
55438
|
-
},
|
|
55439
|
-
{
|
|
55440
|
-
"in": "query",
|
|
55441
|
-
"name": "useCache",
|
|
55442
|
-
"required": false,
|
|
55443
|
-
"schema": {
|
|
55444
|
-
"default": false,
|
|
55445
|
-
"type": "boolean"
|
|
55446
|
-
}
|
|
55447
|
-
},
|
|
55448
|
-
{
|
|
55449
|
-
"in": "query",
|
|
55450
|
-
"name": "useCdn",
|
|
55451
|
-
"required": false,
|
|
55452
|
-
"schema": {
|
|
55453
|
-
"default": false,
|
|
55454
|
-
"type": "boolean"
|
|
55455
|
-
}
|
|
55456
56356
|
}
|
|
55457
56357
|
]
|
|
55458
|
-
}
|
|
55459
|
-
|
|
55460
|
-
|
|
56358
|
+
}
|
|
56359
|
+
},
|
|
56360
|
+
"/v1.0/protected/health/{provider}": {
|
|
56361
|
+
"get": {
|
|
56362
|
+
"operationId": "CheckHealth",
|
|
55461
56363
|
"responses": {
|
|
55462
56364
|
"200": {
|
|
55463
56365
|
"description": "Ok",
|
|
55464
56366
|
"content": {
|
|
55465
56367
|
"application/json": {
|
|
55466
56368
|
"schema": {
|
|
55467
|
-
"$ref": "#/components/schemas/
|
|
56369
|
+
"$ref": "#/components/schemas/IntegrationHealthResult"
|
|
55468
56370
|
}
|
|
55469
56371
|
}
|
|
55470
56372
|
}
|
|
55471
56373
|
}
|
|
55472
56374
|
},
|
|
55473
56375
|
"tags": [
|
|
55474
|
-
"
|
|
56376
|
+
"Health"
|
|
55475
56377
|
],
|
|
55476
56378
|
"security": [
|
|
55477
56379
|
{
|
|
@@ -55483,42 +56385,32 @@
|
|
|
55483
56385
|
"parameters": [
|
|
55484
56386
|
{
|
|
55485
56387
|
"in": "path",
|
|
55486
|
-
"name": "
|
|
56388
|
+
"name": "provider",
|
|
55487
56389
|
"required": true,
|
|
55488
56390
|
"schema": {
|
|
55489
56391
|
"type": "string"
|
|
55490
56392
|
}
|
|
55491
56393
|
}
|
|
55492
|
-
]
|
|
55493
|
-
"requestBody": {
|
|
55494
|
-
"required": true,
|
|
55495
|
-
"content": {
|
|
55496
|
-
"application/json": {
|
|
55497
|
-
"schema": {
|
|
55498
|
-
"$ref": "#/components/schemas/SanityPatchNewsletter"
|
|
55499
|
-
}
|
|
55500
|
-
}
|
|
55501
|
-
}
|
|
55502
|
-
}
|
|
56394
|
+
]
|
|
55503
56395
|
}
|
|
55504
56396
|
},
|
|
55505
|
-
"/v1.0/
|
|
56397
|
+
"/v1.0/handbook": {
|
|
55506
56398
|
"get": {
|
|
55507
|
-
"operationId": "
|
|
56399
|
+
"operationId": "GetHandbook",
|
|
55508
56400
|
"responses": {
|
|
55509
56401
|
"200": {
|
|
55510
56402
|
"description": "Ok",
|
|
55511
56403
|
"content": {
|
|
55512
56404
|
"application/json": {
|
|
55513
56405
|
"schema": {
|
|
55514
|
-
"$ref": "#/components/schemas/
|
|
56406
|
+
"$ref": "#/components/schemas/GetHandbookResult"
|
|
55515
56407
|
}
|
|
55516
56408
|
}
|
|
55517
56409
|
}
|
|
55518
56410
|
}
|
|
55519
56411
|
},
|
|
55520
56412
|
"tags": [
|
|
55521
|
-
"
|
|
56413
|
+
"Handbook"
|
|
55522
56414
|
],
|
|
55523
56415
|
"security": [
|
|
55524
56416
|
{
|
|
@@ -55533,7 +56425,7 @@
|
|
|
55533
56425
|
"name": "useCache",
|
|
55534
56426
|
"required": false,
|
|
55535
56427
|
"schema": {
|
|
55536
|
-
"default":
|
|
56428
|
+
"default": true,
|
|
55537
56429
|
"type": "boolean"
|
|
55538
56430
|
}
|
|
55539
56431
|
},
|
|
@@ -55547,61 +56439,25 @@
|
|
|
55547
56439
|
}
|
|
55548
56440
|
}
|
|
55549
56441
|
]
|
|
55550
|
-
},
|
|
55551
|
-
"post": {
|
|
55552
|
-
"operationId": "CreateNewsletterSeries",
|
|
55553
|
-
"responses": {
|
|
55554
|
-
"200": {
|
|
55555
|
-
"description": "Ok",
|
|
55556
|
-
"content": {
|
|
55557
|
-
"application/json": {
|
|
55558
|
-
"schema": {
|
|
55559
|
-
"$ref": "#/components/schemas/GetNewsletterSeriesByIdQueryResult"
|
|
55560
|
-
}
|
|
55561
|
-
}
|
|
55562
|
-
}
|
|
55563
|
-
}
|
|
55564
|
-
},
|
|
55565
|
-
"tags": [
|
|
55566
|
-
"Newsletter Series"
|
|
55567
|
-
],
|
|
55568
|
-
"security": [
|
|
55569
|
-
{
|
|
55570
|
-
"Implicit": [
|
|
55571
|
-
"WILL BE REPLACED"
|
|
55572
|
-
]
|
|
55573
|
-
}
|
|
55574
|
-
],
|
|
55575
|
-
"parameters": [],
|
|
55576
|
-
"requestBody": {
|
|
55577
|
-
"required": true,
|
|
55578
|
-
"content": {
|
|
55579
|
-
"application/json": {
|
|
55580
|
-
"schema": {
|
|
55581
|
-
"$ref": "#/components/schemas/SanityCreateNewsletterSeries"
|
|
55582
|
-
}
|
|
55583
|
-
}
|
|
55584
|
-
}
|
|
55585
|
-
}
|
|
55586
56442
|
}
|
|
55587
56443
|
},
|
|
55588
|
-
"/v1.0/
|
|
56444
|
+
"/v1.0/handbook/sections/{sectionKey}": {
|
|
55589
56445
|
"get": {
|
|
55590
|
-
"operationId": "
|
|
56446
|
+
"operationId": "GetHandbookSection",
|
|
55591
56447
|
"responses": {
|
|
55592
56448
|
"200": {
|
|
55593
56449
|
"description": "Ok",
|
|
55594
56450
|
"content": {
|
|
55595
56451
|
"application/json": {
|
|
55596
56452
|
"schema": {
|
|
55597
|
-
"$ref": "#/components/schemas/
|
|
56453
|
+
"$ref": "#/components/schemas/HandbookSection"
|
|
55598
56454
|
}
|
|
55599
56455
|
}
|
|
55600
56456
|
}
|
|
55601
56457
|
}
|
|
55602
56458
|
},
|
|
55603
56459
|
"tags": [
|
|
55604
|
-
"
|
|
56460
|
+
"Handbook"
|
|
55605
56461
|
],
|
|
55606
56462
|
"security": [
|
|
55607
56463
|
{
|
|
@@ -55613,7 +56469,7 @@
|
|
|
55613
56469
|
"parameters": [
|
|
55614
56470
|
{
|
|
55615
56471
|
"in": "path",
|
|
55616
|
-
"name": "
|
|
56472
|
+
"name": "sectionKey",
|
|
55617
56473
|
"required": true,
|
|
55618
56474
|
"schema": {
|
|
55619
56475
|
"type": "string"
|
|
@@ -55624,7 +56480,7 @@
|
|
|
55624
56480
|
"name": "useCache",
|
|
55625
56481
|
"required": false,
|
|
55626
56482
|
"schema": {
|
|
55627
|
-
"default":
|
|
56483
|
+
"default": true,
|
|
55628
56484
|
"type": "boolean"
|
|
55629
56485
|
}
|
|
55630
56486
|
},
|
|
@@ -55640,21 +56496,21 @@
|
|
|
55640
56496
|
]
|
|
55641
56497
|
},
|
|
55642
56498
|
"patch": {
|
|
55643
|
-
"operationId": "
|
|
56499
|
+
"operationId": "PatchHandbookSection",
|
|
55644
56500
|
"responses": {
|
|
55645
56501
|
"200": {
|
|
55646
56502
|
"description": "Ok",
|
|
55647
56503
|
"content": {
|
|
55648
56504
|
"application/json": {
|
|
55649
56505
|
"schema": {
|
|
55650
|
-
"$ref": "#/components/schemas/
|
|
56506
|
+
"$ref": "#/components/schemas/HandbookSection"
|
|
55651
56507
|
}
|
|
55652
56508
|
}
|
|
55653
56509
|
}
|
|
55654
56510
|
}
|
|
55655
56511
|
},
|
|
55656
56512
|
"tags": [
|
|
55657
|
-
"
|
|
56513
|
+
"Handbook"
|
|
55658
56514
|
],
|
|
55659
56515
|
"security": [
|
|
55660
56516
|
{
|
|
@@ -55666,7 +56522,7 @@
|
|
|
55666
56522
|
"parameters": [
|
|
55667
56523
|
{
|
|
55668
56524
|
"in": "path",
|
|
55669
|
-
"name": "
|
|
56525
|
+
"name": "sectionKey",
|
|
55670
56526
|
"required": true,
|
|
55671
56527
|
"schema": {
|
|
55672
56528
|
"type": "string"
|
|
@@ -55678,33 +56534,28 @@
|
|
|
55678
56534
|
"content": {
|
|
55679
56535
|
"application/json": {
|
|
55680
56536
|
"schema": {
|
|
55681
|
-
"$ref": "#/components/schemas/
|
|
56537
|
+
"$ref": "#/components/schemas/SanityPatchHandbookSection"
|
|
55682
56538
|
}
|
|
55683
56539
|
}
|
|
55684
56540
|
}
|
|
55685
56541
|
}
|
|
55686
|
-
}
|
|
55687
|
-
|
|
55688
|
-
|
|
55689
|
-
"get": {
|
|
55690
|
-
"operationId": "GetJobPositions",
|
|
56542
|
+
},
|
|
56543
|
+
"delete": {
|
|
56544
|
+
"operationId": "RemoveHandbookSection",
|
|
55691
56545
|
"responses": {
|
|
55692
56546
|
"200": {
|
|
55693
56547
|
"description": "Ok",
|
|
55694
56548
|
"content": {
|
|
55695
56549
|
"application/json": {
|
|
55696
56550
|
"schema": {
|
|
55697
|
-
"
|
|
55698
|
-
"$ref": "#/components/schemas/SanityJobPosition"
|
|
55699
|
-
},
|
|
55700
|
-
"type": "array"
|
|
56551
|
+
"$ref": "#/components/schemas/HandbookSection"
|
|
55701
56552
|
}
|
|
55702
56553
|
}
|
|
55703
56554
|
}
|
|
55704
56555
|
}
|
|
55705
56556
|
},
|
|
55706
56557
|
"tags": [
|
|
55707
|
-
"
|
|
56558
|
+
"Handbook"
|
|
55708
56559
|
],
|
|
55709
56560
|
"security": [
|
|
55710
56561
|
{
|
|
@@ -55715,41 +56566,33 @@
|
|
|
55715
56566
|
],
|
|
55716
56567
|
"parameters": [
|
|
55717
56568
|
{
|
|
55718
|
-
"in": "
|
|
55719
|
-
"name": "
|
|
55720
|
-
"required":
|
|
55721
|
-
"schema": {
|
|
55722
|
-
"default": true,
|
|
55723
|
-
"type": "boolean"
|
|
55724
|
-
}
|
|
55725
|
-
},
|
|
55726
|
-
{
|
|
55727
|
-
"in": "query",
|
|
55728
|
-
"name": "useCdn",
|
|
55729
|
-
"required": false,
|
|
56569
|
+
"in": "path",
|
|
56570
|
+
"name": "sectionKey",
|
|
56571
|
+
"required": true,
|
|
55730
56572
|
"schema": {
|
|
55731
|
-
"
|
|
55732
|
-
"type": "boolean"
|
|
56573
|
+
"type": "string"
|
|
55733
56574
|
}
|
|
55734
56575
|
}
|
|
55735
56576
|
]
|
|
55736
|
-
}
|
|
56577
|
+
}
|
|
56578
|
+
},
|
|
56579
|
+
"/v1.0/handbook/sections": {
|
|
55737
56580
|
"post": {
|
|
55738
|
-
"operationId": "
|
|
56581
|
+
"operationId": "AddHandbookSection",
|
|
55739
56582
|
"responses": {
|
|
55740
56583
|
"200": {
|
|
55741
56584
|
"description": "Ok",
|
|
55742
56585
|
"content": {
|
|
55743
56586
|
"application/json": {
|
|
55744
56587
|
"schema": {
|
|
55745
|
-
"$ref": "#/components/schemas/
|
|
56588
|
+
"$ref": "#/components/schemas/GetHandbookResult"
|
|
55746
56589
|
}
|
|
55747
56590
|
}
|
|
55748
56591
|
}
|
|
55749
56592
|
}
|
|
55750
56593
|
},
|
|
55751
56594
|
"tags": [
|
|
55752
|
-
"
|
|
56595
|
+
"Handbook"
|
|
55753
56596
|
],
|
|
55754
56597
|
"security": [
|
|
55755
56598
|
{
|
|
@@ -55764,30 +56607,30 @@
|
|
|
55764
56607
|
"content": {
|
|
55765
56608
|
"application/json": {
|
|
55766
56609
|
"schema": {
|
|
55767
|
-
"$ref": "#/components/schemas/
|
|
56610
|
+
"$ref": "#/components/schemas/SanityAppendHandbookSection"
|
|
55768
56611
|
}
|
|
55769
56612
|
}
|
|
55770
56613
|
}
|
|
55771
56614
|
}
|
|
55772
56615
|
}
|
|
55773
56616
|
},
|
|
55774
|
-
"/v1.0/
|
|
56617
|
+
"/v1.0/handbook/sections/{sectionKey}/subsections/{subsectionKey}": {
|
|
55775
56618
|
"get": {
|
|
55776
|
-
"operationId": "
|
|
56619
|
+
"operationId": "GetHandbookSubsection",
|
|
55777
56620
|
"responses": {
|
|
55778
56621
|
"200": {
|
|
55779
56622
|
"description": "Ok",
|
|
55780
56623
|
"content": {
|
|
55781
56624
|
"application/json": {
|
|
55782
56625
|
"schema": {
|
|
55783
|
-
"$ref": "#/components/schemas/
|
|
56626
|
+
"$ref": "#/components/schemas/HandbookSubsectionResult"
|
|
55784
56627
|
}
|
|
55785
56628
|
}
|
|
55786
56629
|
}
|
|
55787
56630
|
}
|
|
55788
56631
|
},
|
|
55789
56632
|
"tags": [
|
|
55790
|
-
"
|
|
56633
|
+
"Handbook"
|
|
55791
56634
|
],
|
|
55792
56635
|
"security": [
|
|
55793
56636
|
{
|
|
@@ -55799,7 +56642,15 @@
|
|
|
55799
56642
|
"parameters": [
|
|
55800
56643
|
{
|
|
55801
56644
|
"in": "path",
|
|
55802
|
-
"name": "
|
|
56645
|
+
"name": "sectionKey",
|
|
56646
|
+
"required": true,
|
|
56647
|
+
"schema": {
|
|
56648
|
+
"type": "string"
|
|
56649
|
+
}
|
|
56650
|
+
},
|
|
56651
|
+
{
|
|
56652
|
+
"in": "path",
|
|
56653
|
+
"name": "subsectionKey",
|
|
55803
56654
|
"required": true,
|
|
55804
56655
|
"schema": {
|
|
55805
56656
|
"type": "string"
|
|
@@ -55819,28 +56670,28 @@
|
|
|
55819
56670
|
"name": "useCdn",
|
|
55820
56671
|
"required": false,
|
|
55821
56672
|
"schema": {
|
|
55822
|
-
"default":
|
|
56673
|
+
"default": false,
|
|
55823
56674
|
"type": "boolean"
|
|
55824
56675
|
}
|
|
55825
56676
|
}
|
|
55826
56677
|
]
|
|
55827
56678
|
},
|
|
55828
56679
|
"patch": {
|
|
55829
|
-
"operationId": "
|
|
56680
|
+
"operationId": "PatchHandbookSubsection",
|
|
55830
56681
|
"responses": {
|
|
55831
56682
|
"200": {
|
|
55832
56683
|
"description": "Ok",
|
|
55833
56684
|
"content": {
|
|
55834
56685
|
"application/json": {
|
|
55835
56686
|
"schema": {
|
|
55836
|
-
"$ref": "#/components/schemas/
|
|
56687
|
+
"$ref": "#/components/schemas/HandbookSubsectionResult"
|
|
55837
56688
|
}
|
|
55838
56689
|
}
|
|
55839
56690
|
}
|
|
55840
56691
|
}
|
|
55841
56692
|
},
|
|
55842
56693
|
"tags": [
|
|
55843
|
-
"
|
|
56694
|
+
"Handbook"
|
|
55844
56695
|
],
|
|
55845
56696
|
"security": [
|
|
55846
56697
|
{
|
|
@@ -55852,7 +56703,15 @@
|
|
|
55852
56703
|
"parameters": [
|
|
55853
56704
|
{
|
|
55854
56705
|
"in": "path",
|
|
55855
|
-
"name": "
|
|
56706
|
+
"name": "sectionKey",
|
|
56707
|
+
"required": true,
|
|
56708
|
+
"schema": {
|
|
56709
|
+
"type": "string"
|
|
56710
|
+
}
|
|
56711
|
+
},
|
|
56712
|
+
{
|
|
56713
|
+
"in": "path",
|
|
56714
|
+
"name": "subsectionKey",
|
|
55856
56715
|
"required": true,
|
|
55857
56716
|
"schema": {
|
|
55858
56717
|
"type": "string"
|
|
@@ -55864,28 +56723,28 @@
|
|
|
55864
56723
|
"content": {
|
|
55865
56724
|
"application/json": {
|
|
55866
56725
|
"schema": {
|
|
55867
|
-
"$ref": "#/components/schemas/
|
|
56726
|
+
"$ref": "#/components/schemas/SanityPatchHandbookSubsection"
|
|
55868
56727
|
}
|
|
55869
56728
|
}
|
|
55870
56729
|
}
|
|
55871
56730
|
}
|
|
55872
56731
|
},
|
|
55873
56732
|
"delete": {
|
|
55874
|
-
"operationId": "
|
|
56733
|
+
"operationId": "RemoveHandbookSubsection",
|
|
55875
56734
|
"responses": {
|
|
55876
56735
|
"200": {
|
|
55877
56736
|
"description": "Ok",
|
|
55878
56737
|
"content": {
|
|
55879
56738
|
"application/json": {
|
|
55880
56739
|
"schema": {
|
|
55881
|
-
"$ref": "#/components/schemas/
|
|
56740
|
+
"$ref": "#/components/schemas/HandbookSubsectionResult"
|
|
55882
56741
|
}
|
|
55883
56742
|
}
|
|
55884
56743
|
}
|
|
55885
56744
|
}
|
|
55886
56745
|
},
|
|
55887
56746
|
"tags": [
|
|
55888
|
-
"
|
|
56747
|
+
"Handbook"
|
|
55889
56748
|
],
|
|
55890
56749
|
"security": [
|
|
55891
56750
|
{
|
|
@@ -55897,7 +56756,15 @@
|
|
|
55897
56756
|
"parameters": [
|
|
55898
56757
|
{
|
|
55899
56758
|
"in": "path",
|
|
55900
|
-
"name": "
|
|
56759
|
+
"name": "sectionKey",
|
|
56760
|
+
"required": true,
|
|
56761
|
+
"schema": {
|
|
56762
|
+
"type": "string"
|
|
56763
|
+
}
|
|
56764
|
+
},
|
|
56765
|
+
{
|
|
56766
|
+
"in": "path",
|
|
56767
|
+
"name": "subsectionKey",
|
|
55901
56768
|
"required": true,
|
|
55902
56769
|
"schema": {
|
|
55903
56770
|
"type": "string"
|
|
@@ -55906,23 +56773,23 @@
|
|
|
55906
56773
|
]
|
|
55907
56774
|
}
|
|
55908
56775
|
},
|
|
55909
|
-
"/v1.0/
|
|
55910
|
-
"
|
|
55911
|
-
"operationId": "
|
|
56776
|
+
"/v1.0/handbook/sections/{sectionKey}/subsections": {
|
|
56777
|
+
"post": {
|
|
56778
|
+
"operationId": "AddHandbookSubsection",
|
|
55912
56779
|
"responses": {
|
|
55913
56780
|
"200": {
|
|
55914
56781
|
"description": "Ok",
|
|
55915
56782
|
"content": {
|
|
55916
56783
|
"application/json": {
|
|
55917
56784
|
"schema": {
|
|
55918
|
-
"$ref": "#/components/schemas/
|
|
56785
|
+
"$ref": "#/components/schemas/HandbookSubsectionResult"
|
|
55919
56786
|
}
|
|
55920
56787
|
}
|
|
55921
56788
|
}
|
|
55922
56789
|
}
|
|
55923
56790
|
},
|
|
55924
56791
|
"tags": [
|
|
55925
|
-
"
|
|
56792
|
+
"Handbook"
|
|
55926
56793
|
],
|
|
55927
56794
|
"security": [
|
|
55928
56795
|
{
|
|
@@ -55934,13 +56801,23 @@
|
|
|
55934
56801
|
"parameters": [
|
|
55935
56802
|
{
|
|
55936
56803
|
"in": "path",
|
|
55937
|
-
"name": "
|
|
56804
|
+
"name": "sectionKey",
|
|
55938
56805
|
"required": true,
|
|
55939
56806
|
"schema": {
|
|
55940
56807
|
"type": "string"
|
|
55941
56808
|
}
|
|
55942
56809
|
}
|
|
55943
|
-
]
|
|
56810
|
+
],
|
|
56811
|
+
"requestBody": {
|
|
56812
|
+
"required": true,
|
|
56813
|
+
"content": {
|
|
56814
|
+
"application/json": {
|
|
56815
|
+
"schema": {
|
|
56816
|
+
"$ref": "#/components/schemas/SanityAppendHandbookSubsection"
|
|
56817
|
+
}
|
|
56818
|
+
}
|
|
56819
|
+
}
|
|
56820
|
+
}
|
|
55944
56821
|
}
|
|
55945
56822
|
},
|
|
55946
56823
|
"/v1.0/groups": {
|