@snokam/mcp-api 0.104.0 → 0.106.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
CHANGED
|
@@ -4368,6 +4368,9 @@
|
|
|
4368
4368
|
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
4369
4369
|
}
|
|
4370
4370
|
},
|
|
4371
|
+
"github": {
|
|
4372
|
+
"type": "string"
|
|
4373
|
+
},
|
|
4371
4374
|
"graduationYear": {
|
|
4372
4375
|
"type": "number",
|
|
4373
4376
|
"format": "double"
|
|
@@ -4397,6 +4400,9 @@
|
|
|
4397
4400
|
"isSeekingProject": {
|
|
4398
4401
|
"type": "boolean"
|
|
4399
4402
|
},
|
|
4403
|
+
"linkedin": {
|
|
4404
|
+
"type": "string"
|
|
4405
|
+
},
|
|
4400
4406
|
"manager": {
|
|
4401
4407
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
4402
4408
|
},
|
|
@@ -48,6 +48,32 @@
|
|
|
48
48
|
]
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
+
"/v1.0/presentations": {
|
|
52
|
+
"get": {
|
|
53
|
+
"tags": [
|
|
54
|
+
"CV"
|
|
55
|
+
],
|
|
56
|
+
"summary": "Gets all presentations held by consultants",
|
|
57
|
+
"description": "Aggregates the presentations listed across all consultant CVs in CvPartner, including the speaker for each presentation. Public endpoint used by the snokam.no/presentasjoner page.",
|
|
58
|
+
"operationId": "GetPresentations",
|
|
59
|
+
"responses": {
|
|
60
|
+
"200": {
|
|
61
|
+
"description": "List of presentations retrieved successfully",
|
|
62
|
+
"content": {
|
|
63
|
+
"application/json": {
|
|
64
|
+
"schema": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"$ref": "#/components/schemas/consultantPresentation"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"x-ms-summary": "Success"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
51
77
|
"/v1.0/cvs/my-cv": {
|
|
52
78
|
"get": {
|
|
53
79
|
"tags": [
|
|
@@ -1185,6 +1211,38 @@
|
|
|
1185
1211
|
}
|
|
1186
1212
|
}
|
|
1187
1213
|
},
|
|
1214
|
+
"consultantPresentation": {
|
|
1215
|
+
"type": "object",
|
|
1216
|
+
"properties": {
|
|
1217
|
+
"id": {
|
|
1218
|
+
"type": "string",
|
|
1219
|
+
"nullable": true
|
|
1220
|
+
},
|
|
1221
|
+
"title": {
|
|
1222
|
+
"type": "string",
|
|
1223
|
+
"nullable": true
|
|
1224
|
+
},
|
|
1225
|
+
"description": {
|
|
1226
|
+
"type": "string",
|
|
1227
|
+
"nullable": true
|
|
1228
|
+
},
|
|
1229
|
+
"longDescription": {
|
|
1230
|
+
"type": "string",
|
|
1231
|
+
"nullable": true
|
|
1232
|
+
},
|
|
1233
|
+
"year": {
|
|
1234
|
+
"type": "string",
|
|
1235
|
+
"nullable": true
|
|
1236
|
+
},
|
|
1237
|
+
"month": {
|
|
1238
|
+
"type": "string",
|
|
1239
|
+
"nullable": true
|
|
1240
|
+
},
|
|
1241
|
+
"speaker": {
|
|
1242
|
+
"$ref": "#/components/schemas/presentationSpeaker"
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
1188
1246
|
"consultantProjectExperience": {
|
|
1189
1247
|
"type": "object",
|
|
1190
1248
|
"properties": {
|
|
@@ -1591,6 +1649,9 @@
|
|
|
1591
1649
|
"$ref": "#/components/schemas/pageEquipmentInner"
|
|
1592
1650
|
}
|
|
1593
1651
|
},
|
|
1652
|
+
"github": {
|
|
1653
|
+
"type": "string"
|
|
1654
|
+
},
|
|
1594
1655
|
"graduationYear": {
|
|
1595
1656
|
"type": "number",
|
|
1596
1657
|
"format": "double",
|
|
@@ -1626,6 +1687,9 @@
|
|
|
1626
1687
|
"type": "boolean",
|
|
1627
1688
|
"nullable": true
|
|
1628
1689
|
},
|
|
1690
|
+
"linkedin": {
|
|
1691
|
+
"type": "string"
|
|
1692
|
+
},
|
|
1629
1693
|
"manager": {
|
|
1630
1694
|
"$ref": "#/components/schemas/employeeReference"
|
|
1631
1695
|
},
|
|
@@ -1687,6 +1751,24 @@
|
|
|
1687
1751
|
}
|
|
1688
1752
|
}
|
|
1689
1753
|
},
|
|
1754
|
+
"presentationSpeaker": {
|
|
1755
|
+
"type": "object",
|
|
1756
|
+
"properties": {
|
|
1757
|
+
"name": {
|
|
1758
|
+
"type": "string",
|
|
1759
|
+
"nullable": true
|
|
1760
|
+
},
|
|
1761
|
+
"email": {
|
|
1762
|
+
"type": "string",
|
|
1763
|
+
"nullable": true
|
|
1764
|
+
},
|
|
1765
|
+
"flowcaseUserId": {
|
|
1766
|
+
"type": "string",
|
|
1767
|
+
"nullable": true
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"nullable": true
|
|
1771
|
+
},
|
|
1690
1772
|
"protectedEmployee": {
|
|
1691
1773
|
"type": "object",
|
|
1692
1774
|
"properties": {
|
|
@@ -1768,6 +1850,9 @@
|
|
|
1768
1850
|
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
1769
1851
|
}
|
|
1770
1852
|
},
|
|
1853
|
+
"github": {
|
|
1854
|
+
"type": "string"
|
|
1855
|
+
},
|
|
1771
1856
|
"graduationYear": {
|
|
1772
1857
|
"type": "number",
|
|
1773
1858
|
"format": "double"
|
|
@@ -1797,6 +1882,9 @@
|
|
|
1797
1882
|
"isSeekingProject": {
|
|
1798
1883
|
"type": "boolean"
|
|
1799
1884
|
},
|
|
1885
|
+
"linkedin": {
|
|
1886
|
+
"type": "string"
|
|
1887
|
+
},
|
|
1800
1888
|
"manager": {
|
|
1801
1889
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1802
1890
|
},
|
|
@@ -1924,6 +2012,12 @@
|
|
|
1924
2012
|
"about": {
|
|
1925
2013
|
"type": "string"
|
|
1926
2014
|
},
|
|
2015
|
+
"linkedin": {
|
|
2016
|
+
"type": "string"
|
|
2017
|
+
},
|
|
2018
|
+
"github": {
|
|
2019
|
+
"type": "string"
|
|
2020
|
+
},
|
|
1927
2021
|
"birthDate": {
|
|
1928
2022
|
"type": "string",
|
|
1929
2023
|
"format": "date-time",
|
|
@@ -29880,6 +29880,12 @@
|
|
|
29880
29880
|
"type": "array",
|
|
29881
29881
|
"nullable": true
|
|
29882
29882
|
},
|
|
29883
|
+
"github": {
|
|
29884
|
+
"type": "string"
|
|
29885
|
+
},
|
|
29886
|
+
"linkedin": {
|
|
29887
|
+
"type": "string"
|
|
29888
|
+
},
|
|
29883
29889
|
"about": {
|
|
29884
29890
|
"type": "string"
|
|
29885
29891
|
},
|
|
@@ -30489,6 +30495,12 @@
|
|
|
30489
30495
|
},
|
|
30490
30496
|
"type": "array"
|
|
30491
30497
|
},
|
|
30498
|
+
"github": {
|
|
30499
|
+
"type": "string"
|
|
30500
|
+
},
|
|
30501
|
+
"linkedin": {
|
|
30502
|
+
"type": "string"
|
|
30503
|
+
},
|
|
30492
30504
|
"about": {
|
|
30493
30505
|
"type": "string"
|
|
30494
30506
|
},
|
|
@@ -31094,6 +31106,14 @@
|
|
|
31094
31106
|
"type": "string",
|
|
31095
31107
|
"nullable": true
|
|
31096
31108
|
},
|
|
31109
|
+
"linkedin": {
|
|
31110
|
+
"type": "string",
|
|
31111
|
+
"nullable": true
|
|
31112
|
+
},
|
|
31113
|
+
"github": {
|
|
31114
|
+
"type": "string",
|
|
31115
|
+
"nullable": true
|
|
31116
|
+
},
|
|
31097
31117
|
"groups": {
|
|
31098
31118
|
"items": {
|
|
31099
31119
|
"allOf": [
|
|
@@ -4368,6 +4368,9 @@
|
|
|
4368
4368
|
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
4369
4369
|
}
|
|
4370
4370
|
},
|
|
4371
|
+
"github": {
|
|
4372
|
+
"type": "string"
|
|
4373
|
+
},
|
|
4371
4374
|
"graduationYear": {
|
|
4372
4375
|
"type": "number",
|
|
4373
4376
|
"format": "double"
|
|
@@ -4397,6 +4400,9 @@
|
|
|
4397
4400
|
"isSeekingProject": {
|
|
4398
4401
|
"type": "boolean"
|
|
4399
4402
|
},
|
|
4403
|
+
"linkedin": {
|
|
4404
|
+
"type": "string"
|
|
4405
|
+
},
|
|
4400
4406
|
"manager": {
|
|
4401
4407
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
4402
4408
|
},
|
|
@@ -48,6 +48,32 @@
|
|
|
48
48
|
]
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
+
"/v1.0/presentations": {
|
|
52
|
+
"get": {
|
|
53
|
+
"tags": [
|
|
54
|
+
"CV"
|
|
55
|
+
],
|
|
56
|
+
"summary": "Gets all presentations held by consultants",
|
|
57
|
+
"description": "Aggregates the presentations listed across all consultant CVs in CvPartner, including the speaker for each presentation. Public endpoint used by the snokam.no/presentasjoner page.",
|
|
58
|
+
"operationId": "GetPresentations",
|
|
59
|
+
"responses": {
|
|
60
|
+
"200": {
|
|
61
|
+
"description": "List of presentations retrieved successfully",
|
|
62
|
+
"content": {
|
|
63
|
+
"application/json": {
|
|
64
|
+
"schema": {
|
|
65
|
+
"type": "array",
|
|
66
|
+
"items": {
|
|
67
|
+
"$ref": "#/components/schemas/consultantPresentation"
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"x-ms-summary": "Success"
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
51
77
|
"/v1.0/cvs/my-cv": {
|
|
52
78
|
"get": {
|
|
53
79
|
"tags": [
|
|
@@ -1185,6 +1211,38 @@
|
|
|
1185
1211
|
}
|
|
1186
1212
|
}
|
|
1187
1213
|
},
|
|
1214
|
+
"consultantPresentation": {
|
|
1215
|
+
"type": "object",
|
|
1216
|
+
"properties": {
|
|
1217
|
+
"id": {
|
|
1218
|
+
"type": "string",
|
|
1219
|
+
"nullable": true
|
|
1220
|
+
},
|
|
1221
|
+
"title": {
|
|
1222
|
+
"type": "string",
|
|
1223
|
+
"nullable": true
|
|
1224
|
+
},
|
|
1225
|
+
"description": {
|
|
1226
|
+
"type": "string",
|
|
1227
|
+
"nullable": true
|
|
1228
|
+
},
|
|
1229
|
+
"longDescription": {
|
|
1230
|
+
"type": "string",
|
|
1231
|
+
"nullable": true
|
|
1232
|
+
},
|
|
1233
|
+
"year": {
|
|
1234
|
+
"type": "string",
|
|
1235
|
+
"nullable": true
|
|
1236
|
+
},
|
|
1237
|
+
"month": {
|
|
1238
|
+
"type": "string",
|
|
1239
|
+
"nullable": true
|
|
1240
|
+
},
|
|
1241
|
+
"speaker": {
|
|
1242
|
+
"$ref": "#/components/schemas/presentationSpeaker"
|
|
1243
|
+
}
|
|
1244
|
+
}
|
|
1245
|
+
},
|
|
1188
1246
|
"consultantProjectExperience": {
|
|
1189
1247
|
"type": "object",
|
|
1190
1248
|
"properties": {
|
|
@@ -1591,6 +1649,9 @@
|
|
|
1591
1649
|
"$ref": "#/components/schemas/pageEquipmentInner"
|
|
1592
1650
|
}
|
|
1593
1651
|
},
|
|
1652
|
+
"github": {
|
|
1653
|
+
"type": "string"
|
|
1654
|
+
},
|
|
1594
1655
|
"graduationYear": {
|
|
1595
1656
|
"type": "number",
|
|
1596
1657
|
"format": "double",
|
|
@@ -1626,6 +1687,9 @@
|
|
|
1626
1687
|
"type": "boolean",
|
|
1627
1688
|
"nullable": true
|
|
1628
1689
|
},
|
|
1690
|
+
"linkedin": {
|
|
1691
|
+
"type": "string"
|
|
1692
|
+
},
|
|
1629
1693
|
"manager": {
|
|
1630
1694
|
"$ref": "#/components/schemas/employeeReference"
|
|
1631
1695
|
},
|
|
@@ -1687,6 +1751,24 @@
|
|
|
1687
1751
|
}
|
|
1688
1752
|
}
|
|
1689
1753
|
},
|
|
1754
|
+
"presentationSpeaker": {
|
|
1755
|
+
"type": "object",
|
|
1756
|
+
"properties": {
|
|
1757
|
+
"name": {
|
|
1758
|
+
"type": "string",
|
|
1759
|
+
"nullable": true
|
|
1760
|
+
},
|
|
1761
|
+
"email": {
|
|
1762
|
+
"type": "string",
|
|
1763
|
+
"nullable": true
|
|
1764
|
+
},
|
|
1765
|
+
"flowcaseUserId": {
|
|
1766
|
+
"type": "string",
|
|
1767
|
+
"nullable": true
|
|
1768
|
+
}
|
|
1769
|
+
},
|
|
1770
|
+
"nullable": true
|
|
1771
|
+
},
|
|
1690
1772
|
"protectedEmployee": {
|
|
1691
1773
|
"type": "object",
|
|
1692
1774
|
"properties": {
|
|
@@ -1768,6 +1850,9 @@
|
|
|
1768
1850
|
"$ref": "#/components/schemas/sanityEmployeeEquipmentInner"
|
|
1769
1851
|
}
|
|
1770
1852
|
},
|
|
1853
|
+
"github": {
|
|
1854
|
+
"type": "string"
|
|
1855
|
+
},
|
|
1771
1856
|
"graduationYear": {
|
|
1772
1857
|
"type": "number",
|
|
1773
1858
|
"format": "double"
|
|
@@ -1797,6 +1882,9 @@
|
|
|
1797
1882
|
"isSeekingProject": {
|
|
1798
1883
|
"type": "boolean"
|
|
1799
1884
|
},
|
|
1885
|
+
"linkedin": {
|
|
1886
|
+
"type": "string"
|
|
1887
|
+
},
|
|
1800
1888
|
"manager": {
|
|
1801
1889
|
"$ref": "#/components/schemas/sanityEmployeeManager"
|
|
1802
1890
|
},
|
|
@@ -1924,6 +2012,12 @@
|
|
|
1924
2012
|
"about": {
|
|
1925
2013
|
"type": "string"
|
|
1926
2014
|
},
|
|
2015
|
+
"linkedin": {
|
|
2016
|
+
"type": "string"
|
|
2017
|
+
},
|
|
2018
|
+
"github": {
|
|
2019
|
+
"type": "string"
|
|
2020
|
+
},
|
|
1927
2021
|
"birthDate": {
|
|
1928
2022
|
"type": "string",
|
|
1929
2023
|
"format": "date-time",
|
package/specs/test/sanity.json
CHANGED
|
@@ -29880,6 +29880,12 @@
|
|
|
29880
29880
|
"type": "array",
|
|
29881
29881
|
"nullable": true
|
|
29882
29882
|
},
|
|
29883
|
+
"github": {
|
|
29884
|
+
"type": "string"
|
|
29885
|
+
},
|
|
29886
|
+
"linkedin": {
|
|
29887
|
+
"type": "string"
|
|
29888
|
+
},
|
|
29883
29889
|
"about": {
|
|
29884
29890
|
"type": "string"
|
|
29885
29891
|
},
|
|
@@ -30489,6 +30495,12 @@
|
|
|
30489
30495
|
},
|
|
30490
30496
|
"type": "array"
|
|
30491
30497
|
},
|
|
30498
|
+
"github": {
|
|
30499
|
+
"type": "string"
|
|
30500
|
+
},
|
|
30501
|
+
"linkedin": {
|
|
30502
|
+
"type": "string"
|
|
30503
|
+
},
|
|
30492
30504
|
"about": {
|
|
30493
30505
|
"type": "string"
|
|
30494
30506
|
},
|
|
@@ -31094,6 +31106,14 @@
|
|
|
31094
31106
|
"type": "string",
|
|
31095
31107
|
"nullable": true
|
|
31096
31108
|
},
|
|
31109
|
+
"linkedin": {
|
|
31110
|
+
"type": "string",
|
|
31111
|
+
"nullable": true
|
|
31112
|
+
},
|
|
31113
|
+
"github": {
|
|
31114
|
+
"type": "string",
|
|
31115
|
+
"nullable": true
|
|
31116
|
+
},
|
|
31097
31117
|
"groups": {
|
|
31098
31118
|
"items": {
|
|
31099
31119
|
"allOf": [
|