@orq-ai/node 4.2.3 → 4.2.4
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/examples/package-lock.json +1 -1
- package/jsr.json +1 -1
- package/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/models/components/conversationresponse.js +1 -1
- package/models/components/conversationwithmessagesresponse.js +1 -1
- package/models/components/partdoneevent.js +1 -1
- package/models/components/reasoningpart.js +1 -1
- package/models/operations/createcontact.js +1 -1
- package/models/operations/createconversation.js +1 -1
- package/models/operations/createconversationresponse.js +2 -2
- 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 +14 -14
- package/models/operations/createidentity.js +1 -1
- package/models/operations/createtool.js +6 -6
- package/models/operations/fileget.js +1 -1
- package/models/operations/filelist.js +1 -1
- package/models/operations/fileupload.js +1 -1
- package/models/operations/generateconversationname.js +1 -1
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +14 -14
- 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/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/updateconversation.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 +14 -14
- package/models/operations/updateidentity.js +1 -1
- package/models/operations/updatetool.js +7 -7
- package/package.json +1 -1
- package/packages/orq-rc/examples/contactsCreate.example.ts +42 -0
- package/packages/orq-rc/examples/package-lock.json +1 -1
- package/packages/orq-rc/jsr.json +1 -1
- package/packages/orq-rc/package-lock.json +2 -2
- package/packages/orq-rc/package.json +1 -1
- package/packages/orq-rc/src/funcs/contactsCreate.ts +7 -14
- package/packages/orq-rc/src/lib/config.ts +2 -2
- package/packages/orq-rc/src/models/components/conversationresponse.ts +1 -1
- package/packages/orq-rc/src/models/components/conversationwithmessagesresponse.ts +1 -1
- package/packages/orq-rc/src/models/components/index.ts +1 -0
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +11 -0
- package/packages/orq-rc/src/models/components/partdoneevent.ts +1 -1
- package/packages/orq-rc/src/models/components/publiccontact.ts +3 -1
- package/packages/orq-rc/src/models/components/publicidentity.ts +69 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +1 -1
- package/packages/orq-rc/src/models/errors/index.ts +0 -3
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +11 -78
- package/packages/orq-rc/src/models/operations/createcompletion.ts +11 -75
- package/packages/orq-rc/src/models/operations/createcontact.ts +3 -9
- package/packages/orq-rc/src/models/operations/createconversation.ts +1 -1
- package/packages/orq-rc/src/models/operations/createconversationresponse.ts +2 -2
- package/packages/orq-rc/src/models/operations/createdataset.ts +1 -1
- 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/createembedding.ts +11 -75
- package/packages/orq-rc/src/models/operations/createeval.ts +14 -14
- package/packages/orq-rc/src/models/operations/createidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/createimage.ts +11 -75
- package/packages/orq-rc/src/models/operations/createimageedit.ts +11 -75
- package/packages/orq-rc/src/models/operations/createimagevariation.ts +11 -77
- package/packages/orq-rc/src/models/operations/creatererank.ts +11 -75
- package/packages/orq-rc/src/models/operations/createspeech.ts +11 -75
- package/packages/orq-rc/src/models/operations/createtool.ts +6 -6
- package/packages/orq-rc/src/models/operations/createtranscription.ts +11 -75
- package/packages/orq-rc/src/models/operations/createtranslation.ts +11 -75
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +6 -0
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +6 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +1 -1
- package/packages/orq-rc/src/models/operations/filelist.ts +1 -1
- package/packages/orq-rc/src/models/operations/fileupload.ts +1 -1
- package/packages/orq-rc/src/models/operations/generateconversationname.ts +1 -1
- package/packages/orq-rc/src/models/operations/getalltools.ts +6 -6
- package/packages/orq-rc/src/models/operations/getevals.ts +35 -39
- package/packages/orq-rc/src/models/operations/index.ts +0 -4
- 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 +1 -1
- 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 +1 -1
- package/packages/orq-rc/src/models/operations/retrievetool.ts +6 -6
- package/packages/orq-rc/src/models/operations/runagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateconversation.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +4 -4
- package/packages/orq-rc/src/models/operations/updatedataset.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +1 -1
- package/packages/orq-rc/src/models/operations/updateeval.ts +14 -14
- package/packages/orq-rc/src/models/operations/updateidentity.ts +1 -1
- package/packages/orq-rc/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/src/sdk/contacts.ts +3 -85
- package/src/lib/config.ts +2 -2
- package/src/models/components/conversationresponse.ts +1 -1
- package/src/models/components/conversationwithmessagesresponse.ts +1 -1
- package/src/models/components/partdoneevent.ts +1 -1
- package/src/models/components/reasoningpart.ts +1 -1
- package/src/models/operations/createcontact.ts +1 -1
- package/src/models/operations/createconversation.ts +1 -1
- package/src/models/operations/createconversationresponse.ts +2 -2
- 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 +14 -14
- package/src/models/operations/createidentity.ts +1 -1
- package/src/models/operations/createtool.ts +6 -6
- package/src/models/operations/fileget.ts +1 -1
- package/src/models/operations/filelist.ts +1 -1
- package/src/models/operations/fileupload.ts +1 -1
- package/src/models/operations/generateconversationname.ts +1 -1
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +14 -14
- 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/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/updateconversation.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 +14 -14
- package/src/models/operations/updateidentity.ts +1 -1
- package/src/models/operations/updatetool.ts +7 -7
- package/packages/orq-rc/examples/feedbackCreate.example.ts +0 -32
- package/packages/orq-rc/src/funcs/contactsDelete.ts +0 -178
- package/packages/orq-rc/src/funcs/contactsList.ts +0 -172
- package/packages/orq-rc/src/funcs/contactsRetrieve.ts +0 -177
- package/packages/orq-rc/src/funcs/contactsUpdate.ts +0 -178
- package/packages/orq-rc/src/models/errors/deletecontact.ts +0 -62
- package/packages/orq-rc/src/models/errors/retrievecontact.ts +0 -62
- package/packages/orq-rc/src/models/errors/updatecontact.ts +0 -54
- package/packages/orq-rc/src/models/operations/deletecontact.ts +0 -34
- package/packages/orq-rc/src/models/operations/listcontacts.ts +0 -274
- package/packages/orq-rc/src/models/operations/retrievecontact.ts +0 -117
- package/packages/orq-rc/src/models/operations/updatecontact.ts +0 -188
|
@@ -187,7 +187,7 @@ function retrieveToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
187
187
|
}
|
|
188
188
|
/** @internal */
|
|
189
189
|
exports.RetrieveToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
190
|
-
_id: z.string().default("
|
|
190
|
+
_id: z.string().default("tool_01KFTGWY2RJYMZTSYPSCG9TX4B"),
|
|
191
191
|
path: z.string(),
|
|
192
192
|
key: z.string(),
|
|
193
193
|
display_name: z.string().optional(),
|
|
@@ -242,7 +242,7 @@ function retrieveToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
242
242
|
}
|
|
243
243
|
/** @internal */
|
|
244
244
|
exports.RetrieveToolResponseBodyTools$inboundSchema = z.object({
|
|
245
|
-
id: z.string().default("
|
|
245
|
+
id: z.string().default("01KFTGWY2QG19N837E4J9TA9D5"),
|
|
246
246
|
name: z.string(),
|
|
247
247
|
description: z.string().optional(),
|
|
248
248
|
schema: z.lazy(() => exports.RetrieveToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -270,7 +270,7 @@ function retrieveToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
270
270
|
}
|
|
271
271
|
/** @internal */
|
|
272
272
|
exports.RetrieveToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
273
|
-
_id: z.string().default("
|
|
273
|
+
_id: z.string().default("tool_01KFTGWY2N2XVB03VPX8F9V55X"),
|
|
274
274
|
path: z.string(),
|
|
275
275
|
key: z.string(),
|
|
276
276
|
display_name: z.string().optional(),
|
|
@@ -359,7 +359,7 @@ function retrieveToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
359
359
|
}
|
|
360
360
|
/** @internal */
|
|
361
361
|
exports.RetrieveToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
362
|
-
_id: z.string().default("
|
|
362
|
+
_id: z.string().default("tool_01KFTGWY2CVYV3SQ3FV3V48R6R"),
|
|
363
363
|
path: z.string(),
|
|
364
364
|
key: z.string(),
|
|
365
365
|
display_name: z.string().optional(),
|
|
@@ -411,7 +411,7 @@ function retrieveToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
411
411
|
}
|
|
412
412
|
/** @internal */
|
|
413
413
|
exports.RetrieveToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
414
|
-
_id: z.string().default("
|
|
414
|
+
_id: z.string().default("tool_01KFTGWY2APVFTWG3FSYYABENE"),
|
|
415
415
|
path: z.string(),
|
|
416
416
|
key: z.string(),
|
|
417
417
|
display_name: z.string().optional(),
|
|
@@ -467,7 +467,7 @@ function retrieveToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
467
467
|
}
|
|
468
468
|
/** @internal */
|
|
469
469
|
exports.RetrieveToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
470
|
-
_id: z.string().default("
|
|
470
|
+
_id: z.string().default("tool_01KFTGWY27VC22E2ADVN38MW9F"),
|
|
471
471
|
path: z.string(),
|
|
472
472
|
key: z.string(),
|
|
473
473
|
display_name: z.string().optional(),
|
|
@@ -1123,7 +1123,7 @@ function agentToolInputRunSchemaToJSON(agentToolInputRunSchema) {
|
|
|
1123
1123
|
}
|
|
1124
1124
|
/** @internal */
|
|
1125
1125
|
exports.Tools$outboundSchema = z.object({
|
|
1126
|
-
id: z.string().default("
|
|
1126
|
+
id: z.string().default("01KFTGWXF9SENYZ9PP1HQP108P"),
|
|
1127
1127
|
name: z.string(),
|
|
1128
1128
|
description: z.string().optional(),
|
|
1129
1129
|
schema: z.lazy(() => exports.AgentToolInputRunSchema$outboundSchema),
|
|
@@ -1086,7 +1086,7 @@ function streamRunAgentAgentToolInputRunAgentsSchemaToJSON(streamRunAgentAgentTo
|
|
|
1086
1086
|
}
|
|
1087
1087
|
/** @internal */
|
|
1088
1088
|
exports.AgentToolInputRunTools$outboundSchema = z.object({
|
|
1089
|
-
id: z.string().default("
|
|
1089
|
+
id: z.string().default("01KFTGWXJMNV1VGDC9CH8BCDTH"),
|
|
1090
1090
|
name: z.string(),
|
|
1091
1091
|
description: z.string().optional(),
|
|
1092
1092
|
schema: z.lazy(() => exports.StreamRunAgentAgentToolInputRunAgentsSchema$outboundSchema),
|
|
@@ -93,7 +93,7 @@ function updateConversationConversationsMetadataFromJSON(jsonString) {
|
|
|
93
93
|
}
|
|
94
94
|
/** @internal */
|
|
95
95
|
exports.UpdateConversationResponseBody$inboundSchema = z.object({
|
|
96
|
-
_id: z.string().default("
|
|
96
|
+
_id: z.string().default("conv_01kftgwxmqc02b3d7a4eprfmep"),
|
|
97
97
|
kind: exports.UpdateConversationKind$inboundSchema,
|
|
98
98
|
displayName: z.string(),
|
|
99
99
|
createdAt: z.number(),
|
|
@@ -745,7 +745,7 @@ exports.UpdateDatapointEvaluations3$inboundSchema = z.object({
|
|
|
745
745
|
source: exports.UpdateDatapointEvaluationsDatasetsResponseSource$inboundSchema
|
|
746
746
|
.default("orq"),
|
|
747
747
|
reviewed_by_id: z.string(),
|
|
748
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
748
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-25T12:08:45.195Z").transform(v => new Date(v)),
|
|
749
749
|
type: z.literal("string_array"),
|
|
750
750
|
values: z.array(z.string()),
|
|
751
751
|
}).transform((v) => {
|
|
@@ -772,7 +772,7 @@ exports.UpdateDatapointEvaluations2$inboundSchema = z.object({
|
|
|
772
772
|
human_review_id: z.string(),
|
|
773
773
|
source: exports.UpdateDatapointEvaluationsDatasetsSource$inboundSchema.default("orq"),
|
|
774
774
|
reviewed_by_id: z.string(),
|
|
775
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
775
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-25T12:08:45.194Z").transform(v => new Date(v)),
|
|
776
776
|
type: z.literal("number"),
|
|
777
777
|
value: z.number(),
|
|
778
778
|
}).transform((v) => {
|
|
@@ -798,7 +798,7 @@ exports.UpdateDatapointEvaluations1$inboundSchema = z.object({
|
|
|
798
798
|
human_review_id: z.string(),
|
|
799
799
|
source: exports.UpdateDatapointEvaluationsSource$inboundSchema.default("orq"),
|
|
800
800
|
reviewed_by_id: z.string(),
|
|
801
|
-
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-
|
|
801
|
+
reviewed_at: z.string().datetime({ offset: true }).default("2026-01-25T12:08:45.194Z").transform(v => new Date(v)),
|
|
802
802
|
type: z.literal("string"),
|
|
803
803
|
value: z.string(),
|
|
804
804
|
}).transform((v) => {
|
|
@@ -845,7 +845,7 @@ exports.UpdateDatapointResponseBody$inboundSchema = z.object({
|
|
|
845
845
|
updated_by_id: z.string().optional(),
|
|
846
846
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
847
847
|
.optional(),
|
|
848
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
848
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-25T12:08:31.744Z").transform(v => new Date(v)),
|
|
849
849
|
}).transform((v) => {
|
|
850
850
|
return (0, primitives_js_1.remap)(v, {
|
|
851
851
|
"_id": "id",
|
|
@@ -95,7 +95,7 @@ exports.UpdateDatasetResponseBody$inboundSchema = z.object({
|
|
|
95
95
|
updated_by_id: z.string().optional(),
|
|
96
96
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
97
97
|
.optional(),
|
|
98
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
98
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-25T12:08:31.744Z").transform(v => new Date(v)),
|
|
99
99
|
}).transform((v) => {
|
|
100
100
|
return (0, primitives_js_1.remap)(v, {
|
|
101
101
|
"_id": "id",
|
|
@@ -80,7 +80,7 @@ function updateDatasourceRequestToJSON(updateDatasourceRequest) {
|
|
|
80
80
|
exports.UpdateDatasourceStatus$inboundSchema = z.nativeEnum(exports.UpdateDatasourceStatus);
|
|
81
81
|
/** @internal */
|
|
82
82
|
exports.UpdateDatasourceResponseBody$inboundSchema = z.object({
|
|
83
|
-
_id: z.string().default("
|
|
83
|
+
_id: z.string().default("01KFTGWY6PVAEKT0SN5PMVWKX4"),
|
|
84
84
|
display_name: z.string(),
|
|
85
85
|
description: z.string().optional(),
|
|
86
86
|
status: exports.UpdateDatasourceStatus$inboundSchema,
|
|
@@ -590,8 +590,8 @@ function updateEvalResponseBodyEvalsResponse200ApplicationJSON7GuardrailConfigFr
|
|
|
590
590
|
exports.ResponseBodyTypescript$inboundSchema = z.object({
|
|
591
591
|
_id: z.string(),
|
|
592
592
|
description: z.string(),
|
|
593
|
-
created: z.string().default("2026-01-
|
|
594
|
-
updated: z.string().default("2026-01-
|
|
593
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
594
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
595
595
|
guardrail_config: z.union([
|
|
596
596
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Boolean$inboundSchema),
|
|
597
597
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody7Number$inboundSchema),
|
|
@@ -656,8 +656,8 @@ exports.ResponseBodyRagasMetric$inboundSchema = z.nativeEnum(exports.ResponseBod
|
|
|
656
656
|
exports.ResponseBodyRagas$inboundSchema = z.object({
|
|
657
657
|
_id: z.string(),
|
|
658
658
|
description: z.string(),
|
|
659
|
-
created: z.string().default("2026-01-
|
|
660
|
-
updated: z.string().default("2026-01-
|
|
659
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
660
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
661
661
|
guardrail_config: z.union([
|
|
662
662
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Boolean$inboundSchema),
|
|
663
663
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody6Number$inboundSchema),
|
|
@@ -996,8 +996,8 @@ function responseBodyFunctionParamsFromJSON(jsonString) {
|
|
|
996
996
|
exports.ResponseBodyFunction$inboundSchema = z.object({
|
|
997
997
|
_id: z.string(),
|
|
998
998
|
description: z.string(),
|
|
999
|
-
created: z.string().default("2026-01-
|
|
1000
|
-
updated: z.string().default("2026-01-
|
|
999
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1000
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1001
1001
|
guardrail_config: z.union([
|
|
1002
1002
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Boolean$inboundSchema),
|
|
1003
1003
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBody5Number$inboundSchema),
|
|
@@ -1093,8 +1093,8 @@ function updateEvalResponseBodyEvalsResponse200GuardrailConfigFromJSON(jsonStrin
|
|
|
1093
1093
|
exports.UpdateEvalResponseBodyPython$inboundSchema = z.object({
|
|
1094
1094
|
_id: z.string(),
|
|
1095
1095
|
description: z.string(),
|
|
1096
|
-
created: z.string().default("2026-01-
|
|
1097
|
-
updated: z.string().default("2026-01-
|
|
1096
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1097
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1098
1098
|
guardrail_config: z.union([
|
|
1099
1099
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyBoolean$inboundSchema),
|
|
1100
1100
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONResponseBodyNumber$inboundSchema),
|
|
@@ -1158,8 +1158,8 @@ exports.UpdateEvalResponseBodyMethod$inboundSchema = z.nativeEnum(exports.Update
|
|
|
1158
1158
|
exports.UpdateEvalResponseBodyHTTP$inboundSchema = z.object({
|
|
1159
1159
|
_id: z.string(),
|
|
1160
1160
|
description: z.string(),
|
|
1161
|
-
created: z.string().default("2026-01-
|
|
1162
|
-
updated: z.string().default("2026-01-
|
|
1161
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1162
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1163
1163
|
guardrail_config: z.union([
|
|
1164
1164
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONBoolean$inboundSchema),
|
|
1165
1165
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200ApplicationJSONNumber$inboundSchema),
|
|
@@ -1223,8 +1223,8 @@ function updateEvalResponseBodyEvalsGuardrailConfigFromJSON(jsonString) {
|
|
|
1223
1223
|
exports.UpdateEvalResponseBodyJSON$inboundSchema = z.object({
|
|
1224
1224
|
_id: z.string(),
|
|
1225
1225
|
description: z.string(),
|
|
1226
|
-
created: z.string().default("2026-01-
|
|
1227
|
-
updated: z.string().default("2026-01-
|
|
1226
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1227
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1228
1228
|
guardrail_config: z.union([
|
|
1229
1229
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Boolean$inboundSchema),
|
|
1230
1230
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponse200Number$inboundSchema),
|
|
@@ -1285,8 +1285,8 @@ function updateEvalResponseBodyGuardrailConfigFromJSON(jsonString) {
|
|
|
1285
1285
|
exports.UpdateEvalResponseBodyLLM$inboundSchema = z.object({
|
|
1286
1286
|
_id: z.string(),
|
|
1287
1287
|
description: z.string(),
|
|
1288
|
-
created: z.string().default("2026-01-
|
|
1289
|
-
updated: z.string().default("2026-01-
|
|
1288
|
+
created: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1289
|
+
updated: z.string().default("2026-01-25T12:08:33.377Z"),
|
|
1290
1290
|
guardrail_config: z.union([
|
|
1291
1291
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseBoolean$inboundSchema),
|
|
1292
1292
|
z.lazy(() => exports.UpdateEvalGuardrailConfigEvalsResponseNumber$inboundSchema),
|
|
@@ -83,7 +83,7 @@ exports.UpdateIdentityResponseBody$inboundSchema = z.object({
|
|
|
83
83
|
metadata: z.record(z.any()).optional(),
|
|
84
84
|
created: z.string().datetime({ offset: true }).transform(v => new Date(v))
|
|
85
85
|
.optional(),
|
|
86
|
-
updated: z.string().datetime({ offset: true }).default("2026-01-
|
|
86
|
+
updated: z.string().datetime({ offset: true }).default("2026-01-25T12:08:31.744Z").transform(v => new Date(v)),
|
|
87
87
|
}).transform((v) => {
|
|
88
88
|
return (0, primitives_js_1.remap)(v, {
|
|
89
89
|
"_id": "id",
|
|
@@ -339,7 +339,7 @@ function updateToolRequestBodyToolsSchemaToJSON(updateToolRequestBodyToolsSchema
|
|
|
339
339
|
}
|
|
340
340
|
/** @internal */
|
|
341
341
|
exports.RequestBodyTools$outboundSchema = z.object({
|
|
342
|
-
id: z.string().default("
|
|
342
|
+
id: z.string().default("01KFTGWY1VNJD50Y7M6N2TP0GA"),
|
|
343
343
|
name: z.string(),
|
|
344
344
|
description: z.string().optional(),
|
|
345
345
|
schema: z.lazy(() => exports.UpdateToolRequestBodyToolsSchema$outboundSchema),
|
|
@@ -612,7 +612,7 @@ function updateToolResponseBodyCodeToolFromJSON(jsonString) {
|
|
|
612
612
|
}
|
|
613
613
|
/** @internal */
|
|
614
614
|
exports.UpdateToolResponseBodyCodeExecutionTool$inboundSchema = z.object({
|
|
615
|
-
_id: z.string().default("
|
|
615
|
+
_id: z.string().default("tool_01KFTGWY1PSHE7GPHYBYWXGDH8"),
|
|
616
616
|
path: z.string(),
|
|
617
617
|
key: z.string(),
|
|
618
618
|
display_name: z.string().optional(),
|
|
@@ -667,7 +667,7 @@ function updateToolResponseBodyToolsSchemaFromJSON(jsonString) {
|
|
|
667
667
|
}
|
|
668
668
|
/** @internal */
|
|
669
669
|
exports.UpdateToolResponseBodyTools$inboundSchema = z.object({
|
|
670
|
-
id: z.string().default("
|
|
670
|
+
id: z.string().default("01KFTGWY1NHWP91PASDKFMD1W8"),
|
|
671
671
|
name: z.string(),
|
|
672
672
|
description: z.string().optional(),
|
|
673
673
|
schema: z.lazy(() => exports.UpdateToolResponseBodyToolsSchema$inboundSchema),
|
|
@@ -695,7 +695,7 @@ function updateToolResponseBodyMcpFromJSON(jsonString) {
|
|
|
695
695
|
}
|
|
696
696
|
/** @internal */
|
|
697
697
|
exports.UpdateToolResponseBodyMCPTool$inboundSchema = z.object({
|
|
698
|
-
_id: z.string().default("
|
|
698
|
+
_id: z.string().default("tool_01KFTGWY1MBX9NTFC0661FT45Q"),
|
|
699
699
|
path: z.string(),
|
|
700
700
|
key: z.string(),
|
|
701
701
|
display_name: z.string().optional(),
|
|
@@ -784,7 +784,7 @@ function updateToolResponseBodyHttpFromJSON(jsonString) {
|
|
|
784
784
|
}
|
|
785
785
|
/** @internal */
|
|
786
786
|
exports.UpdateToolResponseBodyHTTPTool$inboundSchema = z.object({
|
|
787
|
-
_id: z.string().default("
|
|
787
|
+
_id: z.string().default("tool_01KFTGWY1JESY0N1R1VA3AR3X5"),
|
|
788
788
|
path: z.string(),
|
|
789
789
|
key: z.string(),
|
|
790
790
|
display_name: z.string().optional(),
|
|
@@ -836,7 +836,7 @@ function updateToolResponseBodyJsonSchemaFromJSON(jsonString) {
|
|
|
836
836
|
}
|
|
837
837
|
/** @internal */
|
|
838
838
|
exports.UpdateToolResponseBodyJSONSchemaTool$inboundSchema = z.object({
|
|
839
|
-
_id: z.string().default("
|
|
839
|
+
_id: z.string().default("tool_01KFTGWY1F5Q2AKFMHQVYHWGYM"),
|
|
840
840
|
path: z.string(),
|
|
841
841
|
key: z.string(),
|
|
842
842
|
display_name: z.string().optional(),
|
|
@@ -892,7 +892,7 @@ function updateToolResponseBodyFunctionFromJSON(jsonString) {
|
|
|
892
892
|
}
|
|
893
893
|
/** @internal */
|
|
894
894
|
exports.UpdateToolResponseBodyFunctionTool$inboundSchema = z.object({
|
|
895
|
-
_id: z.string().default("
|
|
895
|
+
_id: z.string().default("tool_01KFTGWY1DPF7NQCDYC2SWF2A2"),
|
|
896
896
|
path: z.string(),
|
|
897
897
|
key: z.string(),
|
|
898
898
|
display_name: z.string().optional(),
|
package/package.json
CHANGED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
import dotenv from "dotenv";
|
|
6
|
+
dotenv.config();
|
|
7
|
+
/**
|
|
8
|
+
* Example usage of the @orq-ai/node SDK
|
|
9
|
+
*
|
|
10
|
+
* To run this example from the examples directory:
|
|
11
|
+
* npm run build && npx tsx contactsCreate.example.ts
|
|
12
|
+
*/
|
|
13
|
+
|
|
14
|
+
import { Orq } from "@orq-ai/node";
|
|
15
|
+
|
|
16
|
+
const orq = new Orq({
|
|
17
|
+
apiKey: process.env["ORQ_API_KEY"] ?? "",
|
|
18
|
+
});
|
|
19
|
+
|
|
20
|
+
async function main() {
|
|
21
|
+
const result = await orq.contacts.create({
|
|
22
|
+
externalId: "user_12345",
|
|
23
|
+
displayName: "Jane Smith",
|
|
24
|
+
email: "jane.smith@example.com",
|
|
25
|
+
avatarUrl: "https://example.com/avatars/jane-smith.jpg",
|
|
26
|
+
tags: [
|
|
27
|
+
"premium",
|
|
28
|
+
"beta-user",
|
|
29
|
+
"enterprise",
|
|
30
|
+
],
|
|
31
|
+
metadata: {
|
|
32
|
+
"department": "Engineering",
|
|
33
|
+
"role": "Senior Developer",
|
|
34
|
+
"subscription_tier": "premium",
|
|
35
|
+
"last_login": "2024-01-15T10:30:00Z",
|
|
36
|
+
},
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
console.log(result);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
main().catch(console.error);
|
package/packages/orq-rc/jsr.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orq-ai/node",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.3.0-rc.0",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@orq-ai/node",
|
|
9
|
-
"version": "4.
|
|
9
|
+
"version": "4.3.0-rc.0",
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"zod": "^3.25.0 || ^4.0.0"
|
|
12
12
|
},
|
|
@@ -25,16 +25,14 @@ import { APICall, APIPromise } from "../types/async.js";
|
|
|
25
25
|
import { Result } from "../types/fp.js";
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Update user information
|
|
29
29
|
*
|
|
30
30
|
* @remarks
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
* @deprecated method: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
31
|
+
* Update or add user information to workspace
|
|
34
32
|
*/
|
|
35
33
|
export function contactsCreate(
|
|
36
34
|
client: OrqCore,
|
|
37
|
-
request
|
|
35
|
+
request: operations.CreateContactRequestBody,
|
|
38
36
|
options?: RequestOptions,
|
|
39
37
|
): APIPromise<
|
|
40
38
|
Result<
|
|
@@ -58,7 +56,7 @@ export function contactsCreate(
|
|
|
58
56
|
|
|
59
57
|
async function $do(
|
|
60
58
|
client: OrqCore,
|
|
61
|
-
request
|
|
59
|
+
request: operations.CreateContactRequestBody,
|
|
62
60
|
options?: RequestOptions,
|
|
63
61
|
): Promise<
|
|
64
62
|
[
|
|
@@ -78,19 +76,14 @@ async function $do(
|
|
|
78
76
|
> {
|
|
79
77
|
const parsed = safeParse(
|
|
80
78
|
request,
|
|
81
|
-
(value) =>
|
|
82
|
-
operations.CreateContactRequestBody$outboundSchema.optional().parse(
|
|
83
|
-
value,
|
|
84
|
-
),
|
|
79
|
+
(value) => operations.CreateContactRequestBody$outboundSchema.parse(value),
|
|
85
80
|
"Input validation failed",
|
|
86
81
|
);
|
|
87
82
|
if (!parsed.ok) {
|
|
88
83
|
return [parsed, { status: "invalid" }];
|
|
89
84
|
}
|
|
90
85
|
const payload = parsed.value;
|
|
91
|
-
const body = payload
|
|
92
|
-
? null
|
|
93
|
-
: encodeJSON("body", payload, { explode: true });
|
|
86
|
+
const body = encodeJSON("body", payload, { explode: true });
|
|
94
87
|
|
|
95
88
|
const path = pathToFunc("/v2/contacts")();
|
|
96
89
|
|
|
@@ -155,7 +148,7 @@ async function $do(
|
|
|
155
148
|
| UnexpectedClientError
|
|
156
149
|
| SDKValidationError
|
|
157
150
|
>(
|
|
158
|
-
M.json(
|
|
151
|
+
M.json(200, operations.CreateContactResponseBody$inboundSchema),
|
|
159
152
|
M.fail("4XX"),
|
|
160
153
|
M.fail("5XX"),
|
|
161
154
|
)(response, req);
|
|
@@ -68,7 +68,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
|
|
|
68
68
|
export const SDK_METADATA = {
|
|
69
69
|
language: "typescript",
|
|
70
70
|
openapiDocVersion: "2.0",
|
|
71
|
-
sdkVersion: "4.
|
|
71
|
+
sdkVersion: "4.3.0-rc.0",
|
|
72
72
|
genVersion: "2.799.0",
|
|
73
|
-
userAgent: "speakeasy-sdk/typescript 4.
|
|
73
|
+
userAgent: "speakeasy-sdk/typescript 4.3.0-rc.0 2.799.0 2.0 @orq-ai/node",
|
|
74
74
|
} as const;
|
|
@@ -107,7 +107,7 @@ export const ConversationResponse$inboundSchema: z.ZodType<
|
|
|
107
107
|
z.ZodTypeDef,
|
|
108
108
|
unknown
|
|
109
109
|
> = z.object({
|
|
110
|
-
_id: z.string().default("
|
|
110
|
+
_id: z.string().default("conv_01kfs437mvfx12bee0ymfxyqjm"),
|
|
111
111
|
kind: ConversationResponseKind$inboundSchema,
|
|
112
112
|
displayName: z.string(),
|
|
113
113
|
createdAt: z.number(),
|
|
@@ -122,7 +122,7 @@ export const ConversationWithMessagesResponse$inboundSchema: z.ZodType<
|
|
|
122
122
|
z.ZodTypeDef,
|
|
123
123
|
unknown
|
|
124
124
|
> = z.object({
|
|
125
|
-
_id: z.string().default("
|
|
125
|
+
_id: z.string().default("conv_01kfs437n1j2cwbwyhw2m18jzz"),
|
|
126
126
|
kind: ConversationWithMessagesResponseKind$inboundSchema,
|
|
127
127
|
displayName: z.string(),
|
|
128
128
|
createdAt: z.number(),
|
|
@@ -31,6 +31,7 @@ export * from "./partdelta.js";
|
|
|
31
31
|
export * from "./partdeltaevent.js";
|
|
32
32
|
export * from "./partdoneevent.js";
|
|
33
33
|
export * from "./publiccontact.js";
|
|
34
|
+
export * from "./publicidentity.js";
|
|
34
35
|
export * from "./reasoningpart.js";
|
|
35
36
|
export * from "./reasoningpartschema.js";
|
|
36
37
|
export * from "./redactedreasoningpartschema.js";
|
|
@@ -20,6 +20,11 @@ import {
|
|
|
20
20
|
ImageContentPartSchema$Outbound,
|
|
21
21
|
ImageContentPartSchema$outboundSchema,
|
|
22
22
|
} from "./imagecontentpartschema.js";
|
|
23
|
+
import {
|
|
24
|
+
PublicIdentity,
|
|
25
|
+
PublicIdentity$Outbound,
|
|
26
|
+
PublicIdentity$outboundSchema,
|
|
27
|
+
} from "./publicidentity.js";
|
|
23
28
|
import {
|
|
24
29
|
ReasoningPartSchema,
|
|
25
30
|
ReasoningPartSchema$Outbound,
|
|
@@ -1114,6 +1119,10 @@ export type InvokeDeploymentRequest = {
|
|
|
1114
1119
|
| MessagesToolMessage
|
|
1115
1120
|
>
|
|
1116
1121
|
| undefined;
|
|
1122
|
+
/**
|
|
1123
|
+
* Information about the identity making the request. If the identity does not exist, it will be created automatically.
|
|
1124
|
+
*/
|
|
1125
|
+
identity?: PublicIdentity | undefined;
|
|
1117
1126
|
/**
|
|
1118
1127
|
* A list of file IDs that are associated with the deployment request.
|
|
1119
1128
|
*/
|
|
@@ -3354,6 +3363,7 @@ export type InvokeDeploymentRequest$Outbound = {
|
|
|
3354
3363
|
| MessagesToolMessage$Outbound
|
|
3355
3364
|
>
|
|
3356
3365
|
| undefined;
|
|
3366
|
+
identity?: PublicIdentity$Outbound | undefined;
|
|
3357
3367
|
file_ids?: Array<string> | undefined;
|
|
3358
3368
|
metadata?: { [k: string]: any } | undefined;
|
|
3359
3369
|
extra_params?: { [k: string]: any } | undefined;
|
|
@@ -3406,6 +3416,7 @@ export const InvokeDeploymentRequest$outboundSchema: z.ZodType<
|
|
|
3406
3416
|
z.lazy(() => MessagesToolMessage$outboundSchema),
|
|
3407
3417
|
]),
|
|
3408
3418
|
).optional(),
|
|
3419
|
+
identity: PublicIdentity$outboundSchema.optional(),
|
|
3409
3420
|
fileIds: z.array(z.string()).optional(),
|
|
3410
3421
|
metadata: z.record(z.any()).optional(),
|
|
3411
3422
|
extraParams: z.record(z.any()).optional(),
|
|
@@ -76,7 +76,7 @@ export const PartReasoningPart$inboundSchema: z.ZodType<
|
|
|
76
76
|
z.ZodTypeDef,
|
|
77
77
|
unknown
|
|
78
78
|
> = z.object({
|
|
79
|
-
_id: z.string().default("
|
|
79
|
+
_id: z.string().default("reasoning_01kfs437ax55nf872ac6x5jbkc"),
|
|
80
80
|
metadata: z.record(z.any()).optional(),
|
|
81
81
|
kind: PartKind$inboundSchema,
|
|
82
82
|
reasoning: z.string(),
|
|
@@ -6,7 +6,9 @@ import * as z from "zod/v3";
|
|
|
6
6
|
import { remap as remap$ } from "../../lib/primitives.js";
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* Information about the
|
|
9
|
+
* @deprecated Use identity instead. Information about the contact making the request.
|
|
10
|
+
*
|
|
11
|
+
* @deprecated class: This will be removed in a future release, please migrate away from it as soon as possible.
|
|
10
12
|
*/
|
|
11
13
|
export type PublicContact = {
|
|
12
14
|
/**
|
|
@@ -0,0 +1,69 @@
|
|
|
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
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Information about the identity making the request. If the identity does not exist, it will be created automatically.
|
|
10
|
+
*/
|
|
11
|
+
export type PublicIdentity = {
|
|
12
|
+
/**
|
|
13
|
+
* Unique identifier for the contact
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
/**
|
|
17
|
+
* Display name of the contact
|
|
18
|
+
*/
|
|
19
|
+
displayName?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* Email address of the contact
|
|
22
|
+
*/
|
|
23
|
+
email?: string | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* A hash of key/value pairs containing any other data about the contact
|
|
26
|
+
*/
|
|
27
|
+
metadata?: Array<{ [k: string]: any }> | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* URL to the contact's avatar or logo
|
|
30
|
+
*/
|
|
31
|
+
logoUrl?: string | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* A list of tags associated with the contact
|
|
34
|
+
*/
|
|
35
|
+
tags?: Array<string> | undefined;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
/** @internal */
|
|
39
|
+
export type PublicIdentity$Outbound = {
|
|
40
|
+
id: string;
|
|
41
|
+
display_name?: string | undefined;
|
|
42
|
+
email?: string | undefined;
|
|
43
|
+
metadata?: Array<{ [k: string]: any }> | undefined;
|
|
44
|
+
logo_url?: string | undefined;
|
|
45
|
+
tags?: Array<string> | undefined;
|
|
46
|
+
};
|
|
47
|
+
|
|
48
|
+
/** @internal */
|
|
49
|
+
export const PublicIdentity$outboundSchema: z.ZodType<
|
|
50
|
+
PublicIdentity$Outbound,
|
|
51
|
+
z.ZodTypeDef,
|
|
52
|
+
PublicIdentity
|
|
53
|
+
> = z.object({
|
|
54
|
+
id: z.string(),
|
|
55
|
+
displayName: z.string().optional(),
|
|
56
|
+
email: z.string().optional(),
|
|
57
|
+
metadata: z.array(z.record(z.any())).optional(),
|
|
58
|
+
logoUrl: z.string().optional(),
|
|
59
|
+
tags: z.array(z.string()).optional(),
|
|
60
|
+
}).transform((v) => {
|
|
61
|
+
return remap$(v, {
|
|
62
|
+
displayName: "display_name",
|
|
63
|
+
logoUrl: "logo_url",
|
|
64
|
+
});
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
export function publicIdentityToJSON(publicIdentity: PublicIdentity): string {
|
|
68
|
+
return JSON.stringify(PublicIdentity$outboundSchema.parse(publicIdentity));
|
|
69
|
+
}
|
|
@@ -40,7 +40,7 @@ export const ReasoningPart$inboundSchema: z.ZodType<
|
|
|
40
40
|
z.ZodTypeDef,
|
|
41
41
|
unknown
|
|
42
42
|
> = z.object({
|
|
43
|
-
_id: z.string().default("
|
|
43
|
+
_id: z.string().default("reasoning_01kfs437akmrgyhz6dhgserjba"),
|
|
44
44
|
metadata: z.record(z.any()).optional(),
|
|
45
45
|
kind: z.literal("reasoning"),
|
|
46
46
|
reasoning: z.string(),
|
|
@@ -8,7 +8,6 @@ export * from "./createmoderation.js";
|
|
|
8
8
|
export * from "./createtranscription.js";
|
|
9
9
|
export * from "./createtranslation.js";
|
|
10
10
|
export * from "./deleteagent.js";
|
|
11
|
-
export * from "./deletecontact.js";
|
|
12
11
|
export * from "./deleteconversation.js";
|
|
13
12
|
export * from "./deleteeval.js";
|
|
14
13
|
export * from "./deleteidentity.js";
|
|
@@ -25,14 +24,12 @@ export * from "./invokeeval.js";
|
|
|
25
24
|
export * from "./orqerror.js";
|
|
26
25
|
export * from "./responsevalidationerror.js";
|
|
27
26
|
export * from "./retrieveagentrequest.js";
|
|
28
|
-
export * from "./retrievecontact.js";
|
|
29
27
|
export * from "./retrieveconversation.js";
|
|
30
28
|
export * from "./retrieveidentity.js";
|
|
31
29
|
export * from "./sdkvalidationerror.js";
|
|
32
30
|
export * from "./streamagent.js";
|
|
33
31
|
export * from "./streamrunagent.js";
|
|
34
32
|
export * from "./updateagent.js";
|
|
35
|
-
export * from "./updatecontact.js";
|
|
36
33
|
export * from "./updateconversation.js";
|
|
37
34
|
export * from "./updateeval.js";
|
|
38
35
|
export * from "./updateidentity.js";
|