@opusdns/api 0.282.0 → 0.284.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/README.md +33 -0
- package/package.json +3 -2
- package/src/helpers/constants.ts +163 -1
- package/src/helpers/keys.ts +10189 -8422
- package/src/helpers/requests.d.ts +682 -4
- package/src/helpers/responses.d.ts +1652 -5
- package/src/helpers/schemas-arrays.d.ts +57 -1
- package/src/helpers/schemas.d.ts +272 -0
- package/src/openapi.yaml +1636 -22
- package/src/schema.d.ts +1666 -14
package/src/schema.d.ts
CHANGED
|
@@ -1,5 +1,160 @@
|
|
|
1
1
|
import { TypeId } from "typeid-js";
|
|
2
2
|
export interface paths {
|
|
3
|
+
"/v1/ai-concierge/contexts/{context_id}": {
|
|
4
|
+
parameters: {
|
|
5
|
+
query?: never;
|
|
6
|
+
header?: never;
|
|
7
|
+
path?: never;
|
|
8
|
+
cookie?: never;
|
|
9
|
+
};
|
|
10
|
+
/** Get a context entry */
|
|
11
|
+
get: operations["get_context_v1_ai_concierge_contexts__context_id__get"];
|
|
12
|
+
put?: never;
|
|
13
|
+
post?: never;
|
|
14
|
+
delete?: never;
|
|
15
|
+
options?: never;
|
|
16
|
+
head?: never;
|
|
17
|
+
patch?: never;
|
|
18
|
+
trace?: never;
|
|
19
|
+
};
|
|
20
|
+
"/v1/ai-concierge/conversations": {
|
|
21
|
+
parameters: {
|
|
22
|
+
query?: never;
|
|
23
|
+
header?: never;
|
|
24
|
+
path?: never;
|
|
25
|
+
cookie?: never;
|
|
26
|
+
};
|
|
27
|
+
/**
|
|
28
|
+
* List AI Concierge conversations
|
|
29
|
+
* @description List the authenticated organization's AI Concierge conversations.
|
|
30
|
+
*/
|
|
31
|
+
get: operations["list_conversations_v1_ai_concierge_conversations_get"];
|
|
32
|
+
put?: never;
|
|
33
|
+
/** Create an AI Concierge conversation */
|
|
34
|
+
post: operations["create_conversation_v1_ai_concierge_conversations_post"];
|
|
35
|
+
delete?: never;
|
|
36
|
+
options?: never;
|
|
37
|
+
head?: never;
|
|
38
|
+
patch?: never;
|
|
39
|
+
trace?: never;
|
|
40
|
+
};
|
|
41
|
+
"/v1/ai-concierge/conversations/{conversation_id}": {
|
|
42
|
+
parameters: {
|
|
43
|
+
query?: never;
|
|
44
|
+
header?: never;
|
|
45
|
+
path?: never;
|
|
46
|
+
cookie?: never;
|
|
47
|
+
};
|
|
48
|
+
/** Get a conversation */
|
|
49
|
+
get: operations["get_conversation_v1_ai_concierge_conversations__conversation_id__get"];
|
|
50
|
+
put?: never;
|
|
51
|
+
post?: never;
|
|
52
|
+
/**
|
|
53
|
+
* Delete a conversation
|
|
54
|
+
* @description Permanently delete a conversation, its messages, and any attached contexts.
|
|
55
|
+
*/
|
|
56
|
+
delete: operations["delete_conversation_v1_ai_concierge_conversations__conversation_id__delete"];
|
|
57
|
+
options?: never;
|
|
58
|
+
head?: never;
|
|
59
|
+
/**
|
|
60
|
+
* Update a conversation
|
|
61
|
+
* @description Update conversation title or metadata. Supports optimistic concurrency via `If-Match`.
|
|
62
|
+
*/
|
|
63
|
+
patch: operations["patch_conversation_v1_ai_concierge_conversations__conversation_id__patch"];
|
|
64
|
+
trace?: never;
|
|
65
|
+
};
|
|
66
|
+
"/v1/ai-concierge/conversations/{conversation_id}/contexts": {
|
|
67
|
+
parameters: {
|
|
68
|
+
query?: never;
|
|
69
|
+
header?: never;
|
|
70
|
+
path?: never;
|
|
71
|
+
cookie?: never;
|
|
72
|
+
};
|
|
73
|
+
/** List contexts attached to a conversation */
|
|
74
|
+
get: operations["list_contexts_v1_ai_concierge_conversations__conversation_id__contexts_get"];
|
|
75
|
+
put?: never;
|
|
76
|
+
/** Attach a context to a conversation */
|
|
77
|
+
post: operations["create_context_v1_ai_concierge_conversations__conversation_id__contexts_post"];
|
|
78
|
+
delete?: never;
|
|
79
|
+
options?: never;
|
|
80
|
+
head?: never;
|
|
81
|
+
patch?: never;
|
|
82
|
+
trace?: never;
|
|
83
|
+
};
|
|
84
|
+
"/v1/ai-concierge/conversations/{conversation_id}/messages": {
|
|
85
|
+
parameters: {
|
|
86
|
+
query?: never;
|
|
87
|
+
header?: never;
|
|
88
|
+
path?: never;
|
|
89
|
+
cookie?: never;
|
|
90
|
+
};
|
|
91
|
+
/** List messages in a conversation */
|
|
92
|
+
get: operations["list_messages_v1_ai_concierge_conversations__conversation_id__messages_get"];
|
|
93
|
+
put?: never;
|
|
94
|
+
/** Append a message to a conversation */
|
|
95
|
+
post: operations["create_message_v1_ai_concierge_conversations__conversation_id__messages_post"];
|
|
96
|
+
delete?: never;
|
|
97
|
+
options?: never;
|
|
98
|
+
head?: never;
|
|
99
|
+
patch?: never;
|
|
100
|
+
trace?: never;
|
|
101
|
+
};
|
|
102
|
+
"/v1/ai-concierge/conversations/{conversation_id}/messages/{message_id}": {
|
|
103
|
+
parameters: {
|
|
104
|
+
query?: never;
|
|
105
|
+
header?: never;
|
|
106
|
+
path?: never;
|
|
107
|
+
cookie?: never;
|
|
108
|
+
};
|
|
109
|
+
/** Get a message */
|
|
110
|
+
get: operations["get_message_v1_ai_concierge_conversations__conversation_id__messages__message_id__get"];
|
|
111
|
+
put?: never;
|
|
112
|
+
post?: never;
|
|
113
|
+
delete?: never;
|
|
114
|
+
options?: never;
|
|
115
|
+
head?: never;
|
|
116
|
+
patch?: never;
|
|
117
|
+
trace?: never;
|
|
118
|
+
};
|
|
119
|
+
"/v1/ai-concierge/memory/facts": {
|
|
120
|
+
parameters: {
|
|
121
|
+
query?: never;
|
|
122
|
+
header?: never;
|
|
123
|
+
path?: never;
|
|
124
|
+
cookie?: never;
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* List long-term memory facts
|
|
128
|
+
* @description List long-term, organization-scoped memory facts available to the AI Concierge.
|
|
129
|
+
*/
|
|
130
|
+
get: operations["list_memory_facts_v1_ai_concierge_memory_facts_get"];
|
|
131
|
+
put?: never;
|
|
132
|
+
/** Create a long-term memory fact */
|
|
133
|
+
post: operations["create_memory_fact_v1_ai_concierge_memory_facts_post"];
|
|
134
|
+
delete?: never;
|
|
135
|
+
options?: never;
|
|
136
|
+
head?: never;
|
|
137
|
+
patch?: never;
|
|
138
|
+
trace?: never;
|
|
139
|
+
};
|
|
140
|
+
"/v1/ai-concierge/memory/facts/{fact_id}": {
|
|
141
|
+
parameters: {
|
|
142
|
+
query?: never;
|
|
143
|
+
header?: never;
|
|
144
|
+
path?: never;
|
|
145
|
+
cookie?: never;
|
|
146
|
+
};
|
|
147
|
+
get?: never;
|
|
148
|
+
put?: never;
|
|
149
|
+
post?: never;
|
|
150
|
+
/** Delete a long-term memory fact */
|
|
151
|
+
delete: operations["delete_memory_fact_v1_ai_concierge_memory_facts__fact_id__delete"];
|
|
152
|
+
options?: never;
|
|
153
|
+
head?: never;
|
|
154
|
+
/** Update a long-term memory fact */
|
|
155
|
+
patch: operations["patch_memory_fact_v1_ai_concierge_memory_facts__fact_id__patch"];
|
|
156
|
+
trace?: never;
|
|
157
|
+
};
|
|
3
158
|
"/v1/archive/email-forward-logs/aliases/{email_forward_alias_id}": {
|
|
4
159
|
parameters: {
|
|
5
160
|
query?: never;
|
|
@@ -873,7 +1028,17 @@ export interface paths {
|
|
|
873
1028
|
path?: never;
|
|
874
1029
|
cookie?: never;
|
|
875
1030
|
};
|
|
876
|
-
/**
|
|
1031
|
+
/**
|
|
1032
|
+
* Check domain availability and registration metadata
|
|
1033
|
+
* @description Performs a real-time check against the authoritative registry for each domain and returns availability plus any registry-specific metadata needed to register it.
|
|
1034
|
+
*
|
|
1035
|
+
* For each domain the response includes:
|
|
1036
|
+
* - **Availability** — whether the domain can be registered, and the registry's reason if not.
|
|
1037
|
+
* - **Trademark claims (TMCH)** — when the TLD is in its claims phase and the domain matches a trademark in the Trademark Clearinghouse, a `claims_key` is returned. The corresponding claims notice must be retrieved and acknowledged before the domain can be registered. See the [Trademarked domains](/products/domains/trademarked-domains) guide for the full workflow.
|
|
1038
|
+
* - **Premium status and pricing** — whether the domain is classified as premium by the registry, and if so, the price per action (create / renew / transfer / restore). See the [Premium domains](/products/domains/premium) guide for background on how premium domains are priced and registered.
|
|
1039
|
+
*
|
|
1040
|
+
* Domains are queried in parallel, grouped by registry connection. Availability and metadata reflect the registry's state at the moment of the call and are not cached.
|
|
1041
|
+
*/
|
|
877
1042
|
get: operations["epp_check_domain_v1_domains_check_get"];
|
|
878
1043
|
put?: never;
|
|
879
1044
|
post?: never;
|
|
@@ -3376,6 +3541,128 @@ export interface components {
|
|
|
3376
3541
|
*/
|
|
3377
3542
|
update_supported_roles?: components["schemas"]["ContactConfigBase"][] | null;
|
|
3378
3543
|
};
|
|
3544
|
+
/** Context */
|
|
3545
|
+
Context: {
|
|
3546
|
+
/**
|
|
3547
|
+
* Context Id
|
|
3548
|
+
* Format: typeid
|
|
3549
|
+
* @example ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
3550
|
+
*/
|
|
3551
|
+
context_id: TypeId<"ctx">;
|
|
3552
|
+
/**
|
|
3553
|
+
* Conversation Id
|
|
3554
|
+
* Format: typeid
|
|
3555
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
3556
|
+
*/
|
|
3557
|
+
conversation_id: TypeId<"conv">;
|
|
3558
|
+
/**
|
|
3559
|
+
* Created At
|
|
3560
|
+
* Format: date-time
|
|
3561
|
+
*/
|
|
3562
|
+
created_at: Date;
|
|
3563
|
+
kind: components["schemas"]["MessageContextKind"];
|
|
3564
|
+
/**
|
|
3565
|
+
* Organization Id
|
|
3566
|
+
* Format: typeid
|
|
3567
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
3568
|
+
*/
|
|
3569
|
+
organization_id: TypeId<"organization">;
|
|
3570
|
+
/** Payload */
|
|
3571
|
+
payload?: {
|
|
3572
|
+
[key: string]: unknown;
|
|
3573
|
+
};
|
|
3574
|
+
/** User Id */
|
|
3575
|
+
user_id: string;
|
|
3576
|
+
};
|
|
3577
|
+
/** ContextCreateRequest */
|
|
3578
|
+
ContextCreateRequest: {
|
|
3579
|
+
kind: components["schemas"]["MessageContextKind"];
|
|
3580
|
+
/**
|
|
3581
|
+
* Payload
|
|
3582
|
+
* @description Non-empty structured payload. Shape depends on `kind`.
|
|
3583
|
+
*/
|
|
3584
|
+
payload: {
|
|
3585
|
+
[key: string]: unknown;
|
|
3586
|
+
};
|
|
3587
|
+
};
|
|
3588
|
+
/** ContextListResponse */
|
|
3589
|
+
ContextListResponse: {
|
|
3590
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
3591
|
+
/** Results */
|
|
3592
|
+
results: components["schemas"]["Context"][];
|
|
3593
|
+
};
|
|
3594
|
+
/** Conversation */
|
|
3595
|
+
Conversation: {
|
|
3596
|
+
/**
|
|
3597
|
+
* Conversation Id
|
|
3598
|
+
* Format: typeid
|
|
3599
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
3600
|
+
*/
|
|
3601
|
+
conversation_id: TypeId<"conv">;
|
|
3602
|
+
/**
|
|
3603
|
+
* Created At
|
|
3604
|
+
* Format: date-time
|
|
3605
|
+
*/
|
|
3606
|
+
created_at: Date;
|
|
3607
|
+
/** Last Message At */
|
|
3608
|
+
last_message_at?: Date | null;
|
|
3609
|
+
/**
|
|
3610
|
+
* Message Count
|
|
3611
|
+
* @default 0
|
|
3612
|
+
*/
|
|
3613
|
+
message_count: number;
|
|
3614
|
+
/** Metadata */
|
|
3615
|
+
metadata?: {
|
|
3616
|
+
[key: string]: unknown;
|
|
3617
|
+
};
|
|
3618
|
+
/**
|
|
3619
|
+
* Organization Id
|
|
3620
|
+
* Format: typeid
|
|
3621
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
3622
|
+
*/
|
|
3623
|
+
organization_id: TypeId<"organization">;
|
|
3624
|
+
/**
|
|
3625
|
+
* Summary
|
|
3626
|
+
* @description Optional rolling summary maintained by the memory service.
|
|
3627
|
+
*/
|
|
3628
|
+
summary?: string | null;
|
|
3629
|
+
/**
|
|
3630
|
+
* Title
|
|
3631
|
+
* @description Human-readable conversation title.
|
|
3632
|
+
*/
|
|
3633
|
+
title?: string | null;
|
|
3634
|
+
/**
|
|
3635
|
+
* Updated At
|
|
3636
|
+
* Format: date-time
|
|
3637
|
+
*/
|
|
3638
|
+
updated_at: Date;
|
|
3639
|
+
/** User Id */
|
|
3640
|
+
user_id: string;
|
|
3641
|
+
};
|
|
3642
|
+
/** ConversationCreateRequest */
|
|
3643
|
+
ConversationCreateRequest: {
|
|
3644
|
+
/** Metadata */
|
|
3645
|
+
metadata?: {
|
|
3646
|
+
[key: string]: unknown;
|
|
3647
|
+
};
|
|
3648
|
+
/** Title */
|
|
3649
|
+
title?: string | null;
|
|
3650
|
+
};
|
|
3651
|
+
/** ConversationListResponse */
|
|
3652
|
+
ConversationListResponse: {
|
|
3653
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
3654
|
+
/** Results */
|
|
3655
|
+
results: components["schemas"]["Conversation"][];
|
|
3656
|
+
};
|
|
3657
|
+
/** ConversationPatchRequest */
|
|
3658
|
+
ConversationPatchRequest: {
|
|
3659
|
+
/** Metadata */
|
|
3660
|
+
metadata?: {
|
|
3661
|
+
[key: string]: unknown;
|
|
3662
|
+
} | null;
|
|
3663
|
+
/** Title */
|
|
3664
|
+
title?: string | null;
|
|
3665
|
+
};
|
|
3379
3666
|
/** CreateJobBatchResponse */
|
|
3380
3667
|
CreateJobBatchResponse: {
|
|
3381
3668
|
/**
|
|
@@ -6557,6 +6844,135 @@ export interface components {
|
|
|
6557
6844
|
* @enum {string}
|
|
6558
6845
|
*/
|
|
6559
6846
|
LocalPresenceRequirementType: "physical_address" | "business_entity";
|
|
6847
|
+
/** MemoryFact */
|
|
6848
|
+
MemoryFact: {
|
|
6849
|
+
/**
|
|
6850
|
+
* Created At
|
|
6851
|
+
* Format: date-time
|
|
6852
|
+
*/
|
|
6853
|
+
created_at: Date;
|
|
6854
|
+
/** Expires At */
|
|
6855
|
+
expires_at?: Date | null;
|
|
6856
|
+
/**
|
|
6857
|
+
* Fact Id
|
|
6858
|
+
* Format: typeid
|
|
6859
|
+
* @example fact_01h45ytscbebyvny4gc8cr8ma2
|
|
6860
|
+
*/
|
|
6861
|
+
fact_id: TypeId<"fact">;
|
|
6862
|
+
/** Key */
|
|
6863
|
+
key: string;
|
|
6864
|
+
kind: components["schemas"]["MemoryFactKind"];
|
|
6865
|
+
/**
|
|
6866
|
+
* Organization Id
|
|
6867
|
+
* Format: typeid
|
|
6868
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
6869
|
+
*/
|
|
6870
|
+
organization_id: TypeId<"organization">;
|
|
6871
|
+
/**
|
|
6872
|
+
* Updated At
|
|
6873
|
+
* Format: date-time
|
|
6874
|
+
*/
|
|
6875
|
+
updated_at: Date;
|
|
6876
|
+
/** Value */
|
|
6877
|
+
value?: {
|
|
6878
|
+
[key: string]: unknown;
|
|
6879
|
+
};
|
|
6880
|
+
};
|
|
6881
|
+
/** MemoryFactCreateRequest */
|
|
6882
|
+
MemoryFactCreateRequest: {
|
|
6883
|
+
/** Key */
|
|
6884
|
+
key: string;
|
|
6885
|
+
kind: components["schemas"]["MemoryFactKind"];
|
|
6886
|
+
/**
|
|
6887
|
+
* Ttl Seconds
|
|
6888
|
+
* @description Optional TTL; if set, the fact expires after this many seconds.
|
|
6889
|
+
*/
|
|
6890
|
+
ttl_seconds?: number | null;
|
|
6891
|
+
/** Value */
|
|
6892
|
+
value?: {
|
|
6893
|
+
[key: string]: unknown;
|
|
6894
|
+
};
|
|
6895
|
+
};
|
|
6896
|
+
/**
|
|
6897
|
+
* MemoryFactKind
|
|
6898
|
+
* @enum {string}
|
|
6899
|
+
*/
|
|
6900
|
+
MemoryFactKind: "preference" | "note" | "other";
|
|
6901
|
+
/** MemoryFactListResponse */
|
|
6902
|
+
MemoryFactListResponse: {
|
|
6903
|
+
/** Next Cursor */
|
|
6904
|
+
next_cursor?: string | null;
|
|
6905
|
+
/** Results */
|
|
6906
|
+
results: components["schemas"]["MemoryFact"][];
|
|
6907
|
+
};
|
|
6908
|
+
/** MemoryFactPatchRequest */
|
|
6909
|
+
MemoryFactPatchRequest: {
|
|
6910
|
+
/** Ttl Seconds */
|
|
6911
|
+
ttl_seconds?: number | null;
|
|
6912
|
+
/** Value */
|
|
6913
|
+
value?: {
|
|
6914
|
+
[key: string]: unknown;
|
|
6915
|
+
} | null;
|
|
6916
|
+
};
|
|
6917
|
+
/** Message */
|
|
6918
|
+
Message: {
|
|
6919
|
+
/** Content */
|
|
6920
|
+
content: string;
|
|
6921
|
+
/**
|
|
6922
|
+
* Conversation Id
|
|
6923
|
+
* Format: typeid
|
|
6924
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
6925
|
+
*/
|
|
6926
|
+
conversation_id: TypeId<"conv">;
|
|
6927
|
+
/**
|
|
6928
|
+
* Created At
|
|
6929
|
+
* Format: date-time
|
|
6930
|
+
*/
|
|
6931
|
+
created_at: Date;
|
|
6932
|
+
/**
|
|
6933
|
+
* Message Id
|
|
6934
|
+
* Format: typeid
|
|
6935
|
+
* @example msg_01h45ytscbebyvny4gc8cr8ma2
|
|
6936
|
+
*/
|
|
6937
|
+
message_id: TypeId<"msg">;
|
|
6938
|
+
/** Metadata */
|
|
6939
|
+
metadata?: {
|
|
6940
|
+
[key: string]: unknown;
|
|
6941
|
+
};
|
|
6942
|
+
role: components["schemas"]["MessageRole"];
|
|
6943
|
+
};
|
|
6944
|
+
/**
|
|
6945
|
+
* MessageContextKind
|
|
6946
|
+
* @enum {string}
|
|
6947
|
+
*/
|
|
6948
|
+
MessageContextKind: "zones" | "contacts" | "domains" | "batch_ids" | "other";
|
|
6949
|
+
/** MessageCreateRequest */
|
|
6950
|
+
MessageCreateRequest: {
|
|
6951
|
+
/** Content */
|
|
6952
|
+
content: string;
|
|
6953
|
+
/** Metadata */
|
|
6954
|
+
metadata?: {
|
|
6955
|
+
[key: string]: unknown;
|
|
6956
|
+
};
|
|
6957
|
+
/**
|
|
6958
|
+
* N8N History Id
|
|
6959
|
+
* @description Optional reference to the originating n8n_chat_histories row.
|
|
6960
|
+
*/
|
|
6961
|
+
n8n_history_id?: number | null;
|
|
6962
|
+
role: components["schemas"]["MessageRole"];
|
|
6963
|
+
};
|
|
6964
|
+
/** MessageListResponse */
|
|
6965
|
+
MessageListResponse: {
|
|
6966
|
+
/** @description Omitted when the `recent` query parameter is used. */
|
|
6967
|
+
pagination?: components["schemas"]["PaginationMetadata"] | null;
|
|
6968
|
+
/** Results */
|
|
6969
|
+
results: components["schemas"]["Message"][];
|
|
6970
|
+
};
|
|
6971
|
+
/**
|
|
6972
|
+
* MessageRole
|
|
6973
|
+
* @enum {string}
|
|
6974
|
+
*/
|
|
6975
|
+
MessageRole: "user" | "assistant" | "system" | "tool";
|
|
6560
6976
|
/**
|
|
6561
6977
|
* MetricsGrouping
|
|
6562
6978
|
* @enum {string}
|
|
@@ -7803,17 +8219,20 @@ export interface components {
|
|
|
7803
8219
|
PremiumPricingAction: {
|
|
7804
8220
|
/**
|
|
7805
8221
|
* Action
|
|
7806
|
-
* @description The action (e.g., create, renew, transfer)
|
|
8222
|
+
* @description The action this price applies to (e.g., create, renew, transfer)
|
|
8223
|
+
* @example create
|
|
7807
8224
|
*/
|
|
7808
8225
|
action: string;
|
|
7809
8226
|
/**
|
|
7810
8227
|
* Currency
|
|
7811
|
-
* @description
|
|
8228
|
+
* @description ISO 4217 currency code
|
|
8229
|
+
* @example EUR
|
|
7812
8230
|
*/
|
|
7813
8231
|
currency: string;
|
|
7814
8232
|
/**
|
|
7815
8233
|
* Price
|
|
7816
|
-
* @description
|
|
8234
|
+
* @description Price for the action
|
|
8235
|
+
* @example 625.00
|
|
7817
8236
|
*/
|
|
7818
8237
|
price: string;
|
|
7819
8238
|
};
|
|
@@ -9076,28 +9495,36 @@ export interface components {
|
|
|
9076
9495
|
};
|
|
9077
9496
|
/** DomainAvailabilityResponse */
|
|
9078
9497
|
common__models__domain__domain__DomainAvailabilityResponse: {
|
|
9079
|
-
/**
|
|
9498
|
+
/**
|
|
9499
|
+
* Available
|
|
9500
|
+
* @description True if the domain is available for registration
|
|
9501
|
+
*/
|
|
9080
9502
|
available: boolean;
|
|
9081
9503
|
/**
|
|
9082
9504
|
* Claims Key
|
|
9083
|
-
* @description
|
|
9505
|
+
* @description Trademark claims key returned when the TLD is in its claims phase and the domain matches a TMCH-registered mark. When present, the corresponding claims notice must be retrieved and acknowledged before registration.
|
|
9506
|
+
* @example 2013041500/2/6/9/rJ1NrDO92vDsAzf7EQzgjX4R0000000001
|
|
9084
9507
|
*/
|
|
9085
9508
|
claims_key?: string | null;
|
|
9086
9509
|
/**
|
|
9087
9510
|
* Domain
|
|
9088
|
-
* @description The domain name
|
|
9511
|
+
* @description The domain name that was checked
|
|
9089
9512
|
* @example example.com
|
|
9090
9513
|
*/
|
|
9091
9514
|
domain: string;
|
|
9092
9515
|
/**
|
|
9093
9516
|
* Is Premium
|
|
9094
|
-
* @description
|
|
9517
|
+
* @description True if the registry classifies this domain as premium (non-standard pricing)
|
|
9095
9518
|
* @default false
|
|
9096
9519
|
*/
|
|
9097
9520
|
is_premium: boolean;
|
|
9098
|
-
/** @description Premium pricing
|
|
9521
|
+
/** @description Premium pricing per action (create / renew / transfer / restore). Present only when `is_premium` is true and the registry returned pricing. */
|
|
9099
9522
|
premium_pricing?: components["schemas"]["PremiumPricingResponse"] | null;
|
|
9100
|
-
/**
|
|
9523
|
+
/**
|
|
9524
|
+
* Reason
|
|
9525
|
+
* @description Registry-supplied reason the domain is unavailable (e.g. 'Domain exists', 'Reserved', 'In Use'). May be null when the domain is available, or when the registry did not provide a reason.
|
|
9526
|
+
* @example Domain exists
|
|
9527
|
+
*/
|
|
9101
9528
|
reason: string | null;
|
|
9102
9529
|
};
|
|
9103
9530
|
};
|
|
@@ -9109,10 +9536,1231 @@ export interface components {
|
|
|
9109
9536
|
}
|
|
9110
9537
|
export type $defs = Record<string, never>;
|
|
9111
9538
|
export interface operations {
|
|
9112
|
-
|
|
9539
|
+
get_context_v1_ai_concierge_contexts__context_id__get: {
|
|
9113
9540
|
parameters: {
|
|
9114
|
-
query
|
|
9115
|
-
|
|
9541
|
+
query?: never;
|
|
9542
|
+
header?: never;
|
|
9543
|
+
path: {
|
|
9544
|
+
context_id: TypeId<"ctx">;
|
|
9545
|
+
};
|
|
9546
|
+
cookie?: never;
|
|
9547
|
+
};
|
|
9548
|
+
requestBody?: never;
|
|
9549
|
+
responses: {
|
|
9550
|
+
/** @description Successful Response */
|
|
9551
|
+
200: {
|
|
9552
|
+
headers: {
|
|
9553
|
+
[name: string]: unknown;
|
|
9554
|
+
};
|
|
9555
|
+
content: {
|
|
9556
|
+
"application/json": components["schemas"]["Context"];
|
|
9557
|
+
};
|
|
9558
|
+
};
|
|
9559
|
+
/** @description Unauthorized */
|
|
9560
|
+
401: {
|
|
9561
|
+
headers: {
|
|
9562
|
+
[name: string]: unknown;
|
|
9563
|
+
};
|
|
9564
|
+
content: {
|
|
9565
|
+
/** @example {
|
|
9566
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9567
|
+
* "detail": "Additional error context.",
|
|
9568
|
+
* "status": 401,
|
|
9569
|
+
* "title": "Authentication Error",
|
|
9570
|
+
* "type": "authentication"
|
|
9571
|
+
* } */
|
|
9572
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9573
|
+
};
|
|
9574
|
+
};
|
|
9575
|
+
/** @description Not Found */
|
|
9576
|
+
404: {
|
|
9577
|
+
headers: {
|
|
9578
|
+
[name: string]: unknown;
|
|
9579
|
+
};
|
|
9580
|
+
content: {
|
|
9581
|
+
/** @example {
|
|
9582
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9583
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9584
|
+
* "status": 404,
|
|
9585
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9586
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9587
|
+
* } */
|
|
9588
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9589
|
+
};
|
|
9590
|
+
};
|
|
9591
|
+
/** @description Validation Error */
|
|
9592
|
+
422: {
|
|
9593
|
+
headers: {
|
|
9594
|
+
[name: string]: unknown;
|
|
9595
|
+
};
|
|
9596
|
+
content: {
|
|
9597
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9598
|
+
};
|
|
9599
|
+
};
|
|
9600
|
+
/** @description Bad Gateway */
|
|
9601
|
+
502: {
|
|
9602
|
+
headers: {
|
|
9603
|
+
[name: string]: unknown;
|
|
9604
|
+
};
|
|
9605
|
+
content: {
|
|
9606
|
+
/** @example {
|
|
9607
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9608
|
+
* "detail": "AI Concierge memory service error",
|
|
9609
|
+
* "status": 502,
|
|
9610
|
+
* "title": "AI Concierge memory service error.",
|
|
9611
|
+
* "type": "ai-concierge-memory"
|
|
9612
|
+
* } */
|
|
9613
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9614
|
+
};
|
|
9615
|
+
};
|
|
9616
|
+
};
|
|
9617
|
+
};
|
|
9618
|
+
list_conversations_v1_ai_concierge_conversations_get: {
|
|
9619
|
+
parameters: {
|
|
9620
|
+
query?: {
|
|
9621
|
+
page?: number;
|
|
9622
|
+
page_size?: number;
|
|
9623
|
+
/** @description Comma-separated sort fields. Prefix with `-` for DESC. */
|
|
9624
|
+
sort?: string | null;
|
|
9625
|
+
/** @description Full-text search on title/summary. */
|
|
9626
|
+
q?: string | null;
|
|
9627
|
+
};
|
|
9628
|
+
header?: never;
|
|
9629
|
+
path?: never;
|
|
9630
|
+
cookie?: never;
|
|
9631
|
+
};
|
|
9632
|
+
requestBody?: never;
|
|
9633
|
+
responses: {
|
|
9634
|
+
/** @description Successful Response */
|
|
9635
|
+
200: {
|
|
9636
|
+
headers: {
|
|
9637
|
+
[name: string]: unknown;
|
|
9638
|
+
};
|
|
9639
|
+
content: {
|
|
9640
|
+
"application/json": components["schemas"]["ConversationListResponse"];
|
|
9641
|
+
};
|
|
9642
|
+
};
|
|
9643
|
+
/** @description Unauthorized */
|
|
9644
|
+
401: {
|
|
9645
|
+
headers: {
|
|
9646
|
+
[name: string]: unknown;
|
|
9647
|
+
};
|
|
9648
|
+
content: {
|
|
9649
|
+
/** @example {
|
|
9650
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9651
|
+
* "detail": "Additional error context.",
|
|
9652
|
+
* "status": 401,
|
|
9653
|
+
* "title": "Authentication Error",
|
|
9654
|
+
* "type": "authentication"
|
|
9655
|
+
* } */
|
|
9656
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9657
|
+
};
|
|
9658
|
+
};
|
|
9659
|
+
/** @description Not Found */
|
|
9660
|
+
404: {
|
|
9661
|
+
headers: {
|
|
9662
|
+
[name: string]: unknown;
|
|
9663
|
+
};
|
|
9664
|
+
content: {
|
|
9665
|
+
/** @example {
|
|
9666
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9667
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9668
|
+
* "status": 404,
|
|
9669
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9670
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9671
|
+
* } */
|
|
9672
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9673
|
+
};
|
|
9674
|
+
};
|
|
9675
|
+
/** @description Validation Error */
|
|
9676
|
+
422: {
|
|
9677
|
+
headers: {
|
|
9678
|
+
[name: string]: unknown;
|
|
9679
|
+
};
|
|
9680
|
+
content: {
|
|
9681
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9682
|
+
};
|
|
9683
|
+
};
|
|
9684
|
+
/** @description Bad Gateway */
|
|
9685
|
+
502: {
|
|
9686
|
+
headers: {
|
|
9687
|
+
[name: string]: unknown;
|
|
9688
|
+
};
|
|
9689
|
+
content: {
|
|
9690
|
+
/** @example {
|
|
9691
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9692
|
+
* "detail": "AI Concierge memory service error",
|
|
9693
|
+
* "status": 502,
|
|
9694
|
+
* "title": "AI Concierge memory service error.",
|
|
9695
|
+
* "type": "ai-concierge-memory"
|
|
9696
|
+
* } */
|
|
9697
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9698
|
+
};
|
|
9699
|
+
};
|
|
9700
|
+
};
|
|
9701
|
+
};
|
|
9702
|
+
create_conversation_v1_ai_concierge_conversations_post: {
|
|
9703
|
+
parameters: {
|
|
9704
|
+
query?: never;
|
|
9705
|
+
header?: never;
|
|
9706
|
+
path?: never;
|
|
9707
|
+
cookie?: never;
|
|
9708
|
+
};
|
|
9709
|
+
requestBody: {
|
|
9710
|
+
content: {
|
|
9711
|
+
"application/json": components["schemas"]["ConversationCreateRequest"];
|
|
9712
|
+
};
|
|
9713
|
+
};
|
|
9714
|
+
responses: {
|
|
9715
|
+
/** @description Successful Response */
|
|
9716
|
+
201: {
|
|
9717
|
+
headers: {
|
|
9718
|
+
[name: string]: unknown;
|
|
9719
|
+
};
|
|
9720
|
+
content: {
|
|
9721
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9722
|
+
};
|
|
9723
|
+
};
|
|
9724
|
+
/** @description Unauthorized */
|
|
9725
|
+
401: {
|
|
9726
|
+
headers: {
|
|
9727
|
+
[name: string]: unknown;
|
|
9728
|
+
};
|
|
9729
|
+
content: {
|
|
9730
|
+
/** @example {
|
|
9731
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9732
|
+
* "detail": "Additional error context.",
|
|
9733
|
+
* "status": 401,
|
|
9734
|
+
* "title": "Authentication Error",
|
|
9735
|
+
* "type": "authentication"
|
|
9736
|
+
* } */
|
|
9737
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9738
|
+
};
|
|
9739
|
+
};
|
|
9740
|
+
/** @description Not Found */
|
|
9741
|
+
404: {
|
|
9742
|
+
headers: {
|
|
9743
|
+
[name: string]: unknown;
|
|
9744
|
+
};
|
|
9745
|
+
content: {
|
|
9746
|
+
/** @example {
|
|
9747
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9748
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9749
|
+
* "status": 404,
|
|
9750
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9751
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9752
|
+
* } */
|
|
9753
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9754
|
+
};
|
|
9755
|
+
};
|
|
9756
|
+
/** @description Validation Error */
|
|
9757
|
+
422: {
|
|
9758
|
+
headers: {
|
|
9759
|
+
[name: string]: unknown;
|
|
9760
|
+
};
|
|
9761
|
+
content: {
|
|
9762
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9763
|
+
};
|
|
9764
|
+
};
|
|
9765
|
+
/** @description Bad Gateway */
|
|
9766
|
+
502: {
|
|
9767
|
+
headers: {
|
|
9768
|
+
[name: string]: unknown;
|
|
9769
|
+
};
|
|
9770
|
+
content: {
|
|
9771
|
+
/** @example {
|
|
9772
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9773
|
+
* "detail": "AI Concierge memory service error",
|
|
9774
|
+
* "status": 502,
|
|
9775
|
+
* "title": "AI Concierge memory service error.",
|
|
9776
|
+
* "type": "ai-concierge-memory"
|
|
9777
|
+
* } */
|
|
9778
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9779
|
+
};
|
|
9780
|
+
};
|
|
9781
|
+
};
|
|
9782
|
+
};
|
|
9783
|
+
get_conversation_v1_ai_concierge_conversations__conversation_id__get: {
|
|
9784
|
+
parameters: {
|
|
9785
|
+
query?: never;
|
|
9786
|
+
header?: never;
|
|
9787
|
+
path: {
|
|
9788
|
+
conversation_id: TypeId<"conv">;
|
|
9789
|
+
};
|
|
9790
|
+
cookie?: never;
|
|
9791
|
+
};
|
|
9792
|
+
requestBody?: never;
|
|
9793
|
+
responses: {
|
|
9794
|
+
/** @description Successful Response */
|
|
9795
|
+
200: {
|
|
9796
|
+
headers: {
|
|
9797
|
+
[name: string]: unknown;
|
|
9798
|
+
};
|
|
9799
|
+
content: {
|
|
9800
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9801
|
+
};
|
|
9802
|
+
};
|
|
9803
|
+
/** @description Unauthorized */
|
|
9804
|
+
401: {
|
|
9805
|
+
headers: {
|
|
9806
|
+
[name: string]: unknown;
|
|
9807
|
+
};
|
|
9808
|
+
content: {
|
|
9809
|
+
/** @example {
|
|
9810
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9811
|
+
* "detail": "Additional error context.",
|
|
9812
|
+
* "status": 401,
|
|
9813
|
+
* "title": "Authentication Error",
|
|
9814
|
+
* "type": "authentication"
|
|
9815
|
+
* } */
|
|
9816
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9817
|
+
};
|
|
9818
|
+
};
|
|
9819
|
+
/** @description Not Found */
|
|
9820
|
+
404: {
|
|
9821
|
+
headers: {
|
|
9822
|
+
[name: string]: unknown;
|
|
9823
|
+
};
|
|
9824
|
+
content: {
|
|
9825
|
+
/** @example {
|
|
9826
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9827
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9828
|
+
* "status": 404,
|
|
9829
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9830
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9831
|
+
* } */
|
|
9832
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9833
|
+
};
|
|
9834
|
+
};
|
|
9835
|
+
/** @description Validation Error */
|
|
9836
|
+
422: {
|
|
9837
|
+
headers: {
|
|
9838
|
+
[name: string]: unknown;
|
|
9839
|
+
};
|
|
9840
|
+
content: {
|
|
9841
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9842
|
+
};
|
|
9843
|
+
};
|
|
9844
|
+
/** @description Bad Gateway */
|
|
9845
|
+
502: {
|
|
9846
|
+
headers: {
|
|
9847
|
+
[name: string]: unknown;
|
|
9848
|
+
};
|
|
9849
|
+
content: {
|
|
9850
|
+
/** @example {
|
|
9851
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9852
|
+
* "detail": "AI Concierge memory service error",
|
|
9853
|
+
* "status": 502,
|
|
9854
|
+
* "title": "AI Concierge memory service error.",
|
|
9855
|
+
* "type": "ai-concierge-memory"
|
|
9856
|
+
* } */
|
|
9857
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9858
|
+
};
|
|
9859
|
+
};
|
|
9860
|
+
};
|
|
9861
|
+
};
|
|
9862
|
+
delete_conversation_v1_ai_concierge_conversations__conversation_id__delete: {
|
|
9863
|
+
parameters: {
|
|
9864
|
+
query?: never;
|
|
9865
|
+
header?: never;
|
|
9866
|
+
path: {
|
|
9867
|
+
conversation_id: TypeId<"conv">;
|
|
9868
|
+
};
|
|
9869
|
+
cookie?: never;
|
|
9870
|
+
};
|
|
9871
|
+
requestBody?: never;
|
|
9872
|
+
responses: {
|
|
9873
|
+
/** @description Successful Response */
|
|
9874
|
+
204: {
|
|
9875
|
+
headers: {
|
|
9876
|
+
[name: string]: unknown;
|
|
9877
|
+
};
|
|
9878
|
+
content?: never;
|
|
9879
|
+
};
|
|
9880
|
+
/** @description Unauthorized */
|
|
9881
|
+
401: {
|
|
9882
|
+
headers: {
|
|
9883
|
+
[name: string]: unknown;
|
|
9884
|
+
};
|
|
9885
|
+
content: {
|
|
9886
|
+
/** @example {
|
|
9887
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9888
|
+
* "detail": "Additional error context.",
|
|
9889
|
+
* "status": 401,
|
|
9890
|
+
* "title": "Authentication Error",
|
|
9891
|
+
* "type": "authentication"
|
|
9892
|
+
* } */
|
|
9893
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9894
|
+
};
|
|
9895
|
+
};
|
|
9896
|
+
/** @description Not Found */
|
|
9897
|
+
404: {
|
|
9898
|
+
headers: {
|
|
9899
|
+
[name: string]: unknown;
|
|
9900
|
+
};
|
|
9901
|
+
content: {
|
|
9902
|
+
/** @example {
|
|
9903
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9904
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9905
|
+
* "status": 404,
|
|
9906
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9907
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9908
|
+
* } */
|
|
9909
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9910
|
+
};
|
|
9911
|
+
};
|
|
9912
|
+
/** @description Validation Error */
|
|
9913
|
+
422: {
|
|
9914
|
+
headers: {
|
|
9915
|
+
[name: string]: unknown;
|
|
9916
|
+
};
|
|
9917
|
+
content: {
|
|
9918
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9919
|
+
};
|
|
9920
|
+
};
|
|
9921
|
+
/** @description Bad Gateway */
|
|
9922
|
+
502: {
|
|
9923
|
+
headers: {
|
|
9924
|
+
[name: string]: unknown;
|
|
9925
|
+
};
|
|
9926
|
+
content: {
|
|
9927
|
+
/** @example {
|
|
9928
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9929
|
+
* "detail": "AI Concierge memory service error",
|
|
9930
|
+
* "status": 502,
|
|
9931
|
+
* "title": "AI Concierge memory service error.",
|
|
9932
|
+
* "type": "ai-concierge-memory"
|
|
9933
|
+
* } */
|
|
9934
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9935
|
+
};
|
|
9936
|
+
};
|
|
9937
|
+
};
|
|
9938
|
+
};
|
|
9939
|
+
patch_conversation_v1_ai_concierge_conversations__conversation_id__patch: {
|
|
9940
|
+
parameters: {
|
|
9941
|
+
query?: never;
|
|
9942
|
+
header?: {
|
|
9943
|
+
"If-Match"?: string | null;
|
|
9944
|
+
};
|
|
9945
|
+
path: {
|
|
9946
|
+
conversation_id: TypeId<"conv">;
|
|
9947
|
+
};
|
|
9948
|
+
cookie?: never;
|
|
9949
|
+
};
|
|
9950
|
+
requestBody: {
|
|
9951
|
+
content: {
|
|
9952
|
+
"application/json": components["schemas"]["ConversationPatchRequest"];
|
|
9953
|
+
};
|
|
9954
|
+
};
|
|
9955
|
+
responses: {
|
|
9956
|
+
/** @description Successful Response */
|
|
9957
|
+
200: {
|
|
9958
|
+
headers: {
|
|
9959
|
+
[name: string]: unknown;
|
|
9960
|
+
};
|
|
9961
|
+
content: {
|
|
9962
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9963
|
+
};
|
|
9964
|
+
};
|
|
9965
|
+
/** @description Unauthorized */
|
|
9966
|
+
401: {
|
|
9967
|
+
headers: {
|
|
9968
|
+
[name: string]: unknown;
|
|
9969
|
+
};
|
|
9970
|
+
content: {
|
|
9971
|
+
/** @example {
|
|
9972
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9973
|
+
* "detail": "Additional error context.",
|
|
9974
|
+
* "status": 401,
|
|
9975
|
+
* "title": "Authentication Error",
|
|
9976
|
+
* "type": "authentication"
|
|
9977
|
+
* } */
|
|
9978
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9979
|
+
};
|
|
9980
|
+
};
|
|
9981
|
+
/** @description Not Found */
|
|
9982
|
+
404: {
|
|
9983
|
+
headers: {
|
|
9984
|
+
[name: string]: unknown;
|
|
9985
|
+
};
|
|
9986
|
+
content: {
|
|
9987
|
+
/** @example {
|
|
9988
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9989
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9990
|
+
* "status": 404,
|
|
9991
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9992
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9993
|
+
* } */
|
|
9994
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9995
|
+
};
|
|
9996
|
+
};
|
|
9997
|
+
/** @description Validation Error */
|
|
9998
|
+
422: {
|
|
9999
|
+
headers: {
|
|
10000
|
+
[name: string]: unknown;
|
|
10001
|
+
};
|
|
10002
|
+
content: {
|
|
10003
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10004
|
+
};
|
|
10005
|
+
};
|
|
10006
|
+
/** @description Bad Gateway */
|
|
10007
|
+
502: {
|
|
10008
|
+
headers: {
|
|
10009
|
+
[name: string]: unknown;
|
|
10010
|
+
};
|
|
10011
|
+
content: {
|
|
10012
|
+
/** @example {
|
|
10013
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10014
|
+
* "detail": "AI Concierge memory service error",
|
|
10015
|
+
* "status": 502,
|
|
10016
|
+
* "title": "AI Concierge memory service error.",
|
|
10017
|
+
* "type": "ai-concierge-memory"
|
|
10018
|
+
* } */
|
|
10019
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10020
|
+
};
|
|
10021
|
+
};
|
|
10022
|
+
};
|
|
10023
|
+
};
|
|
10024
|
+
list_contexts_v1_ai_concierge_conversations__conversation_id__contexts_get: {
|
|
10025
|
+
parameters: {
|
|
10026
|
+
query?: {
|
|
10027
|
+
page?: number;
|
|
10028
|
+
page_size?: number;
|
|
10029
|
+
};
|
|
10030
|
+
header?: never;
|
|
10031
|
+
path: {
|
|
10032
|
+
conversation_id: TypeId<"conv">;
|
|
10033
|
+
};
|
|
10034
|
+
cookie?: never;
|
|
10035
|
+
};
|
|
10036
|
+
requestBody?: never;
|
|
10037
|
+
responses: {
|
|
10038
|
+
/** @description Successful Response */
|
|
10039
|
+
200: {
|
|
10040
|
+
headers: {
|
|
10041
|
+
[name: string]: unknown;
|
|
10042
|
+
};
|
|
10043
|
+
content: {
|
|
10044
|
+
"application/json": components["schemas"]["ContextListResponse"];
|
|
10045
|
+
};
|
|
10046
|
+
};
|
|
10047
|
+
/** @description Unauthorized */
|
|
10048
|
+
401: {
|
|
10049
|
+
headers: {
|
|
10050
|
+
[name: string]: unknown;
|
|
10051
|
+
};
|
|
10052
|
+
content: {
|
|
10053
|
+
/** @example {
|
|
10054
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10055
|
+
* "detail": "Additional error context.",
|
|
10056
|
+
* "status": 401,
|
|
10057
|
+
* "title": "Authentication Error",
|
|
10058
|
+
* "type": "authentication"
|
|
10059
|
+
* } */
|
|
10060
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10061
|
+
};
|
|
10062
|
+
};
|
|
10063
|
+
/** @description Not Found */
|
|
10064
|
+
404: {
|
|
10065
|
+
headers: {
|
|
10066
|
+
[name: string]: unknown;
|
|
10067
|
+
};
|
|
10068
|
+
content: {
|
|
10069
|
+
/** @example {
|
|
10070
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10071
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10072
|
+
* "status": 404,
|
|
10073
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10074
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10075
|
+
* } */
|
|
10076
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10077
|
+
};
|
|
10078
|
+
};
|
|
10079
|
+
/** @description Validation Error */
|
|
10080
|
+
422: {
|
|
10081
|
+
headers: {
|
|
10082
|
+
[name: string]: unknown;
|
|
10083
|
+
};
|
|
10084
|
+
content: {
|
|
10085
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10086
|
+
};
|
|
10087
|
+
};
|
|
10088
|
+
/** @description Bad Gateway */
|
|
10089
|
+
502: {
|
|
10090
|
+
headers: {
|
|
10091
|
+
[name: string]: unknown;
|
|
10092
|
+
};
|
|
10093
|
+
content: {
|
|
10094
|
+
/** @example {
|
|
10095
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10096
|
+
* "detail": "AI Concierge memory service error",
|
|
10097
|
+
* "status": 502,
|
|
10098
|
+
* "title": "AI Concierge memory service error.",
|
|
10099
|
+
* "type": "ai-concierge-memory"
|
|
10100
|
+
* } */
|
|
10101
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10102
|
+
};
|
|
10103
|
+
};
|
|
10104
|
+
};
|
|
10105
|
+
};
|
|
10106
|
+
create_context_v1_ai_concierge_conversations__conversation_id__contexts_post: {
|
|
10107
|
+
parameters: {
|
|
10108
|
+
query?: never;
|
|
10109
|
+
header?: never;
|
|
10110
|
+
path: {
|
|
10111
|
+
conversation_id: TypeId<"conv">;
|
|
10112
|
+
};
|
|
10113
|
+
cookie?: never;
|
|
10114
|
+
};
|
|
10115
|
+
requestBody: {
|
|
10116
|
+
content: {
|
|
10117
|
+
"application/json": components["schemas"]["ContextCreateRequest"];
|
|
10118
|
+
};
|
|
10119
|
+
};
|
|
10120
|
+
responses: {
|
|
10121
|
+
/** @description Successful Response */
|
|
10122
|
+
201: {
|
|
10123
|
+
headers: {
|
|
10124
|
+
[name: string]: unknown;
|
|
10125
|
+
};
|
|
10126
|
+
content: {
|
|
10127
|
+
"application/json": components["schemas"]["Context"];
|
|
10128
|
+
};
|
|
10129
|
+
};
|
|
10130
|
+
/** @description Unauthorized */
|
|
10131
|
+
401: {
|
|
10132
|
+
headers: {
|
|
10133
|
+
[name: string]: unknown;
|
|
10134
|
+
};
|
|
10135
|
+
content: {
|
|
10136
|
+
/** @example {
|
|
10137
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10138
|
+
* "detail": "Additional error context.",
|
|
10139
|
+
* "status": 401,
|
|
10140
|
+
* "title": "Authentication Error",
|
|
10141
|
+
* "type": "authentication"
|
|
10142
|
+
* } */
|
|
10143
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10144
|
+
};
|
|
10145
|
+
};
|
|
10146
|
+
/** @description Not Found */
|
|
10147
|
+
404: {
|
|
10148
|
+
headers: {
|
|
10149
|
+
[name: string]: unknown;
|
|
10150
|
+
};
|
|
10151
|
+
content: {
|
|
10152
|
+
/** @example {
|
|
10153
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10154
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10155
|
+
* "status": 404,
|
|
10156
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10157
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10158
|
+
* } */
|
|
10159
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10160
|
+
};
|
|
10161
|
+
};
|
|
10162
|
+
/** @description Validation Error */
|
|
10163
|
+
422: {
|
|
10164
|
+
headers: {
|
|
10165
|
+
[name: string]: unknown;
|
|
10166
|
+
};
|
|
10167
|
+
content: {
|
|
10168
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10169
|
+
};
|
|
10170
|
+
};
|
|
10171
|
+
/** @description Bad Gateway */
|
|
10172
|
+
502: {
|
|
10173
|
+
headers: {
|
|
10174
|
+
[name: string]: unknown;
|
|
10175
|
+
};
|
|
10176
|
+
content: {
|
|
10177
|
+
/** @example {
|
|
10178
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10179
|
+
* "detail": "AI Concierge memory service error",
|
|
10180
|
+
* "status": 502,
|
|
10181
|
+
* "title": "AI Concierge memory service error.",
|
|
10182
|
+
* "type": "ai-concierge-memory"
|
|
10183
|
+
* } */
|
|
10184
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10185
|
+
};
|
|
10186
|
+
};
|
|
10187
|
+
};
|
|
10188
|
+
};
|
|
10189
|
+
list_messages_v1_ai_concierge_conversations__conversation_id__messages_get: {
|
|
10190
|
+
parameters: {
|
|
10191
|
+
query?: {
|
|
10192
|
+
page?: number;
|
|
10193
|
+
page_size?: number;
|
|
10194
|
+
/** @description If set, returns last N messages and overrides pagination. */
|
|
10195
|
+
recent?: number | null;
|
|
10196
|
+
/** @description Comma-separated tokens to exclude (case-insensitive). Supports `tools`. */
|
|
10197
|
+
exclude?: string | null;
|
|
10198
|
+
};
|
|
10199
|
+
header?: never;
|
|
10200
|
+
path: {
|
|
10201
|
+
conversation_id: TypeId<"conv">;
|
|
10202
|
+
};
|
|
10203
|
+
cookie?: never;
|
|
10204
|
+
};
|
|
10205
|
+
requestBody?: never;
|
|
10206
|
+
responses: {
|
|
10207
|
+
/** @description Successful Response */
|
|
10208
|
+
200: {
|
|
10209
|
+
headers: {
|
|
10210
|
+
[name: string]: unknown;
|
|
10211
|
+
};
|
|
10212
|
+
content: {
|
|
10213
|
+
"application/json": components["schemas"]["MessageListResponse"];
|
|
10214
|
+
};
|
|
10215
|
+
};
|
|
10216
|
+
/** @description Unauthorized */
|
|
10217
|
+
401: {
|
|
10218
|
+
headers: {
|
|
10219
|
+
[name: string]: unknown;
|
|
10220
|
+
};
|
|
10221
|
+
content: {
|
|
10222
|
+
/** @example {
|
|
10223
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10224
|
+
* "detail": "Additional error context.",
|
|
10225
|
+
* "status": 401,
|
|
10226
|
+
* "title": "Authentication Error",
|
|
10227
|
+
* "type": "authentication"
|
|
10228
|
+
* } */
|
|
10229
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10230
|
+
};
|
|
10231
|
+
};
|
|
10232
|
+
/** @description Not Found */
|
|
10233
|
+
404: {
|
|
10234
|
+
headers: {
|
|
10235
|
+
[name: string]: unknown;
|
|
10236
|
+
};
|
|
10237
|
+
content: {
|
|
10238
|
+
/** @example {
|
|
10239
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10240
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10241
|
+
* "status": 404,
|
|
10242
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10243
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10244
|
+
* } */
|
|
10245
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10246
|
+
};
|
|
10247
|
+
};
|
|
10248
|
+
/** @description Validation Error */
|
|
10249
|
+
422: {
|
|
10250
|
+
headers: {
|
|
10251
|
+
[name: string]: unknown;
|
|
10252
|
+
};
|
|
10253
|
+
content: {
|
|
10254
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10255
|
+
};
|
|
10256
|
+
};
|
|
10257
|
+
/** @description Bad Gateway */
|
|
10258
|
+
502: {
|
|
10259
|
+
headers: {
|
|
10260
|
+
[name: string]: unknown;
|
|
10261
|
+
};
|
|
10262
|
+
content: {
|
|
10263
|
+
/** @example {
|
|
10264
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10265
|
+
* "detail": "AI Concierge memory service error",
|
|
10266
|
+
* "status": 502,
|
|
10267
|
+
* "title": "AI Concierge memory service error.",
|
|
10268
|
+
* "type": "ai-concierge-memory"
|
|
10269
|
+
* } */
|
|
10270
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10271
|
+
};
|
|
10272
|
+
};
|
|
10273
|
+
};
|
|
10274
|
+
};
|
|
10275
|
+
create_message_v1_ai_concierge_conversations__conversation_id__messages_post: {
|
|
10276
|
+
parameters: {
|
|
10277
|
+
query?: never;
|
|
10278
|
+
header?: never;
|
|
10279
|
+
path: {
|
|
10280
|
+
conversation_id: TypeId<"conv">;
|
|
10281
|
+
};
|
|
10282
|
+
cookie?: never;
|
|
10283
|
+
};
|
|
10284
|
+
requestBody: {
|
|
10285
|
+
content: {
|
|
10286
|
+
"application/json": components["schemas"]["MessageCreateRequest"];
|
|
10287
|
+
};
|
|
10288
|
+
};
|
|
10289
|
+
responses: {
|
|
10290
|
+
/** @description Successful Response */
|
|
10291
|
+
201: {
|
|
10292
|
+
headers: {
|
|
10293
|
+
[name: string]: unknown;
|
|
10294
|
+
};
|
|
10295
|
+
content: {
|
|
10296
|
+
"application/json": components["schemas"]["Message"];
|
|
10297
|
+
};
|
|
10298
|
+
};
|
|
10299
|
+
/** @description Unauthorized */
|
|
10300
|
+
401: {
|
|
10301
|
+
headers: {
|
|
10302
|
+
[name: string]: unknown;
|
|
10303
|
+
};
|
|
10304
|
+
content: {
|
|
10305
|
+
/** @example {
|
|
10306
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10307
|
+
* "detail": "Additional error context.",
|
|
10308
|
+
* "status": 401,
|
|
10309
|
+
* "title": "Authentication Error",
|
|
10310
|
+
* "type": "authentication"
|
|
10311
|
+
* } */
|
|
10312
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10313
|
+
};
|
|
10314
|
+
};
|
|
10315
|
+
/** @description Not Found */
|
|
10316
|
+
404: {
|
|
10317
|
+
headers: {
|
|
10318
|
+
[name: string]: unknown;
|
|
10319
|
+
};
|
|
10320
|
+
content: {
|
|
10321
|
+
/** @example {
|
|
10322
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10323
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10324
|
+
* "status": 404,
|
|
10325
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10326
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10327
|
+
* } */
|
|
10328
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10329
|
+
};
|
|
10330
|
+
};
|
|
10331
|
+
/** @description Validation Error */
|
|
10332
|
+
422: {
|
|
10333
|
+
headers: {
|
|
10334
|
+
[name: string]: unknown;
|
|
10335
|
+
};
|
|
10336
|
+
content: {
|
|
10337
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10338
|
+
};
|
|
10339
|
+
};
|
|
10340
|
+
/** @description Bad Gateway */
|
|
10341
|
+
502: {
|
|
10342
|
+
headers: {
|
|
10343
|
+
[name: string]: unknown;
|
|
10344
|
+
};
|
|
10345
|
+
content: {
|
|
10346
|
+
/** @example {
|
|
10347
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10348
|
+
* "detail": "AI Concierge memory service error",
|
|
10349
|
+
* "status": 502,
|
|
10350
|
+
* "title": "AI Concierge memory service error.",
|
|
10351
|
+
* "type": "ai-concierge-memory"
|
|
10352
|
+
* } */
|
|
10353
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10354
|
+
};
|
|
10355
|
+
};
|
|
10356
|
+
};
|
|
10357
|
+
};
|
|
10358
|
+
get_message_v1_ai_concierge_conversations__conversation_id__messages__message_id__get: {
|
|
10359
|
+
parameters: {
|
|
10360
|
+
query?: never;
|
|
10361
|
+
header?: never;
|
|
10362
|
+
path: {
|
|
10363
|
+
conversation_id: TypeId<"conv">;
|
|
10364
|
+
message_id: TypeId<"msg">;
|
|
10365
|
+
};
|
|
10366
|
+
cookie?: never;
|
|
10367
|
+
};
|
|
10368
|
+
requestBody?: never;
|
|
10369
|
+
responses: {
|
|
10370
|
+
/** @description Successful Response */
|
|
10371
|
+
200: {
|
|
10372
|
+
headers: {
|
|
10373
|
+
[name: string]: unknown;
|
|
10374
|
+
};
|
|
10375
|
+
content: {
|
|
10376
|
+
"application/json": components["schemas"]["Message"];
|
|
10377
|
+
};
|
|
10378
|
+
};
|
|
10379
|
+
/** @description Unauthorized */
|
|
10380
|
+
401: {
|
|
10381
|
+
headers: {
|
|
10382
|
+
[name: string]: unknown;
|
|
10383
|
+
};
|
|
10384
|
+
content: {
|
|
10385
|
+
/** @example {
|
|
10386
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10387
|
+
* "detail": "Additional error context.",
|
|
10388
|
+
* "status": 401,
|
|
10389
|
+
* "title": "Authentication Error",
|
|
10390
|
+
* "type": "authentication"
|
|
10391
|
+
* } */
|
|
10392
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10393
|
+
};
|
|
10394
|
+
};
|
|
10395
|
+
/** @description Not Found */
|
|
10396
|
+
404: {
|
|
10397
|
+
headers: {
|
|
10398
|
+
[name: string]: unknown;
|
|
10399
|
+
};
|
|
10400
|
+
content: {
|
|
10401
|
+
/** @example {
|
|
10402
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10403
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10404
|
+
* "status": 404,
|
|
10405
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10406
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10407
|
+
* } */
|
|
10408
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10409
|
+
};
|
|
10410
|
+
};
|
|
10411
|
+
/** @description Validation Error */
|
|
10412
|
+
422: {
|
|
10413
|
+
headers: {
|
|
10414
|
+
[name: string]: unknown;
|
|
10415
|
+
};
|
|
10416
|
+
content: {
|
|
10417
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10418
|
+
};
|
|
10419
|
+
};
|
|
10420
|
+
/** @description Bad Gateway */
|
|
10421
|
+
502: {
|
|
10422
|
+
headers: {
|
|
10423
|
+
[name: string]: unknown;
|
|
10424
|
+
};
|
|
10425
|
+
content: {
|
|
10426
|
+
/** @example {
|
|
10427
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10428
|
+
* "detail": "AI Concierge memory service error",
|
|
10429
|
+
* "status": 502,
|
|
10430
|
+
* "title": "AI Concierge memory service error.",
|
|
10431
|
+
* "type": "ai-concierge-memory"
|
|
10432
|
+
* } */
|
|
10433
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10434
|
+
};
|
|
10435
|
+
};
|
|
10436
|
+
};
|
|
10437
|
+
};
|
|
10438
|
+
list_memory_facts_v1_ai_concierge_memory_facts_get: {
|
|
10439
|
+
parameters: {
|
|
10440
|
+
query?: {
|
|
10441
|
+
limit?: number;
|
|
10442
|
+
cursor?: string | null;
|
|
10443
|
+
kind?: string | null;
|
|
10444
|
+
};
|
|
10445
|
+
header?: never;
|
|
10446
|
+
path?: never;
|
|
10447
|
+
cookie?: never;
|
|
10448
|
+
};
|
|
10449
|
+
requestBody?: never;
|
|
10450
|
+
responses: {
|
|
10451
|
+
/** @description Successful Response */
|
|
10452
|
+
200: {
|
|
10453
|
+
headers: {
|
|
10454
|
+
[name: string]: unknown;
|
|
10455
|
+
};
|
|
10456
|
+
content: {
|
|
10457
|
+
"application/json": components["schemas"]["MemoryFactListResponse"];
|
|
10458
|
+
};
|
|
10459
|
+
};
|
|
10460
|
+
/** @description Unauthorized */
|
|
10461
|
+
401: {
|
|
10462
|
+
headers: {
|
|
10463
|
+
[name: string]: unknown;
|
|
10464
|
+
};
|
|
10465
|
+
content: {
|
|
10466
|
+
/** @example {
|
|
10467
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10468
|
+
* "detail": "Additional error context.",
|
|
10469
|
+
* "status": 401,
|
|
10470
|
+
* "title": "Authentication Error",
|
|
10471
|
+
* "type": "authentication"
|
|
10472
|
+
* } */
|
|
10473
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10474
|
+
};
|
|
10475
|
+
};
|
|
10476
|
+
/** @description Not Found */
|
|
10477
|
+
404: {
|
|
10478
|
+
headers: {
|
|
10479
|
+
[name: string]: unknown;
|
|
10480
|
+
};
|
|
10481
|
+
content: {
|
|
10482
|
+
/** @example {
|
|
10483
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10484
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10485
|
+
* "status": 404,
|
|
10486
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10487
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10488
|
+
* } */
|
|
10489
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10490
|
+
};
|
|
10491
|
+
};
|
|
10492
|
+
/** @description Validation Error */
|
|
10493
|
+
422: {
|
|
10494
|
+
headers: {
|
|
10495
|
+
[name: string]: unknown;
|
|
10496
|
+
};
|
|
10497
|
+
content: {
|
|
10498
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10499
|
+
};
|
|
10500
|
+
};
|
|
10501
|
+
/** @description Bad Gateway */
|
|
10502
|
+
502: {
|
|
10503
|
+
headers: {
|
|
10504
|
+
[name: string]: unknown;
|
|
10505
|
+
};
|
|
10506
|
+
content: {
|
|
10507
|
+
/** @example {
|
|
10508
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10509
|
+
* "detail": "AI Concierge memory service error",
|
|
10510
|
+
* "status": 502,
|
|
10511
|
+
* "title": "AI Concierge memory service error.",
|
|
10512
|
+
* "type": "ai-concierge-memory"
|
|
10513
|
+
* } */
|
|
10514
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10515
|
+
};
|
|
10516
|
+
};
|
|
10517
|
+
};
|
|
10518
|
+
};
|
|
10519
|
+
create_memory_fact_v1_ai_concierge_memory_facts_post: {
|
|
10520
|
+
parameters: {
|
|
10521
|
+
query?: never;
|
|
10522
|
+
header?: never;
|
|
10523
|
+
path?: never;
|
|
10524
|
+
cookie?: never;
|
|
10525
|
+
};
|
|
10526
|
+
requestBody: {
|
|
10527
|
+
content: {
|
|
10528
|
+
"application/json": components["schemas"]["MemoryFactCreateRequest"];
|
|
10529
|
+
};
|
|
10530
|
+
};
|
|
10531
|
+
responses: {
|
|
10532
|
+
/** @description Successful Response */
|
|
10533
|
+
201: {
|
|
10534
|
+
headers: {
|
|
10535
|
+
[name: string]: unknown;
|
|
10536
|
+
};
|
|
10537
|
+
content: {
|
|
10538
|
+
"application/json": components["schemas"]["MemoryFact"];
|
|
10539
|
+
};
|
|
10540
|
+
};
|
|
10541
|
+
/** @description Unauthorized */
|
|
10542
|
+
401: {
|
|
10543
|
+
headers: {
|
|
10544
|
+
[name: string]: unknown;
|
|
10545
|
+
};
|
|
10546
|
+
content: {
|
|
10547
|
+
/** @example {
|
|
10548
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10549
|
+
* "detail": "Additional error context.",
|
|
10550
|
+
* "status": 401,
|
|
10551
|
+
* "title": "Authentication Error",
|
|
10552
|
+
* "type": "authentication"
|
|
10553
|
+
* } */
|
|
10554
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10555
|
+
};
|
|
10556
|
+
};
|
|
10557
|
+
/** @description Not Found */
|
|
10558
|
+
404: {
|
|
10559
|
+
headers: {
|
|
10560
|
+
[name: string]: unknown;
|
|
10561
|
+
};
|
|
10562
|
+
content: {
|
|
10563
|
+
/** @example {
|
|
10564
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10565
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10566
|
+
* "status": 404,
|
|
10567
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10568
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10569
|
+
* } */
|
|
10570
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10571
|
+
};
|
|
10572
|
+
};
|
|
10573
|
+
/** @description Validation Error */
|
|
10574
|
+
422: {
|
|
10575
|
+
headers: {
|
|
10576
|
+
[name: string]: unknown;
|
|
10577
|
+
};
|
|
10578
|
+
content: {
|
|
10579
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10580
|
+
};
|
|
10581
|
+
};
|
|
10582
|
+
/** @description Bad Gateway */
|
|
10583
|
+
502: {
|
|
10584
|
+
headers: {
|
|
10585
|
+
[name: string]: unknown;
|
|
10586
|
+
};
|
|
10587
|
+
content: {
|
|
10588
|
+
/** @example {
|
|
10589
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10590
|
+
* "detail": "AI Concierge memory service error",
|
|
10591
|
+
* "status": 502,
|
|
10592
|
+
* "title": "AI Concierge memory service error.",
|
|
10593
|
+
* "type": "ai-concierge-memory"
|
|
10594
|
+
* } */
|
|
10595
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10596
|
+
};
|
|
10597
|
+
};
|
|
10598
|
+
};
|
|
10599
|
+
};
|
|
10600
|
+
delete_memory_fact_v1_ai_concierge_memory_facts__fact_id__delete: {
|
|
10601
|
+
parameters: {
|
|
10602
|
+
query?: never;
|
|
10603
|
+
header?: never;
|
|
10604
|
+
path: {
|
|
10605
|
+
fact_id: TypeId<"fact">;
|
|
10606
|
+
};
|
|
10607
|
+
cookie?: never;
|
|
10608
|
+
};
|
|
10609
|
+
requestBody?: never;
|
|
10610
|
+
responses: {
|
|
10611
|
+
/** @description Successful Response */
|
|
10612
|
+
204: {
|
|
10613
|
+
headers: {
|
|
10614
|
+
[name: string]: unknown;
|
|
10615
|
+
};
|
|
10616
|
+
content?: never;
|
|
10617
|
+
};
|
|
10618
|
+
/** @description Unauthorized */
|
|
10619
|
+
401: {
|
|
10620
|
+
headers: {
|
|
10621
|
+
[name: string]: unknown;
|
|
10622
|
+
};
|
|
10623
|
+
content: {
|
|
10624
|
+
/** @example {
|
|
10625
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10626
|
+
* "detail": "Additional error context.",
|
|
10627
|
+
* "status": 401,
|
|
10628
|
+
* "title": "Authentication Error",
|
|
10629
|
+
* "type": "authentication"
|
|
10630
|
+
* } */
|
|
10631
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10632
|
+
};
|
|
10633
|
+
};
|
|
10634
|
+
/** @description Not Found */
|
|
10635
|
+
404: {
|
|
10636
|
+
headers: {
|
|
10637
|
+
[name: string]: unknown;
|
|
10638
|
+
};
|
|
10639
|
+
content: {
|
|
10640
|
+
/** @example {
|
|
10641
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10642
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10643
|
+
* "status": 404,
|
|
10644
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10645
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10646
|
+
* } */
|
|
10647
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10648
|
+
};
|
|
10649
|
+
};
|
|
10650
|
+
/** @description Validation Error */
|
|
10651
|
+
422: {
|
|
10652
|
+
headers: {
|
|
10653
|
+
[name: string]: unknown;
|
|
10654
|
+
};
|
|
10655
|
+
content: {
|
|
10656
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10657
|
+
};
|
|
10658
|
+
};
|
|
10659
|
+
/** @description Bad Gateway */
|
|
10660
|
+
502: {
|
|
10661
|
+
headers: {
|
|
10662
|
+
[name: string]: unknown;
|
|
10663
|
+
};
|
|
10664
|
+
content: {
|
|
10665
|
+
/** @example {
|
|
10666
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10667
|
+
* "detail": "AI Concierge memory service error",
|
|
10668
|
+
* "status": 502,
|
|
10669
|
+
* "title": "AI Concierge memory service error.",
|
|
10670
|
+
* "type": "ai-concierge-memory"
|
|
10671
|
+
* } */
|
|
10672
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10673
|
+
};
|
|
10674
|
+
};
|
|
10675
|
+
};
|
|
10676
|
+
};
|
|
10677
|
+
patch_memory_fact_v1_ai_concierge_memory_facts__fact_id__patch: {
|
|
10678
|
+
parameters: {
|
|
10679
|
+
query?: never;
|
|
10680
|
+
header?: never;
|
|
10681
|
+
path: {
|
|
10682
|
+
fact_id: TypeId<"fact">;
|
|
10683
|
+
};
|
|
10684
|
+
cookie?: never;
|
|
10685
|
+
};
|
|
10686
|
+
requestBody: {
|
|
10687
|
+
content: {
|
|
10688
|
+
"application/json": components["schemas"]["MemoryFactPatchRequest"];
|
|
10689
|
+
};
|
|
10690
|
+
};
|
|
10691
|
+
responses: {
|
|
10692
|
+
/** @description Successful Response */
|
|
10693
|
+
200: {
|
|
10694
|
+
headers: {
|
|
10695
|
+
[name: string]: unknown;
|
|
10696
|
+
};
|
|
10697
|
+
content: {
|
|
10698
|
+
"application/json": components["schemas"]["MemoryFact"];
|
|
10699
|
+
};
|
|
10700
|
+
};
|
|
10701
|
+
/** @description Unauthorized */
|
|
10702
|
+
401: {
|
|
10703
|
+
headers: {
|
|
10704
|
+
[name: string]: unknown;
|
|
10705
|
+
};
|
|
10706
|
+
content: {
|
|
10707
|
+
/** @example {
|
|
10708
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10709
|
+
* "detail": "Additional error context.",
|
|
10710
|
+
* "status": 401,
|
|
10711
|
+
* "title": "Authentication Error",
|
|
10712
|
+
* "type": "authentication"
|
|
10713
|
+
* } */
|
|
10714
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10715
|
+
};
|
|
10716
|
+
};
|
|
10717
|
+
/** @description Not Found */
|
|
10718
|
+
404: {
|
|
10719
|
+
headers: {
|
|
10720
|
+
[name: string]: unknown;
|
|
10721
|
+
};
|
|
10722
|
+
content: {
|
|
10723
|
+
/** @example {
|
|
10724
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10725
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10726
|
+
* "status": 404,
|
|
10727
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10728
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10729
|
+
* } */
|
|
10730
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10731
|
+
};
|
|
10732
|
+
};
|
|
10733
|
+
/** @description Validation Error */
|
|
10734
|
+
422: {
|
|
10735
|
+
headers: {
|
|
10736
|
+
[name: string]: unknown;
|
|
10737
|
+
};
|
|
10738
|
+
content: {
|
|
10739
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10740
|
+
};
|
|
10741
|
+
};
|
|
10742
|
+
/** @description Bad Gateway */
|
|
10743
|
+
502: {
|
|
10744
|
+
headers: {
|
|
10745
|
+
[name: string]: unknown;
|
|
10746
|
+
};
|
|
10747
|
+
content: {
|
|
10748
|
+
/** @example {
|
|
10749
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10750
|
+
* "detail": "AI Concierge memory service error",
|
|
10751
|
+
* "status": 502,
|
|
10752
|
+
* "title": "AI Concierge memory service error.",
|
|
10753
|
+
* "type": "ai-concierge-memory"
|
|
10754
|
+
* } */
|
|
10755
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10756
|
+
};
|
|
10757
|
+
};
|
|
10758
|
+
};
|
|
10759
|
+
};
|
|
10760
|
+
get_email_forward_logs_by_alias_v1_archive_email_forward_logs_aliases__email_forward_alias_id__get: {
|
|
10761
|
+
parameters: {
|
|
10762
|
+
query: {
|
|
10763
|
+
email_forward_id: TypeId<"email_forward">;
|
|
9116
10764
|
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
9117
10765
|
sort_order?: components["schemas"]["SortOrder"];
|
|
9118
10766
|
page_size?: number;
|
|
@@ -12998,7 +14646,11 @@ export interface operations {
|
|
|
12998
14646
|
parameters: {
|
|
12999
14647
|
query: {
|
|
13000
14648
|
/** @description
|
|
13001
|
-
*
|
|
14649
|
+
* One or more fully-qualified domain names to check at the registry.
|
|
14650
|
+
*
|
|
14651
|
+
* Each domain is checked for availability and, when applicable, enriched with
|
|
14652
|
+
* trademark claims information and premium pricing. The list of domains may
|
|
14653
|
+
* include a mix of TLDs.
|
|
13002
14654
|
* */
|
|
13003
14655
|
domains: string[];
|
|
13004
14656
|
};
|