@vertexvis/api-client-node 0.23.0 → 0.23.2
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 +548 -0
- package/dist/cjs/api.js +466 -4
- package/dist/cjs/client/helpers/queued-jobs.js +8 -1
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +548 -0
- package/dist/esm/api.js +456 -2
- package/dist/esm/client/helpers/queued-jobs.js +8 -1
- 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
|
@@ -993,6 +993,12 @@ export interface CreateFileRequestDataAttributes {
|
|
|
993
993
|
* @memberof CreateFileRequestDataAttributes
|
|
994
994
|
*/
|
|
995
995
|
rootFileName?: string;
|
|
996
|
+
/**
|
|
997
|
+
* Number of seconds before the file is deleted.
|
|
998
|
+
* @type {number}
|
|
999
|
+
* @memberof CreateFileRequestDataAttributes
|
|
1000
|
+
*/
|
|
1001
|
+
expiry?: number;
|
|
996
1002
|
}
|
|
997
1003
|
/**
|
|
998
1004
|
*
|
|
@@ -1626,6 +1632,12 @@ export interface CreateSceneItemRequestDataAttributes {
|
|
|
1626
1632
|
metadata?: {
|
|
1627
1633
|
[key: string]: MetadataLongType | MetadataFloatType | MetadataDateType | MetadataStringType | MetadataNullType;
|
|
1628
1634
|
};
|
|
1635
|
+
/**
|
|
1636
|
+
* Specifies which metadata keys should be copied from the source item. Sending null will default to all keys. Sending an empty string will copy none of the sources\' metadata. Sending an array of [\"KEY1\", \"KEY2] will include KEY1 and KEY2 from the source in the scene item creation. This is marked experimental since future releases are expected to prevent copying metadata entirely.
|
|
1637
|
+
* @type {Array<string>}
|
|
1638
|
+
* @memberof CreateSceneItemRequestDataAttributes
|
|
1639
|
+
*/
|
|
1640
|
+
experimentalSourceMetadataKeys?: Array<string>;
|
|
1629
1641
|
}
|
|
1630
1642
|
/**
|
|
1631
1643
|
*
|
|
@@ -3015,6 +3027,100 @@ export interface MetadataStringType {
|
|
|
3015
3027
|
*/
|
|
3016
3028
|
value: string;
|
|
3017
3029
|
}
|
|
3030
|
+
/**
|
|
3031
|
+
*
|
|
3032
|
+
* @export
|
|
3033
|
+
* @interface ModelView
|
|
3034
|
+
*/
|
|
3035
|
+
export interface ModelView {
|
|
3036
|
+
/**
|
|
3037
|
+
*
|
|
3038
|
+
* @type {ModelViewData}
|
|
3039
|
+
* @memberof ModelView
|
|
3040
|
+
*/
|
|
3041
|
+
data: ModelViewData;
|
|
3042
|
+
/**
|
|
3043
|
+
*
|
|
3044
|
+
* @type {{ [key: string]: Link; }}
|
|
3045
|
+
* @memberof ModelView
|
|
3046
|
+
*/
|
|
3047
|
+
links?: {
|
|
3048
|
+
[key: string]: Link;
|
|
3049
|
+
};
|
|
3050
|
+
}
|
|
3051
|
+
/**
|
|
3052
|
+
*
|
|
3053
|
+
* @export
|
|
3054
|
+
* @interface ModelViewData
|
|
3055
|
+
*/
|
|
3056
|
+
export interface ModelViewData {
|
|
3057
|
+
/**
|
|
3058
|
+
*
|
|
3059
|
+
* @type {string}
|
|
3060
|
+
* @memberof ModelViewData
|
|
3061
|
+
*/
|
|
3062
|
+
type: string;
|
|
3063
|
+
/**
|
|
3064
|
+
* ID of the resource.
|
|
3065
|
+
* @type {string}
|
|
3066
|
+
* @memberof ModelViewData
|
|
3067
|
+
*/
|
|
3068
|
+
id: string;
|
|
3069
|
+
/**
|
|
3070
|
+
*
|
|
3071
|
+
* @type {CreateAccountRequestDataAttributes}
|
|
3072
|
+
* @memberof ModelViewData
|
|
3073
|
+
*/
|
|
3074
|
+
attributes: CreateAccountRequestDataAttributes;
|
|
3075
|
+
/**
|
|
3076
|
+
*
|
|
3077
|
+
* @type {ModelViewDataRelationships}
|
|
3078
|
+
* @memberof ModelViewData
|
|
3079
|
+
*/
|
|
3080
|
+
relationships: ModelViewDataRelationships;
|
|
3081
|
+
/**
|
|
3082
|
+
*
|
|
3083
|
+
* @type {{ [key: string]: Link; }}
|
|
3084
|
+
* @memberof ModelViewData
|
|
3085
|
+
*/
|
|
3086
|
+
links?: {
|
|
3087
|
+
[key: string]: Link;
|
|
3088
|
+
};
|
|
3089
|
+
}
|
|
3090
|
+
/**
|
|
3091
|
+
*
|
|
3092
|
+
* @export
|
|
3093
|
+
* @interface ModelViewDataRelationships
|
|
3094
|
+
*/
|
|
3095
|
+
export interface ModelViewDataRelationships {
|
|
3096
|
+
/**
|
|
3097
|
+
*
|
|
3098
|
+
* @type {PartRevisionRelationship}
|
|
3099
|
+
* @memberof ModelViewDataRelationships
|
|
3100
|
+
*/
|
|
3101
|
+
partRevision: PartRevisionRelationship;
|
|
3102
|
+
}
|
|
3103
|
+
/**
|
|
3104
|
+
*
|
|
3105
|
+
* @export
|
|
3106
|
+
* @interface ModelViewList
|
|
3107
|
+
*/
|
|
3108
|
+
export interface ModelViewList {
|
|
3109
|
+
/**
|
|
3110
|
+
*
|
|
3111
|
+
* @type {Array<ModelViewData>}
|
|
3112
|
+
* @memberof ModelViewList
|
|
3113
|
+
*/
|
|
3114
|
+
data: Array<ModelViewData>;
|
|
3115
|
+
/**
|
|
3116
|
+
*
|
|
3117
|
+
* @type {{ [key: string]: Link; }}
|
|
3118
|
+
* @memberof ModelViewList
|
|
3119
|
+
*/
|
|
3120
|
+
links: {
|
|
3121
|
+
[key: string]: Link;
|
|
3122
|
+
};
|
|
3123
|
+
}
|
|
3018
3124
|
/**
|
|
3019
3125
|
*
|
|
3020
3126
|
* @export
|
|
@@ -3732,6 +3838,60 @@ export interface PerspectiveCamera {
|
|
|
3732
3838
|
*/
|
|
3733
3839
|
fovY?: number;
|
|
3734
3840
|
}
|
|
3841
|
+
/**
|
|
3842
|
+
*
|
|
3843
|
+
* @export
|
|
3844
|
+
* @interface PmiAnnotationData
|
|
3845
|
+
*/
|
|
3846
|
+
export interface PmiAnnotationData {
|
|
3847
|
+
/**
|
|
3848
|
+
*
|
|
3849
|
+
* @type {string}
|
|
3850
|
+
* @memberof PmiAnnotationData
|
|
3851
|
+
*/
|
|
3852
|
+
type: string;
|
|
3853
|
+
/**
|
|
3854
|
+
* ID of the resource.
|
|
3855
|
+
* @type {string}
|
|
3856
|
+
* @memberof PmiAnnotationData
|
|
3857
|
+
*/
|
|
3858
|
+
id: string;
|
|
3859
|
+
/**
|
|
3860
|
+
*
|
|
3861
|
+
* @type {CreateAccountRequestDataAttributes}
|
|
3862
|
+
* @memberof PmiAnnotationData
|
|
3863
|
+
*/
|
|
3864
|
+
attributes: CreateAccountRequestDataAttributes;
|
|
3865
|
+
/**
|
|
3866
|
+
*
|
|
3867
|
+
* @type {{ [key: string]: Link; }}
|
|
3868
|
+
* @memberof PmiAnnotationData
|
|
3869
|
+
*/
|
|
3870
|
+
links?: {
|
|
3871
|
+
[key: string]: Link;
|
|
3872
|
+
};
|
|
3873
|
+
}
|
|
3874
|
+
/**
|
|
3875
|
+
*
|
|
3876
|
+
* @export
|
|
3877
|
+
* @interface PmiAnnotationList
|
|
3878
|
+
*/
|
|
3879
|
+
export interface PmiAnnotationList {
|
|
3880
|
+
/**
|
|
3881
|
+
*
|
|
3882
|
+
* @type {Array<PmiAnnotationData>}
|
|
3883
|
+
* @memberof PmiAnnotationList
|
|
3884
|
+
*/
|
|
3885
|
+
data: Array<PmiAnnotationData>;
|
|
3886
|
+
/**
|
|
3887
|
+
*
|
|
3888
|
+
* @type {{ [key: string]: Link; }}
|
|
3889
|
+
* @memberof PmiAnnotationList
|
|
3890
|
+
*/
|
|
3891
|
+
links: {
|
|
3892
|
+
[key: string]: Link;
|
|
3893
|
+
};
|
|
3894
|
+
}
|
|
3735
3895
|
/**
|
|
3736
3896
|
* 2D point.
|
|
3737
3897
|
* @export
|
|
@@ -5971,6 +6131,51 @@ export interface UpdateApplicationRequestDataAttributes {
|
|
|
5971
6131
|
*/
|
|
5972
6132
|
redirect_uris?: Array<string>;
|
|
5973
6133
|
}
|
|
6134
|
+
/**
|
|
6135
|
+
*
|
|
6136
|
+
* @export
|
|
6137
|
+
* @interface UpdateFileRequest
|
|
6138
|
+
*/
|
|
6139
|
+
export interface UpdateFileRequest {
|
|
6140
|
+
/**
|
|
6141
|
+
*
|
|
6142
|
+
* @type {UpdateFileRequestData}
|
|
6143
|
+
* @memberof UpdateFileRequest
|
|
6144
|
+
*/
|
|
6145
|
+
data: UpdateFileRequestData;
|
|
6146
|
+
}
|
|
6147
|
+
/**
|
|
6148
|
+
*
|
|
6149
|
+
* @export
|
|
6150
|
+
* @interface UpdateFileRequestData
|
|
6151
|
+
*/
|
|
6152
|
+
export interface UpdateFileRequestData {
|
|
6153
|
+
/**
|
|
6154
|
+
* Resource object type.
|
|
6155
|
+
* @type {string}
|
|
6156
|
+
* @memberof UpdateFileRequestData
|
|
6157
|
+
*/
|
|
6158
|
+
type: string;
|
|
6159
|
+
/**
|
|
6160
|
+
*
|
|
6161
|
+
* @type {UpdateFileRequestDataAttributes}
|
|
6162
|
+
* @memberof UpdateFileRequestData
|
|
6163
|
+
*/
|
|
6164
|
+
attributes: UpdateFileRequestDataAttributes;
|
|
6165
|
+
}
|
|
6166
|
+
/**
|
|
6167
|
+
*
|
|
6168
|
+
* @export
|
|
6169
|
+
* @interface UpdateFileRequestDataAttributes
|
|
6170
|
+
*/
|
|
6171
|
+
export interface UpdateFileRequestDataAttributes {
|
|
6172
|
+
/**
|
|
6173
|
+
* Number of seconds before the file is deleted.
|
|
6174
|
+
* @type {number}
|
|
6175
|
+
* @memberof UpdateFileRequestDataAttributes
|
|
6176
|
+
*/
|
|
6177
|
+
expiry?: number | null;
|
|
6178
|
+
}
|
|
5974
6179
|
/**
|
|
5975
6180
|
* An operation that updates items with the specified revision to the default rendition.
|
|
5976
6181
|
* @export
|
|
@@ -8026,6 +8231,14 @@ export declare const FilesApiAxiosParamCreator: (configuration?: Configuration |
|
|
|
8026
8231
|
* @throws {RequiredError}
|
|
8027
8232
|
*/
|
|
8028
8233
|
getFiles: (pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8234
|
+
/**
|
|
8235
|
+
* Update a `file`.
|
|
8236
|
+
* @param {string} id The `file` ID.
|
|
8237
|
+
* @param {UpdateFileRequest} updateFileRequest
|
|
8238
|
+
* @param {*} [options] Override http request option.
|
|
8239
|
+
* @throws {RequiredError}
|
|
8240
|
+
*/
|
|
8241
|
+
updateFile: (id: string, updateFileRequest: UpdateFileRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8029
8242
|
/**
|
|
8030
8243
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
8031
8244
|
* @param {string} id The `file` ID.
|
|
@@ -8070,6 +8283,14 @@ export declare const FilesApiFp: (configuration?: Configuration | undefined) =>
|
|
|
8070
8283
|
* @throws {RequiredError}
|
|
8071
8284
|
*/
|
|
8072
8285
|
getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileList>>;
|
|
8286
|
+
/**
|
|
8287
|
+
* Update a `file`.
|
|
8288
|
+
* @param {string} id The `file` ID.
|
|
8289
|
+
* @param {UpdateFileRequest} updateFileRequest
|
|
8290
|
+
* @param {*} [options] Override http request option.
|
|
8291
|
+
* @throws {RequiredError}
|
|
8292
|
+
*/
|
|
8293
|
+
updateFile(id: string, updateFileRequest: UpdateFileRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<FileMetadata>>;
|
|
8073
8294
|
/**
|
|
8074
8295
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
8075
8296
|
* @param {string} id The `file` ID.
|
|
@@ -8114,6 +8335,14 @@ export declare const FilesApiFactory: (configuration?: Configuration | undefined
|
|
|
8114
8335
|
* @throws {RequiredError}
|
|
8115
8336
|
*/
|
|
8116
8337
|
getFiles(pageCursor?: string | undefined, pageSize?: number | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<FileList>;
|
|
8338
|
+
/**
|
|
8339
|
+
* Update a `file`.
|
|
8340
|
+
* @param {string} id The `file` ID.
|
|
8341
|
+
* @param {UpdateFileRequest} updateFileRequest
|
|
8342
|
+
* @param {*} [options] Override http request option.
|
|
8343
|
+
* @throws {RequiredError}
|
|
8344
|
+
*/
|
|
8345
|
+
updateFile(id: string, updateFileRequest: UpdateFileRequest, options?: any): AxiosPromise<FileMetadata>;
|
|
8117
8346
|
/**
|
|
8118
8347
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
8119
8348
|
* @param {string} id The `file` ID.
|
|
@@ -8187,6 +8416,25 @@ export interface FilesApiGetFilesRequest {
|
|
|
8187
8416
|
*/
|
|
8188
8417
|
readonly filterSuppliedId?: string;
|
|
8189
8418
|
}
|
|
8419
|
+
/**
|
|
8420
|
+
* Request parameters for updateFile operation in FilesApi.
|
|
8421
|
+
* @export
|
|
8422
|
+
* @interface FilesApiUpdateFileRequest
|
|
8423
|
+
*/
|
|
8424
|
+
export interface FilesApiUpdateFileRequest {
|
|
8425
|
+
/**
|
|
8426
|
+
* The `file` ID.
|
|
8427
|
+
* @type {string}
|
|
8428
|
+
* @memberof FilesApiUpdateFile
|
|
8429
|
+
*/
|
|
8430
|
+
readonly id: string;
|
|
8431
|
+
/**
|
|
8432
|
+
*
|
|
8433
|
+
* @type {UpdateFileRequest}
|
|
8434
|
+
* @memberof FilesApiUpdateFile
|
|
8435
|
+
*/
|
|
8436
|
+
readonly updateFileRequest: UpdateFileRequest;
|
|
8437
|
+
}
|
|
8190
8438
|
/**
|
|
8191
8439
|
* Request parameters for uploadFile operation in FilesApi.
|
|
8192
8440
|
* @export
|
|
@@ -8245,6 +8493,14 @@ export declare class FilesApi extends BaseAPI {
|
|
|
8245
8493
|
* @memberof FilesApi
|
|
8246
8494
|
*/
|
|
8247
8495
|
getFiles(requestParameters?: FilesApiGetFilesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileList, any>>;
|
|
8496
|
+
/**
|
|
8497
|
+
* Update a `file`.
|
|
8498
|
+
* @param {FilesApiUpdateFileRequest} requestParameters Request parameters.
|
|
8499
|
+
* @param {*} [options] Override http request option.
|
|
8500
|
+
* @throws {RequiredError}
|
|
8501
|
+
* @memberof FilesApi
|
|
8502
|
+
*/
|
|
8503
|
+
updateFile(requestParameters: FilesApiUpdateFileRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<FileMetadata, any>>;
|
|
8248
8504
|
/**
|
|
8249
8505
|
* Upload a `file`. Once uploaded, create either parts or geometry sets via the createPart or createGeometrySet APIs.
|
|
8250
8506
|
* @param {FilesApiUploadFileRequest} requestParameters Request parameters.
|
|
@@ -8579,6 +8835,212 @@ export declare class HitsApi extends BaseAPI {
|
|
|
8579
8835
|
*/
|
|
8580
8836
|
createSceneViewHit(requestParameters: HitsApiCreateSceneViewHitRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Hit, any>>;
|
|
8581
8837
|
}
|
|
8838
|
+
/**
|
|
8839
|
+
* ModelViewsApi - axios parameter creator
|
|
8840
|
+
* @export
|
|
8841
|
+
*/
|
|
8842
|
+
export declare const ModelViewsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
8843
|
+
/**
|
|
8844
|
+
* Get the details of a `model-view`.
|
|
8845
|
+
* @param {string} id The `model-view` ID.
|
|
8846
|
+
* @param {*} [options] Override http request option.
|
|
8847
|
+
* @throws {RequiredError}
|
|
8848
|
+
*/
|
|
8849
|
+
getModelView: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8850
|
+
/**
|
|
8851
|
+
* Get a paged list of `model-views` for a part revision.
|
|
8852
|
+
* @param {string} id The `part-revision` ID.
|
|
8853
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8854
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8855
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8856
|
+
* @param {*} [options] Override http request option.
|
|
8857
|
+
* @throws {RequiredError}
|
|
8858
|
+
*/
|
|
8859
|
+
getPartRevisionModelViews: (id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8860
|
+
/**
|
|
8861
|
+
* Get a paged list of `model-views` for a scene item.
|
|
8862
|
+
* @param {string} id The `scene-item` ID.
|
|
8863
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8864
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8865
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8866
|
+
* @param {*} [options] Override http request option.
|
|
8867
|
+
* @throws {RequiredError}
|
|
8868
|
+
*/
|
|
8869
|
+
getSceneItemModelViews: (id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8870
|
+
};
|
|
8871
|
+
/**
|
|
8872
|
+
* ModelViewsApi - functional programming interface
|
|
8873
|
+
* @export
|
|
8874
|
+
*/
|
|
8875
|
+
export declare const ModelViewsApiFp: (configuration?: Configuration | undefined) => {
|
|
8876
|
+
/**
|
|
8877
|
+
* Get the details of a `model-view`.
|
|
8878
|
+
* @param {string} id The `model-view` ID.
|
|
8879
|
+
* @param {*} [options] Override http request option.
|
|
8880
|
+
* @throws {RequiredError}
|
|
8881
|
+
*/
|
|
8882
|
+
getModelView(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ModelView>>;
|
|
8883
|
+
/**
|
|
8884
|
+
* Get a paged list of `model-views` for a part revision.
|
|
8885
|
+
* @param {string} id The `part-revision` ID.
|
|
8886
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8887
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8888
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8889
|
+
* @param {*} [options] Override http request option.
|
|
8890
|
+
* @throws {RequiredError}
|
|
8891
|
+
*/
|
|
8892
|
+
getPartRevisionModelViews(id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ModelViewList>>;
|
|
8893
|
+
/**
|
|
8894
|
+
* Get a paged list of `model-views` for a scene item.
|
|
8895
|
+
* @param {string} id The `scene-item` ID.
|
|
8896
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8897
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8898
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8899
|
+
* @param {*} [options] Override http request option.
|
|
8900
|
+
* @throws {RequiredError}
|
|
8901
|
+
*/
|
|
8902
|
+
getSceneItemModelViews(id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<ModelViewList>>;
|
|
8903
|
+
};
|
|
8904
|
+
/**
|
|
8905
|
+
* ModelViewsApi - factory interface
|
|
8906
|
+
* @export
|
|
8907
|
+
*/
|
|
8908
|
+
export declare const ModelViewsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
8909
|
+
/**
|
|
8910
|
+
* Get the details of a `model-view`.
|
|
8911
|
+
* @param {string} id The `model-view` ID.
|
|
8912
|
+
* @param {*} [options] Override http request option.
|
|
8913
|
+
* @throws {RequiredError}
|
|
8914
|
+
*/
|
|
8915
|
+
getModelView(id: string, options?: any): AxiosPromise<ModelView>;
|
|
8916
|
+
/**
|
|
8917
|
+
* Get a paged list of `model-views` for a part revision.
|
|
8918
|
+
* @param {string} id The `part-revision` ID.
|
|
8919
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8920
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8921
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8922
|
+
* @param {*} [options] Override http request option.
|
|
8923
|
+
* @throws {RequiredError}
|
|
8924
|
+
*/
|
|
8925
|
+
getPartRevisionModelViews(id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ModelViewList>;
|
|
8926
|
+
/**
|
|
8927
|
+
* Get a paged list of `model-views` for a scene item.
|
|
8928
|
+
* @param {string} id The `scene-item` ID.
|
|
8929
|
+
* @param {boolean} [filterHasAnnotations] Filter model views that contain or do not contain annotations.
|
|
8930
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
8931
|
+
* @param {number} [pageSize] The number of items to return.
|
|
8932
|
+
* @param {*} [options] Override http request option.
|
|
8933
|
+
* @throws {RequiredError}
|
|
8934
|
+
*/
|
|
8935
|
+
getSceneItemModelViews(id: string, filterHasAnnotations?: boolean | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<ModelViewList>;
|
|
8936
|
+
};
|
|
8937
|
+
/**
|
|
8938
|
+
* Request parameters for getModelView operation in ModelViewsApi.
|
|
8939
|
+
* @export
|
|
8940
|
+
* @interface ModelViewsApiGetModelViewRequest
|
|
8941
|
+
*/
|
|
8942
|
+
export interface ModelViewsApiGetModelViewRequest {
|
|
8943
|
+
/**
|
|
8944
|
+
* The `model-view` ID.
|
|
8945
|
+
* @type {string}
|
|
8946
|
+
* @memberof ModelViewsApiGetModelView
|
|
8947
|
+
*/
|
|
8948
|
+
readonly id: string;
|
|
8949
|
+
}
|
|
8950
|
+
/**
|
|
8951
|
+
* Request parameters for getPartRevisionModelViews operation in ModelViewsApi.
|
|
8952
|
+
* @export
|
|
8953
|
+
* @interface ModelViewsApiGetPartRevisionModelViewsRequest
|
|
8954
|
+
*/
|
|
8955
|
+
export interface ModelViewsApiGetPartRevisionModelViewsRequest {
|
|
8956
|
+
/**
|
|
8957
|
+
* The `part-revision` ID.
|
|
8958
|
+
* @type {string}
|
|
8959
|
+
* @memberof ModelViewsApiGetPartRevisionModelViews
|
|
8960
|
+
*/
|
|
8961
|
+
readonly id: string;
|
|
8962
|
+
/**
|
|
8963
|
+
* Filter model views that contain or do not contain annotations.
|
|
8964
|
+
* @type {boolean}
|
|
8965
|
+
* @memberof ModelViewsApiGetPartRevisionModelViews
|
|
8966
|
+
*/
|
|
8967
|
+
readonly filterHasAnnotations?: boolean;
|
|
8968
|
+
/**
|
|
8969
|
+
* The cursor for the next page of items.
|
|
8970
|
+
* @type {string}
|
|
8971
|
+
* @memberof ModelViewsApiGetPartRevisionModelViews
|
|
8972
|
+
*/
|
|
8973
|
+
readonly pageCursor?: string;
|
|
8974
|
+
/**
|
|
8975
|
+
* The number of items to return.
|
|
8976
|
+
* @type {number}
|
|
8977
|
+
* @memberof ModelViewsApiGetPartRevisionModelViews
|
|
8978
|
+
*/
|
|
8979
|
+
readonly pageSize?: number;
|
|
8980
|
+
}
|
|
8981
|
+
/**
|
|
8982
|
+
* Request parameters for getSceneItemModelViews operation in ModelViewsApi.
|
|
8983
|
+
* @export
|
|
8984
|
+
* @interface ModelViewsApiGetSceneItemModelViewsRequest
|
|
8985
|
+
*/
|
|
8986
|
+
export interface ModelViewsApiGetSceneItemModelViewsRequest {
|
|
8987
|
+
/**
|
|
8988
|
+
* The `scene-item` ID.
|
|
8989
|
+
* @type {string}
|
|
8990
|
+
* @memberof ModelViewsApiGetSceneItemModelViews
|
|
8991
|
+
*/
|
|
8992
|
+
readonly id: string;
|
|
8993
|
+
/**
|
|
8994
|
+
* Filter model views that contain or do not contain annotations.
|
|
8995
|
+
* @type {boolean}
|
|
8996
|
+
* @memberof ModelViewsApiGetSceneItemModelViews
|
|
8997
|
+
*/
|
|
8998
|
+
readonly filterHasAnnotations?: boolean;
|
|
8999
|
+
/**
|
|
9000
|
+
* The cursor for the next page of items.
|
|
9001
|
+
* @type {string}
|
|
9002
|
+
* @memberof ModelViewsApiGetSceneItemModelViews
|
|
9003
|
+
*/
|
|
9004
|
+
readonly pageCursor?: string;
|
|
9005
|
+
/**
|
|
9006
|
+
* The number of items to return.
|
|
9007
|
+
* @type {number}
|
|
9008
|
+
* @memberof ModelViewsApiGetSceneItemModelViews
|
|
9009
|
+
*/
|
|
9010
|
+
readonly pageSize?: number;
|
|
9011
|
+
}
|
|
9012
|
+
/**
|
|
9013
|
+
* ModelViewsApi - object-oriented interface
|
|
9014
|
+
* @export
|
|
9015
|
+
* @class ModelViewsApi
|
|
9016
|
+
* @extends {BaseAPI}
|
|
9017
|
+
*/
|
|
9018
|
+
export declare class ModelViewsApi extends BaseAPI {
|
|
9019
|
+
/**
|
|
9020
|
+
* Get the details of a `model-view`.
|
|
9021
|
+
* @param {ModelViewsApiGetModelViewRequest} requestParameters Request parameters.
|
|
9022
|
+
* @param {*} [options] Override http request option.
|
|
9023
|
+
* @throws {RequiredError}
|
|
9024
|
+
* @memberof ModelViewsApi
|
|
9025
|
+
*/
|
|
9026
|
+
getModelView(requestParameters: ModelViewsApiGetModelViewRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ModelView, any>>;
|
|
9027
|
+
/**
|
|
9028
|
+
* Get a paged list of `model-views` for a part revision.
|
|
9029
|
+
* @param {ModelViewsApiGetPartRevisionModelViewsRequest} requestParameters Request parameters.
|
|
9030
|
+
* @param {*} [options] Override http request option.
|
|
9031
|
+
* @throws {RequiredError}
|
|
9032
|
+
* @memberof ModelViewsApi
|
|
9033
|
+
*/
|
|
9034
|
+
getPartRevisionModelViews(requestParameters: ModelViewsApiGetPartRevisionModelViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ModelViewList, any>>;
|
|
9035
|
+
/**
|
|
9036
|
+
* Get a paged list of `model-views` for a scene item.
|
|
9037
|
+
* @param {ModelViewsApiGetSceneItemModelViewsRequest} requestParameters Request parameters.
|
|
9038
|
+
* @param {*} [options] Override http request option.
|
|
9039
|
+
* @throws {RequiredError}
|
|
9040
|
+
* @memberof ModelViewsApi
|
|
9041
|
+
*/
|
|
9042
|
+
getSceneItemModelViews(requestParameters: ModelViewsApiGetSceneItemModelViewsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ModelViewList, any>>;
|
|
9043
|
+
}
|
|
8582
9044
|
/**
|
|
8583
9045
|
* Oauth2Api - axios parameter creator
|
|
8584
9046
|
* @export
|
|
@@ -9709,6 +10171,92 @@ export declare class PartsApi extends BaseAPI {
|
|
|
9709
10171
|
*/
|
|
9710
10172
|
getQueuedPartDeletion(requestParameters: PartsApiGetQueuedPartDeletionRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
9711
10173
|
}
|
|
10174
|
+
/**
|
|
10175
|
+
* PmiApi - axios parameter creator
|
|
10176
|
+
* @export
|
|
10177
|
+
*/
|
|
10178
|
+
export declare const PmiApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
10179
|
+
/**
|
|
10180
|
+
* List `pmi-annotation`s.
|
|
10181
|
+
* @param {string} [filterModelViewId] Filter annotations belonging to a model view.
|
|
10182
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10183
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10184
|
+
* @param {*} [options] Override http request option.
|
|
10185
|
+
* @throws {RequiredError}
|
|
10186
|
+
*/
|
|
10187
|
+
getPmiAnnotations: (filterModelViewId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
10188
|
+
};
|
|
10189
|
+
/**
|
|
10190
|
+
* PmiApi - functional programming interface
|
|
10191
|
+
* @export
|
|
10192
|
+
*/
|
|
10193
|
+
export declare const PmiApiFp: (configuration?: Configuration | undefined) => {
|
|
10194
|
+
/**
|
|
10195
|
+
* List `pmi-annotation`s.
|
|
10196
|
+
* @param {string} [filterModelViewId] Filter annotations belonging to a model view.
|
|
10197
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10198
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10199
|
+
* @param {*} [options] Override http request option.
|
|
10200
|
+
* @throws {RequiredError}
|
|
10201
|
+
*/
|
|
10202
|
+
getPmiAnnotations(filterModelViewId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<PmiAnnotationList>>;
|
|
10203
|
+
};
|
|
10204
|
+
/**
|
|
10205
|
+
* PmiApi - factory interface
|
|
10206
|
+
* @export
|
|
10207
|
+
*/
|
|
10208
|
+
export declare const PmiApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
10209
|
+
/**
|
|
10210
|
+
* List `pmi-annotation`s.
|
|
10211
|
+
* @param {string} [filterModelViewId] Filter annotations belonging to a model view.
|
|
10212
|
+
* @param {string} [pageCursor] The cursor for the next page of items.
|
|
10213
|
+
* @param {number} [pageSize] The number of items to return.
|
|
10214
|
+
* @param {*} [options] Override http request option.
|
|
10215
|
+
* @throws {RequiredError}
|
|
10216
|
+
*/
|
|
10217
|
+
getPmiAnnotations(filterModelViewId?: string | undefined, pageCursor?: string | undefined, pageSize?: number | undefined, options?: any): AxiosPromise<PmiAnnotationList>;
|
|
10218
|
+
};
|
|
10219
|
+
/**
|
|
10220
|
+
* Request parameters for getPmiAnnotations operation in PmiApi.
|
|
10221
|
+
* @export
|
|
10222
|
+
* @interface PmiApiGetPmiAnnotationsRequest
|
|
10223
|
+
*/
|
|
10224
|
+
export interface PmiApiGetPmiAnnotationsRequest {
|
|
10225
|
+
/**
|
|
10226
|
+
* Filter annotations belonging to a model view.
|
|
10227
|
+
* @type {string}
|
|
10228
|
+
* @memberof PmiApiGetPmiAnnotations
|
|
10229
|
+
*/
|
|
10230
|
+
readonly filterModelViewId?: string;
|
|
10231
|
+
/**
|
|
10232
|
+
* The cursor for the next page of items.
|
|
10233
|
+
* @type {string}
|
|
10234
|
+
* @memberof PmiApiGetPmiAnnotations
|
|
10235
|
+
*/
|
|
10236
|
+
readonly pageCursor?: string;
|
|
10237
|
+
/**
|
|
10238
|
+
* The number of items to return.
|
|
10239
|
+
* @type {number}
|
|
10240
|
+
* @memberof PmiApiGetPmiAnnotations
|
|
10241
|
+
*/
|
|
10242
|
+
readonly pageSize?: number;
|
|
10243
|
+
}
|
|
10244
|
+
/**
|
|
10245
|
+
* PmiApi - object-oriented interface
|
|
10246
|
+
* @export
|
|
10247
|
+
* @class PmiApi
|
|
10248
|
+
* @extends {BaseAPI}
|
|
10249
|
+
*/
|
|
10250
|
+
export declare class PmiApi extends BaseAPI {
|
|
10251
|
+
/**
|
|
10252
|
+
* List `pmi-annotation`s.
|
|
10253
|
+
* @param {PmiApiGetPmiAnnotationsRequest} requestParameters Request parameters.
|
|
10254
|
+
* @param {*} [options] Override http request option.
|
|
10255
|
+
* @throws {RequiredError}
|
|
10256
|
+
* @memberof PmiApi
|
|
10257
|
+
*/
|
|
10258
|
+
getPmiAnnotations(requestParameters?: PmiApiGetPmiAnnotationsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PmiAnnotationList, any>>;
|
|
10259
|
+
}
|
|
9712
10260
|
/**
|
|
9713
10261
|
* SceneAlterationsApi - axios parameter creator
|
|
9714
10262
|
* @export
|