Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
114 changes: 57 additions & 57 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
{
"name": "@rapidaai/nodejs",
"version": "1.1.1-beta.0",
"description": "NodeJS sdk for rapidaai platform",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rapidaai/rapida-nodejs.git"
},
"keywords": [
"rapida"
],
"author": "Prashant Srivastav <prashant@rapida.ai>",
"bugs": {
"url": "https://github.com/rapidaai/rapida-nodejs/issues"
},
"homepage": "https://github.com/rapidaai/rapida-nodejs#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^24.0.7",
"grpc-tools": "^1.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-proto": "^2.7.5",
"ts-protoc-gen": "^0.15.1-pre.a71b34e",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@bufbuild/protobuf": "^2.9.0",
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@types/google-protobuf": "^3.15.12",
"google-protobuf": "^3.21.4",
"moment": "^2.30.1"
}
"name": "@rapidaai/nodejs",
"version": "1.1.1-beta.1",
"description": "NodeJS sdk for rapidaai platform",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/rapidaai/rapida-nodejs.git"
},
"keywords": [
"rapida"
],
"author": "Prashant Srivastav <prashant@rapida.ai>",
"bugs": {
"url": "https://github.com/rapidaai/rapida-nodejs/issues"
},
"homepage": "https://github.com/rapidaai/rapida-nodejs#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^24.0.7",
"grpc-tools": "^1.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-proto": "^2.7.5",
"ts-protoc-gen": "^0.15.1-pre.a71b34e",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"dependencies": {
"@bufbuild/protobuf": "^2.9.0",
"@grpc/grpc-js": "^1.13.4",
"@grpc/proto-loader": "^0.7.15",
"@types/google-protobuf": "^3.15.12",
"google-protobuf": "^3.21.4",
"moment": "^2.30.1"
}
}
11 changes: 3 additions & 8 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,7 @@
getClientInfo,
WithClientContext,
} from "@/rapida/clients/index";
export {
GeneralConnect,
GetConnectorFiles,
} from "@/rapida/clients/connect";
export { GeneralConnect, GetConnectorFiles } from "@/rapida/clients/connect";
export {
CreateOrganization,
UpdateOrganization,
Expand Down Expand Up @@ -246,10 +243,7 @@
/* Proto Message Exports - AgentKit */
/* ========================================================================== */

export {
TalkInput,
TalkOutput,
} from "@/rapida/clients/protos/agentkit_pb";
export { TalkInput, TalkOutput } from "@/rapida/clients/protos/agentkit_pb";

/* ========================================================================== */
/* Proto Message Exports - Observability API */
Expand All @@ -272,6 +266,7 @@
export {
Assistant,
CreateAssistantRequest,
CreateAssistantProviderRequest,

Check failure on line 269 in src/index.ts

View workflow job for this annotation

GitHub Actions / build-and-publish

'"@/rapida/clients/protos/assistant-api_pb"' has no exported member named 'CreateAssistantProviderRequest'. Did you mean 'CreateAssistantRequest'?
CreateAssistantTagRequest,
GetAssistantRequest,
DeleteAssistantRequest,
Expand Down
Loading