From 05a3c1b7af54aabb2c6133d2bcbdbb47b52c2c19 Mon Sep 17 00:00:00 2001 From: Jeff Murray Date: Mon, 18 May 2026 12:59:14 -0500 Subject: [PATCH 1/2] Add documents api to vertex client --- client/vertex-client.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/vertex-client.ts b/client/vertex-client.ts index ddff610..36e7369 100644 --- a/client/vertex-client.ts +++ b/client/vertex-client.ts @@ -6,6 +6,7 @@ import { BatchesApi, CollaborationContextsApi, Configuration, + DocumentsApi, ExportsApi, FilesApi, GeometrySetsApi, @@ -130,6 +131,7 @@ export class VertexClient { public applications: ApplicationsApi; public batches: BatchesApi; public collaborationContexts: CollaborationContextsApi; + public documents: DocumentsApi; public exports: ExportsApi; public files: FilesApi; public geometrySets: GeometrySetsApi; @@ -178,6 +180,7 @@ export class VertexClient { undefined, axiosInst ); + this.documents = new DocumentsApi(this.config, undefined, axiosInst); this.exports = new ExportsApi(this.config, undefined, axiosInst); this.files = new FilesApi(this.config, undefined, axiosInst); this.geometrySets = new GeometrySetsApi(this.config, undefined, axiosInst); From 143645d05837627546f9727d9ea6a50135f34235 Mon Sep 17 00:00:00 2001 From: Jeff Murray Date: Mon, 18 May 2026 12:59:44 -0500 Subject: [PATCH 2/2] v0.42.1 --- client/version.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client/version.ts b/client/version.ts index 76e8f17..ad24d60 100644 --- a/client/version.ts +++ b/client/version.ts @@ -1 +1 @@ -export const version = '0.42.0'; +export const version = '0.42.1'; diff --git a/package.json b/package.json index 86f241d..f87301c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vertexvis/api-client-node", - "version": "0.42.0", + "version": "0.42.1", "description": "The Vertex REST API client for Node.js.", "license": "MIT", "author": "Vertex Developers (https://developer.vertexvis.com)",