Skip to content

Commit fff1f3e

Browse files
committed
fix: updated schema
1 parent c016fb3 commit fff1f3e

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

lib/index.d.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ export interface HerokuPlatformApi {
8080
'team-invoice'?: TeamInvoice
8181
'team-member'?: TeamMember
8282
'team-preferences'?: TeamPreferences
83+
'team-space'?: Space1
8384
team?: Team
8485
'test-case'?: TestCase
8586
'test-node'?: TestNode
@@ -3356,6 +3357,12 @@ export interface TeamPreferences {
33563357
'whitelisting-enabled'?: boolean | null
33573358
[k: string]: any
33583359
}
3360+
/**
3361+
* A space is an isolated, highly available, secure app execution environments, running in the modern VPC substrate.
3362+
*/
3363+
export interface Space1 {
3364+
[k: string]: any
3365+
}
33593366
/**
33603367
* Teams allow you to manage access to a shared group of applications and other resources.
33613368
*/

schema.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12865,6 +12865,33 @@
1286512865
}
1286612866
}
1286712867
},
12868+
"team-space": {
12869+
"description": "A space is an isolated, highly available, secure app execution environments, running in the modern VPC substrate.",
12870+
"$schema": "http://json-schema.org/draft-04/hyper-schema",
12871+
"stability": "prototype",
12872+
"strictProperties": true,
12873+
"title": "Heroku Platform API - Space",
12874+
"type": [
12875+
"object"
12876+
],
12877+
"links": [
12878+
{
12879+
"description": "List spaces owned by the team",
12880+
"href": "/teams/{(%23%2Fdefinitions%2Fteam%2Fdefinitions%2Fidentity)}/spaces",
12881+
"method": "GET",
12882+
"rel": "instances",
12883+
"targetSchema": {
12884+
"items": {
12885+
"$ref": "#/definitions/space"
12886+
},
12887+
"type": [
12888+
"array"
12889+
]
12890+
},
12891+
"title": "List"
12892+
}
12893+
]
12894+
},
1286812895
"team": {
1286912896
"$schema": "http://json-schema.org/draft-04/hyper-schema",
1287012897
"description": "Teams allow you to manage access to a shared group of applications and other resources.",
@@ -14791,6 +14818,9 @@
1479114818
"team-preferences": {
1479214819
"$ref": "#/definitions/team-preferences"
1479314820
},
14821+
"team-space": {
14822+
"$ref": "#/definitions/team-space"
14823+
},
1479414824
"team": {
1479514825
"$ref": "#/definitions/team"
1479614826
},

0 commit comments

Comments
 (0)