@vertexvis/api-client-node 0.31.0 → 0.33.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 +970 -32
- package/dist/cjs/api.js +653 -40
- 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 +970 -32
- package/dist/esm/api.js +644 -35
- 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.33.0";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.
|
|
1
|
+
export const version = '0.33.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;
|
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
var _a;
|
|
11
11
|
import axios from 'axios';
|
|
12
|
-
import { AccountsApi, ApplicationsApi, BatchesApi, Configuration, ExportsApi, FilesApi, GeometrySetsApi, HitsApi, Oauth2Api, PartRevisionsApi, PartsApi, SceneAlterationsApi, SceneAnnotationsApi, SceneItemOverridesApi, SceneItemsApi, ScenesApi, SceneViewsApi, SceneViewStatesApi, StreamKeysApi, TranslationInspectionsApi, WebhookSubscriptionsApi, } from '../index';
|
|
12
|
+
import { AccountsApi, ApplicationsApi, BatchesApi, CollaborationContextsApi, Configuration, ExportsApi, FilesApi, GeometrySetsApi, HitsApi, Oauth2Api, PartRevisionsApi, PartsApi, SceneAlterationsApi, SceneAnnotationsApi, SceneItemOverridesApi, SceneItemsApi, ScenesApi, SceneViewsApi, SceneViewStatesApi, StreamKeysApi, TranslationInspectionsApi, UsersApi, WebhookSubscriptionsApi, } from '../index';
|
|
13
13
|
import { createToken, isFailure, nowEpochMs, prettyJson, } from './index';
|
|
14
14
|
import { version } from './version';
|
|
15
15
|
const TenMinsInMs = 600000;
|
|
@@ -73,6 +73,7 @@ export class VertexClient {
|
|
|
73
73
|
this.accounts = new AccountsApi(this.config, undefined, axiosInst);
|
|
74
74
|
this.applications = new ApplicationsApi(this.config, undefined, axiosInst);
|
|
75
75
|
this.batches = new BatchesApi(this.config, undefined, axiosInst);
|
|
76
|
+
this.collaborationContexts = new CollaborationContextsApi(this.config, undefined, axiosInst);
|
|
76
77
|
this.exports = new ExportsApi(this.config, undefined, axiosInst);
|
|
77
78
|
this.files = new FilesApi(this.config, undefined, axiosInst);
|
|
78
79
|
this.geometrySets = new GeometrySetsApi(this.config, undefined, axiosInst);
|
|
@@ -88,6 +89,7 @@ export class VertexClient {
|
|
|
88
89
|
this.sceneViewStates = new SceneViewStatesApi(this.config, undefined, axiosInst);
|
|
89
90
|
this.streamKeys = new StreamKeysApi(this.config, undefined, axiosInst);
|
|
90
91
|
this.translationInspections = new TranslationInspectionsApi(this.config, undefined, axiosInst);
|
|
92
|
+
this.users = new UsersApi(this.config, undefined, axiosInst);
|
|
91
93
|
this.webhookSubscriptions = new WebhookSubscriptionsApi(this.config, undefined, axiosInst);
|
|
92
94
|
}
|
|
93
95
|
}
|
package/package.json
CHANGED