@orq-ai/node 4.9.3 → 4.9.6
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/jsr.json +1 -1
- package/langchain/async-handler.d.mts.map +1 -1
- package/langchain/async-handler.mjs +8 -11
- package/langchain/async-handler.mjs.map +1 -1
- package/langchain/events.d.mts.map +1 -1
- package/langchain/events.mjs +12 -0
- package/langchain/events.mjs.map +1 -1
- package/langchain/handler.d.mts.map +1 -1
- package/langchain/handler.mjs +8 -11
- package/langchain/handler.mjs.map +1 -1
- package/langchain/span-builder.mjs +3 -3
- package/langchain/span-builder.mjs.map +1 -1
- package/langchain/utils.d.mts.map +1 -1
- package/langchain/utils.mjs +115 -0
- package/langchain/utils.mjs.map +1 -1
- package/lib/config.d.ts +3 -3
- package/lib/config.js +3 -3
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createdataset.js +1 -1
- package/models/operations/createdatasetitem.js +4 -4
- package/models/operations/createdatasource.js +1 -1
- package/models/operations/createeval.js +16 -16
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createrouterresponse.d.ts +6 -11
- package/models/operations/createrouterresponse.d.ts.map +1 -1
- package/models/operations/createrouterresponse.js +2 -8
- package/models/operations/createrouterresponse.js.map +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/listdatasetdatapoints.js +4 -4
- package/models/operations/listdatasets.js +1 -1
- package/models/operations/listdatasources.js +1 -1
- package/models/operations/listidentities.js +1 -1
- package/models/operations/patchv2humanevalsetsid.js +2 -2
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevalsets.js +2 -2
- package/models/operations/retrievedatapoint.js +4 -4
- package/models/operations/retrievedataset.js +1 -1
- package/models/operations/retrievedatasource.js +1 -1
- package/models/operations/retrieveidentity.js +1 -1
- package/models/operations/retrievetool.js +6 -6
- package/models/operations/runagent.js +1 -1
- package/models/operations/streamrunagent.js +1 -1
- package/models/operations/updatedatapoint.js +4 -4
- package/models/operations/updatedataset.js +1 -1
- package/models/operations/updatedatasource.js +1 -1
- package/models/operations/updateeval.js +16 -16
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +7 -7
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +10 -15
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +7 -16
- package/packages/orq-rc/src/funcs/identitiesList.ts +6 -5
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +6 -18
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +9 -15
- package/packages/orq-rc/src/funcs/projectsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/projectsDelete.ts +3 -0
- package/packages/orq-rc/src/funcs/projectsList.ts +1 -1
- package/packages/orq-rc/src/funcs/{contactsCreate.ts → reportingQuery.ts} +13 -13
- package/packages/orq-rc/src/funcs/skillsCreate.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsDelete.ts +3 -0
- package/packages/orq-rc/src/funcs/skillsGet.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsList.ts +1 -1
- package/packages/orq-rc/src/funcs/skillsUpdate.ts +1 -1
- package/packages/orq-rc/src/lib/config.ts +3 -3
- package/packages/orq-rc/src/models/components/createidentityrequest.ts +76 -0
- package/packages/orq-rc/src/models/components/createidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/createprojectrequest.ts +6 -0
- package/packages/orq-rc/src/models/components/createprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/createskillrequest.ts +18 -0
- package/packages/orq-rc/src/models/components/createskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/datapoint.ts +60 -0
- package/packages/orq-rc/src/models/components/deleteidentityresponse.ts +27 -0
- package/packages/orq-rc/src/models/components/file.ts +0 -3
- package/packages/orq-rc/src/models/components/filter.ts +137 -0
- package/packages/orq-rc/src/models/components/getprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/getskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/identity.ts +83 -0
- package/packages/orq-rc/src/models/components/identitymetrics.ts +45 -0
- package/packages/orq-rc/src/models/components/index.ts +15 -0
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +17 -10
- package/packages/orq-rc/src/models/components/listidentitiesresponse.ts +41 -0
- package/packages/orq-rc/src/models/components/listprojectsresponse.ts +12 -0
- package/packages/orq-rc/src/models/components/listskillsresponse.ts +12 -0
- package/packages/orq-rc/src/models/components/modelref.ts +6 -0
- package/packages/orq-rc/src/models/components/project.ts +42 -3
- package/packages/orq-rc/src/models/components/queryreportrequest.ts +237 -0
- package/packages/orq-rc/src/models/components/queryreportresponse.ts +96 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/components/responsemeta.ts +103 -0
- package/packages/orq-rc/src/models/components/retrieveidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/skill.ts +37 -3
- package/packages/orq-rc/src/models/components/totals.ts +34 -0
- package/packages/orq-rc/src/models/components/updateidentityrequest.ts +75 -0
- package/packages/orq-rc/src/models/components/updateidentityresponse.ts +32 -0
- package/packages/orq-rc/src/models/components/updateprojectrequest.ts +12 -0
- package/packages/orq-rc/src/models/components/updateprojectresponse.ts +3 -0
- package/packages/orq-rc/src/models/components/updateskillrequest.ts +21 -0
- package/packages/orq-rc/src/models/components/updateskillresponse.ts +3 -0
- package/packages/orq-rc/src/models/errors/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/createannotation.ts +7 -11
- package/packages/orq-rc/src/models/operations/createdataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +4 -4
- package/packages/orq-rc/src/models/operations/createdatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/createeval.ts +31 -31
- package/packages/orq-rc/src/models/operations/createknowledge.ts +9 -9
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +3 -3
- package/packages/orq-rc/src/models/operations/createprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/createrouterresponse.ts +3 -24
- package/packages/orq-rc/src/models/operations/createtool.ts +36 -36
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +0 -3
- package/packages/orq-rc/src/models/operations/getalltools.ts +21 -21
- package/packages/orq-rc/src/models/operations/getevals.ts +16 -16
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +6 -6
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/invokeeval.ts +83 -80
- package/packages/orq-rc/src/models/operations/listagents.ts +3 -3
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/packages/orq-rc/src/models/operations/listdatasets.ts +1 -1
- package/packages/orq-rc/src/models/operations/listdatasources.ts +1 -1
- package/packages/orq-rc/src/models/operations/listidentities.ts +9 -230
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +6 -6
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +14 -17
- package/packages/orq-rc/src/models/operations/postv2feedback.ts +34 -27
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/packages/orq-rc/src/models/operations/postv2feedbackremove.ts +14 -17
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +2 -2
- package/packages/orq-rc/src/models/operations/projectdelete.ts +3 -0
- package/packages/orq-rc/src/models/operations/projectget.ts +3 -0
- package/packages/orq-rc/src/models/operations/projectlist.ts +15 -0
- package/packages/orq-rc/src/models/operations/projectupdate.ts +3 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +3 -3
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +3 -138
- package/packages/orq-rc/src/models/operations/retrievetool.ts +21 -21
- package/packages/orq-rc/src/models/operations/runagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/skilldelete.ts +3 -0
- package/packages/orq-rc/src/models/operations/skilllist.ts +12 -0
- package/packages/orq-rc/src/models/operations/skillupdate.ts +3 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +4 -4
- package/packages/orq-rc/src/models/operations/updateagent.ts +6 -6
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +16 -16
- package/packages/orq-rc/src/models/operations/updateidentity.ts +5 -154
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +12 -12
- package/packages/orq-rc/src/models/operations/updateprompt.ts +3 -3
- package/packages/orq-rc/src/models/operations/updatetool.ts +37 -37
- package/packages/orq-rc/src/sdk/feedback.ts +8 -8
- package/packages/orq-rc/src/sdk/identities.ts +18 -17
- package/packages/orq-rc/src/sdk/projects.ts +5 -2
- package/packages/orq-rc/src/sdk/reporting.ts +27 -0
- package/packages/orq-rc/src/sdk/sdk.ts +16 -22
- package/packages/orq-rc/src/sdk/skills.ts +7 -4
- package/src/lib/config.ts +3 -3
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createdataset.ts +1 -1
- package/src/models/operations/createdatasetitem.ts +4 -4
- package/src/models/operations/createdatasource.ts +1 -1
- package/src/models/operations/createeval.ts +16 -16
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createrouterresponse.ts +3 -24
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/listdatasetdatapoints.ts +4 -4
- package/src/models/operations/listdatasets.ts +1 -1
- package/src/models/operations/listdatasources.ts +1 -1
- package/src/models/operations/listidentities.ts +1 -1
- package/src/models/operations/patchv2humanevalsetsid.ts +2 -2
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevalsets.ts +2 -2
- package/src/models/operations/retrievedatapoint.ts +4 -4
- package/src/models/operations/retrievedataset.ts +1 -1
- package/src/models/operations/retrievedatasource.ts +1 -1
- package/src/models/operations/retrieveidentity.ts +1 -1
- package/src/models/operations/retrievetool.ts +6 -6
- package/src/models/operations/runagent.ts +1 -1
- package/src/models/operations/streamrunagent.ts +1 -1
- package/src/models/operations/updatedatapoint.ts +4 -4
- package/src/models/operations/updatedataset.ts +1 -1
- package/src/models/operations/updatedatasource.ts +1 -1
- package/src/models/operations/updateeval.ts +16 -16
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/funcs/remoteconfigsRetrieve.ts +0 -163
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +0 -62
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +0 -118
- package/packages/orq-rc/src/models/errors/updateidentity.ts +0 -54
- package/packages/orq-rc/src/models/operations/createcontact.ts +0 -156
- package/packages/orq-rc/src/models/operations/createidentity.ts +0 -162
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +0 -108
- package/packages/orq-rc/src/sdk/contacts.ts +0 -27
- package/packages/orq-rc/src/sdk/remoteconfigs.ts +0 -24
|
@@ -5,7 +5,13 @@
|
|
|
5
5
|
import * as z from "zod/v3";
|
|
6
6
|
|
|
7
7
|
export type CreateProjectRequest = {
|
|
8
|
+
/**
|
|
9
|
+
* Project name. Names must be non-empty and at most 128 characters.
|
|
10
|
+
*/
|
|
8
11
|
name?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* Team identifiers to associate with the project.
|
|
14
|
+
*/
|
|
9
15
|
teams?: Array<string> | undefined;
|
|
10
16
|
};
|
|
11
17
|
|
|
@@ -9,6 +9,9 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
9
9
|
import { Project, Project$inboundSchema } from "./project.js";
|
|
10
10
|
|
|
11
11
|
export type CreateProjectResponse = {
|
|
12
|
+
/**
|
|
13
|
+
* Newly created project.
|
|
14
|
+
*/
|
|
12
15
|
project?: Project | undefined;
|
|
13
16
|
};
|
|
14
17
|
|
|
@@ -6,11 +6,29 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
|
|
8
8
|
export type CreateSkillRequest = {
|
|
9
|
+
/**
|
|
10
|
+
* Workspace-unique display name. Must start with a letter and may contain letters, numbers, underscores, and hyphens.
|
|
11
|
+
*/
|
|
9
12
|
displayName?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* Short human-readable summary of what the skill is for.
|
|
15
|
+
*/
|
|
10
16
|
description?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* Free-form labels for organizing the skill.
|
|
19
|
+
*/
|
|
11
20
|
tags?: Array<string> | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* Project path where the skill should be stored.
|
|
23
|
+
*/
|
|
12
24
|
path?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Project that should contain the skill.
|
|
27
|
+
*/
|
|
13
28
|
projectId?: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* Instruction body for the skill. Omit to create metadata first and fill instructions later.
|
|
31
|
+
*/
|
|
14
32
|
instructions?: string | undefined;
|
|
15
33
|
};
|
|
16
34
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
7
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
8
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
9
|
+
|
|
10
|
+
export type DataPoint = {
|
|
11
|
+
/**
|
|
12
|
+
* Bucket start in UTC, RFC 3339. Clients that need epoch ms can call
|
|
13
|
+
*
|
|
14
|
+
* @remarks
|
|
15
|
+
* `Date.parse(timestamp)` or `new Date(timestamp).getTime()` —
|
|
16
|
+
* returning the int64 in JSON would force a string (protojson rule)
|
|
17
|
+
* and force callers to coerce anyway, so we ship ISO only.
|
|
18
|
+
*/
|
|
19
|
+
timestamp?: Date | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Public breakdown labels for this bucket, keyed by group-by column.
|
|
22
|
+
*
|
|
23
|
+
* @remarks
|
|
24
|
+
* Empty when no group-by was requested. Empty values are omitted so
|
|
25
|
+
* the caller never has to special-case `""`.
|
|
26
|
+
*/
|
|
27
|
+
dimensions?: { [k: string]: string } | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* Metric values for this bucket. Single-metric requests carry one
|
|
30
|
+
*
|
|
31
|
+
* @remarks
|
|
32
|
+
* entry keyed by the requested metric name (e.g. `"genai.cost"` →
|
|
33
|
+
* `0.000495`). Bundle metrics carry one entry per field. Numbers are
|
|
34
|
+
* pre-rounded to 10 significant digits to avoid IEEE-754 display
|
|
35
|
+
* noise like `0.00009900000000000001`.
|
|
36
|
+
*/
|
|
37
|
+
metrics?: { [k: string]: number } | undefined;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
/** @internal */
|
|
41
|
+
export const DataPoint$inboundSchema: z.ZodType<
|
|
42
|
+
DataPoint,
|
|
43
|
+
z.ZodTypeDef,
|
|
44
|
+
unknown
|
|
45
|
+
> = z.object({
|
|
46
|
+
timestamp: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
47
|
+
.optional(),
|
|
48
|
+
dimensions: z.record(z.string()).optional(),
|
|
49
|
+
metrics: z.record(z.number()).optional(),
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
export function dataPointFromJSON(
|
|
53
|
+
jsonString: string,
|
|
54
|
+
): SafeParseResult<DataPoint, SDKValidationError> {
|
|
55
|
+
return safeParse(
|
|
56
|
+
jsonString,
|
|
57
|
+
(x) => DataPoint$inboundSchema.parse(JSON.parse(x)),
|
|
58
|
+
`Failed to parse 'DataPoint' from JSON`,
|
|
59
|
+
);
|
|
60
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
7
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
8
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
9
|
+
|
|
10
|
+
export type DeleteIdentityResponse = {};
|
|
11
|
+
|
|
12
|
+
/** @internal */
|
|
13
|
+
export const DeleteIdentityResponse$inboundSchema: z.ZodType<
|
|
14
|
+
DeleteIdentityResponse,
|
|
15
|
+
z.ZodTypeDef,
|
|
16
|
+
unknown
|
|
17
|
+
> = z.object({});
|
|
18
|
+
|
|
19
|
+
export function deleteIdentityResponseFromJSON(
|
|
20
|
+
jsonString: string,
|
|
21
|
+
): SafeParseResult<DeleteIdentityResponse, SDKValidationError> {
|
|
22
|
+
return safeParse(
|
|
23
|
+
jsonString,
|
|
24
|
+
(x) => DeleteIdentityResponse$inboundSchema.parse(JSON.parse(x)),
|
|
25
|
+
`Failed to parse 'DeleteIdentityResponse' from JSON`,
|
|
26
|
+
);
|
|
27
|
+
}
|
|
@@ -12,7 +12,6 @@ export type FileT = {
|
|
|
12
12
|
fileId?: string | undefined;
|
|
13
13
|
purpose?: number | undefined;
|
|
14
14
|
fileName?: string | undefined;
|
|
15
|
-
workspaceId?: string | undefined;
|
|
16
15
|
bytes?: string | undefined;
|
|
17
16
|
createdAt?: Date | undefined;
|
|
18
17
|
};
|
|
@@ -23,7 +22,6 @@ export const FileT$inboundSchema: z.ZodType<FileT, z.ZodTypeDef, unknown> = z
|
|
|
23
22
|
file_id: z.string().optional(),
|
|
24
23
|
purpose: z.number().int().optional(),
|
|
25
24
|
file_name: z.string().optional(),
|
|
26
|
-
workspace_id: z.string().optional(),
|
|
27
25
|
bytes: z.string().optional(),
|
|
28
26
|
created_at: z.string().datetime({ offset: true }).transform(v =>
|
|
29
27
|
new Date(v)
|
|
@@ -32,7 +30,6 @@ export const FileT$inboundSchema: z.ZodType<FileT, z.ZodTypeDef, unknown> = z
|
|
|
32
30
|
return remap$(v, {
|
|
33
31
|
"file_id": "fileId",
|
|
34
32
|
"file_name": "fileName",
|
|
35
|
-
"workspace_id": "workspaceId",
|
|
36
33
|
"created_at": "createdAt",
|
|
37
34
|
});
|
|
38
35
|
});
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
7
|
+
import { ClosedEnum } from "../../types/enums.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Public reporting dimension to filter on. Valid fields depend on the selected metric.
|
|
13
|
+
*/
|
|
14
|
+
export const Field = {
|
|
15
|
+
Project: "project",
|
|
16
|
+
Identity: "identity",
|
|
17
|
+
Provider: "provider",
|
|
18
|
+
Model: "model",
|
|
19
|
+
Product: "product",
|
|
20
|
+
ApiKey: "api_key",
|
|
21
|
+
StatusCode: "status_code",
|
|
22
|
+
HttpStatusCode: "http_status_code",
|
|
23
|
+
CredentialType: "credential_type",
|
|
24
|
+
BillingBillable: "billing_billable",
|
|
25
|
+
Dimension: "dimension",
|
|
26
|
+
DimensionType: "dimension_type",
|
|
27
|
+
Tag: "tag",
|
|
28
|
+
Agent: "agent",
|
|
29
|
+
Tool: "tool",
|
|
30
|
+
Deployment: "deployment",
|
|
31
|
+
Evaluator: "evaluator",
|
|
32
|
+
Dataset: "dataset",
|
|
33
|
+
Prompt: "prompt",
|
|
34
|
+
Policy: "policy",
|
|
35
|
+
Conversation: "conversation",
|
|
36
|
+
Thread: "thread",
|
|
37
|
+
MemoryStore: "memory_store",
|
|
38
|
+
Knowledge: "knowledge",
|
|
39
|
+
Sheet: "sheet",
|
|
40
|
+
GuardrailOrigin: "guardrail_origin",
|
|
41
|
+
EvaluatorName: "evaluator_name",
|
|
42
|
+
EvaluatorType: "evaluator_type",
|
|
43
|
+
EvaluatorVersion: "evaluator_version",
|
|
44
|
+
ResultType: "result_type",
|
|
45
|
+
EvaluationStage: "evaluation_stage",
|
|
46
|
+
GuardrailStage: "guardrail_stage",
|
|
47
|
+
EvaluatorStage: "evaluator_stage",
|
|
48
|
+
GuardrailAction: "guardrail_action",
|
|
49
|
+
ResultLabel: "result_label",
|
|
50
|
+
} as const;
|
|
51
|
+
/**
|
|
52
|
+
* Public reporting dimension to filter on. Valid fields depend on the selected metric.
|
|
53
|
+
*/
|
|
54
|
+
export type Field = ClosedEnum<typeof Field>;
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Predicate operator. `eq` and `neq` accept exactly one value; `in` and `not_in` accept 1-100 values.
|
|
58
|
+
*/
|
|
59
|
+
export const Op = {
|
|
60
|
+
Eq: "eq",
|
|
61
|
+
Neq: "neq",
|
|
62
|
+
In: "in",
|
|
63
|
+
NotIn: "not_in",
|
|
64
|
+
} as const;
|
|
65
|
+
/**
|
|
66
|
+
* Predicate operator. `eq` and `neq` accept exactly one value; `in` and `not_in` accept 1-100 values.
|
|
67
|
+
*/
|
|
68
|
+
export type Op = ClosedEnum<typeof Op>;
|
|
69
|
+
|
|
70
|
+
export type Filter = {
|
|
71
|
+
/**
|
|
72
|
+
* Public reporting dimension to filter on. Valid fields depend on the selected metric.
|
|
73
|
+
*/
|
|
74
|
+
field?: Field | undefined;
|
|
75
|
+
/**
|
|
76
|
+
* Predicate operator. `eq` and `neq` accept exactly one value; `in` and `not_in` accept 1-100 values.
|
|
77
|
+
*/
|
|
78
|
+
op?: Op | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* Values compared against the selected field. Values are interpreted
|
|
81
|
+
*
|
|
82
|
+
* @remarks
|
|
83
|
+
* as public API strings, not SQL fragments.
|
|
84
|
+
*/
|
|
85
|
+
values?: Array<string> | undefined;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
/** @internal */
|
|
89
|
+
export const Field$inboundSchema: z.ZodNativeEnum<typeof Field> = z.nativeEnum(
|
|
90
|
+
Field,
|
|
91
|
+
);
|
|
92
|
+
/** @internal */
|
|
93
|
+
export const Field$outboundSchema: z.ZodNativeEnum<typeof Field> =
|
|
94
|
+
Field$inboundSchema;
|
|
95
|
+
|
|
96
|
+
/** @internal */
|
|
97
|
+
export const Op$inboundSchema: z.ZodNativeEnum<typeof Op> = z.nativeEnum(Op);
|
|
98
|
+
/** @internal */
|
|
99
|
+
export const Op$outboundSchema: z.ZodNativeEnum<typeof Op> = Op$inboundSchema;
|
|
100
|
+
|
|
101
|
+
/** @internal */
|
|
102
|
+
export const Filter$inboundSchema: z.ZodType<Filter, z.ZodTypeDef, unknown> = z
|
|
103
|
+
.object({
|
|
104
|
+
field: Field$inboundSchema.optional(),
|
|
105
|
+
op: Op$inboundSchema.optional(),
|
|
106
|
+
values: z.array(z.string()).optional(),
|
|
107
|
+
});
|
|
108
|
+
/** @internal */
|
|
109
|
+
export type Filter$Outbound = {
|
|
110
|
+
field?: string | undefined;
|
|
111
|
+
op?: string | undefined;
|
|
112
|
+
values?: Array<string> | undefined;
|
|
113
|
+
};
|
|
114
|
+
|
|
115
|
+
/** @internal */
|
|
116
|
+
export const Filter$outboundSchema: z.ZodType<
|
|
117
|
+
Filter$Outbound,
|
|
118
|
+
z.ZodTypeDef,
|
|
119
|
+
Filter
|
|
120
|
+
> = z.object({
|
|
121
|
+
field: Field$outboundSchema.optional(),
|
|
122
|
+
op: Op$outboundSchema.optional(),
|
|
123
|
+
values: z.array(z.string()).optional(),
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
export function filterToJSON(filter: Filter): string {
|
|
127
|
+
return JSON.stringify(Filter$outboundSchema.parse(filter));
|
|
128
|
+
}
|
|
129
|
+
export function filterFromJSON(
|
|
130
|
+
jsonString: string,
|
|
131
|
+
): SafeParseResult<Filter, SDKValidationError> {
|
|
132
|
+
return safeParse(
|
|
133
|
+
jsonString,
|
|
134
|
+
(x) => Filter$inboundSchema.parse(JSON.parse(x)),
|
|
135
|
+
`Failed to parse 'Filter' from JSON`,
|
|
136
|
+
);
|
|
137
|
+
}
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
import {
|
|
11
|
+
IdentityMetrics,
|
|
12
|
+
IdentityMetrics$inboundSchema,
|
|
13
|
+
} from "./identitymetrics.js";
|
|
14
|
+
|
|
15
|
+
export type Metadata = {};
|
|
16
|
+
|
|
17
|
+
export type Identity = {
|
|
18
|
+
id?: string | undefined;
|
|
19
|
+
externalId?: string | undefined;
|
|
20
|
+
workspaceId?: string | undefined;
|
|
21
|
+
displayName?: string | undefined;
|
|
22
|
+
email?: string | undefined;
|
|
23
|
+
avatarUrl?: string | undefined;
|
|
24
|
+
tags?: Array<string> | undefined;
|
|
25
|
+
metadata?: Metadata | undefined;
|
|
26
|
+
created?: string | undefined;
|
|
27
|
+
updated?: string | undefined;
|
|
28
|
+
metrics?: IdentityMetrics | undefined;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
/** @internal */
|
|
32
|
+
export const Metadata$inboundSchema: z.ZodType<
|
|
33
|
+
Metadata,
|
|
34
|
+
z.ZodTypeDef,
|
|
35
|
+
unknown
|
|
36
|
+
> = z.object({});
|
|
37
|
+
|
|
38
|
+
export function metadataFromJSON(
|
|
39
|
+
jsonString: string,
|
|
40
|
+
): SafeParseResult<Metadata, SDKValidationError> {
|
|
41
|
+
return safeParse(
|
|
42
|
+
jsonString,
|
|
43
|
+
(x) => Metadata$inboundSchema.parse(JSON.parse(x)),
|
|
44
|
+
`Failed to parse 'Metadata' from JSON`,
|
|
45
|
+
);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
/** @internal */
|
|
49
|
+
export const Identity$inboundSchema: z.ZodType<
|
|
50
|
+
Identity,
|
|
51
|
+
z.ZodTypeDef,
|
|
52
|
+
unknown
|
|
53
|
+
> = z.object({
|
|
54
|
+
_id: z.string().optional(),
|
|
55
|
+
external_id: z.string().optional(),
|
|
56
|
+
workspace_id: z.string().optional(),
|
|
57
|
+
display_name: z.string().optional(),
|
|
58
|
+
email: z.string().optional(),
|
|
59
|
+
avatar_url: z.string().optional(),
|
|
60
|
+
tags: z.array(z.string()).optional(),
|
|
61
|
+
metadata: z.lazy(() => Metadata$inboundSchema).optional(),
|
|
62
|
+
created: z.string().optional(),
|
|
63
|
+
updated: z.string().optional(),
|
|
64
|
+
metrics: IdentityMetrics$inboundSchema.optional(),
|
|
65
|
+
}).transform((v) => {
|
|
66
|
+
return remap$(v, {
|
|
67
|
+
"_id": "id",
|
|
68
|
+
"external_id": "externalId",
|
|
69
|
+
"workspace_id": "workspaceId",
|
|
70
|
+
"display_name": "displayName",
|
|
71
|
+
"avatar_url": "avatarUrl",
|
|
72
|
+
});
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
export function identityFromJSON(
|
|
76
|
+
jsonString: string,
|
|
77
|
+
): SafeParseResult<Identity, SDKValidationError> {
|
|
78
|
+
return safeParse(
|
|
79
|
+
jsonString,
|
|
80
|
+
(x) => Identity$inboundSchema.parse(JSON.parse(x)),
|
|
81
|
+
`Failed to parse 'Identity' from JSON`,
|
|
82
|
+
);
|
|
83
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
|
|
11
|
+
export type IdentityMetrics = {
|
|
12
|
+
totalTokens?: number | undefined;
|
|
13
|
+
totalCost?: number | undefined;
|
|
14
|
+
totalRequests?: number | undefined;
|
|
15
|
+
errorRate?: number | undefined;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/** @internal */
|
|
19
|
+
export const IdentityMetrics$inboundSchema: z.ZodType<
|
|
20
|
+
IdentityMetrics,
|
|
21
|
+
z.ZodTypeDef,
|
|
22
|
+
unknown
|
|
23
|
+
> = z.object({
|
|
24
|
+
total_tokens: z.number().optional(),
|
|
25
|
+
total_cost: z.number().optional(),
|
|
26
|
+
total_requests: z.number().optional(),
|
|
27
|
+
error_rate: z.number().optional(),
|
|
28
|
+
}).transform((v) => {
|
|
29
|
+
return remap$(v, {
|
|
30
|
+
"total_tokens": "totalTokens",
|
|
31
|
+
"total_cost": "totalCost",
|
|
32
|
+
"total_requests": "totalRequests",
|
|
33
|
+
"error_rate": "errorRate",
|
|
34
|
+
});
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
export function identityMetricsFromJSON(
|
|
38
|
+
jsonString: string,
|
|
39
|
+
): SafeParseResult<IdentityMetrics, SDKValidationError> {
|
|
40
|
+
return safeParse(
|
|
41
|
+
jsonString,
|
|
42
|
+
(x) => IdentityMetrics$inboundSchema.parse(JSON.parse(x)),
|
|
43
|
+
`Failed to parse 'IdentityMetrics' from JSON`,
|
|
44
|
+
);
|
|
45
|
+
}
|
|
@@ -18,12 +18,16 @@ export * from "./conversationparam.js";
|
|
|
18
18
|
export * from "./createagentresponse.js";
|
|
19
19
|
export * from "./createfilerequest.js";
|
|
20
20
|
export * from "./createfileresponse.js";
|
|
21
|
+
export * from "./createidentityrequest.js";
|
|
22
|
+
export * from "./createidentityresponse.js";
|
|
21
23
|
export * from "./createprojectrequest.js";
|
|
22
24
|
export * from "./createprojectresponse.js";
|
|
23
25
|
export * from "./createskillrequest.js";
|
|
24
26
|
export * from "./createskillresponse.js";
|
|
25
27
|
export * from "./datapart.js";
|
|
28
|
+
export * from "./datapoint.js";
|
|
26
29
|
export * from "./deletefileresponse.js";
|
|
30
|
+
export * from "./deleteidentityresponse.js";
|
|
27
31
|
export * from "./deleteprojectresponse.js";
|
|
28
32
|
export * from "./deleteskillresponse.js";
|
|
29
33
|
export * from "./errorpart.js";
|
|
@@ -39,6 +43,7 @@ export * from "./fallbackconfig.js";
|
|
|
39
43
|
export * from "./file.js";
|
|
40
44
|
export * from "./filecontentpartschema.js";
|
|
41
45
|
export * from "./filepart.js";
|
|
46
|
+
export * from "./filter.js";
|
|
42
47
|
export * from "./getagentresponse.js";
|
|
43
48
|
export * from "./getfilecontentresponse.js";
|
|
44
49
|
export * from "./getfileresponse.js";
|
|
@@ -46,12 +51,15 @@ export * from "./getprojectresponse.js";
|
|
|
46
51
|
export * from "./getskillresponse.js";
|
|
47
52
|
export * from "./guardrailref.js";
|
|
48
53
|
export * from "./guardrailrule.js";
|
|
54
|
+
export * from "./identity.js";
|
|
55
|
+
export * from "./identitymetrics.js";
|
|
49
56
|
export * from "./imagecontentpartschema.js";
|
|
50
57
|
export * from "./incompletedetails.js";
|
|
51
58
|
export * from "./inputtokensdetails.js";
|
|
52
59
|
export * from "./invokedeploymentrequest.js";
|
|
53
60
|
export * from "./limits.js";
|
|
54
61
|
export * from "./listfilesresponse.js";
|
|
62
|
+
export * from "./listidentitiesresponse.js";
|
|
55
63
|
export * from "./listprojectsresponse.js";
|
|
56
64
|
export * from "./listskillsresponse.js";
|
|
57
65
|
export * from "./memoryparam.js";
|
|
@@ -70,6 +78,8 @@ export * from "./publicschedule.js";
|
|
|
70
78
|
export * from "./publicscheduleerrordetail.js";
|
|
71
79
|
export * from "./publicschedulepayload.js";
|
|
72
80
|
export * from "./publicusage.js";
|
|
81
|
+
export * from "./queryreportrequest.js";
|
|
82
|
+
export * from "./queryreportresponse.js";
|
|
73
83
|
export * from "./reasoning.js";
|
|
74
84
|
export * from "./reasoningparam.js";
|
|
75
85
|
export * from "./reasoningpart.js";
|
|
@@ -82,10 +92,12 @@ export * from "./responseerror.js";
|
|
|
82
92
|
export * from "./responseexecutionlimits.js";
|
|
83
93
|
export * from "./responsefailedevent.js";
|
|
84
94
|
export * from "./responseidentity.js";
|
|
95
|
+
export * from "./responsemeta.js";
|
|
85
96
|
export * from "./responseretryconfig.js";
|
|
86
97
|
export * from "./responsestartedevent.js";
|
|
87
98
|
export * from "./responsestreamingevent.js";
|
|
88
99
|
export * from "./responsethread.js";
|
|
100
|
+
export * from "./retrieveidentityresponse.js";
|
|
89
101
|
export * from "./reviewoutcome.js";
|
|
90
102
|
export * from "./routingrule.js";
|
|
91
103
|
export * from "./security.js";
|
|
@@ -109,8 +121,11 @@ export * from "./toolresultpart.js";
|
|
|
109
121
|
export * from "./toolreviewdoneevent.js";
|
|
110
122
|
export * from "./toolreviewrequestedevent.js";
|
|
111
123
|
export * from "./toolstartedevent.js";
|
|
124
|
+
export * from "./totals.js";
|
|
112
125
|
export * from "./updatefilerequest.js";
|
|
113
126
|
export * from "./updatefileresponse.js";
|
|
127
|
+
export * from "./updateidentityrequest.js";
|
|
128
|
+
export * from "./updateidentityresponse.js";
|
|
114
129
|
export * from "./updateprojectrequest.js";
|
|
115
130
|
export * from "./updateprojectresponse.js";
|
|
116
131
|
export * from "./updateskillrequest.js";
|
|
@@ -739,7 +739,7 @@ export type Messages =
|
|
|
739
739
|
/**
|
|
740
740
|
* Metadata about the document
|
|
741
741
|
*/
|
|
742
|
-
export type
|
|
742
|
+
export type InvokeDeploymentRequestMetadata = {
|
|
743
743
|
/**
|
|
744
744
|
* Name of the file the text is from.
|
|
745
745
|
*/
|
|
@@ -762,7 +762,7 @@ export type Documents = {
|
|
|
762
762
|
/**
|
|
763
763
|
* Metadata about the document
|
|
764
764
|
*/
|
|
765
|
-
metadata?:
|
|
765
|
+
metadata?: InvokeDeploymentRequestMetadata | undefined;
|
|
766
766
|
};
|
|
767
767
|
|
|
768
768
|
export type InvokeOptions = {
|
|
@@ -2342,17 +2342,17 @@ export function messagesToJSON(messages: Messages): string {
|
|
|
2342
2342
|
}
|
|
2343
2343
|
|
|
2344
2344
|
/** @internal */
|
|
2345
|
-
export type
|
|
2345
|
+
export type InvokeDeploymentRequestMetadata$Outbound = {
|
|
2346
2346
|
file_name?: string | undefined;
|
|
2347
2347
|
file_type?: string | undefined;
|
|
2348
2348
|
page_number?: number | undefined;
|
|
2349
2349
|
};
|
|
2350
2350
|
|
|
2351
2351
|
/** @internal */
|
|
2352
|
-
export const
|
|
2353
|
-
|
|
2352
|
+
export const InvokeDeploymentRequestMetadata$outboundSchema: z.ZodType<
|
|
2353
|
+
InvokeDeploymentRequestMetadata$Outbound,
|
|
2354
2354
|
z.ZodTypeDef,
|
|
2355
|
-
|
|
2355
|
+
InvokeDeploymentRequestMetadata
|
|
2356
2356
|
> = z.object({
|
|
2357
2357
|
fileName: z.string().optional(),
|
|
2358
2358
|
fileType: z.string().optional(),
|
|
@@ -2365,14 +2365,20 @@ export const Metadata$outboundSchema: z.ZodType<
|
|
|
2365
2365
|
});
|
|
2366
2366
|
});
|
|
2367
2367
|
|
|
2368
|
-
export function
|
|
2369
|
-
|
|
2368
|
+
export function invokeDeploymentRequestMetadataToJSON(
|
|
2369
|
+
invokeDeploymentRequestMetadata: InvokeDeploymentRequestMetadata,
|
|
2370
|
+
): string {
|
|
2371
|
+
return JSON.stringify(
|
|
2372
|
+
InvokeDeploymentRequestMetadata$outboundSchema.parse(
|
|
2373
|
+
invokeDeploymentRequestMetadata,
|
|
2374
|
+
),
|
|
2375
|
+
);
|
|
2370
2376
|
}
|
|
2371
2377
|
|
|
2372
2378
|
/** @internal */
|
|
2373
2379
|
export type Documents$Outbound = {
|
|
2374
2380
|
text: string;
|
|
2375
|
-
metadata?:
|
|
2381
|
+
metadata?: InvokeDeploymentRequestMetadata$Outbound | undefined;
|
|
2376
2382
|
};
|
|
2377
2383
|
|
|
2378
2384
|
/** @internal */
|
|
@@ -2382,7 +2388,8 @@ export const Documents$outboundSchema: z.ZodType<
|
|
|
2382
2388
|
Documents
|
|
2383
2389
|
> = z.object({
|
|
2384
2390
|
text: z.string(),
|
|
2385
|
-
metadata: z.lazy(() =>
|
|
2391
|
+
metadata: z.lazy(() => InvokeDeploymentRequestMetadata$outboundSchema)
|
|
2392
|
+
.optional(),
|
|
2386
2393
|
});
|
|
2387
2394
|
|
|
2388
2395
|
export function documentsToJSON(documents: Documents): string {
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import * as z from "zod/v3";
|
|
6
|
+
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
|
+
import { safeParse } from "../../lib/schemas.js";
|
|
8
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
9
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
10
|
+
import { Identity, Identity$inboundSchema } from "./identity.js";
|
|
11
|
+
|
|
12
|
+
export type ListIdentitiesResponse = {
|
|
13
|
+
object?: string | undefined;
|
|
14
|
+
data?: Array<Identity> | undefined;
|
|
15
|
+
hasMore?: boolean | undefined;
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
/** @internal */
|
|
19
|
+
export const ListIdentitiesResponse$inboundSchema: z.ZodType<
|
|
20
|
+
ListIdentitiesResponse,
|
|
21
|
+
z.ZodTypeDef,
|
|
22
|
+
unknown
|
|
23
|
+
> = z.object({
|
|
24
|
+
object: z.string().optional(),
|
|
25
|
+
data: z.array(Identity$inboundSchema).optional(),
|
|
26
|
+
has_more: z.boolean().optional(),
|
|
27
|
+
}).transform((v) => {
|
|
28
|
+
return remap$(v, {
|
|
29
|
+
"has_more": "hasMore",
|
|
30
|
+
});
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
export function listIdentitiesResponseFromJSON(
|
|
34
|
+
jsonString: string,
|
|
35
|
+
): SafeParseResult<ListIdentitiesResponse, SDKValidationError> {
|
|
36
|
+
return safeParse(
|
|
37
|
+
jsonString,
|
|
38
|
+
(x) => ListIdentitiesResponse$inboundSchema.parse(JSON.parse(x)),
|
|
39
|
+
`Failed to parse 'ListIdentitiesResponse' from JSON`,
|
|
40
|
+
);
|
|
41
|
+
}
|
|
@@ -10,8 +10,20 @@ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
|
10
10
|
import { Project, Project$inboundSchema } from "./project.js";
|
|
11
11
|
|
|
12
12
|
export type ListProjectsResponse = {
|
|
13
|
+
/**
|
|
14
|
+
* Object discriminator for list responses; always `list`.
|
|
15
|
+
*/
|
|
13
16
|
object?: string | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* Page of projects, ordered newest first.
|
|
19
|
+
*/
|
|
14
20
|
data?: Array<Project> | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* Whether more projects are available in the selected pagination
|
|
23
|
+
*
|
|
24
|
+
* @remarks
|
|
25
|
+
* direction.
|
|
26
|
+
*/
|
|
15
27
|
hasMore?: boolean | undefined;
|
|
16
28
|
};
|
|
17
29
|
|