Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 62 additions & 3 deletions services/external-actor-gateway-service/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ components:
summary: CreatePageRequest example
value:
actionCardWidgets: []
navLinks: []
pageType: inbound
scripts: []
CreateWebhookSubscriptionRequestExample:
Expand Down Expand Up @@ -890,6 +891,10 @@ components:
- title
- logos
additionalProperties: false
UnnamedSchema:
type: string
format: date-time
pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$
ContentTypeSchema:
type: object
properties:
Expand All @@ -902,9 +907,23 @@ components:
- type
- content
additionalProperties: false
UnnamedSchema:
type: string
pattern: ^\+[1-9]\d{1,14}$
IdTextTypeUrlSchema:
type: object
properties:
id:
type: string
text:
type: string
url:
type: string
type:
type: string
const: link
required:
- text
- url
- type
additionalProperties: false
ActionIdActionTypeButtonTitlePurposeUrlSchema:
type: object
properties:
Expand Down Expand Up @@ -1221,6 +1240,13 @@ components:
name:
type: string
minLength: 1
navLinks:
default: []
type: array
items:
oneOf:
- $ref: "#/components/schemas/IdTextTypeUrlSchema"
- $ref: "#/components/schemas/FooterLink1"
pageContext:
type: string
minLength: 1
Expand All @@ -1244,6 +1270,7 @@ components:
- brandId
- footerLinks
- name
- navLinks
- pageContext
- pageType
- scripts
Expand Down Expand Up @@ -1446,6 +1473,25 @@ components:
- links
- title
additionalProperties: false
FooterLink1:
type: object
properties:
id:
type: string
links:
type: array
items:
$ref: "#/components/schemas/NestedObject1"
title:
type: string
type:
type: string
const: group
required:
- links
- title
- type
additionalProperties: false
GetAccount:
type: object
properties:
Expand Down Expand Up @@ -3218,6 +3264,12 @@ components:
$ref: "#/components/schemas/Metadata"
name:
type: string
navLinks:
type: array
items:
anyOf:
- $ref: "#/components/schemas/IdTextTypeUrlSchema"
- $ref: "#/components/schemas/FooterLink1"
pageContext:
type: string
pageId:
Expand Down Expand Up @@ -3255,6 +3307,7 @@ components:
- footerLinks
- flags
- name
- navLinks
- pageContext
- pageId
- pageType
Expand Down Expand Up @@ -3837,6 +3890,12 @@ components:
name:
type: string
minLength: 1
navLinks:
type: array
items:
anyOf:
- $ref: "#/components/schemas/IdTextTypeUrlSchema"
- $ref: "#/components/schemas/FooterLink1"
pageContext:
type: string
minLength: 1
Expand Down
Loading