Skip to content

Commit 2f0dabc

Browse files
authoredAug 24, 2024··
Merge pull request #1196 from DEVTomatoCake/feat/list-create-developer-teams
Listing & creation of Developer Portal teams
2 parents 60f22c2 + eca4f1b commit 2f0dabc

12 files changed

+12721
-1203
lines changed
 

‎assets/openapi.json

+83-6
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,7 @@
118118
"type": "string"
119119
},
120120
"team_id": {
121-
"type": [
122-
"string",
123-
"integer"
124-
]
121+
"type": "string"
125122
}
126123
},
127124
"required": [
@@ -3169,6 +3166,9 @@
31693166
"type": "string"
31703167
}
31713168
},
3169+
"role": {
3170+
"$ref": "#/components/schemas/TeamMemberRole"
3171+
},
31723172
"team_id": {
31733173
"type": "string"
31743174
},
@@ -3189,6 +3189,7 @@
31893189
"id",
31903190
"membership_state",
31913191
"permissions",
3192+
"role",
31923193
"team",
31933194
"team_id",
31943195
"user",
@@ -3202,6 +3203,14 @@
32023203
],
32033204
"type": "number"
32043205
},
3206+
"TeamMemberRole": {
3207+
"enum": [
3208+
"admin",
3209+
"developer",
3210+
"read_only"
3211+
],
3212+
"type": "string"
3213+
},
32053214
"Sticker": {
32063215
"type": "object",
32073216
"properties": {
@@ -6307,6 +6316,17 @@
63076316
"protocol"
63086317
]
63096318
},
6319+
"TeamCreateSchema": {
6320+
"type": "object",
6321+
"properties": {
6322+
"name": {
6323+
"type": "string"
6324+
}
6325+
},
6326+
"required": [
6327+
"name"
6328+
]
6329+
},
63106330
"TemplateCreateSchema": {
63116331
"type": "object",
63126332
"properties": {
@@ -7661,6 +7681,14 @@
76617681
"location"
76627682
]
76637683
},
7684+
"TeamListResponse": {
7685+
"type": "object",
7686+
"patternProperties": {
7687+
"^[0-9]+$": {
7688+
"$ref": "#/components/schemas/Team"
7689+
}
7690+
}
7691+
},
76647692
"TenorTrendingResponse": {
76657693
"type": "object",
76667694
"properties": {
@@ -10622,8 +10650,57 @@
1062210650
}
1062310651
],
1062410652
"responses": {
10625-
"default": {
10626-
"description": "No description available"
10653+
"200": {
10654+
"description": "",
10655+
"content": {
10656+
"application/json": {
10657+
"schema": {
10658+
"$ref": "#/components/schemas/TeamListResponse"
10659+
}
10660+
}
10661+
}
10662+
}
10663+
},
10664+
"parameters": [
10665+
{
10666+
"name": "include_payout_account_status",
10667+
"in": "query",
10668+
"schema": {
10669+
"type": "boolean"
10670+
},
10671+
"description": "Whether to include team payout account status in the response (default false)"
10672+
}
10673+
],
10674+
"tags": [
10675+
"teams"
10676+
]
10677+
},
10678+
"post": {
10679+
"security": [
10680+
{
10681+
"bearer": []
10682+
}
10683+
],
10684+
"requestBody": {
10685+
"required": true,
10686+
"content": {
10687+
"application/json": {
10688+
"schema": {
10689+
"$ref": "#/components/schemas/TeamCreateSchema"
10690+
}
10691+
}
10692+
}
10693+
},
10694+
"responses": {
10695+
"200": {
10696+
"description": "",
10697+
"content": {
10698+
"application/json": {
10699+
"schema": {
10700+
"$ref": "#/components/schemas/Team"
10701+
}
10702+
}
10703+
}
1062710704
}
1062810705
},
1062910706
"tags": [

0 commit comments

Comments
 (0)