@vertexvis/api-client-node 0.16.0 → 0.17.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 +412 -0
- package/dist/cjs/api.js +244 -3
- package/dist/cjs/client/helpers/exports.d.ts +15 -0
- package/dist/cjs/client/helpers/exports.js +39 -0
- package/dist/cjs/client/helpers/index.d.ts +1 -0
- package/dist/cjs/client/helpers/index.js +1 -0
- package/dist/cjs/client/version.d.ts +1 -1
- package/dist/cjs/client/version.js +1 -1
- package/dist/cjs/client/vertex-client.d.ts +2 -1
- package/dist/cjs/client/vertex-client.js +1 -0
- package/dist/esm/api.d.ts +412 -0
- package/dist/esm/api.js +237 -0
- package/dist/esm/client/helpers/exports.d.ts +15 -0
- package/dist/esm/client/helpers/exports.js +35 -0
- package/dist/esm/client/helpers/index.d.ts +1 -0
- package/dist/esm/client/helpers/index.js +1 -0
- package/dist/esm/client/version.d.ts +1 -1
- package/dist/esm/client/version.js +1 -1
- package/dist/esm/client/vertex-client.d.ts +2 -1
- package/dist/esm/client/vertex-client.js +2 -1
- package/package.json +1 -1
package/dist/cjs/api.d.ts
CHANGED
|
@@ -511,6 +511,13 @@ export interface BoundingBox {
|
|
|
511
511
|
*/
|
|
512
512
|
max: Vector3;
|
|
513
513
|
}
|
|
514
|
+
/**
|
|
515
|
+
* Describes the options for configuring a CAD file export.
|
|
516
|
+
* @export
|
|
517
|
+
* @interface CADExportConfig
|
|
518
|
+
*/
|
|
519
|
+
export interface CADExportConfig extends ExportConfig {
|
|
520
|
+
}
|
|
514
521
|
/**
|
|
515
522
|
* Fit camera in 3D space based on items in scene.
|
|
516
523
|
* @export
|
|
@@ -814,6 +821,76 @@ export interface CreateBatchRequest {
|
|
|
814
821
|
*/
|
|
815
822
|
'vertexvis/batch:operations': Array<BatchOperation>;
|
|
816
823
|
}
|
|
824
|
+
/**
|
|
825
|
+
*
|
|
826
|
+
* @export
|
|
827
|
+
* @interface CreateExportRequest
|
|
828
|
+
*/
|
|
829
|
+
export interface CreateExportRequest {
|
|
830
|
+
/**
|
|
831
|
+
*
|
|
832
|
+
* @type {CreateExportRequestData}
|
|
833
|
+
* @memberof CreateExportRequest
|
|
834
|
+
*/
|
|
835
|
+
data: CreateExportRequestData;
|
|
836
|
+
}
|
|
837
|
+
/**
|
|
838
|
+
*
|
|
839
|
+
* @export
|
|
840
|
+
* @interface CreateExportRequestData
|
|
841
|
+
*/
|
|
842
|
+
export interface CreateExportRequestData {
|
|
843
|
+
/**
|
|
844
|
+
* Resource object type.
|
|
845
|
+
* @type {string}
|
|
846
|
+
* @memberof CreateExportRequestData
|
|
847
|
+
*/
|
|
848
|
+
type: string;
|
|
849
|
+
/**
|
|
850
|
+
*
|
|
851
|
+
* @type {CreateExportRequestDataAttributes}
|
|
852
|
+
* @memberof CreateExportRequestData
|
|
853
|
+
*/
|
|
854
|
+
attributes: CreateExportRequestDataAttributes;
|
|
855
|
+
/**
|
|
856
|
+
*
|
|
857
|
+
* @type {CreateExportRequestDataRelationships}
|
|
858
|
+
* @memberof CreateExportRequestData
|
|
859
|
+
*/
|
|
860
|
+
relationships: CreateExportRequestDataRelationships;
|
|
861
|
+
}
|
|
862
|
+
/**
|
|
863
|
+
*
|
|
864
|
+
* @export
|
|
865
|
+
* @interface CreateExportRequestDataAttributes
|
|
866
|
+
*/
|
|
867
|
+
export interface CreateExportRequestDataAttributes {
|
|
868
|
+
/**
|
|
869
|
+
* Specifies the export format and options to configure the export.
|
|
870
|
+
* @type {CADExportConfig}
|
|
871
|
+
* @memberof CreateExportRequestDataAttributes
|
|
872
|
+
*/
|
|
873
|
+
config: CADExportConfig;
|
|
874
|
+
}
|
|
875
|
+
/**
|
|
876
|
+
*
|
|
877
|
+
* @export
|
|
878
|
+
* @interface CreateExportRequestDataRelationships
|
|
879
|
+
*/
|
|
880
|
+
export interface CreateExportRequestDataRelationships {
|
|
881
|
+
/**
|
|
882
|
+
*
|
|
883
|
+
* @type {ExportRelationship}
|
|
884
|
+
* @memberof CreateExportRequestDataRelationships
|
|
885
|
+
*/
|
|
886
|
+
source: ExportRelationship;
|
|
887
|
+
/**
|
|
888
|
+
*
|
|
889
|
+
* @type {ExportStateRelationship}
|
|
890
|
+
* @memberof CreateExportRequestDataRelationships
|
|
891
|
+
*/
|
|
892
|
+
state?: ExportStateRelationship;
|
|
893
|
+
}
|
|
817
894
|
/**
|
|
818
895
|
*
|
|
819
896
|
* @export
|
|
@@ -1779,6 +1856,164 @@ export interface Dimensions {
|
|
|
1779
1856
|
*/
|
|
1780
1857
|
width: number;
|
|
1781
1858
|
}
|
|
1859
|
+
/**
|
|
1860
|
+
*
|
|
1861
|
+
* @export
|
|
1862
|
+
* @interface Export
|
|
1863
|
+
*/
|
|
1864
|
+
export interface Export {
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
* @type {ExportData}
|
|
1868
|
+
* @memberof Export
|
|
1869
|
+
*/
|
|
1870
|
+
data: ExportData;
|
|
1871
|
+
/**
|
|
1872
|
+
*
|
|
1873
|
+
* @type {{ [key: string]: Link; }}
|
|
1874
|
+
* @memberof Export
|
|
1875
|
+
*/
|
|
1876
|
+
links?: {
|
|
1877
|
+
[key: string]: Link;
|
|
1878
|
+
};
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* Describes the options for configuring a file export.
|
|
1882
|
+
* @export
|
|
1883
|
+
* @interface ExportConfig
|
|
1884
|
+
*/
|
|
1885
|
+
export interface ExportConfig {
|
|
1886
|
+
/**
|
|
1887
|
+
*
|
|
1888
|
+
* @type {string}
|
|
1889
|
+
* @memberof ExportConfig
|
|
1890
|
+
*/
|
|
1891
|
+
format: string;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @export
|
|
1896
|
+
* @interface ExportData
|
|
1897
|
+
*/
|
|
1898
|
+
export interface ExportData {
|
|
1899
|
+
/**
|
|
1900
|
+
*
|
|
1901
|
+
* @type {string}
|
|
1902
|
+
* @memberof ExportData
|
|
1903
|
+
*/
|
|
1904
|
+
type: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* ID of the resource.
|
|
1907
|
+
* @type {string}
|
|
1908
|
+
* @memberof ExportData
|
|
1909
|
+
*/
|
|
1910
|
+
id: string;
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @type {ExportDataAttributes}
|
|
1914
|
+
* @memberof ExportData
|
|
1915
|
+
*/
|
|
1916
|
+
attributes: ExportDataAttributes;
|
|
1917
|
+
/**
|
|
1918
|
+
*
|
|
1919
|
+
* @type {{ [key: string]: Link; }}
|
|
1920
|
+
* @memberof ExportData
|
|
1921
|
+
*/
|
|
1922
|
+
links?: {
|
|
1923
|
+
[key: string]: Link;
|
|
1924
|
+
};
|
|
1925
|
+
}
|
|
1926
|
+
/**
|
|
1927
|
+
*
|
|
1928
|
+
* @export
|
|
1929
|
+
* @interface ExportDataAttributes
|
|
1930
|
+
*/
|
|
1931
|
+
export interface ExportDataAttributes {
|
|
1932
|
+
/**
|
|
1933
|
+
*
|
|
1934
|
+
* @type {string}
|
|
1935
|
+
* @memberof ExportDataAttributes
|
|
1936
|
+
*/
|
|
1937
|
+
created: string;
|
|
1938
|
+
/**
|
|
1939
|
+
*
|
|
1940
|
+
* @type {string}
|
|
1941
|
+
* @memberof ExportDataAttributes
|
|
1942
|
+
*/
|
|
1943
|
+
downloadUrl: string;
|
|
1944
|
+
}
|
|
1945
|
+
/**
|
|
1946
|
+
* Relationship to an `export`.
|
|
1947
|
+
* @export
|
|
1948
|
+
* @interface ExportRelationship
|
|
1949
|
+
*/
|
|
1950
|
+
export interface ExportRelationship {
|
|
1951
|
+
/**
|
|
1952
|
+
*
|
|
1953
|
+
* @type {ExportRelationshipData}
|
|
1954
|
+
* @memberof ExportRelationship
|
|
1955
|
+
*/
|
|
1956
|
+
data: ExportRelationshipData;
|
|
1957
|
+
}
|
|
1958
|
+
/**
|
|
1959
|
+
*
|
|
1960
|
+
* @export
|
|
1961
|
+
* @interface ExportRelationshipData
|
|
1962
|
+
*/
|
|
1963
|
+
export interface ExportRelationshipData {
|
|
1964
|
+
/**
|
|
1965
|
+
* Resource object type.
|
|
1966
|
+
* @type {string}
|
|
1967
|
+
* @memberof ExportRelationshipData
|
|
1968
|
+
*/
|
|
1969
|
+
type: ExportRelationshipDataTypeEnum;
|
|
1970
|
+
/**
|
|
1971
|
+
* ID of the resource.
|
|
1972
|
+
* @type {string}
|
|
1973
|
+
* @memberof ExportRelationshipData
|
|
1974
|
+
*/
|
|
1975
|
+
id: string;
|
|
1976
|
+
}
|
|
1977
|
+
export declare const ExportRelationshipDataTypeEnum: {
|
|
1978
|
+
readonly Scene: "scene";
|
|
1979
|
+
};
|
|
1980
|
+
export declare type ExportRelationshipDataTypeEnum = typeof ExportRelationshipDataTypeEnum[keyof typeof ExportRelationshipDataTypeEnum];
|
|
1981
|
+
/**
|
|
1982
|
+
* Relationship to an `export`.
|
|
1983
|
+
* @export
|
|
1984
|
+
* @interface ExportStateRelationship
|
|
1985
|
+
*/
|
|
1986
|
+
export interface ExportStateRelationship {
|
|
1987
|
+
/**
|
|
1988
|
+
*
|
|
1989
|
+
* @type {ExportStateRelationshipData}
|
|
1990
|
+
* @memberof ExportStateRelationship
|
|
1991
|
+
*/
|
|
1992
|
+
data: ExportStateRelationshipData;
|
|
1993
|
+
}
|
|
1994
|
+
/**
|
|
1995
|
+
*
|
|
1996
|
+
* @export
|
|
1997
|
+
* @interface ExportStateRelationshipData
|
|
1998
|
+
*/
|
|
1999
|
+
export interface ExportStateRelationshipData {
|
|
2000
|
+
/**
|
|
2001
|
+
* Resource object type.
|
|
2002
|
+
* @type {string}
|
|
2003
|
+
* @memberof ExportStateRelationshipData
|
|
2004
|
+
*/
|
|
2005
|
+
type: ExportStateRelationshipDataTypeEnum;
|
|
2006
|
+
/**
|
|
2007
|
+
* ID of the resource.
|
|
2008
|
+
* @type {string}
|
|
2009
|
+
* @memberof ExportStateRelationshipData
|
|
2010
|
+
*/
|
|
2011
|
+
id: string;
|
|
2012
|
+
}
|
|
2013
|
+
export declare const ExportStateRelationshipDataTypeEnum: {
|
|
2014
|
+
readonly SceneViewState: "scene-view-state";
|
|
2015
|
+
};
|
|
2016
|
+
export declare type ExportStateRelationshipDataTypeEnum = typeof ExportStateRelationshipDataTypeEnum[keyof typeof ExportStateRelationshipDataTypeEnum];
|
|
1782
2017
|
/**
|
|
1783
2018
|
*
|
|
1784
2019
|
* @export
|
|
@@ -1808,6 +2043,25 @@ export interface Failure {
|
|
|
1808
2043
|
[key: string]: Link;
|
|
1809
2044
|
};
|
|
1810
2045
|
}
|
|
2046
|
+
/**
|
|
2047
|
+
*
|
|
2048
|
+
* @export
|
|
2049
|
+
* @interface FeatureLines
|
|
2050
|
+
*/
|
|
2051
|
+
export interface FeatureLines {
|
|
2052
|
+
/**
|
|
2053
|
+
*
|
|
2054
|
+
* @type {Color3}
|
|
2055
|
+
* @memberof FeatureLines
|
|
2056
|
+
*/
|
|
2057
|
+
color: Color3;
|
|
2058
|
+
/**
|
|
2059
|
+
*
|
|
2060
|
+
* @type {number}
|
|
2061
|
+
* @memberof FeatureLines
|
|
2062
|
+
*/
|
|
2063
|
+
width: number;
|
|
2064
|
+
}
|
|
1811
2065
|
/**
|
|
1812
2066
|
*
|
|
1813
2067
|
* @export
|
|
@@ -4024,6 +4278,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4024
4278
|
* @memberof SceneViewStateDataAttributes
|
|
4025
4279
|
*/
|
|
4026
4280
|
thumbnails?: Array<ThumbnailData>;
|
|
4281
|
+
/**
|
|
4282
|
+
*
|
|
4283
|
+
* @type {FeatureLines}
|
|
4284
|
+
* @memberof SceneViewStateDataAttributes
|
|
4285
|
+
*/
|
|
4286
|
+
featureLines?: FeatureLines;
|
|
4027
4287
|
}
|
|
4028
4288
|
/**
|
|
4029
4289
|
*
|
|
@@ -5860,6 +6120,158 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
5860
6120
|
*/
|
|
5861
6121
|
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
5862
6122
|
}
|
|
6123
|
+
/**
|
|
6124
|
+
* ExportsApi - axios parameter creator
|
|
6125
|
+
* @export
|
|
6126
|
+
*/
|
|
6127
|
+
export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
6128
|
+
/**
|
|
6129
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6130
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6131
|
+
* @param {*} [options] Override http request option.
|
|
6132
|
+
* @throws {RequiredError}
|
|
6133
|
+
*/
|
|
6134
|
+
createExport: (createExportRequest: CreateExportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6135
|
+
/**
|
|
6136
|
+
* Get an `export` by ID.
|
|
6137
|
+
* @param {string} id The `export` ID.
|
|
6138
|
+
* @param {*} [options] Override http request option.
|
|
6139
|
+
* @throws {RequiredError}
|
|
6140
|
+
*/
|
|
6141
|
+
getExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6142
|
+
/**
|
|
6143
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6144
|
+
* @param {string} id The `queued-export` ID.
|
|
6145
|
+
* @param {*} [options] Override http request option.
|
|
6146
|
+
* @throws {RequiredError}
|
|
6147
|
+
*/
|
|
6148
|
+
getQueuedExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6149
|
+
};
|
|
6150
|
+
/**
|
|
6151
|
+
* ExportsApi - functional programming interface
|
|
6152
|
+
* @export
|
|
6153
|
+
*/
|
|
6154
|
+
export declare const ExportsApiFp: (configuration?: Configuration | undefined) => {
|
|
6155
|
+
/**
|
|
6156
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6157
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6158
|
+
* @param {*} [options] Override http request option.
|
|
6159
|
+
* @throws {RequiredError}
|
|
6160
|
+
*/
|
|
6161
|
+
createExport(createExportRequest: CreateExportRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6162
|
+
/**
|
|
6163
|
+
* Get an `export` by ID.
|
|
6164
|
+
* @param {string} id The `export` ID.
|
|
6165
|
+
* @param {*} [options] Override http request option.
|
|
6166
|
+
* @throws {RequiredError}
|
|
6167
|
+
*/
|
|
6168
|
+
getExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Export>>;
|
|
6169
|
+
/**
|
|
6170
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6171
|
+
* @param {string} id The `queued-export` ID.
|
|
6172
|
+
* @param {*} [options] Override http request option.
|
|
6173
|
+
* @throws {RequiredError}
|
|
6174
|
+
*/
|
|
6175
|
+
getQueuedExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6176
|
+
};
|
|
6177
|
+
/**
|
|
6178
|
+
* ExportsApi - factory interface
|
|
6179
|
+
* @export
|
|
6180
|
+
*/
|
|
6181
|
+
export declare const ExportsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
6182
|
+
/**
|
|
6183
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6184
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6185
|
+
* @param {*} [options] Override http request option.
|
|
6186
|
+
* @throws {RequiredError}
|
|
6187
|
+
*/
|
|
6188
|
+
createExport(createExportRequest: CreateExportRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
6189
|
+
/**
|
|
6190
|
+
* Get an `export` by ID.
|
|
6191
|
+
* @param {string} id The `export` ID.
|
|
6192
|
+
* @param {*} [options] Override http request option.
|
|
6193
|
+
* @throws {RequiredError}
|
|
6194
|
+
*/
|
|
6195
|
+
getExport(id: string, options?: any): AxiosPromise<Export>;
|
|
6196
|
+
/**
|
|
6197
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6198
|
+
* @param {string} id The `queued-export` ID.
|
|
6199
|
+
* @param {*} [options] Override http request option.
|
|
6200
|
+
* @throws {RequiredError}
|
|
6201
|
+
*/
|
|
6202
|
+
getQueuedExport(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
6203
|
+
};
|
|
6204
|
+
/**
|
|
6205
|
+
* Request parameters for createExport operation in ExportsApi.
|
|
6206
|
+
* @export
|
|
6207
|
+
* @interface ExportsApiCreateExportRequest
|
|
6208
|
+
*/
|
|
6209
|
+
export interface ExportsApiCreateExportRequest {
|
|
6210
|
+
/**
|
|
6211
|
+
*
|
|
6212
|
+
* @type {CreateExportRequest}
|
|
6213
|
+
* @memberof ExportsApiCreateExport
|
|
6214
|
+
*/
|
|
6215
|
+
readonly createExportRequest: CreateExportRequest;
|
|
6216
|
+
}
|
|
6217
|
+
/**
|
|
6218
|
+
* Request parameters for getExport operation in ExportsApi.
|
|
6219
|
+
* @export
|
|
6220
|
+
* @interface ExportsApiGetExportRequest
|
|
6221
|
+
*/
|
|
6222
|
+
export interface ExportsApiGetExportRequest {
|
|
6223
|
+
/**
|
|
6224
|
+
* The `export` ID.
|
|
6225
|
+
* @type {string}
|
|
6226
|
+
* @memberof ExportsApiGetExport
|
|
6227
|
+
*/
|
|
6228
|
+
readonly id: string;
|
|
6229
|
+
}
|
|
6230
|
+
/**
|
|
6231
|
+
* Request parameters for getQueuedExport operation in ExportsApi.
|
|
6232
|
+
* @export
|
|
6233
|
+
* @interface ExportsApiGetQueuedExportRequest
|
|
6234
|
+
*/
|
|
6235
|
+
export interface ExportsApiGetQueuedExportRequest {
|
|
6236
|
+
/**
|
|
6237
|
+
* The `queued-export` ID.
|
|
6238
|
+
* @type {string}
|
|
6239
|
+
* @memberof ExportsApiGetQueuedExport
|
|
6240
|
+
*/
|
|
6241
|
+
readonly id: string;
|
|
6242
|
+
}
|
|
6243
|
+
/**
|
|
6244
|
+
* ExportsApi - object-oriented interface
|
|
6245
|
+
* @export
|
|
6246
|
+
* @class ExportsApi
|
|
6247
|
+
* @extends {BaseAPI}
|
|
6248
|
+
*/
|
|
6249
|
+
export declare class ExportsApi extends BaseAPI {
|
|
6250
|
+
/**
|
|
6251
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6252
|
+
* @param {ExportsApiCreateExportRequest} requestParameters Request parameters.
|
|
6253
|
+
* @param {*} [options] Override http request option.
|
|
6254
|
+
* @throws {RequiredError}
|
|
6255
|
+
* @memberof ExportsApi
|
|
6256
|
+
*/
|
|
6257
|
+
createExport(requestParameters: ExportsApiCreateExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
6258
|
+
/**
|
|
6259
|
+
* Get an `export` by ID.
|
|
6260
|
+
* @param {ExportsApiGetExportRequest} requestParameters Request parameters.
|
|
6261
|
+
* @param {*} [options] Override http request option.
|
|
6262
|
+
* @throws {RequiredError}
|
|
6263
|
+
* @memberof ExportsApi
|
|
6264
|
+
*/
|
|
6265
|
+
getExport(requestParameters: ExportsApiGetExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Export, any>>;
|
|
6266
|
+
/**
|
|
6267
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6268
|
+
* @param {ExportsApiGetQueuedExportRequest} requestParameters Request parameters.
|
|
6269
|
+
* @param {*} [options] Override http request option.
|
|
6270
|
+
* @throws {RequiredError}
|
|
6271
|
+
* @memberof ExportsApi
|
|
6272
|
+
*/
|
|
6273
|
+
getQueuedExport(requestParameters: ExportsApiGetQueuedExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
6274
|
+
}
|
|
5863
6275
|
/**
|
|
5864
6276
|
* FilesApi - axios parameter creator
|
|
5865
6277
|
* @export
|