-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetamessages.ts
161 lines (130 loc) · 3.49 KB
/
metamessages.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../../resource';
import * as Core from '../../../../core';
import { Page, type PageParams } from '../../../../pagination';
export class Metamessages extends APIResource {
/**
* Adds a message to a session
*/
create(
appId: string,
userId: string,
sessionId: string,
body: MetamessageCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<Metamessage> {
return this._client.post(`/v1/apps/${appId}/users/${userId}/sessions/${sessionId}/metamessages`, {
body,
...options,
});
}
/**
* Update's the metadata of a metamessage
*/
update(
appId: string,
userId: string,
sessionId: string,
metamessageId: string,
body: MetamessageUpdateParams,
options?: Core.RequestOptions,
): Core.APIPromise<Metamessage> {
return this._client.put(
`/v1/apps/${appId}/users/${userId}/sessions/${sessionId}/metamessages/${metamessageId}`,
{ body, ...options },
);
}
/**
* Get all messages for a session
*/
list(
appId: string,
userId: string,
sessionId: string,
params: MetamessageListParams,
options?: Core.RequestOptions,
): Core.PagePromise<MetamessagesPage, Metamessage> {
const { page, reverse, size, ...body } = params;
return this._client.getAPIList(
`/v1/apps/${appId}/users/${userId}/sessions/${sessionId}/metamessages/list`,
MetamessagesPage,
{ query: { page, reverse, size }, body, method: 'post', ...options },
);
}
/**
* Get a specific Metamessage by ID
*/
get(
appId: string,
userId: string,
sessionId: string,
metamessageId: string,
query: MetamessageGetParams,
options?: Core.RequestOptions,
): Core.APIPromise<Metamessage> {
return this._client.get(
`/v1/apps/${appId}/users/${userId}/sessions/${sessionId}/metamessages/${metamessageId}`,
{ query, ...options },
);
}
}
export class MetamessagesPage extends Page<Metamessage> {}
export interface Metamessage {
id: string;
content: string;
created_at: string;
message_id: string;
metadata: Record<string, unknown>;
metamessage_type: string;
}
export interface PageMetamessage {
items: Array<Metamessage>;
page: number;
size: number;
total: number;
pages?: number;
}
export interface MetamessageCreateParams {
content: string;
message_id: string;
metamessage_type: string;
metadata?: Record<string, unknown>;
}
export interface MetamessageUpdateParams {
message_id: string;
metadata?: Record<string, unknown> | null;
metamessage_type?: string | null;
}
export interface MetamessageListParams extends PageParams {
/**
* Query param:
*/
reverse?: boolean | null;
/**
* Body param:
*/
filter?: Record<string, unknown> | null;
/**
* Body param:
*/
message_id?: string | null;
/**
* Body param:
*/
metamessage_type?: string | null;
}
export interface MetamessageGetParams {
message_id: string;
}
Metamessages.MetamessagesPage = MetamessagesPage;
export declare namespace Metamessages {
export {
type Metamessage as Metamessage,
type PageMetamessage as PageMetamessage,
MetamessagesPage as MetamessagesPage,
type MetamessageCreateParams as MetamessageCreateParams,
type MetamessageUpdateParams as MetamessageUpdateParams,
type MetamessageListParams as MetamessageListParams,
type MetamessageGetParams as MetamessageGetParams,
};
}