@octokit/openapi 5.12.0 → 5.13.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/generated/api.github.com.deref.json +833 -10
- package/generated/api.github.com.json +820 -6
- package/generated/ghes-2.22-diff-to-ghes-3.0.deref.json +1 -1
- package/generated/ghes-2.22-diff-to-ghes-3.0.json +1 -1
- package/generated/ghes-2.22.deref.json +1 -1
- package/generated/ghes-2.22.json +1 -1
- package/generated/ghes-3.0-diff-to-ghes-3.1.deref.json +1 -1
- package/generated/ghes-3.0-diff-to-ghes-3.1.json +1 -1
- package/generated/ghes-3.0.deref.json +1 -1
- package/generated/ghes-3.0.json +1 -1
- package/generated/ghes-3.1-diff-to-ghes-3.2.deref.json +496 -2
- package/generated/ghes-3.1-diff-to-ghes-3.2.json +517 -2
- package/generated/ghes-3.1.deref.json +525 -9
- package/generated/ghes-3.1.json +545 -5
- package/generated/ghes-3.2-anicca-diff-to-api.github.com.deref.json +1 -0
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +496 -2
- package/generated/ghes-3.2-diff-to-api.github.com.json +517 -2
- package/generated/ghes-3.2.deref.json +539 -9
- package/generated/ghes-3.2.json +559 -5
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +1 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +145 -2
- package/generated/github.ae-diff-to-api.github.com.json +151 -2
- package/generated/github.ae.deref.json +188 -9
- package/generated/github.ae.json +193 -5
- package/package.json +1 -1
package/generated/ghes-3.1.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.13.0",
|
|
5
5
|
"title": "GitHub's official OpenAPI spec + Octokit extension",
|
|
6
6
|
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
|
|
7
7
|
"license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
|
|
@@ -2161,7 +2161,7 @@
|
|
|
2161
2161
|
"url": "https://docs.github.com/enterprise-server@3.1/rest/reference/apps#update-a-webhook-configuration-for-an-app"
|
|
2162
2162
|
},
|
|
2163
2163
|
"requestBody": {
|
|
2164
|
-
"required":
|
|
2164
|
+
"required": true,
|
|
2165
2165
|
"content": {
|
|
2166
2166
|
"application/json": {
|
|
2167
2167
|
"schema": {
|
|
@@ -5200,6 +5200,11 @@
|
|
|
5200
5200
|
"schema": {
|
|
5201
5201
|
"type": "array",
|
|
5202
5202
|
"items": { "$ref": "#/components/schemas/event" }
|
|
5203
|
+
},
|
|
5204
|
+
"examples": {
|
|
5205
|
+
"default": {
|
|
5206
|
+
"$ref": "#/components/examples/public-events-items"
|
|
5207
|
+
}
|
|
5203
5208
|
}
|
|
5204
5209
|
}
|
|
5205
5210
|
}
|
|
@@ -6691,6 +6696,11 @@
|
|
|
6691
6696
|
"schema": {
|
|
6692
6697
|
"type": "array",
|
|
6693
6698
|
"items": { "$ref": "#/components/schemas/event" }
|
|
6699
|
+
},
|
|
6700
|
+
"examples": {
|
|
6701
|
+
"default": {
|
|
6702
|
+
"$ref": "#/components/examples/public-repo-events-items"
|
|
6703
|
+
}
|
|
6694
6704
|
}
|
|
6695
6705
|
}
|
|
6696
6706
|
}
|
|
@@ -6774,7 +6784,7 @@
|
|
|
6774
6784
|
"type": "object",
|
|
6775
6785
|
"properties": {
|
|
6776
6786
|
"last_read_at": {
|
|
6777
|
-
"description": "Describes the last point that notifications were checked.",
|
|
6787
|
+
"description": "Describes the last point that notifications were checked. Anything updated since this time will not be marked as read. If you omit this parameter, all notifications are marked as read. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. Default: The current timestamp.",
|
|
6778
6788
|
"type": "string",
|
|
6779
6789
|
"format": "date-time"
|
|
6780
6790
|
},
|
|
@@ -6783,6 +6793,14 @@
|
|
|
6783
6793
|
"type": "boolean"
|
|
6784
6794
|
}
|
|
6785
6795
|
}
|
|
6796
|
+
},
|
|
6797
|
+
"examples": {
|
|
6798
|
+
"default": {
|
|
6799
|
+
"value": {
|
|
6800
|
+
"last_read_at": "2022-06-10T00:00:00Z",
|
|
6801
|
+
"read": true
|
|
6802
|
+
}
|
|
6803
|
+
}
|
|
6786
6804
|
}
|
|
6787
6805
|
}
|
|
6788
6806
|
}
|
|
@@ -6795,6 +6813,11 @@
|
|
|
6795
6813
|
"schema": {
|
|
6796
6814
|
"type": "object",
|
|
6797
6815
|
"properties": { "message": { "type": "string" } }
|
|
6816
|
+
},
|
|
6817
|
+
"examples": {
|
|
6818
|
+
"default": {
|
|
6819
|
+
"$ref": "#/components/examples/notifications-mark-read"
|
|
6820
|
+
}
|
|
6798
6821
|
}
|
|
6799
6822
|
}
|
|
6800
6823
|
}
|
|
@@ -6934,7 +6957,8 @@
|
|
|
6934
6957
|
}
|
|
6935
6958
|
},
|
|
6936
6959
|
"type": "object"
|
|
6937
|
-
}
|
|
6960
|
+
},
|
|
6961
|
+
"examples": { "default": { "value": { "ignored": false } } }
|
|
6938
6962
|
}
|
|
6939
6963
|
}
|
|
6940
6964
|
},
|
|
@@ -32693,6 +32717,12 @@
|
|
|
32693
32717
|
"default": "member"
|
|
32694
32718
|
}
|
|
32695
32719
|
}
|
|
32720
|
+
},
|
|
32721
|
+
"examples": {
|
|
32722
|
+
"default": {
|
|
32723
|
+
"summary": "Assign the member role for a user in a team",
|
|
32724
|
+
"value": { "role": "member" }
|
|
32725
|
+
}
|
|
32696
32726
|
}
|
|
32697
32727
|
}
|
|
32698
32728
|
}
|
|
@@ -35427,6 +35457,11 @@
|
|
|
35427
35457
|
"schema": {
|
|
35428
35458
|
"type": "array",
|
|
35429
35459
|
"items": { "$ref": "#/components/schemas/event" }
|
|
35460
|
+
},
|
|
35461
|
+
"examples": {
|
|
35462
|
+
"default": {
|
|
35463
|
+
"$ref": "#/components/examples/user-events-items"
|
|
35464
|
+
}
|
|
35430
35465
|
}
|
|
35431
35466
|
}
|
|
35432
35467
|
}
|
|
@@ -35465,6 +35500,11 @@
|
|
|
35465
35500
|
"schema": {
|
|
35466
35501
|
"type": "array",
|
|
35467
35502
|
"items": { "$ref": "#/components/schemas/event" }
|
|
35503
|
+
},
|
|
35504
|
+
"examples": {
|
|
35505
|
+
"default": {
|
|
35506
|
+
"$ref": "#/components/examples/user-org-events-items"
|
|
35507
|
+
}
|
|
35468
35508
|
}
|
|
35469
35509
|
}
|
|
35470
35510
|
}
|
|
@@ -35502,6 +35542,11 @@
|
|
|
35502
35542
|
"schema": {
|
|
35503
35543
|
"type": "array",
|
|
35504
35544
|
"items": { "$ref": "#/components/schemas/event" }
|
|
35545
|
+
},
|
|
35546
|
+
"examples": {
|
|
35547
|
+
"default": {
|
|
35548
|
+
"$ref": "#/components/examples/user-public-events-items"
|
|
35549
|
+
}
|
|
35505
35550
|
}
|
|
35506
35551
|
}
|
|
35507
35552
|
}
|
|
@@ -35977,6 +36022,11 @@
|
|
|
35977
36022
|
"schema": {
|
|
35978
36023
|
"type": "array",
|
|
35979
36024
|
"items": { "$ref": "#/components/schemas/event" }
|
|
36025
|
+
},
|
|
36026
|
+
"examples": {
|
|
36027
|
+
"default": {
|
|
36028
|
+
"$ref": "#/components/examples/user-received-events-items"
|
|
36029
|
+
}
|
|
35980
36030
|
}
|
|
35981
36031
|
}
|
|
35982
36032
|
}
|
|
@@ -36014,6 +36064,11 @@
|
|
|
36014
36064
|
"schema": {
|
|
36015
36065
|
"type": "array",
|
|
36016
36066
|
"items": { "$ref": "#/components/schemas/event" }
|
|
36067
|
+
},
|
|
36068
|
+
"examples": {
|
|
36069
|
+
"default": {
|
|
36070
|
+
"$ref": "#/components/examples/user-received-public-events-items"
|
|
36071
|
+
}
|
|
36017
36072
|
}
|
|
36018
36073
|
}
|
|
36019
36074
|
}
|
|
@@ -54732,6 +54787,69 @@
|
|
|
54732
54787
|
]
|
|
54733
54788
|
}
|
|
54734
54789
|
},
|
|
54790
|
+
"public-events-items": {
|
|
54791
|
+
"value": [
|
|
54792
|
+
{
|
|
54793
|
+
"id": "22249084947",
|
|
54794
|
+
"type": "WatchEvent",
|
|
54795
|
+
"actor": {
|
|
54796
|
+
"id": 583231,
|
|
54797
|
+
"login": "octocat",
|
|
54798
|
+
"display_login": "octocat",
|
|
54799
|
+
"gravatar_id": "",
|
|
54800
|
+
"url": "https://api.github.com/users/octocat",
|
|
54801
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
54802
|
+
},
|
|
54803
|
+
"repo": {
|
|
54804
|
+
"id": 1296269,
|
|
54805
|
+
"name": "octocat/Hello-World",
|
|
54806
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
54807
|
+
},
|
|
54808
|
+
"payload": { "action": "started" },
|
|
54809
|
+
"public": true,
|
|
54810
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
54811
|
+
},
|
|
54812
|
+
{
|
|
54813
|
+
"id": "22249084964",
|
|
54814
|
+
"type": "PushEvent",
|
|
54815
|
+
"actor": {
|
|
54816
|
+
"id": 583231,
|
|
54817
|
+
"login": "octocat",
|
|
54818
|
+
"display_login": "octocat",
|
|
54819
|
+
"gravatar_id": "",
|
|
54820
|
+
"url": "https://api.github.com/users/octocat",
|
|
54821
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
54822
|
+
},
|
|
54823
|
+
"repo": {
|
|
54824
|
+
"id": 1296269,
|
|
54825
|
+
"name": "octocat/Hello-World",
|
|
54826
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
54827
|
+
},
|
|
54828
|
+
"payload": {
|
|
54829
|
+
"push_id": 10115855396,
|
|
54830
|
+
"size": 1,
|
|
54831
|
+
"distinct_size": 1,
|
|
54832
|
+
"ref": "refs/heads/master",
|
|
54833
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
54834
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
54835
|
+
"commits": [
|
|
54836
|
+
{
|
|
54837
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
54838
|
+
"author": {
|
|
54839
|
+
"email": "octocat@github.com",
|
|
54840
|
+
"name": "Monalisa Octocat"
|
|
54841
|
+
},
|
|
54842
|
+
"message": "commit",
|
|
54843
|
+
"distinct": true,
|
|
54844
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
54845
|
+
}
|
|
54846
|
+
]
|
|
54847
|
+
},
|
|
54848
|
+
"public": true,
|
|
54849
|
+
"created_at": "2022-06-07T07:50:26Z"
|
|
54850
|
+
}
|
|
54851
|
+
]
|
|
54852
|
+
},
|
|
54735
54853
|
"feed": {
|
|
54736
54854
|
"value": {
|
|
54737
54855
|
"timeline_url": "https://github.com/timeline",
|
|
@@ -55499,6 +55617,69 @@
|
|
|
55499
55617
|
"installed_version": "3.1.0"
|
|
55500
55618
|
}
|
|
55501
55619
|
},
|
|
55620
|
+
"public-repo-events-items": {
|
|
55621
|
+
"value": [
|
|
55622
|
+
{
|
|
55623
|
+
"id": "22249084964",
|
|
55624
|
+
"type": "PushEvent",
|
|
55625
|
+
"actor": {
|
|
55626
|
+
"id": 583231,
|
|
55627
|
+
"login": "octocat",
|
|
55628
|
+
"display_login": "octocat",
|
|
55629
|
+
"gravatar_id": "",
|
|
55630
|
+
"url": "https://api.github.com/users/octocat",
|
|
55631
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
55632
|
+
},
|
|
55633
|
+
"repo": {
|
|
55634
|
+
"id": 1296269,
|
|
55635
|
+
"name": "octocat/Hello-World",
|
|
55636
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
55637
|
+
},
|
|
55638
|
+
"payload": {
|
|
55639
|
+
"push_id": 10115855396,
|
|
55640
|
+
"size": 1,
|
|
55641
|
+
"distinct_size": 1,
|
|
55642
|
+
"ref": "refs/heads/master",
|
|
55643
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
55644
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
55645
|
+
"commits": [
|
|
55646
|
+
{
|
|
55647
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
55648
|
+
"author": {
|
|
55649
|
+
"email": "octocat@github.com",
|
|
55650
|
+
"name": "Monalisa Octocat"
|
|
55651
|
+
},
|
|
55652
|
+
"message": "commit",
|
|
55653
|
+
"distinct": true,
|
|
55654
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
55655
|
+
}
|
|
55656
|
+
]
|
|
55657
|
+
},
|
|
55658
|
+
"public": true,
|
|
55659
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
55660
|
+
},
|
|
55661
|
+
{
|
|
55662
|
+
"id": "22237752260",
|
|
55663
|
+
"type": "WatchEvent",
|
|
55664
|
+
"actor": {
|
|
55665
|
+
"id": 583231,
|
|
55666
|
+
"login": "octocat",
|
|
55667
|
+
"display_login": "octocat",
|
|
55668
|
+
"gravatar_id": "",
|
|
55669
|
+
"url": "https://api.github.com/users/rrubenich",
|
|
55670
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
55671
|
+
},
|
|
55672
|
+
"repo": {
|
|
55673
|
+
"id": 1296269,
|
|
55674
|
+
"name": "octocat/Hello-World",
|
|
55675
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
55676
|
+
},
|
|
55677
|
+
"payload": { "action": "started" },
|
|
55678
|
+
"public": true,
|
|
55679
|
+
"created_at": "2022-06-08T23:29:25Z"
|
|
55680
|
+
}
|
|
55681
|
+
]
|
|
55682
|
+
},
|
|
55502
55683
|
"thread-items": {
|
|
55503
55684
|
"value": [
|
|
55504
55685
|
{
|
|
@@ -55587,6 +55768,11 @@
|
|
|
55587
55768
|
}
|
|
55588
55769
|
]
|
|
55589
55770
|
},
|
|
55771
|
+
"notifications-mark-read": {
|
|
55772
|
+
"value": {
|
|
55773
|
+
"message": "Unread notifications couldn't be marked in a single request. Notifications are being marked as read in the background."
|
|
55774
|
+
}
|
|
55775
|
+
},
|
|
55590
55776
|
"thread": {
|
|
55591
55777
|
"value": {
|
|
55592
55778
|
"id": "1",
|
|
@@ -70060,6 +70246,208 @@
|
|
|
70060
70246
|
}
|
|
70061
70247
|
}
|
|
70062
70248
|
},
|
|
70249
|
+
"user-events-items": {
|
|
70250
|
+
"value": [
|
|
70251
|
+
{
|
|
70252
|
+
"id": "22249084947",
|
|
70253
|
+
"type": "WatchEvent",
|
|
70254
|
+
"actor": {
|
|
70255
|
+
"id": 583231,
|
|
70256
|
+
"login": "octocat",
|
|
70257
|
+
"display_login": "octocat",
|
|
70258
|
+
"gravatar_id": "",
|
|
70259
|
+
"url": "https://api.github.com/users/octocat",
|
|
70260
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70261
|
+
},
|
|
70262
|
+
"repo": {
|
|
70263
|
+
"id": 1296269,
|
|
70264
|
+
"name": "octocat/Hello-World",
|
|
70265
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70266
|
+
},
|
|
70267
|
+
"payload": { "action": "started" },
|
|
70268
|
+
"public": true,
|
|
70269
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
70270
|
+
},
|
|
70271
|
+
{
|
|
70272
|
+
"id": "22249084964",
|
|
70273
|
+
"type": "PushEvent",
|
|
70274
|
+
"actor": {
|
|
70275
|
+
"id": 583231,
|
|
70276
|
+
"login": "octocat",
|
|
70277
|
+
"display_login": "octocat",
|
|
70278
|
+
"gravatar_id": "",
|
|
70279
|
+
"url": "https://api.github.com/users/octocat",
|
|
70280
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70281
|
+
},
|
|
70282
|
+
"repo": {
|
|
70283
|
+
"id": 1296269,
|
|
70284
|
+
"name": "octocat/Hello-World",
|
|
70285
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70286
|
+
},
|
|
70287
|
+
"payload": {
|
|
70288
|
+
"push_id": 10115855396,
|
|
70289
|
+
"size": 1,
|
|
70290
|
+
"distinct_size": 1,
|
|
70291
|
+
"ref": "refs/heads/master",
|
|
70292
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70293
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
70294
|
+
"commits": [
|
|
70295
|
+
{
|
|
70296
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70297
|
+
"author": {
|
|
70298
|
+
"email": "octocat@github.com",
|
|
70299
|
+
"name": "Monalisa Octocat"
|
|
70300
|
+
},
|
|
70301
|
+
"message": "commit",
|
|
70302
|
+
"distinct": true,
|
|
70303
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
70304
|
+
}
|
|
70305
|
+
]
|
|
70306
|
+
},
|
|
70307
|
+
"public": false,
|
|
70308
|
+
"created_at": "2022-06-07T07:50:26Z"
|
|
70309
|
+
}
|
|
70310
|
+
]
|
|
70311
|
+
},
|
|
70312
|
+
"user-org-events-items": {
|
|
70313
|
+
"value": [
|
|
70314
|
+
{
|
|
70315
|
+
"id": "22249084964",
|
|
70316
|
+
"type": "PushEvent",
|
|
70317
|
+
"actor": {
|
|
70318
|
+
"id": 583231,
|
|
70319
|
+
"login": "octocat",
|
|
70320
|
+
"display_login": "octocat",
|
|
70321
|
+
"gravatar_id": "",
|
|
70322
|
+
"url": "https://api.github.com/users/octocat",
|
|
70323
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70324
|
+
},
|
|
70325
|
+
"repo": {
|
|
70326
|
+
"id": 1296269,
|
|
70327
|
+
"name": "octocat/Hello-World",
|
|
70328
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70329
|
+
},
|
|
70330
|
+
"payload": {
|
|
70331
|
+
"push_id": 10115855396,
|
|
70332
|
+
"size": 1,
|
|
70333
|
+
"distinct_size": 1,
|
|
70334
|
+
"ref": "refs/heads/master",
|
|
70335
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70336
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
70337
|
+
"commits": [
|
|
70338
|
+
{
|
|
70339
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70340
|
+
"author": {
|
|
70341
|
+
"email": "octocat@github.com",
|
|
70342
|
+
"name": "Monalisa Octocat"
|
|
70343
|
+
},
|
|
70344
|
+
"message": "commit",
|
|
70345
|
+
"distinct": true,
|
|
70346
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
70347
|
+
}
|
|
70348
|
+
]
|
|
70349
|
+
},
|
|
70350
|
+
"public": false,
|
|
70351
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
70352
|
+
},
|
|
70353
|
+
{
|
|
70354
|
+
"id": "22196946742",
|
|
70355
|
+
"type": "CreateEvent",
|
|
70356
|
+
"actor": {
|
|
70357
|
+
"id": 583231,
|
|
70358
|
+
"login": "octocat",
|
|
70359
|
+
"display_login": "octocat",
|
|
70360
|
+
"gravatar_id": "",
|
|
70361
|
+
"url": "https://api.github.com/users/octocat",
|
|
70362
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70363
|
+
},
|
|
70364
|
+
"repo": {
|
|
70365
|
+
"id": 1296269,
|
|
70366
|
+
"name": "octocat/Hello-World",
|
|
70367
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70368
|
+
},
|
|
70369
|
+
"payload": {
|
|
70370
|
+
"ref": null,
|
|
70371
|
+
"ref_type": "repository",
|
|
70372
|
+
"master_branch": "master",
|
|
70373
|
+
"description": null,
|
|
70374
|
+
"pusher_type": "user"
|
|
70375
|
+
},
|
|
70376
|
+
"public": false,
|
|
70377
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
70378
|
+
"org": {
|
|
70379
|
+
"id": 9919,
|
|
70380
|
+
"login": "github",
|
|
70381
|
+
"gravatar_id": "",
|
|
70382
|
+
"url": "https://api.github.com/orgs/github",
|
|
70383
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
70384
|
+
}
|
|
70385
|
+
}
|
|
70386
|
+
]
|
|
70387
|
+
},
|
|
70388
|
+
"user-public-events-items": {
|
|
70389
|
+
"value": [
|
|
70390
|
+
{
|
|
70391
|
+
"id": "22249084947",
|
|
70392
|
+
"type": "WatchEvent",
|
|
70393
|
+
"actor": {
|
|
70394
|
+
"id": 583231,
|
|
70395
|
+
"login": "octocat",
|
|
70396
|
+
"display_login": "octocat",
|
|
70397
|
+
"gravatar_id": "",
|
|
70398
|
+
"url": "https://api.github.com/users/octocat",
|
|
70399
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70400
|
+
},
|
|
70401
|
+
"repo": {
|
|
70402
|
+
"id": 1296269,
|
|
70403
|
+
"name": "octocat/Hello-World",
|
|
70404
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70405
|
+
},
|
|
70406
|
+
"payload": { "action": "started" },
|
|
70407
|
+
"public": true,
|
|
70408
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
70409
|
+
},
|
|
70410
|
+
{
|
|
70411
|
+
"id": "22249084964",
|
|
70412
|
+
"type": "PushEvent",
|
|
70413
|
+
"actor": {
|
|
70414
|
+
"id": 583231,
|
|
70415
|
+
"login": "octocat",
|
|
70416
|
+
"display_login": "octocat",
|
|
70417
|
+
"gravatar_id": "",
|
|
70418
|
+
"url": "https://api.github.com/users/octocat",
|
|
70419
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70420
|
+
},
|
|
70421
|
+
"repo": {
|
|
70422
|
+
"id": 1296269,
|
|
70423
|
+
"name": "octocat/Hello-World",
|
|
70424
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70425
|
+
},
|
|
70426
|
+
"payload": {
|
|
70427
|
+
"push_id": 10115855396,
|
|
70428
|
+
"size": 1,
|
|
70429
|
+
"distinct_size": 1,
|
|
70430
|
+
"ref": "refs/heads/master",
|
|
70431
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70432
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
70433
|
+
"commits": [
|
|
70434
|
+
{
|
|
70435
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70436
|
+
"author": {
|
|
70437
|
+
"email": "octocat@github.com",
|
|
70438
|
+
"name": "Monalisa Octocat"
|
|
70439
|
+
},
|
|
70440
|
+
"message": "commit",
|
|
70441
|
+
"distinct": true,
|
|
70442
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
70443
|
+
}
|
|
70444
|
+
]
|
|
70445
|
+
},
|
|
70446
|
+
"public": true,
|
|
70447
|
+
"created_at": "2022-06-08T23:29:25Z"
|
|
70448
|
+
}
|
|
70449
|
+
]
|
|
70450
|
+
},
|
|
70063
70451
|
"hovercard": {
|
|
70064
70452
|
"value": {
|
|
70065
70453
|
"contexts": [{ "message": "Owns this repository", "octicon": "repo" }]
|
|
@@ -70103,6 +70491,158 @@
|
|
|
70103
70491
|
"updated_at": "2014-03-03T18:58:10Z"
|
|
70104
70492
|
}
|
|
70105
70493
|
]
|
|
70494
|
+
},
|
|
70495
|
+
"user-received-events-items": {
|
|
70496
|
+
"value": [
|
|
70497
|
+
{
|
|
70498
|
+
"id": "22249084964",
|
|
70499
|
+
"type": "PushEvent",
|
|
70500
|
+
"actor": {
|
|
70501
|
+
"id": 583231,
|
|
70502
|
+
"login": "octocat",
|
|
70503
|
+
"display_login": "octocat",
|
|
70504
|
+
"gravatar_id": "",
|
|
70505
|
+
"url": "https://api.github.com/users/octocat",
|
|
70506
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70507
|
+
},
|
|
70508
|
+
"repo": {
|
|
70509
|
+
"id": 1296269,
|
|
70510
|
+
"name": "octocat/Hello-World",
|
|
70511
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70512
|
+
},
|
|
70513
|
+
"payload": {
|
|
70514
|
+
"push_id": 10115855396,
|
|
70515
|
+
"size": 1,
|
|
70516
|
+
"distinct_size": 1,
|
|
70517
|
+
"ref": "refs/heads/master",
|
|
70518
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70519
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
70520
|
+
"commits": [
|
|
70521
|
+
{
|
|
70522
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70523
|
+
"author": {
|
|
70524
|
+
"email": "octocat@github.com",
|
|
70525
|
+
"name": "Monalisa Octocat"
|
|
70526
|
+
},
|
|
70527
|
+
"message": "commit",
|
|
70528
|
+
"distinct": true,
|
|
70529
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
70530
|
+
}
|
|
70531
|
+
]
|
|
70532
|
+
},
|
|
70533
|
+
"public": true,
|
|
70534
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
70535
|
+
},
|
|
70536
|
+
{
|
|
70537
|
+
"id": "22196946742",
|
|
70538
|
+
"type": "CreateEvent",
|
|
70539
|
+
"actor": {
|
|
70540
|
+
"id": 583231,
|
|
70541
|
+
"login": "octocat",
|
|
70542
|
+
"display_login": "octocat",
|
|
70543
|
+
"gravatar_id": "",
|
|
70544
|
+
"url": "https://api.github.com/users/octocat",
|
|
70545
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70546
|
+
},
|
|
70547
|
+
"repo": {
|
|
70548
|
+
"id": 1296269,
|
|
70549
|
+
"name": "octocat/Hello-World",
|
|
70550
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70551
|
+
},
|
|
70552
|
+
"payload": {
|
|
70553
|
+
"ref": null,
|
|
70554
|
+
"ref_type": "repository",
|
|
70555
|
+
"master_branch": "master",
|
|
70556
|
+
"description": null,
|
|
70557
|
+
"pusher_type": "user"
|
|
70558
|
+
},
|
|
70559
|
+
"public": false,
|
|
70560
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
70561
|
+
"org": {
|
|
70562
|
+
"id": 9919,
|
|
70563
|
+
"login": "github",
|
|
70564
|
+
"gravatar_id": "",
|
|
70565
|
+
"url": "https://api.github.com/orgs/github",
|
|
70566
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
70567
|
+
}
|
|
70568
|
+
}
|
|
70569
|
+
]
|
|
70570
|
+
},
|
|
70571
|
+
"user-received-public-events-items": {
|
|
70572
|
+
"value": [
|
|
70573
|
+
{
|
|
70574
|
+
"id": "22249084964",
|
|
70575
|
+
"type": "PushEvent",
|
|
70576
|
+
"actor": {
|
|
70577
|
+
"id": 583231,
|
|
70578
|
+
"login": "octocat",
|
|
70579
|
+
"display_login": "octocat",
|
|
70580
|
+
"gravatar_id": "",
|
|
70581
|
+
"url": "https://api.github.com/users/octocat",
|
|
70582
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70583
|
+
},
|
|
70584
|
+
"repo": {
|
|
70585
|
+
"id": 1296269,
|
|
70586
|
+
"name": "octocat/Hello-World",
|
|
70587
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70588
|
+
},
|
|
70589
|
+
"payload": {
|
|
70590
|
+
"push_id": 10115855396,
|
|
70591
|
+
"size": 1,
|
|
70592
|
+
"distinct_size": 1,
|
|
70593
|
+
"ref": "refs/heads/master",
|
|
70594
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70595
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
70596
|
+
"commits": [
|
|
70597
|
+
{
|
|
70598
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
70599
|
+
"author": {
|
|
70600
|
+
"email": "octocat@github.com",
|
|
70601
|
+
"name": "Monalisa Octocat"
|
|
70602
|
+
},
|
|
70603
|
+
"message": "commit",
|
|
70604
|
+
"distinct": true,
|
|
70605
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
70606
|
+
}
|
|
70607
|
+
]
|
|
70608
|
+
},
|
|
70609
|
+
"public": true,
|
|
70610
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
70611
|
+
},
|
|
70612
|
+
{
|
|
70613
|
+
"id": "22196946742",
|
|
70614
|
+
"type": "CreateEvent",
|
|
70615
|
+
"actor": {
|
|
70616
|
+
"id": 583231,
|
|
70617
|
+
"login": "octocat",
|
|
70618
|
+
"display_login": "octocat",
|
|
70619
|
+
"gravatar_id": "",
|
|
70620
|
+
"url": "https://api.github.com/users/octocat",
|
|
70621
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
70622
|
+
},
|
|
70623
|
+
"repo": {
|
|
70624
|
+
"id": 1296269,
|
|
70625
|
+
"name": "octocat/Hello-World",
|
|
70626
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
70627
|
+
},
|
|
70628
|
+
"payload": {
|
|
70629
|
+
"ref": null,
|
|
70630
|
+
"ref_type": "repository",
|
|
70631
|
+
"master_branch": "master",
|
|
70632
|
+
"description": null,
|
|
70633
|
+
"pusher_type": "user"
|
|
70634
|
+
},
|
|
70635
|
+
"public": false,
|
|
70636
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
70637
|
+
"org": {
|
|
70638
|
+
"id": 9919,
|
|
70639
|
+
"login": "github",
|
|
70640
|
+
"gravatar_id": "",
|
|
70641
|
+
"url": "https://api.github.com/orgs/github",
|
|
70642
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
70643
|
+
}
|
|
70644
|
+
}
|
|
70645
|
+
]
|
|
70106
70646
|
}
|
|
70107
70647
|
},
|
|
70108
70648
|
"parameters": {
|
|
@@ -70320,7 +70860,7 @@
|
|
|
70320
70860
|
},
|
|
70321
70861
|
"thread-id": {
|
|
70322
70862
|
"name": "thread_id",
|
|
70323
|
-
"description": "The unique identifier of the thread.",
|
|
70863
|
+
"description": "The unique identifier of the pull request thread.",
|
|
70324
70864
|
"in": "path",
|
|
70325
70865
|
"required": true,
|
|
70326
70866
|
"schema": { "type": "integer" }
|