@orq-ai/node 4.7.0-rc.58 → 4.7.3
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/lib/config.d.ts +2 -2
- package/lib/config.js +2 -2
- package/lib/config.js.map +1 -1
- 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/createtool.js +6 -6
- package/models/operations/getalltools.js +6 -6
- package/models/operations/getevals.js +16 -16
- package/models/operations/getv2humanevals.js +6 -6
- package/models/operations/getv2humanevalsets.js +2 -2
- package/models/operations/getv2humanevalsetsid.js +2 -2
- package/models/operations/getv2humanevalsid.js +6 -6
- 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/patchv2humanevalsid.js +12 -12
- package/models/operations/postv2feedbackevaluation.js +3 -3
- package/models/operations/postv2humanevals.js +12 -12
- 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 +3 -4
- package/packages/orq-rc/examples/postV2Feedback.example.ts +26 -0
- package/packages/orq-rc/src/core.ts +13 -0
- package/packages/orq-rc/src/funcs/agentsCreate.ts +161 -0
- package/packages/orq-rc/src/funcs/agentsDelete.ts +179 -0
- package/packages/orq-rc/src/funcs/agentsInvoke.ts +176 -0
- package/packages/orq-rc/src/funcs/agentsList.ts +184 -0
- package/packages/orq-rc/src/funcs/agentsPostV2AgentsA2a.ts +178 -0
- package/packages/orq-rc/src/funcs/agentsPostV2AgentsKeyCardRefresh.ts +186 -0
- package/packages/orq-rc/src/funcs/agentsResponsesCreate.ts +182 -0
- package/packages/orq-rc/src/funcs/agentsResponsesGet.ts +181 -0
- package/packages/orq-rc/src/funcs/agentsRetrieve.ts +179 -0
- package/packages/orq-rc/src/funcs/agentsRun.ts +162 -0
- package/packages/orq-rc/src/funcs/agentsStream.ts +203 -0
- package/packages/orq-rc/src/funcs/agentsStreamRun.ts +189 -0
- package/packages/orq-rc/src/funcs/agentsUpdate.ts +183 -0
- package/packages/orq-rc/src/funcs/annotationsCreate.ts +170 -0
- package/packages/orq-rc/src/funcs/annotationsDelete.ts +170 -0
- package/packages/orq-rc/src/funcs/chunkingParse.ts +160 -0
- package/packages/orq-rc/src/funcs/contactsCreate.ts +160 -0
- package/packages/orq-rc/src/funcs/datasetsClear.ts +166 -0
- package/packages/orq-rc/src/funcs/datasetsCreate.ts +165 -0
- package/packages/orq-rc/src/funcs/datasetsCreateDatapoint.ts +170 -0
- package/packages/orq-rc/src/funcs/datasetsDelete.ts +166 -0
- package/packages/orq-rc/src/funcs/datasetsDeleteDatapoint.ts +181 -0
- package/packages/orq-rc/src/funcs/datasetsList.ts +167 -0
- package/packages/orq-rc/src/funcs/datasetsListDatapoints.ts +173 -0
- package/packages/orq-rc/src/funcs/datasetsRetrieve.ts +174 -0
- package/packages/orq-rc/src/funcs/datasetsRetrieveDatapoint.ts +180 -0
- package/packages/orq-rc/src/funcs/datasetsUpdate.ts +175 -0
- package/packages/orq-rc/src/funcs/datasetsUpdateDatapoint.ts +178 -0
- package/packages/orq-rc/src/funcs/deleteV2HumanEvalsId.ts +169 -0
- package/packages/orq-rc/src/funcs/deploymentsGetConfig.ts +168 -0
- package/packages/orq-rc/src/funcs/deploymentsInvoke.ts +176 -0
- package/packages/orq-rc/src/funcs/deploymentsList.ts +176 -0
- package/packages/orq-rc/src/funcs/deploymentsMetricsCreate.ts +169 -0
- package/packages/orq-rc/src/funcs/deploymentsStream.ts +186 -0
- package/packages/orq-rc/src/funcs/evalsAll.ts +173 -0
- package/packages/orq-rc/src/funcs/evalsCreate.ts +169 -0
- package/packages/orq-rc/src/funcs/evalsDelete.ts +172 -0
- package/packages/orq-rc/src/funcs/evalsInvoke.ts +180 -0
- package/packages/orq-rc/src/funcs/evalsUpdate.ts +172 -0
- package/packages/orq-rc/src/funcs/evaluatorsGetV2EvaluatorsIdVersions.ts +182 -0
- package/packages/orq-rc/src/funcs/filesCreate.ts +194 -0
- package/packages/orq-rc/src/funcs/filesDelete.ts +163 -0
- package/packages/orq-rc/src/funcs/filesGet.ts +165 -0
- package/packages/orq-rc/src/funcs/filesGetContent.ts +166 -0
- package/packages/orq-rc/src/funcs/filesList.ts +167 -0
- package/packages/orq-rc/src/funcs/filesUpdate.ts +166 -0
- package/packages/orq-rc/src/funcs/getV2HumanEvals.ts +169 -0
- package/packages/orq-rc/src/funcs/getV2HumanEvalsId.ts +168 -0
- package/packages/orq-rc/src/funcs/humanReviewSetsDeleteV2HumanEvalSetsId.ts +164 -0
- package/packages/orq-rc/src/funcs/humanReviewSetsGetV2HumanEvalSets.ts +168 -0
- package/packages/orq-rc/src/funcs/humanReviewSetsGetV2HumanEvalSetsId.ts +163 -0
- package/packages/orq-rc/src/funcs/humanReviewSetsPatchV2HumanEvalSetsId.ts +164 -0
- package/packages/orq-rc/src/funcs/humanReviewSetsPostV2HumanEvalSets.ts +162 -0
- package/packages/orq-rc/src/funcs/identitiesCreate.ts +165 -0
- package/packages/orq-rc/src/funcs/identitiesDelete.ts +175 -0
- package/packages/orq-rc/src/funcs/identitiesList.ts +170 -0
- package/packages/orq-rc/src/funcs/identitiesRetrieve.ts +183 -0
- package/packages/orq-rc/src/funcs/identitiesUpdate.ts +175 -0
- package/packages/orq-rc/src/funcs/knowledgeCreate.ts +158 -0
- package/packages/orq-rc/src/funcs/knowledgeCreateChunks.ts +170 -0
- package/packages/orq-rc/src/funcs/knowledgeCreateDatasource.ts +165 -0
- package/packages/orq-rc/src/funcs/knowledgeDelete.ts +166 -0
- package/packages/orq-rc/src/funcs/knowledgeDeleteChunk.ts +173 -0
- package/packages/orq-rc/src/funcs/knowledgeDeleteChunks.ts +169 -0
- package/packages/orq-rc/src/funcs/knowledgeDeleteDatasource.ts +172 -0
- package/packages/orq-rc/src/funcs/knowledgeGetChunksCount.ts +169 -0
- package/packages/orq-rc/src/funcs/knowledgeList.ts +169 -0
- package/packages/orq-rc/src/funcs/knowledgeListChunks.ts +177 -0
- package/packages/orq-rc/src/funcs/knowledgeListChunksPaginated.ts +170 -0
- package/packages/orq-rc/src/funcs/knowledgeListDatasources.ts +173 -0
- package/packages/orq-rc/src/funcs/knowledgeRetrieve.ts +165 -0
- package/packages/orq-rc/src/funcs/knowledgeRetrieveChunk.ts +172 -0
- package/packages/orq-rc/src/funcs/knowledgeRetrieveDatasource.ts +168 -0
- package/packages/orq-rc/src/funcs/knowledgeSearch.ts +166 -0
- package/packages/orq-rc/src/funcs/knowledgeUpdate.ts +163 -0
- package/packages/orq-rc/src/funcs/knowledgeUpdateChunk.ts +173 -0
- package/packages/orq-rc/src/funcs/knowledgeUpdateDatasource.ts +169 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreate.ts +162 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreateDocument.ts +175 -0
- package/packages/orq-rc/src/funcs/memoryStoresCreateMemory.ts +169 -0
- package/packages/orq-rc/src/funcs/memoryStoresDelete.ts +167 -0
- package/packages/orq-rc/src/funcs/memoryStoresDeleteDocument.ts +184 -0
- package/packages/orq-rc/src/funcs/memoryStoresDeleteMemory.ts +179 -0
- package/packages/orq-rc/src/funcs/memoryStoresList.ts +178 -0
- package/packages/orq-rc/src/funcs/memoryStoresListDocuments.ts +183 -0
- package/packages/orq-rc/src/funcs/memoryStoresListMemories.ts +176 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieve.ts +176 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveDocument.ts +178 -0
- package/packages/orq-rc/src/funcs/memoryStoresRetrieveMemory.ts +173 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdate.ts +167 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdateDocument.ts +179 -0
- package/packages/orq-rc/src/funcs/memoryStoresUpdateMemory.ts +174 -0
- package/packages/orq-rc/src/funcs/modelsList.ts +165 -0
- package/packages/orq-rc/src/funcs/patchV2HumanEvalsId.ts +170 -0
- package/packages/orq-rc/src/funcs/postV2Feedback.ts +172 -0
- package/packages/orq-rc/src/funcs/postV2FeedbackEvaluation.ts +159 -0
- package/packages/orq-rc/src/funcs/postV2FeedbackEvaluationRemove.ts +159 -0
- package/packages/orq-rc/src/funcs/postV2FeedbackRemove.ts +167 -0
- package/packages/orq-rc/src/funcs/postV2HumanEvals.ts +168 -0
- package/packages/orq-rc/src/funcs/promptsCreate.ts +160 -0
- package/packages/orq-rc/src/funcs/promptsDelete.ts +172 -0
- package/packages/orq-rc/src/funcs/promptsGetVersion.ts +180 -0
- package/packages/orq-rc/src/funcs/promptsList.ts +167 -0
- package/packages/orq-rc/src/funcs/promptsListVersions.ts +172 -0
- package/packages/orq-rc/src/funcs/promptsRetrieve.ts +165 -0
- package/packages/orq-rc/src/funcs/promptsUpdate.ts +172 -0
- package/packages/orq-rc/src/funcs/remoteconfigsRetrieve.ts +161 -0
- package/packages/orq-rc/src/funcs/routerAudioSpeechCreate.ts +161 -0
- package/packages/orq-rc/src/funcs/routerAudioTranscriptionsCreate.ts +269 -0
- package/packages/orq-rc/src/funcs/routerAudioTranslationsCreate.ts +259 -0
- package/packages/orq-rc/src/funcs/routerChatCompletionsCreate.ts +168 -0
- package/packages/orq-rc/src/funcs/routerCompletionsCreate.ts +168 -0
- package/packages/orq-rc/src/funcs/routerEmbeddingsCreate.ts +161 -0
- package/packages/orq-rc/src/funcs/routerImagesEditsCreate.ts +222 -0
- package/packages/orq-rc/src/funcs/routerImagesGenerationsCreate.ts +160 -0
- package/packages/orq-rc/src/funcs/routerImagesVariationsCreate.ts +218 -0
- package/packages/orq-rc/src/funcs/routerModerationsCreate.ts +167 -0
- package/packages/orq-rc/src/funcs/routerOcr.ts +158 -0
- package/packages/orq-rc/src/funcs/routerRerankCreate.ts +160 -0
- package/packages/orq-rc/src/funcs/routerResponsesCreate.ts +167 -0
- package/packages/orq-rc/src/funcs/toolsCreate.ts +163 -0
- package/packages/orq-rc/src/funcs/toolsDelete.ts +166 -0
- package/packages/orq-rc/src/funcs/toolsGetV2ToolsToolIdVersions.ts +182 -0
- package/packages/orq-rc/src/funcs/toolsGetV2ToolsToolIdVersionsVersionId.ts +189 -0
- package/packages/orq-rc/src/funcs/toolsList.ts +176 -0
- package/packages/orq-rc/src/funcs/toolsRetrieve.ts +165 -0
- package/packages/orq-rc/src/funcs/toolsUpdate.ts +175 -0
- package/packages/orq-rc/src/hooks/global.ts +44 -0
- package/packages/orq-rc/src/hooks/hooks.ts +132 -0
- package/packages/orq-rc/src/hooks/index.ts +6 -0
- package/packages/orq-rc/src/hooks/registration.ts +15 -0
- package/packages/orq-rc/src/hooks/types.ts +112 -0
- package/packages/orq-rc/src/index.ts +9 -0
- package/packages/orq-rc/src/lib/base64.ts +37 -0
- package/packages/orq-rc/src/lib/config.ts +74 -0
- package/packages/orq-rc/src/lib/dlv.ts +53 -0
- package/packages/orq-rc/src/lib/encodings.ts +516 -0
- package/packages/orq-rc/src/lib/env.ts +89 -0
- package/packages/orq-rc/src/lib/event-streams.ts +165 -0
- package/packages/orq-rc/src/lib/files.ts +104 -0
- package/packages/orq-rc/src/lib/http.ts +323 -0
- package/packages/orq-rc/src/lib/is-plain-object.ts +43 -0
- package/packages/orq-rc/src/lib/logger.ts +9 -0
- package/packages/orq-rc/src/lib/matchers.ts +346 -0
- package/packages/orq-rc/src/lib/primitives.ts +150 -0
- package/packages/orq-rc/src/lib/retries.ts +218 -0
- package/packages/orq-rc/src/lib/schemas.ts +91 -0
- package/packages/orq-rc/src/lib/sdks.ts +409 -0
- package/packages/orq-rc/src/lib/security.ts +275 -0
- package/packages/orq-rc/src/lib/url.ts +35 -0
- package/packages/orq-rc/src/models/components/actionreviewedstreamingevent.ts +99 -0
- package/packages/orq-rc/src/models/components/actionreviewrequestedstreamingevent.ts +185 -0
- package/packages/orq-rc/src/models/components/agenterroredstreamingevent.ts +73 -0
- package/packages/orq-rc/src/models/components/agentexecutionstartedstreamingevent.ts +91 -0
- package/packages/orq-rc/src/models/components/agenthandedoffstreamingevent.ts +71 -0
- package/packages/orq-rc/src/models/components/agentinactivestreamingevent.ts +507 -0
- package/packages/orq-rc/src/models/components/agentmessagecreatedstreamingevent.ts +165 -0
- package/packages/orq-rc/src/models/components/agentresponsemessage.ts +103 -0
- package/packages/orq-rc/src/models/components/agentstartedstreamingevent.ts +517 -0
- package/packages/orq-rc/src/models/components/agentthoughtstreamingevent.ts +807 -0
- package/packages/orq-rc/src/models/components/audiocontentpartschema.ts +136 -0
- package/packages/orq-rc/src/models/components/createagentresponse.ts +305 -0
- package/packages/orq-rc/src/models/components/datapart.ts +38 -0
- package/packages/orq-rc/src/models/components/errorpart.ts +58 -0
- package/packages/orq-rc/src/models/components/errorstreamingevent.ts +66 -0
- package/packages/orq-rc/src/models/components/executionnamedstreamingevent.ts +71 -0
- package/packages/orq-rc/src/models/components/executionreviewedstreamingevent.ts +61 -0
- package/packages/orq-rc/src/models/components/executionreviewrequiredstreamingevent.ts +67 -0
- package/packages/orq-rc/src/models/components/extendedmessage.ts +146 -0
- package/packages/orq-rc/src/models/components/filecontentpartschema.ts +87 -0
- package/packages/orq-rc/src/models/components/filedocument.ts +48 -0
- package/packages/orq-rc/src/models/components/filepart.ts +218 -0
- package/packages/orq-rc/src/models/components/getagentresponse.ts +348 -0
- package/packages/orq-rc/src/models/components/imagecontentpartschema.ts +268 -0
- package/packages/orq-rc/src/models/components/index.ts +61 -0
- package/packages/orq-rc/src/models/components/invokedeploymentrequest.ts +3450 -0
- package/packages/orq-rc/src/models/components/partdelta.ts +39 -0
- package/packages/orq-rc/src/models/components/partdeltaevent.ts +73 -0
- package/packages/orq-rc/src/models/components/partdoneevent.ts +70 -0
- package/packages/orq-rc/src/models/components/publiccontact.ts +71 -0
- package/packages/orq-rc/src/models/components/publicidentity.ts +69 -0
- package/packages/orq-rc/src/models/components/reasoningpart.ts +62 -0
- package/packages/orq-rc/src/models/components/reasoningpartschema.ts +71 -0
- package/packages/orq-rc/src/models/components/redactedreasoningpartschema.ts +66 -0
- package/packages/orq-rc/src/models/components/refusalpartschema.ts +64 -0
- package/packages/orq-rc/src/models/components/responsedoneevent.ts +324 -0
- package/packages/orq-rc/src/models/components/responsefailedevent.ts +72 -0
- package/packages/orq-rc/src/models/components/responsestartedevent.ts +97 -0
- package/packages/orq-rc/src/models/components/responsestreamingevent.ts +85 -0
- package/packages/orq-rc/src/models/components/reviewoutcome.ts +23 -0
- package/packages/orq-rc/src/models/components/security.ts +32 -0
- package/packages/orq-rc/src/models/components/telemetry.ts +48 -0
- package/packages/orq-rc/src/models/components/textcontentpartschema.ts +207 -0
- package/packages/orq-rc/src/models/components/textpart.ts +54 -0
- package/packages/orq-rc/src/models/components/thinkingconfigadaptiveschema.ts +59 -0
- package/packages/orq-rc/src/models/components/thinkingconfigdisabledschema.ts +59 -0
- package/packages/orq-rc/src/models/components/thinkingconfigenabledschema.ts +106 -0
- package/packages/orq-rc/src/models/components/timeoutstreamingevent.ts +64 -0
- package/packages/orq-rc/src/models/components/toolcallpart.ts +51 -0
- package/packages/orq-rc/src/models/components/tooldoneevent.ts +77 -0
- package/packages/orq-rc/src/models/components/toolexecutionfailedstreamingevent.ts +235 -0
- package/packages/orq-rc/src/models/components/toolexecutionfinishedstreamingevent.ts +219 -0
- package/packages/orq-rc/src/models/components/toolexecutionstartedstreamingevent.ts +205 -0
- package/packages/orq-rc/src/models/components/toolfailedevent.ts +77 -0
- package/packages/orq-rc/src/models/components/toolresultpart.ts +71 -0
- package/packages/orq-rc/src/models/components/toolreviewdoneevent.ts +78 -0
- package/packages/orq-rc/src/models/components/toolreviewrequestedevent.ts +87 -0
- package/packages/orq-rc/src/models/components/toolstartedevent.ts +82 -0
- package/packages/orq-rc/src/models/errors/apierror.ts +40 -0
- package/packages/orq-rc/src/models/errors/createeval.ts +51 -0
- package/packages/orq-rc/src/models/errors/createmoderation.ts +84 -0
- package/packages/orq-rc/src/models/errors/createtranscription.ts +87 -0
- package/packages/orq-rc/src/models/errors/createtranslation.ts +87 -0
- package/packages/orq-rc/src/models/errors/deleteagent.ts +51 -0
- package/packages/orq-rc/src/models/errors/deleteeval.ts +51 -0
- package/packages/orq-rc/src/models/errors/deleteidentity.ts +62 -0
- package/packages/orq-rc/src/models/errors/deleteprompt.ts +51 -0
- package/packages/orq-rc/src/models/errors/deletev2humanevalsid.ts +51 -0
- package/packages/orq-rc/src/models/errors/getevals.ts +51 -0
- package/packages/orq-rc/src/models/errors/getpromptversion.ts +51 -0
- package/packages/orq-rc/src/models/errors/getv2evaluatorsidversions.ts +51 -0
- package/packages/orq-rc/src/models/errors/getv2humanevals.ts +51 -0
- package/packages/orq-rc/src/models/errors/getv2humanevalsid.ts +51 -0
- package/packages/orq-rc/src/models/errors/getv2toolstoolidversions.ts +51 -0
- package/packages/orq-rc/src/models/errors/getv2toolstoolidversionsversionid.ts +52 -0
- package/packages/orq-rc/src/models/errors/honoapierror.ts +59 -0
- package/packages/orq-rc/src/models/errors/httpclienterrors.ts +62 -0
- package/packages/orq-rc/src/models/errors/index.ts +42 -0
- package/packages/orq-rc/src/models/errors/invokeeval.ts +141 -0
- package/packages/orq-rc/src/models/errors/orqerror.ts +35 -0
- package/packages/orq-rc/src/models/errors/patchv2humanevalsid.ts +51 -0
- package/packages/orq-rc/src/models/errors/postv2agentsa2a.ts +96 -0
- package/packages/orq-rc/src/models/errors/postv2agentskeycardrefresh.ts +97 -0
- package/packages/orq-rc/src/models/errors/postv2feedback.ts +96 -0
- package/packages/orq-rc/src/models/errors/postv2feedbackremove.ts +51 -0
- package/packages/orq-rc/src/models/errors/postv2humanevals.ts +51 -0
- package/packages/orq-rc/src/models/errors/responsevalidationerror.ts +50 -0
- package/packages/orq-rc/src/models/errors/retrieveagentrequest.ts +51 -0
- package/packages/orq-rc/src/models/errors/retrieveidentity.ts +118 -0
- package/packages/orq-rc/src/models/errors/sdkvalidationerror.ts +109 -0
- package/packages/orq-rc/src/models/errors/streamagent.ts +51 -0
- package/packages/orq-rc/src/models/errors/streamrunagent.ts +51 -0
- package/packages/orq-rc/src/models/errors/updateagent.ts +51 -0
- package/packages/orq-rc/src/models/errors/updateeval.ts +51 -0
- package/packages/orq-rc/src/models/errors/updateidentity.ts +54 -0
- package/packages/orq-rc/src/models/errors/updateprompt.ts +51 -0
- package/packages/orq-rc/src/models/errors/updatetool.ts +62 -0
- package/packages/orq-rc/src/models/operations/cleardataset.ts +39 -0
- package/packages/orq-rc/src/models/operations/createagentrequest.ts +6459 -0
- package/packages/orq-rc/src/models/operations/createagentresponserequest.ts +670 -0
- package/packages/orq-rc/src/models/operations/createannotation.ts +166 -0
- package/packages/orq-rc/src/models/operations/createchatcompletion.ts +6398 -0
- package/packages/orq-rc/src/models/operations/createchunk.ts +222 -0
- package/packages/orq-rc/src/models/operations/createcompletion.ts +3473 -0
- package/packages/orq-rc/src/models/operations/createcontact.ts +156 -0
- package/packages/orq-rc/src/models/operations/createdataset.ts +162 -0
- package/packages/orq-rc/src/models/operations/createdatasetitem.ts +2554 -0
- package/packages/orq-rc/src/models/operations/createdatasource.ts +437 -0
- package/packages/orq-rc/src/models/operations/createembedding.ts +947 -0
- package/packages/orq-rc/src/models/operations/createeval.ts +4229 -0
- package/packages/orq-rc/src/models/operations/createidentity.ts +162 -0
- package/packages/orq-rc/src/models/operations/createimage.ts +1034 -0
- package/packages/orq-rc/src/models/operations/createimageedit.ts +1045 -0
- package/packages/orq-rc/src/models/operations/createimagevariation.ts +1067 -0
- package/packages/orq-rc/src/models/operations/createknowledge.ts +960 -0
- package/packages/orq-rc/src/models/operations/creatememory.ts +142 -0
- package/packages/orq-rc/src/models/operations/creatememorydocument.ts +152 -0
- package/packages/orq-rc/src/models/operations/creatememorystore.ts +199 -0
- package/packages/orq-rc/src/models/operations/createmoderation.ts +664 -0
- package/packages/orq-rc/src/models/operations/createprompt.ts +5405 -0
- package/packages/orq-rc/src/models/operations/creatererank.ts +890 -0
- package/packages/orq-rc/src/models/operations/createresponse.ts +3864 -0
- package/packages/orq-rc/src/models/operations/createspeech.ts +700 -0
- package/packages/orq-rc/src/models/operations/createtool.ts +2509 -0
- package/packages/orq-rc/src/models/operations/createtranscription.ts +955 -0
- package/packages/orq-rc/src/models/operations/createtranslation.ts +930 -0
- package/packages/orq-rc/src/models/operations/deleteagent.ts +39 -0
- package/packages/orq-rc/src/models/operations/deleteannotation.ts +82 -0
- package/packages/orq-rc/src/models/operations/deletechunk.ts +53 -0
- package/packages/orq-rc/src/models/operations/deletechunks.ts +125 -0
- package/packages/orq-rc/src/models/operations/deletedatapoint.ts +46 -0
- package/packages/orq-rc/src/models/operations/deletedataset.ts +39 -0
- package/packages/orq-rc/src/models/operations/deletedatasource.ts +46 -0
- package/packages/orq-rc/src/models/operations/deleteeval.ts +31 -0
- package/packages/orq-rc/src/models/operations/deleteidentity.ts +34 -0
- package/packages/orq-rc/src/models/operations/deleteknowledge.ts +39 -0
- package/packages/orq-rc/src/models/operations/deletememory.ts +46 -0
- package/packages/orq-rc/src/models/operations/deletememorydocument.ts +55 -0
- package/packages/orq-rc/src/models/operations/deletememorystore.ts +39 -0
- package/packages/orq-rc/src/models/operations/deleteprompt.ts +34 -0
- package/packages/orq-rc/src/models/operations/deletetool.ts +36 -0
- package/packages/orq-rc/src/models/operations/deletev2humanevalsetsid.ts +36 -0
- package/packages/orq-rc/src/models/operations/deletev2humanevalsid.ts +67 -0
- package/packages/orq-rc/src/models/operations/deploymentcreatemetric.ts +2370 -0
- package/packages/orq-rc/src/models/operations/deploymentgetconfig.ts +4526 -0
- package/packages/orq-rc/src/models/operations/deploymentinvoke.ts +735 -0
- package/packages/orq-rc/src/models/operations/deployments.ts +1273 -0
- package/packages/orq-rc/src/models/operations/deploymentstream.ts +4659 -0
- package/packages/orq-rc/src/models/operations/filecontent.ts +39 -0
- package/packages/orq-rc/src/models/operations/filedelete.ts +39 -0
- package/packages/orq-rc/src/models/operations/fileget.ts +80 -0
- package/packages/orq-rc/src/models/operations/filelist.ts +85 -0
- package/packages/orq-rc/src/models/operations/fileupdate.ts +118 -0
- package/packages/orq-rc/src/models/operations/fileupload.ts +135 -0
- package/packages/orq-rc/src/models/operations/getagentresponse.ts +46 -0
- package/packages/orq-rc/src/models/operations/getallmemories.ts +173 -0
- package/packages/orq-rc/src/models/operations/getallmemorydocuments.ts +188 -0
- package/packages/orq-rc/src/models/operations/getallmemorystores.ts +200 -0
- package/packages/orq-rc/src/models/operations/getallprompts.ts +3173 -0
- package/packages/orq-rc/src/models/operations/getalltools.ts +1404 -0
- package/packages/orq-rc/src/models/operations/getchunkscount.ts +121 -0
- package/packages/orq-rc/src/models/operations/getevals.ts +2868 -0
- package/packages/orq-rc/src/models/operations/getonechunk.ts +171 -0
- package/packages/orq-rc/src/models/operations/getoneknowledge.ts +652 -0
- package/packages/orq-rc/src/models/operations/getoneprompt.ts +3098 -0
- package/packages/orq-rc/src/models/operations/getpromptversion.ts +3143 -0
- package/packages/orq-rc/src/models/operations/getv2evaluatorsidversions.ts +162 -0
- package/packages/orq-rc/src/models/operations/getv2humanevals.ts +696 -0
- package/packages/orq-rc/src/models/operations/getv2humanevalsets.ts +234 -0
- package/packages/orq-rc/src/models/operations/getv2humanevalsetsid.ts +235 -0
- package/packages/orq-rc/src/models/operations/getv2humanevalsid.ts +707 -0
- package/packages/orq-rc/src/models/operations/getv2toolstoolidversions.ts +163 -0
- package/packages/orq-rc/src/models/operations/getv2toolstoolidversionsversionid.ts +110 -0
- package/packages/orq-rc/src/models/operations/index.ts +131 -0
- package/packages/orq-rc/src/models/operations/invokeagent.ts +801 -0
- package/packages/orq-rc/src/models/operations/invokeeval.ts +1254 -0
- package/packages/orq-rc/src/models/operations/listagents.ts +2781 -0
- package/packages/orq-rc/src/models/operations/listchunks.ts +260 -0
- package/packages/orq-rc/src/models/operations/listchunkspaginated.ts +263 -0
- package/packages/orq-rc/src/models/operations/listdatasetdatapoints.ts +1498 -0
- package/packages/orq-rc/src/models/operations/listdatasets.ts +205 -0
- package/packages/orq-rc/src/models/operations/listdatasources.ts +235 -0
- package/packages/orq-rc/src/models/operations/listidentities.ts +275 -0
- package/packages/orq-rc/src/models/operations/listknowledgebases.ts +642 -0
- package/packages/orq-rc/src/models/operations/listmodels.ts +169 -0
- package/packages/orq-rc/src/models/operations/listpromptversions.ts +3218 -0
- package/packages/orq-rc/src/models/operations/parse.ts +784 -0
- package/packages/orq-rc/src/models/operations/patchv2humanevalsetsid.ts +415 -0
- package/packages/orq-rc/src/models/operations/patchv2humanevalsid.ts +1362 -0
- package/packages/orq-rc/src/models/operations/postv2agentsa2a.ts +255 -0
- package/packages/orq-rc/src/models/operations/postv2agentskeycardrefresh.ts +100 -0
- package/packages/orq-rc/src/models/operations/postv2feedback.ts +207 -0
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluation.ts +321 -0
- package/packages/orq-rc/src/models/operations/postv2feedbackevaluationremove.ts +43 -0
- package/packages/orq-rc/src/models/operations/postv2feedbackremove.ts +138 -0
- package/packages/orq-rc/src/models/operations/postv2humanevals.ts +1193 -0
- package/packages/orq-rc/src/models/operations/postv2humanevalsets.ts +365 -0
- package/packages/orq-rc/src/models/operations/postv2routerocr.ts +478 -0
- package/packages/orq-rc/src/models/operations/remoteconfigsgetconfig.ts +108 -0
- package/packages/orq-rc/src/models/operations/retrieveagentrequest.ts +2843 -0
- package/packages/orq-rc/src/models/operations/retrievedatapoint.ts +1402 -0
- package/packages/orq-rc/src/models/operations/retrievedataset.ts +150 -0
- package/packages/orq-rc/src/models/operations/retrievedatasource.ts +152 -0
- package/packages/orq-rc/src/models/operations/retrieveidentity.ts +174 -0
- package/packages/orq-rc/src/models/operations/retrievememory.ts +112 -0
- package/packages/orq-rc/src/models/operations/retrievememorydocument.ts +118 -0
- package/packages/orq-rc/src/models/operations/retrievememorystore.ts +144 -0
- package/packages/orq-rc/src/models/operations/retrievetool.ts +1385 -0
- package/packages/orq-rc/src/models/operations/runagent.ts +4963 -0
- package/packages/orq-rc/src/models/operations/searchknowledge.ts +1762 -0
- package/packages/orq-rc/src/models/operations/streamagent.ts +692 -0
- package/packages/orq-rc/src/models/operations/streamrunagent.ts +5125 -0
- package/packages/orq-rc/src/models/operations/updateagent.ts +6889 -0
- package/packages/orq-rc/src/models/operations/updatechunk.ts +236 -0
- package/packages/orq-rc/src/models/operations/updatedatapoint.ts +2555 -0
- package/packages/orq-rc/src/models/operations/updatedataset.ts +206 -0
- package/packages/orq-rc/src/models/operations/updatedatasource.ts +186 -0
- package/packages/orq-rc/src/models/operations/updateeval.ts +3160 -0
- package/packages/orq-rc/src/models/operations/updateidentity.ts +189 -0
- package/packages/orq-rc/src/models/operations/updateknowledge.ts +1231 -0
- package/packages/orq-rc/src/models/operations/updatememory.ts +142 -0
- package/packages/orq-rc/src/models/operations/updatememorydocument.ts +159 -0
- package/packages/orq-rc/src/models/operations/updatememorystore.ts +188 -0
- package/packages/orq-rc/src/models/operations/updateprompt.ts +5487 -0
- package/packages/orq-rc/src/models/operations/updatetool.ts +2816 -0
- package/packages/orq-rc/src/sdk/agents.ts +234 -0
- package/packages/orq-rc/src/sdk/annotations.ts +39 -0
- package/packages/orq-rc/src/sdk/audio.ts +25 -0
- package/packages/orq-rc/src/sdk/chat.ts +13 -0
- package/packages/orq-rc/src/sdk/chunking.ts +27 -0
- package/packages/orq-rc/src/sdk/completions.ts +32 -0
- package/packages/orq-rc/src/sdk/contacts.ts +27 -0
- package/packages/orq-rc/src/sdk/datasets.ts +204 -0
- package/packages/orq-rc/src/sdk/deployments.ts +89 -0
- package/packages/orq-rc/src/sdk/edits.ts +27 -0
- package/packages/orq-rc/src/sdk/embeddings.ts +27 -0
- package/packages/orq-rc/src/sdk/evals.ts +84 -0
- package/packages/orq-rc/src/sdk/evaluators.ts +27 -0
- package/packages/orq-rc/src/sdk/files.ts +114 -0
- package/packages/orq-rc/src/sdk/generations.ts +27 -0
- package/packages/orq-rc/src/sdk/humanreviewsets.ts +84 -0
- package/packages/orq-rc/src/sdk/identities.ts +99 -0
- package/packages/orq-rc/src/sdk/images.ts +25 -0
- package/packages/orq-rc/src/sdk/index.ts +5 -0
- package/packages/orq-rc/src/sdk/knowledge.ts +309 -0
- package/packages/orq-rc/src/sdk/memorystores.ts +286 -0
- package/packages/orq-rc/src/sdk/metrics.ts +29 -0
- package/packages/orq-rc/src/sdk/models.ts +27 -0
- package/packages/orq-rc/src/sdk/moderations.ts +24 -0
- package/packages/orq-rc/src/sdk/orqcompletions.ts +32 -0
- package/packages/orq-rc/src/sdk/orqresponses.ts +32 -0
- package/packages/orq-rc/src/sdk/prompts.ts +126 -0
- package/packages/orq-rc/src/sdk/remoteconfigs.ts +24 -0
- package/packages/orq-rc/src/sdk/rerank.ts +27 -0
- package/packages/orq-rc/src/sdk/responses.ts +53 -0
- package/packages/orq-rc/src/sdk/router.ts +72 -0
- package/packages/orq-rc/src/sdk/sdk.ts +225 -0
- package/packages/orq-rc/src/sdk/speech.ts +27 -0
- package/packages/orq-rc/src/sdk/tools.ts +135 -0
- package/packages/orq-rc/src/sdk/transcriptions.ts +24 -0
- package/packages/orq-rc/src/sdk/translations.ts +24 -0
- package/packages/orq-rc/src/sdk/variations.ts +27 -0
- package/packages/orq-rc/src/types/async.ts +68 -0
- package/packages/orq-rc/src/types/blobs.ts +32 -0
- package/packages/orq-rc/src/types/constdatetime.ts +15 -0
- package/packages/orq-rc/src/types/enums.ts +45 -0
- package/packages/orq-rc/src/types/fp.ts +50 -0
- package/packages/orq-rc/src/types/index.ts +11 -0
- package/packages/orq-rc/src/types/operations.ts +105 -0
- package/packages/orq-rc/src/types/rfcdate.ts +54 -0
- package/packages/orq-rc/src/types/streams.ts +21 -0
- package/packages/orq-rc/src/types/unrecognized.ts +35 -0
- package/src/lib/config.ts +2 -2
- 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/createtool.ts +6 -6
- package/src/models/operations/getalltools.ts +6 -6
- package/src/models/operations/getevals.ts +16 -16
- package/src/models/operations/getv2humanevals.ts +6 -6
- package/src/models/operations/getv2humanevalsets.ts +2 -2
- package/src/models/operations/getv2humanevalsetsid.ts +2 -2
- package/src/models/operations/getv2humanevalsid.ts +6 -6
- 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/patchv2humanevalsid.ts +12 -12
- package/src/models/operations/postv2feedbackevaluation.ts +3 -3
- package/src/models/operations/postv2humanevals.ts +12 -12
- 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
|
@@ -0,0 +1,1362 @@
|
|
|
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 { ClosedEnum } from "../../types/enums.js";
|
|
9
|
+
import { Result as SafeParseResult } from "../../types/fp.js";
|
|
10
|
+
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
|
|
11
|
+
|
|
12
|
+
export type Six = {
|
|
13
|
+
type: "text";
|
|
14
|
+
/**
|
|
15
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
16
|
+
*/
|
|
17
|
+
key?: string | undefined;
|
|
18
|
+
/**
|
|
19
|
+
* Display name of the feedback item.
|
|
20
|
+
*/
|
|
21
|
+
displayName: string;
|
|
22
|
+
/**
|
|
23
|
+
* Detailed description of the feedback.
|
|
24
|
+
*/
|
|
25
|
+
description: string;
|
|
26
|
+
/**
|
|
27
|
+
* The id of the user who created the resource
|
|
28
|
+
*/
|
|
29
|
+
createdById?: string | undefined;
|
|
30
|
+
/**
|
|
31
|
+
* The id of the user who last updated the resource
|
|
32
|
+
*/
|
|
33
|
+
updatedById?: string | undefined;
|
|
34
|
+
/**
|
|
35
|
+
* Optional project ID to scope this human review to a specific project
|
|
36
|
+
*/
|
|
37
|
+
projectId?: string | undefined;
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export const PatchV2HumanEvalsIdRequestBodyRequestSentiment = {
|
|
41
|
+
Neutral: "neutral",
|
|
42
|
+
Positive: "positive",
|
|
43
|
+
Negative: "negative",
|
|
44
|
+
} as const;
|
|
45
|
+
export type PatchV2HumanEvalsIdRequestBodyRequestSentiment = ClosedEnum<
|
|
46
|
+
typeof PatchV2HumanEvalsIdRequestBodyRequestSentiment
|
|
47
|
+
>;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Model representing specific values and attributes of feedback.
|
|
51
|
+
*/
|
|
52
|
+
export type PatchV2HumanEvalsIdRequestBodyOptionsInput = {
|
|
53
|
+
/**
|
|
54
|
+
* The value or content of the feedback.
|
|
55
|
+
*/
|
|
56
|
+
value: string;
|
|
57
|
+
sentiment: PatchV2HumanEvalsIdRequestBodyRequestSentiment;
|
|
58
|
+
/**
|
|
59
|
+
* Description of the feedback option.
|
|
60
|
+
*/
|
|
61
|
+
description: string;
|
|
62
|
+
icon: string;
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
export type RequestBody5 = {
|
|
66
|
+
type: "single_select";
|
|
67
|
+
options: Array<PatchV2HumanEvalsIdRequestBodyOptionsInput>;
|
|
68
|
+
/**
|
|
69
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
70
|
+
*/
|
|
71
|
+
key?: string | undefined;
|
|
72
|
+
/**
|
|
73
|
+
* Display name of the feedback item.
|
|
74
|
+
*/
|
|
75
|
+
displayName: string;
|
|
76
|
+
/**
|
|
77
|
+
* Detailed description of the feedback.
|
|
78
|
+
*/
|
|
79
|
+
description: string;
|
|
80
|
+
/**
|
|
81
|
+
* The id of the user who created the resource
|
|
82
|
+
*/
|
|
83
|
+
createdById?: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* The id of the user who last updated the resource
|
|
86
|
+
*/
|
|
87
|
+
updatedById?: string | undefined;
|
|
88
|
+
/**
|
|
89
|
+
* Optional project ID to scope this human review to a specific project
|
|
90
|
+
*/
|
|
91
|
+
projectId?: string | undefined;
|
|
92
|
+
};
|
|
93
|
+
|
|
94
|
+
export const PatchV2HumanEvalsIdRequestBodySentiment = {
|
|
95
|
+
Neutral: "neutral",
|
|
96
|
+
Positive: "positive",
|
|
97
|
+
Negative: "negative",
|
|
98
|
+
} as const;
|
|
99
|
+
export type PatchV2HumanEvalsIdRequestBodySentiment = ClosedEnum<
|
|
100
|
+
typeof PatchV2HumanEvalsIdRequestBodySentiment
|
|
101
|
+
>;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* Model representing specific values and attributes of feedback.
|
|
105
|
+
*/
|
|
106
|
+
export type PatchV2HumanEvalsIdRequestBodyOptions = {
|
|
107
|
+
/**
|
|
108
|
+
* The value or content of the feedback.
|
|
109
|
+
*/
|
|
110
|
+
value: string;
|
|
111
|
+
sentiment: PatchV2HumanEvalsIdRequestBodySentiment;
|
|
112
|
+
/**
|
|
113
|
+
* Description of the feedback option.
|
|
114
|
+
*/
|
|
115
|
+
description: string;
|
|
116
|
+
icon: string;
|
|
117
|
+
};
|
|
118
|
+
|
|
119
|
+
export type PatchV2HumanEvalsIdRequestBody4 = {
|
|
120
|
+
type: "multi_select";
|
|
121
|
+
options: Array<PatchV2HumanEvalsIdRequestBodyOptions>;
|
|
122
|
+
/**
|
|
123
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
124
|
+
*/
|
|
125
|
+
key?: string | undefined;
|
|
126
|
+
/**
|
|
127
|
+
* Display name of the feedback item.
|
|
128
|
+
*/
|
|
129
|
+
displayName: string;
|
|
130
|
+
/**
|
|
131
|
+
* Detailed description of the feedback.
|
|
132
|
+
*/
|
|
133
|
+
description: string;
|
|
134
|
+
/**
|
|
135
|
+
* The id of the user who created the resource
|
|
136
|
+
*/
|
|
137
|
+
createdById?: string | undefined;
|
|
138
|
+
/**
|
|
139
|
+
* The id of the user who last updated the resource
|
|
140
|
+
*/
|
|
141
|
+
updatedById?: string | undefined;
|
|
142
|
+
/**
|
|
143
|
+
* Optional project ID to scope this human review to a specific project
|
|
144
|
+
*/
|
|
145
|
+
projectId?: string | undefined;
|
|
146
|
+
};
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* The configuration for a range human review
|
|
150
|
+
*/
|
|
151
|
+
export type RequestBodyConfig = {
|
|
152
|
+
/**
|
|
153
|
+
* The minimum value for the range
|
|
154
|
+
*/
|
|
155
|
+
min: number;
|
|
156
|
+
/**
|
|
157
|
+
* The maximum value for the range
|
|
158
|
+
*/
|
|
159
|
+
max: number;
|
|
160
|
+
};
|
|
161
|
+
|
|
162
|
+
export type PatchV2HumanEvalsIdRequestBody3 = {
|
|
163
|
+
type: "range";
|
|
164
|
+
/**
|
|
165
|
+
* The configuration for a range human review
|
|
166
|
+
*/
|
|
167
|
+
config: RequestBodyConfig;
|
|
168
|
+
/**
|
|
169
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
170
|
+
*/
|
|
171
|
+
key?: string | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* Display name of the feedback item.
|
|
174
|
+
*/
|
|
175
|
+
displayName: string;
|
|
176
|
+
/**
|
|
177
|
+
* Detailed description of the feedback.
|
|
178
|
+
*/
|
|
179
|
+
description: string;
|
|
180
|
+
/**
|
|
181
|
+
* The id of the user who created the resource
|
|
182
|
+
*/
|
|
183
|
+
createdById?: string | undefined;
|
|
184
|
+
/**
|
|
185
|
+
* The id of the user who last updated the resource
|
|
186
|
+
*/
|
|
187
|
+
updatedById?: string | undefined;
|
|
188
|
+
/**
|
|
189
|
+
* Optional project ID to scope this human review to a specific project
|
|
190
|
+
*/
|
|
191
|
+
projectId?: string | undefined;
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
export type PatchV2HumanEvalsIdRequestBody2 = {
|
|
195
|
+
type: "correction";
|
|
196
|
+
/**
|
|
197
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
198
|
+
*/
|
|
199
|
+
key?: string | undefined;
|
|
200
|
+
/**
|
|
201
|
+
* Display name of the feedback item.
|
|
202
|
+
*/
|
|
203
|
+
displayName: string;
|
|
204
|
+
/**
|
|
205
|
+
* Detailed description of the feedback.
|
|
206
|
+
*/
|
|
207
|
+
description: string;
|
|
208
|
+
/**
|
|
209
|
+
* The id of the user who created the resource
|
|
210
|
+
*/
|
|
211
|
+
createdById?: string | undefined;
|
|
212
|
+
/**
|
|
213
|
+
* The id of the user who last updated the resource
|
|
214
|
+
*/
|
|
215
|
+
updatedById?: string | undefined;
|
|
216
|
+
/**
|
|
217
|
+
* Optional project ID to scope this human review to a specific project
|
|
218
|
+
*/
|
|
219
|
+
projectId?: string | undefined;
|
|
220
|
+
};
|
|
221
|
+
|
|
222
|
+
export type PatchV2HumanEvalsIdRequestBody1 = {
|
|
223
|
+
type: "boolean";
|
|
224
|
+
/**
|
|
225
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
226
|
+
*/
|
|
227
|
+
key?: string | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* Display name of the feedback item.
|
|
230
|
+
*/
|
|
231
|
+
displayName: string;
|
|
232
|
+
/**
|
|
233
|
+
* Detailed description of the feedback.
|
|
234
|
+
*/
|
|
235
|
+
description: string;
|
|
236
|
+
/**
|
|
237
|
+
* The id of the user who created the resource
|
|
238
|
+
*/
|
|
239
|
+
createdById?: string | undefined;
|
|
240
|
+
/**
|
|
241
|
+
* The id of the user who last updated the resource
|
|
242
|
+
*/
|
|
243
|
+
updatedById?: string | undefined;
|
|
244
|
+
/**
|
|
245
|
+
* Optional project ID to scope this human review to a specific project
|
|
246
|
+
*/
|
|
247
|
+
projectId?: string | undefined;
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
export type PatchV2HumanEvalsIdRequestBody =
|
|
251
|
+
| PatchV2HumanEvalsIdRequestBody1
|
|
252
|
+
| PatchV2HumanEvalsIdRequestBody2
|
|
253
|
+
| PatchV2HumanEvalsIdRequestBody3
|
|
254
|
+
| PatchV2HumanEvalsIdRequestBody4
|
|
255
|
+
| RequestBody5
|
|
256
|
+
| Six;
|
|
257
|
+
|
|
258
|
+
export type PatchV2HumanEvalsIdRequest = {
|
|
259
|
+
/**
|
|
260
|
+
* The id of the resource
|
|
261
|
+
*/
|
|
262
|
+
id: string;
|
|
263
|
+
requestBody?:
|
|
264
|
+
| PatchV2HumanEvalsIdRequestBody1
|
|
265
|
+
| PatchV2HumanEvalsIdRequestBody2
|
|
266
|
+
| PatchV2HumanEvalsIdRequestBody3
|
|
267
|
+
| PatchV2HumanEvalsIdRequestBody4
|
|
268
|
+
| RequestBody5
|
|
269
|
+
| Six
|
|
270
|
+
| undefined;
|
|
271
|
+
};
|
|
272
|
+
|
|
273
|
+
export type PatchV2HumanEvalsIdResponseBody6 = {
|
|
274
|
+
type: "text";
|
|
275
|
+
/**
|
|
276
|
+
* The id of the resource
|
|
277
|
+
*/
|
|
278
|
+
id: string;
|
|
279
|
+
/**
|
|
280
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
281
|
+
*/
|
|
282
|
+
key: string;
|
|
283
|
+
/**
|
|
284
|
+
* Display name of the feedback item.
|
|
285
|
+
*/
|
|
286
|
+
displayName: string;
|
|
287
|
+
/**
|
|
288
|
+
* Detailed description of the feedback.
|
|
289
|
+
*/
|
|
290
|
+
description: string;
|
|
291
|
+
/**
|
|
292
|
+
* The id of the resource
|
|
293
|
+
*/
|
|
294
|
+
domainId?: string | undefined;
|
|
295
|
+
/**
|
|
296
|
+
* The id of the user who created the resource
|
|
297
|
+
*/
|
|
298
|
+
createdById?: string | undefined;
|
|
299
|
+
/**
|
|
300
|
+
* The id of the user who last updated the resource
|
|
301
|
+
*/
|
|
302
|
+
updatedById?: string | undefined;
|
|
303
|
+
/**
|
|
304
|
+
* The id of the resource
|
|
305
|
+
*/
|
|
306
|
+
workspaceId: string;
|
|
307
|
+
/**
|
|
308
|
+
* Optional project ID to scope this human review to a specific project
|
|
309
|
+
*/
|
|
310
|
+
projectId?: string | undefined;
|
|
311
|
+
};
|
|
312
|
+
|
|
313
|
+
export const PatchV2HumanEvalsIdResponseBodyResponseSentiment = {
|
|
314
|
+
Neutral: "neutral",
|
|
315
|
+
Positive: "positive",
|
|
316
|
+
Negative: "negative",
|
|
317
|
+
} as const;
|
|
318
|
+
export type PatchV2HumanEvalsIdResponseBodyResponseSentiment = ClosedEnum<
|
|
319
|
+
typeof PatchV2HumanEvalsIdResponseBodyResponseSentiment
|
|
320
|
+
>;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* Model representing specific values and attributes of feedback.
|
|
324
|
+
*/
|
|
325
|
+
export type PatchV2HumanEvalsIdResponseBodyResponseOptions = {
|
|
326
|
+
/**
|
|
327
|
+
* The id of the resource
|
|
328
|
+
*/
|
|
329
|
+
id: string;
|
|
330
|
+
/**
|
|
331
|
+
* The value or content of the feedback.
|
|
332
|
+
*/
|
|
333
|
+
value: string;
|
|
334
|
+
sentiment: PatchV2HumanEvalsIdResponseBodyResponseSentiment;
|
|
335
|
+
/**
|
|
336
|
+
* Description of the feedback option.
|
|
337
|
+
*/
|
|
338
|
+
description: string;
|
|
339
|
+
icon: string;
|
|
340
|
+
};
|
|
341
|
+
|
|
342
|
+
export type PatchV2HumanEvalsIdResponseBody5 = {
|
|
343
|
+
type: "single_select";
|
|
344
|
+
options: Array<PatchV2HumanEvalsIdResponseBodyResponseOptions>;
|
|
345
|
+
/**
|
|
346
|
+
* The id of the resource
|
|
347
|
+
*/
|
|
348
|
+
id: string;
|
|
349
|
+
/**
|
|
350
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
351
|
+
*/
|
|
352
|
+
key: string;
|
|
353
|
+
/**
|
|
354
|
+
* Display name of the feedback item.
|
|
355
|
+
*/
|
|
356
|
+
displayName: string;
|
|
357
|
+
/**
|
|
358
|
+
* Detailed description of the feedback.
|
|
359
|
+
*/
|
|
360
|
+
description: string;
|
|
361
|
+
/**
|
|
362
|
+
* The id of the resource
|
|
363
|
+
*/
|
|
364
|
+
domainId?: string | undefined;
|
|
365
|
+
/**
|
|
366
|
+
* The id of the user who created the resource
|
|
367
|
+
*/
|
|
368
|
+
createdById?: string | undefined;
|
|
369
|
+
/**
|
|
370
|
+
* The id of the user who last updated the resource
|
|
371
|
+
*/
|
|
372
|
+
updatedById?: string | undefined;
|
|
373
|
+
/**
|
|
374
|
+
* The id of the resource
|
|
375
|
+
*/
|
|
376
|
+
workspaceId: string;
|
|
377
|
+
/**
|
|
378
|
+
* Optional project ID to scope this human review to a specific project
|
|
379
|
+
*/
|
|
380
|
+
projectId?: string | undefined;
|
|
381
|
+
};
|
|
382
|
+
|
|
383
|
+
export const PatchV2HumanEvalsIdResponseBodySentiment = {
|
|
384
|
+
Neutral: "neutral",
|
|
385
|
+
Positive: "positive",
|
|
386
|
+
Negative: "negative",
|
|
387
|
+
} as const;
|
|
388
|
+
export type PatchV2HumanEvalsIdResponseBodySentiment = ClosedEnum<
|
|
389
|
+
typeof PatchV2HumanEvalsIdResponseBodySentiment
|
|
390
|
+
>;
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* Model representing specific values and attributes of feedback.
|
|
394
|
+
*/
|
|
395
|
+
export type PatchV2HumanEvalsIdResponseBodyOptions = {
|
|
396
|
+
/**
|
|
397
|
+
* The id of the resource
|
|
398
|
+
*/
|
|
399
|
+
id: string;
|
|
400
|
+
/**
|
|
401
|
+
* The value or content of the feedback.
|
|
402
|
+
*/
|
|
403
|
+
value: string;
|
|
404
|
+
sentiment: PatchV2HumanEvalsIdResponseBodySentiment;
|
|
405
|
+
/**
|
|
406
|
+
* Description of the feedback option.
|
|
407
|
+
*/
|
|
408
|
+
description: string;
|
|
409
|
+
icon: string;
|
|
410
|
+
};
|
|
411
|
+
|
|
412
|
+
export type PatchV2HumanEvalsIdResponseBody4 = {
|
|
413
|
+
type: "multi_select";
|
|
414
|
+
options: Array<PatchV2HumanEvalsIdResponseBodyOptions>;
|
|
415
|
+
/**
|
|
416
|
+
* The id of the resource
|
|
417
|
+
*/
|
|
418
|
+
id: string;
|
|
419
|
+
/**
|
|
420
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
421
|
+
*/
|
|
422
|
+
key: string;
|
|
423
|
+
/**
|
|
424
|
+
* Display name of the feedback item.
|
|
425
|
+
*/
|
|
426
|
+
displayName: string;
|
|
427
|
+
/**
|
|
428
|
+
* Detailed description of the feedback.
|
|
429
|
+
*/
|
|
430
|
+
description: string;
|
|
431
|
+
/**
|
|
432
|
+
* The id of the resource
|
|
433
|
+
*/
|
|
434
|
+
domainId?: string | undefined;
|
|
435
|
+
/**
|
|
436
|
+
* The id of the user who created the resource
|
|
437
|
+
*/
|
|
438
|
+
createdById?: string | undefined;
|
|
439
|
+
/**
|
|
440
|
+
* The id of the user who last updated the resource
|
|
441
|
+
*/
|
|
442
|
+
updatedById?: string | undefined;
|
|
443
|
+
/**
|
|
444
|
+
* The id of the resource
|
|
445
|
+
*/
|
|
446
|
+
workspaceId: string;
|
|
447
|
+
/**
|
|
448
|
+
* Optional project ID to scope this human review to a specific project
|
|
449
|
+
*/
|
|
450
|
+
projectId?: string | undefined;
|
|
451
|
+
};
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* The configuration for a range human review
|
|
455
|
+
*/
|
|
456
|
+
export type PatchV2HumanEvalsIdResponseBodyConfig = {
|
|
457
|
+
/**
|
|
458
|
+
* The minimum value for the range
|
|
459
|
+
*/
|
|
460
|
+
min: number;
|
|
461
|
+
/**
|
|
462
|
+
* The maximum value for the range
|
|
463
|
+
*/
|
|
464
|
+
max: number;
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
export type PatchV2HumanEvalsIdResponseBody3 = {
|
|
468
|
+
type: "range";
|
|
469
|
+
/**
|
|
470
|
+
* The configuration for a range human review
|
|
471
|
+
*/
|
|
472
|
+
config: PatchV2HumanEvalsIdResponseBodyConfig;
|
|
473
|
+
/**
|
|
474
|
+
* The id of the resource
|
|
475
|
+
*/
|
|
476
|
+
id: string;
|
|
477
|
+
/**
|
|
478
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
479
|
+
*/
|
|
480
|
+
key: string;
|
|
481
|
+
/**
|
|
482
|
+
* Display name of the feedback item.
|
|
483
|
+
*/
|
|
484
|
+
displayName: string;
|
|
485
|
+
/**
|
|
486
|
+
* Detailed description of the feedback.
|
|
487
|
+
*/
|
|
488
|
+
description: string;
|
|
489
|
+
/**
|
|
490
|
+
* The id of the resource
|
|
491
|
+
*/
|
|
492
|
+
domainId?: string | undefined;
|
|
493
|
+
/**
|
|
494
|
+
* The id of the user who created the resource
|
|
495
|
+
*/
|
|
496
|
+
createdById?: string | undefined;
|
|
497
|
+
/**
|
|
498
|
+
* The id of the user who last updated the resource
|
|
499
|
+
*/
|
|
500
|
+
updatedById?: string | undefined;
|
|
501
|
+
/**
|
|
502
|
+
* The id of the resource
|
|
503
|
+
*/
|
|
504
|
+
workspaceId: string;
|
|
505
|
+
/**
|
|
506
|
+
* Optional project ID to scope this human review to a specific project
|
|
507
|
+
*/
|
|
508
|
+
projectId?: string | undefined;
|
|
509
|
+
};
|
|
510
|
+
|
|
511
|
+
export type PatchV2HumanEvalsIdResponseBody2 = {
|
|
512
|
+
type: "correction";
|
|
513
|
+
/**
|
|
514
|
+
* The id of the resource
|
|
515
|
+
*/
|
|
516
|
+
id: string;
|
|
517
|
+
/**
|
|
518
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
519
|
+
*/
|
|
520
|
+
key: string;
|
|
521
|
+
/**
|
|
522
|
+
* Display name of the feedback item.
|
|
523
|
+
*/
|
|
524
|
+
displayName: string;
|
|
525
|
+
/**
|
|
526
|
+
* Detailed description of the feedback.
|
|
527
|
+
*/
|
|
528
|
+
description: string;
|
|
529
|
+
/**
|
|
530
|
+
* The id of the resource
|
|
531
|
+
*/
|
|
532
|
+
domainId?: string | undefined;
|
|
533
|
+
/**
|
|
534
|
+
* The id of the user who created the resource
|
|
535
|
+
*/
|
|
536
|
+
createdById?: string | undefined;
|
|
537
|
+
/**
|
|
538
|
+
* The id of the user who last updated the resource
|
|
539
|
+
*/
|
|
540
|
+
updatedById?: string | undefined;
|
|
541
|
+
/**
|
|
542
|
+
* The id of the resource
|
|
543
|
+
*/
|
|
544
|
+
workspaceId: string;
|
|
545
|
+
/**
|
|
546
|
+
* Optional project ID to scope this human review to a specific project
|
|
547
|
+
*/
|
|
548
|
+
projectId?: string | undefined;
|
|
549
|
+
};
|
|
550
|
+
|
|
551
|
+
export type PatchV2HumanEvalsIdResponseBody1 = {
|
|
552
|
+
type: "boolean";
|
|
553
|
+
/**
|
|
554
|
+
* The id of the resource
|
|
555
|
+
*/
|
|
556
|
+
id: string;
|
|
557
|
+
/**
|
|
558
|
+
* Unique key for the feedback. It is autogenerated by the system always
|
|
559
|
+
*/
|
|
560
|
+
key: string;
|
|
561
|
+
/**
|
|
562
|
+
* Display name of the feedback item.
|
|
563
|
+
*/
|
|
564
|
+
displayName: string;
|
|
565
|
+
/**
|
|
566
|
+
* Detailed description of the feedback.
|
|
567
|
+
*/
|
|
568
|
+
description: string;
|
|
569
|
+
/**
|
|
570
|
+
* The id of the resource
|
|
571
|
+
*/
|
|
572
|
+
domainId?: string | undefined;
|
|
573
|
+
/**
|
|
574
|
+
* The id of the user who created the resource
|
|
575
|
+
*/
|
|
576
|
+
createdById?: string | undefined;
|
|
577
|
+
/**
|
|
578
|
+
* The id of the user who last updated the resource
|
|
579
|
+
*/
|
|
580
|
+
updatedById?: string | undefined;
|
|
581
|
+
/**
|
|
582
|
+
* The id of the resource
|
|
583
|
+
*/
|
|
584
|
+
workspaceId: string;
|
|
585
|
+
/**
|
|
586
|
+
* Optional project ID to scope this human review to a specific project
|
|
587
|
+
*/
|
|
588
|
+
projectId?: string | undefined;
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* Successfully updated a human review
|
|
593
|
+
*/
|
|
594
|
+
export type PatchV2HumanEvalsIdResponseBody =
|
|
595
|
+
| PatchV2HumanEvalsIdResponseBody1
|
|
596
|
+
| PatchV2HumanEvalsIdResponseBody2
|
|
597
|
+
| PatchV2HumanEvalsIdResponseBody3
|
|
598
|
+
| PatchV2HumanEvalsIdResponseBody4
|
|
599
|
+
| PatchV2HumanEvalsIdResponseBody5
|
|
600
|
+
| PatchV2HumanEvalsIdResponseBody6;
|
|
601
|
+
|
|
602
|
+
/** @internal */
|
|
603
|
+
export type Six$Outbound = {
|
|
604
|
+
type: "text";
|
|
605
|
+
key: string;
|
|
606
|
+
display_name: string;
|
|
607
|
+
description: string;
|
|
608
|
+
created_by_id?: string | undefined;
|
|
609
|
+
updated_by_id?: string | undefined;
|
|
610
|
+
project_id?: string | undefined;
|
|
611
|
+
};
|
|
612
|
+
|
|
613
|
+
/** @internal */
|
|
614
|
+
export const Six$outboundSchema: z.ZodType<Six$Outbound, z.ZodTypeDef, Six> = z
|
|
615
|
+
.object({
|
|
616
|
+
type: z.literal("text"),
|
|
617
|
+
key: z.string().default("orq_01knsddfbe"),
|
|
618
|
+
displayName: z.string(),
|
|
619
|
+
description: z.string(),
|
|
620
|
+
createdById: z.string().optional(),
|
|
621
|
+
updatedById: z.string().optional(),
|
|
622
|
+
projectId: z.string().optional(),
|
|
623
|
+
}).transform((v) => {
|
|
624
|
+
return remap$(v, {
|
|
625
|
+
displayName: "display_name",
|
|
626
|
+
createdById: "created_by_id",
|
|
627
|
+
updatedById: "updated_by_id",
|
|
628
|
+
projectId: "project_id",
|
|
629
|
+
});
|
|
630
|
+
});
|
|
631
|
+
|
|
632
|
+
export function sixToJSON(six: Six): string {
|
|
633
|
+
return JSON.stringify(Six$outboundSchema.parse(six));
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/** @internal */
|
|
637
|
+
export const PatchV2HumanEvalsIdRequestBodyRequestSentiment$outboundSchema:
|
|
638
|
+
z.ZodNativeEnum<typeof PatchV2HumanEvalsIdRequestBodyRequestSentiment> = z
|
|
639
|
+
.nativeEnum(PatchV2HumanEvalsIdRequestBodyRequestSentiment);
|
|
640
|
+
|
|
641
|
+
/** @internal */
|
|
642
|
+
export type PatchV2HumanEvalsIdRequestBodyOptionsInput$Outbound = {
|
|
643
|
+
value: string;
|
|
644
|
+
sentiment: string;
|
|
645
|
+
description: string;
|
|
646
|
+
icon: string;
|
|
647
|
+
};
|
|
648
|
+
|
|
649
|
+
/** @internal */
|
|
650
|
+
export const PatchV2HumanEvalsIdRequestBodyOptionsInput$outboundSchema:
|
|
651
|
+
z.ZodType<
|
|
652
|
+
PatchV2HumanEvalsIdRequestBodyOptionsInput$Outbound,
|
|
653
|
+
z.ZodTypeDef,
|
|
654
|
+
PatchV2HumanEvalsIdRequestBodyOptionsInput
|
|
655
|
+
> = z.object({
|
|
656
|
+
value: z.string(),
|
|
657
|
+
sentiment: PatchV2HumanEvalsIdRequestBodyRequestSentiment$outboundSchema,
|
|
658
|
+
description: z.string(),
|
|
659
|
+
icon: z.string(),
|
|
660
|
+
});
|
|
661
|
+
|
|
662
|
+
export function patchV2HumanEvalsIdRequestBodyOptionsInputToJSON(
|
|
663
|
+
patchV2HumanEvalsIdRequestBodyOptionsInput:
|
|
664
|
+
PatchV2HumanEvalsIdRequestBodyOptionsInput,
|
|
665
|
+
): string {
|
|
666
|
+
return JSON.stringify(
|
|
667
|
+
PatchV2HumanEvalsIdRequestBodyOptionsInput$outboundSchema.parse(
|
|
668
|
+
patchV2HumanEvalsIdRequestBodyOptionsInput,
|
|
669
|
+
),
|
|
670
|
+
);
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
/** @internal */
|
|
674
|
+
export type RequestBody5$Outbound = {
|
|
675
|
+
type: "single_select";
|
|
676
|
+
options: Array<PatchV2HumanEvalsIdRequestBodyOptionsInput$Outbound>;
|
|
677
|
+
key: string;
|
|
678
|
+
display_name: string;
|
|
679
|
+
description: string;
|
|
680
|
+
created_by_id?: string | undefined;
|
|
681
|
+
updated_by_id?: string | undefined;
|
|
682
|
+
project_id?: string | undefined;
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
/** @internal */
|
|
686
|
+
export const RequestBody5$outboundSchema: z.ZodType<
|
|
687
|
+
RequestBody5$Outbound,
|
|
688
|
+
z.ZodTypeDef,
|
|
689
|
+
RequestBody5
|
|
690
|
+
> = z.object({
|
|
691
|
+
type: z.literal("single_select"),
|
|
692
|
+
options: z.array(
|
|
693
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBodyOptionsInput$outboundSchema),
|
|
694
|
+
),
|
|
695
|
+
key: z.string().default("orq_01knsddfbd"),
|
|
696
|
+
displayName: z.string(),
|
|
697
|
+
description: z.string(),
|
|
698
|
+
createdById: z.string().optional(),
|
|
699
|
+
updatedById: z.string().optional(),
|
|
700
|
+
projectId: z.string().optional(),
|
|
701
|
+
}).transform((v) => {
|
|
702
|
+
return remap$(v, {
|
|
703
|
+
displayName: "display_name",
|
|
704
|
+
createdById: "created_by_id",
|
|
705
|
+
updatedById: "updated_by_id",
|
|
706
|
+
projectId: "project_id",
|
|
707
|
+
});
|
|
708
|
+
});
|
|
709
|
+
|
|
710
|
+
export function requestBody5ToJSON(requestBody5: RequestBody5): string {
|
|
711
|
+
return JSON.stringify(RequestBody5$outboundSchema.parse(requestBody5));
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/** @internal */
|
|
715
|
+
export const PatchV2HumanEvalsIdRequestBodySentiment$outboundSchema:
|
|
716
|
+
z.ZodNativeEnum<typeof PatchV2HumanEvalsIdRequestBodySentiment> = z
|
|
717
|
+
.nativeEnum(PatchV2HumanEvalsIdRequestBodySentiment);
|
|
718
|
+
|
|
719
|
+
/** @internal */
|
|
720
|
+
export type PatchV2HumanEvalsIdRequestBodyOptions$Outbound = {
|
|
721
|
+
value: string;
|
|
722
|
+
sentiment: string;
|
|
723
|
+
description: string;
|
|
724
|
+
icon: string;
|
|
725
|
+
};
|
|
726
|
+
|
|
727
|
+
/** @internal */
|
|
728
|
+
export const PatchV2HumanEvalsIdRequestBodyOptions$outboundSchema: z.ZodType<
|
|
729
|
+
PatchV2HumanEvalsIdRequestBodyOptions$Outbound,
|
|
730
|
+
z.ZodTypeDef,
|
|
731
|
+
PatchV2HumanEvalsIdRequestBodyOptions
|
|
732
|
+
> = z.object({
|
|
733
|
+
value: z.string(),
|
|
734
|
+
sentiment: PatchV2HumanEvalsIdRequestBodySentiment$outboundSchema,
|
|
735
|
+
description: z.string(),
|
|
736
|
+
icon: z.string(),
|
|
737
|
+
});
|
|
738
|
+
|
|
739
|
+
export function patchV2HumanEvalsIdRequestBodyOptionsToJSON(
|
|
740
|
+
patchV2HumanEvalsIdRequestBodyOptions: PatchV2HumanEvalsIdRequestBodyOptions,
|
|
741
|
+
): string {
|
|
742
|
+
return JSON.stringify(
|
|
743
|
+
PatchV2HumanEvalsIdRequestBodyOptions$outboundSchema.parse(
|
|
744
|
+
patchV2HumanEvalsIdRequestBodyOptions,
|
|
745
|
+
),
|
|
746
|
+
);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
/** @internal */
|
|
750
|
+
export type PatchV2HumanEvalsIdRequestBody4$Outbound = {
|
|
751
|
+
type: "multi_select";
|
|
752
|
+
options: Array<PatchV2HumanEvalsIdRequestBodyOptions$Outbound>;
|
|
753
|
+
key: string;
|
|
754
|
+
display_name: string;
|
|
755
|
+
description: string;
|
|
756
|
+
created_by_id?: string | undefined;
|
|
757
|
+
updated_by_id?: string | undefined;
|
|
758
|
+
project_id?: string | undefined;
|
|
759
|
+
};
|
|
760
|
+
|
|
761
|
+
/** @internal */
|
|
762
|
+
export const PatchV2HumanEvalsIdRequestBody4$outboundSchema: z.ZodType<
|
|
763
|
+
PatchV2HumanEvalsIdRequestBody4$Outbound,
|
|
764
|
+
z.ZodTypeDef,
|
|
765
|
+
PatchV2HumanEvalsIdRequestBody4
|
|
766
|
+
> = z.object({
|
|
767
|
+
type: z.literal("multi_select"),
|
|
768
|
+
options: z.array(
|
|
769
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBodyOptions$outboundSchema),
|
|
770
|
+
),
|
|
771
|
+
key: z.string().default("orq_01knsddfbc"),
|
|
772
|
+
displayName: z.string(),
|
|
773
|
+
description: z.string(),
|
|
774
|
+
createdById: z.string().optional(),
|
|
775
|
+
updatedById: z.string().optional(),
|
|
776
|
+
projectId: z.string().optional(),
|
|
777
|
+
}).transform((v) => {
|
|
778
|
+
return remap$(v, {
|
|
779
|
+
displayName: "display_name",
|
|
780
|
+
createdById: "created_by_id",
|
|
781
|
+
updatedById: "updated_by_id",
|
|
782
|
+
projectId: "project_id",
|
|
783
|
+
});
|
|
784
|
+
});
|
|
785
|
+
|
|
786
|
+
export function patchV2HumanEvalsIdRequestBody4ToJSON(
|
|
787
|
+
patchV2HumanEvalsIdRequestBody4: PatchV2HumanEvalsIdRequestBody4,
|
|
788
|
+
): string {
|
|
789
|
+
return JSON.stringify(
|
|
790
|
+
PatchV2HumanEvalsIdRequestBody4$outboundSchema.parse(
|
|
791
|
+
patchV2HumanEvalsIdRequestBody4,
|
|
792
|
+
),
|
|
793
|
+
);
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
/** @internal */
|
|
797
|
+
export type RequestBodyConfig$Outbound = {
|
|
798
|
+
min: number;
|
|
799
|
+
max: number;
|
|
800
|
+
};
|
|
801
|
+
|
|
802
|
+
/** @internal */
|
|
803
|
+
export const RequestBodyConfig$outboundSchema: z.ZodType<
|
|
804
|
+
RequestBodyConfig$Outbound,
|
|
805
|
+
z.ZodTypeDef,
|
|
806
|
+
RequestBodyConfig
|
|
807
|
+
> = z.object({
|
|
808
|
+
min: z.number().int(),
|
|
809
|
+
max: z.number().int(),
|
|
810
|
+
});
|
|
811
|
+
|
|
812
|
+
export function requestBodyConfigToJSON(
|
|
813
|
+
requestBodyConfig: RequestBodyConfig,
|
|
814
|
+
): string {
|
|
815
|
+
return JSON.stringify(
|
|
816
|
+
RequestBodyConfig$outboundSchema.parse(requestBodyConfig),
|
|
817
|
+
);
|
|
818
|
+
}
|
|
819
|
+
|
|
820
|
+
/** @internal */
|
|
821
|
+
export type PatchV2HumanEvalsIdRequestBody3$Outbound = {
|
|
822
|
+
type: "range";
|
|
823
|
+
config: RequestBodyConfig$Outbound;
|
|
824
|
+
key: string;
|
|
825
|
+
display_name: string;
|
|
826
|
+
description: string;
|
|
827
|
+
created_by_id?: string | undefined;
|
|
828
|
+
updated_by_id?: string | undefined;
|
|
829
|
+
project_id?: string | undefined;
|
|
830
|
+
};
|
|
831
|
+
|
|
832
|
+
/** @internal */
|
|
833
|
+
export const PatchV2HumanEvalsIdRequestBody3$outboundSchema: z.ZodType<
|
|
834
|
+
PatchV2HumanEvalsIdRequestBody3$Outbound,
|
|
835
|
+
z.ZodTypeDef,
|
|
836
|
+
PatchV2HumanEvalsIdRequestBody3
|
|
837
|
+
> = z.object({
|
|
838
|
+
type: z.literal("range"),
|
|
839
|
+
config: z.lazy(() => RequestBodyConfig$outboundSchema),
|
|
840
|
+
key: z.string().default("orq_01knsddfbb"),
|
|
841
|
+
displayName: z.string(),
|
|
842
|
+
description: z.string(),
|
|
843
|
+
createdById: z.string().optional(),
|
|
844
|
+
updatedById: z.string().optional(),
|
|
845
|
+
projectId: z.string().optional(),
|
|
846
|
+
}).transform((v) => {
|
|
847
|
+
return remap$(v, {
|
|
848
|
+
displayName: "display_name",
|
|
849
|
+
createdById: "created_by_id",
|
|
850
|
+
updatedById: "updated_by_id",
|
|
851
|
+
projectId: "project_id",
|
|
852
|
+
});
|
|
853
|
+
});
|
|
854
|
+
|
|
855
|
+
export function patchV2HumanEvalsIdRequestBody3ToJSON(
|
|
856
|
+
patchV2HumanEvalsIdRequestBody3: PatchV2HumanEvalsIdRequestBody3,
|
|
857
|
+
): string {
|
|
858
|
+
return JSON.stringify(
|
|
859
|
+
PatchV2HumanEvalsIdRequestBody3$outboundSchema.parse(
|
|
860
|
+
patchV2HumanEvalsIdRequestBody3,
|
|
861
|
+
),
|
|
862
|
+
);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
/** @internal */
|
|
866
|
+
export type PatchV2HumanEvalsIdRequestBody2$Outbound = {
|
|
867
|
+
type: "correction";
|
|
868
|
+
key: string;
|
|
869
|
+
display_name: string;
|
|
870
|
+
description: string;
|
|
871
|
+
created_by_id?: string | undefined;
|
|
872
|
+
updated_by_id?: string | undefined;
|
|
873
|
+
project_id?: string | undefined;
|
|
874
|
+
};
|
|
875
|
+
|
|
876
|
+
/** @internal */
|
|
877
|
+
export const PatchV2HumanEvalsIdRequestBody2$outboundSchema: z.ZodType<
|
|
878
|
+
PatchV2HumanEvalsIdRequestBody2$Outbound,
|
|
879
|
+
z.ZodTypeDef,
|
|
880
|
+
PatchV2HumanEvalsIdRequestBody2
|
|
881
|
+
> = z.object({
|
|
882
|
+
type: z.literal("correction"),
|
|
883
|
+
key: z.string().default("orq_01knsddfba"),
|
|
884
|
+
displayName: z.string(),
|
|
885
|
+
description: z.string(),
|
|
886
|
+
createdById: z.string().optional(),
|
|
887
|
+
updatedById: z.string().optional(),
|
|
888
|
+
projectId: z.string().optional(),
|
|
889
|
+
}).transform((v) => {
|
|
890
|
+
return remap$(v, {
|
|
891
|
+
displayName: "display_name",
|
|
892
|
+
createdById: "created_by_id",
|
|
893
|
+
updatedById: "updated_by_id",
|
|
894
|
+
projectId: "project_id",
|
|
895
|
+
});
|
|
896
|
+
});
|
|
897
|
+
|
|
898
|
+
export function patchV2HumanEvalsIdRequestBody2ToJSON(
|
|
899
|
+
patchV2HumanEvalsIdRequestBody2: PatchV2HumanEvalsIdRequestBody2,
|
|
900
|
+
): string {
|
|
901
|
+
return JSON.stringify(
|
|
902
|
+
PatchV2HumanEvalsIdRequestBody2$outboundSchema.parse(
|
|
903
|
+
patchV2HumanEvalsIdRequestBody2,
|
|
904
|
+
),
|
|
905
|
+
);
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
/** @internal */
|
|
909
|
+
export type PatchV2HumanEvalsIdRequestBody1$Outbound = {
|
|
910
|
+
type: "boolean";
|
|
911
|
+
key: string;
|
|
912
|
+
display_name: string;
|
|
913
|
+
description: string;
|
|
914
|
+
created_by_id?: string | undefined;
|
|
915
|
+
updated_by_id?: string | undefined;
|
|
916
|
+
project_id?: string | undefined;
|
|
917
|
+
};
|
|
918
|
+
|
|
919
|
+
/** @internal */
|
|
920
|
+
export const PatchV2HumanEvalsIdRequestBody1$outboundSchema: z.ZodType<
|
|
921
|
+
PatchV2HumanEvalsIdRequestBody1$Outbound,
|
|
922
|
+
z.ZodTypeDef,
|
|
923
|
+
PatchV2HumanEvalsIdRequestBody1
|
|
924
|
+
> = z.object({
|
|
925
|
+
type: z.literal("boolean"),
|
|
926
|
+
key: z.string().default("orq_01knsddfb9"),
|
|
927
|
+
displayName: z.string(),
|
|
928
|
+
description: z.string(),
|
|
929
|
+
createdById: z.string().optional(),
|
|
930
|
+
updatedById: z.string().optional(),
|
|
931
|
+
projectId: z.string().optional(),
|
|
932
|
+
}).transform((v) => {
|
|
933
|
+
return remap$(v, {
|
|
934
|
+
displayName: "display_name",
|
|
935
|
+
createdById: "created_by_id",
|
|
936
|
+
updatedById: "updated_by_id",
|
|
937
|
+
projectId: "project_id",
|
|
938
|
+
});
|
|
939
|
+
});
|
|
940
|
+
|
|
941
|
+
export function patchV2HumanEvalsIdRequestBody1ToJSON(
|
|
942
|
+
patchV2HumanEvalsIdRequestBody1: PatchV2HumanEvalsIdRequestBody1,
|
|
943
|
+
): string {
|
|
944
|
+
return JSON.stringify(
|
|
945
|
+
PatchV2HumanEvalsIdRequestBody1$outboundSchema.parse(
|
|
946
|
+
patchV2HumanEvalsIdRequestBody1,
|
|
947
|
+
),
|
|
948
|
+
);
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
/** @internal */
|
|
952
|
+
export type PatchV2HumanEvalsIdRequestBody$Outbound =
|
|
953
|
+
| PatchV2HumanEvalsIdRequestBody1$Outbound
|
|
954
|
+
| PatchV2HumanEvalsIdRequestBody2$Outbound
|
|
955
|
+
| PatchV2HumanEvalsIdRequestBody3$Outbound
|
|
956
|
+
| PatchV2HumanEvalsIdRequestBody4$Outbound
|
|
957
|
+
| RequestBody5$Outbound
|
|
958
|
+
| Six$Outbound;
|
|
959
|
+
|
|
960
|
+
/** @internal */
|
|
961
|
+
export const PatchV2HumanEvalsIdRequestBody$outboundSchema: z.ZodType<
|
|
962
|
+
PatchV2HumanEvalsIdRequestBody$Outbound,
|
|
963
|
+
z.ZodTypeDef,
|
|
964
|
+
PatchV2HumanEvalsIdRequestBody
|
|
965
|
+
> = z.union([
|
|
966
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody1$outboundSchema),
|
|
967
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody2$outboundSchema),
|
|
968
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody3$outboundSchema),
|
|
969
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody4$outboundSchema),
|
|
970
|
+
z.lazy(() => RequestBody5$outboundSchema),
|
|
971
|
+
z.lazy(() => Six$outboundSchema),
|
|
972
|
+
]);
|
|
973
|
+
|
|
974
|
+
export function patchV2HumanEvalsIdRequestBodyToJSON(
|
|
975
|
+
patchV2HumanEvalsIdRequestBody: PatchV2HumanEvalsIdRequestBody,
|
|
976
|
+
): string {
|
|
977
|
+
return JSON.stringify(
|
|
978
|
+
PatchV2HumanEvalsIdRequestBody$outboundSchema.parse(
|
|
979
|
+
patchV2HumanEvalsIdRequestBody,
|
|
980
|
+
),
|
|
981
|
+
);
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
/** @internal */
|
|
985
|
+
export type PatchV2HumanEvalsIdRequest$Outbound = {
|
|
986
|
+
id: string;
|
|
987
|
+
RequestBody?:
|
|
988
|
+
| PatchV2HumanEvalsIdRequestBody1$Outbound
|
|
989
|
+
| PatchV2HumanEvalsIdRequestBody2$Outbound
|
|
990
|
+
| PatchV2HumanEvalsIdRequestBody3$Outbound
|
|
991
|
+
| PatchV2HumanEvalsIdRequestBody4$Outbound
|
|
992
|
+
| RequestBody5$Outbound
|
|
993
|
+
| Six$Outbound
|
|
994
|
+
| undefined;
|
|
995
|
+
};
|
|
996
|
+
|
|
997
|
+
/** @internal */
|
|
998
|
+
export const PatchV2HumanEvalsIdRequest$outboundSchema: z.ZodType<
|
|
999
|
+
PatchV2HumanEvalsIdRequest$Outbound,
|
|
1000
|
+
z.ZodTypeDef,
|
|
1001
|
+
PatchV2HumanEvalsIdRequest
|
|
1002
|
+
> = z.object({
|
|
1003
|
+
id: z.string(),
|
|
1004
|
+
requestBody: z.union([
|
|
1005
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody1$outboundSchema),
|
|
1006
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody2$outboundSchema),
|
|
1007
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody3$outboundSchema),
|
|
1008
|
+
z.lazy(() => PatchV2HumanEvalsIdRequestBody4$outboundSchema),
|
|
1009
|
+
z.lazy(() => RequestBody5$outboundSchema),
|
|
1010
|
+
z.lazy(() => Six$outboundSchema),
|
|
1011
|
+
]).optional(),
|
|
1012
|
+
}).transform((v) => {
|
|
1013
|
+
return remap$(v, {
|
|
1014
|
+
requestBody: "RequestBody",
|
|
1015
|
+
});
|
|
1016
|
+
});
|
|
1017
|
+
|
|
1018
|
+
export function patchV2HumanEvalsIdRequestToJSON(
|
|
1019
|
+
patchV2HumanEvalsIdRequest: PatchV2HumanEvalsIdRequest,
|
|
1020
|
+
): string {
|
|
1021
|
+
return JSON.stringify(
|
|
1022
|
+
PatchV2HumanEvalsIdRequest$outboundSchema.parse(patchV2HumanEvalsIdRequest),
|
|
1023
|
+
);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
/** @internal */
|
|
1027
|
+
export const PatchV2HumanEvalsIdResponseBody6$inboundSchema: z.ZodType<
|
|
1028
|
+
PatchV2HumanEvalsIdResponseBody6,
|
|
1029
|
+
z.ZodTypeDef,
|
|
1030
|
+
unknown
|
|
1031
|
+
> = z.object({
|
|
1032
|
+
type: z.literal("text"),
|
|
1033
|
+
id: z.string(),
|
|
1034
|
+
key: z.string().default("orq_01knsddfb7"),
|
|
1035
|
+
display_name: z.string(),
|
|
1036
|
+
description: z.string(),
|
|
1037
|
+
domain_id: z.string().optional(),
|
|
1038
|
+
created_by_id: z.string().optional(),
|
|
1039
|
+
updated_by_id: z.string().optional(),
|
|
1040
|
+
workspace_id: z.string(),
|
|
1041
|
+
project_id: z.string().optional(),
|
|
1042
|
+
}).transform((v) => {
|
|
1043
|
+
return remap$(v, {
|
|
1044
|
+
"display_name": "displayName",
|
|
1045
|
+
"domain_id": "domainId",
|
|
1046
|
+
"created_by_id": "createdById",
|
|
1047
|
+
"updated_by_id": "updatedById",
|
|
1048
|
+
"workspace_id": "workspaceId",
|
|
1049
|
+
"project_id": "projectId",
|
|
1050
|
+
});
|
|
1051
|
+
});
|
|
1052
|
+
|
|
1053
|
+
export function patchV2HumanEvalsIdResponseBody6FromJSON(
|
|
1054
|
+
jsonString: string,
|
|
1055
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody6, SDKValidationError> {
|
|
1056
|
+
return safeParse(
|
|
1057
|
+
jsonString,
|
|
1058
|
+
(x) => PatchV2HumanEvalsIdResponseBody6$inboundSchema.parse(JSON.parse(x)),
|
|
1059
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody6' from JSON`,
|
|
1060
|
+
);
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
/** @internal */
|
|
1064
|
+
export const PatchV2HumanEvalsIdResponseBodyResponseSentiment$inboundSchema:
|
|
1065
|
+
z.ZodNativeEnum<typeof PatchV2HumanEvalsIdResponseBodyResponseSentiment> = z
|
|
1066
|
+
.nativeEnum(PatchV2HumanEvalsIdResponseBodyResponseSentiment);
|
|
1067
|
+
|
|
1068
|
+
/** @internal */
|
|
1069
|
+
export const PatchV2HumanEvalsIdResponseBodyResponseOptions$inboundSchema:
|
|
1070
|
+
z.ZodType<
|
|
1071
|
+
PatchV2HumanEvalsIdResponseBodyResponseOptions,
|
|
1072
|
+
z.ZodTypeDef,
|
|
1073
|
+
unknown
|
|
1074
|
+
> = z.object({
|
|
1075
|
+
id: z.string(),
|
|
1076
|
+
value: z.string(),
|
|
1077
|
+
sentiment: PatchV2HumanEvalsIdResponseBodyResponseSentiment$inboundSchema,
|
|
1078
|
+
description: z.string(),
|
|
1079
|
+
icon: z.string(),
|
|
1080
|
+
});
|
|
1081
|
+
|
|
1082
|
+
export function patchV2HumanEvalsIdResponseBodyResponseOptionsFromJSON(
|
|
1083
|
+
jsonString: string,
|
|
1084
|
+
): SafeParseResult<
|
|
1085
|
+
PatchV2HumanEvalsIdResponseBodyResponseOptions,
|
|
1086
|
+
SDKValidationError
|
|
1087
|
+
> {
|
|
1088
|
+
return safeParse(
|
|
1089
|
+
jsonString,
|
|
1090
|
+
(x) =>
|
|
1091
|
+
PatchV2HumanEvalsIdResponseBodyResponseOptions$inboundSchema.parse(
|
|
1092
|
+
JSON.parse(x),
|
|
1093
|
+
),
|
|
1094
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBodyResponseOptions' from JSON`,
|
|
1095
|
+
);
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
/** @internal */
|
|
1099
|
+
export const PatchV2HumanEvalsIdResponseBody5$inboundSchema: z.ZodType<
|
|
1100
|
+
PatchV2HumanEvalsIdResponseBody5,
|
|
1101
|
+
z.ZodTypeDef,
|
|
1102
|
+
unknown
|
|
1103
|
+
> = z.object({
|
|
1104
|
+
type: z.literal("single_select"),
|
|
1105
|
+
options: z.array(
|
|
1106
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBodyResponseOptions$inboundSchema),
|
|
1107
|
+
),
|
|
1108
|
+
id: z.string(),
|
|
1109
|
+
key: z.string().default("orq_01knsddfb6"),
|
|
1110
|
+
display_name: z.string(),
|
|
1111
|
+
description: z.string(),
|
|
1112
|
+
domain_id: z.string().optional(),
|
|
1113
|
+
created_by_id: z.string().optional(),
|
|
1114
|
+
updated_by_id: z.string().optional(),
|
|
1115
|
+
workspace_id: z.string(),
|
|
1116
|
+
project_id: z.string().optional(),
|
|
1117
|
+
}).transform((v) => {
|
|
1118
|
+
return remap$(v, {
|
|
1119
|
+
"display_name": "displayName",
|
|
1120
|
+
"domain_id": "domainId",
|
|
1121
|
+
"created_by_id": "createdById",
|
|
1122
|
+
"updated_by_id": "updatedById",
|
|
1123
|
+
"workspace_id": "workspaceId",
|
|
1124
|
+
"project_id": "projectId",
|
|
1125
|
+
});
|
|
1126
|
+
});
|
|
1127
|
+
|
|
1128
|
+
export function patchV2HumanEvalsIdResponseBody5FromJSON(
|
|
1129
|
+
jsonString: string,
|
|
1130
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody5, SDKValidationError> {
|
|
1131
|
+
return safeParse(
|
|
1132
|
+
jsonString,
|
|
1133
|
+
(x) => PatchV2HumanEvalsIdResponseBody5$inboundSchema.parse(JSON.parse(x)),
|
|
1134
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody5' from JSON`,
|
|
1135
|
+
);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
/** @internal */
|
|
1139
|
+
export const PatchV2HumanEvalsIdResponseBodySentiment$inboundSchema:
|
|
1140
|
+
z.ZodNativeEnum<typeof PatchV2HumanEvalsIdResponseBodySentiment> = z
|
|
1141
|
+
.nativeEnum(PatchV2HumanEvalsIdResponseBodySentiment);
|
|
1142
|
+
|
|
1143
|
+
/** @internal */
|
|
1144
|
+
export const PatchV2HumanEvalsIdResponseBodyOptions$inboundSchema: z.ZodType<
|
|
1145
|
+
PatchV2HumanEvalsIdResponseBodyOptions,
|
|
1146
|
+
z.ZodTypeDef,
|
|
1147
|
+
unknown
|
|
1148
|
+
> = z.object({
|
|
1149
|
+
id: z.string(),
|
|
1150
|
+
value: z.string(),
|
|
1151
|
+
sentiment: PatchV2HumanEvalsIdResponseBodySentiment$inboundSchema,
|
|
1152
|
+
description: z.string(),
|
|
1153
|
+
icon: z.string(),
|
|
1154
|
+
});
|
|
1155
|
+
|
|
1156
|
+
export function patchV2HumanEvalsIdResponseBodyOptionsFromJSON(
|
|
1157
|
+
jsonString: string,
|
|
1158
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBodyOptions, SDKValidationError> {
|
|
1159
|
+
return safeParse(
|
|
1160
|
+
jsonString,
|
|
1161
|
+
(x) =>
|
|
1162
|
+
PatchV2HumanEvalsIdResponseBodyOptions$inboundSchema.parse(JSON.parse(x)),
|
|
1163
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBodyOptions' from JSON`,
|
|
1164
|
+
);
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
/** @internal */
|
|
1168
|
+
export const PatchV2HumanEvalsIdResponseBody4$inboundSchema: z.ZodType<
|
|
1169
|
+
PatchV2HumanEvalsIdResponseBody4,
|
|
1170
|
+
z.ZodTypeDef,
|
|
1171
|
+
unknown
|
|
1172
|
+
> = z.object({
|
|
1173
|
+
type: z.literal("multi_select"),
|
|
1174
|
+
options: z.array(
|
|
1175
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBodyOptions$inboundSchema),
|
|
1176
|
+
),
|
|
1177
|
+
id: z.string(),
|
|
1178
|
+
key: z.string().default("orq_01knsddfb4"),
|
|
1179
|
+
display_name: z.string(),
|
|
1180
|
+
description: z.string(),
|
|
1181
|
+
domain_id: z.string().optional(),
|
|
1182
|
+
created_by_id: z.string().optional(),
|
|
1183
|
+
updated_by_id: z.string().optional(),
|
|
1184
|
+
workspace_id: z.string(),
|
|
1185
|
+
project_id: z.string().optional(),
|
|
1186
|
+
}).transform((v) => {
|
|
1187
|
+
return remap$(v, {
|
|
1188
|
+
"display_name": "displayName",
|
|
1189
|
+
"domain_id": "domainId",
|
|
1190
|
+
"created_by_id": "createdById",
|
|
1191
|
+
"updated_by_id": "updatedById",
|
|
1192
|
+
"workspace_id": "workspaceId",
|
|
1193
|
+
"project_id": "projectId",
|
|
1194
|
+
});
|
|
1195
|
+
});
|
|
1196
|
+
|
|
1197
|
+
export function patchV2HumanEvalsIdResponseBody4FromJSON(
|
|
1198
|
+
jsonString: string,
|
|
1199
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody4, SDKValidationError> {
|
|
1200
|
+
return safeParse(
|
|
1201
|
+
jsonString,
|
|
1202
|
+
(x) => PatchV2HumanEvalsIdResponseBody4$inboundSchema.parse(JSON.parse(x)),
|
|
1203
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody4' from JSON`,
|
|
1204
|
+
);
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
/** @internal */
|
|
1208
|
+
export const PatchV2HumanEvalsIdResponseBodyConfig$inboundSchema: z.ZodType<
|
|
1209
|
+
PatchV2HumanEvalsIdResponseBodyConfig,
|
|
1210
|
+
z.ZodTypeDef,
|
|
1211
|
+
unknown
|
|
1212
|
+
> = z.object({
|
|
1213
|
+
min: z.number().int(),
|
|
1214
|
+
max: z.number().int(),
|
|
1215
|
+
});
|
|
1216
|
+
|
|
1217
|
+
export function patchV2HumanEvalsIdResponseBodyConfigFromJSON(
|
|
1218
|
+
jsonString: string,
|
|
1219
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBodyConfig, SDKValidationError> {
|
|
1220
|
+
return safeParse(
|
|
1221
|
+
jsonString,
|
|
1222
|
+
(x) =>
|
|
1223
|
+
PatchV2HumanEvalsIdResponseBodyConfig$inboundSchema.parse(JSON.parse(x)),
|
|
1224
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBodyConfig' from JSON`,
|
|
1225
|
+
);
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
/** @internal */
|
|
1229
|
+
export const PatchV2HumanEvalsIdResponseBody3$inboundSchema: z.ZodType<
|
|
1230
|
+
PatchV2HumanEvalsIdResponseBody3,
|
|
1231
|
+
z.ZodTypeDef,
|
|
1232
|
+
unknown
|
|
1233
|
+
> = z.object({
|
|
1234
|
+
type: z.literal("range"),
|
|
1235
|
+
config: z.lazy(() => PatchV2HumanEvalsIdResponseBodyConfig$inboundSchema),
|
|
1236
|
+
id: z.string(),
|
|
1237
|
+
key: z.string().default("orq_01knsddfb1"),
|
|
1238
|
+
display_name: z.string(),
|
|
1239
|
+
description: z.string(),
|
|
1240
|
+
domain_id: z.string().optional(),
|
|
1241
|
+
created_by_id: z.string().optional(),
|
|
1242
|
+
updated_by_id: z.string().optional(),
|
|
1243
|
+
workspace_id: z.string(),
|
|
1244
|
+
project_id: z.string().optional(),
|
|
1245
|
+
}).transform((v) => {
|
|
1246
|
+
return remap$(v, {
|
|
1247
|
+
"display_name": "displayName",
|
|
1248
|
+
"domain_id": "domainId",
|
|
1249
|
+
"created_by_id": "createdById",
|
|
1250
|
+
"updated_by_id": "updatedById",
|
|
1251
|
+
"workspace_id": "workspaceId",
|
|
1252
|
+
"project_id": "projectId",
|
|
1253
|
+
});
|
|
1254
|
+
});
|
|
1255
|
+
|
|
1256
|
+
export function patchV2HumanEvalsIdResponseBody3FromJSON(
|
|
1257
|
+
jsonString: string,
|
|
1258
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody3, SDKValidationError> {
|
|
1259
|
+
return safeParse(
|
|
1260
|
+
jsonString,
|
|
1261
|
+
(x) => PatchV2HumanEvalsIdResponseBody3$inboundSchema.parse(JSON.parse(x)),
|
|
1262
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody3' from JSON`,
|
|
1263
|
+
);
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
/** @internal */
|
|
1267
|
+
export const PatchV2HumanEvalsIdResponseBody2$inboundSchema: z.ZodType<
|
|
1268
|
+
PatchV2HumanEvalsIdResponseBody2,
|
|
1269
|
+
z.ZodTypeDef,
|
|
1270
|
+
unknown
|
|
1271
|
+
> = z.object({
|
|
1272
|
+
type: z.literal("correction"),
|
|
1273
|
+
id: z.string(),
|
|
1274
|
+
key: z.string().default("orq_01knsddfb0"),
|
|
1275
|
+
display_name: z.string(),
|
|
1276
|
+
description: z.string(),
|
|
1277
|
+
domain_id: z.string().optional(),
|
|
1278
|
+
created_by_id: z.string().optional(),
|
|
1279
|
+
updated_by_id: z.string().optional(),
|
|
1280
|
+
workspace_id: z.string(),
|
|
1281
|
+
project_id: z.string().optional(),
|
|
1282
|
+
}).transform((v) => {
|
|
1283
|
+
return remap$(v, {
|
|
1284
|
+
"display_name": "displayName",
|
|
1285
|
+
"domain_id": "domainId",
|
|
1286
|
+
"created_by_id": "createdById",
|
|
1287
|
+
"updated_by_id": "updatedById",
|
|
1288
|
+
"workspace_id": "workspaceId",
|
|
1289
|
+
"project_id": "projectId",
|
|
1290
|
+
});
|
|
1291
|
+
});
|
|
1292
|
+
|
|
1293
|
+
export function patchV2HumanEvalsIdResponseBody2FromJSON(
|
|
1294
|
+
jsonString: string,
|
|
1295
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody2, SDKValidationError> {
|
|
1296
|
+
return safeParse(
|
|
1297
|
+
jsonString,
|
|
1298
|
+
(x) => PatchV2HumanEvalsIdResponseBody2$inboundSchema.parse(JSON.parse(x)),
|
|
1299
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody2' from JSON`,
|
|
1300
|
+
);
|
|
1301
|
+
}
|
|
1302
|
+
|
|
1303
|
+
/** @internal */
|
|
1304
|
+
export const PatchV2HumanEvalsIdResponseBody1$inboundSchema: z.ZodType<
|
|
1305
|
+
PatchV2HumanEvalsIdResponseBody1,
|
|
1306
|
+
z.ZodTypeDef,
|
|
1307
|
+
unknown
|
|
1308
|
+
> = z.object({
|
|
1309
|
+
type: z.literal("boolean"),
|
|
1310
|
+
id: z.string(),
|
|
1311
|
+
key: z.string().default("orq_01knsddfay"),
|
|
1312
|
+
display_name: z.string(),
|
|
1313
|
+
description: z.string(),
|
|
1314
|
+
domain_id: z.string().optional(),
|
|
1315
|
+
created_by_id: z.string().optional(),
|
|
1316
|
+
updated_by_id: z.string().optional(),
|
|
1317
|
+
workspace_id: z.string(),
|
|
1318
|
+
project_id: z.string().optional(),
|
|
1319
|
+
}).transform((v) => {
|
|
1320
|
+
return remap$(v, {
|
|
1321
|
+
"display_name": "displayName",
|
|
1322
|
+
"domain_id": "domainId",
|
|
1323
|
+
"created_by_id": "createdById",
|
|
1324
|
+
"updated_by_id": "updatedById",
|
|
1325
|
+
"workspace_id": "workspaceId",
|
|
1326
|
+
"project_id": "projectId",
|
|
1327
|
+
});
|
|
1328
|
+
});
|
|
1329
|
+
|
|
1330
|
+
export function patchV2HumanEvalsIdResponseBody1FromJSON(
|
|
1331
|
+
jsonString: string,
|
|
1332
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody1, SDKValidationError> {
|
|
1333
|
+
return safeParse(
|
|
1334
|
+
jsonString,
|
|
1335
|
+
(x) => PatchV2HumanEvalsIdResponseBody1$inboundSchema.parse(JSON.parse(x)),
|
|
1336
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody1' from JSON`,
|
|
1337
|
+
);
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
/** @internal */
|
|
1341
|
+
export const PatchV2HumanEvalsIdResponseBody$inboundSchema: z.ZodType<
|
|
1342
|
+
PatchV2HumanEvalsIdResponseBody,
|
|
1343
|
+
z.ZodTypeDef,
|
|
1344
|
+
unknown
|
|
1345
|
+
> = z.union([
|
|
1346
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody1$inboundSchema),
|
|
1347
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody2$inboundSchema),
|
|
1348
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody3$inboundSchema),
|
|
1349
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody4$inboundSchema),
|
|
1350
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody5$inboundSchema),
|
|
1351
|
+
z.lazy(() => PatchV2HumanEvalsIdResponseBody6$inboundSchema),
|
|
1352
|
+
]);
|
|
1353
|
+
|
|
1354
|
+
export function patchV2HumanEvalsIdResponseBodyFromJSON(
|
|
1355
|
+
jsonString: string,
|
|
1356
|
+
): SafeParseResult<PatchV2HumanEvalsIdResponseBody, SDKValidationError> {
|
|
1357
|
+
return safeParse(
|
|
1358
|
+
jsonString,
|
|
1359
|
+
(x) => PatchV2HumanEvalsIdResponseBody$inboundSchema.parse(JSON.parse(x)),
|
|
1360
|
+
`Failed to parse 'PatchV2HumanEvalsIdResponseBody' from JSON`,
|
|
1361
|
+
);
|
|
1362
|
+
}
|