Skip to content

Commit 0d22a9a

Browse files
chore: sync OpenAPI specs from PR #1292
1 parent d555fc4 commit 0d22a9a

File tree

1 file changed

+82
-0
lines changed

1 file changed

+82
-0
lines changed

services/external-actor-gateway-service/openapi.yaml

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,12 +488,23 @@ components:
488488
type: string
489489
updatedAt:
490490
type: string
491+
effectiveName:
492+
type: string
493+
customName:
494+
anyOf:
495+
- type: string
496+
- type: "null"
497+
computedName:
498+
type: string
491499
required:
492500
- createdAt
493501
- pageGroupId
494502
- pageId
495503
- tenantId
496504
- updatedAt
505+
- effectiveName
506+
- customName
507+
- computedName
497508
additionalProperties: false
498509
nextCursor:
499510
type: string
@@ -1527,6 +1538,54 @@ components:
15271538
- createdAt
15281539
- updatedAt
15291540
additionalProperties: false
1541+
UpdatePageInGroupRequest:
1542+
type: object
1543+
properties:
1544+
customName:
1545+
anyOf:
1546+
- type: string
1547+
- type: "null"
1548+
supplementaryContext:
1549+
anyOf:
1550+
- type: string
1551+
- type: "null"
1552+
additionalProperties: false
1553+
UpdatePageInGroupResponse:
1554+
type: object
1555+
properties:
1556+
pageGroupId:
1557+
type: string
1558+
pageId:
1559+
type: string
1560+
tenantId:
1561+
type: string
1562+
effectiveName:
1563+
type: string
1564+
customName:
1565+
anyOf:
1566+
- type: string
1567+
- type: "null"
1568+
computedName:
1569+
type: string
1570+
supplementaryContext:
1571+
anyOf:
1572+
- type: string
1573+
- type: "null"
1574+
createdAt:
1575+
type: string
1576+
updatedAt:
1577+
type: string
1578+
required:
1579+
- pageGroupId
1580+
- pageId
1581+
- tenantId
1582+
- effectiveName
1583+
- customName
1584+
- computedName
1585+
- supplementaryContext
1586+
- createdAt
1587+
- updatedAt
1588+
additionalProperties: false
15301589
UpdateTemplateRequest:
15311590
type: object
15321591
properties:
@@ -1787,6 +1846,29 @@ paths:
17871846
schema:
17881847
$ref: "#/components/schemas/CreatePageRequest"
17891848
required: true
1849+
/v0/page_groups/{page_group_id}/pages/{page_id}:
1850+
patch:
1851+
description: Update a page within the specified page group
1852+
operationId: updatePageInGroup
1853+
responses:
1854+
"200":
1855+
description: Successful operation
1856+
content:
1857+
application/json:
1858+
schema:
1859+
$ref: "#/components/schemas/UpdatePageInGroupResponse"
1860+
summary: Update a page
1861+
tags:
1862+
- Pages
1863+
parameters:
1864+
- $ref: "#/components/parameters/PageGroupIdPath"
1865+
- $ref: "#/components/parameters/PageIdPath"
1866+
requestBody:
1867+
content:
1868+
application/json:
1869+
schema:
1870+
$ref: "#/components/schemas/UpdatePageInGroupRequest"
1871+
required: true
17901872
/v0/page_groups/{page_group_id}/pages/{page_id}/session_count:
17911873
get:
17921874
description: Get total session count for a specific page

0 commit comments

Comments
 (0)