@opusdns/api 1.99.0 → 1.101.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/keys.ts +8 -4
- package/src/openapi.yaml +78 -46
- package/src/schema.d.ts +52 -42
package/package.json
CHANGED
package/src/helpers/keys.ts
CHANGED
|
@@ -5788,21 +5788,25 @@ export const KEYS_VISITS_BY_KEY_BUCKET = [
|
|
|
5788
5788
|
KEY_VISITS_BY_KEY_BUCKET_UNIQUE,
|
|
5789
5789
|
] as const satisfies (keyof VisitsByKeyBucket)[];
|
|
5790
5790
|
|
|
5791
|
-
export const
|
|
5791
|
+
export const KEY_WHITELABEL_BRANDING_CREATE_AUTH_SUBDOMAIN = 'auth_subdomain' satisfies keyof WhitelabelBrandingCreate;
|
|
5792
|
+
export const KEY_WHITELABEL_BRANDING_CREATE_DASHBOARD_SUBDOMAIN = 'dashboard_subdomain' satisfies keyof WhitelabelBrandingCreate;
|
|
5792
5793
|
export const KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME = 'hostname' satisfies keyof WhitelabelBrandingCreate;
|
|
5793
5794
|
export const KEY_WHITELABEL_BRANDING_CREATE_PERIOD = 'period' satisfies keyof WhitelabelBrandingCreate;
|
|
5794
5795
|
|
|
5795
5796
|
export const KEYS_WHITELABEL_BRANDING_CREATE = [
|
|
5796
|
-
|
|
5797
|
+
KEY_WHITELABEL_BRANDING_CREATE_AUTH_SUBDOMAIN,
|
|
5798
|
+
KEY_WHITELABEL_BRANDING_CREATE_DASHBOARD_SUBDOMAIN,
|
|
5797
5799
|
KEY_WHITELABEL_BRANDING_CREATE_HOSTNAME,
|
|
5798
5800
|
KEY_WHITELABEL_BRANDING_CREATE_PERIOD,
|
|
5799
5801
|
] as const satisfies (keyof WhitelabelBrandingCreate)[];
|
|
5800
5802
|
|
|
5801
|
-
export const
|
|
5803
|
+
export const KEY_WHITELABEL_BRANDING_RECHECK_AUTH_SUBDOMAIN = 'auth_subdomain' satisfies keyof WhitelabelBrandingRecheck;
|
|
5804
|
+
export const KEY_WHITELABEL_BRANDING_RECHECK_DASHBOARD_SUBDOMAIN = 'dashboard_subdomain' satisfies keyof WhitelabelBrandingRecheck;
|
|
5802
5805
|
export const KEY_WHITELABEL_BRANDING_RECHECK_HOSTNAME = 'hostname' satisfies keyof WhitelabelBrandingRecheck;
|
|
5803
5806
|
|
|
5804
5807
|
export const KEYS_WHITELABEL_BRANDING_RECHECK = [
|
|
5805
|
-
|
|
5808
|
+
KEY_WHITELABEL_BRANDING_RECHECK_AUTH_SUBDOMAIN,
|
|
5809
|
+
KEY_WHITELABEL_BRANDING_RECHECK_DASHBOARD_SUBDOMAIN,
|
|
5806
5810
|
KEY_WHITELABEL_BRANDING_RECHECK_HOSTNAME,
|
|
5807
5811
|
] as const satisfies (keyof WhitelabelBrandingRecheck)[];
|
|
5808
5812
|
|
package/src/openapi.yaml
CHANGED
|
@@ -14470,23 +14470,39 @@ components:
|
|
|
14470
14470
|
title: VisitsByKeyBucket
|
|
14471
14471
|
type: object
|
|
14472
14472
|
WhitelabelBrandingCreate:
|
|
14473
|
-
description: 'Public create request body. The
|
|
14474
|
-
|
|
14473
|
+
description: 'Public create request body. The customer supplies their domain
|
|
14474
|
+
plus the subdomains the
|
|
14475
|
+
|
|
14476
|
+
two whitelabel hosts live on; the full hostnames are composed here. `dashboard_subdomain`
|
|
14477
|
+
|
|
14478
|
+
is optional - omitted, the dashboard is served on `hostname` itself (the zone
|
|
14479
|
+
apex when
|
|
14475
14480
|
|
|
14476
|
-
`
|
|
14481
|
+
`hostname` is the bare domain). The owning org comes from auth context, and
|
|
14477
14482
|
|
|
14478
|
-
|
|
14483
|
+
`verification_domain` is derived server-side (the registrable domain of the
|
|
14484
|
+
composed
|
|
14479
14485
|
|
|
14480
|
-
|
|
14486
|
+
dashboard host), so neither is accepted here.'
|
|
14481
14487
|
properties:
|
|
14482
|
-
|
|
14483
|
-
description:
|
|
14488
|
+
auth_subdomain:
|
|
14489
|
+
description: Subdomain the Keycloak login is served on (e.g. auth -> auth.customer.com)
|
|
14484
14490
|
maxLength: 255
|
|
14485
14491
|
minLength: 1
|
|
14486
|
-
title: Auth
|
|
14492
|
+
title: Auth Subdomain
|
|
14487
14493
|
type: string
|
|
14494
|
+
dashboard_subdomain:
|
|
14495
|
+
anyOf:
|
|
14496
|
+
- maxLength: 255
|
|
14497
|
+
minLength: 1
|
|
14498
|
+
type: string
|
|
14499
|
+
- type: 'null'
|
|
14500
|
+
description: Subdomain the dashboard is served on (e.g. dash -> dash.customer.com);
|
|
14501
|
+
omit for the apex
|
|
14502
|
+
title: Dashboard Subdomain
|
|
14488
14503
|
hostname:
|
|
14489
|
-
description:
|
|
14504
|
+
description: Domain the whitelabel runs under (e.g. customer.com); must
|
|
14505
|
+
be an OpusDNS-hosted zone
|
|
14490
14506
|
maxLength: 255
|
|
14491
14507
|
minLength: 1
|
|
14492
14508
|
title: Hostname
|
|
@@ -14497,7 +14513,7 @@ components:
|
|
|
14497
14513
|
year'
|
|
14498
14514
|
required:
|
|
14499
14515
|
- hostname
|
|
14500
|
-
-
|
|
14516
|
+
- auth_subdomain
|
|
14501
14517
|
- period
|
|
14502
14518
|
title: WhitelabelBrandingCreate
|
|
14503
14519
|
type: object
|
|
@@ -14505,18 +14521,28 @@ components:
|
|
|
14505
14521
|
description: 'Public recheck body. Empty = re-run onboarding against the stored
|
|
14506
14522
|
hosts (retry after
|
|
14507
14523
|
|
|
14508
|
-
fixing DNS).
|
|
14509
|
-
|
|
14524
|
+
fixing DNS). hostname + auth_subdomain present = re-point a wrong domain before
|
|
14525
|
+
re-running
|
|
14510
14526
|
|
|
14511
|
-
only; server rejects once a Keycloak client exists).
|
|
14527
|
+
(pre-provisioning only; server rejects once a Keycloak client exists). Same
|
|
14528
|
+
composition
|
|
14529
|
+
|
|
14530
|
+
rules as WhitelabelBrandingCreate.'
|
|
14512
14531
|
properties:
|
|
14513
|
-
|
|
14532
|
+
auth_subdomain:
|
|
14514
14533
|
anyOf:
|
|
14515
14534
|
- maxLength: 255
|
|
14516
14535
|
minLength: 1
|
|
14517
14536
|
type: string
|
|
14518
14537
|
- type: 'null'
|
|
14519
|
-
title: Auth
|
|
14538
|
+
title: Auth Subdomain
|
|
14539
|
+
dashboard_subdomain:
|
|
14540
|
+
anyOf:
|
|
14541
|
+
- maxLength: 255
|
|
14542
|
+
minLength: 1
|
|
14543
|
+
type: string
|
|
14544
|
+
- type: 'null'
|
|
14545
|
+
title: Dashboard Subdomain
|
|
14520
14546
|
hostname:
|
|
14521
14547
|
anyOf:
|
|
14522
14548
|
- maxLength: 255
|
|
@@ -14990,7 +15016,7 @@ info:
|
|
|
14990
15016
|
\n\n"
|
|
14991
15017
|
summary: OpusDNS - your gateway to a seamless domain management experience.
|
|
14992
15018
|
title: OpusDNS API
|
|
14993
|
-
version: 2026-08-
|
|
15019
|
+
version: 2026-08-07-130930
|
|
14994
15020
|
x-logo:
|
|
14995
15021
|
altText: OpusDNS API Reference
|
|
14996
15022
|
url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
|
|
@@ -15054,7 +15080,7 @@ paths:
|
|
|
15054
15080
|
code: ERROR_AI_CONCIERGE
|
|
15055
15081
|
detail: AI Concierge memory resource not found
|
|
15056
15082
|
status: 404
|
|
15057
|
-
title: AI Concierge
|
|
15083
|
+
title: AI Concierge Memory Resource Not Found
|
|
15058
15084
|
type: ai-concierge-memory-not-found
|
|
15059
15085
|
schema:
|
|
15060
15086
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15072,7 +15098,7 @@ paths:
|
|
|
15072
15098
|
code: ERROR_AI_CONCIERGE
|
|
15073
15099
|
detail: AI Concierge memory service error
|
|
15074
15100
|
status: 502
|
|
15075
|
-
title: AI Concierge
|
|
15101
|
+
title: AI Concierge Memory Error
|
|
15076
15102
|
type: ai-concierge-memory
|
|
15077
15103
|
schema:
|
|
15078
15104
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15154,7 +15180,7 @@ paths:
|
|
|
15154
15180
|
code: ERROR_AI_CONCIERGE
|
|
15155
15181
|
detail: AI Concierge memory resource not found
|
|
15156
15182
|
status: 404
|
|
15157
|
-
title: AI Concierge
|
|
15183
|
+
title: AI Concierge Memory Resource Not Found
|
|
15158
15184
|
type: ai-concierge-memory-not-found
|
|
15159
15185
|
schema:
|
|
15160
15186
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15172,7 +15198,7 @@ paths:
|
|
|
15172
15198
|
code: ERROR_AI_CONCIERGE
|
|
15173
15199
|
detail: AI Concierge memory service error
|
|
15174
15200
|
status: 502
|
|
15175
|
-
title: AI Concierge
|
|
15201
|
+
title: AI Concierge Memory Error
|
|
15176
15202
|
type: ai-concierge-memory
|
|
15177
15203
|
schema:
|
|
15178
15204
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15221,7 +15247,7 @@ paths:
|
|
|
15221
15247
|
code: ERROR_AI_CONCIERGE
|
|
15222
15248
|
detail: AI Concierge memory resource not found
|
|
15223
15249
|
status: 404
|
|
15224
|
-
title: AI Concierge
|
|
15250
|
+
title: AI Concierge Memory Resource Not Found
|
|
15225
15251
|
type: ai-concierge-memory-not-found
|
|
15226
15252
|
schema:
|
|
15227
15253
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15239,7 +15265,7 @@ paths:
|
|
|
15239
15265
|
code: ERROR_AI_CONCIERGE
|
|
15240
15266
|
detail: AI Concierge memory service error
|
|
15241
15267
|
status: 502
|
|
15242
|
-
title: AI Concierge
|
|
15268
|
+
title: AI Concierge Memory Error
|
|
15243
15269
|
type: ai-concierge-memory
|
|
15244
15270
|
schema:
|
|
15245
15271
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15292,7 +15318,7 @@ paths:
|
|
|
15292
15318
|
code: ERROR_AI_CONCIERGE
|
|
15293
15319
|
detail: AI Concierge memory resource not found
|
|
15294
15320
|
status: 404
|
|
15295
|
-
title: AI Concierge
|
|
15321
|
+
title: AI Concierge Memory Resource Not Found
|
|
15296
15322
|
type: ai-concierge-memory-not-found
|
|
15297
15323
|
schema:
|
|
15298
15324
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15310,7 +15336,7 @@ paths:
|
|
|
15310
15336
|
code: ERROR_AI_CONCIERGE
|
|
15311
15337
|
detail: AI Concierge memory service error
|
|
15312
15338
|
status: 502
|
|
15313
|
-
title: AI Concierge
|
|
15339
|
+
title: AI Concierge Memory Error
|
|
15314
15340
|
type: ai-concierge-memory
|
|
15315
15341
|
schema:
|
|
15316
15342
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15364,7 +15390,7 @@ paths:
|
|
|
15364
15390
|
code: ERROR_AI_CONCIERGE
|
|
15365
15391
|
detail: AI Concierge memory resource not found
|
|
15366
15392
|
status: 404
|
|
15367
|
-
title: AI Concierge
|
|
15393
|
+
title: AI Concierge Memory Resource Not Found
|
|
15368
15394
|
type: ai-concierge-memory-not-found
|
|
15369
15395
|
schema:
|
|
15370
15396
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15382,7 +15408,7 @@ paths:
|
|
|
15382
15408
|
code: ERROR_AI_CONCIERGE
|
|
15383
15409
|
detail: AI Concierge memory service error
|
|
15384
15410
|
status: 502
|
|
15385
|
-
title: AI Concierge
|
|
15411
|
+
title: AI Concierge Memory Error
|
|
15386
15412
|
type: ai-concierge-memory
|
|
15387
15413
|
schema:
|
|
15388
15414
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15452,7 +15478,7 @@ paths:
|
|
|
15452
15478
|
code: ERROR_AI_CONCIERGE
|
|
15453
15479
|
detail: AI Concierge memory resource not found
|
|
15454
15480
|
status: 404
|
|
15455
|
-
title: AI Concierge
|
|
15481
|
+
title: AI Concierge Memory Resource Not Found
|
|
15456
15482
|
type: ai-concierge-memory-not-found
|
|
15457
15483
|
schema:
|
|
15458
15484
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15470,7 +15496,7 @@ paths:
|
|
|
15470
15496
|
code: ERROR_AI_CONCIERGE
|
|
15471
15497
|
detail: AI Concierge memory service error
|
|
15472
15498
|
status: 502
|
|
15473
|
-
title: AI Concierge
|
|
15499
|
+
title: AI Concierge Memory Error
|
|
15474
15500
|
type: ai-concierge-memory
|
|
15475
15501
|
schema:
|
|
15476
15502
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15542,7 +15568,7 @@ paths:
|
|
|
15542
15568
|
code: ERROR_AI_CONCIERGE
|
|
15543
15569
|
detail: AI Concierge memory resource not found
|
|
15544
15570
|
status: 404
|
|
15545
|
-
title: AI Concierge
|
|
15571
|
+
title: AI Concierge Memory Resource Not Found
|
|
15546
15572
|
type: ai-concierge-memory-not-found
|
|
15547
15573
|
schema:
|
|
15548
15574
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15560,7 +15586,7 @@ paths:
|
|
|
15560
15586
|
code: ERROR_AI_CONCIERGE
|
|
15561
15587
|
detail: AI Concierge memory service error
|
|
15562
15588
|
status: 502
|
|
15563
|
-
title: AI Concierge
|
|
15589
|
+
title: AI Concierge Memory Error
|
|
15564
15590
|
type: ai-concierge-memory
|
|
15565
15591
|
schema:
|
|
15566
15592
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15653,7 +15679,7 @@ paths:
|
|
|
15653
15679
|
code: ERROR_AI_CONCIERGE
|
|
15654
15680
|
detail: AI Concierge memory resource not found
|
|
15655
15681
|
status: 404
|
|
15656
|
-
title: AI Concierge
|
|
15682
|
+
title: AI Concierge Memory Resource Not Found
|
|
15657
15683
|
type: ai-concierge-memory-not-found
|
|
15658
15684
|
schema:
|
|
15659
15685
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15671,7 +15697,7 @@ paths:
|
|
|
15671
15697
|
code: ERROR_AI_CONCIERGE
|
|
15672
15698
|
detail: AI Concierge memory service error
|
|
15673
15699
|
status: 502
|
|
15674
|
-
title: AI Concierge
|
|
15700
|
+
title: AI Concierge Memory Error
|
|
15675
15701
|
type: ai-concierge-memory
|
|
15676
15702
|
schema:
|
|
15677
15703
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15767,7 +15793,7 @@ paths:
|
|
|
15767
15793
|
code: ERROR_AI_CONCIERGE
|
|
15768
15794
|
detail: AI Concierge memory resource not found
|
|
15769
15795
|
status: 404
|
|
15770
|
-
title: AI Concierge
|
|
15796
|
+
title: AI Concierge Memory Resource Not Found
|
|
15771
15797
|
type: ai-concierge-memory-not-found
|
|
15772
15798
|
schema:
|
|
15773
15799
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15785,7 +15811,7 @@ paths:
|
|
|
15785
15811
|
code: ERROR_AI_CONCIERGE
|
|
15786
15812
|
detail: AI Concierge memory service error
|
|
15787
15813
|
status: 502
|
|
15788
|
-
title: AI Concierge
|
|
15814
|
+
title: AI Concierge Memory Error
|
|
15789
15815
|
type: ai-concierge-memory
|
|
15790
15816
|
schema:
|
|
15791
15817
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15845,7 +15871,7 @@ paths:
|
|
|
15845
15871
|
code: ERROR_AI_CONCIERGE
|
|
15846
15872
|
detail: AI Concierge memory resource not found
|
|
15847
15873
|
status: 404
|
|
15848
|
-
title: AI Concierge
|
|
15874
|
+
title: AI Concierge Memory Resource Not Found
|
|
15849
15875
|
type: ai-concierge-memory-not-found
|
|
15850
15876
|
schema:
|
|
15851
15877
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15863,7 +15889,7 @@ paths:
|
|
|
15863
15889
|
code: ERROR_AI_CONCIERGE
|
|
15864
15890
|
detail: AI Concierge memory service error
|
|
15865
15891
|
status: 502
|
|
15866
|
-
title: AI Concierge
|
|
15892
|
+
title: AI Concierge Memory Error
|
|
15867
15893
|
type: ai-concierge-memory
|
|
15868
15894
|
schema:
|
|
15869
15895
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15929,7 +15955,7 @@ paths:
|
|
|
15929
15955
|
code: ERROR_AI_CONCIERGE
|
|
15930
15956
|
detail: AI Concierge memory resource not found
|
|
15931
15957
|
status: 404
|
|
15932
|
-
title: AI Concierge
|
|
15958
|
+
title: AI Concierge Memory Resource Not Found
|
|
15933
15959
|
type: ai-concierge-memory-not-found
|
|
15934
15960
|
schema:
|
|
15935
15961
|
$ref: '#/components/schemas/Problem'
|
|
@@ -15947,7 +15973,7 @@ paths:
|
|
|
15947
15973
|
code: ERROR_AI_CONCIERGE
|
|
15948
15974
|
detail: AI Concierge memory service error
|
|
15949
15975
|
status: 502
|
|
15950
|
-
title: AI Concierge
|
|
15976
|
+
title: AI Concierge Memory Error
|
|
15951
15977
|
type: ai-concierge-memory
|
|
15952
15978
|
schema:
|
|
15953
15979
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16018,7 +16044,7 @@ paths:
|
|
|
16018
16044
|
code: ERROR_AI_CONCIERGE
|
|
16019
16045
|
detail: AI Concierge memory resource not found
|
|
16020
16046
|
status: 404
|
|
16021
|
-
title: AI Concierge
|
|
16047
|
+
title: AI Concierge Memory Resource Not Found
|
|
16022
16048
|
type: ai-concierge-memory-not-found
|
|
16023
16049
|
schema:
|
|
16024
16050
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16036,7 +16062,7 @@ paths:
|
|
|
16036
16062
|
code: ERROR_AI_CONCIERGE
|
|
16037
16063
|
detail: AI Concierge memory service error
|
|
16038
16064
|
status: 502
|
|
16039
|
-
title: AI Concierge
|
|
16065
|
+
title: AI Concierge Memory Error
|
|
16040
16066
|
type: ai-concierge-memory
|
|
16041
16067
|
schema:
|
|
16042
16068
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16085,7 +16111,7 @@ paths:
|
|
|
16085
16111
|
code: ERROR_AI_CONCIERGE
|
|
16086
16112
|
detail: AI Concierge memory resource not found
|
|
16087
16113
|
status: 404
|
|
16088
|
-
title: AI Concierge
|
|
16114
|
+
title: AI Concierge Memory Resource Not Found
|
|
16089
16115
|
type: ai-concierge-memory-not-found
|
|
16090
16116
|
schema:
|
|
16091
16117
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16103,7 +16129,7 @@ paths:
|
|
|
16103
16129
|
code: ERROR_AI_CONCIERGE
|
|
16104
16130
|
detail: AI Concierge memory service error
|
|
16105
16131
|
status: 502
|
|
16106
|
-
title: AI Concierge
|
|
16132
|
+
title: AI Concierge Memory Error
|
|
16107
16133
|
type: ai-concierge-memory
|
|
16108
16134
|
schema:
|
|
16109
16135
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16154,7 +16180,7 @@ paths:
|
|
|
16154
16180
|
code: ERROR_AI_CONCIERGE
|
|
16155
16181
|
detail: AI Concierge memory resource not found
|
|
16156
16182
|
status: 404
|
|
16157
|
-
title: AI Concierge
|
|
16183
|
+
title: AI Concierge Memory Resource Not Found
|
|
16158
16184
|
type: ai-concierge-memory-not-found
|
|
16159
16185
|
schema:
|
|
16160
16186
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16172,7 +16198,7 @@ paths:
|
|
|
16172
16198
|
code: ERROR_AI_CONCIERGE
|
|
16173
16199
|
detail: AI Concierge memory service error
|
|
16174
16200
|
status: 502
|
|
16175
|
-
title: AI Concierge
|
|
16201
|
+
title: AI Concierge Memory Error
|
|
16176
16202
|
type: ai-concierge-memory
|
|
16177
16203
|
schema:
|
|
16178
16204
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16232,7 +16258,7 @@ paths:
|
|
|
16232
16258
|
code: ERROR_AI_CONCIERGE
|
|
16233
16259
|
detail: AI Concierge memory resource not found
|
|
16234
16260
|
status: 404
|
|
16235
|
-
title: AI Concierge
|
|
16261
|
+
title: AI Concierge Memory Resource Not Found
|
|
16236
16262
|
type: ai-concierge-memory-not-found
|
|
16237
16263
|
schema:
|
|
16238
16264
|
$ref: '#/components/schemas/Problem'
|
|
@@ -16250,7 +16276,7 @@ paths:
|
|
|
16250
16276
|
code: ERROR_AI_CONCIERGE
|
|
16251
16277
|
detail: AI Concierge memory service error
|
|
16252
16278
|
status: 502
|
|
16253
|
-
title: AI Concierge
|
|
16279
|
+
title: AI Concierge Memory Error
|
|
16254
16280
|
type: ai-concierge-memory
|
|
16255
16281
|
schema:
|
|
16256
16282
|
$ref: '#/components/schemas/Problem'
|
|
@@ -32319,6 +32345,12 @@ tags:
|
|
|
32319
32345
|
x-displayName: Vanity Nameservers
|
|
32320
32346
|
- description: 'Endpoints for managing an organization''s whitelabel branding configuration.
|
|
32321
32347
|
|
|
32348
|
+
|
|
32349
|
+
The create body carries the customer''s domain plus subdomains: `{"hostname":
|
|
32350
|
+
"customer.com", "dashboard_subdomain": "dash", "auth_subdomain": "auth"}` composes
|
|
32351
|
+
`dash.customer.com` and `auth.customer.com`; omitting `dashboard_subdomain` serves
|
|
32352
|
+
the dashboard on the domain apex itself.
|
|
32353
|
+
|
|
32322
32354
|
'
|
|
32323
32355
|
name: whitelabel
|
|
32324
32356
|
x-displayName: Whitelabel Branding
|
package/src/schema.d.ts
CHANGED
|
@@ -12476,20 +12476,27 @@ export interface components {
|
|
|
12476
12476
|
};
|
|
12477
12477
|
/**
|
|
12478
12478
|
* WhitelabelBrandingCreate
|
|
12479
|
-
* @description Public create request body. The
|
|
12480
|
-
*
|
|
12481
|
-
*
|
|
12482
|
-
*
|
|
12479
|
+
* @description Public create request body. The customer supplies their domain plus the subdomains the
|
|
12480
|
+
* two whitelabel hosts live on; the full hostnames are composed here. `dashboard_subdomain`
|
|
12481
|
+
* is optional - omitted, the dashboard is served on `hostname` itself (the zone apex when
|
|
12482
|
+
* `hostname` is the bare domain). The owning org comes from auth context, and
|
|
12483
|
+
* `verification_domain` is derived server-side (the registrable domain of the composed
|
|
12484
|
+
* dashboard host), so neither is accepted here.
|
|
12483
12485
|
*/
|
|
12484
12486
|
WhitelabelBrandingCreate: {
|
|
12485
12487
|
/**
|
|
12486
|
-
* Auth
|
|
12487
|
-
* @description
|
|
12488
|
+
* Auth Subdomain
|
|
12489
|
+
* @description Subdomain the Keycloak login is served on (e.g. auth -> auth.customer.com)
|
|
12488
12490
|
*/
|
|
12489
|
-
|
|
12491
|
+
auth_subdomain: string;
|
|
12492
|
+
/**
|
|
12493
|
+
* Dashboard Subdomain
|
|
12494
|
+
* @description Subdomain the dashboard is served on (e.g. dash -> dash.customer.com); omit for the apex
|
|
12495
|
+
*/
|
|
12496
|
+
dashboard_subdomain?: string | null;
|
|
12490
12497
|
/**
|
|
12491
12498
|
* Hostname
|
|
12492
|
-
* @description
|
|
12499
|
+
* @description Domain the whitelabel runs under (e.g. customer.com); must be an OpusDNS-hosted zone
|
|
12493
12500
|
*/
|
|
12494
12501
|
hostname: string;
|
|
12495
12502
|
/** @description Billing period for the subscription; offered: 1 month or 1 year */
|
|
@@ -12498,12 +12505,15 @@ export interface components {
|
|
|
12498
12505
|
/**
|
|
12499
12506
|
* WhitelabelBrandingRecheck
|
|
12500
12507
|
* @description Public recheck body. Empty = re-run onboarding against the stored hosts (retry after
|
|
12501
|
-
* fixing DNS).
|
|
12502
|
-
* only; server rejects once a Keycloak client exists).
|
|
12508
|
+
* fixing DNS). hostname + auth_subdomain present = re-point a wrong domain before re-running
|
|
12509
|
+
* (pre-provisioning only; server rejects once a Keycloak client exists). Same composition
|
|
12510
|
+
* rules as WhitelabelBrandingCreate.
|
|
12503
12511
|
*/
|
|
12504
12512
|
WhitelabelBrandingRecheck: {
|
|
12505
|
-
/** Auth
|
|
12506
|
-
|
|
12513
|
+
/** Auth Subdomain */
|
|
12514
|
+
auth_subdomain?: string | null;
|
|
12515
|
+
/** Dashboard Subdomain */
|
|
12516
|
+
dashboard_subdomain?: string | null;
|
|
12507
12517
|
/** Hostname */
|
|
12508
12518
|
hostname?: string | null;
|
|
12509
12519
|
};
|
|
@@ -12841,7 +12851,7 @@ export interface operations {
|
|
|
12841
12851
|
* "code": "ERROR_AI_CONCIERGE",
|
|
12842
12852
|
* "detail": "AI Concierge memory resource not found",
|
|
12843
12853
|
* "status": 404,
|
|
12844
|
-
* "title": "AI Concierge
|
|
12854
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
12845
12855
|
* "type": "ai-concierge-memory-not-found"
|
|
12846
12856
|
* } */
|
|
12847
12857
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -12866,7 +12876,7 @@ export interface operations {
|
|
|
12866
12876
|
* "code": "ERROR_AI_CONCIERGE",
|
|
12867
12877
|
* "detail": "AI Concierge memory service error",
|
|
12868
12878
|
* "status": 502,
|
|
12869
|
-
* "title": "AI Concierge
|
|
12879
|
+
* "title": "AI Concierge Memory Error",
|
|
12870
12880
|
* "type": "ai-concierge-memory"
|
|
12871
12881
|
* } */
|
|
12872
12882
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -12931,7 +12941,7 @@ export interface operations {
|
|
|
12931
12941
|
* "code": "ERROR_AI_CONCIERGE",
|
|
12932
12942
|
* "detail": "AI Concierge memory resource not found",
|
|
12933
12943
|
* "status": 404,
|
|
12934
|
-
* "title": "AI Concierge
|
|
12944
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
12935
12945
|
* "type": "ai-concierge-memory-not-found"
|
|
12936
12946
|
* } */
|
|
12937
12947
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -12956,7 +12966,7 @@ export interface operations {
|
|
|
12956
12966
|
* "code": "ERROR_AI_CONCIERGE",
|
|
12957
12967
|
* "detail": "AI Concierge memory service error",
|
|
12958
12968
|
* "status": 502,
|
|
12959
|
-
* "title": "AI Concierge
|
|
12969
|
+
* "title": "AI Concierge Memory Error",
|
|
12960
12970
|
* "type": "ai-concierge-memory"
|
|
12961
12971
|
* } */
|
|
12962
12972
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13018,7 +13028,7 @@ export interface operations {
|
|
|
13018
13028
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13019
13029
|
* "detail": "AI Concierge memory resource not found",
|
|
13020
13030
|
* "status": 404,
|
|
13021
|
-
* "title": "AI Concierge
|
|
13031
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13022
13032
|
* "type": "ai-concierge-memory-not-found"
|
|
13023
13033
|
* } */
|
|
13024
13034
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13043,7 +13053,7 @@ export interface operations {
|
|
|
13043
13053
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13044
13054
|
* "detail": "AI Concierge memory service error",
|
|
13045
13055
|
* "status": 502,
|
|
13046
|
-
* "title": "AI Concierge
|
|
13056
|
+
* "title": "AI Concierge Memory Error",
|
|
13047
13057
|
* "type": "ai-concierge-memory"
|
|
13048
13058
|
* } */
|
|
13049
13059
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13103,7 +13113,7 @@ export interface operations {
|
|
|
13103
13113
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13104
13114
|
* "detail": "AI Concierge memory resource not found",
|
|
13105
13115
|
* "status": 404,
|
|
13106
|
-
* "title": "AI Concierge
|
|
13116
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13107
13117
|
* "type": "ai-concierge-memory-not-found"
|
|
13108
13118
|
* } */
|
|
13109
13119
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13128,7 +13138,7 @@ export interface operations {
|
|
|
13128
13138
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13129
13139
|
* "detail": "AI Concierge memory service error",
|
|
13130
13140
|
* "status": 502,
|
|
13131
|
-
* "title": "AI Concierge
|
|
13141
|
+
* "title": "AI Concierge Memory Error",
|
|
13132
13142
|
* "type": "ai-concierge-memory"
|
|
13133
13143
|
* } */
|
|
13134
13144
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13186,7 +13196,7 @@ export interface operations {
|
|
|
13186
13196
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13187
13197
|
* "detail": "AI Concierge memory resource not found",
|
|
13188
13198
|
* "status": 404,
|
|
13189
|
-
* "title": "AI Concierge
|
|
13199
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13190
13200
|
* "type": "ai-concierge-memory-not-found"
|
|
13191
13201
|
* } */
|
|
13192
13202
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13211,7 +13221,7 @@ export interface operations {
|
|
|
13211
13221
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13212
13222
|
* "detail": "AI Concierge memory service error",
|
|
13213
13223
|
* "status": 502,
|
|
13214
|
-
* "title": "AI Concierge
|
|
13224
|
+
* "title": "AI Concierge Memory Error",
|
|
13215
13225
|
* "type": "ai-concierge-memory"
|
|
13216
13226
|
* } */
|
|
13217
13227
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13276,7 +13286,7 @@ export interface operations {
|
|
|
13276
13286
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13277
13287
|
* "detail": "AI Concierge memory resource not found",
|
|
13278
13288
|
* "status": 404,
|
|
13279
|
-
* "title": "AI Concierge
|
|
13289
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13280
13290
|
* "type": "ai-concierge-memory-not-found"
|
|
13281
13291
|
* } */
|
|
13282
13292
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13301,7 +13311,7 @@ export interface operations {
|
|
|
13301
13311
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13302
13312
|
* "detail": "AI Concierge memory service error",
|
|
13303
13313
|
* "status": 502,
|
|
13304
|
-
* "title": "AI Concierge
|
|
13314
|
+
* "title": "AI Concierge Memory Error",
|
|
13305
13315
|
* "type": "ai-concierge-memory"
|
|
13306
13316
|
* } */
|
|
13307
13317
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13364,7 +13374,7 @@ export interface operations {
|
|
|
13364
13374
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13365
13375
|
* "detail": "AI Concierge memory resource not found",
|
|
13366
13376
|
* "status": 404,
|
|
13367
|
-
* "title": "AI Concierge
|
|
13377
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13368
13378
|
* "type": "ai-concierge-memory-not-found"
|
|
13369
13379
|
* } */
|
|
13370
13380
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13389,7 +13399,7 @@ export interface operations {
|
|
|
13389
13399
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13390
13400
|
* "detail": "AI Concierge memory service error",
|
|
13391
13401
|
* "status": 502,
|
|
13392
|
-
* "title": "AI Concierge
|
|
13402
|
+
* "title": "AI Concierge Memory Error",
|
|
13393
13403
|
* "type": "ai-concierge-memory"
|
|
13394
13404
|
* } */
|
|
13395
13405
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13453,7 +13463,7 @@ export interface operations {
|
|
|
13453
13463
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13454
13464
|
* "detail": "AI Concierge memory resource not found",
|
|
13455
13465
|
* "status": 404,
|
|
13456
|
-
* "title": "AI Concierge
|
|
13466
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13457
13467
|
* "type": "ai-concierge-memory-not-found"
|
|
13458
13468
|
* } */
|
|
13459
13469
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13478,7 +13488,7 @@ export interface operations {
|
|
|
13478
13488
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13479
13489
|
* "detail": "AI Concierge memory service error",
|
|
13480
13490
|
* "status": 502,
|
|
13481
|
-
* "title": "AI Concierge
|
|
13491
|
+
* "title": "AI Concierge Memory Error",
|
|
13482
13492
|
* "type": "ai-concierge-memory"
|
|
13483
13493
|
* } */
|
|
13484
13494
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13545,7 +13555,7 @@ export interface operations {
|
|
|
13545
13555
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13546
13556
|
* "detail": "AI Concierge memory resource not found",
|
|
13547
13557
|
* "status": 404,
|
|
13548
|
-
* "title": "AI Concierge
|
|
13558
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13549
13559
|
* "type": "ai-concierge-memory-not-found"
|
|
13550
13560
|
* } */
|
|
13551
13561
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13570,7 +13580,7 @@ export interface operations {
|
|
|
13570
13580
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13571
13581
|
* "detail": "AI Concierge memory service error",
|
|
13572
13582
|
* "status": 502,
|
|
13573
|
-
* "title": "AI Concierge
|
|
13583
|
+
* "title": "AI Concierge Memory Error",
|
|
13574
13584
|
* "type": "ai-concierge-memory"
|
|
13575
13585
|
* } */
|
|
13576
13586
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13634,7 +13644,7 @@ export interface operations {
|
|
|
13634
13644
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13635
13645
|
* "detail": "AI Concierge memory resource not found",
|
|
13636
13646
|
* "status": 404,
|
|
13637
|
-
* "title": "AI Concierge
|
|
13647
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13638
13648
|
* "type": "ai-concierge-memory-not-found"
|
|
13639
13649
|
* } */
|
|
13640
13650
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13659,7 +13669,7 @@ export interface operations {
|
|
|
13659
13669
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13660
13670
|
* "detail": "AI Concierge memory service error",
|
|
13661
13671
|
* "status": 502,
|
|
13662
|
-
* "title": "AI Concierge
|
|
13672
|
+
* "title": "AI Concierge Memory Error",
|
|
13663
13673
|
* "type": "ai-concierge-memory"
|
|
13664
13674
|
* } */
|
|
13665
13675
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13720,7 +13730,7 @@ export interface operations {
|
|
|
13720
13730
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13721
13731
|
* "detail": "AI Concierge memory resource not found",
|
|
13722
13732
|
* "status": 404,
|
|
13723
|
-
* "title": "AI Concierge
|
|
13733
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13724
13734
|
* "type": "ai-concierge-memory-not-found"
|
|
13725
13735
|
* } */
|
|
13726
13736
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13745,7 +13755,7 @@ export interface operations {
|
|
|
13745
13755
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13746
13756
|
* "detail": "AI Concierge memory service error",
|
|
13747
13757
|
* "status": 502,
|
|
13748
|
-
* "title": "AI Concierge
|
|
13758
|
+
* "title": "AI Concierge Memory Error",
|
|
13749
13759
|
* "type": "ai-concierge-memory"
|
|
13750
13760
|
* } */
|
|
13751
13761
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13807,7 +13817,7 @@ export interface operations {
|
|
|
13807
13817
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13808
13818
|
* "detail": "AI Concierge memory resource not found",
|
|
13809
13819
|
* "status": 404,
|
|
13810
|
-
* "title": "AI Concierge
|
|
13820
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13811
13821
|
* "type": "ai-concierge-memory-not-found"
|
|
13812
13822
|
* } */
|
|
13813
13823
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13832,7 +13842,7 @@ export interface operations {
|
|
|
13832
13842
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13833
13843
|
* "detail": "AI Concierge memory service error",
|
|
13834
13844
|
* "status": 502,
|
|
13835
|
-
* "title": "AI Concierge
|
|
13845
|
+
* "title": "AI Concierge Memory Error",
|
|
13836
13846
|
* "type": "ai-concierge-memory"
|
|
13837
13847
|
* } */
|
|
13838
13848
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13894,7 +13904,7 @@ export interface operations {
|
|
|
13894
13904
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13895
13905
|
* "detail": "AI Concierge memory resource not found",
|
|
13896
13906
|
* "status": 404,
|
|
13897
|
-
* "title": "AI Concierge
|
|
13907
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13898
13908
|
* "type": "ai-concierge-memory-not-found"
|
|
13899
13909
|
* } */
|
|
13900
13910
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13919,7 +13929,7 @@ export interface operations {
|
|
|
13919
13929
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13920
13930
|
* "detail": "AI Concierge memory service error",
|
|
13921
13931
|
* "status": 502,
|
|
13922
|
-
* "title": "AI Concierge
|
|
13932
|
+
* "title": "AI Concierge Memory Error",
|
|
13923
13933
|
* "type": "ai-concierge-memory"
|
|
13924
13934
|
* } */
|
|
13925
13935
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -13977,7 +13987,7 @@ export interface operations {
|
|
|
13977
13987
|
* "code": "ERROR_AI_CONCIERGE",
|
|
13978
13988
|
* "detail": "AI Concierge memory resource not found",
|
|
13979
13989
|
* "status": 404,
|
|
13980
|
-
* "title": "AI Concierge
|
|
13990
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
13981
13991
|
* "type": "ai-concierge-memory-not-found"
|
|
13982
13992
|
* } */
|
|
13983
13993
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -14002,7 +14012,7 @@ export interface operations {
|
|
|
14002
14012
|
* "code": "ERROR_AI_CONCIERGE",
|
|
14003
14013
|
* "detail": "AI Concierge memory service error",
|
|
14004
14014
|
* "status": 502,
|
|
14005
|
-
* "title": "AI Concierge
|
|
14015
|
+
* "title": "AI Concierge Memory Error",
|
|
14006
14016
|
* "type": "ai-concierge-memory"
|
|
14007
14017
|
* } */
|
|
14008
14018
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -14066,7 +14076,7 @@ export interface operations {
|
|
|
14066
14076
|
* "code": "ERROR_AI_CONCIERGE",
|
|
14067
14077
|
* "detail": "AI Concierge memory resource not found",
|
|
14068
14078
|
* "status": 404,
|
|
14069
|
-
* "title": "AI Concierge
|
|
14079
|
+
* "title": "AI Concierge Memory Resource Not Found",
|
|
14070
14080
|
* "type": "ai-concierge-memory-not-found"
|
|
14071
14081
|
* } */
|
|
14072
14082
|
"application/problem+json": components["schemas"]["Problem"];
|
|
@@ -14091,7 +14101,7 @@ export interface operations {
|
|
|
14091
14101
|
* "code": "ERROR_AI_CONCIERGE",
|
|
14092
14102
|
* "detail": "AI Concierge memory service error",
|
|
14093
14103
|
* "status": 502,
|
|
14094
|
-
* "title": "AI Concierge
|
|
14104
|
+
* "title": "AI Concierge Memory Error",
|
|
14095
14105
|
* "type": "ai-concierge-memory"
|
|
14096
14106
|
* } */
|
|
14097
14107
|
"application/problem+json": components["schemas"]["Problem"];
|