diff --git a/client/version.ts b/client/version.ts index cfad1a3..6994038 100644 --- a/client/version.ts +++ b/client/version.ts @@ -1 +1 @@ -export const version = '0.39.0'; +export const version = '0.40.0'; diff --git a/client/vertex-client.ts b/client/vertex-client.ts index d729a96..ddff610 100644 --- a/client/vertex-client.ts +++ b/client/vertex-client.ts @@ -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, @@ -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; @@ -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, @@ -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, diff --git a/package.json b/package.json index 2f4c3c7..4b34fc6 100644 --- a/package.json +++ b/package.json @@ -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 (https://developer.vertexvis.com)",