@vertexvis/api-client-node 0.17.0 → 0.17.3
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 +73 -0
- package/dist/cjs/api.js +6 -3
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +73 -0
- package/dist/esm/api.js +3 -0
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/package.json +1 -1
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
|
|
@@ -2001,6 +2049,25 @@ export interface Failure {
|
|
|
2001
2049
|
[key: string]: Link;
|
|
2002
2050
|
};
|
|
2003
2051
|
}
|
|
2052
|
+
/**
|
|
2053
|
+
*
|
|
2054
|
+
* @export
|
|
2055
|
+
* @interface FeatureLines
|
|
2056
|
+
*/
|
|
2057
|
+
export interface FeatureLines {
|
|
2058
|
+
/**
|
|
2059
|
+
*
|
|
2060
|
+
* @type {Color3}
|
|
2061
|
+
* @memberof FeatureLines
|
|
2062
|
+
*/
|
|
2063
|
+
color: Color3;
|
|
2064
|
+
/**
|
|
2065
|
+
*
|
|
2066
|
+
* @type {number}
|
|
2067
|
+
* @memberof FeatureLines
|
|
2068
|
+
*/
|
|
2069
|
+
width: number;
|
|
2070
|
+
}
|
|
2004
2071
|
/**
|
|
2005
2072
|
*
|
|
2006
2073
|
* @export
|
|
@@ -4217,6 +4284,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4217
4284
|
* @memberof SceneViewStateDataAttributes
|
|
4218
4285
|
*/
|
|
4219
4286
|
thumbnails?: Array<ThumbnailData>;
|
|
4287
|
+
/**
|
|
4288
|
+
*
|
|
4289
|
+
* @type {FeatureLines}
|
|
4290
|
+
* @memberof SceneViewStateDataAttributes
|
|
4291
|
+
*/
|
|
4292
|
+
featureLines?: FeatureLines;
|
|
4220
4293
|
}
|
|
4221
4294
|
/**
|
|
4222
4295
|
*
|
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
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.17.
|
|
1
|
+
export declare const version = "0.17.3";
|
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
|
|
@@ -2001,6 +2049,25 @@ export interface Failure {
|
|
|
2001
2049
|
[key: string]: Link;
|
|
2002
2050
|
};
|
|
2003
2051
|
}
|
|
2052
|
+
/**
|
|
2053
|
+
*
|
|
2054
|
+
* @export
|
|
2055
|
+
* @interface FeatureLines
|
|
2056
|
+
*/
|
|
2057
|
+
export interface FeatureLines {
|
|
2058
|
+
/**
|
|
2059
|
+
*
|
|
2060
|
+
* @type {Color3}
|
|
2061
|
+
* @memberof FeatureLines
|
|
2062
|
+
*/
|
|
2063
|
+
color: Color3;
|
|
2064
|
+
/**
|
|
2065
|
+
*
|
|
2066
|
+
* @type {number}
|
|
2067
|
+
* @memberof FeatureLines
|
|
2068
|
+
*/
|
|
2069
|
+
width: number;
|
|
2070
|
+
}
|
|
2004
2071
|
/**
|
|
2005
2072
|
*
|
|
2006
2073
|
* @export
|
|
@@ -4217,6 +4284,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4217
4284
|
* @memberof SceneViewStateDataAttributes
|
|
4218
4285
|
*/
|
|
4219
4286
|
thumbnails?: Array<ThumbnailData>;
|
|
4287
|
+
/**
|
|
4288
|
+
*
|
|
4289
|
+
* @type {FeatureLines}
|
|
4290
|
+
* @memberof SceneViewStateDataAttributes
|
|
4291
|
+
*/
|
|
4292
|
+
featureLines?: FeatureLines;
|
|
4220
4293
|
}
|
|
4221
4294
|
/**
|
|
4222
4295
|
*
|
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
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.17.
|
|
1
|
+
export declare const version = "0.17.3";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.17.
|
|
1
|
+
export const version = '0.17.3';
|
package/package.json
CHANGED