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
2 changes: 1 addition & 1 deletion client/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = '0.33.1';
export const version = '0.33.2';
8 changes: 6 additions & 2 deletions client/vertex-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <support@vertexvis.com> (https://developer.vertexvis.com)",
Expand Down