@octokit/openapi 7.1.0 → 7.2.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 +391 -3
- package/generated/api.github.com.json +319 -3
- package/generated/ghes-3.2-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.deref.json +1 -1
- package/generated/ghes-3.2-diff-to-ghes-3.3.json +1 -1
- package/generated/ghes-3.2.deref.json +7 -1
- package/generated/ghes-3.2.json +7 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.deref.json +1 -1
- package/generated/ghes-3.3-diff-to-ghes-3.4.json +1 -1
- package/generated/ghes-3.3.deref.json +7 -1
- package/generated/ghes-3.3.json +7 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.deref.json +1 -1
- package/generated/ghes-3.4-diff-to-ghes-3.5.json +1 -1
- package/generated/ghes-3.4.deref.json +7 -1
- package/generated/ghes-3.4.json +7 -1
- package/generated/ghes-3.5-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.deref.json +1 -1
- package/generated/ghes-3.5-diff-to-ghes-3.6.json +1 -1
- package/generated/ghes-3.5.deref.json +7 -1
- package/generated/ghes-3.5.json +7 -1
- package/generated/ghes-3.6-anicca-diff-to-api.github.com.deref.json +6 -0
- package/generated/ghes-3.6-diff-to-api.github.com.deref.json +1 -1
- package/generated/ghes-3.6-diff-to-api.github.com.json +1 -1
- package/generated/ghes-3.6.deref.json +51 -1
- package/generated/ghes-3.6.json +51 -1
- package/generated/github.ae-anicca-diff-to-api.github.com.deref.json +6 -0
- package/generated/github.ae-diff-to-api.github.com.deref.json +1 -1
- package/generated/github.ae-diff-to-api.github.com.json +1 -1
- package/generated/github.ae.deref.json +51 -1
- package/generated/github.ae.json +51 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -3576,6 +3576,105 @@
|
|
|
3576
3576
|
"x-octokit": {}
|
|
3577
3577
|
}
|
|
3578
3578
|
},
|
|
3579
|
+
"/enterprises/{enterprise}/consumed-licenses": {
|
|
3580
|
+
"get": {
|
|
3581
|
+
"summary": "List enterprise consumed licenses",
|
|
3582
|
+
"description": "Lists the license consumption information for all users, including those from connected servers, associated with an enterprise.\nTo use this endpoint, you must be an enterprise admin, and you must use an access\ntoken with the `read:enterprise` scope.",
|
|
3583
|
+
"tags": [
|
|
3584
|
+
"enterprise-admin"
|
|
3585
|
+
],
|
|
3586
|
+
"operationId": "enterprise-admin/get-consumed-licenses",
|
|
3587
|
+
"externalDocs": {
|
|
3588
|
+
"description": "API method documentation",
|
|
3589
|
+
"url": "https://docs.github.com/rest/reference/enterprise-admin#list-enterprise-consumed-licenses"
|
|
3590
|
+
},
|
|
3591
|
+
"parameters": [
|
|
3592
|
+
{
|
|
3593
|
+
"$ref": "#/components/parameters/enterprise"
|
|
3594
|
+
},
|
|
3595
|
+
{
|
|
3596
|
+
"$ref": "#/components/parameters/per-page"
|
|
3597
|
+
},
|
|
3598
|
+
{
|
|
3599
|
+
"$ref": "#/components/parameters/page"
|
|
3600
|
+
}
|
|
3601
|
+
],
|
|
3602
|
+
"responses": {
|
|
3603
|
+
"200": {
|
|
3604
|
+
"description": "Consumed Licenses Response",
|
|
3605
|
+
"content": {
|
|
3606
|
+
"application/json": {
|
|
3607
|
+
"schema": {
|
|
3608
|
+
"$ref": "#/components/schemas/get-consumed-licenses"
|
|
3609
|
+
},
|
|
3610
|
+
"examples": {
|
|
3611
|
+
"default": {
|
|
3612
|
+
"$ref": "#/components/examples/get-consumed-licenses"
|
|
3613
|
+
}
|
|
3614
|
+
}
|
|
3615
|
+
}
|
|
3616
|
+
},
|
|
3617
|
+
"headers": {
|
|
3618
|
+
"Link": {
|
|
3619
|
+
"$ref": "#/components/headers/link"
|
|
3620
|
+
}
|
|
3621
|
+
}
|
|
3622
|
+
}
|
|
3623
|
+
},
|
|
3624
|
+
"x-github": {
|
|
3625
|
+
"githubCloudOnly": true,
|
|
3626
|
+
"enabledForGitHubApps": false,
|
|
3627
|
+
"previews": [],
|
|
3628
|
+
"category": "enterprise-admin",
|
|
3629
|
+
"subcategory": "license"
|
|
3630
|
+
},
|
|
3631
|
+
"x-octokit": {}
|
|
3632
|
+
}
|
|
3633
|
+
},
|
|
3634
|
+
"/enterprises/{enterprise}/license-sync-status": {
|
|
3635
|
+
"get": {
|
|
3636
|
+
"summary": "Get a license sync status",
|
|
3637
|
+
"description": "Gets information about the status of a license sync job for an enterprise.\nTo use this endpoint, you must be an enterprise admin, and you must use an access\ntoken with the `read:enterprise` scope.",
|
|
3638
|
+
"tags": [
|
|
3639
|
+
"enterprise-admin"
|
|
3640
|
+
],
|
|
3641
|
+
"operationId": "enterprise-admin/get-license-sync-status",
|
|
3642
|
+
"externalDocs": {
|
|
3643
|
+
"description": "API method documentation",
|
|
3644
|
+
"url": "https://docs.github.com/rest/reference/enterprise-admin#get-a-license-sync-status"
|
|
3645
|
+
},
|
|
3646
|
+
"parameters": [
|
|
3647
|
+
{
|
|
3648
|
+
"$ref": "#/components/parameters/enterprise"
|
|
3649
|
+
}
|
|
3650
|
+
],
|
|
3651
|
+
"responses": {
|
|
3652
|
+
"200": {
|
|
3653
|
+
"description": "License Sync Status Response",
|
|
3654
|
+
"content": {
|
|
3655
|
+
"application/json": {
|
|
3656
|
+
"schema": {
|
|
3657
|
+
"$ref": "#/components/schemas/get-license-sync-status"
|
|
3658
|
+
},
|
|
3659
|
+
"examples": {
|
|
3660
|
+
"default": {
|
|
3661
|
+
"$ref": "#/components/examples/get-license-sync-status"
|
|
3662
|
+
}
|
|
3663
|
+
}
|
|
3664
|
+
}
|
|
3665
|
+
}
|
|
3666
|
+
}
|
|
3667
|
+
},
|
|
3668
|
+
"x-github": {
|
|
3669
|
+
"githubCloudOnly": true,
|
|
3670
|
+
"enabledForGitHubApps": false,
|
|
3671
|
+
"previews": [],
|
|
3672
|
+
"category": "enterprise-admin",
|
|
3673
|
+
"subcategory": "license"
|
|
3674
|
+
},
|
|
3675
|
+
"x-octokit": {}
|
|
3676
|
+
}
|
|
3677
|
+
},
|
|
3579
3678
|
"/enterprises/{enterprise}/secret-scanning/alerts": {
|
|
3580
3679
|
"get": {
|
|
3581
3680
|
"summary": "List secret scanning alerts for an enterprise",
|
|
@@ -28018,8 +28117,8 @@
|
|
|
28018
28117
|
"examples": {
|
|
28019
28118
|
"default": {
|
|
28020
28119
|
"value": {
|
|
28021
|
-
"
|
|
28022
|
-
"
|
|
28120
|
+
"ref": "main",
|
|
28121
|
+
"machine": "standardLinux32gb"
|
|
28023
28122
|
}
|
|
28024
28123
|
}
|
|
28025
28124
|
}
|
|
@@ -28057,6 +28156,9 @@
|
|
|
28057
28156
|
}
|
|
28058
28157
|
}
|
|
28059
28158
|
},
|
|
28159
|
+
"400": {
|
|
28160
|
+
"$ref": "#/components/responses/bad_request"
|
|
28161
|
+
},
|
|
28060
28162
|
"401": {
|
|
28061
28163
|
"$ref": "#/components/responses/requires_authentication"
|
|
28062
28164
|
},
|
|
@@ -58591,6 +58693,12 @@
|
|
|
58591
58693
|
"text/plain": {
|
|
58592
58694
|
"schema": {
|
|
58593
58695
|
"type": "string"
|
|
58696
|
+
},
|
|
58697
|
+
"examples": {
|
|
58698
|
+
"default": {
|
|
58699
|
+
"summary": "Example response",
|
|
58700
|
+
"value": "Responsive is better than fast"
|
|
58701
|
+
}
|
|
58594
58702
|
}
|
|
58595
58703
|
}
|
|
58596
58704
|
}
|
|
@@ -62568,6 +62676,129 @@
|
|
|
62568
62676
|
"repository"
|
|
62569
62677
|
]
|
|
62570
62678
|
},
|
|
62679
|
+
"get-consumed-licenses": {
|
|
62680
|
+
"title": "Enterprise Consumed Licenses",
|
|
62681
|
+
"description": "A breakdown of the licenses consumed by an enterprise.",
|
|
62682
|
+
"properties": {
|
|
62683
|
+
"total_seats_consumed": {
|
|
62684
|
+
"type": "integer"
|
|
62685
|
+
},
|
|
62686
|
+
"total_seats_purchased": {
|
|
62687
|
+
"type": "integer"
|
|
62688
|
+
},
|
|
62689
|
+
"users": {
|
|
62690
|
+
"type": "array",
|
|
62691
|
+
"items": {
|
|
62692
|
+
"type": "object",
|
|
62693
|
+
"properties": {
|
|
62694
|
+
"github_com_login": {
|
|
62695
|
+
"type": "string"
|
|
62696
|
+
},
|
|
62697
|
+
"github_com_name": {
|
|
62698
|
+
"type": "string",
|
|
62699
|
+
"nullable": true
|
|
62700
|
+
},
|
|
62701
|
+
"github_com_profile": {
|
|
62702
|
+
"type": "string",
|
|
62703
|
+
"nullable": true
|
|
62704
|
+
},
|
|
62705
|
+
"license_type": {
|
|
62706
|
+
"type": "string"
|
|
62707
|
+
},
|
|
62708
|
+
"github_com_member_roles": {
|
|
62709
|
+
"type": "array",
|
|
62710
|
+
"items": {
|
|
62711
|
+
"type": "string"
|
|
62712
|
+
}
|
|
62713
|
+
},
|
|
62714
|
+
"github_com_enterprise_role": {
|
|
62715
|
+
"type": "string",
|
|
62716
|
+
"nullable": true
|
|
62717
|
+
},
|
|
62718
|
+
"visual_studio_subscription_user": {
|
|
62719
|
+
"type": "boolean"
|
|
62720
|
+
},
|
|
62721
|
+
"github_com_verified_domain_emails": {
|
|
62722
|
+
"type": "array",
|
|
62723
|
+
"items": {
|
|
62724
|
+
"type": "string"
|
|
62725
|
+
}
|
|
62726
|
+
},
|
|
62727
|
+
"github_com_saml_name_id": {
|
|
62728
|
+
"type": "string",
|
|
62729
|
+
"nullable": true
|
|
62730
|
+
},
|
|
62731
|
+
"enterprise_server_user": {
|
|
62732
|
+
"type": "boolean",
|
|
62733
|
+
"nullable": true
|
|
62734
|
+
},
|
|
62735
|
+
"enterprise_server_emails": {
|
|
62736
|
+
"type": "array",
|
|
62737
|
+
"items": {
|
|
62738
|
+
"type": "string"
|
|
62739
|
+
}
|
|
62740
|
+
},
|
|
62741
|
+
"github_com_user": {
|
|
62742
|
+
"type": "boolean"
|
|
62743
|
+
},
|
|
62744
|
+
"total_user_accounts": {
|
|
62745
|
+
"type": "integer"
|
|
62746
|
+
},
|
|
62747
|
+
"enterprise_server_user_ids": {
|
|
62748
|
+
"type": "array",
|
|
62749
|
+
"items": {
|
|
62750
|
+
"type": "string"
|
|
62751
|
+
}
|
|
62752
|
+
},
|
|
62753
|
+
"github_com_orgs_with_pending_invites": {
|
|
62754
|
+
"type": "array",
|
|
62755
|
+
"items": {
|
|
62756
|
+
"type": "string"
|
|
62757
|
+
}
|
|
62758
|
+
},
|
|
62759
|
+
"visual_studio_subscription_email": {
|
|
62760
|
+
"type": "string",
|
|
62761
|
+
"nullable": true
|
|
62762
|
+
}
|
|
62763
|
+
}
|
|
62764
|
+
}
|
|
62765
|
+
}
|
|
62766
|
+
}
|
|
62767
|
+
},
|
|
62768
|
+
"get-license-sync-status": {
|
|
62769
|
+
"title": "License Sync Status",
|
|
62770
|
+
"description": "Information about the status of a license sync job for an enterprise.",
|
|
62771
|
+
"properties": {
|
|
62772
|
+
"server_instances": {
|
|
62773
|
+
"type": "array",
|
|
62774
|
+
"items": {
|
|
62775
|
+
"type": "object",
|
|
62776
|
+
"properties": {
|
|
62777
|
+
"server_id": {
|
|
62778
|
+
"type": "string"
|
|
62779
|
+
},
|
|
62780
|
+
"hostname": {
|
|
62781
|
+
"type": "string"
|
|
62782
|
+
},
|
|
62783
|
+
"last_sync": {
|
|
62784
|
+
"type": "object",
|
|
62785
|
+
"properties": {
|
|
62786
|
+
"date": {
|
|
62787
|
+
"type": "string"
|
|
62788
|
+
},
|
|
62789
|
+
"status": {
|
|
62790
|
+
"type": "string"
|
|
62791
|
+
},
|
|
62792
|
+
"error": {
|
|
62793
|
+
"type": "string"
|
|
62794
|
+
}
|
|
62795
|
+
}
|
|
62796
|
+
}
|
|
62797
|
+
}
|
|
62798
|
+
}
|
|
62799
|
+
}
|
|
62800
|
+
}
|
|
62801
|
+
},
|
|
62571
62802
|
"nullable-alert-updated-at": {
|
|
62572
62803
|
"type": "string",
|
|
62573
62804
|
"description": "The time that the alert was last updated in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.",
|
|
@@ -88818,6 +89049,91 @@
|
|
|
88818
89049
|
}
|
|
88819
89050
|
]
|
|
88820
89051
|
},
|
|
89052
|
+
"get-consumed-licenses": {
|
|
89053
|
+
"value": {
|
|
89054
|
+
"total_seats_consumed": 5000,
|
|
89055
|
+
"total_seats_purchased": 4500,
|
|
89056
|
+
"users": [
|
|
89057
|
+
{
|
|
89058
|
+
"enterprise_server_emails": [
|
|
89059
|
+
"monalisa@github.com"
|
|
89060
|
+
],
|
|
89061
|
+
"github_com_login": "monalisa",
|
|
89062
|
+
"github_com_name": "Mona Lisa",
|
|
89063
|
+
"github_com_profile": "https://github.com/monalisa",
|
|
89064
|
+
"license_type": "enterprise",
|
|
89065
|
+
"github_com_member_roles": [
|
|
89066
|
+
"org1:Owner",
|
|
89067
|
+
"org2:Owner"
|
|
89068
|
+
],
|
|
89069
|
+
"github_com_enterprise_role": "owner",
|
|
89070
|
+
"visual_studio_subscription_user": false,
|
|
89071
|
+
"github_com_verified_domain_emails": [
|
|
89072
|
+
"monalisa@github.com"
|
|
89073
|
+
],
|
|
89074
|
+
"github_com_saml_name_id": "monalisa",
|
|
89075
|
+
"enterprise_server_user": true,
|
|
89076
|
+
"github_com_user": true,
|
|
89077
|
+
"total_user_accounts": 3,
|
|
89078
|
+
"enterprise_server_user_ids": [
|
|
89079
|
+
"example_host_name.com:123",
|
|
89080
|
+
"example_host_name_2:222"
|
|
89081
|
+
],
|
|
89082
|
+
"github_com_orgs_with_pending_invites": [
|
|
89083
|
+
"org1",
|
|
89084
|
+
"org2"
|
|
89085
|
+
],
|
|
89086
|
+
"visual_studio_subscription_email": ""
|
|
89087
|
+
},
|
|
89088
|
+
{
|
|
89089
|
+
"enterprise_server_emails": [
|
|
89090
|
+
"deleonjavier@example.com"
|
|
89091
|
+
],
|
|
89092
|
+
"github_com_login": "",
|
|
89093
|
+
"github_com_name": "",
|
|
89094
|
+
"github_com_profile": "",
|
|
89095
|
+
"license_type": "enterprise",
|
|
89096
|
+
"github_com_member_roles": [],
|
|
89097
|
+
"github_com_enterprise_role": "",
|
|
89098
|
+
"visual_studio_subscription_user": false,
|
|
89099
|
+
"github_com_verified_domain_emails": [],
|
|
89100
|
+
"github_com_saml_name_id": "",
|
|
89101
|
+
"enterprise_server_user": true,
|
|
89102
|
+
"github_com_user": false,
|
|
89103
|
+
"total_user_accounts": 1,
|
|
89104
|
+
"enterprise_server_user_ids": [
|
|
89105
|
+
"example_host_name:123"
|
|
89106
|
+
],
|
|
89107
|
+
"github_com_orgs_with_pending_invites": [],
|
|
89108
|
+
"visual_studio_subscription_email": ""
|
|
89109
|
+
}
|
|
89110
|
+
]
|
|
89111
|
+
}
|
|
89112
|
+
},
|
|
89113
|
+
"get-license-sync-status": {
|
|
89114
|
+
"value": {
|
|
89115
|
+
"server_instances": [
|
|
89116
|
+
{
|
|
89117
|
+
"server_id": "deadbeef1",
|
|
89118
|
+
"hostname": "github.example.com",
|
|
89119
|
+
"last_sync": {
|
|
89120
|
+
"date": "2020-01-01T00:00:00Z",
|
|
89121
|
+
"status": "success",
|
|
89122
|
+
"error": ""
|
|
89123
|
+
}
|
|
89124
|
+
},
|
|
89125
|
+
{
|
|
89126
|
+
"server_id": "filetoffish1",
|
|
89127
|
+
"hostname": "github2.example.com",
|
|
89128
|
+
"last_sync": {
|
|
89129
|
+
"date": "2020-01-01T00:00:00Z",
|
|
89130
|
+
"status": "success",
|
|
89131
|
+
"error": ""
|
|
89132
|
+
}
|
|
89133
|
+
}
|
|
89134
|
+
]
|
|
89135
|
+
}
|
|
89136
|
+
},
|
|
88821
89137
|
"organization-secret-scanning-alert-list": {
|
|
88822
89138
|
"value": [
|
|
88823
89139
|
{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -403166,6 +403166,12 @@
|
|
|
403166
403166
|
"text/plain": {
|
|
403167
403167
|
"schema": {
|
|
403168
403168
|
"type": "string"
|
|
403169
|
+
},
|
|
403170
|
+
"examples": {
|
|
403171
|
+
"default": {
|
|
403172
|
+
"summary": "Example response",
|
|
403173
|
+
"value": "Responsive is better than fast"
|
|
403174
|
+
}
|
|
403169
403175
|
}
|
|
403170
403176
|
}
|
|
403171
403177
|
}
|
package/generated/ghes-3.2.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -49784,6 +49784,12 @@
|
|
|
49784
49784
|
"text/plain": {
|
|
49785
49785
|
"schema": {
|
|
49786
49786
|
"type": "string"
|
|
49787
|
+
},
|
|
49788
|
+
"examples": {
|
|
49789
|
+
"default": {
|
|
49790
|
+
"summary": "Example response",
|
|
49791
|
+
"value": "Responsive is better than fast"
|
|
49792
|
+
}
|
|
49787
49793
|
}
|
|
49788
49794
|
}
|
|
49789
49795
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -405292,6 +405292,12 @@
|
|
|
405292
405292
|
"text/plain": {
|
|
405293
405293
|
"schema": {
|
|
405294
405294
|
"type": "string"
|
|
405295
|
+
},
|
|
405296
|
+
"examples": {
|
|
405297
|
+
"default": {
|
|
405298
|
+
"summary": "Example response",
|
|
405299
|
+
"value": "Responsive is better than fast"
|
|
405300
|
+
}
|
|
405295
405301
|
}
|
|
405296
405302
|
}
|
|
405297
405303
|
}
|
package/generated/ghes-3.3.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -49249,6 +49249,12 @@
|
|
|
49249
49249
|
"text/plain": {
|
|
49250
49250
|
"schema": {
|
|
49251
49251
|
"type": "string"
|
|
49252
|
+
},
|
|
49253
|
+
"examples": {
|
|
49254
|
+
"default": {
|
|
49255
|
+
"summary": "Example response",
|
|
49256
|
+
"value": "Responsive is better than fast"
|
|
49257
|
+
}
|
|
49252
49258
|
}
|
|
49253
49259
|
}
|
|
49254
49260
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -424826,6 +424826,12 @@
|
|
|
424826
424826
|
"text/plain": {
|
|
424827
424827
|
"schema": {
|
|
424828
424828
|
"type": "string"
|
|
424829
|
+
},
|
|
424830
|
+
"examples": {
|
|
424831
|
+
"default": {
|
|
424832
|
+
"summary": "Example response",
|
|
424833
|
+
"value": "Responsive is better than fast"
|
|
424834
|
+
}
|
|
424829
424835
|
}
|
|
424830
424836
|
}
|
|
424831
424837
|
}
|
package/generated/ghes-3.4.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -51600,6 +51600,12 @@
|
|
|
51600
51600
|
"text/plain": {
|
|
51601
51601
|
"schema": {
|
|
51602
51602
|
"type": "string"
|
|
51603
|
+
},
|
|
51604
|
+
"examples": {
|
|
51605
|
+
"default": {
|
|
51606
|
+
"summary": "Example response",
|
|
51607
|
+
"value": "Responsive is better than fast"
|
|
51608
|
+
}
|
|
51603
51609
|
}
|
|
51604
51610
|
}
|
|
51605
51611
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"openapi": "3.0.3",
|
|
3
3
|
"info": {
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.2.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": {
|
|
@@ -434025,6 +434025,12 @@
|
|
|
434025
434025
|
"text/plain": {
|
|
434026
434026
|
"schema": {
|
|
434027
434027
|
"type": "string"
|
|
434028
|
+
},
|
|
434029
|
+
"examples": {
|
|
434030
|
+
"default": {
|
|
434031
|
+
"summary": "Example response",
|
|
434032
|
+
"value": "Responsive is better than fast"
|
|
434033
|
+
}
|
|
434028
434034
|
}
|
|
434029
434035
|
}
|
|
434030
434036
|
}
|