From 71434dec4870a959bd5c03113e0bd9da1e3b411b Mon Sep 17 00:00:00 2001 From: Chaos Pattern Date: Tue, 18 Aug 2026 17:31:29 +0530 Subject: [PATCH] chore: exporting create assistant provider request --- package.json | 114 +++++++++++++++++++++++++-------------------------- src/index.ts | 11 ++--- 2 files changed, 60 insertions(+), 65 deletions(-) diff --git a/package.json b/package.json index 4226671..783a789 100644 --- a/package.json +++ b/package.json @@ -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 ", - "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 ", + "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" + } } diff --git a/src/index.ts b/src/index.ts index 00fff2f..df244a8 100644 --- a/src/index.ts +++ b/src/index.ts @@ -109,10 +109,7 @@ export { getClientInfo, WithClientContext, } from "@/rapida/clients/index"; -export { - GeneralConnect, - GetConnectorFiles, -} from "@/rapida/clients/connect"; +export { GeneralConnect, GetConnectorFiles } from "@/rapida/clients/connect"; export { CreateOrganization, UpdateOrganization, @@ -246,10 +243,7 @@ export { /* 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 */ @@ -272,6 +266,7 @@ export { export { Assistant, CreateAssistantRequest, + CreateAssistantProviderRequest, CreateAssistantTagRequest, GetAssistantRequest, DeleteAssistantRequest,