@opusdns/api 0.281.0 → 0.283.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 +10441 -8676
- package/src/helpers/requests.d.ts +663 -1
- package/src/helpers/responses.d.ts +1647 -2
- package/src/helpers/schemas-arrays.d.ts +57 -1
- package/src/helpers/schemas.d.ts +272 -0
- package/src/openapi.yaml +1635 -27
- package/src/schema.d.ts +1660 -23
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;
|
|
@@ -3376,6 +3531,128 @@ export interface components {
|
|
|
3376
3531
|
*/
|
|
3377
3532
|
update_supported_roles?: components["schemas"]["ContactConfigBase"][] | null;
|
|
3378
3533
|
};
|
|
3534
|
+
/** Context */
|
|
3535
|
+
Context: {
|
|
3536
|
+
/**
|
|
3537
|
+
* Context Id
|
|
3538
|
+
* Format: typeid
|
|
3539
|
+
* @example ctx_01h45ytscbebyvny4gc8cr8ma2
|
|
3540
|
+
*/
|
|
3541
|
+
context_id: TypeId<"ctx">;
|
|
3542
|
+
/**
|
|
3543
|
+
* Conversation Id
|
|
3544
|
+
* Format: typeid
|
|
3545
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
3546
|
+
*/
|
|
3547
|
+
conversation_id: TypeId<"conv">;
|
|
3548
|
+
/**
|
|
3549
|
+
* Created At
|
|
3550
|
+
* Format: date-time
|
|
3551
|
+
*/
|
|
3552
|
+
created_at: Date;
|
|
3553
|
+
kind: components["schemas"]["MessageContextKind"];
|
|
3554
|
+
/**
|
|
3555
|
+
* Organization Id
|
|
3556
|
+
* Format: typeid
|
|
3557
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
3558
|
+
*/
|
|
3559
|
+
organization_id: TypeId<"organization">;
|
|
3560
|
+
/** Payload */
|
|
3561
|
+
payload?: {
|
|
3562
|
+
[key: string]: unknown;
|
|
3563
|
+
};
|
|
3564
|
+
/** User Id */
|
|
3565
|
+
user_id: string;
|
|
3566
|
+
};
|
|
3567
|
+
/** ContextCreateRequest */
|
|
3568
|
+
ContextCreateRequest: {
|
|
3569
|
+
kind: components["schemas"]["MessageContextKind"];
|
|
3570
|
+
/**
|
|
3571
|
+
* Payload
|
|
3572
|
+
* @description Non-empty structured payload. Shape depends on `kind`.
|
|
3573
|
+
*/
|
|
3574
|
+
payload: {
|
|
3575
|
+
[key: string]: unknown;
|
|
3576
|
+
};
|
|
3577
|
+
};
|
|
3578
|
+
/** ContextListResponse */
|
|
3579
|
+
ContextListResponse: {
|
|
3580
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
3581
|
+
/** Results */
|
|
3582
|
+
results: components["schemas"]["Context"][];
|
|
3583
|
+
};
|
|
3584
|
+
/** Conversation */
|
|
3585
|
+
Conversation: {
|
|
3586
|
+
/**
|
|
3587
|
+
* Conversation Id
|
|
3588
|
+
* Format: typeid
|
|
3589
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
3590
|
+
*/
|
|
3591
|
+
conversation_id: TypeId<"conv">;
|
|
3592
|
+
/**
|
|
3593
|
+
* Created At
|
|
3594
|
+
* Format: date-time
|
|
3595
|
+
*/
|
|
3596
|
+
created_at: Date;
|
|
3597
|
+
/** Last Message At */
|
|
3598
|
+
last_message_at?: Date | null;
|
|
3599
|
+
/**
|
|
3600
|
+
* Message Count
|
|
3601
|
+
* @default 0
|
|
3602
|
+
*/
|
|
3603
|
+
message_count: number;
|
|
3604
|
+
/** Metadata */
|
|
3605
|
+
metadata?: {
|
|
3606
|
+
[key: string]: unknown;
|
|
3607
|
+
};
|
|
3608
|
+
/**
|
|
3609
|
+
* Organization Id
|
|
3610
|
+
* Format: typeid
|
|
3611
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
3612
|
+
*/
|
|
3613
|
+
organization_id: TypeId<"organization">;
|
|
3614
|
+
/**
|
|
3615
|
+
* Summary
|
|
3616
|
+
* @description Optional rolling summary maintained by the memory service.
|
|
3617
|
+
*/
|
|
3618
|
+
summary?: string | null;
|
|
3619
|
+
/**
|
|
3620
|
+
* Title
|
|
3621
|
+
* @description Human-readable conversation title.
|
|
3622
|
+
*/
|
|
3623
|
+
title?: string | null;
|
|
3624
|
+
/**
|
|
3625
|
+
* Updated At
|
|
3626
|
+
* Format: date-time
|
|
3627
|
+
*/
|
|
3628
|
+
updated_at: Date;
|
|
3629
|
+
/** User Id */
|
|
3630
|
+
user_id: string;
|
|
3631
|
+
};
|
|
3632
|
+
/** ConversationCreateRequest */
|
|
3633
|
+
ConversationCreateRequest: {
|
|
3634
|
+
/** Metadata */
|
|
3635
|
+
metadata?: {
|
|
3636
|
+
[key: string]: unknown;
|
|
3637
|
+
};
|
|
3638
|
+
/** Title */
|
|
3639
|
+
title?: string | null;
|
|
3640
|
+
};
|
|
3641
|
+
/** ConversationListResponse */
|
|
3642
|
+
ConversationListResponse: {
|
|
3643
|
+
pagination: components["schemas"]["PaginationMetadata"];
|
|
3644
|
+
/** Results */
|
|
3645
|
+
results: components["schemas"]["Conversation"][];
|
|
3646
|
+
};
|
|
3647
|
+
/** ConversationPatchRequest */
|
|
3648
|
+
ConversationPatchRequest: {
|
|
3649
|
+
/** Metadata */
|
|
3650
|
+
metadata?: {
|
|
3651
|
+
[key: string]: unknown;
|
|
3652
|
+
} | null;
|
|
3653
|
+
/** Title */
|
|
3654
|
+
title?: string | null;
|
|
3655
|
+
};
|
|
3379
3656
|
/** CreateJobBatchResponse */
|
|
3380
3657
|
CreateJobBatchResponse: {
|
|
3381
3658
|
/**
|
|
@@ -6557,6 +6834,135 @@ export interface components {
|
|
|
6557
6834
|
* @enum {string}
|
|
6558
6835
|
*/
|
|
6559
6836
|
LocalPresenceRequirementType: "physical_address" | "business_entity";
|
|
6837
|
+
/** MemoryFact */
|
|
6838
|
+
MemoryFact: {
|
|
6839
|
+
/**
|
|
6840
|
+
* Created At
|
|
6841
|
+
* Format: date-time
|
|
6842
|
+
*/
|
|
6843
|
+
created_at: Date;
|
|
6844
|
+
/** Expires At */
|
|
6845
|
+
expires_at?: Date | null;
|
|
6846
|
+
/**
|
|
6847
|
+
* Fact Id
|
|
6848
|
+
* Format: typeid
|
|
6849
|
+
* @example fact_01h45ytscbebyvny4gc8cr8ma2
|
|
6850
|
+
*/
|
|
6851
|
+
fact_id: TypeId<"fact">;
|
|
6852
|
+
/** Key */
|
|
6853
|
+
key: string;
|
|
6854
|
+
kind: components["schemas"]["MemoryFactKind"];
|
|
6855
|
+
/**
|
|
6856
|
+
* Organization Id
|
|
6857
|
+
* Format: typeid
|
|
6858
|
+
* @example organization_01h45ytscbebyvny4gc8cr8ma2
|
|
6859
|
+
*/
|
|
6860
|
+
organization_id: TypeId<"organization">;
|
|
6861
|
+
/**
|
|
6862
|
+
* Updated At
|
|
6863
|
+
* Format: date-time
|
|
6864
|
+
*/
|
|
6865
|
+
updated_at: Date;
|
|
6866
|
+
/** Value */
|
|
6867
|
+
value?: {
|
|
6868
|
+
[key: string]: unknown;
|
|
6869
|
+
};
|
|
6870
|
+
};
|
|
6871
|
+
/** MemoryFactCreateRequest */
|
|
6872
|
+
MemoryFactCreateRequest: {
|
|
6873
|
+
/** Key */
|
|
6874
|
+
key: string;
|
|
6875
|
+
kind: components["schemas"]["MemoryFactKind"];
|
|
6876
|
+
/**
|
|
6877
|
+
* Ttl Seconds
|
|
6878
|
+
* @description Optional TTL; if set, the fact expires after this many seconds.
|
|
6879
|
+
*/
|
|
6880
|
+
ttl_seconds?: number | null;
|
|
6881
|
+
/** Value */
|
|
6882
|
+
value?: {
|
|
6883
|
+
[key: string]: unknown;
|
|
6884
|
+
};
|
|
6885
|
+
};
|
|
6886
|
+
/**
|
|
6887
|
+
* MemoryFactKind
|
|
6888
|
+
* @enum {string}
|
|
6889
|
+
*/
|
|
6890
|
+
MemoryFactKind: "preference" | "note" | "other";
|
|
6891
|
+
/** MemoryFactListResponse */
|
|
6892
|
+
MemoryFactListResponse: {
|
|
6893
|
+
/** Next Cursor */
|
|
6894
|
+
next_cursor?: string | null;
|
|
6895
|
+
/** Results */
|
|
6896
|
+
results: components["schemas"]["MemoryFact"][];
|
|
6897
|
+
};
|
|
6898
|
+
/** MemoryFactPatchRequest */
|
|
6899
|
+
MemoryFactPatchRequest: {
|
|
6900
|
+
/** Ttl Seconds */
|
|
6901
|
+
ttl_seconds?: number | null;
|
|
6902
|
+
/** Value */
|
|
6903
|
+
value?: {
|
|
6904
|
+
[key: string]: unknown;
|
|
6905
|
+
} | null;
|
|
6906
|
+
};
|
|
6907
|
+
/** Message */
|
|
6908
|
+
Message: {
|
|
6909
|
+
/** Content */
|
|
6910
|
+
content: string;
|
|
6911
|
+
/**
|
|
6912
|
+
* Conversation Id
|
|
6913
|
+
* Format: typeid
|
|
6914
|
+
* @example conv_01h45ytscbebyvny4gc8cr8ma2
|
|
6915
|
+
*/
|
|
6916
|
+
conversation_id: TypeId<"conv">;
|
|
6917
|
+
/**
|
|
6918
|
+
* Created At
|
|
6919
|
+
* Format: date-time
|
|
6920
|
+
*/
|
|
6921
|
+
created_at: Date;
|
|
6922
|
+
/**
|
|
6923
|
+
* Message Id
|
|
6924
|
+
* Format: typeid
|
|
6925
|
+
* @example msg_01h45ytscbebyvny4gc8cr8ma2
|
|
6926
|
+
*/
|
|
6927
|
+
message_id: TypeId<"msg">;
|
|
6928
|
+
/** Metadata */
|
|
6929
|
+
metadata?: {
|
|
6930
|
+
[key: string]: unknown;
|
|
6931
|
+
};
|
|
6932
|
+
role: components["schemas"]["MessageRole"];
|
|
6933
|
+
};
|
|
6934
|
+
/**
|
|
6935
|
+
* MessageContextKind
|
|
6936
|
+
* @enum {string}
|
|
6937
|
+
*/
|
|
6938
|
+
MessageContextKind: "zones" | "contacts" | "domains" | "batch_ids" | "other";
|
|
6939
|
+
/** MessageCreateRequest */
|
|
6940
|
+
MessageCreateRequest: {
|
|
6941
|
+
/** Content */
|
|
6942
|
+
content: string;
|
|
6943
|
+
/** Metadata */
|
|
6944
|
+
metadata?: {
|
|
6945
|
+
[key: string]: unknown;
|
|
6946
|
+
};
|
|
6947
|
+
/**
|
|
6948
|
+
* N8N History Id
|
|
6949
|
+
* @description Optional reference to the originating n8n_chat_histories row.
|
|
6950
|
+
*/
|
|
6951
|
+
n8n_history_id?: number | null;
|
|
6952
|
+
role: components["schemas"]["MessageRole"];
|
|
6953
|
+
};
|
|
6954
|
+
/** MessageListResponse */
|
|
6955
|
+
MessageListResponse: {
|
|
6956
|
+
/** @description Omitted when the `recent` query parameter is used. */
|
|
6957
|
+
pagination?: components["schemas"]["PaginationMetadata"] | null;
|
|
6958
|
+
/** Results */
|
|
6959
|
+
results: components["schemas"]["Message"][];
|
|
6960
|
+
};
|
|
6961
|
+
/**
|
|
6962
|
+
* MessageRole
|
|
6963
|
+
* @enum {string}
|
|
6964
|
+
*/
|
|
6965
|
+
MessageRole: "user" | "assistant" | "system" | "tool";
|
|
6560
6966
|
/**
|
|
6561
6967
|
* MetricsGrouping
|
|
6562
6968
|
* @enum {string}
|
|
@@ -9109,21 +9515,12 @@ export interface components {
|
|
|
9109
9515
|
}
|
|
9110
9516
|
export type $defs = Record<string, never>;
|
|
9111
9517
|
export interface operations {
|
|
9112
|
-
|
|
9518
|
+
get_context_v1_ai_concierge_contexts__context_id__get: {
|
|
9113
9519
|
parameters: {
|
|
9114
|
-
query
|
|
9115
|
-
email_forward_id: TypeId<"email_forward">;
|
|
9116
|
-
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
9117
|
-
sort_order?: components["schemas"]["SortOrder"];
|
|
9118
|
-
page_size?: number;
|
|
9119
|
-
page?: number;
|
|
9120
|
-
final_status?: components["schemas"]["EmailForwardLogStatus"] | null;
|
|
9121
|
-
start_time?: Date | null;
|
|
9122
|
-
end_time?: Date | null;
|
|
9123
|
-
};
|
|
9520
|
+
query?: never;
|
|
9124
9521
|
header?: never;
|
|
9125
9522
|
path: {
|
|
9126
|
-
|
|
9523
|
+
context_id: TypeId<"ctx">;
|
|
9127
9524
|
};
|
|
9128
9525
|
cookie?: never;
|
|
9129
9526
|
};
|
|
@@ -9135,11 +9532,1241 @@ export interface operations {
|
|
|
9135
9532
|
[name: string]: unknown;
|
|
9136
9533
|
};
|
|
9137
9534
|
content: {
|
|
9138
|
-
"application/json": components["schemas"]["
|
|
9535
|
+
"application/json": components["schemas"]["Context"];
|
|
9139
9536
|
};
|
|
9140
9537
|
};
|
|
9141
|
-
/** @description
|
|
9142
|
-
|
|
9538
|
+
/** @description Unauthorized */
|
|
9539
|
+
401: {
|
|
9540
|
+
headers: {
|
|
9541
|
+
[name: string]: unknown;
|
|
9542
|
+
};
|
|
9543
|
+
content: {
|
|
9544
|
+
/** @example {
|
|
9545
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9546
|
+
* "detail": "Additional error context.",
|
|
9547
|
+
* "status": 401,
|
|
9548
|
+
* "title": "Authentication Error",
|
|
9549
|
+
* "type": "authentication"
|
|
9550
|
+
* } */
|
|
9551
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9552
|
+
};
|
|
9553
|
+
};
|
|
9554
|
+
/** @description Not Found */
|
|
9555
|
+
404: {
|
|
9556
|
+
headers: {
|
|
9557
|
+
[name: string]: unknown;
|
|
9558
|
+
};
|
|
9559
|
+
content: {
|
|
9560
|
+
/** @example {
|
|
9561
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9562
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9563
|
+
* "status": 404,
|
|
9564
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9565
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9566
|
+
* } */
|
|
9567
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9568
|
+
};
|
|
9569
|
+
};
|
|
9570
|
+
/** @description Validation Error */
|
|
9571
|
+
422: {
|
|
9572
|
+
headers: {
|
|
9573
|
+
[name: string]: unknown;
|
|
9574
|
+
};
|
|
9575
|
+
content: {
|
|
9576
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9577
|
+
};
|
|
9578
|
+
};
|
|
9579
|
+
/** @description Bad Gateway */
|
|
9580
|
+
502: {
|
|
9581
|
+
headers: {
|
|
9582
|
+
[name: string]: unknown;
|
|
9583
|
+
};
|
|
9584
|
+
content: {
|
|
9585
|
+
/** @example {
|
|
9586
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9587
|
+
* "detail": "AI Concierge memory service error",
|
|
9588
|
+
* "status": 502,
|
|
9589
|
+
* "title": "AI Concierge memory service error.",
|
|
9590
|
+
* "type": "ai-concierge-memory"
|
|
9591
|
+
* } */
|
|
9592
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9593
|
+
};
|
|
9594
|
+
};
|
|
9595
|
+
};
|
|
9596
|
+
};
|
|
9597
|
+
list_conversations_v1_ai_concierge_conversations_get: {
|
|
9598
|
+
parameters: {
|
|
9599
|
+
query?: {
|
|
9600
|
+
page?: number;
|
|
9601
|
+
page_size?: number;
|
|
9602
|
+
/** @description Comma-separated sort fields. Prefix with `-` for DESC. */
|
|
9603
|
+
sort?: string | null;
|
|
9604
|
+
/** @description Full-text search on title/summary. */
|
|
9605
|
+
q?: string | null;
|
|
9606
|
+
};
|
|
9607
|
+
header?: never;
|
|
9608
|
+
path?: never;
|
|
9609
|
+
cookie?: never;
|
|
9610
|
+
};
|
|
9611
|
+
requestBody?: never;
|
|
9612
|
+
responses: {
|
|
9613
|
+
/** @description Successful Response */
|
|
9614
|
+
200: {
|
|
9615
|
+
headers: {
|
|
9616
|
+
[name: string]: unknown;
|
|
9617
|
+
};
|
|
9618
|
+
content: {
|
|
9619
|
+
"application/json": components["schemas"]["ConversationListResponse"];
|
|
9620
|
+
};
|
|
9621
|
+
};
|
|
9622
|
+
/** @description Unauthorized */
|
|
9623
|
+
401: {
|
|
9624
|
+
headers: {
|
|
9625
|
+
[name: string]: unknown;
|
|
9626
|
+
};
|
|
9627
|
+
content: {
|
|
9628
|
+
/** @example {
|
|
9629
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9630
|
+
* "detail": "Additional error context.",
|
|
9631
|
+
* "status": 401,
|
|
9632
|
+
* "title": "Authentication Error",
|
|
9633
|
+
* "type": "authentication"
|
|
9634
|
+
* } */
|
|
9635
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9636
|
+
};
|
|
9637
|
+
};
|
|
9638
|
+
/** @description Not Found */
|
|
9639
|
+
404: {
|
|
9640
|
+
headers: {
|
|
9641
|
+
[name: string]: unknown;
|
|
9642
|
+
};
|
|
9643
|
+
content: {
|
|
9644
|
+
/** @example {
|
|
9645
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9646
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9647
|
+
* "status": 404,
|
|
9648
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9649
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9650
|
+
* } */
|
|
9651
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9652
|
+
};
|
|
9653
|
+
};
|
|
9654
|
+
/** @description Validation Error */
|
|
9655
|
+
422: {
|
|
9656
|
+
headers: {
|
|
9657
|
+
[name: string]: unknown;
|
|
9658
|
+
};
|
|
9659
|
+
content: {
|
|
9660
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9661
|
+
};
|
|
9662
|
+
};
|
|
9663
|
+
/** @description Bad Gateway */
|
|
9664
|
+
502: {
|
|
9665
|
+
headers: {
|
|
9666
|
+
[name: string]: unknown;
|
|
9667
|
+
};
|
|
9668
|
+
content: {
|
|
9669
|
+
/** @example {
|
|
9670
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9671
|
+
* "detail": "AI Concierge memory service error",
|
|
9672
|
+
* "status": 502,
|
|
9673
|
+
* "title": "AI Concierge memory service error.",
|
|
9674
|
+
* "type": "ai-concierge-memory"
|
|
9675
|
+
* } */
|
|
9676
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9677
|
+
};
|
|
9678
|
+
};
|
|
9679
|
+
};
|
|
9680
|
+
};
|
|
9681
|
+
create_conversation_v1_ai_concierge_conversations_post: {
|
|
9682
|
+
parameters: {
|
|
9683
|
+
query?: never;
|
|
9684
|
+
header?: never;
|
|
9685
|
+
path?: never;
|
|
9686
|
+
cookie?: never;
|
|
9687
|
+
};
|
|
9688
|
+
requestBody: {
|
|
9689
|
+
content: {
|
|
9690
|
+
"application/json": components["schemas"]["ConversationCreateRequest"];
|
|
9691
|
+
};
|
|
9692
|
+
};
|
|
9693
|
+
responses: {
|
|
9694
|
+
/** @description Successful Response */
|
|
9695
|
+
201: {
|
|
9696
|
+
headers: {
|
|
9697
|
+
[name: string]: unknown;
|
|
9698
|
+
};
|
|
9699
|
+
content: {
|
|
9700
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9701
|
+
};
|
|
9702
|
+
};
|
|
9703
|
+
/** @description Unauthorized */
|
|
9704
|
+
401: {
|
|
9705
|
+
headers: {
|
|
9706
|
+
[name: string]: unknown;
|
|
9707
|
+
};
|
|
9708
|
+
content: {
|
|
9709
|
+
/** @example {
|
|
9710
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9711
|
+
* "detail": "Additional error context.",
|
|
9712
|
+
* "status": 401,
|
|
9713
|
+
* "title": "Authentication Error",
|
|
9714
|
+
* "type": "authentication"
|
|
9715
|
+
* } */
|
|
9716
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9717
|
+
};
|
|
9718
|
+
};
|
|
9719
|
+
/** @description Not Found */
|
|
9720
|
+
404: {
|
|
9721
|
+
headers: {
|
|
9722
|
+
[name: string]: unknown;
|
|
9723
|
+
};
|
|
9724
|
+
content: {
|
|
9725
|
+
/** @example {
|
|
9726
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9727
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9728
|
+
* "status": 404,
|
|
9729
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9730
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9731
|
+
* } */
|
|
9732
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9733
|
+
};
|
|
9734
|
+
};
|
|
9735
|
+
/** @description Validation Error */
|
|
9736
|
+
422: {
|
|
9737
|
+
headers: {
|
|
9738
|
+
[name: string]: unknown;
|
|
9739
|
+
};
|
|
9740
|
+
content: {
|
|
9741
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9742
|
+
};
|
|
9743
|
+
};
|
|
9744
|
+
/** @description Bad Gateway */
|
|
9745
|
+
502: {
|
|
9746
|
+
headers: {
|
|
9747
|
+
[name: string]: unknown;
|
|
9748
|
+
};
|
|
9749
|
+
content: {
|
|
9750
|
+
/** @example {
|
|
9751
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9752
|
+
* "detail": "AI Concierge memory service error",
|
|
9753
|
+
* "status": 502,
|
|
9754
|
+
* "title": "AI Concierge memory service error.",
|
|
9755
|
+
* "type": "ai-concierge-memory"
|
|
9756
|
+
* } */
|
|
9757
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9758
|
+
};
|
|
9759
|
+
};
|
|
9760
|
+
};
|
|
9761
|
+
};
|
|
9762
|
+
get_conversation_v1_ai_concierge_conversations__conversation_id__get: {
|
|
9763
|
+
parameters: {
|
|
9764
|
+
query?: never;
|
|
9765
|
+
header?: never;
|
|
9766
|
+
path: {
|
|
9767
|
+
conversation_id: TypeId<"conv">;
|
|
9768
|
+
};
|
|
9769
|
+
cookie?: never;
|
|
9770
|
+
};
|
|
9771
|
+
requestBody?: never;
|
|
9772
|
+
responses: {
|
|
9773
|
+
/** @description Successful Response */
|
|
9774
|
+
200: {
|
|
9775
|
+
headers: {
|
|
9776
|
+
[name: string]: unknown;
|
|
9777
|
+
};
|
|
9778
|
+
content: {
|
|
9779
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9780
|
+
};
|
|
9781
|
+
};
|
|
9782
|
+
/** @description Unauthorized */
|
|
9783
|
+
401: {
|
|
9784
|
+
headers: {
|
|
9785
|
+
[name: string]: unknown;
|
|
9786
|
+
};
|
|
9787
|
+
content: {
|
|
9788
|
+
/** @example {
|
|
9789
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9790
|
+
* "detail": "Additional error context.",
|
|
9791
|
+
* "status": 401,
|
|
9792
|
+
* "title": "Authentication Error",
|
|
9793
|
+
* "type": "authentication"
|
|
9794
|
+
* } */
|
|
9795
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9796
|
+
};
|
|
9797
|
+
};
|
|
9798
|
+
/** @description Not Found */
|
|
9799
|
+
404: {
|
|
9800
|
+
headers: {
|
|
9801
|
+
[name: string]: unknown;
|
|
9802
|
+
};
|
|
9803
|
+
content: {
|
|
9804
|
+
/** @example {
|
|
9805
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9806
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9807
|
+
* "status": 404,
|
|
9808
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9809
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9810
|
+
* } */
|
|
9811
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9812
|
+
};
|
|
9813
|
+
};
|
|
9814
|
+
/** @description Validation Error */
|
|
9815
|
+
422: {
|
|
9816
|
+
headers: {
|
|
9817
|
+
[name: string]: unknown;
|
|
9818
|
+
};
|
|
9819
|
+
content: {
|
|
9820
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9821
|
+
};
|
|
9822
|
+
};
|
|
9823
|
+
/** @description Bad Gateway */
|
|
9824
|
+
502: {
|
|
9825
|
+
headers: {
|
|
9826
|
+
[name: string]: unknown;
|
|
9827
|
+
};
|
|
9828
|
+
content: {
|
|
9829
|
+
/** @example {
|
|
9830
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9831
|
+
* "detail": "AI Concierge memory service error",
|
|
9832
|
+
* "status": 502,
|
|
9833
|
+
* "title": "AI Concierge memory service error.",
|
|
9834
|
+
* "type": "ai-concierge-memory"
|
|
9835
|
+
* } */
|
|
9836
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9837
|
+
};
|
|
9838
|
+
};
|
|
9839
|
+
};
|
|
9840
|
+
};
|
|
9841
|
+
delete_conversation_v1_ai_concierge_conversations__conversation_id__delete: {
|
|
9842
|
+
parameters: {
|
|
9843
|
+
query?: never;
|
|
9844
|
+
header?: never;
|
|
9845
|
+
path: {
|
|
9846
|
+
conversation_id: TypeId<"conv">;
|
|
9847
|
+
};
|
|
9848
|
+
cookie?: never;
|
|
9849
|
+
};
|
|
9850
|
+
requestBody?: never;
|
|
9851
|
+
responses: {
|
|
9852
|
+
/** @description Successful Response */
|
|
9853
|
+
204: {
|
|
9854
|
+
headers: {
|
|
9855
|
+
[name: string]: unknown;
|
|
9856
|
+
};
|
|
9857
|
+
content?: never;
|
|
9858
|
+
};
|
|
9859
|
+
/** @description Unauthorized */
|
|
9860
|
+
401: {
|
|
9861
|
+
headers: {
|
|
9862
|
+
[name: string]: unknown;
|
|
9863
|
+
};
|
|
9864
|
+
content: {
|
|
9865
|
+
/** @example {
|
|
9866
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9867
|
+
* "detail": "Additional error context.",
|
|
9868
|
+
* "status": 401,
|
|
9869
|
+
* "title": "Authentication Error",
|
|
9870
|
+
* "type": "authentication"
|
|
9871
|
+
* } */
|
|
9872
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9873
|
+
};
|
|
9874
|
+
};
|
|
9875
|
+
/** @description Not Found */
|
|
9876
|
+
404: {
|
|
9877
|
+
headers: {
|
|
9878
|
+
[name: string]: unknown;
|
|
9879
|
+
};
|
|
9880
|
+
content: {
|
|
9881
|
+
/** @example {
|
|
9882
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9883
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9884
|
+
* "status": 404,
|
|
9885
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9886
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9887
|
+
* } */
|
|
9888
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9889
|
+
};
|
|
9890
|
+
};
|
|
9891
|
+
/** @description Validation Error */
|
|
9892
|
+
422: {
|
|
9893
|
+
headers: {
|
|
9894
|
+
[name: string]: unknown;
|
|
9895
|
+
};
|
|
9896
|
+
content: {
|
|
9897
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9898
|
+
};
|
|
9899
|
+
};
|
|
9900
|
+
/** @description Bad Gateway */
|
|
9901
|
+
502: {
|
|
9902
|
+
headers: {
|
|
9903
|
+
[name: string]: unknown;
|
|
9904
|
+
};
|
|
9905
|
+
content: {
|
|
9906
|
+
/** @example {
|
|
9907
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9908
|
+
* "detail": "AI Concierge memory service error",
|
|
9909
|
+
* "status": 502,
|
|
9910
|
+
* "title": "AI Concierge memory service error.",
|
|
9911
|
+
* "type": "ai-concierge-memory"
|
|
9912
|
+
* } */
|
|
9913
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9914
|
+
};
|
|
9915
|
+
};
|
|
9916
|
+
};
|
|
9917
|
+
};
|
|
9918
|
+
patch_conversation_v1_ai_concierge_conversations__conversation_id__patch: {
|
|
9919
|
+
parameters: {
|
|
9920
|
+
query?: never;
|
|
9921
|
+
header?: {
|
|
9922
|
+
"If-Match"?: string | null;
|
|
9923
|
+
};
|
|
9924
|
+
path: {
|
|
9925
|
+
conversation_id: TypeId<"conv">;
|
|
9926
|
+
};
|
|
9927
|
+
cookie?: never;
|
|
9928
|
+
};
|
|
9929
|
+
requestBody: {
|
|
9930
|
+
content: {
|
|
9931
|
+
"application/json": components["schemas"]["ConversationPatchRequest"];
|
|
9932
|
+
};
|
|
9933
|
+
};
|
|
9934
|
+
responses: {
|
|
9935
|
+
/** @description Successful Response */
|
|
9936
|
+
200: {
|
|
9937
|
+
headers: {
|
|
9938
|
+
[name: string]: unknown;
|
|
9939
|
+
};
|
|
9940
|
+
content: {
|
|
9941
|
+
"application/json": components["schemas"]["Conversation"];
|
|
9942
|
+
};
|
|
9943
|
+
};
|
|
9944
|
+
/** @description Unauthorized */
|
|
9945
|
+
401: {
|
|
9946
|
+
headers: {
|
|
9947
|
+
[name: string]: unknown;
|
|
9948
|
+
};
|
|
9949
|
+
content: {
|
|
9950
|
+
/** @example {
|
|
9951
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
9952
|
+
* "detail": "Additional error context.",
|
|
9953
|
+
* "status": 401,
|
|
9954
|
+
* "title": "Authentication Error",
|
|
9955
|
+
* "type": "authentication"
|
|
9956
|
+
* } */
|
|
9957
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9958
|
+
};
|
|
9959
|
+
};
|
|
9960
|
+
/** @description Not Found */
|
|
9961
|
+
404: {
|
|
9962
|
+
headers: {
|
|
9963
|
+
[name: string]: unknown;
|
|
9964
|
+
};
|
|
9965
|
+
content: {
|
|
9966
|
+
/** @example {
|
|
9967
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9968
|
+
* "detail": "AI Concierge memory resource not found",
|
|
9969
|
+
* "status": 404,
|
|
9970
|
+
* "title": "AI Concierge memory resource not found.",
|
|
9971
|
+
* "type": "ai-concierge-memory-not-found"
|
|
9972
|
+
* } */
|
|
9973
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9974
|
+
};
|
|
9975
|
+
};
|
|
9976
|
+
/** @description Validation Error */
|
|
9977
|
+
422: {
|
|
9978
|
+
headers: {
|
|
9979
|
+
[name: string]: unknown;
|
|
9980
|
+
};
|
|
9981
|
+
content: {
|
|
9982
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
9983
|
+
};
|
|
9984
|
+
};
|
|
9985
|
+
/** @description Bad Gateway */
|
|
9986
|
+
502: {
|
|
9987
|
+
headers: {
|
|
9988
|
+
[name: string]: unknown;
|
|
9989
|
+
};
|
|
9990
|
+
content: {
|
|
9991
|
+
/** @example {
|
|
9992
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
9993
|
+
* "detail": "AI Concierge memory service error",
|
|
9994
|
+
* "status": 502,
|
|
9995
|
+
* "title": "AI Concierge memory service error.",
|
|
9996
|
+
* "type": "ai-concierge-memory"
|
|
9997
|
+
* } */
|
|
9998
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
9999
|
+
};
|
|
10000
|
+
};
|
|
10001
|
+
};
|
|
10002
|
+
};
|
|
10003
|
+
list_contexts_v1_ai_concierge_conversations__conversation_id__contexts_get: {
|
|
10004
|
+
parameters: {
|
|
10005
|
+
query?: {
|
|
10006
|
+
page?: number;
|
|
10007
|
+
page_size?: number;
|
|
10008
|
+
};
|
|
10009
|
+
header?: never;
|
|
10010
|
+
path: {
|
|
10011
|
+
conversation_id: TypeId<"conv">;
|
|
10012
|
+
};
|
|
10013
|
+
cookie?: never;
|
|
10014
|
+
};
|
|
10015
|
+
requestBody?: never;
|
|
10016
|
+
responses: {
|
|
10017
|
+
/** @description Successful Response */
|
|
10018
|
+
200: {
|
|
10019
|
+
headers: {
|
|
10020
|
+
[name: string]: unknown;
|
|
10021
|
+
};
|
|
10022
|
+
content: {
|
|
10023
|
+
"application/json": components["schemas"]["ContextListResponse"];
|
|
10024
|
+
};
|
|
10025
|
+
};
|
|
10026
|
+
/** @description Unauthorized */
|
|
10027
|
+
401: {
|
|
10028
|
+
headers: {
|
|
10029
|
+
[name: string]: unknown;
|
|
10030
|
+
};
|
|
10031
|
+
content: {
|
|
10032
|
+
/** @example {
|
|
10033
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10034
|
+
* "detail": "Additional error context.",
|
|
10035
|
+
* "status": 401,
|
|
10036
|
+
* "title": "Authentication Error",
|
|
10037
|
+
* "type": "authentication"
|
|
10038
|
+
* } */
|
|
10039
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10040
|
+
};
|
|
10041
|
+
};
|
|
10042
|
+
/** @description Not Found */
|
|
10043
|
+
404: {
|
|
10044
|
+
headers: {
|
|
10045
|
+
[name: string]: unknown;
|
|
10046
|
+
};
|
|
10047
|
+
content: {
|
|
10048
|
+
/** @example {
|
|
10049
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10050
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10051
|
+
* "status": 404,
|
|
10052
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10053
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10054
|
+
* } */
|
|
10055
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10056
|
+
};
|
|
10057
|
+
};
|
|
10058
|
+
/** @description Validation Error */
|
|
10059
|
+
422: {
|
|
10060
|
+
headers: {
|
|
10061
|
+
[name: string]: unknown;
|
|
10062
|
+
};
|
|
10063
|
+
content: {
|
|
10064
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10065
|
+
};
|
|
10066
|
+
};
|
|
10067
|
+
/** @description Bad Gateway */
|
|
10068
|
+
502: {
|
|
10069
|
+
headers: {
|
|
10070
|
+
[name: string]: unknown;
|
|
10071
|
+
};
|
|
10072
|
+
content: {
|
|
10073
|
+
/** @example {
|
|
10074
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10075
|
+
* "detail": "AI Concierge memory service error",
|
|
10076
|
+
* "status": 502,
|
|
10077
|
+
* "title": "AI Concierge memory service error.",
|
|
10078
|
+
* "type": "ai-concierge-memory"
|
|
10079
|
+
* } */
|
|
10080
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10081
|
+
};
|
|
10082
|
+
};
|
|
10083
|
+
};
|
|
10084
|
+
};
|
|
10085
|
+
create_context_v1_ai_concierge_conversations__conversation_id__contexts_post: {
|
|
10086
|
+
parameters: {
|
|
10087
|
+
query?: never;
|
|
10088
|
+
header?: never;
|
|
10089
|
+
path: {
|
|
10090
|
+
conversation_id: TypeId<"conv">;
|
|
10091
|
+
};
|
|
10092
|
+
cookie?: never;
|
|
10093
|
+
};
|
|
10094
|
+
requestBody: {
|
|
10095
|
+
content: {
|
|
10096
|
+
"application/json": components["schemas"]["ContextCreateRequest"];
|
|
10097
|
+
};
|
|
10098
|
+
};
|
|
10099
|
+
responses: {
|
|
10100
|
+
/** @description Successful Response */
|
|
10101
|
+
201: {
|
|
10102
|
+
headers: {
|
|
10103
|
+
[name: string]: unknown;
|
|
10104
|
+
};
|
|
10105
|
+
content: {
|
|
10106
|
+
"application/json": components["schemas"]["Context"];
|
|
10107
|
+
};
|
|
10108
|
+
};
|
|
10109
|
+
/** @description Unauthorized */
|
|
10110
|
+
401: {
|
|
10111
|
+
headers: {
|
|
10112
|
+
[name: string]: unknown;
|
|
10113
|
+
};
|
|
10114
|
+
content: {
|
|
10115
|
+
/** @example {
|
|
10116
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10117
|
+
* "detail": "Additional error context.",
|
|
10118
|
+
* "status": 401,
|
|
10119
|
+
* "title": "Authentication Error",
|
|
10120
|
+
* "type": "authentication"
|
|
10121
|
+
* } */
|
|
10122
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10123
|
+
};
|
|
10124
|
+
};
|
|
10125
|
+
/** @description Not Found */
|
|
10126
|
+
404: {
|
|
10127
|
+
headers: {
|
|
10128
|
+
[name: string]: unknown;
|
|
10129
|
+
};
|
|
10130
|
+
content: {
|
|
10131
|
+
/** @example {
|
|
10132
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10133
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10134
|
+
* "status": 404,
|
|
10135
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10136
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10137
|
+
* } */
|
|
10138
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10139
|
+
};
|
|
10140
|
+
};
|
|
10141
|
+
/** @description Validation Error */
|
|
10142
|
+
422: {
|
|
10143
|
+
headers: {
|
|
10144
|
+
[name: string]: unknown;
|
|
10145
|
+
};
|
|
10146
|
+
content: {
|
|
10147
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10148
|
+
};
|
|
10149
|
+
};
|
|
10150
|
+
/** @description Bad Gateway */
|
|
10151
|
+
502: {
|
|
10152
|
+
headers: {
|
|
10153
|
+
[name: string]: unknown;
|
|
10154
|
+
};
|
|
10155
|
+
content: {
|
|
10156
|
+
/** @example {
|
|
10157
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10158
|
+
* "detail": "AI Concierge memory service error",
|
|
10159
|
+
* "status": 502,
|
|
10160
|
+
* "title": "AI Concierge memory service error.",
|
|
10161
|
+
* "type": "ai-concierge-memory"
|
|
10162
|
+
* } */
|
|
10163
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10164
|
+
};
|
|
10165
|
+
};
|
|
10166
|
+
};
|
|
10167
|
+
};
|
|
10168
|
+
list_messages_v1_ai_concierge_conversations__conversation_id__messages_get: {
|
|
10169
|
+
parameters: {
|
|
10170
|
+
query?: {
|
|
10171
|
+
page?: number;
|
|
10172
|
+
page_size?: number;
|
|
10173
|
+
/** @description If set, returns last N messages and overrides pagination. */
|
|
10174
|
+
recent?: number | null;
|
|
10175
|
+
/** @description Comma-separated tokens to exclude (case-insensitive). Supports `tools`. */
|
|
10176
|
+
exclude?: string | null;
|
|
10177
|
+
};
|
|
10178
|
+
header?: never;
|
|
10179
|
+
path: {
|
|
10180
|
+
conversation_id: TypeId<"conv">;
|
|
10181
|
+
};
|
|
10182
|
+
cookie?: never;
|
|
10183
|
+
};
|
|
10184
|
+
requestBody?: never;
|
|
10185
|
+
responses: {
|
|
10186
|
+
/** @description Successful Response */
|
|
10187
|
+
200: {
|
|
10188
|
+
headers: {
|
|
10189
|
+
[name: string]: unknown;
|
|
10190
|
+
};
|
|
10191
|
+
content: {
|
|
10192
|
+
"application/json": components["schemas"]["MessageListResponse"];
|
|
10193
|
+
};
|
|
10194
|
+
};
|
|
10195
|
+
/** @description Unauthorized */
|
|
10196
|
+
401: {
|
|
10197
|
+
headers: {
|
|
10198
|
+
[name: string]: unknown;
|
|
10199
|
+
};
|
|
10200
|
+
content: {
|
|
10201
|
+
/** @example {
|
|
10202
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10203
|
+
* "detail": "Additional error context.",
|
|
10204
|
+
* "status": 401,
|
|
10205
|
+
* "title": "Authentication Error",
|
|
10206
|
+
* "type": "authentication"
|
|
10207
|
+
* } */
|
|
10208
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10209
|
+
};
|
|
10210
|
+
};
|
|
10211
|
+
/** @description Not Found */
|
|
10212
|
+
404: {
|
|
10213
|
+
headers: {
|
|
10214
|
+
[name: string]: unknown;
|
|
10215
|
+
};
|
|
10216
|
+
content: {
|
|
10217
|
+
/** @example {
|
|
10218
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10219
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10220
|
+
* "status": 404,
|
|
10221
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10222
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10223
|
+
* } */
|
|
10224
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10225
|
+
};
|
|
10226
|
+
};
|
|
10227
|
+
/** @description Validation Error */
|
|
10228
|
+
422: {
|
|
10229
|
+
headers: {
|
|
10230
|
+
[name: string]: unknown;
|
|
10231
|
+
};
|
|
10232
|
+
content: {
|
|
10233
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10234
|
+
};
|
|
10235
|
+
};
|
|
10236
|
+
/** @description Bad Gateway */
|
|
10237
|
+
502: {
|
|
10238
|
+
headers: {
|
|
10239
|
+
[name: string]: unknown;
|
|
10240
|
+
};
|
|
10241
|
+
content: {
|
|
10242
|
+
/** @example {
|
|
10243
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10244
|
+
* "detail": "AI Concierge memory service error",
|
|
10245
|
+
* "status": 502,
|
|
10246
|
+
* "title": "AI Concierge memory service error.",
|
|
10247
|
+
* "type": "ai-concierge-memory"
|
|
10248
|
+
* } */
|
|
10249
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10250
|
+
};
|
|
10251
|
+
};
|
|
10252
|
+
};
|
|
10253
|
+
};
|
|
10254
|
+
create_message_v1_ai_concierge_conversations__conversation_id__messages_post: {
|
|
10255
|
+
parameters: {
|
|
10256
|
+
query?: never;
|
|
10257
|
+
header?: never;
|
|
10258
|
+
path: {
|
|
10259
|
+
conversation_id: TypeId<"conv">;
|
|
10260
|
+
};
|
|
10261
|
+
cookie?: never;
|
|
10262
|
+
};
|
|
10263
|
+
requestBody: {
|
|
10264
|
+
content: {
|
|
10265
|
+
"application/json": components["schemas"]["MessageCreateRequest"];
|
|
10266
|
+
};
|
|
10267
|
+
};
|
|
10268
|
+
responses: {
|
|
10269
|
+
/** @description Successful Response */
|
|
10270
|
+
201: {
|
|
10271
|
+
headers: {
|
|
10272
|
+
[name: string]: unknown;
|
|
10273
|
+
};
|
|
10274
|
+
content: {
|
|
10275
|
+
"application/json": components["schemas"]["Message"];
|
|
10276
|
+
};
|
|
10277
|
+
};
|
|
10278
|
+
/** @description Unauthorized */
|
|
10279
|
+
401: {
|
|
10280
|
+
headers: {
|
|
10281
|
+
[name: string]: unknown;
|
|
10282
|
+
};
|
|
10283
|
+
content: {
|
|
10284
|
+
/** @example {
|
|
10285
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10286
|
+
* "detail": "Additional error context.",
|
|
10287
|
+
* "status": 401,
|
|
10288
|
+
* "title": "Authentication Error",
|
|
10289
|
+
* "type": "authentication"
|
|
10290
|
+
* } */
|
|
10291
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10292
|
+
};
|
|
10293
|
+
};
|
|
10294
|
+
/** @description Not Found */
|
|
10295
|
+
404: {
|
|
10296
|
+
headers: {
|
|
10297
|
+
[name: string]: unknown;
|
|
10298
|
+
};
|
|
10299
|
+
content: {
|
|
10300
|
+
/** @example {
|
|
10301
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10302
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10303
|
+
* "status": 404,
|
|
10304
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10305
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10306
|
+
* } */
|
|
10307
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10308
|
+
};
|
|
10309
|
+
};
|
|
10310
|
+
/** @description Validation Error */
|
|
10311
|
+
422: {
|
|
10312
|
+
headers: {
|
|
10313
|
+
[name: string]: unknown;
|
|
10314
|
+
};
|
|
10315
|
+
content: {
|
|
10316
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10317
|
+
};
|
|
10318
|
+
};
|
|
10319
|
+
/** @description Bad Gateway */
|
|
10320
|
+
502: {
|
|
10321
|
+
headers: {
|
|
10322
|
+
[name: string]: unknown;
|
|
10323
|
+
};
|
|
10324
|
+
content: {
|
|
10325
|
+
/** @example {
|
|
10326
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10327
|
+
* "detail": "AI Concierge memory service error",
|
|
10328
|
+
* "status": 502,
|
|
10329
|
+
* "title": "AI Concierge memory service error.",
|
|
10330
|
+
* "type": "ai-concierge-memory"
|
|
10331
|
+
* } */
|
|
10332
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10333
|
+
};
|
|
10334
|
+
};
|
|
10335
|
+
};
|
|
10336
|
+
};
|
|
10337
|
+
get_message_v1_ai_concierge_conversations__conversation_id__messages__message_id__get: {
|
|
10338
|
+
parameters: {
|
|
10339
|
+
query?: never;
|
|
10340
|
+
header?: never;
|
|
10341
|
+
path: {
|
|
10342
|
+
conversation_id: TypeId<"conv">;
|
|
10343
|
+
message_id: TypeId<"msg">;
|
|
10344
|
+
};
|
|
10345
|
+
cookie?: never;
|
|
10346
|
+
};
|
|
10347
|
+
requestBody?: never;
|
|
10348
|
+
responses: {
|
|
10349
|
+
/** @description Successful Response */
|
|
10350
|
+
200: {
|
|
10351
|
+
headers: {
|
|
10352
|
+
[name: string]: unknown;
|
|
10353
|
+
};
|
|
10354
|
+
content: {
|
|
10355
|
+
"application/json": components["schemas"]["Message"];
|
|
10356
|
+
};
|
|
10357
|
+
};
|
|
10358
|
+
/** @description Unauthorized */
|
|
10359
|
+
401: {
|
|
10360
|
+
headers: {
|
|
10361
|
+
[name: string]: unknown;
|
|
10362
|
+
};
|
|
10363
|
+
content: {
|
|
10364
|
+
/** @example {
|
|
10365
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10366
|
+
* "detail": "Additional error context.",
|
|
10367
|
+
* "status": 401,
|
|
10368
|
+
* "title": "Authentication Error",
|
|
10369
|
+
* "type": "authentication"
|
|
10370
|
+
* } */
|
|
10371
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10372
|
+
};
|
|
10373
|
+
};
|
|
10374
|
+
/** @description Not Found */
|
|
10375
|
+
404: {
|
|
10376
|
+
headers: {
|
|
10377
|
+
[name: string]: unknown;
|
|
10378
|
+
};
|
|
10379
|
+
content: {
|
|
10380
|
+
/** @example {
|
|
10381
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10382
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10383
|
+
* "status": 404,
|
|
10384
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10385
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10386
|
+
* } */
|
|
10387
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10388
|
+
};
|
|
10389
|
+
};
|
|
10390
|
+
/** @description Validation Error */
|
|
10391
|
+
422: {
|
|
10392
|
+
headers: {
|
|
10393
|
+
[name: string]: unknown;
|
|
10394
|
+
};
|
|
10395
|
+
content: {
|
|
10396
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10397
|
+
};
|
|
10398
|
+
};
|
|
10399
|
+
/** @description Bad Gateway */
|
|
10400
|
+
502: {
|
|
10401
|
+
headers: {
|
|
10402
|
+
[name: string]: unknown;
|
|
10403
|
+
};
|
|
10404
|
+
content: {
|
|
10405
|
+
/** @example {
|
|
10406
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10407
|
+
* "detail": "AI Concierge memory service error",
|
|
10408
|
+
* "status": 502,
|
|
10409
|
+
* "title": "AI Concierge memory service error.",
|
|
10410
|
+
* "type": "ai-concierge-memory"
|
|
10411
|
+
* } */
|
|
10412
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10413
|
+
};
|
|
10414
|
+
};
|
|
10415
|
+
};
|
|
10416
|
+
};
|
|
10417
|
+
list_memory_facts_v1_ai_concierge_memory_facts_get: {
|
|
10418
|
+
parameters: {
|
|
10419
|
+
query?: {
|
|
10420
|
+
limit?: number;
|
|
10421
|
+
cursor?: string | null;
|
|
10422
|
+
kind?: string | null;
|
|
10423
|
+
};
|
|
10424
|
+
header?: never;
|
|
10425
|
+
path?: never;
|
|
10426
|
+
cookie?: never;
|
|
10427
|
+
};
|
|
10428
|
+
requestBody?: never;
|
|
10429
|
+
responses: {
|
|
10430
|
+
/** @description Successful Response */
|
|
10431
|
+
200: {
|
|
10432
|
+
headers: {
|
|
10433
|
+
[name: string]: unknown;
|
|
10434
|
+
};
|
|
10435
|
+
content: {
|
|
10436
|
+
"application/json": components["schemas"]["MemoryFactListResponse"];
|
|
10437
|
+
};
|
|
10438
|
+
};
|
|
10439
|
+
/** @description Unauthorized */
|
|
10440
|
+
401: {
|
|
10441
|
+
headers: {
|
|
10442
|
+
[name: string]: unknown;
|
|
10443
|
+
};
|
|
10444
|
+
content: {
|
|
10445
|
+
/** @example {
|
|
10446
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10447
|
+
* "detail": "Additional error context.",
|
|
10448
|
+
* "status": 401,
|
|
10449
|
+
* "title": "Authentication Error",
|
|
10450
|
+
* "type": "authentication"
|
|
10451
|
+
* } */
|
|
10452
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10453
|
+
};
|
|
10454
|
+
};
|
|
10455
|
+
/** @description Not Found */
|
|
10456
|
+
404: {
|
|
10457
|
+
headers: {
|
|
10458
|
+
[name: string]: unknown;
|
|
10459
|
+
};
|
|
10460
|
+
content: {
|
|
10461
|
+
/** @example {
|
|
10462
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10463
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10464
|
+
* "status": 404,
|
|
10465
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10466
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10467
|
+
* } */
|
|
10468
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10469
|
+
};
|
|
10470
|
+
};
|
|
10471
|
+
/** @description Validation Error */
|
|
10472
|
+
422: {
|
|
10473
|
+
headers: {
|
|
10474
|
+
[name: string]: unknown;
|
|
10475
|
+
};
|
|
10476
|
+
content: {
|
|
10477
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10478
|
+
};
|
|
10479
|
+
};
|
|
10480
|
+
/** @description Bad Gateway */
|
|
10481
|
+
502: {
|
|
10482
|
+
headers: {
|
|
10483
|
+
[name: string]: unknown;
|
|
10484
|
+
};
|
|
10485
|
+
content: {
|
|
10486
|
+
/** @example {
|
|
10487
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10488
|
+
* "detail": "AI Concierge memory service error",
|
|
10489
|
+
* "status": 502,
|
|
10490
|
+
* "title": "AI Concierge memory service error.",
|
|
10491
|
+
* "type": "ai-concierge-memory"
|
|
10492
|
+
* } */
|
|
10493
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10494
|
+
};
|
|
10495
|
+
};
|
|
10496
|
+
};
|
|
10497
|
+
};
|
|
10498
|
+
create_memory_fact_v1_ai_concierge_memory_facts_post: {
|
|
10499
|
+
parameters: {
|
|
10500
|
+
query?: never;
|
|
10501
|
+
header?: never;
|
|
10502
|
+
path?: never;
|
|
10503
|
+
cookie?: never;
|
|
10504
|
+
};
|
|
10505
|
+
requestBody: {
|
|
10506
|
+
content: {
|
|
10507
|
+
"application/json": components["schemas"]["MemoryFactCreateRequest"];
|
|
10508
|
+
};
|
|
10509
|
+
};
|
|
10510
|
+
responses: {
|
|
10511
|
+
/** @description Successful Response */
|
|
10512
|
+
201: {
|
|
10513
|
+
headers: {
|
|
10514
|
+
[name: string]: unknown;
|
|
10515
|
+
};
|
|
10516
|
+
content: {
|
|
10517
|
+
"application/json": components["schemas"]["MemoryFact"];
|
|
10518
|
+
};
|
|
10519
|
+
};
|
|
10520
|
+
/** @description Unauthorized */
|
|
10521
|
+
401: {
|
|
10522
|
+
headers: {
|
|
10523
|
+
[name: string]: unknown;
|
|
10524
|
+
};
|
|
10525
|
+
content: {
|
|
10526
|
+
/** @example {
|
|
10527
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10528
|
+
* "detail": "Additional error context.",
|
|
10529
|
+
* "status": 401,
|
|
10530
|
+
* "title": "Authentication Error",
|
|
10531
|
+
* "type": "authentication"
|
|
10532
|
+
* } */
|
|
10533
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10534
|
+
};
|
|
10535
|
+
};
|
|
10536
|
+
/** @description Not Found */
|
|
10537
|
+
404: {
|
|
10538
|
+
headers: {
|
|
10539
|
+
[name: string]: unknown;
|
|
10540
|
+
};
|
|
10541
|
+
content: {
|
|
10542
|
+
/** @example {
|
|
10543
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10544
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10545
|
+
* "status": 404,
|
|
10546
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10547
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10548
|
+
* } */
|
|
10549
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10550
|
+
};
|
|
10551
|
+
};
|
|
10552
|
+
/** @description Validation Error */
|
|
10553
|
+
422: {
|
|
10554
|
+
headers: {
|
|
10555
|
+
[name: string]: unknown;
|
|
10556
|
+
};
|
|
10557
|
+
content: {
|
|
10558
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10559
|
+
};
|
|
10560
|
+
};
|
|
10561
|
+
/** @description Bad Gateway */
|
|
10562
|
+
502: {
|
|
10563
|
+
headers: {
|
|
10564
|
+
[name: string]: unknown;
|
|
10565
|
+
};
|
|
10566
|
+
content: {
|
|
10567
|
+
/** @example {
|
|
10568
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10569
|
+
* "detail": "AI Concierge memory service error",
|
|
10570
|
+
* "status": 502,
|
|
10571
|
+
* "title": "AI Concierge memory service error.",
|
|
10572
|
+
* "type": "ai-concierge-memory"
|
|
10573
|
+
* } */
|
|
10574
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10575
|
+
};
|
|
10576
|
+
};
|
|
10577
|
+
};
|
|
10578
|
+
};
|
|
10579
|
+
delete_memory_fact_v1_ai_concierge_memory_facts__fact_id__delete: {
|
|
10580
|
+
parameters: {
|
|
10581
|
+
query?: never;
|
|
10582
|
+
header?: never;
|
|
10583
|
+
path: {
|
|
10584
|
+
fact_id: TypeId<"fact">;
|
|
10585
|
+
};
|
|
10586
|
+
cookie?: never;
|
|
10587
|
+
};
|
|
10588
|
+
requestBody?: never;
|
|
10589
|
+
responses: {
|
|
10590
|
+
/** @description Successful Response */
|
|
10591
|
+
204: {
|
|
10592
|
+
headers: {
|
|
10593
|
+
[name: string]: unknown;
|
|
10594
|
+
};
|
|
10595
|
+
content?: never;
|
|
10596
|
+
};
|
|
10597
|
+
/** @description Unauthorized */
|
|
10598
|
+
401: {
|
|
10599
|
+
headers: {
|
|
10600
|
+
[name: string]: unknown;
|
|
10601
|
+
};
|
|
10602
|
+
content: {
|
|
10603
|
+
/** @example {
|
|
10604
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10605
|
+
* "detail": "Additional error context.",
|
|
10606
|
+
* "status": 401,
|
|
10607
|
+
* "title": "Authentication Error",
|
|
10608
|
+
* "type": "authentication"
|
|
10609
|
+
* } */
|
|
10610
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10611
|
+
};
|
|
10612
|
+
};
|
|
10613
|
+
/** @description Not Found */
|
|
10614
|
+
404: {
|
|
10615
|
+
headers: {
|
|
10616
|
+
[name: string]: unknown;
|
|
10617
|
+
};
|
|
10618
|
+
content: {
|
|
10619
|
+
/** @example {
|
|
10620
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10621
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10622
|
+
* "status": 404,
|
|
10623
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10624
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10625
|
+
* } */
|
|
10626
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10627
|
+
};
|
|
10628
|
+
};
|
|
10629
|
+
/** @description Validation Error */
|
|
10630
|
+
422: {
|
|
10631
|
+
headers: {
|
|
10632
|
+
[name: string]: unknown;
|
|
10633
|
+
};
|
|
10634
|
+
content: {
|
|
10635
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10636
|
+
};
|
|
10637
|
+
};
|
|
10638
|
+
/** @description Bad Gateway */
|
|
10639
|
+
502: {
|
|
10640
|
+
headers: {
|
|
10641
|
+
[name: string]: unknown;
|
|
10642
|
+
};
|
|
10643
|
+
content: {
|
|
10644
|
+
/** @example {
|
|
10645
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10646
|
+
* "detail": "AI Concierge memory service error",
|
|
10647
|
+
* "status": 502,
|
|
10648
|
+
* "title": "AI Concierge memory service error.",
|
|
10649
|
+
* "type": "ai-concierge-memory"
|
|
10650
|
+
* } */
|
|
10651
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10652
|
+
};
|
|
10653
|
+
};
|
|
10654
|
+
};
|
|
10655
|
+
};
|
|
10656
|
+
patch_memory_fact_v1_ai_concierge_memory_facts__fact_id__patch: {
|
|
10657
|
+
parameters: {
|
|
10658
|
+
query?: never;
|
|
10659
|
+
header?: never;
|
|
10660
|
+
path: {
|
|
10661
|
+
fact_id: TypeId<"fact">;
|
|
10662
|
+
};
|
|
10663
|
+
cookie?: never;
|
|
10664
|
+
};
|
|
10665
|
+
requestBody: {
|
|
10666
|
+
content: {
|
|
10667
|
+
"application/json": components["schemas"]["MemoryFactPatchRequest"];
|
|
10668
|
+
};
|
|
10669
|
+
};
|
|
10670
|
+
responses: {
|
|
10671
|
+
/** @description Successful Response */
|
|
10672
|
+
200: {
|
|
10673
|
+
headers: {
|
|
10674
|
+
[name: string]: unknown;
|
|
10675
|
+
};
|
|
10676
|
+
content: {
|
|
10677
|
+
"application/json": components["schemas"]["MemoryFact"];
|
|
10678
|
+
};
|
|
10679
|
+
};
|
|
10680
|
+
/** @description Unauthorized */
|
|
10681
|
+
401: {
|
|
10682
|
+
headers: {
|
|
10683
|
+
[name: string]: unknown;
|
|
10684
|
+
};
|
|
10685
|
+
content: {
|
|
10686
|
+
/** @example {
|
|
10687
|
+
* "code": "ERROR_AUTHENTICATION",
|
|
10688
|
+
* "detail": "Additional error context.",
|
|
10689
|
+
* "status": 401,
|
|
10690
|
+
* "title": "Authentication Error",
|
|
10691
|
+
* "type": "authentication"
|
|
10692
|
+
* } */
|
|
10693
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10694
|
+
};
|
|
10695
|
+
};
|
|
10696
|
+
/** @description Not Found */
|
|
10697
|
+
404: {
|
|
10698
|
+
headers: {
|
|
10699
|
+
[name: string]: unknown;
|
|
10700
|
+
};
|
|
10701
|
+
content: {
|
|
10702
|
+
/** @example {
|
|
10703
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10704
|
+
* "detail": "AI Concierge memory resource not found",
|
|
10705
|
+
* "status": 404,
|
|
10706
|
+
* "title": "AI Concierge memory resource not found.",
|
|
10707
|
+
* "type": "ai-concierge-memory-not-found"
|
|
10708
|
+
* } */
|
|
10709
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10710
|
+
};
|
|
10711
|
+
};
|
|
10712
|
+
/** @description Validation Error */
|
|
10713
|
+
422: {
|
|
10714
|
+
headers: {
|
|
10715
|
+
[name: string]: unknown;
|
|
10716
|
+
};
|
|
10717
|
+
content: {
|
|
10718
|
+
"application/problem+json": components["schemas"]["HTTPValidationError"];
|
|
10719
|
+
};
|
|
10720
|
+
};
|
|
10721
|
+
/** @description Bad Gateway */
|
|
10722
|
+
502: {
|
|
10723
|
+
headers: {
|
|
10724
|
+
[name: string]: unknown;
|
|
10725
|
+
};
|
|
10726
|
+
content: {
|
|
10727
|
+
/** @example {
|
|
10728
|
+
* "code": "ERROR_AI_CONCIERGE",
|
|
10729
|
+
* "detail": "AI Concierge memory service error",
|
|
10730
|
+
* "status": 502,
|
|
10731
|
+
* "title": "AI Concierge memory service error.",
|
|
10732
|
+
* "type": "ai-concierge-memory"
|
|
10733
|
+
* } */
|
|
10734
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
10735
|
+
};
|
|
10736
|
+
};
|
|
10737
|
+
};
|
|
10738
|
+
};
|
|
10739
|
+
get_email_forward_logs_by_alias_v1_archive_email_forward_logs_aliases__email_forward_alias_id__get: {
|
|
10740
|
+
parameters: {
|
|
10741
|
+
query: {
|
|
10742
|
+
email_forward_id: TypeId<"email_forward">;
|
|
10743
|
+
sort_by?: components["schemas"]["EmailForwardLogSortField"];
|
|
10744
|
+
sort_order?: components["schemas"]["SortOrder"];
|
|
10745
|
+
page_size?: number;
|
|
10746
|
+
page?: number;
|
|
10747
|
+
final_status?: components["schemas"]["EmailForwardLogStatus"] | null;
|
|
10748
|
+
start_time?: Date | null;
|
|
10749
|
+
end_time?: Date | null;
|
|
10750
|
+
};
|
|
10751
|
+
header?: never;
|
|
10752
|
+
path: {
|
|
10753
|
+
email_forward_alias_id: TypeId<"email_forward_alias">;
|
|
10754
|
+
};
|
|
10755
|
+
cookie?: never;
|
|
10756
|
+
};
|
|
10757
|
+
requestBody?: never;
|
|
10758
|
+
responses: {
|
|
10759
|
+
/** @description Successful Response */
|
|
10760
|
+
200: {
|
|
10761
|
+
headers: {
|
|
10762
|
+
[name: string]: unknown;
|
|
10763
|
+
};
|
|
10764
|
+
content: {
|
|
10765
|
+
"application/json": components["schemas"]["Pagination_EmailForwardLog_"];
|
|
10766
|
+
};
|
|
10767
|
+
};
|
|
10768
|
+
/** @description Validation Error */
|
|
10769
|
+
422: {
|
|
9143
10770
|
headers: {
|
|
9144
10771
|
[name: string]: unknown;
|
|
9145
10772
|
};
|
|
@@ -13324,6 +14951,24 @@ export interface operations {
|
|
|
13324
14951
|
"application/problem+json": components["schemas"]["Problem"];
|
|
13325
14952
|
};
|
|
13326
14953
|
};
|
|
14954
|
+
/** @description Forbidden */
|
|
14955
|
+
403: {
|
|
14956
|
+
headers: {
|
|
14957
|
+
[name: string]: unknown;
|
|
14958
|
+
};
|
|
14959
|
+
content: {
|
|
14960
|
+
/** @example {
|
|
14961
|
+
* "code": "ERROR_DOMAIN_TRANSFER_INVALID_AUTH_CODE",
|
|
14962
|
+
* "detail": "There was an error transferring the domain",
|
|
14963
|
+
* "domain_name": "Additional error context.",
|
|
14964
|
+
* "reason": "Domain transfer failed, invalid auth code provided",
|
|
14965
|
+
* "status": 403,
|
|
14966
|
+
* "title": "Domain Transfer Error",
|
|
14967
|
+
* "type": "domain-transfer-invalid-auth"
|
|
14968
|
+
* } */
|
|
14969
|
+
"application/problem+json": components["schemas"]["Problem"];
|
|
14970
|
+
};
|
|
14971
|
+
};
|
|
13327
14972
|
/** @description Not Found */
|
|
13328
14973
|
404: {
|
|
13329
14974
|
headers: {
|
|
@@ -13347,14 +14992,6 @@ export interface operations {
|
|
|
13347
14992
|
[name: string]: unknown;
|
|
13348
14993
|
};
|
|
13349
14994
|
content: {
|
|
13350
|
-
/** @example {
|
|
13351
|
-
* "code": "ERROR_DOMAIN_EXISTS",
|
|
13352
|
-
* "detail": "Domain already exists",
|
|
13353
|
-
* "domain_name": "Additional error context.",
|
|
13354
|
-
* "status": 409,
|
|
13355
|
-
* "title": "Domain Management Error",
|
|
13356
|
-
* "type": "domain-exists"
|
|
13357
|
-
* } */
|
|
13358
14995
|
"application/problem+json": components["schemas"]["Problem"];
|
|
13359
14996
|
};
|
|
13360
14997
|
};
|