@vertexvis/api-client-node 0.15.6 → 0.17.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 +647 -248
- package/dist/cjs/api.js +393 -248
- 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 +647 -248
- package/dist/esm/api.js +386 -245
- 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/esm/api.d.ts
CHANGED
|
@@ -465,13 +465,10 @@ export interface BatchOperation {
|
|
|
465
465
|
*/
|
|
466
466
|
ref: BatchOperationRef;
|
|
467
467
|
}
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
export declare enum BatchOperationOpEnum {
|
|
473
|
-
Add = "add"
|
|
474
|
-
}
|
|
468
|
+
export declare const BatchOperationOpEnum: {
|
|
469
|
+
readonly Add: "add";
|
|
470
|
+
};
|
|
471
|
+
export declare type BatchOperationOpEnum = typeof BatchOperationOpEnum[keyof typeof BatchOperationOpEnum];
|
|
475
472
|
/**
|
|
476
473
|
* Target of batch operation.
|
|
477
474
|
* @export
|
|
@@ -491,13 +488,10 @@ export interface BatchOperationRef {
|
|
|
491
488
|
*/
|
|
492
489
|
id: string;
|
|
493
490
|
}
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
export declare enum BatchOperationRefTypeEnum {
|
|
499
|
-
Scene = "scene"
|
|
500
|
-
}
|
|
491
|
+
export declare const BatchOperationRefTypeEnum: {
|
|
492
|
+
readonly Scene: "scene";
|
|
493
|
+
};
|
|
494
|
+
export declare type BatchOperationRefTypeEnum = typeof BatchOperationRefTypeEnum[keyof typeof BatchOperationRefTypeEnum];
|
|
501
495
|
/**
|
|
502
496
|
* 3D bounding-box
|
|
503
497
|
* @export
|
|
@@ -518,29 +512,11 @@ export interface BoundingBox {
|
|
|
518
512
|
max: Vector3;
|
|
519
513
|
}
|
|
520
514
|
/**
|
|
521
|
-
*
|
|
515
|
+
* Describes the options for configuring a CAD file export.
|
|
522
516
|
* @export
|
|
523
|
-
* @interface
|
|
517
|
+
* @interface CADExportConfig
|
|
524
518
|
*/
|
|
525
|
-
export interface
|
|
526
|
-
/**
|
|
527
|
-
*
|
|
528
|
-
* @type {Vector3}
|
|
529
|
-
* @memberof Camera
|
|
530
|
-
*/
|
|
531
|
-
position: Vector3;
|
|
532
|
-
/**
|
|
533
|
-
*
|
|
534
|
-
* @type {Vector3}
|
|
535
|
-
* @memberof Camera
|
|
536
|
-
*/
|
|
537
|
-
lookAt: Vector3;
|
|
538
|
-
/**
|
|
539
|
-
*
|
|
540
|
-
* @type {Vector3}
|
|
541
|
-
* @memberof Camera
|
|
542
|
-
*/
|
|
543
|
-
up: Vector3;
|
|
519
|
+
export interface CADExportConfig extends ExportConfig {
|
|
544
520
|
}
|
|
545
521
|
/**
|
|
546
522
|
* Fit camera in 3D space based on items in scene.
|
|
@@ -555,14 +531,11 @@ export interface CameraFit {
|
|
|
555
531
|
*/
|
|
556
532
|
type: CameraFitTypeEnum;
|
|
557
533
|
}
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
export declare
|
|
563
|
-
FitVisibleSceneItems = "fit-visible-scene-items",
|
|
564
|
-
Reset = "reset"
|
|
565
|
-
}
|
|
534
|
+
export declare const CameraFitTypeEnum: {
|
|
535
|
+
readonly FitVisibleSceneItems: "fit-visible-scene-items";
|
|
536
|
+
readonly Reset: "reset";
|
|
537
|
+
};
|
|
538
|
+
export declare type CameraFitTypeEnum = typeof CameraFitTypeEnum[keyof typeof CameraFitTypeEnum];
|
|
566
539
|
/**
|
|
567
540
|
*
|
|
568
541
|
* @export
|
|
@@ -582,13 +555,10 @@ export interface ChangeMaterialOperation {
|
|
|
582
555
|
*/
|
|
583
556
|
material: ColorMaterial;
|
|
584
557
|
}
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
export declare enum ChangeMaterialOperationTypeEnum {
|
|
590
|
-
ChangeMaterial = "change-material"
|
|
591
|
-
}
|
|
558
|
+
export declare const ChangeMaterialOperationTypeEnum: {
|
|
559
|
+
readonly ChangeMaterial: "change-material";
|
|
560
|
+
};
|
|
561
|
+
export declare type ChangeMaterialOperationTypeEnum = typeof ChangeMaterialOperationTypeEnum[keyof typeof ChangeMaterialOperationTypeEnum];
|
|
592
562
|
/**
|
|
593
563
|
*
|
|
594
564
|
* @export
|
|
@@ -608,13 +578,10 @@ export interface ChangeTransformOperation {
|
|
|
608
578
|
*/
|
|
609
579
|
transform: Matrix4;
|
|
610
580
|
}
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
export declare enum ChangeTransformOperationTypeEnum {
|
|
616
|
-
ChangeTransform = "change-transform"
|
|
617
|
-
}
|
|
581
|
+
export declare const ChangeTransformOperationTypeEnum: {
|
|
582
|
+
readonly ChangeTransform: "change-transform";
|
|
583
|
+
};
|
|
584
|
+
export declare type ChangeTransformOperationTypeEnum = typeof ChangeTransformOperationTypeEnum[keyof typeof ChangeTransformOperationTypeEnum];
|
|
618
585
|
/**
|
|
619
586
|
*
|
|
620
587
|
* @export
|
|
@@ -634,13 +601,10 @@ export interface ChangeVisibilityOperation {
|
|
|
634
601
|
*/
|
|
635
602
|
visible: boolean;
|
|
636
603
|
}
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
export declare enum ChangeVisibilityOperationTypeEnum {
|
|
642
|
-
ChangeVisibility = "change-visibility"
|
|
643
|
-
}
|
|
604
|
+
export declare const ChangeVisibilityOperationTypeEnum: {
|
|
605
|
+
readonly ChangeVisibility: "change-visibility";
|
|
606
|
+
};
|
|
607
|
+
export declare type ChangeVisibilityOperationTypeEnum = typeof ChangeVisibilityOperationTypeEnum[keyof typeof ChangeVisibilityOperationTypeEnum];
|
|
644
608
|
/**
|
|
645
609
|
*
|
|
646
610
|
* @export
|
|
@@ -654,13 +618,10 @@ export interface ClearMaterialOperation {
|
|
|
654
618
|
*/
|
|
655
619
|
type: ClearMaterialOperationTypeEnum;
|
|
656
620
|
}
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
export declare enum ClearMaterialOperationTypeEnum {
|
|
662
|
-
ClearMaterial = "clear-material"
|
|
663
|
-
}
|
|
621
|
+
export declare const ClearMaterialOperationTypeEnum: {
|
|
622
|
+
readonly ClearMaterial: "clear-material";
|
|
623
|
+
};
|
|
624
|
+
export declare type ClearMaterialOperationTypeEnum = typeof ClearMaterialOperationTypeEnum[keyof typeof ClearMaterialOperationTypeEnum];
|
|
664
625
|
/**
|
|
665
626
|
*
|
|
666
627
|
* @export
|
|
@@ -674,13 +635,10 @@ export interface ClearTransformOperation {
|
|
|
674
635
|
*/
|
|
675
636
|
type: ClearTransformOperationTypeEnum;
|
|
676
637
|
}
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
export declare enum ClearTransformOperationTypeEnum {
|
|
682
|
-
ClearTransform = "clear-transform"
|
|
683
|
-
}
|
|
638
|
+
export declare const ClearTransformOperationTypeEnum: {
|
|
639
|
+
readonly ClearTransform: "clear-transform";
|
|
640
|
+
};
|
|
641
|
+
export declare type ClearTransformOperationTypeEnum = typeof ClearTransformOperationTypeEnum[keyof typeof ClearTransformOperationTypeEnum];
|
|
684
642
|
/**
|
|
685
643
|
* RGB color.
|
|
686
644
|
* @export
|
|
@@ -863,6 +821,70 @@ export interface CreateBatchRequest {
|
|
|
863
821
|
*/
|
|
864
822
|
'vertexvis/batch:operations': Array<BatchOperation>;
|
|
865
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
|
+
}
|
|
866
888
|
/**
|
|
867
889
|
*
|
|
868
890
|
* @export
|
|
@@ -1341,6 +1363,12 @@ export interface CreateSceneItemRequestDataRelationships {
|
|
|
1341
1363
|
* @memberof CreateSceneItemRequestDataRelationships
|
|
1342
1364
|
*/
|
|
1343
1365
|
source?: GeometrySetRelationship | PartRevisionRelationship | SceneRelationship;
|
|
1366
|
+
/**
|
|
1367
|
+
*
|
|
1368
|
+
* @type {SceneItemRelationship}
|
|
1369
|
+
* @memberof CreateSceneItemRequestDataRelationships
|
|
1370
|
+
*/
|
|
1371
|
+
referenceTree?: SceneItemRelationship;
|
|
1344
1372
|
}
|
|
1345
1373
|
/**
|
|
1346
1374
|
*
|
|
@@ -1388,10 +1416,10 @@ export interface CreateSceneRequestData {
|
|
|
1388
1416
|
export interface CreateSceneRequestDataAttributes {
|
|
1389
1417
|
/**
|
|
1390
1418
|
*
|
|
1391
|
-
* @type {
|
|
1419
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
1392
1420
|
* @memberof CreateSceneRequestDataAttributes
|
|
1393
1421
|
*/
|
|
1394
|
-
camera?:
|
|
1422
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
1395
1423
|
/**
|
|
1396
1424
|
* ID provided for correlation. For example, an existing ID from a PLM system.
|
|
1397
1425
|
* @type {string}
|
|
@@ -1476,10 +1504,10 @@ export interface CreateSceneViewRequestData {
|
|
|
1476
1504
|
export interface CreateSceneViewRequestDataAttributes {
|
|
1477
1505
|
/**
|
|
1478
1506
|
*
|
|
1479
|
-
* @type {
|
|
1507
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
1480
1508
|
* @memberof CreateSceneViewRequestDataAttributes
|
|
1481
1509
|
*/
|
|
1482
|
-
camera?:
|
|
1510
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
1483
1511
|
/**
|
|
1484
1512
|
*
|
|
1485
1513
|
* @type {CrossSectioning}
|
|
@@ -1799,13 +1827,10 @@ export interface DeselectOperation {
|
|
|
1799
1827
|
*/
|
|
1800
1828
|
type: DeselectOperationTypeEnum;
|
|
1801
1829
|
}
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
export declare enum DeselectOperationTypeEnum {
|
|
1807
|
-
Deselect = "deselect"
|
|
1808
|
-
}
|
|
1830
|
+
export declare const DeselectOperationTypeEnum: {
|
|
1831
|
+
readonly Deselect: "deselect";
|
|
1832
|
+
};
|
|
1833
|
+
export declare type DeselectOperationTypeEnum = typeof DeselectOperationTypeEnum[keyof typeof DeselectOperationTypeEnum];
|
|
1809
1834
|
/**
|
|
1810
1835
|
* An item\'s height and width.
|
|
1811
1836
|
* @export
|
|
@@ -1825,6 +1850,128 @@ export interface Dimensions {
|
|
|
1825
1850
|
*/
|
|
1826
1851
|
width: number;
|
|
1827
1852
|
}
|
|
1853
|
+
/**
|
|
1854
|
+
*
|
|
1855
|
+
* @export
|
|
1856
|
+
* @interface Export
|
|
1857
|
+
*/
|
|
1858
|
+
export interface Export {
|
|
1859
|
+
/**
|
|
1860
|
+
*
|
|
1861
|
+
* @type {ExportData}
|
|
1862
|
+
* @memberof Export
|
|
1863
|
+
*/
|
|
1864
|
+
data: ExportData;
|
|
1865
|
+
/**
|
|
1866
|
+
*
|
|
1867
|
+
* @type {{ [key: string]: Link; }}
|
|
1868
|
+
* @memberof Export
|
|
1869
|
+
*/
|
|
1870
|
+
links?: {
|
|
1871
|
+
[key: string]: Link;
|
|
1872
|
+
};
|
|
1873
|
+
}
|
|
1874
|
+
/**
|
|
1875
|
+
* Describes the options for configuring a file export.
|
|
1876
|
+
* @export
|
|
1877
|
+
* @interface ExportConfig
|
|
1878
|
+
*/
|
|
1879
|
+
export interface ExportConfig {
|
|
1880
|
+
/**
|
|
1881
|
+
*
|
|
1882
|
+
* @type {string}
|
|
1883
|
+
* @memberof ExportConfig
|
|
1884
|
+
*/
|
|
1885
|
+
format: string;
|
|
1886
|
+
}
|
|
1887
|
+
/**
|
|
1888
|
+
*
|
|
1889
|
+
* @export
|
|
1890
|
+
* @interface ExportData
|
|
1891
|
+
*/
|
|
1892
|
+
export interface ExportData {
|
|
1893
|
+
/**
|
|
1894
|
+
*
|
|
1895
|
+
* @type {string}
|
|
1896
|
+
* @memberof ExportData
|
|
1897
|
+
*/
|
|
1898
|
+
type: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* ID of the resource.
|
|
1901
|
+
* @type {string}
|
|
1902
|
+
* @memberof ExportData
|
|
1903
|
+
*/
|
|
1904
|
+
id: string;
|
|
1905
|
+
/**
|
|
1906
|
+
*
|
|
1907
|
+
* @type {ExportDataAttributes}
|
|
1908
|
+
* @memberof ExportData
|
|
1909
|
+
*/
|
|
1910
|
+
attributes: ExportDataAttributes;
|
|
1911
|
+
/**
|
|
1912
|
+
*
|
|
1913
|
+
* @type {{ [key: string]: Link; }}
|
|
1914
|
+
* @memberof ExportData
|
|
1915
|
+
*/
|
|
1916
|
+
links?: {
|
|
1917
|
+
[key: string]: Link;
|
|
1918
|
+
};
|
|
1919
|
+
}
|
|
1920
|
+
/**
|
|
1921
|
+
*
|
|
1922
|
+
* @export
|
|
1923
|
+
* @interface ExportDataAttributes
|
|
1924
|
+
*/
|
|
1925
|
+
export interface ExportDataAttributes {
|
|
1926
|
+
/**
|
|
1927
|
+
*
|
|
1928
|
+
* @type {string}
|
|
1929
|
+
* @memberof ExportDataAttributes
|
|
1930
|
+
*/
|
|
1931
|
+
created: string;
|
|
1932
|
+
/**
|
|
1933
|
+
*
|
|
1934
|
+
* @type {string}
|
|
1935
|
+
* @memberof ExportDataAttributes
|
|
1936
|
+
*/
|
|
1937
|
+
downloadUrl: string;
|
|
1938
|
+
}
|
|
1939
|
+
/**
|
|
1940
|
+
* Relationship to an `export`.
|
|
1941
|
+
* @export
|
|
1942
|
+
* @interface ExportRelationship
|
|
1943
|
+
*/
|
|
1944
|
+
export interface ExportRelationship {
|
|
1945
|
+
/**
|
|
1946
|
+
*
|
|
1947
|
+
* @type {ExportRelationshipData}
|
|
1948
|
+
* @memberof ExportRelationship
|
|
1949
|
+
*/
|
|
1950
|
+
data: ExportRelationshipData;
|
|
1951
|
+
}
|
|
1952
|
+
/**
|
|
1953
|
+
*
|
|
1954
|
+
* @export
|
|
1955
|
+
* @interface ExportRelationshipData
|
|
1956
|
+
*/
|
|
1957
|
+
export interface ExportRelationshipData {
|
|
1958
|
+
/**
|
|
1959
|
+
* Resource object type.
|
|
1960
|
+
* @type {string}
|
|
1961
|
+
* @memberof ExportRelationshipData
|
|
1962
|
+
*/
|
|
1963
|
+
type: ExportRelationshipDataTypeEnum;
|
|
1964
|
+
/**
|
|
1965
|
+
* ID of the resource.
|
|
1966
|
+
* @type {string}
|
|
1967
|
+
* @memberof ExportRelationshipData
|
|
1968
|
+
*/
|
|
1969
|
+
id: string;
|
|
1970
|
+
}
|
|
1971
|
+
export declare const ExportRelationshipDataTypeEnum: {
|
|
1972
|
+
readonly Scene: "scene";
|
|
1973
|
+
};
|
|
1974
|
+
export declare type ExportRelationshipDataTypeEnum = typeof ExportRelationshipDataTypeEnum[keyof typeof ExportRelationshipDataTypeEnum];
|
|
1828
1975
|
/**
|
|
1829
1976
|
*
|
|
1830
1977
|
* @export
|
|
@@ -1854,6 +2001,25 @@ export interface Failure {
|
|
|
1854
2001
|
[key: string]: Link;
|
|
1855
2002
|
};
|
|
1856
2003
|
}
|
|
2004
|
+
/**
|
|
2005
|
+
*
|
|
2006
|
+
* @export
|
|
2007
|
+
* @interface FeatureLines
|
|
2008
|
+
*/
|
|
2009
|
+
export interface FeatureLines {
|
|
2010
|
+
/**
|
|
2011
|
+
*
|
|
2012
|
+
* @type {Color3}
|
|
2013
|
+
* @memberof FeatureLines
|
|
2014
|
+
*/
|
|
2015
|
+
color: Color3;
|
|
2016
|
+
/**
|
|
2017
|
+
*
|
|
2018
|
+
* @type {number}
|
|
2019
|
+
* @memberof FeatureLines
|
|
2020
|
+
*/
|
|
2021
|
+
width: number;
|
|
2022
|
+
}
|
|
1857
2023
|
/**
|
|
1858
2024
|
*
|
|
1859
2025
|
* @export
|
|
@@ -2010,13 +2176,10 @@ export interface FileRelationshipData {
|
|
|
2010
2176
|
*/
|
|
2011
2177
|
id: string;
|
|
2012
2178
|
}
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
export declare enum FileRelationshipDataTypeEnum {
|
|
2018
|
-
File = "file"
|
|
2019
|
-
}
|
|
2179
|
+
export declare const FileRelationshipDataTypeEnum: {
|
|
2180
|
+
readonly File: "file";
|
|
2181
|
+
};
|
|
2182
|
+
export declare type FileRelationshipDataTypeEnum = typeof FileRelationshipDataTypeEnum[keyof typeof FileRelationshipDataTypeEnum];
|
|
2020
2183
|
/**
|
|
2021
2184
|
*
|
|
2022
2185
|
* @export
|
|
@@ -2124,13 +2287,10 @@ export interface GeometrySetRelationshipData {
|
|
|
2124
2287
|
*/
|
|
2125
2288
|
id: string;
|
|
2126
2289
|
}
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
export declare enum GeometrySetRelationshipDataTypeEnum {
|
|
2132
|
-
GeometrySet = "geometry-set"
|
|
2133
|
-
}
|
|
2290
|
+
export declare const GeometrySetRelationshipDataTypeEnum: {
|
|
2291
|
+
readonly GeometrySet: "geometry-set";
|
|
2292
|
+
};
|
|
2293
|
+
export declare type GeometrySetRelationshipDataTypeEnum = typeof GeometrySetRelationshipDataTypeEnum[keyof typeof GeometrySetRelationshipDataTypeEnum];
|
|
2134
2294
|
/**
|
|
2135
2295
|
*
|
|
2136
2296
|
* @export
|
|
@@ -2385,17 +2545,14 @@ export interface MetadataValue {
|
|
|
2385
2545
|
*/
|
|
2386
2546
|
type: MetadataValueTypeEnum;
|
|
2387
2547
|
}
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
Date = "date",
|
|
2397
|
-
Null = "null"
|
|
2398
|
-
}
|
|
2548
|
+
export declare const MetadataValueTypeEnum: {
|
|
2549
|
+
readonly String: "string";
|
|
2550
|
+
readonly Long: "long";
|
|
2551
|
+
readonly Float: "float";
|
|
2552
|
+
readonly Date: "date";
|
|
2553
|
+
readonly Null: "null";
|
|
2554
|
+
};
|
|
2555
|
+
export declare type MetadataValueTypeEnum = typeof MetadataValueTypeEnum[keyof typeof MetadataValueTypeEnum];
|
|
2399
2556
|
/**
|
|
2400
2557
|
*
|
|
2401
2558
|
* @export
|
|
@@ -2471,6 +2628,43 @@ export interface Orientation {
|
|
|
2471
2628
|
*/
|
|
2472
2629
|
front: Vector3;
|
|
2473
2630
|
}
|
|
2631
|
+
/**
|
|
2632
|
+
* A camera type where an object\'s size stays consistent regardless of its distance to the camera.
|
|
2633
|
+
* @export
|
|
2634
|
+
* @interface OrthographicCamera
|
|
2635
|
+
*/
|
|
2636
|
+
export interface OrthographicCamera {
|
|
2637
|
+
/**
|
|
2638
|
+
*
|
|
2639
|
+
* @type {string}
|
|
2640
|
+
* @memberof OrthographicCamera
|
|
2641
|
+
*/
|
|
2642
|
+
type?: string;
|
|
2643
|
+
/**
|
|
2644
|
+
*
|
|
2645
|
+
* @type {Vector3}
|
|
2646
|
+
* @memberof OrthographicCamera
|
|
2647
|
+
*/
|
|
2648
|
+
viewVector: Vector3;
|
|
2649
|
+
/**
|
|
2650
|
+
*
|
|
2651
|
+
* @type {Vector3}
|
|
2652
|
+
* @memberof OrthographicCamera
|
|
2653
|
+
*/
|
|
2654
|
+
lookAt: Vector3;
|
|
2655
|
+
/**
|
|
2656
|
+
*
|
|
2657
|
+
* @type {Vector3}
|
|
2658
|
+
* @memberof OrthographicCamera
|
|
2659
|
+
*/
|
|
2660
|
+
up: Vector3;
|
|
2661
|
+
/**
|
|
2662
|
+
*
|
|
2663
|
+
* @type {number}
|
|
2664
|
+
* @memberof OrthographicCamera
|
|
2665
|
+
*/
|
|
2666
|
+
fovHeight: number;
|
|
2667
|
+
}
|
|
2474
2668
|
/**
|
|
2475
2669
|
*
|
|
2476
2670
|
* @export
|
|
@@ -2594,13 +2788,10 @@ export interface PartDataRelationshipsPartRevisions {
|
|
|
2594
2788
|
*/
|
|
2595
2789
|
id: string;
|
|
2596
2790
|
}
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
export declare enum PartDataRelationshipsPartRevisionsTypeEnum {
|
|
2602
|
-
PartRevision = "part-revision"
|
|
2603
|
-
}
|
|
2791
|
+
export declare const PartDataRelationshipsPartRevisionsTypeEnum: {
|
|
2792
|
+
readonly PartRevision: "part-revision";
|
|
2793
|
+
};
|
|
2794
|
+
export declare type PartDataRelationshipsPartRevisionsTypeEnum = typeof PartDataRelationshipsPartRevisionsTypeEnum[keyof typeof PartDataRelationshipsPartRevisionsTypeEnum];
|
|
2604
2795
|
/**
|
|
2605
2796
|
*
|
|
2606
2797
|
* @export
|
|
@@ -2641,13 +2832,10 @@ export interface PartRelationshipData {
|
|
|
2641
2832
|
*/
|
|
2642
2833
|
id: string;
|
|
2643
2834
|
}
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
export declare enum PartRelationshipDataTypeEnum {
|
|
2649
|
-
Part = "part"
|
|
2650
|
-
}
|
|
2835
|
+
export declare const PartRelationshipDataTypeEnum: {
|
|
2836
|
+
readonly Part: "part";
|
|
2837
|
+
};
|
|
2838
|
+
export declare type PartRelationshipDataTypeEnum = typeof PartRelationshipDataTypeEnum[keyof typeof PartRelationshipDataTypeEnum];
|
|
2651
2839
|
/**
|
|
2652
2840
|
*
|
|
2653
2841
|
* @export
|
|
@@ -2807,6 +2995,37 @@ export interface PartRevisionSuppliedId {
|
|
|
2807
2995
|
*/
|
|
2808
2996
|
suppliedRevisionId: string;
|
|
2809
2997
|
}
|
|
2998
|
+
/**
|
|
2999
|
+
* A camera type that mimics the way the human eye sees.
|
|
3000
|
+
* @export
|
|
3001
|
+
* @interface PerspectiveCamera
|
|
3002
|
+
*/
|
|
3003
|
+
export interface PerspectiveCamera {
|
|
3004
|
+
/**
|
|
3005
|
+
*
|
|
3006
|
+
* @type {string}
|
|
3007
|
+
* @memberof PerspectiveCamera
|
|
3008
|
+
*/
|
|
3009
|
+
type?: string;
|
|
3010
|
+
/**
|
|
3011
|
+
*
|
|
3012
|
+
* @type {Vector3}
|
|
3013
|
+
* @memberof PerspectiveCamera
|
|
3014
|
+
*/
|
|
3015
|
+
position: Vector3;
|
|
3016
|
+
/**
|
|
3017
|
+
*
|
|
3018
|
+
* @type {Vector3}
|
|
3019
|
+
* @memberof PerspectiveCamera
|
|
3020
|
+
*/
|
|
3021
|
+
lookAt: Vector3;
|
|
3022
|
+
/**
|
|
3023
|
+
*
|
|
3024
|
+
* @type {Vector3}
|
|
3025
|
+
* @memberof PerspectiveCamera
|
|
3026
|
+
*/
|
|
3027
|
+
up: Vector3;
|
|
3028
|
+
}
|
|
2810
3029
|
/**
|
|
2811
3030
|
* 2D point.
|
|
2812
3031
|
* @export
|
|
@@ -2831,9 +3050,10 @@ export interface Point {
|
|
|
2831
3050
|
* @export
|
|
2832
3051
|
* @enum {string}
|
|
2833
3052
|
*/
|
|
2834
|
-
export declare
|
|
2835
|
-
All
|
|
2836
|
-
}
|
|
3053
|
+
export declare const QueryAll: {
|
|
3054
|
+
readonly All: "all";
|
|
3055
|
+
};
|
|
3056
|
+
export declare type QueryAll = typeof QueryAll[keyof typeof QueryAll];
|
|
2837
3057
|
/**
|
|
2838
3058
|
*
|
|
2839
3059
|
* @export
|
|
@@ -2866,13 +3086,10 @@ export interface QueryByCollectionData {
|
|
|
2866
3086
|
*/
|
|
2867
3087
|
attributes: QueryByCollectionDataAttributes;
|
|
2868
3088
|
}
|
|
2869
|
-
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
export declare enum QueryByCollectionDataTypeEnum {
|
|
2874
|
-
QueryByCollection = "query-by-collection"
|
|
2875
|
-
}
|
|
3089
|
+
export declare const QueryByCollectionDataTypeEnum: {
|
|
3090
|
+
readonly QueryByCollection: "query-by-collection";
|
|
3091
|
+
};
|
|
3092
|
+
export declare type QueryByCollectionDataTypeEnum = typeof QueryByCollectionDataTypeEnum[keyof typeof QueryByCollectionDataTypeEnum];
|
|
2876
3093
|
/**
|
|
2877
3094
|
*
|
|
2878
3095
|
* @export
|
|
@@ -2892,14 +3109,11 @@ export interface QueryByCollectionDataAttributes {
|
|
|
2892
3109
|
*/
|
|
2893
3110
|
values: Array<QueryById>;
|
|
2894
3111
|
}
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
export declare
|
|
2900
|
-
And = "and",
|
|
2901
|
-
Or = "or"
|
|
2902
|
-
}
|
|
3112
|
+
export declare const QueryByCollectionDataAttributesTypeEnum: {
|
|
3113
|
+
readonly And: "and";
|
|
3114
|
+
readonly Or: "or";
|
|
3115
|
+
};
|
|
3116
|
+
export declare type QueryByCollectionDataAttributesTypeEnum = typeof QueryByCollectionDataAttributesTypeEnum[keyof typeof QueryByCollectionDataAttributesTypeEnum];
|
|
2903
3117
|
/**
|
|
2904
3118
|
*
|
|
2905
3119
|
* @export
|
|
@@ -2932,13 +3146,10 @@ export interface QueryByIdData {
|
|
|
2932
3146
|
*/
|
|
2933
3147
|
attributes: QueryByIdDataAttributes;
|
|
2934
3148
|
}
|
|
2935
|
-
|
|
2936
|
-
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
export declare enum QueryByIdDataTypeEnum {
|
|
2940
|
-
QueryById = "query-by-id"
|
|
2941
|
-
}
|
|
3149
|
+
export declare const QueryByIdDataTypeEnum: {
|
|
3150
|
+
readonly QueryById: "query-by-id";
|
|
3151
|
+
};
|
|
3152
|
+
export declare type QueryByIdDataTypeEnum = typeof QueryByIdDataTypeEnum[keyof typeof QueryByIdDataTypeEnum];
|
|
2942
3153
|
/**
|
|
2943
3154
|
*
|
|
2944
3155
|
* @export
|
|
@@ -2958,14 +3169,11 @@ export interface QueryByIdDataAttributes {
|
|
|
2958
3169
|
*/
|
|
2959
3170
|
value: string;
|
|
2960
3171
|
}
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
|
|
2965
|
-
export declare
|
|
2966
|
-
Id = "id",
|
|
2967
|
-
SuppliedId = "suppliedId"
|
|
2968
|
-
}
|
|
3172
|
+
export declare const QueryByIdDataAttributesTypeEnum: {
|
|
3173
|
+
readonly Id: "id";
|
|
3174
|
+
readonly SuppliedId: "suppliedId";
|
|
3175
|
+
};
|
|
3176
|
+
export declare type QueryByIdDataAttributesTypeEnum = typeof QueryByIdDataAttributesTypeEnum[keyof typeof QueryByIdDataAttributesTypeEnum];
|
|
2969
3177
|
/**
|
|
2970
3178
|
*
|
|
2971
3179
|
* @export
|
|
@@ -3299,10 +3507,10 @@ export interface SceneData {
|
|
|
3299
3507
|
export interface SceneDataAttributes {
|
|
3300
3508
|
/**
|
|
3301
3509
|
*
|
|
3302
|
-
* @type {
|
|
3510
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
3303
3511
|
* @memberof SceneDataAttributes
|
|
3304
3512
|
*/
|
|
3305
|
-
camera?:
|
|
3513
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
3306
3514
|
/**
|
|
3307
3515
|
*
|
|
3308
3516
|
* @type {string}
|
|
@@ -3684,13 +3892,10 @@ export interface SceneItemRelationshipData {
|
|
|
3684
3892
|
*/
|
|
3685
3893
|
id: string;
|
|
3686
3894
|
}
|
|
3687
|
-
|
|
3688
|
-
|
|
3689
|
-
|
|
3690
|
-
|
|
3691
|
-
export declare enum SceneItemRelationshipDataTypeEnum {
|
|
3692
|
-
SceneItem = "scene-item"
|
|
3693
|
-
}
|
|
3895
|
+
export declare const SceneItemRelationshipDataTypeEnum: {
|
|
3896
|
+
readonly SceneItem: "scene-item";
|
|
3897
|
+
};
|
|
3898
|
+
export declare type SceneItemRelationshipDataTypeEnum = typeof SceneItemRelationshipDataTypeEnum[keyof typeof SceneItemRelationshipDataTypeEnum];
|
|
3694
3899
|
/**
|
|
3695
3900
|
*
|
|
3696
3901
|
* @export
|
|
@@ -3763,13 +3968,10 @@ export interface SceneRelationshipData {
|
|
|
3763
3968
|
*/
|
|
3764
3969
|
id: string;
|
|
3765
3970
|
}
|
|
3766
|
-
|
|
3767
|
-
|
|
3768
|
-
|
|
3769
|
-
|
|
3770
|
-
export declare enum SceneRelationshipDataTypeEnum {
|
|
3771
|
-
Scene = "scene"
|
|
3772
|
-
}
|
|
3971
|
+
export declare const SceneRelationshipDataTypeEnum: {
|
|
3972
|
+
readonly Scene: "scene";
|
|
3973
|
+
};
|
|
3974
|
+
export declare type SceneRelationshipDataTypeEnum = typeof SceneRelationshipDataTypeEnum[keyof typeof SceneRelationshipDataTypeEnum];
|
|
3773
3975
|
/**
|
|
3774
3976
|
*
|
|
3775
3977
|
* @export
|
|
@@ -3830,10 +4032,10 @@ export interface SceneViewData {
|
|
|
3830
4032
|
export interface SceneViewDataAttributes {
|
|
3831
4033
|
/**
|
|
3832
4034
|
*
|
|
3833
|
-
* @type {
|
|
4035
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
3834
4036
|
* @memberof SceneViewDataAttributes
|
|
3835
4037
|
*/
|
|
3836
|
-
camera:
|
|
4038
|
+
camera: PerspectiveCamera | OrthographicCamera;
|
|
3837
4039
|
/**
|
|
3838
4040
|
*
|
|
3839
4041
|
* @type {string}
|
|
@@ -3946,13 +4148,10 @@ export interface SceneViewRelationshipData {
|
|
|
3946
4148
|
*/
|
|
3947
4149
|
id: string;
|
|
3948
4150
|
}
|
|
3949
|
-
|
|
3950
|
-
|
|
3951
|
-
|
|
3952
|
-
|
|
3953
|
-
export declare enum SceneViewRelationshipDataTypeEnum {
|
|
3954
|
-
SceneView = "scene-view"
|
|
3955
|
-
}
|
|
4151
|
+
export declare const SceneViewRelationshipDataTypeEnum: {
|
|
4152
|
+
readonly SceneView: "scene-view";
|
|
4153
|
+
};
|
|
4154
|
+
export declare type SceneViewRelationshipDataTypeEnum = typeof SceneViewRelationshipDataTypeEnum[keyof typeof SceneViewRelationshipDataTypeEnum];
|
|
3956
4155
|
/**
|
|
3957
4156
|
*
|
|
3958
4157
|
* @export
|
|
@@ -4015,10 +4214,10 @@ export interface SceneViewStateData {
|
|
|
4015
4214
|
export interface SceneViewStateDataAttributes {
|
|
4016
4215
|
/**
|
|
4017
4216
|
*
|
|
4018
|
-
* @type {
|
|
4217
|
+
* @type {PerspectiveCamera | OrthographicCamera}
|
|
4019
4218
|
* @memberof SceneViewStateDataAttributes
|
|
4020
4219
|
*/
|
|
4021
|
-
camera?:
|
|
4220
|
+
camera?: PerspectiveCamera | OrthographicCamera;
|
|
4022
4221
|
/**
|
|
4023
4222
|
*
|
|
4024
4223
|
* @type {string}
|
|
@@ -4037,6 +4236,12 @@ export interface SceneViewStateDataAttributes {
|
|
|
4037
4236
|
* @memberof SceneViewStateDataAttributes
|
|
4038
4237
|
*/
|
|
4039
4238
|
thumbnails?: Array<ThumbnailData>;
|
|
4239
|
+
/**
|
|
4240
|
+
*
|
|
4241
|
+
* @type {FeatureLines}
|
|
4242
|
+
* @memberof SceneViewStateDataAttributes
|
|
4243
|
+
*/
|
|
4244
|
+
featureLines?: FeatureLines;
|
|
4040
4245
|
}
|
|
4041
4246
|
/**
|
|
4042
4247
|
*
|
|
@@ -4091,13 +4296,10 @@ export interface SceneViewStateRelationshipData {
|
|
|
4091
4296
|
*/
|
|
4092
4297
|
id: string;
|
|
4093
4298
|
}
|
|
4094
|
-
|
|
4095
|
-
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
export declare enum SceneViewStateRelationshipDataTypeEnum {
|
|
4099
|
-
SceneViewState = "scene-view-state"
|
|
4100
|
-
}
|
|
4299
|
+
export declare const SceneViewStateRelationshipDataTypeEnum: {
|
|
4300
|
+
readonly SceneViewState: "scene-view-state";
|
|
4301
|
+
};
|
|
4302
|
+
export declare type SceneViewStateRelationshipDataTypeEnum = typeof SceneViewStateRelationshipDataTypeEnum[keyof typeof SceneViewStateRelationshipDataTypeEnum];
|
|
4101
4303
|
/**
|
|
4102
4304
|
*
|
|
4103
4305
|
* @export
|
|
@@ -4136,13 +4338,10 @@ export interface SelectOperation {
|
|
|
4136
4338
|
*/
|
|
4137
4339
|
material: ColorMaterial;
|
|
4138
4340
|
}
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4142
|
-
|
|
4143
|
-
export declare enum SelectOperationTypeEnum {
|
|
4144
|
-
Select = "select"
|
|
4145
|
-
}
|
|
4341
|
+
export declare const SelectOperationTypeEnum: {
|
|
4342
|
+
readonly Select: "select";
|
|
4343
|
+
};
|
|
4344
|
+
export declare type SelectOperationTypeEnum = typeof SelectOperationTypeEnum[keyof typeof SelectOperationTypeEnum];
|
|
4146
4345
|
/**
|
|
4147
4346
|
*
|
|
4148
4347
|
* @export
|
|
@@ -4396,14 +4595,11 @@ export interface UpdateAccountRequestDataAttributes {
|
|
|
4396
4595
|
*/
|
|
4397
4596
|
owner?: string;
|
|
4398
4597
|
}
|
|
4399
|
-
|
|
4400
|
-
|
|
4401
|
-
|
|
4402
|
-
|
|
4403
|
-
export declare
|
|
4404
|
-
Active = "active",
|
|
4405
|
-
Disabled = "disabled"
|
|
4406
|
-
}
|
|
4598
|
+
export declare const UpdateAccountRequestDataAttributesStatusEnum: {
|
|
4599
|
+
readonly Active: "active";
|
|
4600
|
+
readonly Disabled: "disabled";
|
|
4601
|
+
};
|
|
4602
|
+
export declare type UpdateAccountRequestDataAttributesStatusEnum = typeof UpdateAccountRequestDataAttributesStatusEnum[keyof typeof UpdateAccountRequestDataAttributesStatusEnum];
|
|
4407
4603
|
/**
|
|
4408
4604
|
*
|
|
4409
4605
|
* @export
|
|
@@ -4686,10 +4882,10 @@ export interface UpdateSceneRequestData {
|
|
|
4686
4882
|
export interface UpdateSceneRequestDataAttributes {
|
|
4687
4883
|
/**
|
|
4688
4884
|
*
|
|
4689
|
-
* @type {
|
|
4885
|
+
* @type {PerspectiveCamera | OrthographicCamera | CameraFit}
|
|
4690
4886
|
* @memberof UpdateSceneRequestDataAttributes
|
|
4691
4887
|
*/
|
|
4692
|
-
camera?:
|
|
4888
|
+
camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
|
|
4693
4889
|
/**
|
|
4694
4890
|
* State of the scene.
|
|
4695
4891
|
* @type {string}
|
|
@@ -4721,14 +4917,11 @@ export interface UpdateSceneRequestDataAttributes {
|
|
|
4721
4917
|
*/
|
|
4722
4918
|
worldOrientation?: Orientation;
|
|
4723
4919
|
}
|
|
4724
|
-
|
|
4725
|
-
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
export declare
|
|
4729
|
-
Draft = "draft",
|
|
4730
|
-
Commit = "commit"
|
|
4731
|
-
}
|
|
4920
|
+
export declare const UpdateSceneRequestDataAttributesStateEnum: {
|
|
4921
|
+
readonly Draft: "draft";
|
|
4922
|
+
readonly Commit: "commit";
|
|
4923
|
+
};
|
|
4924
|
+
export declare type UpdateSceneRequestDataAttributesStateEnum = typeof UpdateSceneRequestDataAttributesStateEnum[keyof typeof UpdateSceneRequestDataAttributesStateEnum];
|
|
4732
4925
|
/**
|
|
4733
4926
|
*
|
|
4734
4927
|
* @export
|
|
@@ -4769,10 +4962,10 @@ export interface UpdateSceneViewRequestData {
|
|
|
4769
4962
|
export interface UpdateSceneViewRequestDataAttributes {
|
|
4770
4963
|
/**
|
|
4771
4964
|
*
|
|
4772
|
-
* @type {
|
|
4965
|
+
* @type {PerspectiveCamera | OrthographicCamera | CameraFit}
|
|
4773
4966
|
* @memberof UpdateSceneViewRequestDataAttributes
|
|
4774
4967
|
*/
|
|
4775
|
-
camera?:
|
|
4968
|
+
camera?: PerspectiveCamera | OrthographicCamera | CameraFit;
|
|
4776
4969
|
/**
|
|
4777
4970
|
*
|
|
4778
4971
|
* @type {CrossSectioning}
|
|
@@ -4869,14 +5062,11 @@ export interface UpdateWebhookSubscriptionRequestDataAttributes {
|
|
|
4869
5062
|
*/
|
|
4870
5063
|
url?: string;
|
|
4871
5064
|
}
|
|
4872
|
-
|
|
4873
|
-
|
|
4874
|
-
|
|
4875
|
-
|
|
4876
|
-
export declare
|
|
4877
|
-
Active = "active",
|
|
4878
|
-
Paused = "paused"
|
|
4879
|
-
}
|
|
5065
|
+
export declare const UpdateWebhookSubscriptionRequestDataAttributesStatusEnum: {
|
|
5066
|
+
readonly Active: "active";
|
|
5067
|
+
readonly Paused: "paused";
|
|
5068
|
+
};
|
|
5069
|
+
export declare type UpdateWebhookSubscriptionRequestDataAttributesStatusEnum = typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum[keyof typeof UpdateWebhookSubscriptionRequestDataAttributesStatusEnum];
|
|
4880
5070
|
/**
|
|
4881
5071
|
* 3D vector.
|
|
4882
5072
|
* @export
|
|
@@ -5069,13 +5259,10 @@ export interface WebhookEventDataRelationshipsOwnerData {
|
|
|
5069
5259
|
*/
|
|
5070
5260
|
id: string;
|
|
5071
5261
|
}
|
|
5072
|
-
|
|
5073
|
-
|
|
5074
|
-
|
|
5075
|
-
|
|
5076
|
-
export declare enum WebhookEventDataRelationshipsOwnerDataTypeEnum {
|
|
5077
|
-
Account = "account"
|
|
5078
|
-
}
|
|
5262
|
+
export declare const WebhookEventDataRelationshipsOwnerDataTypeEnum: {
|
|
5263
|
+
readonly Account: "account";
|
|
5264
|
+
};
|
|
5265
|
+
export declare type WebhookEventDataRelationshipsOwnerDataTypeEnum = typeof WebhookEventDataRelationshipsOwnerDataTypeEnum[keyof typeof WebhookEventDataRelationshipsOwnerDataTypeEnum];
|
|
5079
5266
|
/**
|
|
5080
5267
|
* Relationship to a `resource`.
|
|
5081
5268
|
* @export
|
|
@@ -5205,14 +5392,11 @@ export interface WebhookSubscriptionDataAttributes {
|
|
|
5205
5392
|
*/
|
|
5206
5393
|
created: string;
|
|
5207
5394
|
}
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
export declare
|
|
5213
|
-
Active = "active",
|
|
5214
|
-
Paused = "paused"
|
|
5215
|
-
}
|
|
5395
|
+
export declare const WebhookSubscriptionDataAttributesStatusEnum: {
|
|
5396
|
+
readonly Active: "active";
|
|
5397
|
+
readonly Paused: "paused";
|
|
5398
|
+
};
|
|
5399
|
+
export declare type WebhookSubscriptionDataAttributesStatusEnum = typeof WebhookSubscriptionDataAttributesStatusEnum[keyof typeof WebhookSubscriptionDataAttributesStatusEnum];
|
|
5216
5400
|
/**
|
|
5217
5401
|
*
|
|
5218
5402
|
* @export
|
|
@@ -5894,6 +6078,158 @@ export declare class BatchesApi extends BaseAPI {
|
|
|
5894
6078
|
*/
|
|
5895
6079
|
getQueuedBatch(requestParameters: BatchesApiGetQueuedBatchRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
5896
6080
|
}
|
|
6081
|
+
/**
|
|
6082
|
+
* ExportsApi - axios parameter creator
|
|
6083
|
+
* @export
|
|
6084
|
+
*/
|
|
6085
|
+
export declare const ExportsApiAxiosParamCreator: (configuration?: Configuration | undefined) => {
|
|
6086
|
+
/**
|
|
6087
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6088
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6089
|
+
* @param {*} [options] Override http request option.
|
|
6090
|
+
* @throws {RequiredError}
|
|
6091
|
+
*/
|
|
6092
|
+
createExport: (createExportRequest: CreateExportRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6093
|
+
/**
|
|
6094
|
+
* Get an `export` by ID.
|
|
6095
|
+
* @param {string} id The `export` ID.
|
|
6096
|
+
* @param {*} [options] Override http request option.
|
|
6097
|
+
* @throws {RequiredError}
|
|
6098
|
+
*/
|
|
6099
|
+
getExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6100
|
+
/**
|
|
6101
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6102
|
+
* @param {string} id The `queued-export` ID.
|
|
6103
|
+
* @param {*} [options] Override http request option.
|
|
6104
|
+
* @throws {RequiredError}
|
|
6105
|
+
*/
|
|
6106
|
+
getQueuedExport: (id: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
6107
|
+
};
|
|
6108
|
+
/**
|
|
6109
|
+
* ExportsApi - functional programming interface
|
|
6110
|
+
* @export
|
|
6111
|
+
*/
|
|
6112
|
+
export declare const ExportsApiFp: (configuration?: Configuration | undefined) => {
|
|
6113
|
+
/**
|
|
6114
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6115
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6116
|
+
* @param {*} [options] Override http request option.
|
|
6117
|
+
* @throws {RequiredError}
|
|
6118
|
+
*/
|
|
6119
|
+
createExport(createExportRequest: CreateExportRequest, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6120
|
+
/**
|
|
6121
|
+
* Get an `export` by ID.
|
|
6122
|
+
* @param {string} id The `export` ID.
|
|
6123
|
+
* @param {*} [options] Override http request option.
|
|
6124
|
+
* @throws {RequiredError}
|
|
6125
|
+
*/
|
|
6126
|
+
getExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<Export>>;
|
|
6127
|
+
/**
|
|
6128
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6129
|
+
* @param {string} id The `queued-export` ID.
|
|
6130
|
+
* @param {*} [options] Override http request option.
|
|
6131
|
+
* @throws {RequiredError}
|
|
6132
|
+
*/
|
|
6133
|
+
getQueuedExport(id: string, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<QueuedJob>>;
|
|
6134
|
+
};
|
|
6135
|
+
/**
|
|
6136
|
+
* ExportsApi - factory interface
|
|
6137
|
+
* @export
|
|
6138
|
+
*/
|
|
6139
|
+
export declare const ExportsApiFactory: (configuration?: Configuration | undefined, basePath?: string | undefined, axios?: AxiosInstance | undefined) => {
|
|
6140
|
+
/**
|
|
6141
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6142
|
+
* @param {CreateExportRequest} createExportRequest
|
|
6143
|
+
* @param {*} [options] Override http request option.
|
|
6144
|
+
* @throws {RequiredError}
|
|
6145
|
+
*/
|
|
6146
|
+
createExport(createExportRequest: CreateExportRequest, options?: any): AxiosPromise<QueuedJob>;
|
|
6147
|
+
/**
|
|
6148
|
+
* Get an `export` by ID.
|
|
6149
|
+
* @param {string} id The `export` ID.
|
|
6150
|
+
* @param {*} [options] Override http request option.
|
|
6151
|
+
* @throws {RequiredError}
|
|
6152
|
+
*/
|
|
6153
|
+
getExport(id: string, options?: any): AxiosPromise<Export>;
|
|
6154
|
+
/**
|
|
6155
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6156
|
+
* @param {string} id The `queued-export` ID.
|
|
6157
|
+
* @param {*} [options] Override http request option.
|
|
6158
|
+
* @throws {RequiredError}
|
|
6159
|
+
*/
|
|
6160
|
+
getQueuedExport(id: string, options?: any): AxiosPromise<QueuedJob>;
|
|
6161
|
+
};
|
|
6162
|
+
/**
|
|
6163
|
+
* Request parameters for createExport operation in ExportsApi.
|
|
6164
|
+
* @export
|
|
6165
|
+
* @interface ExportsApiCreateExportRequest
|
|
6166
|
+
*/
|
|
6167
|
+
export interface ExportsApiCreateExportRequest {
|
|
6168
|
+
/**
|
|
6169
|
+
*
|
|
6170
|
+
* @type {CreateExportRequest}
|
|
6171
|
+
* @memberof ExportsApiCreateExport
|
|
6172
|
+
*/
|
|
6173
|
+
readonly createExportRequest: CreateExportRequest;
|
|
6174
|
+
}
|
|
6175
|
+
/**
|
|
6176
|
+
* Request parameters for getExport operation in ExportsApi.
|
|
6177
|
+
* @export
|
|
6178
|
+
* @interface ExportsApiGetExportRequest
|
|
6179
|
+
*/
|
|
6180
|
+
export interface ExportsApiGetExportRequest {
|
|
6181
|
+
/**
|
|
6182
|
+
* The `export` ID.
|
|
6183
|
+
* @type {string}
|
|
6184
|
+
* @memberof ExportsApiGetExport
|
|
6185
|
+
*/
|
|
6186
|
+
readonly id: string;
|
|
6187
|
+
}
|
|
6188
|
+
/**
|
|
6189
|
+
* Request parameters for getQueuedExport operation in ExportsApi.
|
|
6190
|
+
* @export
|
|
6191
|
+
* @interface ExportsApiGetQueuedExportRequest
|
|
6192
|
+
*/
|
|
6193
|
+
export interface ExportsApiGetQueuedExportRequest {
|
|
6194
|
+
/**
|
|
6195
|
+
* The `queued-export` ID.
|
|
6196
|
+
* @type {string}
|
|
6197
|
+
* @memberof ExportsApiGetQueuedExport
|
|
6198
|
+
*/
|
|
6199
|
+
readonly id: string;
|
|
6200
|
+
}
|
|
6201
|
+
/**
|
|
6202
|
+
* ExportsApi - object-oriented interface
|
|
6203
|
+
* @export
|
|
6204
|
+
* @class ExportsApi
|
|
6205
|
+
* @extends {BaseAPI}
|
|
6206
|
+
*/
|
|
6207
|
+
export declare class ExportsApi extends BaseAPI {
|
|
6208
|
+
/**
|
|
6209
|
+
* Create an `export`. This API is asynchronous, returning the location of a `queued-export`. Check the status via the getQueuedExport API.
|
|
6210
|
+
* @param {ExportsApiCreateExportRequest} requestParameters Request parameters.
|
|
6211
|
+
* @param {*} [options] Override http request option.
|
|
6212
|
+
* @throws {RequiredError}
|
|
6213
|
+
* @memberof ExportsApi
|
|
6214
|
+
*/
|
|
6215
|
+
createExport(requestParameters: ExportsApiCreateExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
6216
|
+
/**
|
|
6217
|
+
* Get an `export` by ID.
|
|
6218
|
+
* @param {ExportsApiGetExportRequest} requestParameters Request parameters.
|
|
6219
|
+
* @param {*} [options] Override http request option.
|
|
6220
|
+
* @throws {RequiredError}
|
|
6221
|
+
* @memberof ExportsApi
|
|
6222
|
+
*/
|
|
6223
|
+
getExport(requestParameters: ExportsApiGetExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<Export, any>>;
|
|
6224
|
+
/**
|
|
6225
|
+
* Get a `queued-export`. The response is either the status if `running` or `error` or, upon completion, redirects to the created `export`.
|
|
6226
|
+
* @param {ExportsApiGetQueuedExportRequest} requestParameters Request parameters.
|
|
6227
|
+
* @param {*} [options] Override http request option.
|
|
6228
|
+
* @throws {RequiredError}
|
|
6229
|
+
* @memberof ExportsApi
|
|
6230
|
+
*/
|
|
6231
|
+
getQueuedExport(requestParameters: ExportsApiGetQueuedExportRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<QueuedJob, any>>;
|
|
6232
|
+
}
|
|
5897
6233
|
/**
|
|
5898
6234
|
* FilesApi - axios parameter creator
|
|
5899
6235
|
* @export
|
|
@@ -6775,10 +7111,17 @@ export declare const PartRevisionsApiAxiosParamCreator: (configuration?: Configu
|
|
|
6775
7111
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6776
7112
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6777
7113
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
7114
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
7115
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
7116
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
7117
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
7118
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
7119
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
7120
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6778
7121
|
* @param {*} [options] Override http request option.
|
|
6779
7122
|
* @throws {RequiredError}
|
|
6780
7123
|
*/
|
|
6781
|
-
renderPartRevision: (id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7124
|
+
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>;
|
|
6782
7125
|
/**
|
|
6783
7126
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6784
7127
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6833,10 +7176,17 @@ export declare const PartRevisionsApiFp: (configuration?: Configuration | undefi
|
|
|
6833
7176
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6834
7177
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6835
7178
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
7179
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
7180
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
7181
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
7182
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
7183
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
7184
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
7185
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6836
7186
|
* @param {*} [options] Override http request option.
|
|
6837
7187
|
* @throws {RequiredError}
|
|
6838
7188
|
*/
|
|
6839
|
-
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: AxiosRequestConfig<any> | undefined): Promise<(axios?: AxiosInstance | undefined, basePath?: string | undefined) => AxiosPromise<any>>;
|
|
7189
|
+
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>>;
|
|
6840
7190
|
/**
|
|
6841
7191
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6842
7192
|
* @param {string} id The `part-revision` ID.
|
|
@@ -6891,10 +7241,17 @@ export declare const PartRevisionsApiFactory: (configuration?: Configuration | u
|
|
|
6891
7241
|
* @param {Vector3} [cameraPosition] The `camera` position vector.
|
|
6892
7242
|
* @param {Vector3} [cameraUp] The `camera` up vector.
|
|
6893
7243
|
* @param {Vector3} [cameraLookAt] The `camera` lookAt vector.
|
|
7244
|
+
* @param {Vector3} [cameraPerspectivePosition] The perspective camera position.
|
|
7245
|
+
* @param {Vector3} [cameraPerspectiveLookAt] The perspective camera look at position.
|
|
7246
|
+
* @param {Vector3} [cameraPerspectiveUp] The perspective camera up vector.
|
|
7247
|
+
* @param {Vector3} [cameraOrthographicViewVector] The orthographic camera view vector.
|
|
7248
|
+
* @param {Vector3} [cameraOrthographicLookAt] The orthographic camera look at position.
|
|
7249
|
+
* @param {Vector3} [cameraOrthographicUp] The orthographic camera up vector.
|
|
7250
|
+
* @param {number} [cameraOrthographicFovHeight] The orthographic field-of-view height.
|
|
6894
7251
|
* @param {*} [options] Override http request option.
|
|
6895
7252
|
* @throws {RequiredError}
|
|
6896
7253
|
*/
|
|
6897
|
-
renderPartRevision(id: string, height?: number | undefined, width?: number | undefined, cameraPosition?: Vector3 | undefined, cameraUp?: Vector3 | undefined, cameraLookAt?: Vector3 | undefined, options?: any): AxiosPromise<any>;
|
|
7254
|
+
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>;
|
|
6898
7255
|
/**
|
|
6899
7256
|
* Update a `part-revision`. Note that metadata updates are eventually consistent.
|
|
6900
7257
|
* @param {string} id The `part-revision` ID.
|
|
@@ -7022,6 +7379,48 @@ export interface PartRevisionsApiRenderPartRevisionRequest {
|
|
|
7022
7379
|
* @memberof PartRevisionsApiRenderPartRevision
|
|
7023
7380
|
*/
|
|
7024
7381
|
readonly cameraLookAt?: Vector3;
|
|
7382
|
+
/**
|
|
7383
|
+
* The perspective camera position.
|
|
7384
|
+
* @type {Vector3}
|
|
7385
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7386
|
+
*/
|
|
7387
|
+
readonly cameraPerspectivePosition?: Vector3;
|
|
7388
|
+
/**
|
|
7389
|
+
* The perspective camera look at position.
|
|
7390
|
+
* @type {Vector3}
|
|
7391
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7392
|
+
*/
|
|
7393
|
+
readonly cameraPerspectiveLookAt?: Vector3;
|
|
7394
|
+
/**
|
|
7395
|
+
* The perspective camera up vector.
|
|
7396
|
+
* @type {Vector3}
|
|
7397
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7398
|
+
*/
|
|
7399
|
+
readonly cameraPerspectiveUp?: Vector3;
|
|
7400
|
+
/**
|
|
7401
|
+
* The orthographic camera view vector.
|
|
7402
|
+
* @type {Vector3}
|
|
7403
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7404
|
+
*/
|
|
7405
|
+
readonly cameraOrthographicViewVector?: Vector3;
|
|
7406
|
+
/**
|
|
7407
|
+
* The orthographic camera look at position.
|
|
7408
|
+
* @type {Vector3}
|
|
7409
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7410
|
+
*/
|
|
7411
|
+
readonly cameraOrthographicLookAt?: Vector3;
|
|
7412
|
+
/**
|
|
7413
|
+
* The orthographic camera up vector.
|
|
7414
|
+
* @type {Vector3}
|
|
7415
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7416
|
+
*/
|
|
7417
|
+
readonly cameraOrthographicUp?: Vector3;
|
|
7418
|
+
/**
|
|
7419
|
+
* The orthographic field-of-view height.
|
|
7420
|
+
* @type {number}
|
|
7421
|
+
* @memberof PartRevisionsApiRenderPartRevision
|
|
7422
|
+
*/
|
|
7423
|
+
readonly cameraOrthographicFovHeight?: number;
|
|
7025
7424
|
}
|
|
7026
7425
|
/**
|
|
7027
7426
|
* Request parameters for updatePartRevision operation in PartRevisionsApi.
|