@opusdns/api 1.72.0 → 1.74.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/helpers/constants.ts +2 -0
- package/src/helpers/keys.ts +180 -0
- package/src/helpers/requests.d.ts +9 -0
- package/src/helpers/responses.d.ts +10 -0
- package/src/helpers/schemas.d.ts +12 -0
- package/src/openapi.yaml +480 -1
- package/src/schema.d.ts +269 -1
package/src/openapi.yaml
CHANGED
|
@@ -180,6 +180,36 @@ components:
|
|
|
180
180
|
- uri_template
|
|
181
181
|
title: AttributeType
|
|
182
182
|
type: string
|
|
183
|
+
Auth:
|
|
184
|
+
description: 'Pre-login OAuth bootstrap. The SPA resolves this document by hostname
|
|
185
|
+
before login and uses
|
|
186
|
+
|
|
187
|
+
`client_id` (the org''s `wl-<organization_id>` Keycloak client) + `authority`
|
|
188
|
+
(the OIDC issuer on
|
|
189
|
+
|
|
190
|
+
the customer''s auth host) to start the flow; absent, it falls back to the
|
|
191
|
+
default dashboard client.
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
System-owned: written only by onboarding (via branding-service''s set-auth
|
|
195
|
+
endpoint), never by a
|
|
196
|
+
|
|
197
|
+
customer document write - branding-service preserves this block across customer
|
|
198
|
+
upserts.'
|
|
199
|
+
properties:
|
|
200
|
+
authority:
|
|
201
|
+
anyOf:
|
|
202
|
+
- type: string
|
|
203
|
+
- type: 'null'
|
|
204
|
+
title: Authority
|
|
205
|
+
client_id:
|
|
206
|
+
anyOf:
|
|
207
|
+
- pattern: ^[a-zA-Z0-9._-]{1,255}$
|
|
208
|
+
type: string
|
|
209
|
+
- type: 'null'
|
|
210
|
+
title: Client Id
|
|
211
|
+
title: Auth
|
|
212
|
+
type: object
|
|
183
213
|
BatchSortField:
|
|
184
214
|
enum:
|
|
185
215
|
- created_on
|
|
@@ -355,6 +385,45 @@ components:
|
|
|
355
385
|
- canceled
|
|
356
386
|
title: BillingTransactionStatus
|
|
357
387
|
type: string
|
|
388
|
+
Brand:
|
|
389
|
+
properties:
|
|
390
|
+
logo:
|
|
391
|
+
anyOf:
|
|
392
|
+
- $ref: '#/components/schemas/Logo'
|
|
393
|
+
- type: 'null'
|
|
394
|
+
name:
|
|
395
|
+
anyOf:
|
|
396
|
+
- maxLength: 255
|
|
397
|
+
minLength: 1
|
|
398
|
+
type: string
|
|
399
|
+
- type: 'null'
|
|
400
|
+
title: Name
|
|
401
|
+
title: Brand
|
|
402
|
+
type: object
|
|
403
|
+
BrandingDocument:
|
|
404
|
+
properties:
|
|
405
|
+
auth:
|
|
406
|
+
anyOf:
|
|
407
|
+
- $ref: '#/components/schemas/Auth'
|
|
408
|
+
- type: 'null'
|
|
409
|
+
brand:
|
|
410
|
+
anyOf:
|
|
411
|
+
- $ref: '#/components/schemas/Brand'
|
|
412
|
+
- type: 'null'
|
|
413
|
+
content:
|
|
414
|
+
anyOf:
|
|
415
|
+
- $ref: '#/components/schemas/Content'
|
|
416
|
+
- type: 'null'
|
|
417
|
+
theme:
|
|
418
|
+
anyOf:
|
|
419
|
+
- $ref: '#/components/schemas/Theme'
|
|
420
|
+
- type: 'null'
|
|
421
|
+
version:
|
|
422
|
+
default: 1
|
|
423
|
+
title: Version
|
|
424
|
+
type: integer
|
|
425
|
+
title: BrandingDocument
|
|
426
|
+
type: object
|
|
358
427
|
BrowserStatsBucket:
|
|
359
428
|
properties:
|
|
360
429
|
key:
|
|
@@ -1938,6 +2007,42 @@ components:
|
|
|
1938
2007
|
- payload
|
|
1939
2008
|
title: ContactsContextCreate
|
|
1940
2009
|
type: object
|
|
2010
|
+
Content:
|
|
2011
|
+
properties:
|
|
2012
|
+
email_blocks:
|
|
2013
|
+
anyOf:
|
|
2014
|
+
- patternProperties:
|
|
2015
|
+
^[a-z0-9_]+$:
|
|
2016
|
+
patternProperties:
|
|
2017
|
+
^[a-z0-9_]+$:
|
|
2018
|
+
patternProperties:
|
|
2019
|
+
^[a-z]{2}(-[a-z]{2})?$:
|
|
2020
|
+
maxLength: 2000
|
|
2021
|
+
type: string
|
|
2022
|
+
type: object
|
|
2023
|
+
type: object
|
|
2024
|
+
type: object
|
|
2025
|
+
- type: 'null'
|
|
2026
|
+
title: Email Blocks
|
|
2027
|
+
footer:
|
|
2028
|
+
anyOf:
|
|
2029
|
+
- $ref: '#/components/schemas/Footer'
|
|
2030
|
+
- type: 'null'
|
|
2031
|
+
legal:
|
|
2032
|
+
anyOf:
|
|
2033
|
+
- $ref: '#/components/schemas/Legal'
|
|
2034
|
+
- type: 'null'
|
|
2035
|
+
signature:
|
|
2036
|
+
anyOf:
|
|
2037
|
+
- type: string
|
|
2038
|
+
- type: 'null'
|
|
2039
|
+
title: Signature
|
|
2040
|
+
support:
|
|
2041
|
+
anyOf:
|
|
2042
|
+
- $ref: '#/components/schemas/Support'
|
|
2043
|
+
- type: 'null'
|
|
2044
|
+
title: Content
|
|
2045
|
+
type: object
|
|
1941
2046
|
ContextListResponse:
|
|
1942
2047
|
properties:
|
|
1943
2048
|
pagination:
|
|
@@ -5451,6 +5556,7 @@ components:
|
|
|
5451
5556
|
- updated_on
|
|
5452
5557
|
- expires_on
|
|
5453
5558
|
- registered_on
|
|
5559
|
+
- transferred_on
|
|
5454
5560
|
title: DomainSortField
|
|
5455
5561
|
type: string
|
|
5456
5562
|
DomainStatus:
|
|
@@ -7419,6 +7525,44 @@ components:
|
|
|
7419
7525
|
- system
|
|
7420
7526
|
title: ExecutingEntity
|
|
7421
7527
|
type: string
|
|
7528
|
+
Footer:
|
|
7529
|
+
properties:
|
|
7530
|
+
contact_email:
|
|
7531
|
+
anyOf:
|
|
7532
|
+
- pattern: ^[^@\s]+@[^@\s]+\.[^@\s]+$
|
|
7533
|
+
type: string
|
|
7534
|
+
- type: 'null'
|
|
7535
|
+
title: Contact Email
|
|
7536
|
+
disclaimer:
|
|
7537
|
+
anyOf:
|
|
7538
|
+
- type: string
|
|
7539
|
+
- type: 'null'
|
|
7540
|
+
title: Disclaimer
|
|
7541
|
+
legal_entity:
|
|
7542
|
+
anyOf:
|
|
7543
|
+
- maxLength: 255
|
|
7544
|
+
minLength: 1
|
|
7545
|
+
type: string
|
|
7546
|
+
- type: 'null'
|
|
7547
|
+
title: Legal Entity
|
|
7548
|
+
lines:
|
|
7549
|
+
anyOf:
|
|
7550
|
+
- items:
|
|
7551
|
+
maxLength: 255
|
|
7552
|
+
minLength: 1
|
|
7553
|
+
type: string
|
|
7554
|
+
type: array
|
|
7555
|
+
- type: 'null'
|
|
7556
|
+
title: Lines
|
|
7557
|
+
vat_id:
|
|
7558
|
+
anyOf:
|
|
7559
|
+
- maxLength: 255
|
|
7560
|
+
minLength: 1
|
|
7561
|
+
type: string
|
|
7562
|
+
- type: 'null'
|
|
7563
|
+
title: Vat Id
|
|
7564
|
+
title: Footer
|
|
7565
|
+
type: object
|
|
7422
7566
|
GeneralAvailabilityBase:
|
|
7423
7567
|
properties:
|
|
7424
7568
|
start_date:
|
|
@@ -8577,6 +8721,20 @@ components:
|
|
|
8577
8721
|
- general_availability
|
|
8578
8722
|
title: LaunchPhasesBase
|
|
8579
8723
|
type: object
|
|
8724
|
+
Legal:
|
|
8725
|
+
properties:
|
|
8726
|
+
privacy_url:
|
|
8727
|
+
anyOf:
|
|
8728
|
+
- type: string
|
|
8729
|
+
- type: 'null'
|
|
8730
|
+
title: Privacy Url
|
|
8731
|
+
terms_url:
|
|
8732
|
+
anyOf:
|
|
8733
|
+
- type: string
|
|
8734
|
+
- type: 'null'
|
|
8735
|
+
title: Terms Url
|
|
8736
|
+
title: Legal
|
|
8737
|
+
type: object
|
|
8580
8738
|
LegalRequirementBase:
|
|
8581
8739
|
properties:
|
|
8582
8740
|
key:
|
|
@@ -8701,6 +8859,30 @@ components:
|
|
|
8701
8859
|
- business_entity
|
|
8702
8860
|
title: LocalPresenceRequirementType
|
|
8703
8861
|
type: string
|
|
8862
|
+
Logo:
|
|
8863
|
+
properties:
|
|
8864
|
+
dark:
|
|
8865
|
+
anyOf:
|
|
8866
|
+
- type: string
|
|
8867
|
+
- type: 'null'
|
|
8868
|
+
title: Dark
|
|
8869
|
+
favicon:
|
|
8870
|
+
anyOf:
|
|
8871
|
+
- type: string
|
|
8872
|
+
- type: 'null'
|
|
8873
|
+
title: Favicon
|
|
8874
|
+
icon:
|
|
8875
|
+
anyOf:
|
|
8876
|
+
- type: string
|
|
8877
|
+
- type: 'null'
|
|
8878
|
+
title: Icon
|
|
8879
|
+
light:
|
|
8880
|
+
anyOf:
|
|
8881
|
+
- type: string
|
|
8882
|
+
- type: 'null'
|
|
8883
|
+
title: Light
|
|
8884
|
+
title: Logo
|
|
8885
|
+
type: object
|
|
8704
8886
|
MemoryFact:
|
|
8705
8887
|
properties:
|
|
8706
8888
|
created_at:
|
|
@@ -10333,6 +10515,146 @@ components:
|
|
|
10333
10515
|
- pagination
|
|
10334
10516
|
title: Pagination[UserPublicWithRole]
|
|
10335
10517
|
type: object
|
|
10518
|
+
Palette:
|
|
10519
|
+
properties:
|
|
10520
|
+
accent:
|
|
10521
|
+
anyOf:
|
|
10522
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10523
|
+
type: string
|
|
10524
|
+
- type: 'null'
|
|
10525
|
+
title: Accent
|
|
10526
|
+
accent_foreground:
|
|
10527
|
+
anyOf:
|
|
10528
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10529
|
+
type: string
|
|
10530
|
+
- type: 'null'
|
|
10531
|
+
title: Accent Foreground
|
|
10532
|
+
background:
|
|
10533
|
+
anyOf:
|
|
10534
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10535
|
+
type: string
|
|
10536
|
+
- type: 'null'
|
|
10537
|
+
title: Background
|
|
10538
|
+
border:
|
|
10539
|
+
anyOf:
|
|
10540
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10541
|
+
type: string
|
|
10542
|
+
- type: 'null'
|
|
10543
|
+
title: Border
|
|
10544
|
+
card:
|
|
10545
|
+
anyOf:
|
|
10546
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10547
|
+
type: string
|
|
10548
|
+
- type: 'null'
|
|
10549
|
+
title: Card
|
|
10550
|
+
card_foreground:
|
|
10551
|
+
anyOf:
|
|
10552
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10553
|
+
type: string
|
|
10554
|
+
- type: 'null'
|
|
10555
|
+
title: Card Foreground
|
|
10556
|
+
chart_colors:
|
|
10557
|
+
anyOf:
|
|
10558
|
+
- items:
|
|
10559
|
+
pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10560
|
+
type: string
|
|
10561
|
+
type: array
|
|
10562
|
+
- type: 'null'
|
|
10563
|
+
title: Chart Colors
|
|
10564
|
+
danger:
|
|
10565
|
+
anyOf:
|
|
10566
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10567
|
+
type: string
|
|
10568
|
+
- type: 'null'
|
|
10569
|
+
title: Danger
|
|
10570
|
+
foreground:
|
|
10571
|
+
anyOf:
|
|
10572
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10573
|
+
type: string
|
|
10574
|
+
- type: 'null'
|
|
10575
|
+
title: Foreground
|
|
10576
|
+
info:
|
|
10577
|
+
anyOf:
|
|
10578
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10579
|
+
type: string
|
|
10580
|
+
- type: 'null'
|
|
10581
|
+
title: Info
|
|
10582
|
+
input:
|
|
10583
|
+
anyOf:
|
|
10584
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10585
|
+
type: string
|
|
10586
|
+
- type: 'null'
|
|
10587
|
+
title: Input
|
|
10588
|
+
muted:
|
|
10589
|
+
anyOf:
|
|
10590
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10591
|
+
type: string
|
|
10592
|
+
- type: 'null'
|
|
10593
|
+
title: Muted
|
|
10594
|
+
muted_foreground:
|
|
10595
|
+
anyOf:
|
|
10596
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10597
|
+
type: string
|
|
10598
|
+
- type: 'null'
|
|
10599
|
+
title: Muted Foreground
|
|
10600
|
+
primary:
|
|
10601
|
+
anyOf:
|
|
10602
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10603
|
+
type: string
|
|
10604
|
+
- type: 'null'
|
|
10605
|
+
title: Primary
|
|
10606
|
+
primary_foreground:
|
|
10607
|
+
anyOf:
|
|
10608
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10609
|
+
type: string
|
|
10610
|
+
- type: 'null'
|
|
10611
|
+
title: Primary Foreground
|
|
10612
|
+
secondary:
|
|
10613
|
+
anyOf:
|
|
10614
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10615
|
+
type: string
|
|
10616
|
+
- type: 'null'
|
|
10617
|
+
title: Secondary
|
|
10618
|
+
secondary_foreground:
|
|
10619
|
+
anyOf:
|
|
10620
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10621
|
+
type: string
|
|
10622
|
+
- type: 'null'
|
|
10623
|
+
title: Secondary Foreground
|
|
10624
|
+
sidebar:
|
|
10625
|
+
anyOf:
|
|
10626
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10627
|
+
type: string
|
|
10628
|
+
- type: 'null'
|
|
10629
|
+
title: Sidebar
|
|
10630
|
+
sidebar_foreground:
|
|
10631
|
+
anyOf:
|
|
10632
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10633
|
+
type: string
|
|
10634
|
+
- type: 'null'
|
|
10635
|
+
title: Sidebar Foreground
|
|
10636
|
+
success:
|
|
10637
|
+
anyOf:
|
|
10638
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10639
|
+
type: string
|
|
10640
|
+
- type: 'null'
|
|
10641
|
+
title: Success
|
|
10642
|
+
tag_colors:
|
|
10643
|
+
anyOf:
|
|
10644
|
+
- items:
|
|
10645
|
+
pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10646
|
+
type: string
|
|
10647
|
+
type: array
|
|
10648
|
+
- type: 'null'
|
|
10649
|
+
title: Tag Colors
|
|
10650
|
+
warning:
|
|
10651
|
+
anyOf:
|
|
10652
|
+
- pattern: ^#([0-9a-fA-F]{3}|[0-9a-fA-F]{6})$
|
|
10653
|
+
type: string
|
|
10654
|
+
- type: 'null'
|
|
10655
|
+
title: Warning
|
|
10656
|
+
title: Palette
|
|
10657
|
+
type: object
|
|
10336
10658
|
ParkingActionPayloadData:
|
|
10337
10659
|
properties:
|
|
10338
10660
|
parking_reference:
|
|
@@ -11059,6 +11381,40 @@ components:
|
|
|
11059
11381
|
- manual
|
|
11060
11382
|
title: PremiumSourceType
|
|
11061
11383
|
type: string
|
|
11384
|
+
PreviewMailReq:
|
|
11385
|
+
properties:
|
|
11386
|
+
branding_document:
|
|
11387
|
+
anyOf:
|
|
11388
|
+
- $ref: '#/components/schemas/BrandingDocument'
|
|
11389
|
+
- type: 'null'
|
|
11390
|
+
language_code:
|
|
11391
|
+
title: Language Code
|
|
11392
|
+
type: string
|
|
11393
|
+
template_name:
|
|
11394
|
+
title: Template Name
|
|
11395
|
+
type: string
|
|
11396
|
+
required:
|
|
11397
|
+
- template_name
|
|
11398
|
+
- language_code
|
|
11399
|
+
title: PreviewMailReq
|
|
11400
|
+
type: object
|
|
11401
|
+
PreviewMailRes:
|
|
11402
|
+
properties:
|
|
11403
|
+
html:
|
|
11404
|
+
title: Html
|
|
11405
|
+
type: string
|
|
11406
|
+
subject:
|
|
11407
|
+
title: Subject
|
|
11408
|
+
type: string
|
|
11409
|
+
text:
|
|
11410
|
+
title: Text
|
|
11411
|
+
type: string
|
|
11412
|
+
required:
|
|
11413
|
+
- subject
|
|
11414
|
+
- html
|
|
11415
|
+
- text
|
|
11416
|
+
title: PreviewMailRes
|
|
11417
|
+
type: object
|
|
11062
11418
|
PriceInfo:
|
|
11063
11419
|
properties:
|
|
11064
11420
|
currency:
|
|
@@ -11969,6 +12325,21 @@ components:
|
|
|
11969
12325
|
- '12.50'
|
|
11970
12326
|
pattern: ^\d{1,8}\.\d{2}$
|
|
11971
12327
|
type: string
|
|
12328
|
+
Support:
|
|
12329
|
+
properties:
|
|
12330
|
+
email:
|
|
12331
|
+
anyOf:
|
|
12332
|
+
- pattern: ^[^@\s]+@[^@\s]+\.[^@\s]+$
|
|
12333
|
+
type: string
|
|
12334
|
+
- type: 'null'
|
|
12335
|
+
title: Email
|
|
12336
|
+
url:
|
|
12337
|
+
anyOf:
|
|
12338
|
+
- type: string
|
|
12339
|
+
- type: 'null'
|
|
12340
|
+
title: Url
|
|
12341
|
+
title: Support
|
|
12342
|
+
type: object
|
|
11972
12343
|
SyncOperationType:
|
|
11973
12344
|
enum:
|
|
11974
12345
|
- registration
|
|
@@ -12149,6 +12520,35 @@ components:
|
|
|
12149
12520
|
title: Label
|
|
12150
12521
|
title: TagUpdate
|
|
12151
12522
|
type: object
|
|
12523
|
+
Theme:
|
|
12524
|
+
properties:
|
|
12525
|
+
dark:
|
|
12526
|
+
anyOf:
|
|
12527
|
+
- $ref: '#/components/schemas/Palette'
|
|
12528
|
+
- type: 'null'
|
|
12529
|
+
font_family:
|
|
12530
|
+
anyOf:
|
|
12531
|
+
- pattern: ^[0-9a-zA-Z, -]{1,128}$
|
|
12532
|
+
type: string
|
|
12533
|
+
- type: 'null'
|
|
12534
|
+
title: Font Family
|
|
12535
|
+
font_url:
|
|
12536
|
+
anyOf:
|
|
12537
|
+
- type: string
|
|
12538
|
+
- type: 'null'
|
|
12539
|
+
title: Font Url
|
|
12540
|
+
light:
|
|
12541
|
+
anyOf:
|
|
12542
|
+
- $ref: '#/components/schemas/Palette'
|
|
12543
|
+
- type: 'null'
|
|
12544
|
+
radius:
|
|
12545
|
+
anyOf:
|
|
12546
|
+
- pattern: ^[0-9a-zA-Z.% ]{1,32}$
|
|
12547
|
+
type: string
|
|
12548
|
+
- type: 'null'
|
|
12549
|
+
title: Radius
|
|
12550
|
+
title: Theme
|
|
12551
|
+
type: object
|
|
12152
12552
|
TimeRange:
|
|
12153
12553
|
enum:
|
|
12154
12554
|
- 1h
|
|
@@ -14255,7 +14655,7 @@ info:
|
|
|
14255
14655
|
\n\n"
|
|
14256
14656
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14257
14657
|
title: OpusDNS API
|
|
14258
|
-
version: 2026-07-
|
|
14658
|
+
version: 2026-07-22-134959
|
|
14259
14659
|
x-logo:
|
|
14260
14660
|
altText: OpusDNS API Reference
|
|
14261
14661
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -22094,6 +22494,24 @@ paths:
|
|
|
22094
22494
|
type: string
|
|
22095
22495
|
- type: 'null'
|
|
22096
22496
|
title: Registered Before
|
|
22497
|
+
- in: query
|
|
22498
|
+
name: transferred_after
|
|
22499
|
+
required: false
|
|
22500
|
+
schema:
|
|
22501
|
+
anyOf:
|
|
22502
|
+
- format: date-time
|
|
22503
|
+
type: string
|
|
22504
|
+
- type: 'null'
|
|
22505
|
+
title: Transferred After
|
|
22506
|
+
- in: query
|
|
22507
|
+
name: transferred_before
|
|
22508
|
+
required: false
|
|
22509
|
+
schema:
|
|
22510
|
+
anyOf:
|
|
22511
|
+
- format: date-time
|
|
22512
|
+
type: string
|
|
22513
|
+
- type: 'null'
|
|
22514
|
+
title: Transferred Before
|
|
22097
22515
|
- description: Filter domains by registry status. Can be specified multiple
|
|
22098
22516
|
times (union of all provided values).
|
|
22099
22517
|
in: query
|
|
@@ -30789,6 +31207,67 @@ paths:
|
|
|
30789
31207
|
- whitelabel
|
|
30790
31208
|
x-required-permissions:
|
|
30791
31209
|
- whitelabel_branding:manage
|
|
31210
|
+
/v1/whitelabel-branding/email/preview:
|
|
31211
|
+
post:
|
|
31212
|
+
operationId: preview_whitelabel_email_v1_whitelabel_branding_email_preview_post
|
|
31213
|
+
parameters:
|
|
31214
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
31215
|
+
requestBody:
|
|
31216
|
+
content:
|
|
31217
|
+
application/json:
|
|
31218
|
+
schema:
|
|
31219
|
+
$ref: '#/components/schemas/PreviewMailReq'
|
|
31220
|
+
required: true
|
|
31221
|
+
responses:
|
|
31222
|
+
'200':
|
|
31223
|
+
content:
|
|
31224
|
+
application/json:
|
|
31225
|
+
schema:
|
|
31226
|
+
$ref: '#/components/schemas/PreviewMailRes'
|
|
31227
|
+
description: Successful Response
|
|
31228
|
+
'422':
|
|
31229
|
+
content:
|
|
31230
|
+
application/problem+json:
|
|
31231
|
+
schema:
|
|
31232
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
31233
|
+
description: Validation Error
|
|
31234
|
+
security:
|
|
31235
|
+
- OAuth2PasswordBearer: []
|
|
31236
|
+
- APIKeyHeader: []
|
|
31237
|
+
summary: Preview a transactional email template with a draft branding document
|
|
31238
|
+
tags:
|
|
31239
|
+
- whitelabel
|
|
31240
|
+
x-required-permissions:
|
|
31241
|
+
- whitelabel_branding:manage
|
|
31242
|
+
/v1/whitelabel-branding/email/templates:
|
|
31243
|
+
get:
|
|
31244
|
+
operationId: list_whitelabel_email_templates_v1_whitelabel_branding_email_templates_get
|
|
31245
|
+
parameters:
|
|
31246
|
+
- $ref: '#/components/parameters/DatetimeFormatHeader'
|
|
31247
|
+
responses:
|
|
31248
|
+
'200':
|
|
31249
|
+
content:
|
|
31250
|
+
application/json:
|
|
31251
|
+
schema:
|
|
31252
|
+
additionalProperties: true
|
|
31253
|
+
title: Response List Whitelabel Email Templates V1 Whitelabel Branding
|
|
31254
|
+
Email Templates Get
|
|
31255
|
+
type: object
|
|
31256
|
+
description: Successful Response
|
|
31257
|
+
'422':
|
|
31258
|
+
content:
|
|
31259
|
+
application/problem+json:
|
|
31260
|
+
schema:
|
|
31261
|
+
$ref: '#/components/schemas/HTTPValidationError'
|
|
31262
|
+
description: Validation Error
|
|
31263
|
+
security:
|
|
31264
|
+
- OAuth2PasswordBearer: []
|
|
31265
|
+
- APIKeyHeader: []
|
|
31266
|
+
summary: List the editable transactional email templates and their content blocks
|
|
31267
|
+
tags:
|
|
31268
|
+
- whitelabel
|
|
31269
|
+
x-required-permissions:
|
|
31270
|
+
- whitelabel_branding:read
|
|
30792
31271
|
/v1/whitelabel-branding/recheck:
|
|
30793
31272
|
post:
|
|
30794
31273
|
operationId: recheck_whitelabel_branding_v1_whitelabel_branding_recheck_post
|