bopodev-db 0.1.1
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/.turbo/turbo-build.log +5 -0
- package/.turbo/turbo-lint.log +4 -0
- package/.turbo/turbo-typecheck.log +4 -0
- package/LICENSE +21 -0
- package/dist/bootstrap.d.ts +6 -0
- package/dist/client.d.ts +10 -0
- package/dist/index.d.ts +4 -0
- package/dist/repositories.d.ts +424 -0
- package/dist/schema.d.ts +4027 -0
- package/package.json +19 -0
- package/src/bootstrap.ts +213 -0
- package/src/client.ts +16 -0
- package/src/index.ts +4 -0
- package/src/repositories.ts +769 -0
- package/src/schema.ts +226 -0
- package/tsconfig.json +9 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 BopoHQ contributors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/dist/client.d.ts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { PGlite } from "@electric-sql/pglite";
|
|
2
|
+
import { drizzle } from "drizzle-orm/pglite";
|
|
3
|
+
import * as dbSchema from "./schema";
|
|
4
|
+
export type BopoDb = ReturnType<typeof drizzle<typeof dbSchema>>;
|
|
5
|
+
export declare function createDb(dbPath?: string): Promise<{
|
|
6
|
+
db: import("drizzle-orm/pglite").PgliteDatabase<typeof dbSchema> & {
|
|
7
|
+
$client: PGlite;
|
|
8
|
+
};
|
|
9
|
+
client: PGlite;
|
|
10
|
+
}>;
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,424 @@
|
|
|
1
|
+
import type { BopoDb } from "./client";
|
|
2
|
+
export declare class RepositoryValidationError extends Error {
|
|
3
|
+
constructor(message: string);
|
|
4
|
+
}
|
|
5
|
+
export declare function createCompany(db: BopoDb, input: {
|
|
6
|
+
name: string;
|
|
7
|
+
mission?: string | null;
|
|
8
|
+
}): Promise<{
|
|
9
|
+
name: string;
|
|
10
|
+
mission?: string | null;
|
|
11
|
+
id: string;
|
|
12
|
+
}>;
|
|
13
|
+
export declare function listCompanies(db: BopoDb): Promise<{
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
mission: string | null;
|
|
17
|
+
createdAt: Date;
|
|
18
|
+
}[]>;
|
|
19
|
+
export declare function updateCompany(db: BopoDb, input: {
|
|
20
|
+
id: string;
|
|
21
|
+
name?: string;
|
|
22
|
+
mission?: string | null;
|
|
23
|
+
}): Promise<{
|
|
24
|
+
id: string;
|
|
25
|
+
name: string;
|
|
26
|
+
mission: string | null;
|
|
27
|
+
createdAt: Date;
|
|
28
|
+
} | null>;
|
|
29
|
+
export declare function deleteCompany(db: BopoDb, id: string): Promise<boolean>;
|
|
30
|
+
export declare function listProjects(db: BopoDb, companyId: string): Promise<{
|
|
31
|
+
id: string;
|
|
32
|
+
companyId: string;
|
|
33
|
+
name: string;
|
|
34
|
+
description: string | null;
|
|
35
|
+
status: string;
|
|
36
|
+
plannedStartAt: Date | null;
|
|
37
|
+
workspaceLocalPath: string | null;
|
|
38
|
+
workspaceGithubRepo: string | null;
|
|
39
|
+
createdAt: Date;
|
|
40
|
+
}[]>;
|
|
41
|
+
export declare function createProject(db: BopoDb, input: {
|
|
42
|
+
companyId: string;
|
|
43
|
+
name: string;
|
|
44
|
+
description?: string | null;
|
|
45
|
+
status?: "planned" | "active" | "paused" | "blocked" | "completed" | "archived";
|
|
46
|
+
plannedStartAt?: Date | null;
|
|
47
|
+
workspaceLocalPath?: string | null;
|
|
48
|
+
workspaceGithubRepo?: string | null;
|
|
49
|
+
}): Promise<{
|
|
50
|
+
companyId: string;
|
|
51
|
+
name: string;
|
|
52
|
+
description?: string | null;
|
|
53
|
+
status?: "planned" | "active" | "paused" | "blocked" | "completed" | "archived";
|
|
54
|
+
plannedStartAt?: Date | null;
|
|
55
|
+
workspaceLocalPath?: string | null;
|
|
56
|
+
workspaceGithubRepo?: string | null;
|
|
57
|
+
id: string;
|
|
58
|
+
}>;
|
|
59
|
+
export declare function updateProject(db: BopoDb, input: {
|
|
60
|
+
companyId: string;
|
|
61
|
+
id: string;
|
|
62
|
+
name?: string;
|
|
63
|
+
description?: string | null;
|
|
64
|
+
status?: "planned" | "active" | "paused" | "blocked" | "completed" | "archived";
|
|
65
|
+
plannedStartAt?: Date | null;
|
|
66
|
+
workspaceLocalPath?: string | null;
|
|
67
|
+
workspaceGithubRepo?: string | null;
|
|
68
|
+
}): Promise<{
|
|
69
|
+
id: string;
|
|
70
|
+
companyId: string;
|
|
71
|
+
name: string;
|
|
72
|
+
description: string | null;
|
|
73
|
+
status: string;
|
|
74
|
+
plannedStartAt: Date | null;
|
|
75
|
+
workspaceLocalPath: string | null;
|
|
76
|
+
workspaceGithubRepo: string | null;
|
|
77
|
+
createdAt: Date;
|
|
78
|
+
} | null>;
|
|
79
|
+
export declare function syncProjectGoals(db: BopoDb, input: {
|
|
80
|
+
companyId: string;
|
|
81
|
+
projectId: string;
|
|
82
|
+
goalIds: string[];
|
|
83
|
+
}): Promise<void>;
|
|
84
|
+
export declare function deleteProject(db: BopoDb, companyId: string, id: string): Promise<boolean>;
|
|
85
|
+
export declare function listIssues(db: BopoDb, companyId: string, projectId?: string): Promise<{
|
|
86
|
+
id: string;
|
|
87
|
+
companyId: string;
|
|
88
|
+
projectId: string;
|
|
89
|
+
parentIssueId: string | null;
|
|
90
|
+
title: string;
|
|
91
|
+
body: string | null;
|
|
92
|
+
status: string;
|
|
93
|
+
priority: string;
|
|
94
|
+
assigneeAgentId: string | null;
|
|
95
|
+
labelsJson: string;
|
|
96
|
+
tagsJson: string;
|
|
97
|
+
isClaimed: boolean;
|
|
98
|
+
claimedByHeartbeatRunId: string | null;
|
|
99
|
+
createdAt: Date;
|
|
100
|
+
updatedAt: Date;
|
|
101
|
+
}[]>;
|
|
102
|
+
export declare function createIssue(db: BopoDb, input: {
|
|
103
|
+
companyId: string;
|
|
104
|
+
projectId: string;
|
|
105
|
+
parentIssueId?: string | null;
|
|
106
|
+
title: string;
|
|
107
|
+
body?: string;
|
|
108
|
+
status?: string;
|
|
109
|
+
priority?: string;
|
|
110
|
+
assigneeAgentId?: string | null;
|
|
111
|
+
labels?: string[];
|
|
112
|
+
tags?: string[];
|
|
113
|
+
}): Promise<{
|
|
114
|
+
companyId: string;
|
|
115
|
+
projectId: string;
|
|
116
|
+
parentIssueId?: string | null;
|
|
117
|
+
title: string;
|
|
118
|
+
body?: string;
|
|
119
|
+
status?: string;
|
|
120
|
+
priority?: string;
|
|
121
|
+
assigneeAgentId?: string | null;
|
|
122
|
+
labels?: string[];
|
|
123
|
+
tags?: string[];
|
|
124
|
+
id: string;
|
|
125
|
+
}>;
|
|
126
|
+
export declare function updateIssue(db: BopoDb, input: {
|
|
127
|
+
companyId: string;
|
|
128
|
+
id: string;
|
|
129
|
+
projectId?: string;
|
|
130
|
+
title?: string;
|
|
131
|
+
body?: string | null;
|
|
132
|
+
status?: string;
|
|
133
|
+
priority?: string;
|
|
134
|
+
assigneeAgentId?: string | null;
|
|
135
|
+
labels?: string[];
|
|
136
|
+
tags?: string[];
|
|
137
|
+
}): Promise<{
|
|
138
|
+
id: string;
|
|
139
|
+
companyId: string;
|
|
140
|
+
projectId: string;
|
|
141
|
+
parentIssueId: string | null;
|
|
142
|
+
title: string;
|
|
143
|
+
body: string | null;
|
|
144
|
+
status: string;
|
|
145
|
+
priority: string;
|
|
146
|
+
assigneeAgentId: string | null;
|
|
147
|
+
labelsJson: string;
|
|
148
|
+
tagsJson: string;
|
|
149
|
+
isClaimed: boolean;
|
|
150
|
+
claimedByHeartbeatRunId: string | null;
|
|
151
|
+
createdAt: Date;
|
|
152
|
+
updatedAt: Date;
|
|
153
|
+
} | null>;
|
|
154
|
+
export declare function deleteIssue(db: BopoDb, companyId: string, id: string): Promise<boolean>;
|
|
155
|
+
export declare function addIssueComment(db: BopoDb, input: {
|
|
156
|
+
companyId: string;
|
|
157
|
+
issueId: string;
|
|
158
|
+
authorType: "human" | "agent" | "system";
|
|
159
|
+
authorId?: string | null;
|
|
160
|
+
body: string;
|
|
161
|
+
}): Promise<{
|
|
162
|
+
companyId: string;
|
|
163
|
+
issueId: string;
|
|
164
|
+
authorType: "human" | "agent" | "system";
|
|
165
|
+
authorId?: string | null;
|
|
166
|
+
body: string;
|
|
167
|
+
id: string;
|
|
168
|
+
}>;
|
|
169
|
+
export declare function listIssueComments(db: BopoDb, companyId: string, issueId: string): Promise<{
|
|
170
|
+
id: string;
|
|
171
|
+
issueId: string;
|
|
172
|
+
companyId: string;
|
|
173
|
+
authorType: string;
|
|
174
|
+
authorId: string | null;
|
|
175
|
+
body: string;
|
|
176
|
+
createdAt: Date;
|
|
177
|
+
}[]>;
|
|
178
|
+
export declare function updateIssueComment(db: BopoDb, input: {
|
|
179
|
+
companyId: string;
|
|
180
|
+
issueId: string;
|
|
181
|
+
id: string;
|
|
182
|
+
body: string;
|
|
183
|
+
}): Promise<{
|
|
184
|
+
id: string;
|
|
185
|
+
issueId: string;
|
|
186
|
+
companyId: string;
|
|
187
|
+
authorType: string;
|
|
188
|
+
authorId: string | null;
|
|
189
|
+
body: string;
|
|
190
|
+
createdAt: Date;
|
|
191
|
+
} | null>;
|
|
192
|
+
export declare function deleteIssueComment(db: BopoDb, companyId: string, issueId: string, id: string): Promise<boolean>;
|
|
193
|
+
export declare function createGoal(db: BopoDb, input: {
|
|
194
|
+
companyId: string;
|
|
195
|
+
projectId?: string | null;
|
|
196
|
+
parentGoalId?: string | null;
|
|
197
|
+
level: "company" | "project" | "agent";
|
|
198
|
+
title: string;
|
|
199
|
+
description?: string;
|
|
200
|
+
}): Promise<{
|
|
201
|
+
companyId: string;
|
|
202
|
+
projectId?: string | null;
|
|
203
|
+
parentGoalId?: string | null;
|
|
204
|
+
level: "company" | "project" | "agent";
|
|
205
|
+
title: string;
|
|
206
|
+
description?: string;
|
|
207
|
+
id: string;
|
|
208
|
+
}>;
|
|
209
|
+
export declare function listGoals(db: BopoDb, companyId: string): Promise<{
|
|
210
|
+
id: string;
|
|
211
|
+
companyId: string;
|
|
212
|
+
projectId: string | null;
|
|
213
|
+
parentGoalId: string | null;
|
|
214
|
+
level: string;
|
|
215
|
+
title: string;
|
|
216
|
+
description: string | null;
|
|
217
|
+
status: string;
|
|
218
|
+
createdAt: Date;
|
|
219
|
+
updatedAt: Date;
|
|
220
|
+
}[]>;
|
|
221
|
+
export declare function updateGoal(db: BopoDb, input: {
|
|
222
|
+
companyId: string;
|
|
223
|
+
id: string;
|
|
224
|
+
projectId?: string | null;
|
|
225
|
+
parentGoalId?: string | null;
|
|
226
|
+
level?: "company" | "project" | "agent";
|
|
227
|
+
title?: string;
|
|
228
|
+
description?: string | null;
|
|
229
|
+
status?: string;
|
|
230
|
+
}): Promise<{
|
|
231
|
+
id: string;
|
|
232
|
+
companyId: string;
|
|
233
|
+
projectId: string | null;
|
|
234
|
+
parentGoalId: string | null;
|
|
235
|
+
level: string;
|
|
236
|
+
title: string;
|
|
237
|
+
description: string | null;
|
|
238
|
+
status: string;
|
|
239
|
+
createdAt: Date;
|
|
240
|
+
updatedAt: Date;
|
|
241
|
+
} | null>;
|
|
242
|
+
export declare function deleteGoal(db: BopoDb, companyId: string, id: string): Promise<boolean>;
|
|
243
|
+
export declare function createAgent(db: BopoDb, input: {
|
|
244
|
+
companyId: string;
|
|
245
|
+
managerAgentId?: string | null;
|
|
246
|
+
role: string;
|
|
247
|
+
name: string;
|
|
248
|
+
providerType: "claude_code" | "codex" | "http" | "shell";
|
|
249
|
+
heartbeatCron: string;
|
|
250
|
+
monthlyBudgetUsd: string;
|
|
251
|
+
canHireAgents?: boolean;
|
|
252
|
+
initialState?: Record<string, unknown>;
|
|
253
|
+
}): Promise<{
|
|
254
|
+
companyId: string;
|
|
255
|
+
managerAgentId?: string | null;
|
|
256
|
+
role: string;
|
|
257
|
+
name: string;
|
|
258
|
+
providerType: "claude_code" | "codex" | "http" | "shell";
|
|
259
|
+
heartbeatCron: string;
|
|
260
|
+
monthlyBudgetUsd: string;
|
|
261
|
+
canHireAgents?: boolean;
|
|
262
|
+
initialState?: Record<string, unknown>;
|
|
263
|
+
id: string;
|
|
264
|
+
}>;
|
|
265
|
+
export declare function listAgents(db: BopoDb, companyId: string): Promise<{
|
|
266
|
+
id: string;
|
|
267
|
+
companyId: string;
|
|
268
|
+
managerAgentId: string | null;
|
|
269
|
+
role: string;
|
|
270
|
+
name: string;
|
|
271
|
+
providerType: string;
|
|
272
|
+
status: string;
|
|
273
|
+
heartbeatCron: string;
|
|
274
|
+
monthlyBudgetUsd: string;
|
|
275
|
+
usedBudgetUsd: string;
|
|
276
|
+
tokenUsage: number;
|
|
277
|
+
canHireAgents: boolean;
|
|
278
|
+
stateBlob: string;
|
|
279
|
+
createdAt: Date;
|
|
280
|
+
updatedAt: Date;
|
|
281
|
+
}[]>;
|
|
282
|
+
export declare function updateAgent(db: BopoDb, input: {
|
|
283
|
+
companyId: string;
|
|
284
|
+
id: string;
|
|
285
|
+
managerAgentId?: string | null;
|
|
286
|
+
role?: string;
|
|
287
|
+
name?: string;
|
|
288
|
+
providerType?: "claude_code" | "codex" | "http" | "shell";
|
|
289
|
+
status?: string;
|
|
290
|
+
heartbeatCron?: string;
|
|
291
|
+
monthlyBudgetUsd?: string;
|
|
292
|
+
canHireAgents?: boolean;
|
|
293
|
+
stateBlob?: Record<string, unknown>;
|
|
294
|
+
}): Promise<{
|
|
295
|
+
id: string;
|
|
296
|
+
companyId: string;
|
|
297
|
+
managerAgentId: string | null;
|
|
298
|
+
role: string;
|
|
299
|
+
name: string;
|
|
300
|
+
providerType: string;
|
|
301
|
+
status: string;
|
|
302
|
+
heartbeatCron: string;
|
|
303
|
+
monthlyBudgetUsd: string;
|
|
304
|
+
usedBudgetUsd: string;
|
|
305
|
+
tokenUsage: number;
|
|
306
|
+
canHireAgents: boolean;
|
|
307
|
+
stateBlob: string;
|
|
308
|
+
createdAt: Date;
|
|
309
|
+
updatedAt: Date;
|
|
310
|
+
} | null>;
|
|
311
|
+
export declare function deleteAgent(db: BopoDb, companyId: string, id: string): Promise<boolean>;
|
|
312
|
+
export declare function appendAuditEvent(db: BopoDb, input: {
|
|
313
|
+
companyId: string;
|
|
314
|
+
actorType: "human" | "agent" | "system";
|
|
315
|
+
actorId?: string | null;
|
|
316
|
+
eventType: string;
|
|
317
|
+
entityType: string;
|
|
318
|
+
entityId: string;
|
|
319
|
+
correlationId?: string | null;
|
|
320
|
+
payload: Record<string, unknown>;
|
|
321
|
+
}): Promise<string>;
|
|
322
|
+
export declare function listAuditEvents(db: BopoDb, companyId: string, limit?: number): Promise<{
|
|
323
|
+
id: string;
|
|
324
|
+
companyId: string;
|
|
325
|
+
actorType: string;
|
|
326
|
+
actorId: string | null;
|
|
327
|
+
eventType: string;
|
|
328
|
+
entityType: string;
|
|
329
|
+
entityId: string;
|
|
330
|
+
correlationId: string | null;
|
|
331
|
+
payloadJson: string;
|
|
332
|
+
createdAt: Date;
|
|
333
|
+
}[]>;
|
|
334
|
+
export declare function createApprovalRequest(db: BopoDb, input: {
|
|
335
|
+
companyId: string;
|
|
336
|
+
requestedByAgentId?: string | null;
|
|
337
|
+
action: string;
|
|
338
|
+
payload: Record<string, unknown>;
|
|
339
|
+
}): Promise<string>;
|
|
340
|
+
export declare function getApprovalRequest(db: BopoDb, companyId: string, approvalId: string): Promise<{
|
|
341
|
+
id: string;
|
|
342
|
+
companyId: string;
|
|
343
|
+
requestedByAgentId: string | null;
|
|
344
|
+
action: string;
|
|
345
|
+
payloadJson: string;
|
|
346
|
+
status: string;
|
|
347
|
+
createdAt: Date;
|
|
348
|
+
resolvedAt: Date | null;
|
|
349
|
+
} | null>;
|
|
350
|
+
export declare function listApprovalRequests(db: BopoDb, companyId: string): Promise<{
|
|
351
|
+
id: string;
|
|
352
|
+
companyId: string;
|
|
353
|
+
requestedByAgentId: string | null;
|
|
354
|
+
action: string;
|
|
355
|
+
payloadJson: string;
|
|
356
|
+
status: string;
|
|
357
|
+
createdAt: Date;
|
|
358
|
+
resolvedAt: Date | null;
|
|
359
|
+
}[]>;
|
|
360
|
+
export declare function listApprovalInboxStates(db: BopoDb, companyId: string, actorId: string): Promise<{
|
|
361
|
+
companyId: string;
|
|
362
|
+
actorId: string;
|
|
363
|
+
approvalId: string;
|
|
364
|
+
seenAt: Date | null;
|
|
365
|
+
dismissedAt: Date | null;
|
|
366
|
+
createdAt: Date;
|
|
367
|
+
updatedAt: Date;
|
|
368
|
+
}[]>;
|
|
369
|
+
export declare function markApprovalInboxSeen(db: BopoDb, input: {
|
|
370
|
+
companyId: string;
|
|
371
|
+
actorId: string;
|
|
372
|
+
approvalId: string;
|
|
373
|
+
seenAt?: Date;
|
|
374
|
+
}): Promise<void>;
|
|
375
|
+
export declare function markApprovalInboxDismissed(db: BopoDb, input: {
|
|
376
|
+
companyId: string;
|
|
377
|
+
actorId: string;
|
|
378
|
+
approvalId: string;
|
|
379
|
+
dismissedAt?: Date;
|
|
380
|
+
}): Promise<void>;
|
|
381
|
+
export declare function clearApprovalInboxDismissed(db: BopoDb, input: {
|
|
382
|
+
companyId: string;
|
|
383
|
+
actorId: string;
|
|
384
|
+
approvalId: string;
|
|
385
|
+
}): Promise<void>;
|
|
386
|
+
export declare function appendCost(db: BopoDb, input: {
|
|
387
|
+
companyId: string;
|
|
388
|
+
providerType: string;
|
|
389
|
+
tokenInput: number;
|
|
390
|
+
tokenOutput: number;
|
|
391
|
+
usdCost: string;
|
|
392
|
+
projectId?: string | null;
|
|
393
|
+
issueId?: string | null;
|
|
394
|
+
agentId?: string | null;
|
|
395
|
+
}): Promise<string>;
|
|
396
|
+
export declare function listCostEntries(db: BopoDb, companyId: string, limit?: number): Promise<{
|
|
397
|
+
id: string;
|
|
398
|
+
companyId: string;
|
|
399
|
+
projectId: string | null;
|
|
400
|
+
issueId: string | null;
|
|
401
|
+
agentId: string | null;
|
|
402
|
+
providerType: string;
|
|
403
|
+
tokenInput: number;
|
|
404
|
+
tokenOutput: number;
|
|
405
|
+
usdCost: string;
|
|
406
|
+
createdAt: Date;
|
|
407
|
+
}[]>;
|
|
408
|
+
export declare function listHeartbeatRuns(db: BopoDb, companyId: string, limit?: number): Promise<{
|
|
409
|
+
id: string;
|
|
410
|
+
companyId: string;
|
|
411
|
+
agentId: string;
|
|
412
|
+
status: string;
|
|
413
|
+
startedAt: Date;
|
|
414
|
+
finishedAt: Date | null;
|
|
415
|
+
message: string | null;
|
|
416
|
+
}[]>;
|
|
417
|
+
export declare function appendActivity(db: BopoDb, input: {
|
|
418
|
+
companyId: string;
|
|
419
|
+
issueId?: string | null;
|
|
420
|
+
actorType: "human" | "agent" | "system";
|
|
421
|
+
actorId?: string | null;
|
|
422
|
+
eventType: string;
|
|
423
|
+
payload: Record<string, unknown>;
|
|
424
|
+
}): Promise<string>;
|