@vertexvis/api-client-node 0.17.1 → 0.18.1
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 +58 -4
- package/dist/cjs/api.js +10 -7
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +58 -4
- package/dist/esm/api.js +7 -4
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +2 -2
package/dist/cjs/api.d.ts
CHANGED
|
@@ -871,6 +871,12 @@ export interface CreateExportRequestDataAttributes {
|
|
|
871
871
|
* @memberof CreateExportRequestDataAttributes
|
|
872
872
|
*/
|
|
873
873
|
config: CADExportConfig;
|
|
874
|
+
/**
|
|
875
|
+
* Optional file name to use for the resulting export
|
|
876
|
+
* @type {string}
|
|
877
|
+
* @memberof CreateExportRequestDataAttributes
|
|
878
|
+
*/
|
|
879
|
+
fileName?: string;
|
|
874
880
|
}
|
|
875
881
|
/**
|
|
876
882
|
*
|
|
@@ -884,6 +890,12 @@ export interface CreateExportRequestDataRelationships {
|
|
|
884
890
|
* @memberof CreateExportRequestDataRelationships
|
|
885
891
|
*/
|
|
886
892
|
source: ExportRelationship;
|
|
893
|
+
/**
|
|
894
|
+
*
|
|
895
|
+
* @type {ExportStateRelationship}
|
|
896
|
+
* @memberof CreateExportRequestDataRelationships
|
|
897
|
+
*/
|
|
898
|
+
state?: ExportStateRelationship;
|
|
887
899
|
}
|
|
888
900
|
/**
|
|
889
901
|
*
|
|
@@ -1972,6 +1984,42 @@ export declare const ExportRelationshipDataTypeEnum: {
|
|
|
1972
1984
|
readonly Scene: "scene";
|
|
1973
1985
|
};
|
|
1974
1986
|
export declare type ExportRelationshipDataTypeEnum = typeof ExportRelationshipDataTypeEnum[keyof typeof ExportRelationshipDataTypeEnum];
|
|
1987
|
+
/**
|
|
1988
|
+
* Relationship to an `export`.
|
|
1989
|
+
* @export
|
|
1990
|
+
* @interface ExportStateRelationship
|
|
1991
|
+
*/
|
|
1992
|
+
export interface ExportStateRelationship {
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @type {ExportStateRelationshipData}
|
|
1996
|
+
* @memberof ExportStateRelationship
|
|
1997
|
+
*/
|
|
1998
|
+
data: ExportStateRelationshipData;
|
|
1999
|
+
}
|
|
2000
|
+
/**
|
|
2001
|
+
*
|
|
2002
|
+
* @export
|
|
2003
|
+
* @interface ExportStateRelationshipData
|
|
2004
|
+
*/
|
|
2005
|
+
export interface ExportStateRelationshipData {
|
|
2006
|
+
/**
|
|
2007
|
+
* Resource object type.
|
|
2008
|
+
* @type {string}
|
|
2009
|
+
* @memberof ExportStateRelationshipData
|
|
2010
|
+
*/
|
|
2011
|
+
type: ExportStateRelationshipDataTypeEnum;
|
|
2012
|
+
/**
|
|
2013
|
+
* ID of the resource.
|
|
2014
|
+
* @type {string}
|
|
2015
|
+
* @memberof ExportStateRelationshipData
|
|
2016
|
+
*/
|
|
2017
|
+
id: string;
|
|
2018
|
+
}
|
|
2019
|
+
export declare const ExportStateRelationshipDataTypeEnum: {
|
|
2020
|
+
readonly SceneViewState: "scene-view-state";
|
|
2021
|
+
};
|
|
2022
|
+
export declare type ExportStateRelationshipDataTypeEnum = typeof ExportStateRelationshipDataTypeEnum[keyof typeof ExportStateRelationshipDataTypeEnum];
|
|
1975
2023
|
/**
|
|
1976
2024
|
*
|
|
1977
2025
|
* @export
|
|
@@ -4242,6 +4290,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4242
4290
|
* @memberof SceneViewStateDataAttributes
|
|
4243
4291
|
*/
|
|
4244
4292
|
featureLines?: FeatureLines;
|
|
4293
|
+
/**
|
|
4294
|
+
*
|
|
4295
|
+
* @type {boolean}
|
|
4296
|
+
* @memberof SceneViewStateDataAttributes
|
|
4297
|
+
*/
|
|
4298
|
+
noDefaultLights?: boolean;
|
|
4245
4299
|
}
|
|
4246
4300
|
/**
|
|
4247
4301
|
*
|
|
@@ -7123,7 +7177,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
7123
7177
|
*/
|
|
7124
7178
|
renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7125
7179
|
/**
|
|
7126
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7180
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7127
7181
|
* @param {string} id The `part-revision` ID.
|
|
7128
7182
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7129
7183
|
* @param {*} [options] Override http request option.
|
|
@@ -7188,7 +7242,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
7188
7242
|
*/
|
|
7189
7243
|
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
7190
7244
|
/**
|
|
7191
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7245
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7192
7246
|
* @param {string} id The `part-revision` ID.
|
|
7193
7247
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7194
7248
|
* @param {*} [options] Override http request option.
|
|
@@ -7253,7 +7307,7 @@ export declare const PartRevisionsApiFactory: (configuration?: Configuration | u
|
|
|
7253
7307
|
*/
|
|
7254
7308
|
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: any): AxiosPromise<any>;
|
|
7255
7309
|
/**
|
|
7256
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7310
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7257
7311
|
* @param {string} id The `part-revision` ID.
|
|
7258
7312
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7259
7313
|
* @param {*} [options] Override http request option.
|
|
@@ -7489,7 +7543,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7489
7543
|
*/
|
|
7490
7544
|
renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
7491
7545
|
/**
|
|
7492
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7546
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7493
7547
|
* @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
|
|
7494
7548
|
* @param {*} [options] Override http request option.
|
|
7495
7549
|
* @throws {RequiredError}
|
package/dist/cjs/api.js
CHANGED
|
@@ -25,9 +25,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
25
25
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
26
|
};
|
|
27
27
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.WebhookSubscriptionsApi = exports.WebhookSubscriptionsApiFactory = exports.WebhookSubscriptionsApiFp = exports.WebhookSubscriptionsApiAxiosParamCreator = exports.TranslationInspectionsApi = exports.TranslationInspectionsApiFactory = void 0;
|
|
28
|
+
exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiAxiosParamCreator = exports.ExportsApi = exports.ExportsApiFactory = exports.ExportsApiFp = exports.ExportsApiAxiosParamCreator = exports.BatchesApi = exports.BatchesApiFactory = exports.BatchesApiFp = exports.BatchesApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.AccountsApi = exports.AccountsApiFactory = exports.AccountsApiFp = exports.AccountsApiAxiosParamCreator = exports.WebhookSubscriptionDataAttributesStatusEnum = exports.WebhookEventDataRelationshipsOwnerDataTypeEnum = exports.UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = exports.UpdateSceneRequestDataAttributesStateEnum = exports.UpdateAccountRequestDataAttributesStatusEnum = exports.SelectOperationTypeEnum = exports.SceneViewStateRelationshipDataTypeEnum = exports.SceneViewRelationshipDataTypeEnum = exports.SceneRelationshipDataTypeEnum = exports.SceneItemRelationshipDataTypeEnum = exports.QueryByIdDataAttributesTypeEnum = exports.QueryByIdDataTypeEnum = exports.QueryByCollectionDataAttributesTypeEnum = exports.QueryByCollectionDataTypeEnum = exports.QueryAll = exports.PartRelationshipDataTypeEnum = exports.PartDataRelationshipsPartRevisionsTypeEnum = exports.MetadataValueTypeEnum = exports.GeometrySetRelationshipDataTypeEnum = exports.FileRelationshipDataTypeEnum = exports.ExportStateRelationshipDataTypeEnum = exports.ExportRelationshipDataTypeEnum = exports.DeselectOperationTypeEnum = exports.ClearTransformOperationTypeEnum = exports.ClearMaterialOperationTypeEnum = exports.ChangeVisibilityOperationTypeEnum = exports.ChangeTransformOperationTypeEnum = exports.ChangeMaterialOperationTypeEnum = exports.CameraFitTypeEnum = exports.BatchOperationRefTypeEnum = exports.BatchOperationOpEnum = void 0;
|
|
29
|
+
exports.TranslationInspectionsApiAxiosParamCreator = exports.StreamKeysApi = exports.StreamKeysApiFactory = exports.StreamKeysApiFp = exports.StreamKeysApiAxiosParamCreator = exports.ScenesApi = exports.ScenesApiFactory = exports.ScenesApiFp = exports.ScenesApiAxiosParamCreator = exports.SceneViewsApi = exports.SceneViewsApiFactory = exports.SceneViewsApiFp = exports.SceneViewsApiAxiosParamCreator = exports.SceneViewStatesApi = exports.SceneViewStatesApiFactory = exports.SceneViewStatesApiFp = exports.SceneViewStatesApiAxiosParamCreator = exports.SceneItemsApi = exports.SceneItemsApiFactory = exports.SceneItemsApiFp = exports.SceneItemsApiAxiosParamCreator = exports.SceneItemOverridesApi = exports.SceneItemOverridesApiFactory = exports.SceneItemOverridesApiFp = exports.SceneItemOverridesApiAxiosParamCreator = exports.SceneAlterationsApi = exports.SceneAlterationsApiFactory = exports.SceneAlterationsApiFp = exports.SceneAlterationsApiAxiosParamCreator = exports.PartsApi = exports.PartsApiFactory = exports.PartsApiFp = exports.PartsApiAxiosParamCreator = exports.PartRevisionsApi = exports.PartRevisionsApiFactory = exports.PartRevisionsApiFp = exports.PartRevisionsApiAxiosParamCreator = exports.Oauth2Api = exports.Oauth2ApiFactory = exports.Oauth2ApiFp = exports.Oauth2ApiAxiosParamCreator = exports.HitsApi = exports.HitsApiFactory = exports.HitsApiFp = exports.HitsApiAxiosParamCreator = exports.GeometrySetsApi = exports.GeometrySetsApiFactory = exports.GeometrySetsApiFp = exports.GeometrySetsApiAxiosParamCreator = exports.FilesApi = void 0;
|
|
30
|
+
exports.WebhookSubscriptionsApi = exports.WebhookSubscriptionsApiFactory = exports.WebhookSubscriptionsApiFp = exports.WebhookSubscriptionsApiAxiosParamCreator = exports.TranslationInspectionsApi = exports.TranslationInspectionsApiFactory = exports.TranslationInspectionsApiFp = void 0;
|
|
31
31
|
const axios_1 = __importDefault(require("axios"));
|
|
32
32
|
// Some imports not used depending on template conditions
|
|
33
33
|
// @ts-ignore
|
|
@@ -65,6 +65,9 @@ exports.DeselectOperationTypeEnum = {
|
|
|
65
65
|
exports.ExportRelationshipDataTypeEnum = {
|
|
66
66
|
Scene: 'scene',
|
|
67
67
|
};
|
|
68
|
+
exports.ExportStateRelationshipDataTypeEnum = {
|
|
69
|
+
SceneViewState: 'scene-view-state',
|
|
70
|
+
};
|
|
68
71
|
exports.FileRelationshipDataTypeEnum = {
|
|
69
72
|
File: 'file',
|
|
70
73
|
};
|
|
@@ -2777,7 +2780,7 @@ const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2777
2780
|
};
|
|
2778
2781
|
}),
|
|
2779
2782
|
/**
|
|
2780
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2783
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2781
2784
|
* @param {string} id The `part-revision` ID.
|
|
2782
2785
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2783
2786
|
* @param {*} [options] Override http request option.
|
|
@@ -2898,7 +2901,7 @@ const PartRevisionsApiFp = function (configuration) {
|
|
|
2898
2901
|
});
|
|
2899
2902
|
},
|
|
2900
2903
|
/**
|
|
2901
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2904
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2902
2905
|
* @param {string} id The `part-revision` ID.
|
|
2903
2906
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2904
2907
|
* @param {*} [options] Override http request option.
|
|
@@ -2992,7 +2995,7 @@ const PartRevisionsApiFactory = function (configuration, basePath, axios) {
|
|
|
2992
2995
|
.then((request) => request(axios, basePath));
|
|
2993
2996
|
},
|
|
2994
2997
|
/**
|
|
2995
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2998
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2996
2999
|
* @param {string} id The `part-revision` ID.
|
|
2997
3000
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2998
3001
|
* @param {*} [options] Override http request option.
|
|
@@ -3074,7 +3077,7 @@ class PartRevisionsApi extends base_1.BaseAPI {
|
|
|
3074
3077
|
.then((request) => request(this.axios, this.basePath));
|
|
3075
3078
|
}
|
|
3076
3079
|
/**
|
|
3077
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
3080
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
3078
3081
|
* @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
|
|
3079
3082
|
* @param {*} [options] Override http request option.
|
|
3080
3083
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.
|
|
1
|
+
export declare const version = "0.18.1";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -871,6 +871,12 @@ export interface CreateExportRequestDataAttributes {
|
|
|
871
871
|
* @memberof CreateExportRequestDataAttributes
|
|
872
872
|
*/
|
|
873
873
|
config: CADExportConfig;
|
|
874
|
+
/**
|
|
875
|
+
* Optional file name to use for the resulting export
|
|
876
|
+
* @type {string}
|
|
877
|
+
* @memberof CreateExportRequestDataAttributes
|
|
878
|
+
*/
|
|
879
|
+
fileName?: string;
|
|
874
880
|
}
|
|
875
881
|
/**
|
|
876
882
|
*
|
|
@@ -884,6 +890,12 @@ export interface CreateExportRequestDataRelationships {
|
|
|
884
890
|
* @memberof CreateExportRequestDataRelationships
|
|
885
891
|
*/
|
|
886
892
|
source: ExportRelationship;
|
|
893
|
+
/**
|
|
894
|
+
*
|
|
895
|
+
* @type {ExportStateRelationship}
|
|
896
|
+
* @memberof CreateExportRequestDataRelationships
|
|
897
|
+
*/
|
|
898
|
+
state?: ExportStateRelationship;
|
|
887
899
|
}
|
|
888
900
|
/**
|
|
889
901
|
*
|
|
@@ -1972,6 +1984,42 @@ export declare const ExportRelationshipDataTypeEnum: {
|
|
|
1972
1984
|
readonly Scene: "scene";
|
|
1973
1985
|
};
|
|
1974
1986
|
export declare type ExportRelationshipDataTypeEnum = typeof ExportRelationshipDataTypeEnum[keyof typeof ExportRelationshipDataTypeEnum];
|
|
1987
|
+
/**
|
|
1988
|
+
* Relationship to an `export`.
|
|
1989
|
+
* @export
|
|
1990
|
+
* @interface ExportStateRelationship
|
|
1991
|
+
*/
|
|
1992
|
+
export interface ExportStateRelationship {
|
|
1993
|
+
/**
|
|
1994
|
+
*
|
|
1995
|
+
* @type {ExportStateRelationshipData}
|
|
1996
|
+
* @memberof ExportStateRelationship
|
|
1997
|
+
*/
|
|
1998
|
+
data: ExportStateRelationshipData;
|
|
1999
|
+
}
|
|
2000
|
+
/**
|
|
2001
|
+
*
|
|
2002
|
+
* @export
|
|
2003
|
+
* @interface ExportStateRelationshipData
|
|
2004
|
+
*/
|
|
2005
|
+
export interface ExportStateRelationshipData {
|
|
2006
|
+
/**
|
|
2007
|
+
* Resource object type.
|
|
2008
|
+
* @type {string}
|
|
2009
|
+
* @memberof ExportStateRelationshipData
|
|
2010
|
+
*/
|
|
2011
|
+
type: ExportStateRelationshipDataTypeEnum;
|
|
2012
|
+
/**
|
|
2013
|
+
* ID of the resource.
|
|
2014
|
+
* @type {string}
|
|
2015
|
+
* @memberof ExportStateRelationshipData
|
|
2016
|
+
*/
|
|
2017
|
+
id: string;
|
|
2018
|
+
}
|
|
2019
|
+
export declare const ExportStateRelationshipDataTypeEnum: {
|
|
2020
|
+
readonly SceneViewState: "scene-view-state";
|
|
2021
|
+
};
|
|
2022
|
+
export declare type ExportStateRelationshipDataTypeEnum = typeof ExportStateRelationshipDataTypeEnum[keyof typeof ExportStateRelationshipDataTypeEnum];
|
|
1975
2023
|
/**
|
|
1976
2024
|
*
|
|
1977
2025
|
* @export
|
|
@@ -4242,6 +4290,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4242
4290
|
* @memberof SceneViewStateDataAttributes
|
|
4243
4291
|
*/
|
|
4244
4292
|
featureLines?: FeatureLines;
|
|
4293
|
+
/**
|
|
4294
|
+
*
|
|
4295
|
+
* @type {boolean}
|
|
4296
|
+
* @memberof SceneViewStateDataAttributes
|
|
4297
|
+
*/
|
|
4298
|
+
noDefaultLights?: boolean;
|
|
4245
4299
|
}
|
|
4246
4300
|
/**
|
|
4247
4301
|
*
|
|
@@ -7123,7 +7177,7 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
7123
7177
|
*/
|
|
7124
7178
|
renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7125
7179
|
/**
|
|
7126
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7180
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7127
7181
|
* @param {string} id The `part-revision` ID.
|
|
7128
7182
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7129
7183
|
* @param {*} [options] Override http request option.
|
|
@@ -7188,7 +7242,7 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
7188
7242
|
*/
|
|
7189
7243
|
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
7190
7244
|
/**
|
|
7191
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7245
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7192
7246
|
* @param {string} id The `part-revision` ID.
|
|
7193
7247
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7194
7248
|
* @param {*} [options] Override http request option.
|
|
@@ -7253,7 +7307,7 @@ export declare const PartRevisionsApiFactory: (configuration?: Configuration | u
|
|
|
7253
7307
|
*/
|
|
7254
7308
|
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, cameraPerspectivePosition?: Vector3 | undefined, cameraPerspectiveLookAt?: Vector3 | undefined, cameraPerspectiveUp?: Vector3 | undefined, cameraOrthographicViewVector?: Vector3 | undefined, cameraOrthographicLookAt?: Vector3 | undefined, cameraOrthographicUp?: Vector3 | undefined, cameraOrthographicFovHeight?: number | undefined, options?: any): AxiosPromise<any>;
|
|
7255
7309
|
/**
|
|
7256
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7310
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7257
7311
|
* @param {string} id The `part-revision` ID.
|
|
7258
7312
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
7259
7313
|
* @param {*} [options] Override http request option.
|
|
@@ -7489,7 +7543,7 @@ export declare class PartRevisionsApi extends BaseAPI {
|
|
|
7489
7543
|
*/
|
|
7490
7544
|
renderPartRevision(requestParameters: PartRevisionsApiRenderPartRevisionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any>>;
|
|
7491
7545
|
/**
|
|
7492
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
7546
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
7493
7547
|
* @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
|
|
7494
7548
|
* @param {*} [options] Override http request option.
|
|
7495
7549
|
* @throws {RequiredError}
|
package/dist/esm/api.js
CHANGED
|
@@ -57,6 +57,9 @@ export const DeselectOperationTypeEnum = {
|
|
|
57
57
|
export const ExportRelationshipDataTypeEnum = {
|
|
58
58
|
Scene: 'scene',
|
|
59
59
|
};
|
|
60
|
+
export const ExportStateRelationshipDataTypeEnum = {
|
|
61
|
+
SceneViewState: 'scene-view-state',
|
|
62
|
+
};
|
|
60
63
|
export const FileRelationshipDataTypeEnum = {
|
|
61
64
|
File: 'file',
|
|
62
65
|
};
|
|
@@ -2737,7 +2740,7 @@ export const PartRevisionsApiAxiosParamCreator = function (configuration) {
|
|
|
2737
2740
|
};
|
|
2738
2741
|
}),
|
|
2739
2742
|
/**
|
|
2740
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2743
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2741
2744
|
* @param {string} id The `part-revision` ID.
|
|
2742
2745
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2743
2746
|
* @param {*} [options] Override http request option.
|
|
@@ -2857,7 +2860,7 @@ export const PartRevisionsApiFp = function (configuration) {
|
|
|
2857
2860
|
});
|
|
2858
2861
|
},
|
|
2859
2862
|
/**
|
|
2860
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2863
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2861
2864
|
* @param {string} id The `part-revision` ID.
|
|
2862
2865
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2863
2866
|
* @param {*} [options] Override http request option.
|
|
@@ -2950,7 +2953,7 @@ export const PartRevisionsApiFactory = function (configuration, basePath, axios)
|
|
|
2950
2953
|
.then((request) => request(axios, basePath));
|
|
2951
2954
|
},
|
|
2952
2955
|
/**
|
|
2953
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
2956
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
2954
2957
|
* @param {string} id The `part-revision` ID.
|
|
2955
2958
|
* @param {UpdatePartRevisionRequest} updatePartRevisionRequest
|
|
2956
2959
|
* @param {*} [options] Override http request option.
|
|
@@ -3031,7 +3034,7 @@ export class PartRevisionsApi extends BaseAPI {
|
|
|
3031
3034
|
.then((request) => request(this.axios, this.basePath));
|
|
3032
3035
|
}
|
|
3033
3036
|
/**
|
|
3034
|
-
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
3037
|
+
* Update a `part-revision`. Note that metadata updates are eventually consistent and will not update existing scenes. To view updated metadata within a scene, a new scene must be created or the updated part-revision must be removed and re-added to an existing scene.
|
|
3035
3038
|
* @param {PartRevisionsApiUpdatePartRevisionRequest} requestParameters Request parameters.
|
|
3036
3039
|
* @param {*} [options] Override http request option.
|
|
3037
3040
|
* @throws {RequiredError}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.
|
|
1
|
+
export declare const version = "0.18.1";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.
|
|
1
|
+
export const version = '0.18.1';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertexvis/api-client-node",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.18.1",
|
|
4
4
|
"description": "The Vertex REST API client for Node.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"typescript"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"axios": "^0.
|
|
36
|
+
"axios": "^0.27.2",
|
|
37
37
|
"p-limit": "^3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|