@vertexvis/api-client-node 0.30.3 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/api.d.ts +2424 -298
- package/dist/cjs/api.js +1575 -55
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/cjs/client/vertex-client.d.ts +3 -1
- package/dist/cjs/client/vertex-client.js +2 -0
- package/dist/esm/api.d.ts +2424 -298
- package/dist/esm/api.js +1550 -51
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/dist/esm/client/vertex-client.d.ts +3 -1
- package/dist/esm/client/vertex-client.js +3 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.
|
|
1
|
+
export declare const version = "0.32.0";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AxiosInstance, AxiosRequestConfig } from 'axios';
|
|
2
|
-
import { AccountsApi, ApplicationsApi, BatchesApi, Configuration, ExportsApi, FilesApi, GeometrySetsApi, HitsApi, Oauth2Api, OAuth2Token, PartRevisionsApi, PartsApi, SceneAlterationsApi, SceneAnnotationsApi, SceneItemOverridesApi, SceneItemsApi, ScenesApi, SceneViewsApi, SceneViewStatesApi, StreamKeysApi, TranslationInspectionsApi, WebhookSubscriptionsApi } from '../index';
|
|
2
|
+
import { AccountsApi, ApplicationsApi, BatchesApi, CollaborationContextsApi, Configuration, ExportsApi, FilesApi, GeometrySetsApi, HitsApi, Oauth2Api, OAuth2Token, PartRevisionsApi, PartsApi, SceneAlterationsApi, SceneAnnotationsApi, SceneItemOverridesApi, SceneItemsApi, ScenesApi, SceneViewsApi, SceneViewStatesApi, StreamKeysApi, TranslationInspectionsApi, UsersApi, WebhookSubscriptionsApi } from '../index';
|
|
3
3
|
import { BasePath } from './index';
|
|
4
4
|
/**
|
|
5
5
|
* Static `build` function arguments.
|
|
@@ -72,6 +72,7 @@ export declare class VertexClient {
|
|
|
72
72
|
accounts: AccountsApi;
|
|
73
73
|
applications: ApplicationsApi;
|
|
74
74
|
batches: BatchesApi;
|
|
75
|
+
collaborationContexts: CollaborationContextsApi;
|
|
75
76
|
exports: ExportsApi;
|
|
76
77
|
files: FilesApi;
|
|
77
78
|
geometrySets: GeometrySetsApi;
|
|
@@ -88,6 +89,7 @@ export declare class VertexClient {
|
|
|
88
89
|
sceneViewStates: SceneViewStatesApi;
|
|
89
90
|
streamKeys: StreamKeysApi;
|
|
90
91
|
translationInspections: TranslationInspectionsApi;
|
|
92
|
+
users: UsersApi;
|
|
91
93
|
webhookSubscriptions: WebhookSubscriptionsApi;
|
|
92
94
|
axiosInstance: AxiosInstance;
|
|
93
95
|
config: Configuration;
|
|
@@ -79,6 +79,7 @@ class VertexClient {
|
|
|
79
79
|
this.accounts = new index_1.AccountsApi(this.config, undefined, axiosInst);
|
|
80
80
|
this.applications = new index_1.ApplicationsApi(this.config, undefined, axiosInst);
|
|
81
81
|
this.batches = new index_1.BatchesApi(this.config, undefined, axiosInst);
|
|
82
|
+
this.collaborationContexts = new index_1.CollaborationContextsApi(this.config, undefined, axiosInst);
|
|
82
83
|
this.exports = new index_1.ExportsApi(this.config, undefined, axiosInst);
|
|
83
84
|
this.files = new index_1.FilesApi(this.config, undefined, axiosInst);
|
|
84
85
|
this.geometrySets = new index_1.GeometrySetsApi(this.config, undefined, axiosInst);
|
|
@@ -94,6 +95,7 @@ class VertexClient {
|
|
|
94
95
|
this.sceneViewStates = new index_1.SceneViewStatesApi(this.config, undefined, axiosInst);
|
|
95
96
|
this.streamKeys = new index_1.StreamKeysApi(this.config, undefined, axiosInst);
|
|
96
97
|
this.translationInspections = new index_1.TranslationInspectionsApi(this.config, undefined, axiosInst);
|
|
98
|
+
this.users = new index_1.UsersApi(this.config, undefined, axiosInst);
|
|
97
99
|
this.webhookSubscriptions = new index_1.WebhookSubscriptionsApi(this.config, undefined, axiosInst);
|
|
98
100
|
}
|
|
99
101
|
}
|