@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.2.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.2/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": {
|
|
@@ -5343,6 +5343,11 @@
|
|
|
5343
5343
|
"schema": {
|
|
5344
5344
|
"type": "array",
|
|
5345
5345
|
"items": { "$ref": "#/components/schemas/event" }
|
|
5346
|
+
},
|
|
5347
|
+
"examples": {
|
|
5348
|
+
"default": {
|
|
5349
|
+
"$ref": "#/components/examples/public-events-items"
|
|
5350
|
+
}
|
|
5346
5351
|
}
|
|
5347
5352
|
}
|
|
5348
5353
|
}
|
|
@@ -6842,6 +6847,11 @@
|
|
|
6842
6847
|
"schema": {
|
|
6843
6848
|
"type": "array",
|
|
6844
6849
|
"items": { "$ref": "#/components/schemas/event" }
|
|
6850
|
+
},
|
|
6851
|
+
"examples": {
|
|
6852
|
+
"default": {
|
|
6853
|
+
"$ref": "#/components/examples/public-repo-events-items"
|
|
6854
|
+
}
|
|
6845
6855
|
}
|
|
6846
6856
|
}
|
|
6847
6857
|
}
|
|
@@ -6929,7 +6939,7 @@
|
|
|
6929
6939
|
"type": "object",
|
|
6930
6940
|
"properties": {
|
|
6931
6941
|
"last_read_at": {
|
|
6932
|
-
"description": "Describes the last point that notifications were checked.",
|
|
6942
|
+
"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.",
|
|
6933
6943
|
"type": "string",
|
|
6934
6944
|
"format": "date-time"
|
|
6935
6945
|
},
|
|
@@ -6938,6 +6948,14 @@
|
|
|
6938
6948
|
"type": "boolean"
|
|
6939
6949
|
}
|
|
6940
6950
|
}
|
|
6951
|
+
},
|
|
6952
|
+
"examples": {
|
|
6953
|
+
"default": {
|
|
6954
|
+
"value": {
|
|
6955
|
+
"last_read_at": "2022-06-10T00:00:00Z",
|
|
6956
|
+
"read": true
|
|
6957
|
+
}
|
|
6958
|
+
}
|
|
6941
6959
|
}
|
|
6942
6960
|
}
|
|
6943
6961
|
}
|
|
@@ -6950,6 +6968,11 @@
|
|
|
6950
6968
|
"schema": {
|
|
6951
6969
|
"type": "object",
|
|
6952
6970
|
"properties": { "message": { "type": "string" } }
|
|
6971
|
+
},
|
|
6972
|
+
"examples": {
|
|
6973
|
+
"default": {
|
|
6974
|
+
"$ref": "#/components/examples/notifications-mark-read"
|
|
6975
|
+
}
|
|
6953
6976
|
}
|
|
6954
6977
|
}
|
|
6955
6978
|
}
|
|
@@ -7091,7 +7114,8 @@
|
|
|
7091
7114
|
}
|
|
7092
7115
|
},
|
|
7093
7116
|
"type": "object"
|
|
7094
|
-
}
|
|
7117
|
+
},
|
|
7118
|
+
"examples": { "default": { "value": { "ignored": false } } }
|
|
7095
7119
|
}
|
|
7096
7120
|
}
|
|
7097
7121
|
},
|
|
@@ -34022,6 +34046,12 @@
|
|
|
34022
34046
|
"default": "member"
|
|
34023
34047
|
}
|
|
34024
34048
|
}
|
|
34049
|
+
},
|
|
34050
|
+
"examples": {
|
|
34051
|
+
"default": {
|
|
34052
|
+
"summary": "Assign the member role for a user in a team",
|
|
34053
|
+
"value": { "role": "member" }
|
|
34054
|
+
}
|
|
34025
34055
|
}
|
|
34026
34056
|
}
|
|
34027
34057
|
}
|
|
@@ -36778,6 +36808,11 @@
|
|
|
36778
36808
|
"schema": {
|
|
36779
36809
|
"type": "array",
|
|
36780
36810
|
"items": { "$ref": "#/components/schemas/event" }
|
|
36811
|
+
},
|
|
36812
|
+
"examples": {
|
|
36813
|
+
"default": {
|
|
36814
|
+
"$ref": "#/components/examples/user-events-items"
|
|
36815
|
+
}
|
|
36781
36816
|
}
|
|
36782
36817
|
}
|
|
36783
36818
|
}
|
|
@@ -36818,6 +36853,11 @@
|
|
|
36818
36853
|
"schema": {
|
|
36819
36854
|
"type": "array",
|
|
36820
36855
|
"items": { "$ref": "#/components/schemas/event" }
|
|
36856
|
+
},
|
|
36857
|
+
"examples": {
|
|
36858
|
+
"default": {
|
|
36859
|
+
"$ref": "#/components/examples/user-org-events-items"
|
|
36860
|
+
}
|
|
36821
36861
|
}
|
|
36822
36862
|
}
|
|
36823
36863
|
}
|
|
@@ -36857,6 +36897,11 @@
|
|
|
36857
36897
|
"schema": {
|
|
36858
36898
|
"type": "array",
|
|
36859
36899
|
"items": { "$ref": "#/components/schemas/event" }
|
|
36900
|
+
},
|
|
36901
|
+
"examples": {
|
|
36902
|
+
"default": {
|
|
36903
|
+
"$ref": "#/components/examples/user-public-events-items"
|
|
36904
|
+
}
|
|
36860
36905
|
}
|
|
36861
36906
|
}
|
|
36862
36907
|
}
|
|
@@ -37338,6 +37383,11 @@
|
|
|
37338
37383
|
"schema": {
|
|
37339
37384
|
"type": "array",
|
|
37340
37385
|
"items": { "$ref": "#/components/schemas/event" }
|
|
37386
|
+
},
|
|
37387
|
+
"examples": {
|
|
37388
|
+
"default": {
|
|
37389
|
+
"$ref": "#/components/examples/user-received-events-items"
|
|
37390
|
+
}
|
|
37341
37391
|
}
|
|
37342
37392
|
}
|
|
37343
37393
|
}
|
|
@@ -37377,6 +37427,11 @@
|
|
|
37377
37427
|
"schema": {
|
|
37378
37428
|
"type": "array",
|
|
37379
37429
|
"items": { "$ref": "#/components/schemas/event" }
|
|
37430
|
+
},
|
|
37431
|
+
"examples": {
|
|
37432
|
+
"default": {
|
|
37433
|
+
"$ref": "#/components/examples/user-received-public-events-items"
|
|
37434
|
+
}
|
|
37380
37435
|
}
|
|
37381
37436
|
}
|
|
37382
37437
|
}
|
|
@@ -39591,6 +39646,20 @@
|
|
|
39591
39646
|
"responses": { "501": { "description": "Not Implemented" } }
|
|
39592
39647
|
}
|
|
39593
39648
|
},
|
|
39649
|
+
"/repos/{owner}/{repo}/dependency-graph/snapshots": {
|
|
39650
|
+
"post": {
|
|
39651
|
+
"summary": "Create a snapshot of dependencies for a repository",
|
|
39652
|
+
"description": "This endpoint does not exist ghes-3.2.json. It was added in api.github.com.json",
|
|
39653
|
+
"tags": ["dependency-graph"],
|
|
39654
|
+
"operationId": "dependency-graph/create-repository-snapshot",
|
|
39655
|
+
"externalDocs": {
|
|
39656
|
+
"description": "API method documentation",
|
|
39657
|
+
"url": "https://docs.github.com/rest/reference/dependency-graph#create-a-snapshot-of-dependencies-for-a-repository"
|
|
39658
|
+
},
|
|
39659
|
+
"x-octokit": { "api.github.com.json": "removed" },
|
|
39660
|
+
"responses": { "501": { "description": "Not Implemented" } }
|
|
39661
|
+
}
|
|
39662
|
+
},
|
|
39594
39663
|
"/repos/{owner}/{repo}/import": {
|
|
39595
39664
|
"get": {
|
|
39596
39665
|
"summary": "Get an import status",
|
|
@@ -59531,6 +59600,69 @@
|
|
|
59531
59600
|
]
|
|
59532
59601
|
}
|
|
59533
59602
|
},
|
|
59603
|
+
"public-events-items": {
|
|
59604
|
+
"value": [
|
|
59605
|
+
{
|
|
59606
|
+
"id": "22249084947",
|
|
59607
|
+
"type": "WatchEvent",
|
|
59608
|
+
"actor": {
|
|
59609
|
+
"id": 583231,
|
|
59610
|
+
"login": "octocat",
|
|
59611
|
+
"display_login": "octocat",
|
|
59612
|
+
"gravatar_id": "",
|
|
59613
|
+
"url": "https://api.github.com/users/octocat",
|
|
59614
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
59615
|
+
},
|
|
59616
|
+
"repo": {
|
|
59617
|
+
"id": 1296269,
|
|
59618
|
+
"name": "octocat/Hello-World",
|
|
59619
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
59620
|
+
},
|
|
59621
|
+
"payload": { "action": "started" },
|
|
59622
|
+
"public": true,
|
|
59623
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
59624
|
+
},
|
|
59625
|
+
{
|
|
59626
|
+
"id": "22249084964",
|
|
59627
|
+
"type": "PushEvent",
|
|
59628
|
+
"actor": {
|
|
59629
|
+
"id": 583231,
|
|
59630
|
+
"login": "octocat",
|
|
59631
|
+
"display_login": "octocat",
|
|
59632
|
+
"gravatar_id": "",
|
|
59633
|
+
"url": "https://api.github.com/users/octocat",
|
|
59634
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
59635
|
+
},
|
|
59636
|
+
"repo": {
|
|
59637
|
+
"id": 1296269,
|
|
59638
|
+
"name": "octocat/Hello-World",
|
|
59639
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
59640
|
+
},
|
|
59641
|
+
"payload": {
|
|
59642
|
+
"push_id": 10115855396,
|
|
59643
|
+
"size": 1,
|
|
59644
|
+
"distinct_size": 1,
|
|
59645
|
+
"ref": "refs/heads/master",
|
|
59646
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
59647
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
59648
|
+
"commits": [
|
|
59649
|
+
{
|
|
59650
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
59651
|
+
"author": {
|
|
59652
|
+
"email": "octocat@github.com",
|
|
59653
|
+
"name": "Monalisa Octocat"
|
|
59654
|
+
},
|
|
59655
|
+
"message": "commit",
|
|
59656
|
+
"distinct": true,
|
|
59657
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
59658
|
+
}
|
|
59659
|
+
]
|
|
59660
|
+
},
|
|
59661
|
+
"public": true,
|
|
59662
|
+
"created_at": "2022-06-07T07:50:26Z"
|
|
59663
|
+
}
|
|
59664
|
+
]
|
|
59665
|
+
},
|
|
59534
59666
|
"feed": {
|
|
59535
59667
|
"value": {
|
|
59536
59668
|
"timeline_url": "https://github.com/timeline",
|
|
@@ -60300,6 +60432,69 @@
|
|
|
60300
60432
|
"installed_version": "3.2.0"
|
|
60301
60433
|
}
|
|
60302
60434
|
},
|
|
60435
|
+
"public-repo-events-items": {
|
|
60436
|
+
"value": [
|
|
60437
|
+
{
|
|
60438
|
+
"id": "22249084964",
|
|
60439
|
+
"type": "PushEvent",
|
|
60440
|
+
"actor": {
|
|
60441
|
+
"id": 583231,
|
|
60442
|
+
"login": "octocat",
|
|
60443
|
+
"display_login": "octocat",
|
|
60444
|
+
"gravatar_id": "",
|
|
60445
|
+
"url": "https://api.github.com/users/octocat",
|
|
60446
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
60447
|
+
},
|
|
60448
|
+
"repo": {
|
|
60449
|
+
"id": 1296269,
|
|
60450
|
+
"name": "octocat/Hello-World",
|
|
60451
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
60452
|
+
},
|
|
60453
|
+
"payload": {
|
|
60454
|
+
"push_id": 10115855396,
|
|
60455
|
+
"size": 1,
|
|
60456
|
+
"distinct_size": 1,
|
|
60457
|
+
"ref": "refs/heads/master",
|
|
60458
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
60459
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
60460
|
+
"commits": [
|
|
60461
|
+
{
|
|
60462
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
60463
|
+
"author": {
|
|
60464
|
+
"email": "octocat@github.com",
|
|
60465
|
+
"name": "Monalisa Octocat"
|
|
60466
|
+
},
|
|
60467
|
+
"message": "commit",
|
|
60468
|
+
"distinct": true,
|
|
60469
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
60470
|
+
}
|
|
60471
|
+
]
|
|
60472
|
+
},
|
|
60473
|
+
"public": true,
|
|
60474
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
60475
|
+
},
|
|
60476
|
+
{
|
|
60477
|
+
"id": "22237752260",
|
|
60478
|
+
"type": "WatchEvent",
|
|
60479
|
+
"actor": {
|
|
60480
|
+
"id": 583231,
|
|
60481
|
+
"login": "octocat",
|
|
60482
|
+
"display_login": "octocat",
|
|
60483
|
+
"gravatar_id": "",
|
|
60484
|
+
"url": "https://api.github.com/users/rrubenich",
|
|
60485
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
60486
|
+
},
|
|
60487
|
+
"repo": {
|
|
60488
|
+
"id": 1296269,
|
|
60489
|
+
"name": "octocat/Hello-World",
|
|
60490
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
60491
|
+
},
|
|
60492
|
+
"payload": { "action": "started" },
|
|
60493
|
+
"public": true,
|
|
60494
|
+
"created_at": "2022-06-08T23:29:25Z"
|
|
60495
|
+
}
|
|
60496
|
+
]
|
|
60497
|
+
},
|
|
60303
60498
|
"thread-items": {
|
|
60304
60499
|
"value": [
|
|
60305
60500
|
{
|
|
@@ -60388,6 +60583,11 @@
|
|
|
60388
60583
|
}
|
|
60389
60584
|
]
|
|
60390
60585
|
},
|
|
60586
|
+
"notifications-mark-read": {
|
|
60587
|
+
"value": {
|
|
60588
|
+
"message": "Unread notifications couldn't be marked in a single request. Notifications are being marked as read in the background."
|
|
60589
|
+
}
|
|
60590
|
+
},
|
|
60391
60591
|
"thread": {
|
|
60392
60592
|
"value": {
|
|
60393
60593
|
"id": "1",
|
|
@@ -75175,6 +75375,208 @@
|
|
|
75175
75375
|
}
|
|
75176
75376
|
}
|
|
75177
75377
|
},
|
|
75378
|
+
"user-events-items": {
|
|
75379
|
+
"value": [
|
|
75380
|
+
{
|
|
75381
|
+
"id": "22249084947",
|
|
75382
|
+
"type": "WatchEvent",
|
|
75383
|
+
"actor": {
|
|
75384
|
+
"id": 583231,
|
|
75385
|
+
"login": "octocat",
|
|
75386
|
+
"display_login": "octocat",
|
|
75387
|
+
"gravatar_id": "",
|
|
75388
|
+
"url": "https://api.github.com/users/octocat",
|
|
75389
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75390
|
+
},
|
|
75391
|
+
"repo": {
|
|
75392
|
+
"id": 1296269,
|
|
75393
|
+
"name": "octocat/Hello-World",
|
|
75394
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75395
|
+
},
|
|
75396
|
+
"payload": { "action": "started" },
|
|
75397
|
+
"public": true,
|
|
75398
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
75399
|
+
},
|
|
75400
|
+
{
|
|
75401
|
+
"id": "22249084964",
|
|
75402
|
+
"type": "PushEvent",
|
|
75403
|
+
"actor": {
|
|
75404
|
+
"id": 583231,
|
|
75405
|
+
"login": "octocat",
|
|
75406
|
+
"display_login": "octocat",
|
|
75407
|
+
"gravatar_id": "",
|
|
75408
|
+
"url": "https://api.github.com/users/octocat",
|
|
75409
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75410
|
+
},
|
|
75411
|
+
"repo": {
|
|
75412
|
+
"id": 1296269,
|
|
75413
|
+
"name": "octocat/Hello-World",
|
|
75414
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75415
|
+
},
|
|
75416
|
+
"payload": {
|
|
75417
|
+
"push_id": 10115855396,
|
|
75418
|
+
"size": 1,
|
|
75419
|
+
"distinct_size": 1,
|
|
75420
|
+
"ref": "refs/heads/master",
|
|
75421
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75422
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
75423
|
+
"commits": [
|
|
75424
|
+
{
|
|
75425
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75426
|
+
"author": {
|
|
75427
|
+
"email": "octocat@github.com",
|
|
75428
|
+
"name": "Monalisa Octocat"
|
|
75429
|
+
},
|
|
75430
|
+
"message": "commit",
|
|
75431
|
+
"distinct": true,
|
|
75432
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
75433
|
+
}
|
|
75434
|
+
]
|
|
75435
|
+
},
|
|
75436
|
+
"public": false,
|
|
75437
|
+
"created_at": "2022-06-07T07:50:26Z"
|
|
75438
|
+
}
|
|
75439
|
+
]
|
|
75440
|
+
},
|
|
75441
|
+
"user-org-events-items": {
|
|
75442
|
+
"value": [
|
|
75443
|
+
{
|
|
75444
|
+
"id": "22249084964",
|
|
75445
|
+
"type": "PushEvent",
|
|
75446
|
+
"actor": {
|
|
75447
|
+
"id": 583231,
|
|
75448
|
+
"login": "octocat",
|
|
75449
|
+
"display_login": "octocat",
|
|
75450
|
+
"gravatar_id": "",
|
|
75451
|
+
"url": "https://api.github.com/users/octocat",
|
|
75452
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75453
|
+
},
|
|
75454
|
+
"repo": {
|
|
75455
|
+
"id": 1296269,
|
|
75456
|
+
"name": "octocat/Hello-World",
|
|
75457
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75458
|
+
},
|
|
75459
|
+
"payload": {
|
|
75460
|
+
"push_id": 10115855396,
|
|
75461
|
+
"size": 1,
|
|
75462
|
+
"distinct_size": 1,
|
|
75463
|
+
"ref": "refs/heads/master",
|
|
75464
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75465
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
75466
|
+
"commits": [
|
|
75467
|
+
{
|
|
75468
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75469
|
+
"author": {
|
|
75470
|
+
"email": "octocat@github.com",
|
|
75471
|
+
"name": "Monalisa Octocat"
|
|
75472
|
+
},
|
|
75473
|
+
"message": "commit",
|
|
75474
|
+
"distinct": true,
|
|
75475
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
75476
|
+
}
|
|
75477
|
+
]
|
|
75478
|
+
},
|
|
75479
|
+
"public": false,
|
|
75480
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
75481
|
+
},
|
|
75482
|
+
{
|
|
75483
|
+
"id": "22196946742",
|
|
75484
|
+
"type": "CreateEvent",
|
|
75485
|
+
"actor": {
|
|
75486
|
+
"id": 583231,
|
|
75487
|
+
"login": "octocat",
|
|
75488
|
+
"display_login": "octocat",
|
|
75489
|
+
"gravatar_id": "",
|
|
75490
|
+
"url": "https://api.github.com/users/octocat",
|
|
75491
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75492
|
+
},
|
|
75493
|
+
"repo": {
|
|
75494
|
+
"id": 1296269,
|
|
75495
|
+
"name": "octocat/Hello-World",
|
|
75496
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75497
|
+
},
|
|
75498
|
+
"payload": {
|
|
75499
|
+
"ref": null,
|
|
75500
|
+
"ref_type": "repository",
|
|
75501
|
+
"master_branch": "master",
|
|
75502
|
+
"description": null,
|
|
75503
|
+
"pusher_type": "user"
|
|
75504
|
+
},
|
|
75505
|
+
"public": false,
|
|
75506
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
75507
|
+
"org": {
|
|
75508
|
+
"id": 9919,
|
|
75509
|
+
"login": "github",
|
|
75510
|
+
"gravatar_id": "",
|
|
75511
|
+
"url": "https://api.github.com/orgs/github",
|
|
75512
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
75513
|
+
}
|
|
75514
|
+
}
|
|
75515
|
+
]
|
|
75516
|
+
},
|
|
75517
|
+
"user-public-events-items": {
|
|
75518
|
+
"value": [
|
|
75519
|
+
{
|
|
75520
|
+
"id": "22249084947",
|
|
75521
|
+
"type": "WatchEvent",
|
|
75522
|
+
"actor": {
|
|
75523
|
+
"id": 583231,
|
|
75524
|
+
"login": "octocat",
|
|
75525
|
+
"display_login": "octocat",
|
|
75526
|
+
"gravatar_id": "",
|
|
75527
|
+
"url": "https://api.github.com/users/octocat",
|
|
75528
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75529
|
+
},
|
|
75530
|
+
"repo": {
|
|
75531
|
+
"id": 1296269,
|
|
75532
|
+
"name": "octocat/Hello-World",
|
|
75533
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75534
|
+
},
|
|
75535
|
+
"payload": { "action": "started" },
|
|
75536
|
+
"public": true,
|
|
75537
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
75538
|
+
},
|
|
75539
|
+
{
|
|
75540
|
+
"id": "22249084964",
|
|
75541
|
+
"type": "PushEvent",
|
|
75542
|
+
"actor": {
|
|
75543
|
+
"id": 583231,
|
|
75544
|
+
"login": "octocat",
|
|
75545
|
+
"display_login": "octocat",
|
|
75546
|
+
"gravatar_id": "",
|
|
75547
|
+
"url": "https://api.github.com/users/octocat",
|
|
75548
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75549
|
+
},
|
|
75550
|
+
"repo": {
|
|
75551
|
+
"id": 1296269,
|
|
75552
|
+
"name": "octocat/Hello-World",
|
|
75553
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75554
|
+
},
|
|
75555
|
+
"payload": {
|
|
75556
|
+
"push_id": 10115855396,
|
|
75557
|
+
"size": 1,
|
|
75558
|
+
"distinct_size": 1,
|
|
75559
|
+
"ref": "refs/heads/master",
|
|
75560
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75561
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
75562
|
+
"commits": [
|
|
75563
|
+
{
|
|
75564
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75565
|
+
"author": {
|
|
75566
|
+
"email": "octocat@github.com",
|
|
75567
|
+
"name": "Monalisa Octocat"
|
|
75568
|
+
},
|
|
75569
|
+
"message": "commit",
|
|
75570
|
+
"distinct": true,
|
|
75571
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
75572
|
+
}
|
|
75573
|
+
]
|
|
75574
|
+
},
|
|
75575
|
+
"public": true,
|
|
75576
|
+
"created_at": "2022-06-08T23:29:25Z"
|
|
75577
|
+
}
|
|
75578
|
+
]
|
|
75579
|
+
},
|
|
75178
75580
|
"hovercard": {
|
|
75179
75581
|
"value": {
|
|
75180
75582
|
"contexts": [{ "message": "Owns this repository", "octicon": "repo" }]
|
|
@@ -75218,6 +75620,158 @@
|
|
|
75218
75620
|
"updated_at": "2014-03-03T18:58:10Z"
|
|
75219
75621
|
}
|
|
75220
75622
|
]
|
|
75623
|
+
},
|
|
75624
|
+
"user-received-events-items": {
|
|
75625
|
+
"value": [
|
|
75626
|
+
{
|
|
75627
|
+
"id": "22249084964",
|
|
75628
|
+
"type": "PushEvent",
|
|
75629
|
+
"actor": {
|
|
75630
|
+
"id": 583231,
|
|
75631
|
+
"login": "octocat",
|
|
75632
|
+
"display_login": "octocat",
|
|
75633
|
+
"gravatar_id": "",
|
|
75634
|
+
"url": "https://api.github.com/users/octocat",
|
|
75635
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75636
|
+
},
|
|
75637
|
+
"repo": {
|
|
75638
|
+
"id": 1296269,
|
|
75639
|
+
"name": "octocat/Hello-World",
|
|
75640
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75641
|
+
},
|
|
75642
|
+
"payload": {
|
|
75643
|
+
"push_id": 10115855396,
|
|
75644
|
+
"size": 1,
|
|
75645
|
+
"distinct_size": 1,
|
|
75646
|
+
"ref": "refs/heads/master",
|
|
75647
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75648
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
75649
|
+
"commits": [
|
|
75650
|
+
{
|
|
75651
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75652
|
+
"author": {
|
|
75653
|
+
"email": "octocat@github.com",
|
|
75654
|
+
"name": "Monalisa Octocat"
|
|
75655
|
+
},
|
|
75656
|
+
"message": "commit",
|
|
75657
|
+
"distinct": true,
|
|
75658
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
75659
|
+
}
|
|
75660
|
+
]
|
|
75661
|
+
},
|
|
75662
|
+
"public": true,
|
|
75663
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
75664
|
+
},
|
|
75665
|
+
{
|
|
75666
|
+
"id": "22196946742",
|
|
75667
|
+
"type": "CreateEvent",
|
|
75668
|
+
"actor": {
|
|
75669
|
+
"id": 583231,
|
|
75670
|
+
"login": "octocat",
|
|
75671
|
+
"display_login": "octocat",
|
|
75672
|
+
"gravatar_id": "",
|
|
75673
|
+
"url": "https://api.github.com/users/octocat",
|
|
75674
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75675
|
+
},
|
|
75676
|
+
"repo": {
|
|
75677
|
+
"id": 1296269,
|
|
75678
|
+
"name": "octocat/Hello-World",
|
|
75679
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75680
|
+
},
|
|
75681
|
+
"payload": {
|
|
75682
|
+
"ref": null,
|
|
75683
|
+
"ref_type": "repository",
|
|
75684
|
+
"master_branch": "master",
|
|
75685
|
+
"description": null,
|
|
75686
|
+
"pusher_type": "user"
|
|
75687
|
+
},
|
|
75688
|
+
"public": false,
|
|
75689
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
75690
|
+
"org": {
|
|
75691
|
+
"id": 9919,
|
|
75692
|
+
"login": "github",
|
|
75693
|
+
"gravatar_id": "",
|
|
75694
|
+
"url": "https://api.github.com/orgs/github",
|
|
75695
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
75696
|
+
}
|
|
75697
|
+
}
|
|
75698
|
+
]
|
|
75699
|
+
},
|
|
75700
|
+
"user-received-public-events-items": {
|
|
75701
|
+
"value": [
|
|
75702
|
+
{
|
|
75703
|
+
"id": "22249084964",
|
|
75704
|
+
"type": "PushEvent",
|
|
75705
|
+
"actor": {
|
|
75706
|
+
"id": 583231,
|
|
75707
|
+
"login": "octocat",
|
|
75708
|
+
"display_login": "octocat",
|
|
75709
|
+
"gravatar_id": "",
|
|
75710
|
+
"url": "https://api.github.com/users/octocat",
|
|
75711
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75712
|
+
},
|
|
75713
|
+
"repo": {
|
|
75714
|
+
"id": 1296269,
|
|
75715
|
+
"name": "octocat/Hello-World",
|
|
75716
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75717
|
+
},
|
|
75718
|
+
"payload": {
|
|
75719
|
+
"push_id": 10115855396,
|
|
75720
|
+
"size": 1,
|
|
75721
|
+
"distinct_size": 1,
|
|
75722
|
+
"ref": "refs/heads/master",
|
|
75723
|
+
"head": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75724
|
+
"before": "883efe034920928c47fe18598c01249d1a9fdabd",
|
|
75725
|
+
"commits": [
|
|
75726
|
+
{
|
|
75727
|
+
"sha": "7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300",
|
|
75728
|
+
"author": {
|
|
75729
|
+
"email": "octocat@github.com",
|
|
75730
|
+
"name": "Monalisa Octocat"
|
|
75731
|
+
},
|
|
75732
|
+
"message": "commit",
|
|
75733
|
+
"distinct": true,
|
|
75734
|
+
"url": "https://api.github.com/repos/octocat/Hello-World/commits/7a8f3ac80e2ad2f6842cb86f576d4bfe2c03e300"
|
|
75735
|
+
}
|
|
75736
|
+
]
|
|
75737
|
+
},
|
|
75738
|
+
"public": true,
|
|
75739
|
+
"created_at": "2022-06-09T12:47:28Z"
|
|
75740
|
+
},
|
|
75741
|
+
{
|
|
75742
|
+
"id": "22196946742",
|
|
75743
|
+
"type": "CreateEvent",
|
|
75744
|
+
"actor": {
|
|
75745
|
+
"id": 583231,
|
|
75746
|
+
"login": "octocat",
|
|
75747
|
+
"display_login": "octocat",
|
|
75748
|
+
"gravatar_id": "",
|
|
75749
|
+
"url": "https://api.github.com/users/octocat",
|
|
75750
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/583231?v=4"
|
|
75751
|
+
},
|
|
75752
|
+
"repo": {
|
|
75753
|
+
"id": 1296269,
|
|
75754
|
+
"name": "octocat/Hello-World",
|
|
75755
|
+
"url": "https://api.github.com/repos/octocat/Hello-World"
|
|
75756
|
+
},
|
|
75757
|
+
"payload": {
|
|
75758
|
+
"ref": null,
|
|
75759
|
+
"ref_type": "repository",
|
|
75760
|
+
"master_branch": "master",
|
|
75761
|
+
"description": null,
|
|
75762
|
+
"pusher_type": "user"
|
|
75763
|
+
},
|
|
75764
|
+
"public": false,
|
|
75765
|
+
"created_at": "2022-06-07T07:50:26Z",
|
|
75766
|
+
"org": {
|
|
75767
|
+
"id": 9919,
|
|
75768
|
+
"login": "github",
|
|
75769
|
+
"gravatar_id": "",
|
|
75770
|
+
"url": "https://api.github.com/orgs/github",
|
|
75771
|
+
"avatar_url": "https://avatars.githubusercontent.com/u/9919?"
|
|
75772
|
+
}
|
|
75773
|
+
}
|
|
75774
|
+
]
|
|
75221
75775
|
}
|
|
75222
75776
|
},
|
|
75223
75777
|
"parameters": {
|
|
@@ -75448,7 +76002,7 @@
|
|
|
75448
76002
|
},
|
|
75449
76003
|
"thread-id": {
|
|
75450
76004
|
"name": "thread_id",
|
|
75451
|
-
"description": "The unique identifier of the thread.",
|
|
76005
|
+
"description": "The unique identifier of the pull request thread.",
|
|
75452
76006
|
"in": "path",
|
|
75453
76007
|
"required": true,
|
|
75454
76008
|
"schema": { "type": "integer" }
|