Skip to content

Commit 0be9dbc

Browse files
chore: update Management API OAS artifacts (#1488)
Co-authored-by: auth0-docs-automation[bot] <266159893+auth0-docs-automation[bot]@users.noreply.github.com>
1 parent 8958578 commit 0be9dbc

4 files changed

Lines changed: 83 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"oasVersion": "1.9493.0",
2+
"oasVersion": "1.9500.0",
33
"snippetVersion": "0.0.8"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"oasVersion": "1.9493.0",
2+
"oasVersion": "1.9500.0",
33
"snippetVersion": "0.0.8"
44
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"oasVersion": "1.9493.0",
2+
"oasVersion": "1.9500.0",
33
"snippetVersion": "0.0.8"
44
}

main/docs/oas/management/v2/management-api-oas.json

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53671,6 +53671,13 @@
5367153671
"items": {
5367253672
"$ref": "#/components/schemas/TokenVaultPrivilegedAccessIpAllowlistEntry"
5367353673
}
53674+
},
53675+
"grants": {
53676+
"type": "array",
53677+
"minItems": 0,
53678+
"items": {
53679+
"$ref": "#/components/schemas/TokenVaultPrivilegedAccessGrant"
53680+
}
5367453681
}
5367553682
}
5367653683
},
@@ -53696,6 +53703,13 @@
5369653703
"items": {
5369753704
"$ref": "#/components/schemas/TokenVaultPrivilegedAccessIpAllowlistEntry"
5369853705
}
53706+
},
53707+
"grants": {
53708+
"type": "array",
53709+
"minItems": 0,
53710+
"items": {
53711+
"$ref": "#/components/schemas/TokenVaultPrivilegedAccessGrant"
53712+
}
5369953713
}
5370053714
}
5370153715
},
@@ -68649,6 +68663,10 @@
6864968663
"token_quota": {
6865068664
"$ref": "#/components/schemas/CreateTokenQuota",
6865168665
"x-release-lifecycle": "EA"
68666+
},
68667+
"third_party_client_access": {
68668+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
68669+
"x-release-lifecycle": "GA"
6865268670
}
6865368671
}
6865468672
},
@@ -68687,6 +68705,10 @@
6868768705
"$ref": "#/components/schemas/TokenQuota",
6868868706
"x-release-lifecycle": "EA"
6868968707
},
68708+
"third_party_client_access": {
68709+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
68710+
"x-release-lifecycle": "GA"
68711+
},
6869068712
"enabled_connections": {
6869168713
"type": "array",
6869268714
"items": {
@@ -101598,6 +101620,10 @@
101598101620
"token_quota": {
101599101621
"$ref": "#/components/schemas/TokenQuota",
101600101622
"x-release-lifecycle": "EA"
101623+
},
101624+
"third_party_client_access": {
101625+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
101626+
"x-release-lifecycle": "GA"
101601101627
}
101602101628
}
101603101629
},
@@ -101814,6 +101840,10 @@
101814101840
"token_quota": {
101815101841
"$ref": "#/components/schemas/TokenQuota",
101816101842
"x-release-lifecycle": "EA"
101843+
},
101844+
"third_party_client_access": {
101845+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
101846+
"x-release-lifecycle": "GA"
101817101847
}
101818101848
}
101819101849
},
@@ -107458,6 +107488,10 @@
107458107488
"token_quota": {
107459107489
"$ref": "#/components/schemas/TokenQuota",
107460107490
"x-release-lifecycle": "EA"
107491+
},
107492+
"third_party_client_access": {
107493+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
107494+
"x-release-lifecycle": "GA"
107461107495
}
107462107496
}
107463107497
},
@@ -107911,6 +107945,15 @@
107911107945
},
107912107946
"maxProperties": 25
107913107947
},
107948+
"OrganizationThirdPartyClientAccessEnum": {
107949+
"type": "string",
107950+
"description": "Controls whether this organization can be used in user flows with third-party clients. Defaults to `block`.",
107951+
"enum": [
107952+
"block",
107953+
"allow"
107954+
],
107955+
"x-release-lifecycle": "GA"
107956+
},
107914107957
"OrganizationUsageEnum": {
107915107958
"type": "string",
107916107959
"description": "Defines whether organizations can be used with client credentials exchanges for this grant.",
@@ -113275,6 +113318,30 @@
113275113318
}
113276113319
}
113277113320
},
113321+
"TokenVaultPrivilegedAccessGrant": {
113322+
"type": "object",
113323+
"additionalProperties": false,
113324+
"required": [
113325+
"connection",
113326+
"scopes"
113327+
],
113328+
"properties": {
113329+
"connection": {
113330+
"type": "string",
113331+
"minLength": 1,
113332+
"maxLength": 128
113333+
},
113334+
"scopes": {
113335+
"type": "array",
113336+
"minItems": 1,
113337+
"items": {
113338+
"type": "string",
113339+
"minLength": 1,
113340+
"maxLength": 280
113341+
}
113342+
}
113343+
}
113344+
},
113278113345
"TokenVaultPrivilegedAccessIpAllowlistEntry": {
113279113346
"type": "string",
113280113347
"oneOf": [
@@ -117949,6 +118016,10 @@
117949118016
"token_quota": {
117950118017
"$ref": "#/components/schemas/UpdateTokenQuota",
117951118018
"x-release-lifecycle": "EA"
118019+
},
118020+
"third_party_client_access": {
118021+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
118022+
"x-release-lifecycle": "GA"
117952118023
}
117953118024
}
117954118025
},
@@ -117986,6 +118057,10 @@
117986118057
"token_quota": {
117987118058
"$ref": "#/components/schemas/TokenQuota",
117988118059
"x-release-lifecycle": "EA"
118060+
},
118061+
"third_party_client_access": {
118062+
"$ref": "#/components/schemas/OrganizationThirdPartyClientAccessEnum",
118063+
"x-release-lifecycle": "GA"
117989118064
}
117990118065
}
117991118066
},
@@ -120560,6 +120635,11 @@
120560120635
"type": "string",
120561120636
"minLength": 1
120562120637
}
120638+
},
120639+
"organization_id": {
120640+
"type": "string",
120641+
"description": "ID of the organization associated with the grant.",
120642+
"x-release-lifecycle": "GA"
120563120643
}
120564120644
}
120565120645
},

0 commit comments

Comments
 (0)