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.39.0';
export const version = '0.40.0';
35 changes: 35 additions & 0 deletions client/vertex-client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,21 @@ import {
HitsApi,
Oauth2Api,
OAuth2Token,
PartRenditionsApi,
PartRevisionInstancesApi,
PartRevisionsApi,
PartsApi,
PermissionGrantsApi,
PropertyEntriesApi,
SceneAlterationsApi,
SceneAnnotationsApi,
SceneItemOverridesApi,
SceneItemsApi,
ScenesApi,
SceneSynchronizationsApi,
SceneViewsApi,
SceneViewStatesApi,
SearchSessionsApi,
StreamKeysApi,
TranslationInspectionsApi,
UsersApi,
Expand Down Expand Up @@ -130,16 +135,21 @@ export class VertexClient {
public geometrySets: GeometrySetsApi;
public hits: HitsApi;
public oAuth2: Oauth2Api;
public partRenditions: PartRenditionsApi;
public partRevisions: PartRevisionsApi;
public partRevisionInstances: PartRevisionInstancesApi;
public parts: PartsApi;
public permissionGrantsApi: PermissionGrantsApi;
public propertyEntries: PropertyEntriesApi;
public sceneAlterations: SceneAlterationsApi;
public sceneAnnotations: SceneAnnotationsApi;
public sceneItemOverrides: SceneItemOverridesApi;
public sceneItems: SceneItemsApi;
public scenes: ScenesApi;
public sceneSynchronizations: SceneSynchronizationsApi;
public sceneViews: SceneViewsApi;
public sceneViewStates: SceneViewStatesApi;
public searchSessions: SearchSessionsApi;
public streamKeys: StreamKeysApi;
public translationInspections: TranslationInspectionsApi;
public users: UsersApi;
Expand Down Expand Up @@ -172,12 +182,27 @@ export class VertexClient {
this.files = new FilesApi(this.config, undefined, axiosInst);
this.geometrySets = new GeometrySetsApi(this.config, undefined, axiosInst);
this.hits = new HitsApi(this.config, undefined, axiosInst);
this.partRenditions = new PartRenditionsApi(
this.config,
undefined,
axiosInst
);
this.partRevisions = new PartRevisionsApi(
this.config,
undefined,
axiosInst
);
this.partRevisionInstances = new PartRevisionInstancesApi(
this.config,
undefined,
axiosInst
);
this.parts = new PartsApi(this.config, undefined, axiosInst);
this.permissionGrantsApi = new PermissionGrantsApi(
this.config,
undefined,
axiosInst
);
this.propertyEntries = new PropertyEntriesApi(
this.config,
undefined,
Expand All @@ -200,12 +225,22 @@ export class VertexClient {
);
this.sceneItems = new SceneItemsApi(this.config, undefined, axiosInst);
this.scenes = new ScenesApi(this.config, undefined, axiosInst);
this.sceneSynchronizations = new SceneSynchronizationsApi(
this.config,
undefined,
axiosInst
);
this.sceneViews = new SceneViewsApi(this.config, undefined, axiosInst);
this.sceneViewStates = new SceneViewStatesApi(
this.config,
undefined,
axiosInst
);
this.searchSessions = new SearchSessionsApi(
this.config,
undefined,
axiosInst
);
this.streamKeys = new StreamKeysApi(this.config, undefined, axiosInst);
this.translationInspections = new TranslationInspectionsApi(
this.config,
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.39.0",
"version": "0.40.0",
"description": "The Vertex REST API client for Node.js.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
Expand Down