diff --git a/client/version.ts b/client/version.ts index 2c796a6..fcde66c 100644 --- a/client/version.ts +++ b/client/version.ts @@ -1 +1 @@ -export const version = '0.33.1'; +export const version = '0.33.2'; diff --git a/client/vertex-client.ts b/client/vertex-client.ts index 6ea1b5c..d729a96 100644 --- a/client/vertex-client.ts +++ b/client/vertex-client.ts @@ -132,7 +132,7 @@ export class VertexClient { public oAuth2: Oauth2Api; public partRevisions: PartRevisionsApi; public parts: PartsApi; - public properties: PropertyEntriesApi; + public propertyEntries: PropertyEntriesApi; public sceneAlterations: SceneAlterationsApi; public sceneAnnotations: SceneAnnotationsApi; public sceneItemOverrides: SceneItemOverridesApi; @@ -178,7 +178,11 @@ export class VertexClient { axiosInst ); this.parts = new PartsApi(this.config, undefined, axiosInst); - this.properties = new PropertyEntriesApi(this.config, undefined, axiosInst); + this.propertyEntries = new PropertyEntriesApi( + this.config, + undefined, + axiosInst + ); this.sceneAlterations = new SceneAlterationsApi( this.config, undefined, diff --git a/package.json b/package.json index 9d9251f..624ec5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vertexvis/api-client-node", - "version": "0.33.1", + "version": "0.33.2", "description": "The Vertex REST API client for Node.js.", "license": "MIT", "author": "Vertex Developers (https://developer.vertexvis.com)",