@alpic-ai/api 1.166.0 → 1.167.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/dist/index.d.mts +285 -1
- package/dist/index.mjs +82 -3
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -170,6 +170,141 @@ declare const contract: {
|
|
|
170
170
|
}>, Record<never, never>>;
|
|
171
171
|
};
|
|
172
172
|
};
|
|
173
|
+
intentCategories: {
|
|
174
|
+
list: {
|
|
175
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
176
|
+
environmentId: z.ZodString;
|
|
177
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
178
|
+
id: z.ZodString;
|
|
179
|
+
name: z.ZodString;
|
|
180
|
+
color: z.ZodEnum<{
|
|
181
|
+
red: "red";
|
|
182
|
+
orange: "orange";
|
|
183
|
+
yellow: "yellow";
|
|
184
|
+
green: "green";
|
|
185
|
+
blue: "blue";
|
|
186
|
+
purple: "purple";
|
|
187
|
+
pink: "pink";
|
|
188
|
+
gray: "gray";
|
|
189
|
+
}>;
|
|
190
|
+
intentCount: z.ZodNumber;
|
|
191
|
+
}, z.core.$strip>>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
192
|
+
BAD_REQUEST: {};
|
|
193
|
+
}>, {
|
|
194
|
+
NOT_FOUND: {};
|
|
195
|
+
}>, Record<never, never>>;
|
|
196
|
+
};
|
|
197
|
+
create: {
|
|
198
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
199
|
+
environmentId: z.ZodString;
|
|
200
|
+
name: z.ZodString;
|
|
201
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
red: "red";
|
|
203
|
+
orange: "orange";
|
|
204
|
+
yellow: "yellow";
|
|
205
|
+
green: "green";
|
|
206
|
+
blue: "blue";
|
|
207
|
+
purple: "purple";
|
|
208
|
+
pink: "pink";
|
|
209
|
+
gray: "gray";
|
|
210
|
+
}>>;
|
|
211
|
+
intentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
212
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
213
|
+
id: z.ZodString;
|
|
214
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
215
|
+
environmentId: z.ZodString;
|
|
216
|
+
name: z.ZodString;
|
|
217
|
+
color: z.ZodEnum<{
|
|
218
|
+
red: "red";
|
|
219
|
+
orange: "orange";
|
|
220
|
+
yellow: "yellow";
|
|
221
|
+
green: "green";
|
|
222
|
+
blue: "blue";
|
|
223
|
+
purple: "purple";
|
|
224
|
+
pink: "pink";
|
|
225
|
+
gray: "gray";
|
|
226
|
+
}>;
|
|
227
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
228
|
+
BAD_REQUEST: {};
|
|
229
|
+
}>, {
|
|
230
|
+
NOT_FOUND: {};
|
|
231
|
+
}>, Record<never, never>>;
|
|
232
|
+
};
|
|
233
|
+
update: {
|
|
234
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
235
|
+
environmentId: z.ZodString;
|
|
236
|
+
categoryId: z.ZodString;
|
|
237
|
+
name: z.ZodOptional<z.ZodString>;
|
|
238
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
red: "red";
|
|
240
|
+
orange: "orange";
|
|
241
|
+
yellow: "yellow";
|
|
242
|
+
green: "green";
|
|
243
|
+
blue: "blue";
|
|
244
|
+
purple: "purple";
|
|
245
|
+
pink: "pink";
|
|
246
|
+
gray: "gray";
|
|
247
|
+
}>>;
|
|
248
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
249
|
+
id: z.ZodString;
|
|
250
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
251
|
+
environmentId: z.ZodString;
|
|
252
|
+
name: z.ZodString;
|
|
253
|
+
color: z.ZodEnum<{
|
|
254
|
+
red: "red";
|
|
255
|
+
orange: "orange";
|
|
256
|
+
yellow: "yellow";
|
|
257
|
+
green: "green";
|
|
258
|
+
blue: "blue";
|
|
259
|
+
purple: "purple";
|
|
260
|
+
pink: "pink";
|
|
261
|
+
gray: "gray";
|
|
262
|
+
}>;
|
|
263
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
264
|
+
BAD_REQUEST: {};
|
|
265
|
+
}>, {
|
|
266
|
+
NOT_FOUND: {};
|
|
267
|
+
}>, Record<never, never>>;
|
|
268
|
+
};
|
|
269
|
+
delete: {
|
|
270
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
271
|
+
environmentId: z.ZodString;
|
|
272
|
+
categoryId: z.ZodString;
|
|
273
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
274
|
+
success: z.ZodLiteral<true>;
|
|
275
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
276
|
+
BAD_REQUEST: {};
|
|
277
|
+
}>, {
|
|
278
|
+
NOT_FOUND: {};
|
|
279
|
+
}>, Record<never, never>>;
|
|
280
|
+
};
|
|
281
|
+
link: {
|
|
282
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
283
|
+
environmentId: z.ZodString;
|
|
284
|
+
categoryId: z.ZodString;
|
|
285
|
+
intentIds: z.ZodArray<z.ZodString>;
|
|
286
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
287
|
+
success: z.ZodLiteral<true>;
|
|
288
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
289
|
+
BAD_REQUEST: {};
|
|
290
|
+
}>, {
|
|
291
|
+
NOT_FOUND: {};
|
|
292
|
+
}>, Record<never, never>>;
|
|
293
|
+
};
|
|
294
|
+
unlink: {
|
|
295
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
296
|
+
environmentId: z.ZodString;
|
|
297
|
+
categoryId: z.ZodString;
|
|
298
|
+
intentIds: z.ZodArray<z.ZodString>;
|
|
299
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
300
|
+
success: z.ZodLiteral<true>;
|
|
301
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
302
|
+
BAD_REQUEST: {};
|
|
303
|
+
}>, {
|
|
304
|
+
NOT_FOUND: {};
|
|
305
|
+
}>, Record<never, never>>;
|
|
306
|
+
};
|
|
307
|
+
};
|
|
173
308
|
feedbacks: {
|
|
174
309
|
list: {
|
|
175
310
|
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -1303,6 +1438,141 @@ declare const contractForDocs: {
|
|
|
1303
1438
|
}>, Record<never, never>>;
|
|
1304
1439
|
};
|
|
1305
1440
|
};
|
|
1441
|
+
intentCategories: {
|
|
1442
|
+
list: {
|
|
1443
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1444
|
+
environmentId: z.ZodString;
|
|
1445
|
+
}, z.core.$strip>, z.ZodArray<z.ZodObject<{
|
|
1446
|
+
id: z.ZodString;
|
|
1447
|
+
name: z.ZodString;
|
|
1448
|
+
color: z.ZodEnum<{
|
|
1449
|
+
red: "red";
|
|
1450
|
+
orange: "orange";
|
|
1451
|
+
yellow: "yellow";
|
|
1452
|
+
green: "green";
|
|
1453
|
+
blue: "blue";
|
|
1454
|
+
purple: "purple";
|
|
1455
|
+
pink: "pink";
|
|
1456
|
+
gray: "gray";
|
|
1457
|
+
}>;
|
|
1458
|
+
intentCount: z.ZodNumber;
|
|
1459
|
+
}, z.core.$strip>>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1460
|
+
BAD_REQUEST: {};
|
|
1461
|
+
}>, {
|
|
1462
|
+
NOT_FOUND: {};
|
|
1463
|
+
}>, Record<never, never>>;
|
|
1464
|
+
};
|
|
1465
|
+
create: {
|
|
1466
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1467
|
+
environmentId: z.ZodString;
|
|
1468
|
+
name: z.ZodString;
|
|
1469
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1470
|
+
red: "red";
|
|
1471
|
+
orange: "orange";
|
|
1472
|
+
yellow: "yellow";
|
|
1473
|
+
green: "green";
|
|
1474
|
+
blue: "blue";
|
|
1475
|
+
purple: "purple";
|
|
1476
|
+
pink: "pink";
|
|
1477
|
+
gray: "gray";
|
|
1478
|
+
}>>;
|
|
1479
|
+
intentIds: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1480
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1481
|
+
id: z.ZodString;
|
|
1482
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
1483
|
+
environmentId: z.ZodString;
|
|
1484
|
+
name: z.ZodString;
|
|
1485
|
+
color: z.ZodEnum<{
|
|
1486
|
+
red: "red";
|
|
1487
|
+
orange: "orange";
|
|
1488
|
+
yellow: "yellow";
|
|
1489
|
+
green: "green";
|
|
1490
|
+
blue: "blue";
|
|
1491
|
+
purple: "purple";
|
|
1492
|
+
pink: "pink";
|
|
1493
|
+
gray: "gray";
|
|
1494
|
+
}>;
|
|
1495
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1496
|
+
BAD_REQUEST: {};
|
|
1497
|
+
}>, {
|
|
1498
|
+
NOT_FOUND: {};
|
|
1499
|
+
}>, Record<never, never>>;
|
|
1500
|
+
};
|
|
1501
|
+
update: {
|
|
1502
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1503
|
+
environmentId: z.ZodString;
|
|
1504
|
+
categoryId: z.ZodString;
|
|
1505
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1506
|
+
color: z.ZodOptional<z.ZodEnum<{
|
|
1507
|
+
red: "red";
|
|
1508
|
+
orange: "orange";
|
|
1509
|
+
yellow: "yellow";
|
|
1510
|
+
green: "green";
|
|
1511
|
+
blue: "blue";
|
|
1512
|
+
purple: "purple";
|
|
1513
|
+
pink: "pink";
|
|
1514
|
+
gray: "gray";
|
|
1515
|
+
}>>;
|
|
1516
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1517
|
+
id: z.ZodString;
|
|
1518
|
+
createdAt: z.ZodCoercedDate<unknown>;
|
|
1519
|
+
environmentId: z.ZodString;
|
|
1520
|
+
name: z.ZodString;
|
|
1521
|
+
color: z.ZodEnum<{
|
|
1522
|
+
red: "red";
|
|
1523
|
+
orange: "orange";
|
|
1524
|
+
yellow: "yellow";
|
|
1525
|
+
green: "green";
|
|
1526
|
+
blue: "blue";
|
|
1527
|
+
purple: "purple";
|
|
1528
|
+
pink: "pink";
|
|
1529
|
+
gray: "gray";
|
|
1530
|
+
}>;
|
|
1531
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1532
|
+
BAD_REQUEST: {};
|
|
1533
|
+
}>, {
|
|
1534
|
+
NOT_FOUND: {};
|
|
1535
|
+
}>, Record<never, never>>;
|
|
1536
|
+
};
|
|
1537
|
+
delete: {
|
|
1538
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1539
|
+
environmentId: z.ZodString;
|
|
1540
|
+
categoryId: z.ZodString;
|
|
1541
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1542
|
+
success: z.ZodLiteral<true>;
|
|
1543
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1544
|
+
BAD_REQUEST: {};
|
|
1545
|
+
}>, {
|
|
1546
|
+
NOT_FOUND: {};
|
|
1547
|
+
}>, Record<never, never>>;
|
|
1548
|
+
};
|
|
1549
|
+
link: {
|
|
1550
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1551
|
+
environmentId: z.ZodString;
|
|
1552
|
+
categoryId: z.ZodString;
|
|
1553
|
+
intentIds: z.ZodArray<z.ZodString>;
|
|
1554
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1555
|
+
success: z.ZodLiteral<true>;
|
|
1556
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1557
|
+
BAD_REQUEST: {};
|
|
1558
|
+
}>, {
|
|
1559
|
+
NOT_FOUND: {};
|
|
1560
|
+
}>, Record<never, never>>;
|
|
1561
|
+
};
|
|
1562
|
+
unlink: {
|
|
1563
|
+
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
1564
|
+
environmentId: z.ZodString;
|
|
1565
|
+
categoryId: z.ZodString;
|
|
1566
|
+
intentIds: z.ZodArray<z.ZodString>;
|
|
1567
|
+
}, z.core.$strip>, z.ZodObject<{
|
|
1568
|
+
success: z.ZodLiteral<true>;
|
|
1569
|
+
}, z.core.$strip>, import("@orpc/contract").MergedErrorMap<import("@orpc/contract").MergedErrorMap<Record<never, never>, {
|
|
1570
|
+
BAD_REQUEST: {};
|
|
1571
|
+
}>, {
|
|
1572
|
+
NOT_FOUND: {};
|
|
1573
|
+
}>, Record<never, never>>;
|
|
1574
|
+
};
|
|
1575
|
+
};
|
|
1306
1576
|
feedbacks: {
|
|
1307
1577
|
list: {
|
|
1308
1578
|
v1: import("@orpc/contract").ContractProcedureBuilderWithInputOutput<z.ZodObject<{
|
|
@@ -2142,6 +2412,20 @@ type RouteAuthMeta = {
|
|
|
2142
2412
|
authScope?: AuthScope;
|
|
2143
2413
|
};
|
|
2144
2414
|
//#endregion
|
|
2415
|
+
//#region ../domains/src/intents/schemas.d.ts
|
|
2416
|
+
declare const intentCategoryColorSchema: z.ZodEnum<{
|
|
2417
|
+
red: "red";
|
|
2418
|
+
orange: "orange";
|
|
2419
|
+
yellow: "yellow";
|
|
2420
|
+
green: "green";
|
|
2421
|
+
blue: "blue";
|
|
2422
|
+
purple: "purple";
|
|
2423
|
+
pink: "pink";
|
|
2424
|
+
gray: "gray";
|
|
2425
|
+
}>;
|
|
2426
|
+
type IntentCategoryColor = z.infer<typeof intentCategoryColorSchema>;
|
|
2427
|
+
declare const INTENT_CATEGORY_COLORS: ("red" | "orange" | "yellow" | "green" | "blue" | "purple" | "pink" | "gray")[];
|
|
2428
|
+
//#endregion
|
|
2145
2429
|
//#region ../domains/src/platforms/schemas.d.ts
|
|
2146
2430
|
declare const platformSchema: z.ZodEnum<{
|
|
2147
2431
|
chatgpt: "chatgpt";
|
|
@@ -2221,4 +2505,4 @@ declare const serverFieldsSchema: z.ZodObject<{
|
|
|
2221
2505
|
}, z.core.$strip>>>;
|
|
2222
2506
|
}, z.core.$strip>;
|
|
2223
2507
|
//#endregion
|
|
2224
|
-
export { AUTH_SCOPE_ANY, AUTH_SCOPE_USER, ApiContext, AuthScope, PLATFORM_LABELS, type Platform, RouteAuthMeta, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, contractForDocs, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
|
2508
|
+
export { AUTH_SCOPE_ANY, AUTH_SCOPE_USER, ApiContext, AuthScope, INTENT_CATEGORY_COLORS, type IntentCategoryColor, PLATFORM_LABELS, type Platform, RouteAuthMeta, RouterInput, RouterOutput, Runtime, Transport, buildSettingsSchema, contract, contractForDocs, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, intentCategoryColorSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
package/dist/index.mjs
CHANGED
|
@@ -424,7 +424,7 @@ const intentCategoryColorSchema = z.enum([
|
|
|
424
424
|
"pink",
|
|
425
425
|
"gray"
|
|
426
426
|
]);
|
|
427
|
-
intentCategoryColorSchema.options;
|
|
427
|
+
const INTENT_CATEGORY_COLORS = intentCategoryColorSchema.options;
|
|
428
428
|
const intentCategorySchema = z.object({
|
|
429
429
|
id: z.string(),
|
|
430
430
|
createdAt: z.coerce.date(),
|
|
@@ -432,7 +432,7 @@ const intentCategorySchema = z.object({
|
|
|
432
432
|
name: z.string(),
|
|
433
433
|
color: intentCategoryColorSchema
|
|
434
434
|
});
|
|
435
|
-
z.object({
|
|
435
|
+
const intentCategorySummarySchema = z.object({
|
|
436
436
|
id: z.string(),
|
|
437
437
|
name: z.string(),
|
|
438
438
|
color: intentCategoryColorSchema,
|
|
@@ -1976,6 +1976,77 @@ const listFeedbacksContractV1 = base.route({
|
|
|
1976
1976
|
feedbacks: z.array(feedbackSchema.extend({ clientId: z.string().nullable() })),
|
|
1977
1977
|
totalCount: z.number().int().nonnegative()
|
|
1978
1978
|
}));
|
|
1979
|
+
const intentCategoryNameSchema = z.string().trim().min(1).max(100).describe("The category name");
|
|
1980
|
+
const categorizableIntentIdsSchema = z.array(z.string().trim().min(1)).min(1).max(100).describe("IDs of the intents to categorize");
|
|
1981
|
+
const listIntentCategoriesContractV1 = base.route({
|
|
1982
|
+
path: "/v1/environments/{environmentId}/intent-categories",
|
|
1983
|
+
method: "GET",
|
|
1984
|
+
summary: "List intent categories",
|
|
1985
|
+
description: "List intent categories for an environment, including how many intents each category is linked to",
|
|
1986
|
+
tags: ["insights"],
|
|
1987
|
+
successDescription: "The intent categories"
|
|
1988
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({ environmentId: z.string().describe("The ID of the environment") })).output(z.array(intentCategorySummarySchema));
|
|
1989
|
+
const createIntentCategoryContractV1 = base.route({
|
|
1990
|
+
path: "/v1/environments/{environmentId}/intent-categories",
|
|
1991
|
+
method: "POST",
|
|
1992
|
+
summary: "Create an intent category",
|
|
1993
|
+
description: "Create an intent category, optionally linking it to existing intents",
|
|
1994
|
+
tags: ["insights"],
|
|
1995
|
+
successDescription: "The created intent category"
|
|
1996
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
1997
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
1998
|
+
name: intentCategoryNameSchema,
|
|
1999
|
+
color: intentCategoryColorSchema.optional().describe("The category color; derived from the name when omitted"),
|
|
2000
|
+
intentIds: categorizableIntentIdsSchema.optional().describe("IDs of intents to link to the new category")
|
|
2001
|
+
})).output(intentCategorySchema);
|
|
2002
|
+
const updateIntentCategoryContractV1 = base.route({
|
|
2003
|
+
path: "/v1/environments/{environmentId}/intent-categories/{categoryId}",
|
|
2004
|
+
method: "PATCH",
|
|
2005
|
+
summary: "Update an intent category",
|
|
2006
|
+
description: "Rename or recolor an intent category",
|
|
2007
|
+
tags: ["insights"],
|
|
2008
|
+
successDescription: "The updated intent category"
|
|
2009
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
2010
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
2011
|
+
categoryId: z.string().describe("The ID of the category"),
|
|
2012
|
+
name: intentCategoryNameSchema.optional(),
|
|
2013
|
+
color: intentCategoryColorSchema.optional().describe("The category color")
|
|
2014
|
+
}).refine(({ name, color }) => name !== void 0 || color !== void 0, { message: "At least one of name or color must be provided" })).output(intentCategorySchema);
|
|
2015
|
+
const deleteIntentCategoryContractV1 = base.route({
|
|
2016
|
+
path: "/v1/environments/{environmentId}/intent-categories/{categoryId}",
|
|
2017
|
+
method: "DELETE",
|
|
2018
|
+
summary: "Delete an intent category",
|
|
2019
|
+
description: "Delete an intent category; its intents are unlinked but not deleted",
|
|
2020
|
+
tags: ["insights"],
|
|
2021
|
+
successDescription: "The intent category has been deleted successfully"
|
|
2022
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
2023
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
2024
|
+
categoryId: z.string().describe("The ID of the category")
|
|
2025
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
2026
|
+
const linkIntentCategoryContractV1 = base.route({
|
|
2027
|
+
path: "/v1/environments/{environmentId}/intent-categories/{categoryId}/link",
|
|
2028
|
+
method: "POST",
|
|
2029
|
+
summary: "Link an intent category",
|
|
2030
|
+
description: "Link an intent category to intents; already linked intents are ignored",
|
|
2031
|
+
tags: ["insights"],
|
|
2032
|
+
successDescription: "The intents have been linked successfully"
|
|
2033
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
2034
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
2035
|
+
categoryId: z.string().describe("The ID of the category"),
|
|
2036
|
+
intentIds: categorizableIntentIdsSchema
|
|
2037
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
2038
|
+
const unlinkIntentCategoryContractV1 = base.route({
|
|
2039
|
+
path: "/v1/environments/{environmentId}/intent-categories/{categoryId}/unlink",
|
|
2040
|
+
method: "POST",
|
|
2041
|
+
summary: "Unlink an intent category",
|
|
2042
|
+
description: "Unlink an intent category from intents; intents without the category are ignored",
|
|
2043
|
+
tags: ["insights"],
|
|
2044
|
+
successDescription: "The intents have been unlinked successfully"
|
|
2045
|
+
}).errors({ NOT_FOUND: {} }).input(z.object({
|
|
2046
|
+
environmentId: z.string().describe("The ID of the environment"),
|
|
2047
|
+
categoryId: z.string().describe("The ID of the category"),
|
|
2048
|
+
intentIds: categorizableIntentIdsSchema
|
|
2049
|
+
})).output(z.object({ success: z.literal(true) }));
|
|
1979
2050
|
const listTeamsContractV1 = base.route({
|
|
1980
2051
|
path: "/v1/teams",
|
|
1981
2052
|
method: "GET",
|
|
@@ -2118,6 +2189,14 @@ const contract = {
|
|
|
2118
2189
|
},
|
|
2119
2190
|
analytics: { get: { v1: getProjectAnalyticsContractV1 } },
|
|
2120
2191
|
intents: { list: { v1: listIntentsContractV1 } },
|
|
2192
|
+
intentCategories: {
|
|
2193
|
+
list: { v1: listIntentCategoriesContractV1 },
|
|
2194
|
+
create: { v1: createIntentCategoryContractV1 },
|
|
2195
|
+
update: { v1: updateIntentCategoryContractV1 },
|
|
2196
|
+
delete: { v1: deleteIntentCategoryContractV1 },
|
|
2197
|
+
link: { v1: linkIntentCategoryContractV1 },
|
|
2198
|
+
unlink: { v1: unlinkIntentCategoryContractV1 }
|
|
2199
|
+
},
|
|
2121
2200
|
feedbacks: { list: { v1: listFeedbacksContractV1 } },
|
|
2122
2201
|
deployments: {
|
|
2123
2202
|
list: { v1: listDeploymentsContractV1 },
|
|
@@ -2165,4 +2244,4 @@ const contractForDocs = {
|
|
|
2165
2244
|
deployments: deploymentsForDocs
|
|
2166
2245
|
};
|
|
2167
2246
|
//#endregion
|
|
2168
|
-
export { AUTH_SCOPE_ANY, AUTH_SCOPE_USER, PLATFORM_LABELS, buildSettingsSchema, contract, contractForDocs, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
|
2247
|
+
export { AUTH_SCOPE_ANY, AUTH_SCOPE_USER, INTENT_CATEGORY_COLORS, PLATFORM_LABELS, buildSettingsSchema, contract, contractForDocs, createEnvironmentContractV1, deploymentStatusSchema, environmentVariableSchema, environmentVariablesSchema, intentCategoryColorSchema, playgroundExamplePromptSchema, playgroundHeaderSchema, runtimeSchema, serverFieldsSchema, transportSchema, updateEnvironmentVariableSchema };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alpic-ai/api",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.167.1",
|
|
4
4
|
"description": "Contract for the Alpic API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.mjs",
|
|
@@ -55,6 +55,6 @@
|
|
|
55
55
|
"test:unit": "vitest run",
|
|
56
56
|
"test:format": "biome check --error-on-warnings .",
|
|
57
57
|
"test:type": "tsgo --noEmit",
|
|
58
|
-
"publish:npm": "
|
|
58
|
+
"publish:npm": "../../scripts/publish-if-new.sh"
|
|
59
59
|
}
|
|
60
60
|
}
|