@vertexvis/api-client-node 0.20.3 → 0.20.4
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 +40 -3
- package/dist/cjs/api.js +12 -6
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/esm/api.d.ts +40 -3
- package/dist/esm/api.js +12 -6
- 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
|
@@ -1364,6 +1364,14 @@ export interface CreateSceneItemRequestDataAttributes {
|
|
|
1364
1364
|
* @memberof CreateSceneItemRequestDataAttributes
|
|
1365
1365
|
*/
|
|
1366
1366
|
visible?: boolean;
|
|
1367
|
+
/**
|
|
1368
|
+
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
1369
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
1370
|
+
* @memberof CreateSceneItemRequestDataAttributes
|
|
1371
|
+
*/
|
|
1372
|
+
metadata?: {
|
|
1373
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
1374
|
+
};
|
|
1367
1375
|
}
|
|
1368
1376
|
/**
|
|
1369
1377
|
*
|
|
@@ -1598,6 +1606,12 @@ export interface CreateSceneViewStateRequestDataAttributes {
|
|
|
1598
1606
|
* @memberof CreateSceneViewStateRequestDataAttributes
|
|
1599
1607
|
*/
|
|
1600
1608
|
name?: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* ID provided for correlation. For example, an existing ID from a PLM system.
|
|
1611
|
+
* @type {string}
|
|
1612
|
+
* @memberof CreateSceneViewStateRequestDataAttributes
|
|
1613
|
+
*/
|
|
1614
|
+
suppliedId?: string;
|
|
1601
1615
|
}
|
|
1602
1616
|
/**
|
|
1603
1617
|
*
|
|
@@ -4328,6 +4342,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4328
4342
|
* @memberof SceneViewStateDataAttributes
|
|
4329
4343
|
*/
|
|
4330
4344
|
noDefaultLights?: boolean;
|
|
4345
|
+
/**
|
|
4346
|
+
*
|
|
4347
|
+
* @type {string}
|
|
4348
|
+
* @memberof SceneViewStateDataAttributes
|
|
4349
|
+
*/
|
|
4350
|
+
suppliedId?: string;
|
|
4331
4351
|
}
|
|
4332
4352
|
/**
|
|
4333
4353
|
*
|
|
@@ -4950,6 +4970,14 @@ export interface UpdateSceneItemRequestDataAttributes {
|
|
|
4950
4970
|
* @memberof UpdateSceneItemRequestDataAttributes
|
|
4951
4971
|
*/
|
|
4952
4972
|
suppliedId?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
4975
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
4976
|
+
* @memberof UpdateSceneItemRequestDataAttributes
|
|
4977
|
+
*/
|
|
4978
|
+
metadata?: {
|
|
4979
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
4980
|
+
};
|
|
4953
4981
|
}
|
|
4954
4982
|
/**
|
|
4955
4983
|
*
|
|
@@ -8742,10 +8770,11 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
|
|
|
8742
8770
|
* @param {number} [pageSize] The number of items to return.
|
|
8743
8771
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8744
8772
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8773
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8745
8774
|
* @param {*} [options] Override http request option.
|
|
8746
8775
|
* @throws {RequiredError}
|
|
8747
8776
|
*/
|
|
8748
|
-
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8777
|
+
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8749
8778
|
/**
|
|
8750
8779
|
* Update a `scene-view-state`.
|
|
8751
8780
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8790,10 +8819,11 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
|
|
|
8790
8819
|
* @param {number} [pageSize] The number of items to return.
|
|
8791
8820
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8792
8821
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8822
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8793
8823
|
* @param {*} [options] Override http request option.
|
|
8794
8824
|
* @throws {RequiredError}
|
|
8795
8825
|
*/
|
|
8796
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
|
|
8826
|
+
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
|
|
8797
8827
|
/**
|
|
8798
8828
|
* Update a `scene-view-state`.
|
|
8799
8829
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8838,10 +8868,11 @@ export declare const SceneViewStatesApiFactory: (configuration?: Configuration |
|
|
|
8838
8868
|
* @param {number} [pageSize] The number of items to return.
|
|
8839
8869
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8840
8870
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8871
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8841
8872
|
* @param {*} [options] Override http request option.
|
|
8842
8873
|
* @throws {RequiredError}
|
|
8843
8874
|
*/
|
|
8844
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8875
|
+
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8845
8876
|
/**
|
|
8846
8877
|
* Update a `scene-view-state`.
|
|
8847
8878
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8938,6 +8969,12 @@ export interface SceneViewStatesApiGetSceneViewStatesRequest {
|
|
|
8938
8969
|
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8939
8970
|
*/
|
|
8940
8971
|
readonly filterId?: string;
|
|
8972
|
+
/**
|
|
8973
|
+
* Comma-separated list of supplied IDs to filter on.
|
|
8974
|
+
* @type {string}
|
|
8975
|
+
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8976
|
+
*/
|
|
8977
|
+
readonly filterSuppliedId?: string;
|
|
8941
8978
|
}
|
|
8942
8979
|
/**
|
|
8943
8980
|
* Request parameters for updateSceneViewState operation in SceneViewStatesApi.
|
package/dist/cjs/api.js
CHANGED
|
@@ -4752,10 +4752,11 @@ const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4752
4752
|
* @param {number} [pageSize] The number of items to return.
|
|
4753
4753
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4754
4754
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4755
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4755
4756
|
* @param {*} [options] Override http request option.
|
|
4756
4757
|
* @throws {RequiredError}
|
|
4757
4758
|
*/
|
|
4758
|
-
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, filterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4759
|
+
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4759
4760
|
// verify required parameter 'id' is not null or undefined
|
|
4760
4761
|
(0, common_1.assertParamExists)('getSceneViewStates', 'id', id);
|
|
4761
4762
|
const localVarPath = `/scenes/{id}/scene-view-states`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
@@ -4784,6 +4785,9 @@ const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4784
4785
|
if (filterId !== undefined) {
|
|
4785
4786
|
localVarQueryParameter['filter[id]'] = filterId;
|
|
4786
4787
|
}
|
|
4788
|
+
if (filterSuppliedId !== undefined) {
|
|
4789
|
+
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
4790
|
+
}
|
|
4787
4791
|
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
4788
4792
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4789
4793
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -4882,12 +4886,13 @@ const SceneViewStatesApiFp = function (configuration) {
|
|
|
4882
4886
|
* @param {number} [pageSize] The number of items to return.
|
|
4883
4887
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4884
4888
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4889
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4885
4890
|
* @param {*} [options] Override http request option.
|
|
4886
4891
|
* @throws {RequiredError}
|
|
4887
4892
|
*/
|
|
4888
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4893
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options) {
|
|
4889
4894
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4890
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options);
|
|
4895
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options);
|
|
4891
4896
|
return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
4892
4897
|
});
|
|
4893
4898
|
},
|
|
@@ -4956,12 +4961,13 @@ const SceneViewStatesApiFactory = function (configuration, basePath, axios) {
|
|
|
4956
4961
|
* @param {number} [pageSize] The number of items to return.
|
|
4957
4962
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4958
4963
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4964
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4959
4965
|
* @param {*} [options] Override http request option.
|
|
4960
4966
|
* @throws {RequiredError}
|
|
4961
4967
|
*/
|
|
4962
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4968
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options) {
|
|
4963
4969
|
return localVarFp
|
|
4964
|
-
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options)
|
|
4970
|
+
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options)
|
|
4965
4971
|
.then((request) => request(axios, basePath));
|
|
4966
4972
|
},
|
|
4967
4973
|
/**
|
|
@@ -5031,7 +5037,7 @@ class SceneViewStatesApi extends base_1.BaseAPI {
|
|
|
5031
5037
|
*/
|
|
5032
5038
|
getSceneViewStates(requestParameters, options) {
|
|
5033
5039
|
return (0, exports.SceneViewStatesApiFp)(this.configuration)
|
|
5034
|
-
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, requestParameters.filterId, options)
|
|
5040
|
+
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, requestParameters.filterId, requestParameters.filterSuppliedId, options)
|
|
5035
5041
|
.then((request) => request(this.axios, this.basePath));
|
|
5036
5042
|
}
|
|
5037
5043
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.20.
|
|
1
|
+
export declare const version = "0.20.4";
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1364,6 +1364,14 @@ export interface CreateSceneItemRequestDataAttributes {
|
|
|
1364
1364
|
* @memberof CreateSceneItemRequestDataAttributes
|
|
1365
1365
|
*/
|
|
1366
1366
|
visible?: boolean;
|
|
1367
|
+
/**
|
|
1368
|
+
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
1369
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
1370
|
+
* @memberof CreateSceneItemRequestDataAttributes
|
|
1371
|
+
*/
|
|
1372
|
+
metadata?: {
|
|
1373
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
1374
|
+
};
|
|
1367
1375
|
}
|
|
1368
1376
|
/**
|
|
1369
1377
|
*
|
|
@@ -1598,6 +1606,12 @@ export interface CreateSceneViewStateRequestDataAttributes {
|
|
|
1598
1606
|
* @memberof CreateSceneViewStateRequestDataAttributes
|
|
1599
1607
|
*/
|
|
1600
1608
|
name?: string;
|
|
1609
|
+
/**
|
|
1610
|
+
* ID provided for correlation. For example, an existing ID from a PLM system.
|
|
1611
|
+
* @type {string}
|
|
1612
|
+
* @memberof CreateSceneViewStateRequestDataAttributes
|
|
1613
|
+
*/
|
|
1614
|
+
suppliedId?: string;
|
|
1601
1615
|
}
|
|
1602
1616
|
/**
|
|
1603
1617
|
*
|
|
@@ -4328,6 +4342,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4328
4342
|
* @memberof SceneViewStateDataAttributes
|
|
4329
4343
|
*/
|
|
4330
4344
|
noDefaultLights?: boolean;
|
|
4345
|
+
/**
|
|
4346
|
+
*
|
|
4347
|
+
* @type {string}
|
|
4348
|
+
* @memberof SceneViewStateDataAttributes
|
|
4349
|
+
*/
|
|
4350
|
+
suppliedId?: string;
|
|
4331
4351
|
}
|
|
4332
4352
|
/**
|
|
4333
4353
|
*
|
|
@@ -4950,6 +4970,14 @@ export interface UpdateSceneItemRequestDataAttributes {
|
|
|
4950
4970
|
* @memberof UpdateSceneItemRequestDataAttributes
|
|
4951
4971
|
*/
|
|
4952
4972
|
suppliedId?: string;
|
|
4973
|
+
/**
|
|
4974
|
+
* Additional metadata for the scene-item. This metadata will take precedence over any metadata that belongs to the part file.
|
|
4975
|
+
* @type {{ [key: string]: MetadataStringType | MetadataFloatType | MetadataNullType; }}
|
|
4976
|
+
* @memberof UpdateSceneItemRequestDataAttributes
|
|
4977
|
+
*/
|
|
4978
|
+
metadata?: {
|
|
4979
|
+
[key: string]: MetadataStringType | MetadataFloatType | MetadataNullType;
|
|
4980
|
+
};
|
|
4953
4981
|
}
|
|
4954
4982
|
/**
|
|
4955
4983
|
*
|
|
@@ -8742,10 +8770,11 @@ export declare const SceneViewStatesApiAxiosParamCreator: (configuration?: Confi
|
|
|
8742
8770
|
* @param {number} [pageSize] The number of items to return.
|
|
8743
8771
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8744
8772
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8773
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8745
8774
|
* @param {*} [options] Override http request option.
|
|
8746
8775
|
* @throws {RequiredError}
|
|
8747
8776
|
*/
|
|
8748
|
-
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8777
|
+
getSceneViewStates: (id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8749
8778
|
/**
|
|
8750
8779
|
* Update a `scene-view-state`.
|
|
8751
8780
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8790,10 +8819,11 @@ export declare const SceneViewStatesApiFp: (configuration?: Configuration | unde
|
|
|
8790
8819
|
* @param {number} [pageSize] The number of items to return.
|
|
8791
8820
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8792
8821
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8822
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8793
8823
|
* @param {*} [options] Override http request option.
|
|
8794
8824
|
* @throws {RequiredError}
|
|
8795
8825
|
*/
|
|
8796
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
|
|
8826
|
+
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<SceneViewStateList>>;
|
|
8797
8827
|
/**
|
|
8798
8828
|
* Update a `scene-view-state`.
|
|
8799
8829
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8838,10 +8868,11 @@ export declare const SceneViewStatesApiFactory: (configuration?: Configuration |
|
|
|
8838
8868
|
* @param {number} [pageSize] The number of items to return.
|
|
8839
8869
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
8840
8870
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
8871
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
8841
8872
|
* @param {*} [options] Override http request option.
|
|
8842
8873
|
* @throws {RequiredError}
|
|
8843
8874
|
*/
|
|
8844
|
-
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8875
|
+
getSceneViewStates(id: string, pageCursor?: string | undefined, pageSize?: number | undefined, fieldsSceneViewState?: string | undefined, filterId?: string | undefined, filterSuppliedId?: string | undefined, options?: any): AxiosPromise<SceneViewStateList>;
|
|
8845
8876
|
/**
|
|
8846
8877
|
* Update a `scene-view-state`.
|
|
8847
8878
|
* @param {string} id The `scene-view-state` ID.
|
|
@@ -8938,6 +8969,12 @@ export interface SceneViewStatesApiGetSceneViewStatesRequest {
|
|
|
8938
8969
|
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8939
8970
|
*/
|
|
8940
8971
|
readonly filterId?: string;
|
|
8972
|
+
/**
|
|
8973
|
+
* Comma-separated list of supplied IDs to filter on.
|
|
8974
|
+
* @type {string}
|
|
8975
|
+
* @memberof SceneViewStatesApiGetSceneViewStates
|
|
8976
|
+
*/
|
|
8977
|
+
readonly filterSuppliedId?: string;
|
|
8941
8978
|
}
|
|
8942
8979
|
/**
|
|
8943
8980
|
* Request parameters for updateSceneViewState operation in SceneViewStatesApi.
|
package/dist/esm/api.js
CHANGED
|
@@ -4692,10 +4692,11 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4692
4692
|
* @param {number} [pageSize] The number of items to return.
|
|
4693
4693
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4694
4694
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4695
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4695
4696
|
* @param {*} [options] Override http request option.
|
|
4696
4697
|
* @throws {RequiredError}
|
|
4697
4698
|
*/
|
|
4698
|
-
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, filterId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4699
|
+
getSceneViewStates: (id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
4699
4700
|
// verify required parameter 'id' is not null or undefined
|
|
4700
4701
|
assertParamExists('getSceneViewStates', 'id', id);
|
|
4701
4702
|
const localVarPath = `/scenes/{id}/scene-view-states`.replace(`{${'id'}}`, encodeURIComponent(String(id)));
|
|
@@ -4724,6 +4725,9 @@ export const SceneViewStatesApiAxiosParamCreator = function (configuration) {
|
|
|
4724
4725
|
if (filterId !== undefined) {
|
|
4725
4726
|
localVarQueryParameter['filter[id]'] = filterId;
|
|
4726
4727
|
}
|
|
4728
|
+
if (filterSuppliedId !== undefined) {
|
|
4729
|
+
localVarQueryParameter['filter[suppliedId]'] = filterSuppliedId;
|
|
4730
|
+
}
|
|
4727
4731
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
4728
4732
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
4729
4733
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -4821,12 +4825,13 @@ export const SceneViewStatesApiFp = function (configuration) {
|
|
|
4821
4825
|
* @param {number} [pageSize] The number of items to return.
|
|
4822
4826
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4823
4827
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4828
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4824
4829
|
* @param {*} [options] Override http request option.
|
|
4825
4830
|
* @throws {RequiredError}
|
|
4826
4831
|
*/
|
|
4827
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4832
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options) {
|
|
4828
4833
|
return __awaiter(this, void 0, void 0, function* () {
|
|
4829
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options);
|
|
4834
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options);
|
|
4830
4835
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
4831
4836
|
});
|
|
4832
4837
|
},
|
|
@@ -4894,12 +4899,13 @@ export const SceneViewStatesApiFactory = function (configuration, basePath, axio
|
|
|
4894
4899
|
* @param {number} [pageSize] The number of items to return.
|
|
4895
4900
|
* @param {string} [fieldsSceneViewState] Comma-separated list of fields to return in response. An empty value returns no fields. `thumbnails` is only returned if explicitly requested.
|
|
4896
4901
|
* @param {string} [filterId] Comma-separated list of IDs to filter on.
|
|
4902
|
+
* @param {string} [filterSuppliedId] Comma-separated list of supplied IDs to filter on.
|
|
4897
4903
|
* @param {*} [options] Override http request option.
|
|
4898
4904
|
* @throws {RequiredError}
|
|
4899
4905
|
*/
|
|
4900
|
-
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options) {
|
|
4906
|
+
getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options) {
|
|
4901
4907
|
return localVarFp
|
|
4902
|
-
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, options)
|
|
4908
|
+
.getSceneViewStates(id, pageCursor, pageSize, fieldsSceneViewState, filterId, filterSuppliedId, options)
|
|
4903
4909
|
.then((request) => request(axios, basePath));
|
|
4904
4910
|
},
|
|
4905
4911
|
/**
|
|
@@ -4968,7 +4974,7 @@ export class SceneViewStatesApi extends BaseAPI {
|
|
|
4968
4974
|
*/
|
|
4969
4975
|
getSceneViewStates(requestParameters, options) {
|
|
4970
4976
|
return SceneViewStatesApiFp(this.configuration)
|
|
4971
|
-
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, requestParameters.filterId, options)
|
|
4977
|
+
.getSceneViewStates(requestParameters.id, requestParameters.pageCursor, requestParameters.pageSize, requestParameters.fieldsSceneViewState, requestParameters.filterId, requestParameters.filterSuppliedId, options)
|
|
4972
4978
|
.then((request) => request(this.axios, this.basePath));
|
|
4973
4979
|
}
|
|
4974
4980
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "0.20.
|
|
1
|
+
export declare const version = "0.20.4";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '0.20.
|
|
1
|
+
export const version = '0.20.4';
|
package/package.json
CHANGED